Index: Receive_Code/do.bat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/do.bat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/do.bat	(working copy)
@@ -0,0 +1,146 @@
+@set FPGA_PATH=fpgajic\fpga
+@set ROM_PATH=.
+@set MV_PATCH=mv\src\yichip
+@set YC_PATCH_FILE=yc_patch_yc1021.h
+@set enc=1
+@set enckey=0000000000000000
+@set device_option=shutter
+@rem set device_option=hci
+@rem set device_option=kb
+@rem set device_option=mouse
+@rem set device_option=le_kb
+@rem set device_option=dongle
+@rem set device_option=module
+@rem set device_option=prcp
+
+@echo off
+
+setlocal enabledelayedexpansion
+for %%f in (program\*.prog) do @if not %%f==program\bt.prog if not %%f==program\patch.prog if not %%f==program\sim.prog set progs=!progs! %%f
+type program\bt.prog %progs% > output\bt_program23.meta
+for %%f in (format\*.format) do @if not %%f==format\bt.format if not %%f==format\command.format set fmts=!fmts! %%f
+type format\bt.format %fmts% format\command.format > output\bt_format.meta
+perl util/mergepatch.pl output/bt_program23.meta
+perl util/memalloc.pl output/bt_format.meta
+
+cd output
+osiuasm bt_program23 -O-W
+
+if "%device_option%" equ "hci" (
+  copy ..\sched\hci_boot.dat ..\output\sched.rom
+) else if "%device_option%" equ "kb" (
+copy ..\sched\ssp.dat + ..\sched\kb.dat +  ..\sched\fpga.dat ..\output\sched.rom
+) else if "%device_option%" equ "le_kb" (
+  copy ..\sched\le_kb.dat +  ..\sched\fpga.dat ..\output\sched.rom
+) else if "%device_option%" equ "mouse" (
+  copy ..\sched\ssp.dat + ..\sched\mouse.dat + ..\sched\le_mouse.dat +  ..\sched\fpga.dat ..\output\sched.rom
+) else if "%device_option%" equ "module" (
+  copy  ..\sched\DM_module.dat +   ..\sched\109x.dat ..\output\sched.rom
+) else if "%device_option%" equ "shutter" (
+  copy  ..\sched\shutter.dat +  ..\sched\109x.dat ..\output\sched.rom
+) else if "%device_option%" equ "dongle" (
+  copy ..\sched\dongle.dat +  ..\sched\usb.dat +  ..\sched\fpga.dat ..\output\sched.rom
+) else if "%device_option%" equ "prcp" (
+  copy ..\sched\Le_prcp.dat + ..\sched\fpga.dat ..\output\sched.rom
+) else if "%device_option%" equ "test" (
+  copy ..\sched\test.dat + ..\sched\fpga.dat ..\output\sched.rom
+) else (
+cd ..
+echo **********************************
+echo Error: illegal device_option !
+echo **********************************
+goto end
+) 
+
+if "%1" equ "eep" (
+	goto genromrevc
+)else (
+  goto downloadram
+)
+
+:geneeprom
+@rem echo on
+@echo Start to generate EEPROM code
+copy ..\sched\mouse.dat ..\output\sched.rom
+
+..\util\geneep ramcode.rom fwram.rom sched.rom %enc% %enckey% a
+perl ..\util\a1bugfix.pl
+osiuasm bt_program23 -O-W
+..\util\geneep ramcode.rom fwram.rom sched.rom %enc% %enckey% a
+goto gen_eep_end
+
+
+
+
+:genromrevb
+echo off
+@echo Start to generate EEPROM code
+..\..\regedr\geneep ramcode.rom fwram.rom sched.rom %enc% %enckey% b
+goto gen_eep_end
+
+
+:genromrevc
+echo off
+@echo Start to generate EEPROM code
+
+..\..\regedr\geneep ramcode.rom fwram.rom sched.rom 0 %enckey% c
+cd ..\output
+
+echo eeprom.dat Generated......
+@rem perl eeprom2hciimage.pl
+@rem echo bt_patch.bin Generated......
+@rem perl bin2array.pl > bt_patch.h
+@rem echo bt_patch.h Generated......
+
+echo **********define info*************
+cd ..\program
+perl ..\util\define_info.pl
+
+
+:gen_eep_end
+cd ..
+echo **********************************
+echo EEPROM Generated.
+echo The Device is %device_option%. 
+echo Use command "e ep" to download EEPROM.
+echo **********************************
+goto end
+
+
+
+
+:genrom
+@rem echo on
+perl ..\util\rom2mif.pl romcode
+del ..\..\%FPGA_PATH%\romcode.mif
+copy .\romcode.mif ..\..\%FPGA_PATH%\romcode.mif
+perl ..\util\gen_patch_h.pl >%YC_PATCH_FILE%
+copy .\%YC_PATCH_FILE% ..\..\%MV_PATCH%\%YC_PATCH_FILE%
+copy .\%YC_PATCH_FILE% D:\work\yichip\mv_proj\src\inc\%YC_PATCH_FILE%
+cd ..\..\%FPGA_PATH%
+quartus_cdb btspi -c btspi --update_mif
+quartus_asm --read_settings_files=off --write_settings_files=off btspi -c btspi
+quartus_pgm -c USB-Blaster[USB-0] -m jtag -o "p;.\output\btspi.sof" 
+@echo bitstream_compression=on >1
+@echo memory_map_file=on >> 1
+quartus_cpf -c -o 1 -s EP3C55 -d EPCS16 output\btspi.sof output\btspi.jic  
+@rem quartus_pgm -c USB-Blaster[USB-0] -m jtag -o "pi;.\output\btspi.jic"   
+@del 1
+goto end
+
+
+
+:downloadram
+echo on
+@echo Start to download ram code
+e ku
+e hu
+e su sched.rom
+@echo **********************************
+@echo RAM CODE has been downloaded.
+@echo The Device is %device_option%. 
+@echo **********************************
+cd ..
+
+
+:end
Index: Receive_Code/format/24g.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/24g.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/24g.format	(working copy)
@@ -0,0 +1,92 @@
+
+omemalloc(
+// patch allocated
+4 mem_24g_tx_btclk	
+1 mem_24g_interval
+1 mem_24g_txfail_cnt
+1 mem_24g_attempt_cnt
+1 mem_24g_attempt_flag
+3 mem_24g_rxfail_cnt
+1 mem_24g_retry
+1 mem_24g_pid
+1 mem_24g_datalen
+2 mem_24g_crc
+64 mem_24g_rxbuf
+4 mem_24g_addr
+2 mem_24g_len
+10 mem_24g_txpayload
+10 mem_24g_txdata
+1 mem_24g_ch
+16 mem_24g_scremble
+1 mem_24g_current_ch_number
+4 mem_24g_ch_map1
+4 mem_24g_ch_map2
+4 mem_24g_ch_map3
+4 mem_24g_ch_map4
+1 mem_24g_interval_min
+1 mem_24g_interval_max
+1 mem_24g_ensure
+
+8 mem_24g_enter_hibernate
+1 mem_24g_enter_lpm_timer
+1 mem_24g_pairing_sm
+4 mem_24g_addr_copy
+
+//2.4g dongle
+1 mem_24g_sifs
+1 mem_24g_rxcnt
+4 mem_24g_addr_private_dongle
+1 mem_24g_map_buff0_dongle
+1 mem_24g_channel_cnt_dongle
+1 mem_24g_pairing_sm_dongle
+4 mem_24g_tx_btclk_dongle	
+1 mem_24g_interval_dongle
+1 mem_24g_ch_update_dongle
+1 mem_24g_rx_sync_dongle
+1 mem_24g_ch_cnt_dongle
+6 mem_24g_rxbuf_temp_dongle
+6 mem_24g_rxbuf_dongle
+3 mem_24g_rxfail_cnt_dongle
+1 mem_24g_spi_enable_flag
+
+)
+
+(
+0 P24G_SM_PAIRING_SUCC
+1 P24G_SM_PAIRING_REQUEST
+2 P24G_SM_PAIRING_WAIT_ADDR
+3 P24G_SM_PAIRING_COMPLETE
+4 P24G_SM_PAIRING_WAIT_SUCC
+)
+
+(
+0 P24G_PAIRING_REQ_HEAD
+1 P24G_PAIRING_COMPLETE_HEAD
+)
+
+(
+0 ENSURE_OFF_24G
+1 ENSURE_ON_24G
+)
+
+/* 24g */
+(
+6 dlen_24g
+14 plen_24g
+90 blen_tx_24g
+106 blen_rx_24g
+42 blen_txack_24g
+58 blen_rxack_24g
+3 retry_24g
+0xaaf08e acc_24g
+0x15c4 crc_data_3byte
+0xbb81 crc_data_6byte
+0x4160 crc_ack
+41390 crc_ack_4byte
+
+1 NO_ACK_24g
+0 with_ack_24g
+
+)
+
+
Index: Receive_Code/format/Hid.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/Hid.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/Hid.format	(working copy)
@@ -0,0 +1,21 @@
+
+(
+/*HID TYPE*/
+0x01 HID_TYPE_CONTROL
+0x04 HID_TYPE_GET_REPORT
+0x05 HID_TYPE_SET_REPORT
+0x07 HID_TYPE_SET_PROTOCOL
+0x09 HID_TYPE_SET_IDLE
+0x0a HID_TYPE_DATA
+/*HID REPORT ID*/
+0x01 HID_REPORT_ID_KB
+
+0x00 HID_CONTROL_P_NOOPERATION
+0x01 HID_CONTROL_P_HARDRESET
+0x02 HID_CONTROL_P_SOFTRESET
+0x03 HID_CONTROL_P_SUSPEND
+0x04 HID_CONTROL_P_EXITSUSPEND
+0x05 HID_CONTROL_P_VIRTUALCABLEUNPLUG
+)
+
+
Index: Receive_Code/format/app.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/app.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/app.format	(working copy)
@@ -0,0 +1,268 @@
+
+memalloc(
+
+/* load code */
+1 mem_ucode_status
+2 mem_otp_ucode_flag
+1 mem_spid_tbuf				/* spid buf: 03 addr[23:16] addr[15:8] addr[7:0] */
+0 mem_iicd_tbuf				/* iicd buf: iic_adr addr[15:8] addr[7:0] iic_adr */
+1 mem_addr_hi
+1 mem_addr_mi
+1 mem_addr_lo
+1 mem_iicd_addr
+4 mem_spid_rbuf
+2 mem_ucode_buf
+2 mem_ucode_len
+2 mem_sched_addr
+2 mem_ucode_ptr
+16 mem_ucode_keybuf
+18 mem_check_plap_temp
+
+1 mem_sensor_id
+1 mem_reconnect_flag
+1 mem_switch_fail_master_count
+1 mem_app_evt_timer_count
+
+)
+
+xmemalloc(
+1 mem_app_handshake_flag
+2 mem_sniff_param_interval
+2 mem_sniff_param_attempt
+2 mem_sniff_param_timeout
+
+/*App Callback Functons*/
+2 mem_cb_check_wakelock
+2 mem_cb_before_hibernate
+2 mem_cb_before_lpm
+2 mem_cb_le_process
+2 mem_cb_bt_process
+2 mem_cb_idle_process
+2 mem_cb_bb_event_process
+2 mem_cb_discovry_timeout
+2 mem_cb_att_write
+2 mem_cb_update_notify_value
+2 mem_cb_update_notify_continue
+2 mem_cb_event_timer
+2 mem_cb_le_set_mult
+2 mem_cb_bt_set_mult
+2 mem_soft_version_num
+
+
+
+
+2 mem_eeprom_base
+
+1 mem_unsniff2sniff_timer_count
+//lpm mode
+1 mem_wake_up_delay_timer
+
+1 mem_app_connection_options
+
+//
+2 mem_app_disconn_reason
+2 mem_app_disconn_reason_flag
+4 mem_lpm_delay_after_sniff
+1 mem_xrecord_mode
+
+2 mem_eeprom_block_size
+1 mem_wakup_from_power_flag
+1 mem_spi_init_clk
+1 mem_spi_init_delay_time
+1 mem_spi_ncs_gpio
+
+2 mem_nv_data_ptr
+1 mem_nv_data_number
+
+//adc
+2 mem_0_5_adc_io_data
+2 mem_1v_adc_hvin_data
+2 mem_2v_adc_vinlpm_data
+2 mem_1v_adc_io_data
+2 mem_5v_adc_hvin_data
+2 mem_3v_adc_vinlpm_data
+2 mem_otp_adc_flag
+2 mem_reference_voltage
+1 mem_adc_config_flag
+1 mem_adc_channel
+2 mem_adc_current_value
+
+
+ifdef SPI_SIMULATE
+//spi gpio config
+0 mem_spi_simulate_struct
+1 mem_spi_simulate_cs_gpio
+1 mem_spi_simulate_sclk_gpio
+1 mem_spi_simulate_mosi_gpio
+1 mem_spi_simulate_miso_gpio
+1 mem_spi_simulate_motion_gpio
+//spi slave read byte
+50 mem_spi_simulate_read_byte_slave
+1 mem_spi_simulate_read_byte_slave_temp
+1 mem_spi_simulate_read_length_slave
+1 mem_spi_simulate_read_length_slave_temp
+//spi slave write byte
+50 mem_spi_simulate_write_byte_slave
+1 mem_spi_simulate_write_byte_slave_temp
+1 mem_spi_simulate_write_byte_slave_temp_temp
+1 mem_spi_simulate_write_length_slave
+1 mem_spi_simulate_write_length_slave_temp
+endif
+)
+//adc read
+(
+0 ADC_CONFIG_VINLPM
+1 ADC_CONFIG_HVIN
+2 ADC_CONFIG_GPIO
+)
+
+
+0x0000 otp_ucode_flag
+0x07f0 otp_ucode_aeskey
+
+/* adc data addr and flag */
+(
+0x07e0 OTP_CHIP_FUNCTIONS
+0x07e2 otp_adc_io_0_5V_addr
+0x07e4 otp_adc_hvin_1V_addr
+0x07e6 otp_adc_vinlpm_2V_addr
+0x07e8 otp_adc_io_1V_addr
+0x07ea otp_adc_hvin_5V_addr
+0x07ec otp_adc_vinlpm_3V_addr
+0x07ee otp_adc_flag_addr
+0xaa55 OTP_ADC_FLAG
+)
+
+/* data stored in eeprom */
+(
+0	eeprom_bdaddr_list
+0	eeprom_nv_ram
+28	eeprom_last_record
+29	eeprom_le_reconn_local_addr
+35	eeprom_linkkey_list//64
+
+99	eeprom_module_bt_adss//6
+105	eeprom_module_le_adss//6
+111	eeprom_module_pincode_length//1
+112	eeprom_module_pincode//15
+127	eeprom_module_bt_name_length//1
+128	eeprom_module_bt_name//32
+160	eeprom_module_ble_name_length//1
+161	eeprom_module_ble_name//31
+192	eeprom_module_trans_baud//3
+195	eeprom_module_init_flag//2
+197	eeprom_module_uuid//6
+203 eeprom_module_ssp_enable//1
+204 eeprom_module_end//2
+
+//dpi eeprom addr
+198 eeprom_mouse_dpi
+)
+
+/*mem_app_handshake_flag*/
+(
+0 APP_HANDSHAKE_NULL
+1 APP_HANDSHAKE_DONE
+
+)
+/*mem_device_option*/
+(
+1 dvc_op_hci
+3 dvc_op_kb
+4 dvc_op_dongle
+5 dvc_op_spp
+6 dvc_op_ukey
+7 dvc_op_ir
+
+9 dvc_op_shutter
+10 dvc_op_module
+11 dvc_op_ble_mouse
+12 dvc_op_ble_kb
+13 dvc_op_ble_prcp
+255 dvc_op_test
+//device option hight 4
+6 dvc_op_mouse
+7 dvc_op_keyboard
+//device option low 2
+(
+0 MODE_3_MOUSE
+1 MODE_4_MOUSE
+)
+)
+
+(
+3 twspi_sclk
+4 twspi_sdio
+)
+
+(
+4 pan_clk_bit
+5 pan_dat_bit
+6 pan_mov_bit
+)
+
+(
+7 otp_uflag_aes
+6 otp_uflag_skip_eep
+5 otp_uflag_skip_flash
+4 otp_uflag_hci
+)
+
+/* ir command */
+(
+1 ircmd_record
+2 ircmd_play
+3 ircmd_write_pulse
+4 ircmd_write_seq
+5 ircmd_write_next
+
+8 ircmd_test_play
+9 ircmd_test_rec
+
+10 ircmd_report_pulse
+11 ircmd_report_seq
+12 ircmd_report_raw
+
+20 ircmd_screen_on
+21 ircmd_screen_off
+)
+
+(
+7 gpio_active_bit
+)
+(
+2 HID_HANDSHAKE_TIMEOUT
+
+)
+
+(
+1 APP_FLAG_RECONNECT
+)
+(
+5 LPM_WAKE_UP_DELAY_TIMER
+)
+
+
+//mem_app_disconn_reason
+//mem_app_disconn_reason_flag
+//bit map
+(
+2 APP_DISC_RSN_SIZE
+)
+(
+0 APP_DISC_BY_BUTTON
+1 APP_DISC_AFTER_PAIRING
+2 APP_DISC_AFTER_RECONN
+3 APP_DISC_AFTER_SNIFF
+4 APP_DISC_AFTER_SETUP_DONE
+5 APP_DISC_AFTER_HANDSHAKE
+6 APP_DISC_BT
+7 APP_DISC_BLE
+8 APP_DISC_L2CAP_REFUSED
+9 APP_DISC_SWITCH_FAIL
+)
+//eeprom init flag
+(
+	0xaa55 EEPROM_INIT_FLAG
+)
+
Index: Receive_Code/format/bt.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/bt.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/bt.format	(working copy)
@@ -0,0 +1,1028 @@
+
+	width = 32
+	const length = 12000
+
+	/* ========= memory ============== */
+memalloc(
+/* 00-0f most frequently used area  */
+1 mem_le_adv_transmit
+1 mem_le_adv_waitcnt
+1 mem_le_adv_rcv
+1 mem_le_req_rcv
+1 mem_le_scanrsp_rcv
+1 mem_le_conn_rcv
+
+1 mem_inquiryscan_waitcnt
+1 mem_inquiryscan_rcvcnt
+1 mem_pagescan_waitcnt
+1 mem_pagescan_rcvcnt
+1 mem_pagescan_rcvfhscnt
+1 mem_slave_rcvcnt
+1 mem_page_transmit
+1 mem_page_rcv
+1 mem_page_rcv_fhs
+1 mem_master_rcvcnt
+
+/* 10-1f debug area */
+1 mem_fhs_wait_counter
+1 mem_newconnto_counter
+1 mem_inquiry_transmit
+1 mem_inquiry_rcv
+1 mem_fw_ver
+1 mem_current_context
+1 mem_le_ch_mapped
+1 mem_last_freq
+1 mem_rssi
+1 mem_rx_type
+2 mem_rx_hec_err
+2 mem_rx_crc_err
+2 mem_context_ptr
+8 mem_display
+8 mem_bcd
+
+		/* context swappable area */
+1 mem_state
+1 mem_mode
+2 mem_tsniff
+4 mem_sniff_anchor
+6 mem_clk_offset
+2 mem_rx_window
+3 mem_plap
+1 mem_puap
+2 mem_pnap
+1 mem_conn_handle
+1 mem_arq
+1 mem_lmp_to_send
+1 mem_lmi_opcode
+1 mem_lmo_reason
+1 mem_op
+1 mem_state_map
+4 mem_supervision_timer
+2 mem_supervision_to
+1 mem_name_offset
+1 mem_key_size
+1 mem_conn_sm
+12 mem_aco
+16 mem_kc
+1 mem_conn_timer
+1 mem_sniff_attempt
+1 mem_sniff_timeout
+2 mem_dsniff
+1 mem_amaddr
+1 mem_lmo_opcode1
+1 mem_lmi_opcode1
+1 mem_lmo_reason1
+1 mem_lmo_tid1
+1 mem_lmo_opcode2
+1 mem_lmi_opcode2
+1 mem_lmo_reason2
+1 mem_lmo_tid2
+
+3 mem_hci_version
+2 mem_acl_pktlen
+1 mem_sco_pktlen
+2 mem_acl_pktcnt
+2 mem_sco_pktcnt
+
+1 mem_current_sniff_attempt
+1 mem_current_sniff_timeout
+1 mem_nfreq_index_inq
+1 mem_nfreq_index_page
+1 mem_ninqy_index
+1 mem_fhs_misc
+
+
+
+/* lpo related */
+4 mem_subsniff_instant
+1 mem_subsniff_rate
+2 mem_subsniff_tcmax
+1 mem_subsniff_tsniff
+1 mem_lpm_adjust
+6 mem_sync_clke
+1 mem_lpm_current_mult
+4 mem_gpio_wakeup_low
+4 mem_gpio_wakeup_high
+	
+
+/* sco & esco */
+1 mem_air_mode
+1 mem_sco_asso_handle
+2 mem_sco_handle
+1 mem_esco_desco
+1 mem_esco_type
+1 mem_neogotiation_state
+1 mem_saved_amaddr
+1 mem_esco_arq
+1 mem_esco_saved_arq
+30 mem_sco_obuf
+30 mem_sco_ibuf
+1 mem_sco_poll
+
+
+
+//page
+1 mem_npage_index
+1 mem_page_mode
+4 mem_page_clk
+
+
+/* test related */
+2 mem_tst_pktcnt_sync
+2 mem_tst_pktcnt_hec
+2 mem_tst_pktcnt_crc
+2 mem_tst_pktcnt_dmh
+3 mem_tmp_buffer_head
+80 mem_tmp_buffer
+
+
+1 mem_tester_emulate
+0 mem_temp_payload
+1 test_mode_scenario
+1 test_mode_hopping_mode
+1 test_mode_tx_freq
+1 test_mode_rx_freq
+1 test_mode_power_mode
+1 test_mode_poll_period
+1 test_mode_packet_type
+2 test_mode_data_length
+1 mem_test_mode_old_debug_config
+1 mem_tester_cnt
+
+
+/*temp mem*/
+1 mem_temp_am_addr
+1 mem_temp_arq
+
+//
+2 mem_len
+4 mem_clkn_bt
+4 mem_clke_bt
+4 mem_dpll_clkn
+1 mem_connection_options
+
+1 mem_nameres_cnt
+2 mem_txptr
+2 mem_slot_offset
+
+//extm
+1 extm_fhs_misc
+1 extm_newconn_am_addr
+3 extm_class
+3 extm_lap
+1 extm_uap
+3 extm_nap
+
+
+//debug
+1 mem_debug_config
+1 mem_lch_code
+1 mem_fhs_am_addr
+2 mem_dpll_error
+36 mem_bdaddr_list_buff
+1 mem_select_list_item
+0 mem_temp_reconn_record
+1 mem_record_bt_mode
+6 mem_temp_lap
+2 mem_list_item_ptr
+
+100 mem_eir
+)
+
+
+xmemalloc(
+/* patch enable 0x4000-0x403f  */
+
+1 mem_patch00
+1 mem_patch01
+1 mem_patch02
+1 mem_patch03
+1 mem_patch04
+1 mem_patch05
+1 mem_patch06
+1 mem_patch07
+1 mem_patch08
+1 mem_patch09
+1 mem_patch0a
+1 mem_patch0b
+1 mem_patch0c
+1 mem_patch0d
+1 mem_patch0e
+1 mem_patch0f
+1 mem_patch10
+1 mem_patch11
+1 mem_patch12
+1 mem_patch13
+1 mem_patch14
+1 mem_patch15
+1 mem_patch16
+1 mem_patch17
+1 mem_patch18
+1 mem_patch19
+1 mem_patch1a
+1 mem_patch1b
+1 mem_patch1c
+1 mem_patch1d
+1 mem_patch1e
+1 mem_patch1f
+1 mem_patch20
+1 mem_patch21
+1 mem_patch22
+1 mem_patch23
+1 mem_patch24
+1 mem_patch25
+1 mem_patch26
+1 mem_patch27
+1 mem_patch28
+1 mem_patch29
+1 mem_patch2a
+1 mem_patch2b
+1 mem_patch2c
+1 mem_patch2d
+1 mem_patch2e
+1 mem_patch2f
+1 mem_patch30
+1 mem_patch31
+1 mem_patch32
+1 mem_patch33
+1 mem_patch34
+1 mem_patch35
+1 mem_patch36
+1 mem_patch37
+1 mem_patch38
+1 mem_patch39
+1 mem_patch3a
+1 mem_patch3b
+1 mem_patch3c
+1 mem_patch3d
+1 mem_patch3e
+1 mem_patch3f
+
+	/* 3 device contexts  */
+240 mem_context
+1 mem_current_amaddr
+1 mem_lpm_mode
+1 mem_device_option
+1 mem_scan_mode
+4 mem_last_clkn
+
+	/* parameters */
+8 mem_features
+3 mem_lap
+1 mem_uap
+2 mem_nap
+1 mem_npage
+3 mem_glap
+3 mem_class
+2 mem_iscan_window
+2 mem_iscan_interval
+2 mem_pscan_window
+2 mem_pscan_interval
+2 mem_page_interval
+2 mem_page_window
+2 mem_page_to
+2 mem_inq_window
+1 mem_fcomp_mul
+1 mem_fcomp_div
+2 mem_rx_window_init
+2 mem_rx_window_sniff
+2 mem_rf_init_ptr
+
+	/* connection related */
+1 mem_last_type
+1 mem_last_type_esco
+1 mem_last_type_saved
+2 mem_retransmission_cnt
+4 mem_next_btclk
+
+1 mem_rf_rccal
+1 mem_handle_num
+1 mem_max_slot
+1 mem_eir_enable
+
+/* AFH related */
+4 mem_afh_instant
+2 mem_afh_error_total
+1 mem_afh_cfg
+1 mem_afh_new_mod
+5 mem_afh_map_lo
+5 mem_afh_map_hi
+1 mem_afh_used
+2 mem_afh_index
+11 mem_afh_map_new
+80 mem_afh_map
+4 mem_afh_timer
+10 mem_afh_classify_channel_map
+
+
+	/* lpm related */
+2 mem_chip_functions
+2 mem_lpm_wake_lock
+2 mem_lpm_interval
+1 mem_lpm_overhead
+1 mem_lpm_hibernate_switch
+1 mem_esco_addr
+1 mem_sniff_unint_lost
+1 mem_ptt
+4 mem_sleep_counter   //should be 0x41fc in REVC
+4 mem_sleep_counter_all
+6 mem_sleep_clkn
+3 mem_sniff_rcv
+3 mem_sniff_lost
+3 mem_clks_per_lpo
+
+1 mem_lpm_mult
+1 mem_lpm_mult_timeout
+1 mem_lpm_mult_cnt
+
+/* 8139-813b lpm_ctrl[31:12] */
+3 mem_lpm_config				
+
+1 mem_lpm_xtalcnt
+1 mem_lpm_buckcnt
+1 mem_lpm_ldocnt
+1 mem_lpm_isogate
+1 mem_lpm_isogate_final
+16 mem_saved_gpio	// should be 0x421e in REVC
+3 mem_saved_gsel
+8 mem_saved_mark
+1 mem_saved_spidctrl
+2 mem_patch_ptr
+2 mem_patch_len
+
+32 mem_timers
+
+/*LINK KEY*/
+1 mem_link_key_exists
+3 mem_link_key_eeprom_head
+16 mem_link_key
+
+
+/* HCI */
+1 mem_hci_cmd
+1 mem_hci_conn_handle
+3 mem_hci_plap
+1 mem_hci_puap
+2 mem_hci_pnap
+
+/*Peripherals*/
+1 mem_uartd_rxitems_got_data
+1 mem_uartd_rxitems_threshold
+2 mem_uartd_rx_timeout
+
+1 mem_tx_lch
+2 mem_tx_len
+
+1 mem_tx_power
+
+1 mem_context_number
+
+ifdef DEBUG_RF_INIT
+1 mem_rf_init_data
+endif
+)
+
+(//bluetooth tx power
+0 TX_POWER_0DB
+1 TX_POWER_3DB
+2 TX_POWER_5DB
+3 TX_POWER_f3DB
+4 TX_POWER_f5DB
+)
+
+
+ifdef RAM_VERSION
+0x4b17 rom_lpm_sleep
+0x4b1d rom_lpm_enter_sleep
+0x4b16 rom_lpm_write_ctrl
+0x6b1a rom_otpd_read_data
+0x6ada rom_otp_write
+else
+0x3b17 rom_lpm_sleep
+0x59e0 rom_save_ucode
+
+0x4219 rom_mem_lpm_xtalcnt
+0x423b rom_mem_patch_ptr
+0x423d rom_mem_patch_len
+
+0x5b1a rom_otpd_read_data
+0x5ada rom_otp_write
+endif
+	/* context */
+(
+0x01 coffset_mode
+0x02 coffset_tsniff
+0x04 coffset_sniff_anchor
+0x08 coffset_clk_offset
+0x0e coffset_rx_window
+0x10 coffset_plap
+0x16 coffset_conn_handle
+0x17 coffset_arq
+	/* 3.0 only */
+0x18 coffset_lmp_to_send
+0x1b coffset_op
+0x1c coffset_state_map
+	/* le only */
+0x18 coffset_le_ch
+0x19 coffset_le_hop
+0x1a coffset_le_event_cnt
+
+80 context_size
+3 context_num
+)
+
+(
+0 lpm_flag_wake
+1 lpm_flag_loadcode
+)
+
+/* ========= parameters ============== */
+(
+0x0050 param_newconn_arq
+0x0007 param_esco_addr
+0x0010 param_conn_handle
+0x01f0 param_conn_handle_comp
+0x0020 param_newconnto
+0x0008 param_pagerespto
+0x0a00 param_snooze_setup_orig
+0x5353 param_snooze_ahead_orig
+0x00ff param_ninquiry
+0x2000 param_page_to
+0x0005 param_max_slot
+0x0010 param_sco_poll
+
+/* 6Mhz clock setting */
+ifdef CLK6M
+0x0721 param_tx_setup
+0x06e8 param_rx_setup
+0x04e8 param_rx_setup_earlier
+0x0300 param_rf_setup
+0x01d8 param_clke_cal
+0x0500 param_conn_access 
+0x0400 param_conn_access_wider
+200 param_pll_setup
+else
+/* 12Mhz clock setting */
+0x0e43 param_tx_setup
+0x09d0 param_rx_setup_earlier
+0x0600 param_rf_setup
+0x03bb param_clke_cal
+0x0600 param_conn_access 
+0x0800 param_conn_access_wider
+0x0500 param_pll_setup		// 120 is minimum
+0x0d00 param_rx_setup	// 114us before sync
+2000 param_dpll_start_delay
+endif
+
+110 param_lpm_fix
+10 param_lpo_extra
+200 param_lpm_adjmax
+
+ifdef SIM
+20 param_hibernate_clks
+3 param_chgpump_delay
+else
+-1 param_hibernate_clks
+3000 param_chgpump_delay
+endif
+
+3 param_featrue_ssp
+0x0101 param_lmpext_ssp_enable
+339 param_acl_pktlen
+30   param_sco_pktlen
+1     param_acl_pktcnt		/*buffer acl pkt cnt*/
+7     param_sco_pktcnt
+
+
+0x8fffff param_features0
+0x9d83fe param_features1  // not support afh
+0x8359     param_features2
+0x000033 param_unap
+0x001177 param_lap
+0x9e8b33 param_glap
+0x002540 param_class//0x180208 //0x002580//402500//240404
+0x12e904 param_hci_version
+0x000a04 param_lmp_version//0x0a04
+0x000a06 param_lmp_version0
+0x12e9 param_lmp_subversion
+0x0012 param_tisw
+0x0012 param_tpsw
+0x1000 param_tisi
+0x0800 param_tpsi
+0x0020 param_page_window
+0x0020 param_inq_window
+0x1c80 param_supervision_to
+39 param_fcomp_div
+2 param_fcomp_mul
+6     param_name_len
+0x535442 param_name
+0x344950 param_name1
+
+
+)
+
+/* ======= packet types  ========= */
+(
+0x0      type_null    
+0x1      type_poll   
+0x2      type_fhs    
+0x3      type_dm1    
+0x4      type_dh1    
+0x5      type_hv1    
+0x6      type_hv2    
+0x7      type_hv3    
+0x8      type_3dh1     
+0x9      type_aux1   
+0xa      type_dm3    
+0xb      type_dh3    
+0xe      type_dm5    
+0xf      type_dh5    
+0x10     type_id
+0x11     type_shutdown
+0x13     type_lmp
+)
+
+/* ========== flag[6] =============== */
+(
+0        always        /* always 1 */
+1        true          /* set/rstn by verify,compare,icompare (true) */
+2        positive      /* set/rstn by all alu operations (opcode = 0x03,0x13,0x0f,0x1f), if alu output >= 0 */
+3        timeout       /* read only, the timeout from timers */
+5        zero          /* set/rstn by all alu operations (opcode = 0x03,0x13,0x0f,0x1f), if alu output == 0 */
+6        crc_failed    /* level, cleared by hop_start */
+7        enable_white  /* outside mux decide whether to load bt_clk or response_X */
+8        enable_parity /* level */
+9        enable_crc    /* level */
+10       enable_hec    /* level */
+11       decode_fec1   /* level */
+12       decode_fec2   /* level */
+13       decode_fec0   /* level */
+14       encrypt       /* level */
+15       crc16       /* for caculate ccitt crc16 */
+16       swfine	/* =0 stop_watch count based on oneslot =1 on 1 clock */
+20       rqst_freq    /* pulse, to start calculating frequency */
+21       recalc        /* pulse, to recalculate the fhs_parity */
+22       init_encrypt  /* pulse, issued to initialize encrption */
+23       mhalfbnd    /* half slot boundary of clke_rt, or when clke_bt[0] toggles */
+24       sync          /* sync found as a result of correlation,set/rstn by correlate opcode */
+25       user10    /* user10 */
+26       kc_p_activate  /* pulse to recalc the kc_p */
+27       encode_fec1   /* level */
+28       encode_fec2   /* level */
+29       encode_fec0   /* level */
+30       packet_end    /* pulse */
+32       is_tx         /* level */
+33       is_rx         /* level */
+34       halfslot     /* pulse, read only, when clkn_bt[0] toggles */
+35       oneslot      /* pulse, read only, when clkn_bt[1] toggles */
+36       mslotbnd     /* pulse, read only, when clke_bt[1] toggles */
+37       expire       /* level, read only, when selected clock source exceed timeup value */
+38       meet         /* level, read only, when selected clock source meet timeup value */
+39       tx_clear     /* level, read only, indicate tx pipe is cleared */
+40       user         /* user0 */
+41       master        /* user1 */
+42       slave2         /* user2 */
+43       wake           /* user3 */
+44       user2        /* user4 */
+45       match         /* user5 */
+46       attempt        /* user6 */
+47       user3          /* user7 */
+48       clknt         /* user8 */
+49	   user7 	/* user9 */
+50       synchronize   /* synchronize lpo and regular version of the clock */
+51       lpo_edge  /* read only, 3 clocks after risling edge of lpo clock */
+52       blank         /* C0 only, means pdata == 0 */
+53       modone          /* set divide operation is done */
+54       le		/* bluetooth 4.0 LE enable */
+55       aes_ready	/* set when aes is ok */
+63       never         /* read only, always 0 */
+)
+
+default flag = always
+
+/* ========== reg[6] =============== */
+(
+0        mark   /* for keeping strobes, more permanent */
+1        type   /* save and verify during rx */     /* rw */
+2        temp   /* general purpose register, 64 bits */
+3        contru  /* contr uart */
+4        am_addr      /* verify during rx, read and send during tx */ /* ro */
+5        contw        /* last mem_addr during write */
+6        contr        /* last mem_addr during read */
+7        queue    /* the index of qset*,qisolate* commands, ie, if queue = 3, qset/qisolate operate on bit3 */
+8        debug    /* can be wired out for observation */
+9        access   /* the 72 bit access word */
+10       contwu   /* contw uart */
+11       timeup        /* when does certain counter expire */
+12       pwindow       /* bit 71-61 of pdata; because on rx, bits shifts in from 71 down */
+13       fhs_parity    /* re-gernated based on bt_adr( {nap,uap,lap} ) when recalc flag is pulsed */
+14       white_init    /* init value of the whitening */
+15       crc24_init        /* init crc24 lfsr, 24 bits */
+16       interrupts    /* set interrupts, 40 bits */
+17       rega          /* general purpose register, 32 bits */
+18       regb          /* general purpose register, 32 bits */
+19       regc          /* general purpose register, 17 bits */
+20       regab         /* concat of {rega,regb}, thus 64 bits */
+21       radio_ctrl   /* radio i/f direct i/o ctrl, check following "radio_ctrl" section */
+21       ctrl_reg     /* 2023 and after */
+22       jtag_addr    /* load jtag address field, lsb */
+23       freq_index   /* 7 bit read only */
+24       jtag_data    /* wdata to and rdata from jtag */
+25       clkn              /* {clkn_bt, clkn_rt} */
+26       clke              /* {clke_bt, clke_rt} */
+27       stop_watch
+28       fhs_misc   /* SR, SP, pscan mode */
+29       fhs_class  /* class field in fhs */
+30       fhs0   /* read only, bit 0-71 of fhs word */
+31       fhs1   /* read only, bit 72-142 of fhs word */
+32       bt_adr /* r/w, the bt_addr to access gen and freq hopping, contain only lap and uap */
+33       bt_clk /* r/w, the bt_clk for freq hopping */
+34       clkn_bt  /* read only, native bluetooth clock, free running 3.2KHz  or controlled by RTHALFSLOT register */
+35       clkn_rt  /* read only, native realtime clock, free running 12MHz, count from 0-3749, or controlled by RTHALFSLOT register */
+36       freq_mode
+/* wire even_train    = freq_mode[4];    // odd even train                            */
+/* wire conn_mode     = 3;    // connection                                           */
+/* wire iqpgscan_mode = 2;    // slave in inquiry and page (not response)             */
+/* wire iqpgresp_mode = 1;    // slave in inquriy and page (response only)            */
+/* wire inqypage_mode = 0;    // master in inquiry and page(response or not response) */
+37       xin   /* x parameter, read only */
+38       N_tx_slot /* the N factor in equations for Xi,Xp,Xprm,Xprs */
+39 	   auxcnt
+40       clke_bt  /* r/w,  external bluetooth clock , free running 3.2KHz or controlled by RTHALFSLOT register */
+41       clke_rt  /* r/w,  external realtime clock, , free running 12MHz, count from 0-3749, or controlled by RTHALFSLOT register */
+43       host_mode         /* generic stuff for kick starts */
+44       lap
+45       uap
+46       nap         
+47       regext		/* r/w extended 12x32bit registers,  indexed by regext_index */
+48       alarm             /* r/w, lpo wake up time, this is also how lpo and current clock keep sync */
+49       lpo_time          /* read only, this is the value to be copied back to clkn/clke after wakeup */
+50       kc_ls             /* secret key,                71: 0 */
+51       kc_ms             /* secret key,               127:72 */
+52       g1l               /* encryption length                */
+53		mask3ff		/* for mask 0x3ff operation */
+54       aes_ctrl		
+56       regext_index   /* index of regext */
+57	     loopcnt
+58      stack			/* current return address */
+59       stack_ptr		/* stack depth */
+61         pc /* direct goto */
+62       null              /* to nowhere */
+63       pdata /* the shift register */
+)
+default reg = pdata
+
+/* regext_index */
+(
+0 regidx_data
+4 regidx_key
+8 regidx_xor
+12 regidx_result
+)
+/* ========== radio_ctrl========= */
+(
+0 TXGFSK
+1 PSK
+2 PSK3M
+3 RESET
+)
+/* assign BPWR = radio_ctrl[0]; */
+/* assign PARAMP = radio_ctrl[1]; */
+/* assign XTALPU = radio_ctrl[2]; */
+/* assign SYNTHPU = radio_ctrl[3]; */
+/* assign TXPU = radio_ctrl[4]; */
+/* assign RXPU = radio_ctrl[5]; */
+/* assign SLCTRL = radio_ctrl[6]; */
+/* assign XTALSEL_MUX_SEL = radio_ctrl[7] */
+
+
+/* =========== destination[4] ============== */
+(
+0 bucket
+1 rxf
+2 back
+3 mod
+)
+default dest = bucket
+
+/* =========== source[4] ============= */
+(
+1 txf
+3 demod
+)
+default source = 0
+
+
+/* ============== mark ============= *//*0 - 47 */
+(
+
+0  mark_fhs_eir  
+1  mark_rxbuf_inuse
+2  mark_tx_l2cap
+3  mark_switch_initiated
+4  mark_accept_switch
+5  mark_loopback
+7  mark_esco
+8  mark_esco_rxok
+9  mark_context
+10 mark_am_addr_broadcast
+11 mark_fhs_already_good
+12 mark_page_trainb
+13 mark_lpm_mult_enable
+14 mark_usb_flag
+15 mark_old_packet
+16 mark_longpacket
+17 mark_testmode
+18 mark_ar2
+19 mark_h5tx_rp
+20 mark_h5tx_crc	
+21 mark_h5tx_retransmit
+22 mark_h5rx_pstart
+23 mark_h5_sync
+24 mark_h5_reinit
+28 mark_inquiry_on
+29 mark_inquiry_state
+30 mark_inquiry_trainb
+31 mark_periodical_diac
+32 mark_all_diac
+33 mark_slave_in_rand_accepted
+34 mark_reconn_recieve_switch
+35 mark_isstr
+36 mark_loadcode
+37 mark_ext_patch
+38 mark_24g
+39 mark_24g_conext
+40 mark_24g_search_pair
+41 mark_24g_normal_rcv
+42 mark_eeprom_size
+// REVAB:max 35, REVC:max 63
+
+)
+
+(
+1 reload_type_otp
+2 reload_type_spi
+3 reload_type_iic
+)
+
+
+/* ============== soft timers ============== */
+(
+0 h5_reinit_timer
+1 hci_retransmit_timer
+1 le_adv_interval_timer
+2 inquiry_length_timer
+3 le_scan_interval_timer
+4 page_length_timer
+5 iscan_interval_timer
+6 pscan_interval_timer
+7 lpo_delay_timer
+8 ui_hundred_millisecond_timer
+9 ui_led_blink
+10 switch_wait_timer
+11 enpt_delay_timer
+12 temp_timer
+13 page_interval_timer
+14 uart_rx_timer
+)
+(
+0 ui_led_stop
+1 ui_led_start
+2 ui_led_dark_time
+3 ui_led_light_time
+)
+(
+1 hci_cmd_inquiry
+2 hci_cmd_inquiry_cancel
+3 hci_cmd_remote_name_req
+4 hci_cmd_remote_feature_req
+5 hci_cmd_create_conn
+6 hci_cmd_disconn
+7 hci_cmd_accept_conn
+8 hci_cmd_reject_conn
+9 hci_cmd_pair
+10 hci_cmd_nopair
+11 hci_cmd_linkkey
+12 hci_cmd_nokey
+13 hci_cmd_auth
+14 hci_cmd_stopencrypt
+15 hci_cmd_startencrypt
+16 hci_cmd_setup_sco
+17 hci_cmd_disconn_sco
+18 hci_cmd_in_sniff
+19 hci_cmd_exit_sniff
+20 hci_cmd_remote_version_req
+21 hci_cmd_remote_ext_features_req
+22 hci_cmd_io_cap
+23 hci_cmd_role_discovery
+24 hci_cmd_role_switch
+25 hci_cmd_accept_with_switch
+26 hci_cmd_detach
+27 hci_cmd_le_create_conn
+28 hci_cmd_accept_sco_conn
+80 hci_cmd_wait_remote_feature
+81 hci_cmd_wait_remote_ext_feature
+82 hci_cmd_wait_remote_name
+)
+
+
+
+/* ============== debug ============= */
+(
+0 debug_neg_skew
+1 debug_bitbucket
+2 debug_dont_clear_got_tx
+3 debug_scatter_enabled
+4 debug_tx_fixed_freq
+5 debug_rx_fixed_freq
+6 debug_tx_pattern
+)
+
+/* ============== tester_emulator ============= */
+(
+0 tester_fixed_flow
+1 tester_fixed_flow_polarity
+2 tester_change
+3 tester_exit
+4 tester_pattern_test
+5 tester_whitening_change
+6 tester_fixed_freq
+7 tester_no_whitening
+)
+
+/* ============== mode ==========*/
+(
+0 mode_le
+1 mode_master
+2 afh_enable
+3 afh_change
+4 send_sco_when_slave
+5 first_seqnx
+)
+
+/* ============== state_map ==========*/
+(
+0 smap_lmptidinit
+1 smap_lmptid
+2 smap_encryption
+3 smap_name_res
+4 smap_name_req
+5 smap_edr
+6 smap_rxlmp
+7 smap_rxl2cap
+)
+(
+0 state_inconn
+1 state_insniff
+2 state_insco 
+3 state_inpage
+4 state_conn_comp
+5 state_init_seq
+6 state_combkey
+7 state_linkkey
+)
+(
+0 op_send_sres
+1 op_auth_req
+2 op_inrand_req
+3 op_disconn
+4 op_stop_enc
+5 op_start_enc
+6 op_txl2cap
+7 op_pkt_comp
+)
+
+
+/* ============== arq [3] ================ */
+(
+0 flow
+1 arqn
+2 seqn
+3 wack
+4 flowx              /* out */  /* not really in memory */
+5 arqnx              /* out */
+6 seqnx              /* out */
+7 bcast1             /* first broadcast received */
+)
+
+/* arq          {flow,arqn,seqn}, read/write */
+/* [0] flow r/w  acl full status of the other, store during rx, checked during tx */
+/* [1] arqn r/w  ack of the other during rx (ack tx fifo),                        */
+/* [2] seqn r/w  seqn of the other, check during rx                               */ 
+/* arqx         {flowx,arqnx,seqnx} */
+/* [0] flowx r/o flow back to the other, 1 alow send, 0 not to send, read only tx */
+/* [1] arqnx r/w ack to the other, set by rx, send back on tx                     */
+/* [2] seqnx r/w toggled by arqn, to be send during tx                            */ 
+
+(
+0 llid0
+1 llid1
+2 nesn
+3 sn
+4 md
+5 wak
+)
+
+/* AFH flags */
+(
+0 AFH_CFG_ON
+1 AFH_CFG_TIMER
+2 send_lmp_set_afh
+3 AFH_CFG_REPORT_MODE
+4 AFH_CFG_MASTER_SENT_REQ
+)
+
+/* LLID CODE */
+(	
+1 LLID_L2CAP_CONT
+2 LLID_L2CAP_START
+3 LLID_LMP
+)
+
+/* ============== master_state ==========*/
+(
+0  master_in_idle
+1  master_in_inquiry
+2  master_in_page
+10 master_in_becoming_slave
+15 master_in_conn
+)
+(
+0 newrev_feature_bettx
+1 newrev_feature_betplltx
+2 newrev_feature_skip_retransmit
+3 newrev_feature_init_radio_after_sleep
+4 newrev_feature_no_lpolog
+)
+/*************mem_pincode_state****************/
+(
+0 pincode_state_ilde
+1 pincode_state_wait_pincode
+2 pincode_state_pincode_ready
+)
+
+
+// lpm_write
+(
+1 lpmreg_sel_ctrl
+2 lpmreg_sel_ctrl2
+4 lpmreg_sel_gpiolow
+8 lpmreg_sel_gpiohigh
+16 lpmreg_sel_counter
+)
+
+//scan_mode
+(
+0 inq_scan_mode
+1 page_scan_mode
+2 page_inq_enable
+)
+//mem_neogotiation_state
+(
+ 0 default_neogotiation_state
+ 1 prarm_neogotiation
+)
+
+//mem_lpm_wake_lock
+(
+
+2 wake_lock_hci_host
+3 wake_link_key_exists
+4 wake_lock_delay
+5 wake_lock_uart_tx
+6 wake_lock_uart_rx
+7 wake_lock_button
+8 wake_lock_cmd
+9 wake_lock_app
+10 wake_lock_lmp_tx
+11 wake_lock_lmp_rx
+12 wake_lock_l2cap_tx
+13 wake_lock_l2cap_rx
+14 wake_lock_ipc_c512bt
+15 wake_lock_ipc_bt2c51
+
+)
+
+(
+0 bt_disabled
+1 ble_disabled
+2 module_disable
+
+)
+
+(
+0x33  REC_3_MODE
+0x34  REC_4_MODE
+0x35  REC_4_MODE_STATIC_ADDRESS
+0x36  REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS
+0x37  REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS
+)
+
+
+//sniff UART_TX UART_RX
+(
+6 UART_WAKEUP_TX
+7 UART_WAKEUP_RX
+)
+
+
Index: Receive_Code/format/command.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/command.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/command.format	(working copy)
@@ -0,0 +1,1386 @@
+
+/* Parse Command:
+TX: take bits from tx fifo, jam it into shift and a destination (rf,bucket)
+RX: take bits from demod,  jam it into shift and a destination (acl,sco,bucket) */
+
+/* Inject Command:
+TX: 0 into shift, send tail of shift into a destination (rf,bucket)
+RX: 0 into shift, send tail of shift into a destination (acl,sco,bucket) */
+
+format
+  ! 15 romdat
+  % d0
+  % d1
+  % d2
+  % d3
+  [8] d0
+  [8] d1
+  [8] d2
+  [8] d3
+end
+
+format
+  ! 15 enable   /* set flag to 1 */
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [6] null
+  [9] 0
+end
+ /* High 5 bytes of channel map */
+format
+  ! 15 pulse   /* set flag to 1 */
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [6] null
+  [9] 0
+end
+
+format
+  ! 15 disable   /* set flag to 0 */
+  % flag
+  [5] opcode
+  [6] 2
+  [6] flag
+  [6] null
+  [9] 0
+end
+
+format
+  ! 15 set0  /* set selected bit of reg to 0 */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9
+  [6] never
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 set1  /* set selected bit of reg to 1 */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9          /* alu op demux */
+  [6] always
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 setflag  /* set selected bit of the reg to the polarity of the flag */
+  % flag
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9
+  [6] flag
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 nsetflag  /* set the selected bit of the reg to the opposite polarity of the flag */
+  % flag
+  % immediate
+  % reg
+  [5] opcode
+  [6] 0x29
+  [6] flag
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 setflip    /* invert the selected bit of the reg */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 10            /* this is alu op */
+  [6] always
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 0x1f qset1      /* demux the lowest 4 bit of queue and OR it with regr into regw */
+  % reg             /* in short, set the bit in reg indexed by queue to 1 */
+  [5] opcode
+  [6] 9
+  [6] always
+  [6] reg
+  [9] 0
+end
+  
+format
+  ! 0x1f qset0      /* demux the lowest 4 bit of queue and AND it with regr into regw */
+  % reg             /* in short, set the bit in reg indexed by queue to 0 */
+  [5] opcode
+  [6] 9
+  [6] never
+  [6] reg
+  [9] 0
+end
+
+format 
+  ! 0x1f qsetflag   /* set the bit in reg index by queue to same as flag */
+  % flag
+  % reg
+  [5] opcode
+  [6] 9
+  [6] flag
+  [6] reg
+  [9] 0
+end
+
+format 
+  ! 0x1f nqsetflag   /* set the bit in the reg index by queue to opposite of flag */
+  % flag
+  % reg
+  [5] opcode
+  [6] 0x29
+  [6] flag
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 0x1f qsetflip      /* flip the bit in reg index by queue */
+  % reg
+  [5] opcode
+  [6] 10
+  [6] always
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 1 parse       /* take bits out of source (sco_tx,tx_buffer,rx-elas) into pdata and dest (sco_rx,rx_fifo,tx-elas) */
+  % source
+  % dest
+  % immediate
+  [5] opcode
+  [4] source      /* voice, data, demod */
+  [2] 0
+  [6] 0    
+  [2] 0           /* parse or inject */ 
+  [4] dest        /* acl, sco, mod, bucket */
+  [9] immediate   /* number of bits to parse off */
+end
+
+format
+  ! 1 inject      /* shift data from pdata into destination (tx-elas,rx_fifo,sco_rx) */
+  % destination
+  % immediate
+  [5] opcode
+  [4] 0
+  [2] 0
+  [6] 1
+  [2] 0
+  [4] destination /* acl,sco,mod,bucket */
+  [9] immediate   /* number of bits to be injected */
+end
+
+format
+  ! 1 iinject
+  % destination
+  % regr
+  [5] opcode
+  [6] regr       /* contain the number of bits to inject */
+  [6] 3
+  [2] 0
+  [4] destination /* acl,sco,mod,bucket */
+  [9] 0 
+end
+
+format
+  ! 1 stuff  /* automatic parse, stuff_counter decrement on every bit until hits zero */
+  % source
+  % destination
+  [5] opcode
+  [4] source
+  [2] 0
+  [6] 2
+  [2] 0
+  [4] destination
+  [9] 0
+end
+
+format    /* force immediate value into registers */
+  ! 3 force
+  % immediate
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 0    /* alu operation force */
+  [6] regw  /* destination register */
+  [9] immediate
+end
+
+format    /* force whatever is on shift_reg to regsiters */
+  ! 0x13 iforce
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 0    /* alu operation force */
+  [6] regw  /* destination register */
+  [9] 0
+end
+
+format    /* force immediate value into registers */
+  ! 3 increase
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 1    /* alu operation add */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 pincrease
+  % immediate
+  [5] opcode
+  [6] -1  /* pdata */
+  [6] 1   /* alu add */
+  [6] -1  /* back to pdata */
+  [9] immediate
+end
+
+format    /* force immediate value into registers */
+  ! 3 and_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 2    /* alu operation and into */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 and
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 2    /* alu operation and into */
+  [6] regw
+  [9] immediate
+end
+  
+format
+  ! 0x13 iand    /* pdata & regr -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 2    /* alu operation and into */
+  [6] regw
+  [9] 0
+end
+  
+
+format    /* and whatever is in shiftreg with reg */
+  ! 0x13 iand_into
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 2    /* alu operation and into */
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 3 or_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 3    /* alu operation or into */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 or
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 3    /* alu operation or into */
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 ior
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 3    /* alu operation or into */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 0x13 ior_into
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 3    /* alu operation or into */
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 3 skip_to   /* jump to location stored in reg */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 4   /* alu operation copy */
+  [6] rom_addr
+  [9] 0
+end
+
+format
+  ! 3 copy
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 4   /* alu operation copy */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 deposit   /* copy the register content thru alu to shift register, not prealigned like preload */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 4   /* alu operation copy */
+  [6] -1  /* pdata */
+  [9] 0
+end
+
+format
+  ! 3 icopy     /* copy the shift register lsb content directly to register, not aligned */
+  % regw
+  [5] opcode
+  [6] -1  /* pdata */
+  [6]  4  /* alu copy */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 add
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 1
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 iadd       /* regr + pdata -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 1
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 sub          /* immediate - regr -> regw */
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 12
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 isub       /* pdata - regr -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 12
+  [6] regw
+  [9] 0
+end
+
+
+format
+  ! 3 flip
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 5
+  [6] reg
+  [9] immediate
+end
+  
+format
+  ! 0x13 iflip  /* use shift register as immediate to do xor */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] 0
+end
+  
+format
+  ! 3 xor
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 3 xor_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 5
+  [6] reg
+  [9] immediate
+end
+  
+format
+  ! 0x13 ixor  /* pdata xor regr and store result in regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] 0
+end
+  
+format
+  ! 3 invert
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 8
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 pinvert    /* invert pdata into itself */
+  [5] opcode
+  [6] -1
+  [6] 8
+  [6] -1
+  [9] 0
+end
+
+format
+  ! 3 div                 /* regr div immediate div */
+  % reg
+  % immediate
+  [5] opcode
+  [6] reg
+  [6] 13                   /* generate diven pulse to div */
+  [6] null
+  [9] immediate
+end
+
+format
+  ! 0x13 idiv           /* pdata div regr data ready at most after 41 nops */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 13                   /* generate diven pulse to div */
+  [6] null
+  [9] 0
+end
+
+format
+  ! 3 remainder            /* harvest div remainder */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 14
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 quotient             /* harvest div quotient */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 15
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 6
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift2
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 22
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift3
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 18
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift4
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 35
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift8
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 25
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift16
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 34
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift32
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 30
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 7
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift2
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 23
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift8
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 26
+  [6] regw
+  [9] 0
+end
+
+  
+format
+  ! 3 lshift3
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 19
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift4
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 36
+  [6] regw
+  [9] 0
+end
+  
+
+format
+  ! 3 lshift16
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 32
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 random               /* random number into regw */
+  % reg
+  [5] opcode
+  [6] 0
+  [6] 20
+  [6] reg
+  [9] 0
+end
+
+format                     /* bit reverse within a byte */
+  ! 3 reverse
+  % reg
+  % regw
+  [5] opcode
+  [6] reg
+  [6] 27
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 priority    /* priority encode reg into regw, lsb is the top priority, ie, priority(8'b00010000) = 4 */
+  % reg
+  % regw
+  [5] opcode
+  [6] reg
+  [6] 21
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 7 setsect   /* set a section of pdata */
+  % section    /* 0 sets 17:0 of pdata with set_data, 1 sets 35:18, 2 sets 53:36, 3 sets 71:54 */
+  % set_data
+  [5] opcode
+  [7] 0
+  [2] section
+  [18] set_data
+end
+
+format
+  ! 10 preload   /* load stuff into pdata according to fhs format, check us.v */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 0
+  [6] -1
+  [9] 0
+end
+
+format  /* load register with pdata content, according to fhs format, check us.v */
+  ! 10 ialigned   /* all bits are in position */
+  % regw
+  [5] opcode
+  [6] -1
+  [6] 0
+  [6] regw
+  [9] 0
+end
+
+format  /* load register to another according to fhs format */
+  ! 10 aligned
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 0
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 4 branch
+  % addr
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 call
+  % addr
+  % flag
+  [5] opcode
+  [6] 2
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 rtn
+  % flag
+  [5] opcode
+  [6] 3
+  [6] flag
+  [15] 0
+end
+
+format
+  ! 0x0c store          /* write to memory, data from pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0c hstore          /* write to memory, data from pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1c istore        /* write to memory, data from pdata, address from regr then mem_ptr */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg            /* hold address */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0d fetch          /* read from memory, data into pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d hfetch          /* read from memory, data into pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d crc         /* read from memory, count from loopcnt, put crc result into pdata */
+  % addr
+  [5] opcode
+  [6] 0
+  [1] 0
+  [1] 0
+  [4] 0
+  [15] addr
+end
+
+format
+  ! 0x1d icrc         /* read from memory, address from reg, count from loopcnt, put crc result into pdata */
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 0
+  [4] 0
+  [15] 0
+end
+
+
+format
+  ! 0x1d ifetch         /* read from memory, data into pdata, address from regr then mem_ptr */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0c storet          /* write to memory, data from temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0c hstoret          /* write to corereg, data from temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1c istoret        /* write to memory, data from temp, address from regr won't increment */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg            /* hold address */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0d fetcht          /* read from memory, data into temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d hfetcht          /* read from corereg, data into temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1d ifetcht         /* read from memory, data into temp, address from regr won't increment */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0e jam
+  % immediate
+  % addr
+  [5] opcode
+  [3] 0
+  [1] 0   /* msb */
+  [15] addr
+  [8] immediate
+end
+
+format
+  ! 0x0e hjam
+  % immediate
+  % addr
+  [5] opcode
+  [3] 0
+  [1] 1   /* msb */
+  [15] addr
+  [8] immediate
+end
+
+format			/* 0x242... */
+  ! 4 nbranch
+  % addr
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 1
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 ncall
+  % addr
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 2
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 nrtn
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 3
+  [6] flag
+  [15] 0
+end
+
+format
+  ! 4 nop
+  % addr  /* no-op for addr+2 clocks */
+  [5] opcode
+  [6] 0     
+  [6] 0     /* always */ 
+  [15] addr
+end
+
+format
+  ! 4 clear_stack
+  [5] opcode
+  [6] 4
+  [6] 0    /* always */
+  [15] 0
+end
+
+format
+  ! 6 until
+  % reg
+  % flag
+  [5] opcode
+  [6] reg
+  [6] flag
+  [6] 1
+  [9] 0
+end
+  
+format
+  ! 6 correlate   /* quit if 1. flag is true 2, regr time up 3, found sync,(cond_true) */
+  % reg          /* expire counter to check against */
+  % flag
+  [5] opcode
+  [6] reg
+  [6] flag
+  [6] 2           /* correlate */
+  [9] 0           
+end
+
+format
+  ! 5 compare   /* sets cond flag,  if reg equals immediate */
+  % immediate
+  % reg
+  % mask
+  [5] opcode
+  [6] reg
+  [3] 0
+  [9] mask
+  [9] immediate
+end
+
+format
+  ! 0x15 icompare   /* sets cond flag,  if reg equals pdata */
+  % mask
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 0
+  [9] mask
+  [9] 0
+end
+
+format   /* sets cond. flag, if reg equals LS half of shift reg with MS half of reg being mask */
+  ! 5 iverify
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 2
+  [18] 0
+end
+
+format
+  ! 0x15 qisolate1
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [18] -1
+end
+
+format
+  ! 0x15 qisolate0
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [18] 0
+end
+
+	/* REVAB bug: cannot access bit above 35 */
+format
+  ! 5 isolate1
+  % addr
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [9] -1
+  [9] addr
+end
+
+format
+  ! 5 isolate0
+  % addr
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [9] 0
+  [9] addr
+end
+
+format
+  ! 11 setarg
+  % immediate
+  [5] opcode
+  [27] immediate
+end
+
+format
+  ! 0x1b arg
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [21] immediate
+end
+
+  
+format
+  ! 0 sleep
+  [5] opcode
+  [27] 0
+end
+
+format
+  ! 0 snooze
+  [5] opcode
+  [6] -1
+  [21] 0
+end
+
+format
+  ! 0 revision
+  % rev_num
+  [5] opcode
+  [27] rev_num
+end
+
+format
+  ! 0x18 loop   /* branch when loopcnt is NOT zero, and decrease loopcnt */
+  % addr
+  [5] opcode
+  [4] 4
+  [8] 0
+  [15] addr
+end
+
+format
+  ! 0x18 beq   /* branch when pdata is equal to immediate */
+  % imme
+  % addr
+  [5] opcode
+  [4] 0
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bne   /* branch when pdata is NOT equal to immediate */
+  % imme
+  % addr
+  [5] opcode
+  [4] 1
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtneq   /* return when pdata is equal to immediate */
+  % imme
+  [5] opcode
+  [4] 2
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnne   /* return when pdata is NOT equal to immediate */
+  % imme
+  [5] opcode
+  [4] 3
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 bbit1   /* branch when pdata's imme bit is 1 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 5
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bbit0   /* branch when pdata's imme bit is 0 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 6
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtnbit1   /* return when pdata's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 7
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnbit0   /* return when pdata's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 8
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 8	bpatch
+  % imme
+  % addr
+  [5] opcode
+  [4] 9
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bmark1   /* branch when mark's imme bit is 1 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 10
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bmark0   /* branch when mark's imme bit is 0 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 11
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtnmark1   /* return when mark's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 12
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnmark0   /* return when mark's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 13
+  [8] imme
+  [15] 0
+end
+
+
+format
+  ! 3 mult                  /* immediate mult regr */  /* the product will be ready 17 clks later */
+  % immediate                                   /* use "product" instruction to get the result */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 16                   /* generate diven pulse to div */
+  [6] null
+  [9] immediate
+end
+
+format
+  ! 0x13 imult           /* pdata mult regr */  /* the product will be ready after 15 nops */
+  % reg                                         /* use product opcode to get the result */
+  [5] opcode
+  [6] reg
+  [6] 16                   /* generate mult pulse to multiplier */
+  [6] null
+  [9] 0
+end
+
+format
+  ! 3 mul32                  /* immediate mult regr */ 
+  % regr
+  % immediate                                  
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 31           
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 imul32           /* pdata mult regr 32x32=64bit */  
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 31                   
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 product              /* harvest mult product */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 17
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 byteswap
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 33
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 shasx          /* SHA256 Sx operation, immediate is Sx */
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 28
+  [6] regw
+  [9] immediate
+end
+
+
+format
+  ! 0x13 regexrot 	/* regext[0] <- regext[7], regext[1] <- regext[0], regext[2] <- regext[1] ... */
+  [5] opcode
+  [6] 0
+  [6] 29
+  [6] null
+  [9] 0
+end
+
Index: Receive_Code/format/hci.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/hci.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/hci.format	(working copy)
@@ -0,0 +1,642 @@
+
+
+memalloc(
+1 mem_h5rx_ackcnt
+1 mem_check_err_acl_cont
+
+1 mem_rp_packets
+2 mem_packet_type
+
+2 mem_hci_sniff_conn_handle
+2 mem_hci_sniff_max_interval
+2 mem_hci_sniff_min_interval
+2 mem_hci_sniff_attempt
+2 mem_hci_sniff_timeout
+2 mem_voice_setting
+1 mem_retransmission_effort
+2 mem_sco_ptype
+3 mem_extm_uap_restore
+
+2 mem_h5rx_rptr
+1 mem_h5rx_ack
+1 mem_h5tx_ack
+2 mem_h5tx_rptr
+2 mem_h5tx_wptr
+2 mem_h5tx_free
+1 mem_h5rx_tmp
+1 mem_h5tx_seq
+
+2 mem_hci_acl_queue_wptr
+2 mem_hci_acl_queue_rptr
+2 mem_hci_acl_queue_end
+1 mem_hci_acl_queue_wcnt
+1 mem_hci_acl_cnt
+
+2 mem_hci_acl_tx_trigger_wptr //tx via uart
+
+
+1 mem_ucode_id_local
+
+1 mem_ucode_id_remote
+1 mem_check_sum
+1 mem_ucode_temp
+1 mem_ucode_temp1
+1 mem_lock_in_enc//boolean
+
+1 mem_hci_disconn_reason
+
+1 mem_hci_curr_len
+2 mem_hci_curr_target 
+) 
+
+xmemalloc(
+
+2 mem_baud
+1 mem_hci_lt_rx_state
+)
+
+omemalloc(
+
+2 mem_acl_credits
+1 mem_allow_switch
+4 mem_hci_acl_queue_start	/*param_acl_pktcnt+2 byte*/
+4 mem_hci_wake_clk
+
+)
+15 hci_flag_rp
+//mem_hci_options bit map
+(
+1 hci_option_h4
+2 hci_option_protocol2
+3 hci_option_protocol3
+4 hci_option_uart
+5 hci_option_usb
+6 hci_option_phy2
+7 hci_option_phy3
+)
+// UART baud rate @6MHz
+(
+0 uart_ctrl_bit_enable
+3 uart_ctrl_bit_slip_protocol
+
+)
+
+//bit map of core_uart_ctrl
+(
+
+)
+//bit map of core_uart_status
+(
+0 uart_status_tx_fifo_full
+1 uart_status_tx_fifo_empty
+2 uart_status_tx_busy
+3 uart_status_rx_fifo_empty
+
+)
+//HCI H4 LOG related
+(
+0x4850 mem_hci_log
+8 hci_log_size
+100 hci_log_cnt
+
+)
+//HCI H4 Packet TYPE
+(
+0x01 HCI_H4_TYPE_CMD
+0x02 HCI_H4_TYPE_ACL
+0x04 HCI_H4_TYPE_EVENT
+
+)
+// HCI command opcode group field values
+(
+0x01 HCI_OGF_LINK_CONTROL
+0x02 HCI_OGF_LINK_POLICY
+0x03 HCI_OGF_BASEBAND
+0x04 HCI_OGF_INFO
+0x05 HCI_OGF_STATUS
+0x06 HCI_OGF_TEST
+0x08 HCI_OGF_LOW_ENERGY
+0x3e HCI_OGF_LOGO_TESTING
+0x3f HCI_OGF_VENDOR_SPECIFIC
+)
+
+// HCI link control opcode command field values, OGF=1
+(
+0x01 HCI_INQUIRY 
+0x02 HCI_INQUIRY_CANCEL 
+0x03 HCI_PERIODIC_INQUIRY_MODE 
+0x04 HCI_EXIT_PERIODIC_INQUIRY_MODE 
+0x05 HCI_CREATE_CONNECTION 
+0x06 HCI_DISCONNECT 
+0x07 HCI_ADD_SCO_CONNECTION 
+0x08 HCI_CREATE_CONNECTION_CANCEL
+0x09 HCI_ACCEPT_CONNECTION 
+0x0A HCI_REJECT_CONNECTION 
+0x0B HCI_LINK_KEY_REQUEST_REPLY 
+0x0C HCI_LINK_KEY_REQUEST_NEGATIVE_REPLY 
+0x0D HCI_PIN_CODE_REQUEST_REPLY 
+0x0E HCI_PIN_CODE_REQUEST_NEGATIVE_REPLY 
+0x0F HCI_CHANGE_CONNECTION_PACKET_TYPE 
+0x11 HCI_AUTHENTICATION_REQUESTED 
+0x13 HCI_SET_CONNECTION_ENCRYPTION 
+0x15 HCI_CHANGE_CONNECTION_LINK_KEY 
+0x17 HCI_MASTER_LINK_KEY 
+0x19 HCI_REMOTE_NAME_REQUEST 
+0x1A HCI_REMOTE_NAME_REQUEST_CANCEL
+0x1B HCI_READ_REMOTE_SUPPORTED_FEATURES 
+0x1C HCI_READ_REMOTE_EXT_FEATURES 
+0x1D HCI_READ_REMOTE_VERSION_INFORMATION 
+0x1F HCI_READ_CLOCK_OFFSET 
+0x20 HCI_READ_LMP_HANDLE
+0x28 HCI_SETUP_SCO_CONNECTION
+0x29 HCI_ACCEPT_SCO_CONNECTION
+0x2A HCI_REJECT_SCO_CONNECTION
+0x2B HCI_IO_CAP_REQUEST_REPLY
+0x2C HCI_USER_CONFIRMATION_REQUEST_REPLY
+0x2D HCI_USER_CONFIRMATION_REQUEST_NEGATIVE_REPLY
+0x2E HCI_USER_PASSKEY_REQUEST_REPLY
+0x2F HCI_USER_PASSKEY_REQUEST_NEGATIVE_REPLY
+0x30 HCI_REMOTE_OOB_DATA_REQUEST_REPLY
+0x33 HCI_REMOTE_OOB_DATA_REQUEST_NEGATIVE_REPLY
+0x34 HCI_IO_CAPABILITY_REQUEST_NEGATIVE_REPLY
+0x35 HCI_CREATE_PHYSICAL_LINK
+0x36 HCI_ACCEPT_PHYSICAL_LINK
+0x37 HCI_DISCONNECT_PHYSICAL_LINK
+0x38 HCI_CREATE_LOGICAL_LINK
+0x39 HCI_ACCEPT_LOGICAL_LINK
+0x3A HCI_DISCONNECT_LOGICAL_LINK
+0x3B HCI_LOGICAL_LINK_CANCEL
+0x3C HCI_FLOW_SPEC_MODIFY
+0x3D HCI_ENHANCED_SETUP_SYNCHRONOUS_CONNECTION
+0x3E HCI_ENHANCED_ACCEPT_SYNCHRONOUS_CONNECTION_REQUEST
+0x3F HCI_TRUNCATED_PAGE
+0x40 HCI_TRUNCATED_PAGE_CANCEL
+0x41 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST
+0x42 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST_RECEIVE
+0x43 HCI_START_SYNCHRONIZATION_TRAIN
+0x44 HCI_RECEIVE_SYNCHRONIZATION_TRAIN
+0x45 HCI_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY
+)
+
+
+// HCI link policy commands OCF value, OGF=2
+(
+0x01 HCI_HOLD_MODE 
+0x03 HCI_SNIFF_MODE 
+0x04 HCI_EXIT_SNIFF_MODE 
+0x05 HCI_PARK_MODE 
+0x06 HCI_EXIT_PARK_MODE 
+0x07 HCI_QOS_SETUP 
+0x09 HCI_ROLE_DISCOVERY 
+0x0B HCI_SWITCH_ROLE 
+0x0C HCI_READ_LINK_POLICY_SETTINGS 
+0x0D HCI_WRITE_LINK_POLICY_SETTINGS 
+0x0e HCI_READ_DEFAULT_LINK_POLICY_SETTINGS
+0x0f HCI_WRITE_DEFAULT_LINK_POLICY_SETTINGS
+0x10 HCI_FLOW_SPECIFICATION
+0x11 HCI_SNIFF_SUBRATING
+)
+
+// HCI host controller and baseband commands OCF values, OGF=3
+(
+0x01 HCI_SET_EVENT_MASK 
+0x03 HCI_RESET 
+0x05 HCI_SET_EVENT_FILTER 
+0x08 HCI_FLUSH 
+0x09 HCI_READ_PIN_TYPE 
+0x0A HCI_WRITE_PIN_TYPE 
+0x0B HCI_CREATE_NEW_UNIT_KEY 
+0x0D HCI_READ_STORED_LINK_KEY 
+0x11 HCI_WRITE_STORED_LINK_KEY 
+0x12 HCI_DELETE_STORED_LINK_KEY 
+0x13 HCI_WRITE_LOCAL_NAME 
+0x14 HCI_READ_LOCAL_NAME 
+0x15 HCI_READ_CONN_ACCEPT_TIMEOUT 
+0x16 HCI_WRITE_CONN_ACCEPT_TIMEOUT 
+0x17 HCI_READ_PAGE_TIMEOUT 
+0x18 HCI_WRITE_PAGE_TIMEOUT 
+0x19 HCI_READ_SCAN_ENABLE 
+0x1A HCI_WRITE_SCAN_ENABLE 
+0x1B HCI_READ_PAGE_SCAN_ACTIVITY 
+0x1C HCI_WRITE_PAGE_SCAN_ACTIVITY 
+0x1D HCI_READ_INQUIRY_SCAN_ACTIVITY 
+0x1E HCI_WRITE_INQUIRY_SCAN_ACTIVITY 
+0x1F HCI_READ_AUTHENTICATION_ENABLE 
+0x20 HCI_WRITE_AUTHENTICATION_ENABLE 
+0x21 HCI_READ_ENCRYPTION_MODE 
+0x22 HCI_WRITE_ENCRYPTION_MODE 
+0x23 HCI_READ_CLASS_OF_DEVICE 
+0x24 HCI_WRITE_CLASS_OF_DEVICE 
+0x25 HCI_READ_VOICE_SETTING 
+0x26 HCI_WRITE_VOICE_SETTING 
+0x27 HCI_READ_AUTOMATIC_FLUSH_TIMEOUT 
+0x28 HCI_WRITE_AUTOMATIC_FLUSH_TIMEOUT 
+0x29 HCI_READ_NUM_BROADCAST_RETRANSMISSIONS 
+0x2A HCI_WRITE_NUM_BROADCAST_RETRANSMISSIONS 
+0x2B HCI_READ_HOLD_MODE_ACTIVITY 
+0x2C HCI_WRITE_HOLD_MODE_ACTIVITY 
+0x2D HCI_READ_TRANSMIT_POWER_LEVEL 
+0x2E HCI_READ_SCO_FLOW_CONTROL_ENABLE 
+0x2F HCI_WRITE_SCO_FLOW_CONTROL_ENABLE 
+0x31 HCI_SET_CONTROLLER_TO_HOST_FLOW_CONTROL 
+0x33 HCI_HOST_BUFFER_SIZE 
+0x35 HCI_HOST_NUM_COMPLETED_PACKETS 
+0x36 HCI_READ_LINK_SUPERVISION_TIMEOUT 
+0x37 HCI_WRITE_LINK_SUPERVISION_TIMEOUT 
+0x38 HCI_READ_NUMBER_OF_SUPPORTED_IAC 
+0x39 HCI_READ_CURRENT_IAC_LAP 
+0x3A HCI_WRITE_CURRENT_IAC_LAP 
+0x3B HCI_READ_PAGE_SCAN_PERIOD_MODE 
+0x3C HCI_WRITE_PAGE_SCAN_PERIOD_MODE 
+0x3D HCI_READ_PAGE_SCAN_MODE 
+0x3E HCI_WRITE_PAGE_SCAN_MODE 
+0x3F HCI_SET_AFH_CHANNEL_CLASSIFICATION 
+
+
+0x42 HCI_READ_INQUIRY_SCAN_TYPE 
+0x43 HCI_WRITE_INQUIRY_SCAN_TYPE 
+0x44 HCI_READ_INQUIRY_MODE 
+0x45 HCI_WRITE_INQUIRY_MODE 
+0x46 HCI_READ_PAGE_SCAN_TYPE 
+0x47 HCI_WRITE_PAGE_SCAN_TYPE 
+
+0x48 HCI_READ_AFH_CHANNEL_ACCESSMENT_MODE 
+0x49 HCI_WRITE_AFH_CHANNEL_ACCESSMENT_MODE 
+0x51 HCI_READ_EXTENDED_INQUIRY_RESPONSE
+0x52 HCI_WRITE_EXTENDED_INQUIRY_RESPONSE
+0x53 HCI_REFRESH_ENCRYPTION_KEY
+0x55 HCI_READ_SIMPLE_PAIRING_MODE
+0x56 HCI_WRITE_SIMPLE_PAIRING_MODE
+0x57 HCI_READ_LOCAL_OOB_DATA
+0x58 HCI_READ_INQUIRY_RESPONSE_TRANSMIT_POWER_LEVEL
+0x59 HCI_WRITE_INQUIRY_TRANSMIT_POWER_LEVEL
+0x60 HCI_SEND_KEYPRESS_NOTIFICATION
+0x5A HCI_READ_DEFAULT_ERRONEOUS_DATA_REPORTING
+0x5B HCI_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING
+0x5F HCI_ENHANCED_FLUSH
+0x61 HCI_READ_LOGICAL_LINK_ACCEPT_TIMEOUT
+0x62 HCI_WRITE_LOGICAL_LINK_ACCEPT_TIMEOUT
+0x63 HCI_SET_EVENT_MASK_PAGE_2
+0x64 HCI_READ_LOCATION_DATA
+0x65 HCI_WRITE_LOCATION_DATA
+0x66 HCI_READ_FLOW_CONTROL_MODE
+0x67 HCI_WRITE_FLOW_CONTROL_MODE
+0x68 HCI_READ_ENHANCE_TRANSMIT_POWER_LEVEL
+0x69 HCI_READ_BEST_EFFORT_FLUSH_TIMEOUT
+0x6A HCI_WRITE_BEST_EFFORT_FLUSH_TIMEOUT
+0x6B HCI_SHORT_RANGE_MODE
+0x6C HCI_READ_LE_HOST_SUPPORT
+0x6D HCI_WRITE_LE_HOST_SUPPORT
+0x6E HCI_SET_MWS_CHANNEL_PARAMETERS
+0x6F HCI_SET_EXTERNAL_FRAME_CONFIGURATION
+0x70 HCI_SET_MWS_SIGNALING
+0x71 HCI_SET_MWS_TRANSPORT_LAYER
+0x72 HCI_SET_MWS_SCAN_FREQUENCY_TABLE
+0x73 HCI_SET_MWS_PATTERN_CONFIGURATION
+0x74 HCI_SET_RESERVED_LT_ADDR
+0x75 HCI_DELETE_RESERVED_LT_ADDR
+0x76 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST_DATA
+0x77 HCI_READ_SYNCHRONIZATION_TRAIN_PARAMETERS
+0x78 HCI_WRITE_SYNCHRONIZATION_TRAIN_PARAMETERS
+0x79 HCI_READ_SECURE_CONNECTIONS_HOST_SUPPORT
+0x7A HCI_WRITE_SECURE_CONNECTIONS_HOST_SUPPORT
+0x7B HCI_READ_AUTHENTICATED_PAYLOAD_TIMEOUT
+0x7C HCI_WRITE_AUTHENTICATED_PAYLOAD_TIMEOUT
+0x7D HCI_READ_LOCAL_OOB_EXTENDED_DATA
+0x7E HCI_READ_EXTENDED_PAGE_TIMEOUT
+0x7F HCI_WRITE_EXTENDED_PAGE_TIMEOUT
+0x80 HCI_READ_EXTENDED_INQUIRY_LENGTH
+0x81 HCI_WRITE_EXTENDED_INQUIRY_LENGTH
+)
+
+
+// HCI informational parameters OCF values, OGF=4
+(
+0x01 HCI_READ_LOCAL_VERSION_INFORMATION 
+0x02 HCI_READ_LOCAL_SUPPORTED_COMMANDS
+0x03 HCI_READ_LOCAL_SUPPORTED_FEATURES 
+0x04 HCI_READ_LOCAL_EXT_FEATURES 
+0x05 HCI_READ_BUFFER_SIZE 
+0x07 HCI_READ_COUNTRY_CODE 
+0x09 HCI_READ_BD_ADDR 
+0x0A HCI_REJECT_CONNECTION_REQUEST
+0x0B HCI_READ_LOCAL_SUPPORTED_CODECS
+)
+
+// HCI status parameters OCF values, OGF=5
+(
+0x01 HCI_READ_FAILED_CONTACT_COUNTER 
+0x02 HCI_RESET_FAILED_CONTACT_COUNTER 
+0x03 HCI_GET_LINK_QUALITY 
+0x05 HCI_READ_RSSI 
+0x06 HCI_READ_AFH_CHANNEL_MAP
+0x07 HCI_READ_BD_CLOCK
+0x08 HCI_READ_ENCRYPTION_KEY_SIZE
+0x09 HCI_READ_LOCAL_AMP_INFO
+0x0A HCI_READ_LOCAL_AMP_ASSOC
+0x0B HCI_WRITE_REMOTE_AMP_ASSOC
+0x0C HCI_GET_MWS_TRANSPORT_LAYER_CONFIGURATION
+0x0D HCI_SET_TRIGGERED_CLOCK_CAPTURE
+)
+
+// HCI testing command OCF values, OGF=6
+(
+0x01 HCI_READ_LOOPBACK_MODE 
+0x02 HCI_WRITE_LOOPBACK_MODE 
+0x03 HCI_ENABLE_DEVICE_UNDER_TEST_MODE 
+0x04 HCI_WRITE_SIMPLE_PAIRING_DEBUG_MODE
+0x07 HCI_ENABLE_AMP_RECEIVER_REPORTS
+0x08 HCI_AMP_TEST_END
+0x09 HCI_AMP_TEST
+0x0A HCI_WRITE_SECURE_CONNECTIONS_TEST_MODE
+)
+
+// HCI vendor specific command OCF values -OGF=3F
+(
+0x01 HCI_WRITE_BD_ADDR 
+0x02 HCI_READ_INQUIRY_RESPONSE_TIMEOUT 
+0x03 HCI_WRITE_INQUIRY_RESPONSE_TIMEOUT 
+0x04 HCI_READ_PAGE_SCAN_REPETITION_MODE 
+0x05 HCI_WRITE_PAGE_SCAN_REPETITION_MODE 
+0x06 HCI_READ_PAGE_RESPONSE_TIMEOUT 
+0x07 HCI_WRITE_PAGE_RESPONSE_TIMEOUT 
+0x08 HCI_READ_NEW_CONNECTION_TIMEOUT 
+0x09 HCI_WRITE_NEW_CONNECTION_TIMEOUT 
+0x0a HCI_INITIALIZE_BASEBAND 
+0x0b HCI_WRITE_LOCAL_SUPPORTED_FEATURES 
+0x0c HCI_WRITE_PARK_PARAMETERS 
+0x0d HCI_READ_PARK_PARAMETERS 
+0x0e HCI_WRITE_QUALITY_OF_SERVICE 
+0x0f HCI_NOT_USED 
+0x10 HCI_MODIFY_BEACON_PARAMETERS 
+0x11 HCI_UNPARK_USING_PM_ADDR 
+0x12 HCI_WRITE_HOPPING_CHANNELS 
+0x13 HCI_SLEEP_FOREVER_MODE 
+0x14 HCI_WRITE_AUTO_PAGE_SCAN_ENABLE 
+0x15 HCI_READ_AUTO_PAGE_SCAN_ENABLE 
+0x16 HCI_SET_ENCRYPTION_KEY_SIZE 
+0x17 HCI_INVALIDATE_FLASH_AND_REBOOT 
+0x18 HCI_UPDATE_UART_BAUD_RATE 
+0x19 HCI_WRITE_GPIO_1_4_AS_OUTPUT 
+0x1A HCI_WRITE_GPIO_2_LED 
+0x1B HCI_SET_TESTMODE_TYPE 
+0x1C HCI_WRITE_SCO_PCM_INT_PARAM 
+0x1D HCI_READ_SCO_PCM_INT_PARAM 
+0x1E HCI_WRITE_PCM_DATA_FORMAT_PARAM 
+0x1F HCI_READ_PCM_DATA_FORMAT_PARAM 
+0x20 HCI_WRITE_COMFORT_NOISE_PARAM 
+0x21 HCI_READ_COMFORT_NOISE_PARAM 
+0x22 HCI_WRITE_SCO_TS 
+0x23 HCI_READ_SCO_TS 
+0x24 HCI_WRITE_PCM_LOOPBACK_MODE 
+0x25 HCI_READ_PCM_LOOPBACK_MODE 
+0x26 HCI_SET_TRANSMIT_POWER 
+0x27 HCI_SET_SLEEPMODE_PARAM 
+0x28 HCI_READ_SLEEPMODE_PARAM 
+0x29 HCI_SLEEPMODE_CMD 
+0x2A HCI_DELAY_PERIPHERAL_SCO_STARTUP 
+0x2B HCI_WRITE_RECEIVE_ONLY 
+0x2C HCI_WRITE_RATE_CONTROL 
+0x2D HCI_TX_UNMOD_CARRIER 
+0x2E HCI_DOWNLOAD_MINIDRIVER 
+0x2F HCI_CRYSTAL_PPM 
+0x30 HCI_SET_POWER_AMP_BIAS 
+0x31 HCI_SET_HAM_BEHAVIOR 
+0x32 HCI_SET_AFH_BEHAVIOR 
+0x33 HCI_READ_USER_DEFINED_NVRAM 
+0x34 HCI_ENABLE_RADIO 
+0x35 HCI_READ_DIAGNOSTIC_INFO 
+0x36 HCI_GET_HID_DEVICE_LIST 
+0x37 HCI_ADD_HID_DEVICE 
+0x38 HCI_READ_APP_FW_CONFIG_VERSION 
+0x39 HCI_DELETE_HID_DEVICE 
+0x3B HCI_ENABLE_USB_HID_EMULATION 
+// 0x3A available
+// 0x3B available
+0x3C HCI_SEND_LMPDU 
+0x3D HCI_AUTO_PAIR_REQ 
+0x3E HCI_READ_VS_EXTENSION 
+0x3F HCI_WRITE_VS_EXTENSION 
+
+0x77 HCI_OPCODE_FC77
+0x79 HCI_OPCODE_FC79
+0xC4 HCI_DOWNLOAD_PATCH
+0xCC HCI_OPCODE_FCCC
+
+0x00 HCI_VENDOR_CMD_RESET
+0x01 HCI_VENDOR_CMD_CHIPID
+0x02 HCI_VENDOR_CMD_BAUD
+0x03 HCI_VENDOR_CMD_PATCH
+0x04 HCI_VENDOR_CMD_PATCH_DONE
+0x05 HCI_VENDOR_CMD_ECHO
+0x06 HCI_VENDOR_CMD_BDADDR
+
+0x07 HCI_VENDOR_CMD_ENTER_LPM
+0x08 HCI_VENDOR_CMD_COMMU_READY
+
+0x10 HCI_VENDOR_CMD_MEM
+0x11 HCI_VENDOR_CMD_EEP
+)
+
+//HCI LE controller command OCF values, OGF=8
+(
+0x01 HCI_LE_SET_EVENT_MASK
+0x02 HCI_LE_READ_BUFFER_SIZE
+0x03 HCI_LE_READ_LOCAL_SUPPORTED_FEATURES
+0x05 HCI_LE_SET_RANDOM_ADDRESS
+0x06 HCI_LE_SET_ADVERTISING_PARAMETERS
+0x07 HCI_LE_READ_ADVERTISING_CHANNEL_TX_POWER
+0x08 HCI_LE_SET_ADVERTISING_DATA
+0x09 HCI_LE_SET_SCAN_RESPONSE_DATA
+0x0A HCI_LE_SET_ADVERTISE_ENABLE
+0x0B HCI_LE_SET_SCAN_PARAMETERS
+0x0C HCI_LE_SET_SCAN_ENABLE
+0x0D HCI_LE_CREATE_CONNECTION
+0x0E HCI_LE_CREATE_CONNECTION_CANCEL
+0x0F HCI_LE_READ_WHITE_LIST_SIZE
+0x10 HCI_LE_CLEAR_WHITE_LIST
+0x11 HCI_LE_ADD_DEVICE_TO_WHITE_LIST
+0x12 HCI_LE_REMOVE_DEVICE_FROM_WHITE_LIST
+0x13 HCI_LE_CONNECTION_UPDATE
+0x14 HCI_LE_SET_HOST_CHANNEL_CLASSIFICATION
+0x15 HCI_LE_READ_CHANNEL_MAP
+0x16 HCI_LE_READ_REMOTE_USED_FEATURES
+0x17 HCI_LE_ENCRYPT
+0x18 HCI_LE_RAND
+0x19 HCI_LE_START_ENCRYPTION
+0x1A HCI_LE_LONG_TERM_KEY_REQUEST_REPLY
+0x1B HCI_LE_LONG_TERM_KEY_REQUEST_NEGATIVE_REPLY
+0x1C HCI_LE_READ_SUPPORTED_STATES
+0x1D HCI_LE_RECEIVER_TEST
+0x1E HCI_LE_TRANSMITTER_TEST
+0x1F HCI_LE_TEST_END
+0x20 HCI_LE_REMOTE_CONNECTION_PARAMETER_REQUEST_REPLY
+0x21 HCI_LE_REMOTE_CONNECTION_PARAMETER_REQUEST_NEGATIVE_REPLY
+)
+// HCI event code
+(
+0x01 HCI_EVENT_INQUIRY_COMPLETE
+0x02 HCI_EVENT_INQUIRY_RESULT
+0x03 HCI_EVENT_CONNECTION_COMPLETE
+0x04 HCI_EVENT_CONNECTION_REQUEST
+0x05 HCI_EVENT_DISCONNECTION_COMPLETE
+0x06 HCI_EVENT_AUTHENTICATION_COMPLETE
+0x07 HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
+0x08 HCI_EVENT_ENCRYPTION_CHANGE_COMPLETE
+0x09 HCI_EVENT_CHANGE_CONNECTION_LINK_KEY_COMPLETE
+0x0A HCI_EVENT_MASTER_LINK_KEY_COMPLETE
+0x0B HCI_EVENT_READ_REMOTE_FEATURES_COMPLETE
+0x0C HCI_EVENT_READ_REMOTE_VERSION_INFORMATION_COMPLETE
+0x0D HCI_EVENT_QOS_SETUP_COMPLETE
+0x0E HCI_EVENT_COMMAND_COMPLETE
+0x0F HCI_EVENT_COMMAND_STATUS
+0x10 HCI_EVENT_HARDWARE_ERROR
+0x11 HCI_EVENT_FLUSH_OCCURRED
+0x12 HCI_EVENT_ROLE_CHANGE
+0x13 HCI_EVENT_NUM_COMPLETED_PACKETS
+0x14 HCI_EVENT_MODE_CHANGE
+0x15 HCI_EVENT_RETURN_LINK_KEYS
+0x16 HCI_EVENT_PIN_CODE_REQUEST
+0x17 HCI_EVENT_LINK_KEY_REQUEST
+0x18 HCI_EVENT_LINK_KEY_NOTIFICATION
+0x19 HCI_EVENT_LOOPBACK_COMMAND
+0x1A HCI_EVENT_DATA_BUFFER_OVERFLOW
+0x1B HCI_EVENT_MAX_SLOTS_CHANGE
+0x1C HCI_EVENT_READ_CLOCK_OFFSET_COMPLETE
+0x1D HCI_EVENT_CONNECTION_PACKET_TYPE_CHANGED
+0x1E HCI_EVENT_QOS_VIOLATION
+0x1F HCI_EVENT_PAGE_SCAN_MODE_CHANGE
+0x20 HCI_EVENT_PAGE_SCAN_REPETITION_MODE_CHANGE
+0x21 HCI_EVENT_FLOW_SPECIFICATION_COMPLETE
+0x22 HCI_EVENT_INQUIRY_RESULT_WITHRSSI
+0x23 HCI_EVENT_READ_REMOTE_EXT_FEATURES_COMPLETE
+0x2C HCI_EVENT_SCO_CONNECTION_COMPLETE
+0x2D HCI_EVENT_SCO_CONNECTION_CHANGED
+0x2E HCI_EVENT_SNIFF_SUBRATING
+0x2F HCI_EVENT_EXT_INQUIRY_RESULT
+0x30 HCI_EVENT_ENCRYPT_KEY_REFRESH_COMPLETE
+0x31 HCI_EVENT_IO_CAP_REQ
+0x32 HCI_EVENT_IO_CAP_RESPONSE
+0x33 HCI_EVENT_USER_CONFIRMATION_REQUEST
+0x34 HCI_EVENT_UESR_PASSKEY_REQUEST
+0x35 HCI_EVENT_REMOTE_OOB_DATA_REQUEST
+0x36 HCI_EVENT_SIMPLE_PAIRING_COMPLETE
+0x38 HCI_EVENT_LINK_SUPERVISION_TIMEOUT_CHANGED
+0x39 HCI_EVENT_ENHANCED_FLUSH_COMPLETE
+0x3B HCI_EVENT_USER_PASSKEY_NOTIFICATION
+0x3C HCI_EVENT_KEYPRESS_NOTIFICATION
+0x3D HCI_EVENT_REMOTE_HOST_SUPPORTED_FEATURES_NOTIFICATION 
+0x3E HCI_EVENT_LE_META_EVENT
+0x40 HCI_EVENT_PHYSICAL_LINK_COMPLETE
+0x41 HCI_EVENT_CHANNEL_SELECTED
+0x42 HCI_EVENT_DISCONNECTION_PHYSICAL_LINK_COMPLETE
+0x43 HCI_EVENT_PHYSICAL_LINK_LOSS_EARLY_WARNING
+0x44 HCI_EVENT_PHYSICAL_LINK_RECOVERY
+0x45 HCI_EVENT_LOGICAL_LINK_COMPLETE
+0x46 HCI_EVENT_DISCONNECTION_LOGICAL_LINK_COMPLETE
+0x47 HCI_EVENT_FLOW_SPEC_MODIFY_COMPLETE
+0x48 HCI_EVENT_NUMBER_OF_COMPLETED_DATA_BLOCKS
+0x49 HCI_EVENT_AMP_START_TEST
+0x4A HCI_EVENT_AMP_TEST_END
+0x4B HCI_EVENT_AMP_RECEIVER_REPORT
+0x4C HCI_EVENT_SHORT_RANGE_MODE_CHANGE_COMPLETE
+0x4D HCI_EVENT_AMP_STATUS_CHANGE
+0x4E HCI_EVENT_TRIGGERED_CLOCK_CAPTURE
+0x4F HCI_EVENT_SYNCHRONIZATION_TRAIN_COMPLETE
+0x50 HCI_EVENT_SYNCHRONIZATION_TRAIN_RECEIVED
+0x51 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_RECEIVE
+0x52 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_TIMEOUT
+0x53 HCI_EVENT_TRUNCATED_PAGE_COMPLETE
+0x54 HCI_EVENT_SLAVE_PAGE_RESPONSE_TIMEOUT
+0x55 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_CHANNEL_MAP_CHANGE
+0x56 HCI_EVENT_INQUIRY_RESPONSE_NOTIFICATION
+0x57 HCI_EVENT_AUTHENTICATED_PAYLOAD_TIMEOUT_EXPIRED
+
+0xFE HCI_EVENT_LOGO_TESTING
+0xFF HCI_EVENT_VENDOR_SPECIFIC
+)
+(
+0x01 HCI_VENDOR_EVENT_COMMU_READY
+)
+//HCI LE SUBEVENT CODE
+(
+0x01 HCI_LE_SUBEVENT_CONN_COMPLETE
+0x02 HCI_LE_SUBEVENT_ADV_REPORT
+0x03 HCI_LE_SUBEVENT_CONN_UPDATE_COMPLETE
+0x04 HCI_LE_SUBEVENT_REMOTE_FEATURE_COMPLETE
+0x05 HCI_LE_SUBEVENT_LTK_REQUEST
+0x06 HCI_LE_SUBEVENT_REMOTE_CONN_PARAM_REQ
+)
+//HCI ErrorCodes
+(    
+0x00 HCI_SUCCESS
+0x01 HCI_ERROR_UNKNOWN_HCI_COMMAND
+0x02 HCI_ERROR_NO_CONNECTION
+0x03 HCI_ERROR_HARDWARE_FAILURE
+0x04 HCI_ERROR_PAGE_TIMEOUT
+0x05 HCI_ERROR_AUTHENTICATION_FAILURE
+0x06 HCI_ERROR_KEY_MISSING
+0x07 HCI_ERROR_MEMORY_FULL
+0x08 HCI_ERROR_CONNECTION_TIMEOUT
+0x09 HCI_ERROR_MAX_CONNECTIONS
+0x0A HCI_ERROR_MAX_SCO_CONNECTIONS
+0x0B HCI_ERROR_MAX_ACL_CONNECTIONS
+0x0C HCI_ERROR_COMMAND_DISALLOWED
+0x0D HCI_ERROR_HOST_REJECT_LIMITED_RESOURCES
+0x0E HCI_ERROR_HOST_REJECT_SECURITY_REASONS
+0x0F HCI_ERROR_HOST_REJECT_REMOTE_IS_ONLY_PERSONAL
+0x10 HCI_ERROR_HOST_TIMEOUT
+0x11 HCI_ERROR_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE
+0x12 HCI_ERROR_INVALID_HCI_COMMAND_PARAMETERS
+0x13 HCI_ERROR_REMOTE_USER_ENDED_CONNECTION
+0x14 HCI_ERROR_REMOTE_LOW_RESOURCES
+0x15 HCI_ERROR_REMOTE_POWERING_OFF
+0x16 HCI_ERROR_CONNECTION_TERMINATED_BY_LOCAL_HOST
+0x17 HCI_ERROR_REPEATED_ATTEMPTS
+0x18 HCI_ERROR_PAIRING_NOT_ALLOWED
+0x19 HCI_ERROR_UNKNOWN_LMP_PDU
+0x1A HCI_ERROR_UNSUPPORTED_REMOTE_FEATURE
+0x1B HCI_ERROR_SCO_OFFSET_REJECTED
+0x1C HCI_ERROR_SCO_INTERVAL_REJECTED
+0x1D HCI_ERROR_SCO_AIR_MODE_REJECTED
+0x1E HCI_ERROR_INVALID_LMP_PARAMETER
+0x1F HCI_ERROR_UNSPECIFIED_ERROR
+0x20 HCI_ERROR_UNSUPPORTED_LMP_PARAMETER_VALUE
+0x21 HCI_ERROR_ROLE_CHANGE_NOT_ALLOWD
+0x22 HCI_ERROR_LMP_RESPONSE_TIMEOUT
+0x23 HCI_ERROR_ERROR_TRANSACTION_COLLISION
+0x24 HCI_ERROR_LMP_PDU_NOT_ALLOWED
+0x25 HCI_ERROR_ENCRYPTION_MODE_NOT_ACCEPTABLE
+0x26 HCI_ERROR_UNIT_KEY_USED
+0x27 HCI_ERROR_QOS_NOT_SUPPORTED
+0x28 HCI_ERROR_INSTANT_PASSED
+0x29 HCI_ERROR_PAIRING_W_UNIT_KEY_NOT_SUPPORTED
+0x2a HCI_ERROR_DIFFERENT_TRANSACTION_COLLISION
+0x2c HCI_ERROR_QOS_UNACCEPTABLE_PARAMETER
+0x2d HIC_ERROR_QOS_REJECTED
+0x2e HIC_ERROR_CHANNEL_CLASSIFICATION_NOT_SUPPORTED
+0x2f HIC_ERROR_INSUFFICIENT_SECURITY
+0x30 HIC_ERROR_PARAMETER_OUT_OF_MANDATORY_PANGE
+0x32 HIC_ERROR_ROLE_SWITCH_PENDING
+0x34 HIC_ERROR_RESERVED_SLOT_VIOLATION
+0x35 HIC_ERROR_ROLE_SWITCH_FAILED
+0x36 HIC_ERROR_EXTENDED_INQUIRY_RESPONSE_TOO_LARGE
+0x37 HIC_ERROR_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST
+0x38 HIC_ERROR_HOST_BUSY_PAIRING
+)
+
+(
+0x00 HCI_LPM_OFF
+0x01 HCI_LPM_ON
+)
+
+
+(
+33 HOST_WAKE_TIME
+)
+
+(
+1 HCI_RX_WAKE
+0 HCI_RX_READY
+)
+
Index: Receive_Code/format/keyboard.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/keyboard.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/keyboard.format	(working copy)
@@ -0,0 +1,224 @@
+
+omemalloc(
+//Keyboard Work Area
+2 mem_kb_state
+6 mem_kb_report_data
+1 mem_kb_keys
+1 mem_kb_rcv_led_data
+4 mem_kb_fast_wake_last
+//Keyboard Config Area
+1 mem_led_cap_gpio
+1 mem_led_num_gpio
+1 mem_led_scl_gpio
+
+2 mem_kb_current_vdd_value_10times
+1 mem_kb_read_adc_cnt_100ms
+2 mem_kb_current_vdd_value
+1 mem_led_power_blink_count
+1 mem_led_power_500ms_cnt
+
+700 mem_kb_map2
+2 mem_3v1_adc_default
+158 mem_kb_map
+2 mem_kb_discovery_timer
+2 mem_kb_direct_timer
+2 mem_kb_no_data_timer
+2 mem_kb_direct_timeout
+1 mem_kscn_event_last
+
+1 mem_kscan_event_num_last
+
+
+//three devices param
+
+1 mem_auto_enable_mult_timer
+1 mem_auto_enable_mult_timer_init
+
+1 mem_kb_temp_flag
+
+8 mem_map2_out_report0
+8 mem_map2_out_report1
+
+8 mem_table_last_repory_data0
+8 mem_table_last_repory_data1
+
+10 mem_kb_down
+10 mem_kb_down_last
+8 mem_table_temp
+1 mem_pincode_vk_last
+1 mem_kb_device_button_last
+1 mem_kb_device_button_timer
+1 mem_kb_current_status
+1 mem_seq
+1 mem_dorx_cnt
+2 mem_matched_btclk
+1 mem_master_sniff_interval
+
+1 mem_led_power_gpio
+2 mem_kb_check_vdd_count
+
+
+2 mem_0v_adc_data
+2 mem_2v2_adc_data
+2 mem_3v_adc_data
+
+1 mem_select_system_led_timer
+1 mem_led_cap_gpio_status
+2 mem_kb_no_data_timeout
+4 mem_kb_gpio_last_val
+1 mem_store_current_status
+//1 mem_kb_check_kscan_flag
+
+1 mem_kb_led_on_timer
+1 mem_kb_debug_sm
+2 mem_kb_mode
+2 mem_kb_mode_revese
+6 mem_master_addr
+1 mem_led_device_blink_count
+1 mem_led_device_500ms_cnt
+
+1 mem_kb_caps_led_status
+1 mem_kb_reconnection_ssp
+1 mem_kb_rcv_hid_control_rsp
+
+5 mem_kb_down_regroup
+1 mem_kb_get_fn_flag
+1 mem_kb_kscan_cnt
+10 mem_kb_down_test
+1 mem_kb_release_fn_data
+
+
+1 mem_led_cap_delay_timer
+1 mem_led_cap_mult_timer
+1 mem_led_cap_flag
+1 mem_hid_rx_data
+1 mem_kb_fn_c
+1 mem_kb_c_fn
+
+650 mem_keyboard_uuid_list
+0 mem_keyboard_uuid_list_end
+500 mem_keyboard_le_att_list
+0 mem_keyboard_le_att_list_end
+)
+
+
+8 KB_KSCAN_ROW 
+7 KB_KSCAN_ROW_1
+20 KB_KSCAN_COL
+19 KB_KSCAN_COL_1
+
+/* ks_ctrl */
+(
+0x01 KB_KSCAN_CTRL_ENABLE					
+0x02 KB_KSCAN_CTRL_FREEZE					
+0x04 KB_KSCAN_CTRL_GHOST					
+0x08 KB_KSCAN_CTRL_INT						
+0x10 KB_KSCAN_CTRL_CLKON					
+0x20 KB_KSCAN_CTRL_FIFO_CLR				
+                  
+0 KB_KSCAN_STAT_EMPTY
+1 KB_KSCAN_STAT_FULL 					
+2 KB_KSCAN_STAT_OVERFLOW				
+6 KB_KSCAN_STAT_GHOST 
+
+0 KB_KSCAN_KEY_EVENT_STAT
+0 KB_KSCAN_KEY_PRESS	
+1 KB_KSCAN_KEY_RELEASE
+
+)
+(
+0 CACEL_RECONN_FLAG
+1 KEY_EVENT_FLAG
+2 KEY_SEARCH_M_KEY_FLAG
+3 CHECK_VDD_LOW_FLAG
+)
+
+// MACRO for map2
+
+// MACRO for map2
+
+//map2 Functions definition
+ 0x00 KB_MAP2_FUNC_REPORT0
+ 0x01 KB_MAP2_FUNC_REPORT1
+ 0x02 KB_MAP2_FUNC_REPORT2
+ 0x80 KB_MAP2_FUNC_IGNORE
+ 0x81 KB_MAP2_FUNC_DISCOV
+ 0x82 KB_MAP2_FUNC_WIN
+ 0x83 KB_MAP2_FUNC_ANDROID
+ 0x84 KB_MAP2_FUNC_IOS
+ 0x85 KB_MAP2_FUNC_DEV1
+ 0x86 KB_MAP2_FUNC_DEV2
+ 0x87 KB_MAP2_FUNC_DEV3
+ 
+//map2 Status definition (bit map)
+ 0x01 KB_MAP2_STATUS_WIN
+ 0x02 KB_MAP2_STATUS_ANDROID
+ 0x04 KB_MAP2_STATUS_IOS
+ 0x10 KB_MAP2_STATUS_CONN
+ 0x20 KB_MAP2_STATUS_UNCONN
+ 
+ 0x00 KB_MAP2_STATUS_BIT_WIN
+ 0x01 KB_MAP2_STATUS_BIT_ANDROID
+ 0x02 KB_MAP2_STATUS_BIT_IOS
+ 0x04 KB_MAP2_STATUS_BIT_CONN
+ 0x05 KB_MAP2_STATUS_BIT_UNCONN
+
+// map2 report length
+8 KB_MAP2_REPORT_LENGTH
+0x08 KB_VK_MAX_LEN
+
+//map2 device button state
+0 KB_DEVICE_BUTTON_UP
+1 KB_DEVICE_BUTTON_DEVICE1
+2 KB_DEVICE_BUTTON_DEVICE2
+3 KB_DEVICE_BUTTON_DEVICE3
+0xff KB_DEVICE_BUTTON_ALREADY_LONG
+)
+
+//
+(
+0x01 REPORT_ID_1
+0x02 REPORT_ID_2
+0x03 REPORT_ID_3
+)
+
+(
+1 FLAG_VDD_LOW
+0 FLAG_VDD_NOT_LOW
+
+0x1fe9 EEPROM_ADDR_VDD_FLAG
+0x1fea EEPROM_ADDR_VDD_LOW_FLAG
+0x1fec EEPROM_SYSTEM_FALG
+
+)
+
+//Specil Function Key
+(
+0XFF SFK_ANDROID_MAP
+0XFE SFK_IOS_SCREENSHOT
+
+)
+0x39 CAPS_LOCK_DATA
+)
+
+(
+2 KB_TEST_MODE
+)
+/* special key codes */
+(
+0x1d KB_KCODE_1_M1
+0x27 KB_KCODE_0
+0x28 KB_KCODE_ENTER
+0x2a KB_KCODE_BKSP
+)
+
+/*DATA OUTPUT report id = 1*/
+0 KB_NUM_LOCK_SELECTED
+1 KB_CAPS_LOCK_SELECTED
+2 KB_SCROLL_LOCK_SELECTED
+
+
+0x1f  KB_UI_BUTTON_GPIO
+
+
+
Index: Receive_Code/format/l2cap.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/l2cap.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/l2cap.format	(working copy)
@@ -0,0 +1,442 @@
+
+memalloc(
+0 mem_l2cap_mem_start
+// L2CAP RX 
+2 mem_l2cap_rxbuff1_len
+2 mem_l2cap_rxbuff2_len
+2 mem_l2cap_rxbuff_new
+1 mem_l2cap_rxbuff_inuse
+2 mem_l2cap_payload_ptr
+2 mem_l2cap_rx_pkt_length
+2 mem_l2cap_rx_cid
+1 mem_l2cap_rx_done
+
+
+
+// L2CAP TX Signal channel
+2 mem_l2cap_signal_tx_buff_ptr
+2 mem_l2cap_signal_tx_payload_ptr
+2 mem_l2cap_signal_tx_length
+// L2CAP TX SDP channel
+2 mem_sdp_tx_buff_ptr
+2 mem_sdp_tx_payload_ptr
+2 mem_sdp_tx_pkt_length
+// L2CAP TX RFCOMM channel
+2 mem_rfcomm_tx_buff_ptr
+2 mem_rfcomm_tx_payload_ptr
+2 mem_rfcomm_tx_pkt_length
+
+
+
+//L2CAP Util
+
+2 memL2CAP_T1
+
+1 mem_CONTROL_tasks
+1 mem_send_config_req
+
+
+1 mem_config_identifier
+2 mem_config_req_dest_CID
+1 mem_rfcomm_malloc_fail_flag
+
+//L2CAP STATE MACHINE
+1 mem_message_to_uppersm
+1 mem_upper_sm_remote_page
+1 mem_upper_sm_reconn
+1 mem_upper_sm_ss
+
+
+64 mem_tx_malloc_log
+0 mem_l2cap_mem_end
+
+
+2 mem_scid
+2 mem_cmd_length
+2 mem_tt2
+2 mem_tt3
+2 mem_id
+2 mem_psm
+
+
+4 mem_l2cap_sdpres_delay_time
+)
+
+xmemalloc(
+0 mem_l2cap_xmem_start
+//*******************L2CAP TX MULTI-PACKET*********************//
+2 mem_l2cap_tx_multi_offset //0 means single packet
+
+//*******************CHANNEL ID*********************//
+2 mem_sdp_remote_cid
+2 mem_rfcomm_remote_cid
+2 mem_hid_ctrl_remote_cid
+2 mem_hid_int_remote_cid
+//*******************CHANNEL STATE*********************//
+1 mem_sdp_state
+1 mem_rfcomm_state
+1 mem_hid_control_state
+1 mem_hid_interrupt_state
+1 mem_spp_state
+1 mem_ML2CAP_comm_id
+
+//*******************L2CAP malloc********************//
+1 mem_used_map
+0 mem_tx_fifo0
+1 mem_tx_fifo0_map
+2 mem_tx_fifo0_ptr
+0 mem_tx_fifo1
+1 mem_tx_fifo1_map
+2 mem_tx_fifo1_ptr
+0 mem_tx_fifo2
+1 mem_tx_fifo2_map
+2 mem_tx_fifo2_ptr
+0 mem_tx_fifo3
+1 mem_tx_fifo3_map
+2 mem_tx_fifo3_ptr
+0 mem_tx_fifo_end
+256 mem_l2cap_lpm_txbuf
+//*******************MISC*********************//
+1 mem_l2cap_flow_ctrl_flag
+1 mem_l2cap_pending_item
+0 mem_l2cap_xmem_end
+
+)
+
+
+//mem_l2cap_lpm_txbuf
+(
+256 l2cap_lpm_txbuf_len
+)
+
+(
+4 L2CAP_TX_FIFO_SIZE
+8 L2CAP_TX_BUFF_CNT
+
+)
+(
+0x0002 L2CAP_SIG_EXT_FEATRUE
+0x0003 L2CAP_SIG_FIX_FEATRUE
+)
+
+
+(
+0 HS_IDLE
+1 AG_INIT_CALL
+2 HS_INIT_CALL
+)
+(
+0 M_ACL_LINK_ABSENT
+1 M_ACL_LINK_EXIST
+)
+
+(
+0 L2CAP_INUSE_BUFF1
+1 L2CAP_INUSE_BUFF2
+)
+/* upper layer interface w/ lower layer */
+(
+1 MAX_NUM_LINKS_ALLOWED
+1 MAX_NUM_SCO_ALLOWED
+1 ACL_LINK_PRESENT
+0 ACL_LINK_ABSENT
+)
+(
+1 L2CAP_RX_DONE 
+0 L2CAP_RX_CLEAR
+)
+/* Scheduler */
+(
+0 L2CAP_DISCONNECT_INTERRUPT
+1 RFCOMM_wants_service
+2 L2CAP_sig_Tx_buff_full
+3 RFCOMM_Tx_buff_full
+4 SDP_Tx_buff_full
+5 got_complete_L2CAP_pkt	
+6 L2CAP_init_Config_Req
+7 L2CAP_DISCONNECT_CONTROL
+)
+
+/* mem_CONTROL_tasks2 */
+(
+0 UI_NEED_SERVICE
+)
+/* L2CAP logic channel identifiers (2 bytes) p.261 */
+(
+0x0001 L2CAP_signal_channel
+0x0050 L2CAP_SDP_channel
+0x0051 L2CAP_RFCOMM_channel
+0x0052 L2CAP_HID_Control_channel   
+0x0053 L2CAP_HID_Interrupt_channel
+0x0077 L2CAP_AVDTP_signal_channel		//------avdtp
+0x0078 L2CAP_AVDTP_media_channel
+0x0079 L2CAP_AVDTP_report_channel
+0x0080 L2CAP_AVDTP_recovery_channel
+0x00dd L2CAP_AVCTP_Control_channel
+)
+/* L2CAP signalling command codes (1 byte) p.284 */
+(
+0x00 reserved
+0x01 signal_cmd_reject
+0x02 signal_connect_req
+0x03 signal_connect_rsp
+0x04 signal_config_req
+0x05 signal_config_rsp
+0x06 signal_disconnect_req
+0x07 signal_disconnect_rsp
+0x08 signal_echo_req
+0x09 signal_echo_rsp
+0x0a signal_info_req
+0x0b signal_info_rsp
+)
+/* L2CAP signal_command_reject reason code (2 bytes), p.285 */
+(
+0x0000 cmd_not_understood
+0x0001 signalling_MTU_exceeded
+0x0002 invalid_CID_in_req
+)
+/* L2CAP PSM values used in signal_connect_req (2 bytes), p.286 */
+(
+0x0001 PSM_SDP
+0x0003 PSM_RFCOMM
+0x0005 PSM_TCS
+0x0011 PSM_HID_control
+0x0013 PSM_HID_interrupt
+0x0017 PSM_AVCTP
+0x0019 PSM_AVDTP
+)
+/* L2CAP connection response result code (2 bytes), p.288 */
+(
+0x0000 L2CAP_connect_successful
+0x0001 L2CAP_connect_pending
+0x0002 L2CAP_connect_refused_PSM_unsupported
+0x0003 L2CAP_connect_refused_security_block
+0x0004 L2CAP_connect_refused_no_resources
+)
+/* L2CAP connection status values (2 bytes), p.288 */
+(
+0x0000 L2CAP_no_info_available
+0x0001 L2CAP_authentication_pending
+0x0002 L2CAP_authorization_pending
+)
+/* L2CAP configuration response result code (2 bytes), p.292 */
+(
+0x0000 L2CAP_config_success
+0x0001 L2CAP_config_failure_bad_parameters
+0x0002 L2CAP_config_failure_no_reason
+0x0003 L2CAP_config_failure_unknown_options
+)
+/* L2CAP constant definitions */
+(
+128 L2CAP_Rx_buff_size
+48  L2CAP_signal_Tx_buff_size
+128 SDP_Tx_buff_size
+128 RFCOMM_Tx_buff_size
+1 AM_ADDRESS
+3 DM1TYPE
+4 DH1TYPE
+11 DH3TYPE
+8 DVTYPE
+0 channel_state_closed
+1 channel_state_config
+2 channel_state_open
+0x0030 L2CAP_config_MTU_SDP
+0xffff L2CAP_config_ftimeout_SDP
+0x03e3 L2CAP_config_MTU_RFCOMM
+0xffff L2CAP_config_ftimeout_RFCOMM
+260 l2cap_max_pkt_len
+)
+
+(
+0 FAILURE
+1 SUCCESS
+2 IN_PROGRESS
+)
+(
+0x00	IDLE
+0x01	WAIT_4_BB_PAGE
+0x02	WAIT_4_LMP_CONN
+0x03	WAIT_4_SCO_CONN
+0x04	WAIT_4_SCO_KILLED
+)
+
+/*mem_master_mss*/
+(
+0 STOP_ENC
+1 SEND_SWITCH_REQ
+)
+(
+0 HF_HS_READY
+1 HF_AG_READY
+)
+/* mem_hf_state */
+(
+0 HF_STATE_WAITING_RFCOMM_CONN
+1 HF_STATE_HF_SEND_FEATURE
+2 HF_STATE_WAITING_AG_FEATURE_OK
+3 HF_STATE_HF_SEND_INDICATORS
+4 HF_STATE_WAITING_AG_INDICATORS_OK
+5 HF_STATE_HF_SEND_CURR_STATUS
+6 HF_STATE_WAITING_AG_STATUS_OK
+7 HF_STATE_HF_SEND_UPDATE_STATUS
+8 HF_STATE_WAITING_AG_UPDATE_STATUS_OK
+9 HF_STATE_CONNECTED
+0x0a HF_STATE_HF_SEND_RECEIVE_INFO
+0x0b HF_STATE_WAITING_AG_INFO
+0x0c HF_STATE_HF_SEND_AT_CLIP
+0x0d HF_STATE_WAITING_AT_CLIP
+0x0e HF_STATE_HF_SEND_AT_CCWA
+0x0f HF_STATE_WAITING_AT_CCWA
+)
+/*mem_hf_call_state*/
+(
+0 HF_CALL_STATE_INACTIVE
+1 HF_CALL_STATE_SETUP
+2 HF_CALL_STATE_ACTIVE 
+)
+/* mem_pairing_state bit definition */
+(
+0 PAIR_INQUIRY_START
+1 PAIR_INQUIRY_TIME_OUT
+2 PAIR_INQUIRY_FAILED
+3 PAIR_INQUIRY_SUCCESS
+4 PAIR_READY_CONN
+5 PAIR_WAIT_CANCEL_RESPONSE
+6 PAIR_CONN_SUCCESS
+7 PAIR_WAIT_DETACH
+)  
+
+/* mem_pairing_mode bit definition */
+(
+0 FORCE_AUTHENTICATION
+)
+/* mem_hid_protecol_type */
+(
+0 PROTECOL_BOOT /*default*/
+1 PROTECOL_REPORT
+)
+
+/* mem_upper_sm_reconn */
+(
+1 UPPERSM_SEND_SDP_CONN_REQ
+2 UPPERSM_SEND_SDP_CFG_REQ
+3 UPPERSM_SEND_SDP_HF_SS
+4 UPPERSM_SEND_SDP_DISC_REQ
+5 UPPERSM_SEND_RFCOMM_CONN_REQ
+6 UPPERSM_SEND_RFCOMM_CFG_REQ
+7 UPPERSM_SEND_SABM_CMD
+8 UPPERSM_SEND_DISC
+9 UPPERSM_SEND_WAIT
+10 UPPERSM_SEND_HID_CONTROL_CONN_REQ
+11 UPPERSM_SEND_HID_CONTROL_CFG_REQ
+12 UPPERSM_SEND_HID_INTERRUPT_CONN_REQ
+13 UPPERSM_SEND_HID_INTERRUPT_CFG_REQ
+14 UPPERSM_SEND_SDP_HS_SS
+15 UPPERSM_SEND_SDP_PBAP_SS
+16 UPPERSM_SEND_SDP_AVTARG_SS
+)
+/* mem_upper_sm_remote_page */
+(
+1 UPPERSM_RP_SEND_SDP_CONN_REQ
+2 UPPERSM_RP_SEND_SDP_CFG_REQ
+3 UPPERSM_RP_SEND_SDP_HF_SS
+4 UPPERSM_RP_SEND_SDP_HS_SS
+5 UPPERSM_RP_SEND_SDP_PBAP_SS
+6 UPPERSM_RP_SEND_SDP_AVTARG_SS
+7 UPPERSM_RP_SEND_SDP_DISC_REQ
+8 UPPERSM_RP_SEND_AVCTP_CONN_REQ
+9 UPPERSM_RP_SEND_AVCTP_CFG_REQ
+)
+
+/* mem_ML2CAP_flag */
+(
+0 MSCHEDULER_HID_CONTROL_CONN_DONE
+1 MSCHEDULER_HID_INTERRUPT_CONN_DONE
+2 MSCHEDULER_HID_CONTROL_CFG_REQ_DONE
+3 MSCHEDULER_HID_CONTROL_CFG_RSP_DONE
+4 MSCHEDULER_HID_INTERRUPT_CFG_REQ_DONE
+5 MSCHEDULER_HID_INTERRUPT_CFG_RSP_DONE
+6 MSCHEDULER_HID_CONTROL_DISC_DONE
+7 MSCHEDULER_HID_INTERRUPT_DISC_DONE
+)
+/*    ui event    --add by lj*/
+(
+0x00 UI_DATA_EVNET_NONE
+0x01 UI_DATA_EVNET_HID
+0x02 UI_DATA_EVNET_AVDTP_S
+0x03 UI_DATA_EVNET_AVDTP_M
+0x04 UI_DATA_EVNET_AVCTP
+0x05 UI_DATA_EVNET_HS
+0x06 UI_DATA_EVNET_HF
+0x07 UI_DATA_EVNET_SPP
+0x08 UI_DATA_EVNET_OBEX
+)
+/*    ui ack --add by lj*/
+(
+0x00 UI_DATA_TX_NONE
+0x01 UI_DATA_TX_HID
+0x02 UI_DATA_TX_AVDTP_S
+0x03 UI_DATA_TX_AVDTP_M
+0x04 UI_DATA_TX_AVCTP
+0x05 UI_DATA_TX_HS
+0x06 UI_DATA_TX_HF
+0x07 UI_DATA_TX_SPP
+0x08 UI_DATA_TX_OBEX
+0x10 ACL_TX_L2CAP_SIGNAL
+0x11 ACL_TX_SDP
+0x12 ACL_TX_RFCOMM
+
+)
+
+(
+0 L2CAP_SDP_interface_conn
+1 L2CAP_SDP_interface_cfg
+)
+
+(                                   
+0 L2CAP_CHANNEL_STATE_CONN_REQ      
+1 L2CAP_CHANNEL_STATE_CONN_RES      
+2 L2CAP_CHANNEL_STATE_SND_CFG_REQ   
+3 L2CAP_CHANNEL_STATE_SND_CFG_RES   
+4 L2CAP_CHANNEL_STATE_RCV_CFG_REQ   
+5 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+6 L2CAP_CHANNEL_RFCOMM_ONLY_SABM
+7 L2CAP_CHANNEL_RFCOMM_ONLY_UA
+6 L2CAP_CHANNEL_AVDTP_SIGNAL_INIT //set avdtp init complete
+6 L2CAP_CHANNEL_HID_HANDSHAKE_DONE
+0x3f L2CAP_CHANNEL_SETUP_COMPLETE
+0x7f L2CAP_CHANNEL_AVDTP_SIGNAL_COMPLETE
+0xff L2CAP_CHANNEL_RFCOMM_DLCI0_OPENED
+)                                     
+
+/*  AVDTP---lj*/
+(
+0 L2CAP_AVDTP_SIGNAL_CONNECT
+1 L2CAP_AVDTP_SIGNAL_CONFIG
+2 L2CAP_AVDTP_MEDIA_CONNECT
+3 L2CAP_AVDTP_MEDIA_CONFIG
+4 L2CAP_AVDTP_REPORT_CONNECT
+5 L2CAP_AVDTP_REPORT_CONFIG
+6 L2CAP_AVDTP_RECOVERY_CONNECT
+7 L2CAP_AVDTP_RECOVERY_CONFIG
+)
+/*  AVCTP---lj*/
+(
+0 L2CAP_AVCTP_SIGNAL_CONNECT
+1 L2CAP_AVCTP_SIGNAL_CONFIG
+)
+
+127 L2CAP_SIGNAL_MALLOC_SIZE
+
+//1 mem_rfcomm_malloc_fail_flag
+(
+0 RFCOMM_MALLOC_SUCCEED
+1 RFCOMM_MALLOC_FAIL
+)
+
+//mem_l2cap_flow_ctrl_flag
+(
+0 L2CAP_FLOW_CTRL_DISABLE
+1 L2CAP_FLOW_CTRL_ENABLE
+)
+
Index: Receive_Code/format/le.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/le.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/le.format	(working copy)
@@ -0,0 +1,693 @@
+
+memalloc(
+56 mem_le_rxbuf
+
+
+/* security temp */
+4 mem_le_mic
+4 mem_le_peer_mic
+//8 mem_le_skdm
+//8 mem_le_skds
+16 mem_le_peer_ltk
+16 mem_le_mrand
+
+
+/* ========= le context =========== */
+1 mem_le_state
+1 mem_le_mode
+2 mem_le_tsniff
+4 mem_le_anchor
+6 mem_le_clk_offset
+2 mem_le_receive_window
+6 mem_le_plap
+1 mem_le_conn_handle
+1 mem_le_arq
+1 mem_le_ch
+1 mem_le_hop
+2 mem_le_event_count
+4 mem_le_supervision_timer
+2 mem_le_instant
+1 mem_le_channels
+1 mem_le_op
+
+	/* these 3 should NOT be seperated */
+4 mem_le_access
+3 mem_le_crcinit
+1 mem_le_window_size
+
+	/* these 3 should NOT be seperated */
+2 mem_le_slave_latency
+2 mem_le_superto
+5 mem_le_channel_map
+
+2 mem_le_no_using
+1 mem_le_peer_sca
+
+/* should be together */
+1 mem_le_att_opcode
+2 mem_le_att_handle
+
+1 mem_le_err_code
+2 mem_le_l2cap_pdu_length
+
+16 mem_le_sk
+
+/* test */
+1 mem_le_testtype
+2 mem_le_test_sync
+2 mem_le_test_pcnt
+
+6 mem_le_rxon_ts
+
+1 mem_le_rx_ll_opcode
+
+2 mem_le_notify_attr_start
+1 mem_le_notify_len
+
+1 mem_cmd_le_create_conn
+1 mem_24g_id
+
+
+2 mem_le_cur_attlist_start_ptr
+2 mem_le_cur_handle_start
+2 mem_le_cur_handle_end
+1 mem_le_cur_uuid_lenth
+16 mem_le_cur_uuid
+
+1 mem_le_search_len
+1 mem_le_search_res
+
+1 mem_le_continue_type
+1 mem_le_public_length
+
+)
+
+
+xmemalloc(
+2 mem_le_dsniff
+
+// parameters
+2 mem_le_conn_interval
+1 mem_le_scan_enable
+2 mem_le_scan_interval
+2 mem_le_scan_window
+
+1 mem_le_adv_led
+1 mem_le_adv_enable
+1 mem_le_adv_data_len
+31 mem_le_adv_data
+1 mem_le_scan_data_len
+31 mem_le_scan_data
+
+//modified name
+1 mem_le_name_len
+20 mem_le_name
+
+1 mem_le_led_on_time
+//37 mem_le_chmap
+
+
+5 mem_le_new_map
+0 mem_le_new_param
+1 mem_le_new_transmitwindowsize
+2 mem_le_new_transmitwindowoffset
+2 mem_le_new_conninterval
+2 mem_le_new_connslavelatency
+2 mem_le_new_connsupervisiontimeout
+1 mem_le_temp
+
+1 mem_le_txheader
+1 mem_le_txlen
+2 mem_le_txpayload
+2 mem_le_txcid
+1 mem_le_l2cap
+1 mem_le_l2cap_response
+31 mem_le_txbdy
+
+/* smp related */
+5 mem_le_pcnt_tx
+5 mem_le_pcnt_rx
+4 mem_le_last_mic
+4 mem_le_ivm
+4 mem_le_ivs
+16 mem_le_ltk
+1 mem_ltk_exists
+16 mem_le_rconfirm
+16 mem_le_srand
+1 mem_le_iat
+1 mem_le_rat
+1 mem_le_preq
+1 mem_le_preq_iocap
+1 mem_le_preq_oob
+1 mem_le_preq_auth
+1 mem_le_preq_max_keysize
+1 mem_le_preq_init_key_distribution
+1 mem_le_preq_resp_key_distribution
+1 mem_le_pres
+1 mem_le_pres_iocap
+1 mem_le_pres_oob
+1 mem_le_pres_auth
+1 mem_le_pres_max_keysize
+1 mem_le_pres_init_key_distribution
+1 mem_le_pres_resp_key_distribution
+
+/* att related */
+2 mem_le_search_handle_start
+2 mem_le_search_handle_end
+0 mem_le_att_offset
+1 mem_le_search_att_type_length
+16 mem_le_search_att_type
+2 mem_le_notify_handle
+1 mem_le_search_uuid_length
+16 mem_le_search_uuid
+
+
+1 mem_le_handle_data_len
+16 mem_le_handle_data
+
+
+//START of LE adv parameter structure
+0 mem_le_adv_param
+2 mem_le_adv_interval_min
+2 mem_le_adv_interval_max
+1 mem_le_adv_type
+1 mem_le_adv_own_addr_type
+1 mem_le_adv_direct_addr_type
+6 mem_le_adv_direct_addr
+1 mem_le_adv_channel_map
+1 mem_le_adv_filter_policy
+//END of LE adv parameter structure
+
+//START of LE conn parameter structure
+0 mem_le_conn_param
+1 mem_le_conn_peer_addr_type
+6 mem_le_conn_peer_addr
+1 mem_le_conn_own_addr_type
+2 mem_le_conn_interval_min
+2 mem_le_conn_interval_max
+2 mem_le_conn_latency
+2 mem_le_conn_superto
+//START of LE conn parameter structure
+
+//START of LE scan parameter structure
+0 mem_le_scan_params
+1 mem_le_scan_type
+1 mem_le_scan_own_addr_type
+1 mem_le_scan_filter_policy
+//END of LE scan parameter structure
+
+3 mem_le_lap
+1 mem_le_uap
+2 mem_le_nap
+8 mem_le_xtype_fifo
+
+2 mem_le_local_mtu
+2 mem_le_remote_mtu
+1 mem_le_ll_cur_opcode
+
+8 mem_le_skdm
+8 mem_le_skds
+
+2 mem_le_init_superto
+
+
+1 mem_le_secure_connect_enable
+1 mem_le_secure_connect_flag
+1 mem_le_sc_calc
+1 mem_le_secure_connect_state
+1 mem_le_sc_confirm_gkey_flag
+1 mem_le_sc_local_key_invalid
+
+1 mem_le_continue_flag
+
+1 mem_le_pairing_state
+1 mem_le_enc_state
+1 mem_le_pairing_mode
+4 mem_le_tk
+2 mem_le_ediv
+8 mem_le_rand
+16 mem_le_irk
+2 mem_le_pairing_handle
+2 mem_le_interal_min
+2 mem_le_interal_max
+2 mem_le_latency
+2 mem_le_timeout
+//LE attribute list
+1 mem_le_switch_send_data
+4 mem_le_transmit_window
+
+2 mem_le_buff_len
+2 mem_le_buff_len_all
+2 mem_le_buff_data_len_all
+2 mem_prepare_write_len
+2 mem_le_prepare_write_req_offset
+2 mem_prepare_handle
+2 mem_prepare_write_offest
+
+1 mem_le_flag
+
+)
+
+(
+20 notify_handle
+2 param_max_slaves
+1636 param_sifs
+0x000a06 param_le_version
+0x1d87 param_le_subversion
+0x000001 param_le_features
+23 param_le_mtu
+16 param_le_scan_interval
+16 param_le_scan_window
+0x1e0 param_clke_cal_le
+0x1000302 param_smp_paring_response		/* for mouse, noinputnooutput */
+0x010410 param_smp_key_dist	
+0xa0 param_le_sca
+)
+
+(
+0 DEFAULT_STATES
+1 IPHONE_LOST_LTK
+2 MODULE_LOST_LTK
+3 LTK_NOT_LOST
+)
+
+(
+0 FLAG_BLE_INSUFFICIENT_AUTHENTICATION
+1 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST
+)
+
+/*LE MOUSE-KB*/
+(
+1 LE_CONTEXT_STATE_KB
+2 LE_CONTEXT_STATE_MOUSE
+
+3 USB_MOUSE_DATA_CMD
+
+1 SEND_MOUSE_DATA_CMD
+2 SEND_KB_DATA_CMD
+)
+
+
+  (
+  	0 LE_M_STATE_SLAVE1_STANDBY
+  	1 LE_M_STATE_SLAVE1_ADVERTISING
+  	2 LE_M_STATE_SLAVE1_SCANNING
+  	3 LE_M_STATE_SLAVE1_INITIATING
+  	4 LE_M_STATE_SLAVE1_CONNECTED
+  	5 LE_M_STATE_SLAVE1_RFU_1
+  	6 LE_M_STATE_SLAVE1_RFU_2
+  	7 LE_M_STATE_SLAVE1_RFU_3
+  )
+
+  (
+  	0 LE_M_STATE_SLAVE2_STANDBY
+  	1 LE_M_STATE_SLAVE2_ADVERTISING
+  	2 LE_M_STATE_SLAVE2_SCANNING
+  	3 LE_M_STATE_SLAVE2_INITIATING
+  	4 LE_M_STATE_SLAVE2_CONNECTED
+  	5 LE_M_STATE_SLAVE2_CONNECT_INIT
+  	6 LE_M_STATE_SLAVE2_RFU_2
+  	7 LE_M_STATE_SLAVE2_RFU_3
+  )
+
+  	(
+	0 LE_SM_IDLE
+	1 LE_SM_FBTV_1800
+	2 LE_SM_FBTV_1800_WAIT
+	3 LE_SM_RBT_DEVICE_NAME
+	4 LE_SM_RBT_DEVICE_NAME_WAIT
+	5 LE_SM_FBTV_1801
+	6 LE_SM_FBTV_1801_WAIT
+	7 LE_SM_RBT_DEVICE_CHARACTER
+	8 LE_SM_RBT_DEVICE_CHARACTER_WAIT
+	
+  	)
+
+/* advertising channel PDU type */
+(
+0 ADV_IND
+1 ADV_DIRECT_IND
+2 ADV_NONCONN_IND
+3 SCAN_REQ
+4 SCAN_RSP
+5 CONNECT_REQ
+6 ADV_SCAN_IND
+)
+
+	/* tx packet type */
+	(
+	0x20 XT_LL_CONNECTION_UPDATE_REQ
+	0x21 XT_LL_CHANNEL_MAP_REQ
+	0x22 XT_LL_TERMINATE_IND
+	0x23 XT_LL_ENC_REQ
+	0x24 XT_LL_ENC_RSP
+	0x25 XT_LL_START_ENC_REQ
+	0x26 XT_LL_START_ENC_RSP
+	0x27 XT_LL_UNKNOWN_RSP
+	0x28 XT_LL_FEATURE_REQ
+	0x29 XT_LL_FEATURE_RSP
+	0x2A XT_LL_PAUSE_ENC_REQ
+	0x2B XT_LL_PAUSE_ENC_RSP
+	0x2C XT_LL_VERSION_IND
+	0x2D XT_LL_REJECT_IND
+	0x2E XT_LL_SLAVE_FEATURE_REQ
+	0x2F XT_LL_CONNECTION_PARAM_REQ
+	0x30 XT_LL_CONNECTION_PARAM_RSP
+	0x31 XT_LL_REJECT_IND_EXT
+	0x32 XT_LL_PING_REQ
+	0x33 XT_LL_PING_RSP
+	0x41 XT_SMP_PAIRING_REQUEST
+	0x42 XT_SMP_PAIRING_RESPONSE
+	0x43 XT_SMP_PAIRING_CONFIRM
+	0x44 XT_SMP_PAIRING_RANDOM
+	0x45 XT_SMP_PAIRING_FAILED
+	0x46 XT_SMP_ENCRYPTION_INFORMATION
+	0x47 XT_SMP_MASTER_IDENTIFICATION
+	0x48 XT_SMP_IDENTITY_INFORMATION
+	0x49 XT_SMP_IDENTITY_ADDRESS_INFORMATION
+	0x4A XT_SMP_SIGNING_INFORMATION
+	0x4B XT_SMP_SECURITY_REQUEST
+	0x4c XT_SMP_PAIRING_PUBLIC_KEY
+	0x4d XT_SMP_PAIRING_DHKEY_CHECK
+	)
+
+
+	/* LE control packet type */
+	(
+	0x00 LL_CONNECTION_UPDATE_REQ
+	0x01 LL_CHANNEL_MAP_REQ
+	0x02 LL_TERMINATE_IND
+	0x03 LL_ENC_REQ
+	0x04 LL_ENC_RSP
+	0x05 LL_START_ENC_REQ
+	0x06 LL_START_ENC_RSP
+	0x07 LL_UNKNOWN_RSP
+	0x08 LL_FEATURE_REQ
+	0x09 LL_FEATURE_RSP
+	0x0A LL_PAUSE_ENC_REQ
+	0x0B LL_PAUSE_ENC_RSP
+	0x0C LL_VERSION_IND
+	0x0D LL_REJECT_IND
+	0x0E LL_SLAVE_FEATURE_REQ
+	0x0F LL_CONNECTION_PARAM_REQ
+	0x10 LL_CONNECTION_PARAM_RSP
+	0x11 LL_REJECT_IND_EXT
+	0x12 LL_PING_REQ
+	0x13 LL_PING_RSP
+	)
+
+	/* Security Manager Protocol Code */
+	(
+	0x01 SMP_PAIRING_REQUEST
+	0x02 SMP_PAIRING_RESPONSE
+	0x03 SMP_PAIRING_CONFIRM
+	0x04 SMP_PAIRING_RANDOM
+	0x05 SMP_PAIRING_FAILED
+	0x06 SMP_ENCRYPTION_INFORMATION
+	0x07 SMP_MASTER_IDENTIFICATION
+	0x08 SMP_IDENTITY_INFORMATION
+	0x09 SMP_IDENTITY_ADDRESS_INFORMATION
+	0x0A SMP_SIGNING_INFORMATION
+	0x0B SMP_SECURITY_REQUEST
+	0x0c SMP_PAIRING_PUBLIC_KEY
+	0x0d SMP_PAIRING_DHKEY_CHECK
+	)
+
+	/* ATT OPCODE */
+	(
+	0x01 ATTOP_ERROR_RESPONSE
+	0x02 ATTOP_EXCHANGE_MTU_REQUEST
+	0x03 ATTOP_EXCHANGE_MTU_RESPONSE
+	0x04 ATTOP_FIND_INFORMATION_REQUEST
+	0x05 ATTOP_FIND_INFORMATION_RESPONSE
+	0x06 ATTOP_FIND_BY_TYPE_VALUE_REQUEST
+	0x07 ATTOP_FIND_BY_TYPE_VALUE_RESPONSE
+	0x08 ATTOP_READ_BY_TYPE_REQUEST
+	0x09 ATTOP_READ_BY_TYPE_RESPONSE
+	0x0A ATTOP_READ_REQUEST
+	0x0B ATTOP_READ_RESPONSE
+	0x0C ATTOP_READ_BLOB_REQUEST
+	0x0D ATTOP_READ_BLOB_RESPONSE
+	0x0E ATTOP_READ_MULTIPLE_REQUEST
+	0x0F ATTOP_READ_MULTIPLE_RESPONSE
+	0x10 ATTOP_READ_BY_GROUP_TYPE_REQUEST
+	0x11 ATTOP_READ_BY_GROUP_TYPE_RESPONSE
+	0x12 ATTOP_WRITE_REQUEST
+	0x13 ATTOP_WRITE_RESPONSE
+	0x16 ATTOP_PREPARE_WRITE_REQUEST
+	0x17 ATTOP_PREPARE_WRITE_RESPONSE
+	0x18 ATTOP_EXECUTE_WRITE_REQUEST
+	0x19 ATTOP_EXECUTE_WRITE_RESPONSE
+	0x1B ATTOP_HANDLE_VALUE_NOTIFICATION
+	0x1D ATTOP_HANDLE_VALUE_INDICATION
+	0x1E ATTOP_HANDLE_VALUE_CONFIRMATION
+	0x52 ATTOP_WRITE_COMMAND
+	0xD2 ATTOP_SIGNED_WRITE_COMMAND
+	0x1f ATTOP_CONTINUE
+	0x9e EMPTY_LE_DATA_PRE
+	0x9f EMPTY_LE_DATA
+	)
+
+	/* ATT error code */
+	(
+	0x01 ATT_ERR_INVALID_HANDLE
+	0x02 ATT_ERR_READ_NOT_PERMITTED
+	0x03 ATT_ERR_WRITE_NOT_PERMITTED
+	0x04 ATT_ERR_INVALID_PDU
+	0x05 ATT_ERR_INSUFFICIENT_AUTHENTICATION
+	0x06 ATT_ERR_REQUEST_NOT_SUPPORTED
+	0x07 ATT_ERR_INVALID_OFFSET
+	0x08 ATT_ERR_INSUFFICIENT_AUTHORIZATION
+	0x09 ATT_ERR_PREPARE_QUEUE_FULL
+	0x0A ATT_ERR_ATTRIBUTE_NOT_FOUND
+	0x0B ATT_ERR_ATTRIBUTE_NOT_LONG
+	0x0C ATT_ERR_INSUFFICIENT_ENCRYPTION_KEY_SIZE
+	0x0D ATT_ERR_INVALID_ATTRIBUTE_VALUE_LENGTH
+	0x0E ATT_ERR_UNLIKELY_ERROR
+	0x0F ATT_ERR_INSUFFICIENT_ENCRYPTION
+	0x10 ATT_ERR_UNSUPPORTED_GROUP_TYPE
+	0x11 ATT_ERR_INSUFFICIENT_RESOURCES
+	)
+	/*	SERVICE UUID	*/
+	(
+	0x1800 UUID_SERVICE_GENERIC_ACC
+	0x1801 UUID_SERVICE_GENERIC_ATT
+	0x180a UUID_SERVICE_DEVICE_INFO
+	0x180f UUID_SERVICE_BATTERY
+	0x1812 UUID_SERVICE_HIDS
+	0x2800 UUID_GATT_PRIMARY_SERVICE
+	0x2801 UUID_GATT_SECONDARY_SERVICE
+	0X2802 UUID_GATT_INCLUDE
+	0X2803 UUID_GATT_CHARACTERISTIC
+	0X2A00 UUID_CHRCTR_DEVICE_NAME
+	0X2A19 UUID_CHRCTR_BATTERY_LEVEL
+	0X2A22 UUID_CHRCTR_KEYBOARD_INPUT
+	0X2A23 UUID_CHRCTR_SYSTEM_ID 
+	0X2A25 UUID_CHRCTR_SERIAL_NUMBER
+	0X2A26 UUID_CHRCTR_FIRMWARE
+	0X2A32 UUID_CHRCTR_KEYBOARD_OUTPUT
+	0X2A33 UUID_CHRCTR_MOUSE_INPUT
+	0X2A4A UUID_CHRCTR_HID_INFO
+	0X2A4B UUID_CHRCTR_REPORT_MAP
+	0X2A4C UUID_CHRCTR_HID_CTRL_POINT
+	0X2A4D UUID_CHRCTR_REPORT
+	0X2A4E UUID_CHRCTR_PROTOCOL_MODE
+	)
+
+	(// pairing failed reason
+	0x00 PAIRING_FAILED_RESERVED
+	0X01 PAIRING_FAILED_PASSKEY_ENTRY_FAILED
+	0X02 PAIRING_FAILED_OOB_NOT_AVAILABLE
+	0X03 PAIRING_FAILED_AUTHENTICATION_REQUIRE
+	0X04 PAIRING_FAILED_CONFIRM_VALUE_FAILED
+	0X05 PAIRING_FAILED_PAIRING_NOT_SUPPORTED
+	0X06 PAIRING_FAILED_ENCRYPTION_KEY_SIZE
+	0X07 PAIRING_FAILED_COMMAND_NOT_SUPPORTED
+	0X08 PAIRING_FAILED_UNSPECIFIED_REASON
+	0X09 PAIRING_FAILED_REPEATED_ATTEMPTS
+	0X0A PAIRING_FAILED_INVALID_PARAMETERS
+	0X0B PAIRING_FAILED_DHKEY_CHECK_FAILED
+	0X0C PAIRING_FAILED_NUMERIC_COMPARISON_FAILED
+	0X0D PAIRING_FAILED_BR_EDR_PAIRING_IN_PROGRESS
+	0X0E PAIRING_FAILED_KEY_DERIVATION_GENERATION_NOT_ALLOWED
+	)
+
+	//modified_name
+	(
+	0x14 MAX_NAME_LEN
+	0x16 ADV_DATA_NAME_LEN
+	0X20 SPACE
+	
+	)
+	/* GATT Specifications*/
+	(
+	0X2900 CHARACTERTIC_EXTENDED_PROPERTIES
+	0X2901 CHARACTERTIC_USER_DESCRIPTION
+	0X2902 CLIENT_CHARACTERTIC_CONFIGURATION
+	0X2903 SERVER_CHARACTERTIC_CONFIGURATION
+	0X2904 CHARACTERTIC_PRESENTATION_FORMAT
+	0X2905 CHARACTERTIC_AGGREGATE
+	0X2906 VALID_RANGE
+	0X2907 EXTERNAL_REPORT_REFERENCE
+	0X2908 REPORT_REFERENCE
+	0X290B ENVIR_SENSING_CONFIGURATION
+	0X290C ENVIR_SENSING_MEASUREMENT
+	0X290D ENVIR_SENSING_TRIGGER_SETTING
+	)
+	/* LE L2CAP CID */
+	(
+	0x04 LE_L2CAP_CID_ATT
+	0x05 LE_L2CAP_CID_SIGNAL
+	0x06 LE_L2CAP_CID_SMP
+	)
+
+	//LE address type
+	(
+	0 LE_ADDR_TYPE_PUBLIC
+	1 LE_ADDR_TYPE_RANDOM
+	)
+	//LE address type bitmap
+	(
+	7 LE_RECEIVER_ADDR_BIT
+	6 LE_SENDER_ADDR_BIT
+	)
+	//LE SCAN TYPE
+	(
+	0x00 LE_SCAN_TYPE_PASSIVE //no SCAN_REQ shall be sent
+	0x01 LE_SCAN_TYPE_ACTIVE
+	)
+
+	//LE SCAN ENABLE
+	(
+	0x00 LE_SCAN_DISABLE
+	0x01 LE_SCAN_ENABLE
+	0x0101 LE_ACTIVE_SCAN_ENABLE
+	)
+
+
+//	le_state_map 0-2 is reserved for state_inconn,state_insniff and state_sco
+(
+3 lestate_got_first_packet
+4 lestate_encryption
+5 lestate_update_param
+6 lestate_update_map
+)
+
+// 	le mode
+(
+0 lemode_idle
+1 lemode_slave
+3 lemode_master
+)
+
+(
+0 LE_CONTINUE_TYPE_NULL
+1 LE_CONTINUE_TYPE_NOTIFICATION
+2 LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE 
+)
+
+
+(
+0 LE_INITATOR_LTK_BIT
+1 LE_INITATOR_IRK_BIT
+2 LE_INITATOR_CSRK_BIT
+)
+
+(
+0X00	LE_PAIRING_MODE_NONE
+0X01	LE_PAIRING_MODE_LAGACY_JUSTWORK
+0X02	LE_PAIRING_MODE_LAGACY_PASSKEY
+0x81	LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK
+0x82	LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC
+0X83	LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY
+
+7 LE_PAIRING_MODE_SECURE_CONNECT_BIT
+)
+
+
+(
+0 FLAG_IOCAP_DISPLAYONLY
+1 FLAG_IOCAP_DISPLAYYESNO
+2 FLAG_IOCAP_KEYBOARDONLY
+3 FLAG_IOCAP_NOINPUTNOOUTPUT
+4 FLAG_IOCAP_KEYBOARDDISPLAY
+
+0x00 FLAG_OOB_DATA_FLAG_NO
+)
+
+(
+0X00 FLAG_LE_NO_BONDING_NO_MITM
+0X01 FLAG_LE_BONDING_NO_MITM
+0X04 FLAG_LE_NO_BONDING_MITM
+0X05 FLAG_LE_BONDING_MITM
+0X09 FLAG_LE_BONDING_NO_MITM_SECURE
+0X0D FLAG_LE_BONDING_MITM_SECURE
+
+2 LE_AUTH_MITM_BIT
+3 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT
+)
+
+(
+0  LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND
+1  LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE
+2  LE_FIND_BY_TYPE_VAL_RES_FOUND_ENDING_HANDLE
+
+)
+
+(
+0 MASTER_PUBLIC_ADDR
+1 MASTER_RANDOM_ADDR
+)
+
+(
+0x06 LE_ERR_PIN_OR_KEY_MISSING
+)
+
+//mem_le_enc_state
+(
+0 FLAG_LE_ENC_NULL
+1 FLAG_LE_ENC_START
+2 FLAG_LE_ENC_PAUSE
+3 FLAG_LE_ENC_END
+)
+
+//mem_le_pairing_state
+(
+0 FLAG_LE_PAIRING_NULL
+1 FLAG_LE_PAIRING_START
+2 FLAG_LE_PAIRING_AFTER_AUTH
+3 FLAG_LE_PAIRING_END
+)
+
+/*LE secure connect state */
+(
+0x00 LE_SC_STAT_NULL
+0x01 LE_SC_STAT_RECEIVE_PUBLIC_KEY
+0x02 LE_SC_STAT_WAIT_SEND_PUBLIC_KEY
+0x03 LE_SC_STAT_SEND_PUBLIC_KEY
+0x04 LE_SC_STAT_RECEIVE_RANDOM
+0x05 LE_SC_STAT_SEND_RANDOM
+0x06 LE_SC_STAT_RECEIVE_DHKEY
+0x07 LE_SC_STAT_WAIT_CONFIRM_GKEY
+0x08 LE_SC_STAT_PASSKEY_WAIT_CONFIRM
+)
+
+
+(
+0 FLAG_LE_SC_CONFRIM_NULL
+1 FLAG_LE_SC_CONFRIM_GKEY_OK
+)
+
+
+(
+3 LE_CONTINUE_TYPE_PUBLIC_KEY
+)
+
+//mem_le_continue_flag
+(
+0 LE_CONTINUE_FLAG_NULL
+1 LE_CONTINUE_FLAG_RX
+2 LE_CONTINUE_FLAG_TX
+)
+
+
Index: Receive_Code/format/lmp.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/lmp.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/lmp.format	(working copy)
@@ -0,0 +1,216 @@
+
+memalloc(
+
+1 mem_lmo_header_length
+1 mem_lmo_header_opcode
+17 mem_lmo_payload
+1 mem_lmi_accepted_opcode
+1 mem_disconn_reason_send
+1 mem_tx_fixed_freq
+1 mem_rx_fixed_freq
+1 mem_ext_features_page
+2 mem_lmpext_ssp_enable
+1 mem_remote_sppcap
+
+1 mem_lmp_conn_state
+2 mem_soft_timer
+1 mem_pincode_state
+
+1 mem_sres_tid
+1 mem_accptsco_tid
+
+1 mem_auth_enable
+1 mem_wait_encryption
+
+16 mem_sniff_payload
+4 mem_aurand_send_delay_time
+)
+
+xmemalloc(
+3 mem_lmp_version
+2 mem_lmp_subversion
+1 mem_local_name_length
+3 mem_local_name
+64 mem_local_name2
+1 mem_local_name_end
+1 mem_unsniff2sniff_timer
+1 mem_switch_flag
+)
+	(
+	//bit map
+	0 pair_state_inrand
+	1 pair_state_inrand_acpt
+	2 pair_state_send_comb
+	3 pair_state_recv_comb
+	4 pair_state_send_aurand
+	5 pair_state_recv_sres
+	6 pair_state_recv_aurand
+	7 pair_state_send_sres	
+	)
+	/* LMP opcodes */
+	(
+	1 LMP_NAME_REQ 
+	2 LMP_NAME_RES 
+	3 LMP_ACCEPTED 
+	4 LMP_NOT_ACCEPTED 
+	5 LMP_CLKOFFSET_REQ 
+	6 LMP_CLKOFFSET_RES 
+	7 LMP_DETACH 
+	8 LMP_IN_RAND 
+	9 LMP_COMB_KEY 
+	10 LMP_UNIT_KEY 
+	11 LMP_AU_RAND 
+	12 LMP_SRES 
+	13 LMP_TEMP_RAND 
+	14 LMP_TEMP_KEY 
+	15 LMP_ENCRYPTION_MODE_REQ 
+	16 LMP_ENCRYPTION_KEY_SIZE_REQ 
+	17 LMP_START_ENCRYPTION_REQ 
+	18 LMP_STOP_ENCRYPTION_REQ 
+	19 LMP_SWITCH_REQ 
+	20 LMP_HOLD
+	21 LMP_HOLD_REQ
+	23 LMP_SNIFF_REQ 
+	24 LMP_UNSNIFF_REQ 
+	26 LMP_PARK_REQ 
+	27 LMP_SET_BROADCAST_SCAN_WINDOW 
+	28 LMP_MODIFY_BEACON 
+	29 LMP_UNPARK_BD_ADDR_REQ 
+	30 LMP_UNPARK_PM_ADDR_REQ 
+	31 LMP_INCR_POWER_REQ 
+	32 LMP_DECR_POWER_REQ 
+	33 LMP_MAX_POWER 
+	34 LMP_MIN_POWER 
+	35 LMP_AUTO_RATE 
+	36 LMP_PREFERRED_RATE 
+	37 LMP_VERSION_REQ 
+	38 LMP_VERSION_RES 
+	39 LMP_FEATURES_REQ 
+	40 LMP_FEATURES_RES 
+	41 LMP_QUALITY_OF_SERVICE 
+	42 LMP_QUALITY_OF_SERVICE_REQ 
+	43 LMP_SCO_LINK_REQ 
+	44 LMP_REMOVE_SCO_LINK_REQ 
+	45 LMP_MAX_SLOT 
+	46 LMP_MAX_SLOT_REQ 
+	47 LMP_TIMING_ACCURACY_REQ 
+	48 LMP_TIMING_ACCURACY_RES 
+	49 LMP_SETUP_COMPLETE 
+	50 LMP_USE_SEMI_PERMANENT_KEY 
+	51 LMP_HOST_CONNECTION_REQ 
+	52 LMP_SLOT_OFFSET 
+	53 LMP_PAGE_MODE_REQ 
+	54 LMP_PAGE_SCAN_MODE_REQ 
+	55 LMP_SUPERVISION_TIMEOUT 
+	56 LMP_TEST_ACTIVATE
+	57 LMP_TEST_CONTROL
+	58 LMP_ENC_KEY_SIZE_MASK_REQ
+	59 LMP_ENC_KEY_SIZE_MASK_RES
+	60 LMP_SET_AFH
+
+	/* simple pairing support */
+	61 LMP_ENCAPSULATED_HEADER
+	62 LMP_ENCAPSULATED_PAYLOAD
+	63 LMP_SIMPLE_PAIRING_CONFIRM
+	64 LMP_SIMPLE_PAIRING_NUMBER
+	65 LMP_DHKEY_CHECK
+	127 LMP_ESCAPE
+	127 LMP_ESCAPE_4   /* add 2bytes LMP header support  */   
+	)
+	/* LMP EXT opcodes, ORed with bit 7 to make difference to nonEXT */
+	(
+	129 LMP_EXT_ACCEPTED
+	130 LMP_NOT_ACCEPTED_EXT
+	131 LMP_EXT_FEATURES_REQ
+	132 LMP_EXT_FEATURES_RES
+	139 LMP_PACKET_TYPE_TABLE_REQ
+	140 LMP_EXT_ESCO_LINK_REQ
+	141 LMP_EXT_REMOVE_ESCO_REQ
+	144 LMP_EXT_CHN_CLASSIFICATION_REQ
+	145 LMP_EXT_CHN_CLASSIFICATION
+	149 LMP_SNIFF_SUBRATING_REQ
+	150 LMP_SNIFF_SUBRATING_RES
+	151 LMP_PAUSE_ENCRYPTION_REQ
+	152 LMP_RESUME_ENCRYPTION_REQ
+	153 LMP_IO_CAP_REQ
+	154 LMP_IO_CAP_RES
+	)
+	/* LMP reason codes */
+	(
+	0x05 AUTHENTICATION_FAILURE_ERROR
+	0x06 KEY_MISSING
+	0x0b ACL_CONNECTION_ALREADY_EXISTS
+	0x13 OTHER_END_TERMINATED
+	0x15 ABOUT_TO_POEWR_OFF
+	0x16 LOCAL_HOST
+	0x18 PAIRING_NOT_ALLOWED
+	0x19 UNKNOWN_LMP_PDU
+	0x1A UNSUPPORTED_LMP_FEATURE 
+	0x1F UNSPECIFIED_ERROR
+	0x20 UNSUPPORTED_PARAMETERS
+	0x21 SWITCH_NOT_ALLOWED
+	0x23 TRANSACTION_COLLISION
+	0x24 PDU_NOT_ALLOWED
+	0x25 ENCRYPTION_MODE_NOT_ACCEPTABLE
+	0x2e NOT_SUPPORT_CHN_CLASSIFICATION
+	0x37 NOT_SUPPORT_SSP
+	)
+
+	/* test mode scenarios */
+	(
+	0 PAUSE_TEST_MODE
+	1 ZERO_PATTERN
+	2 ONE_PATTERN
+	3 ALT_PATTERN
+	4 PSEUDORANDOM
+	5 CLOSED_LOOP_BACK_ACL
+	6 CLOSED_LOOP_BACK_SCO
+	7 ACL_WITHOUT_WHITENING
+	8 SCO_WITHOUT_WHITENING
+	9 ALT2_PATTERN
+	255 EXIT_TEST_MODE
+	)
+	/* test mode hoppig modes */
+	(
+	0 FIXED_FREQ
+	1 NORMAL_HOP
+	)
+
+	/* mem_lmp_tid indicates which type of LMP will be sent */
+	(
+	0 TID_NORM_REPLY
+	1 TID_NORM_SEND
+	2 TID_ONE
+	3 TID_ZERO
+	4 TID_PAIRING
+	5 TID_ENCRYPTION
+	6 TID_VARIABLE
+	7 TID_RX
+	)
+
+	/* ============== lmp status ==========*/
+	(
+	0 lmp_incoming
+	1 lmp_outgoing
+	2 lmp_reject_msg
+	3 lmp_clear_msg
+	4 upper_reject_msg
+	5 upper_clear_msg
+	)
+
+(
+0x2ee00 TIMER_ONE_MINUTE //96000*2
+80 TIMER_SWITCH_WAITE
+12 TIMER_ENPT_WAITE
+)
+
+(
+0 SWITCH_FLAG_INIT
+1 SWITCH_FLAG_ACCEPT
+2 SWITCH_FLAG_NOT_ACCEPT
+)
+(
+0 NULL_ENCRYP
+1 DONE_ENCRYP
+)
+
Index: Receive_Code/format/memblocks.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/memblocks.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/memblocks.format	(working copy)
@@ -0,0 +1,62 @@
+//
+//
+//Large memory blocks defined in this file.
+//Blocks Shall be defined with absolute address.
+//Blocks' length Shall be specified in comment following Blocks' names.
+//Different blocks MAY be overlap.
+//Blocks defined in this file Shall NOT be overlap with variable in memmap.format.
+
+// USB C51 exchange area
+(
+0xff0 mem_mcmd
+0xff1 mem_mouse_data
+)
+
+//l2cap RX buffers
+(
+0x1000 mem_l2cap_rxbuff1		//0x400
+0x1400 mem_l2cap_rxbuff2		//0x400
+//end address:0x17ff
+)
+//l2cap TX buffers
+(
+0x1800 mem_tx_buff0		//128
+0x1880 mem_tx_buff1		//128
+0x1900 mem_tx_buff2		//128
+0x1980 mem_tx_buff3		//128
+0x1a00 mem_tx_buff4		//128
+0x1a80 mem_tx_buff5		//128
+0x1b00 mem_tx_buff6		//128
+0x1b80 mem_tx_buff7		//128
+//end address: 0x1bff
+)
+
+//uart buffer
+(
+0x1800 mem_h5rx_buf//0x400
+0x1bff mem_h5rx_buf_end
+0x1c00 mem_h5tx_buf
+0x1fff mem_h5tx_buf_end
+)
+
+(
+0x4c00 mem_module_rx_buf//0x400
+0x4c00 mem_module_rx_buf_little
+0x4fff mem_module_rx_buf_end
+0x1c00 mem_module_tx_buf
+0x1fff mem_module_tx_buf_end
+)
+
+(
+0x1800 mem_ir_record
+0x1c      mem_ir_record_max
+)
+
+ifndef REVD 
+(
+0x4b00 memk
+)
+
+
+endif
+
Index: Receive_Code/format/module.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/module.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/module.format	(working copy)
@@ -0,0 +1,231 @@
+memalloc(
+	2 mem_module_temp_len
+	1 mem_uart_cmd
+	1 mem_uart_opcode
+	1 mem_uart_len
+	1 mem_module_temp_nl_discard_packet
+	1 mem_module_le_md_flag
+)
+omemalloc(	
+	1 mem_module_wake_up_gpio
+	1 mem_module_state_gpio
+	1 mem_module_connect_state_gpio
+
+	2 mem_current_packet_length
+	1 mem_module_state
+	1 mem_module_task
+	6 mem_cmode_addr
+	1 mem_module_mcu_wake_pin
+	4 mem_module_mcu_wake_delay_us
+
+	1 mem_module_spp_lpm_mult
+	1 mem_module_le_lpm_mult	
+	1 mem_module_bluetooth_stauts_by_command
+
+	//uart
+	2 mem_module_uart_rx_buffer
+	2 mem_module_uart_rx_buffer_end
+	2 mem_module_uart_tx_buffer
+	2 mem_module_uart_tx_buffer_end
+
+	//ADC
+	1 mem_module_read_vdd_flag
+	1 mem_module_read_vdd_count
+	1 mem_module_vdd_quotient
+	1 mem_module_vdd_remainder
+
+	//ble
+	2 mem_module_le_buff_len
+	2 mem_module_le_buff_len_all
+	2 mem_module_le_buff_data_len_all
+	1 mem_module_le_continue_flag
+	1 mem_module_le_rx_data_len
+	2 mem_module_le_rx_data_address
+	2 mem_module_le_rx_data_handle
+	//ble write handle
+	2 mem_module_data_write_handle
+	2 mem_module_data_write_handle2
+	//flag
+	1 mem_module_flag
+	1 mem_le_notify_type
+	2 mem_module_hci_notify_start
+	2 mem_module_hci_notify_offset
+	2 mem_module_hci_notify_len
+	2 mem_module_hci_notify_att
+	2 mem_module_hci_notify_original_len
+	
+	300 mem_module_uuid_list
+	0 mem_module_uuid_list_end
+	500 mem_module_le_att_list
+	0 mem_module_le_att_list_end
+	0 mem_nv_data
+	34 mem_nv_data0
+	34 mem_nv_data1
+	34 mem_nv_data2
+	34 mem_nv_data3
+	34 mem_nv_data4
+)
+
+
+(
+0 MODULE_FLAG_UART_FLOW_CONTROL
+1 MODULE_FLAG_BLE_RECEIVED_DATA
+2 MODULE_FLAG_BLE_SEND_MTU23
+3 MODULE_FLAG_BLE_SEND_DATA
+)
+
+
+
+
+(
+34 NV_DATA_LEN
+-1 DECREASED_ONE
+)
+
+
+
+(
+	10 FLAG_MODULE_READ_VDD_COUNT
+)
+
+	(
+		110  DM_REFCOM_BUFF_LEN
+		230  NL_RFCOMM_BUFF_LEN
+		220  NL_RFCOMM_BUFF_LEN_220
+		20 DM_LE_BUFF_LEN
+	)
+	(
+		0x200 UART_AIR_CONTROL_THRESHOLD
+		0x150 UART_RX_CONTROL_THRESHOLD
+	)
+	(
+		0 MODULE_LED_DISABLE
+		1 MODULE_LED_BLINK
+	)
+
+
+
+
+(
+0x01 HCI_DISCARD_PACKET
+0x00 HCI_NOT_DISCARD_PACKET
+
+
+)
+
+
+
+(//Command
+0x00 HCI_CMD_SET_BT_ADDR_REQ
+0x01 HCI_CMD_SET_LE_ADDR_REQ
+0x02 HCI_CMD_SET_VISIBILITY_REQ
+0x03 HCI_CMD_SET_BT_NAME_REQ
+0x04 HCI_CMD_SET_LE_NAME_REQ
+0x05 HCI_CMD_SPP_DATA_REQ
+0x09 HCI_CMD_LE_DATA_REQ
+0x0b HCI_CMD_STATUS_IRQ
+0x0c HCI_CMD_SET_PAIRING_REQ
+0x0d HCI_CMD_SET_PINCODE_REQ
+0x0e HCI_CMD_SET_UARTCONTROL_REQ
+0x0f HCI_CMD_SET_UART_BAUD_REQ
+0x10 HCI_CMD_VERSION_REQ
+0x11 HCI_CMD_BT_DISCONNECT
+0x12 HCI_CMD_BLE_DISCONNECT
+0x13 HCI_CMD_DELETE_DEVICE
+0x14 HCI_CMD_CREATE_CONNECT
+0x26 HCI_CMD_SET_NVRAM_REQ
+0x27 HCI_CMD_SLEEP
+0x28 HCI_CMD_CONFIRM_GKEY
+0x29 HCI_CMD_SET_CREDIT_GIVEN
+0x2a HCI_CMD_AUTO_ADV_SCAN
+0x2b HCI_CMD_POWER_REQ
+0x2c HCI_CMD_POWER_SET
+0x30 HCI_CMD_PASSKEY_ENTRY
+0x31 HCI_CMD_SET_GPIO
+0x32 HCI_CMD_READ_GPIO
+0x33 HCI_CMD_LE_SET_PAIRING
+0x34 HCI_CMD_LE_SET_ADV_DATA
+0x35 HCI_CMD_LE_SET_SCAN_DATA
+0x36 HCI_CMD_LE_SEND_CONN_UPDATE_REQ
+0x38 HCI_CMD_LE_START_PAIRING
+0x48 HCI_CMD_LE_CONFIRM_GKEY
+
+)
+
+(//event
+0x00 HCI_EVENT_SPP_CONN_REP
+0x01 HCI_EVENT_HID_CONN_REP
+0x02 HCI_EVENT_LE_CONN_REP
+0x03 HCI_EVENT_SPP_DIS_REP
+0x04 HCI_EVENT_HID_DIS_REP
+0x05 HCI_EVENT_LE_DIS_REP
+0x06 HCI_EVENT_CMD_RES
+0x07 HCI_EVENT_SPP_DATA_REP
+0x08 HCI_EVENT_LE_DATA_REP
+0x09 HCI_EVENT_STANDBY_REP
+0x0a HCI_EVENT_STATUS_RES
+0x0b HCI_EVENT_FINISH_PACK_NUM
+0X0C HCI_EVENT_SNIFF_MD_CHANGE
+0x0D HCI_EVENT_NVRAM_REP
+0x0e HCI_EVENT_GKEY
+0x0F HCI_EVENT_INVALID_PACKET
+0x10 HCI_EVENT_GET_PASSKEY
+0x11 HCI_EVENT_LE_TK
+0x12 HCI_EVENT_REMOTE_MTU
+0x14 HCI_EVENT_LE_PAIRING_STATE
+0X15 HCI_EVENT_LE_ENCRYPTION_STATE
+0x17 HCI_EVENT_LE_CONNECTION_UPDATE
+0x1d HCI_EVENT_LE_GKEY
+
+)
+
+
+
+
+(
+0x7e0 OTP_ADDR_RF_PARAM_FIX
+//struct of RF_PARAM_FIX
+// uint8       //length = param_pair_count * 2 
+// uint16     //param-pair-1
+// uint16     //param-pair-2
+// uint16     //param-pair-3
+// uint16     //param-pair-4
+// uint16     //param-pair-5
+// uint16     //param-pair-6
+// uint16     //param-pair-7
+)
+(
+0x0270 FW_VERSION_NUMBER
+)
+
+(
+0	PAIRING_PINCODE
+1	PAIRING_JUSTWORK
+2	PAIRING_PASSKEY
+3	PAIRING_CONFIRM
+)
+
+
+(
+0x0001	FLAG_BT_PAIRING_SUCCESS
+0x0101	FLAG_BT_PAIRING_FAIL
+0x0080	FLAG_BLE_PAIRING_SUCCESS
+0x0180	FLAG_BLE_PAIRING_FAIL
+)
+
+
+(
+1	FLAG_EVENT_START_ENC
+0	FLAG_EVENT_PAUSE_ENC
+)
+
+(
+	0 MOUDLE_STATE_BT_BIT
+	1 MOUDLE_STATE_BLE_BIT
+)
+
+(
+	0 MOUDLE_TASK_UNSINFF
+)
+
+
Index: Receive_Code/format/mouse.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/mouse.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/mouse.format	(working copy)
@@ -0,0 +1,134 @@
+
+memalloc(
+2 mem_init_cnt
+)
+//dpi eeprom addr
+198 mouse_dpi_eeprom_addr
+
+omemalloc(
+// Mouse Work Area
+1 mem_mouse_key
+2 mem_mouse_x
+2 mem_mouse_y
+1 mem_mouse_z
+1 mem_mouse_tz
+1 mem_mouse_xy_h
+1 mem_sensor_shutter_hi
+1 mem_sensor_shutter_lo
+1 mem_sensor_smart_flag
+1 mem_sensor_squal_reg
+1 mem_mouse_move_flag
+1 mem_reconnect_timeout
+2 mem_mouse_direct_timeout
+2 mem_mouse_no_data_timeout
+2 mem_mouse_blank_data_timeout
+2 mem_mouse_discovery_timer
+2 mem_mouse_direct_timer
+2 mem_mouse_no_data_timer
+2 mem_mouse_blank_data_timer
+1 mem_mouse_send_blank_timer
+1 mem_mouse_dpi
+1 mem_mouse_dpi_button_state
+1 mem_mouse_test_cnt
+2 mem_le_hibernate_timer
+1 mem_mouse_mode_state
+1 mem_mouse_le_notify_handle
+// Mouse Config Area
+
+1 mem_lbutton_gpio
+1 mem_rbutton_gpio
+1 mem_mbutton_gpio
+1 mem_sbutton1_gpio
+1 mem_sbutton2_gpio
+1 mem_dpi_button_gpio
+1 mem_sensor_data_gpio
+1 mem_whee_a_data_gpio
+1 mem_whee_b_data_gpio
+1 mem_sensor_reset_gpio
+1 mem_device1_led_gpio
+1 mem_device2_led_gpio
+1 mem_device3_led_gpio
+1 mem_conn_cnt
+//mouse T wheel
+1 mem_whee_ta_data_gpio
+1 mem_whee_tb_data_gpio
+1 mem_wheel_tb_old_pinlevel
+1 mem_wheel_tb_new_pinlevel
+1 mem_wheel_tog 
+1 mem_mouse_tz_data
+1 mem_mouse_tz_data_count
+1 mem_mouse_tz_data_count1
+
+1 mem_mwhee_a_data_gpio
+1 mem_mwhee_b_data_gpio
+1 mem_mwheel_b_old_pinlevel
+1 mem_mwheel_b_new_pinlevel
+1 mem_mwheel_tog 
+1 mem_mouse_z_data
+1 mem_mouse_z_data_count
+1 mem_mouse_z_data_count1
+
+1 mem_reconn_mode
+1 mem_mouse_statue_led_timer  
+
+1 mem_device_flag
+650 mem_mouse_uuid_list
+0 mem_mouse_uuid_list_end
+500 mem_mouse_le_att_list
+0 mem_mouse_le_att_list_end
+)
+(
+0x00 DPI_BUTTON_STATE_DOWN
+0x01 DPI_BUTTON_STATE_UP
+
+)
+
+(
+1 ONE_TRADITION_MOUSE
+2 ONE_BLE_MOUSE
+)
+
+
+(
+1 SENSOR_TYPE_A7530
+2 SENSOR_TYPE_P3204
+)
+0x30 P3204_ID
+0x31 P3065_ID
+0x3e P3610_ID
+
+0x00 PAN_REG_PID_L
+0x01 PAN_REG_PID_H
+0x02 PAN_REG_MOTION_STAUS
+0x03 PAN_REG_DELTA_X
+0x04 PAN_REG_DELTA_Y
+0x05 PAN_REG_OPRATION_MODE
+0x06 PAN_REG_CONFIG
+0x07 PAN_REG_IMAGE_QUALITY
+0x08 PAN_REG_OPRATION_STATE
+0x09 PAN_REG_WRITE_PROTECT
+0x0A PAN_REG_SLEEP_1
+0x0B PAN_REG_ENTER_TIME
+0x0C PAN_REG_SLEEP_2
+0x0D PAN_REG_IMAGE_THRESHOLD
+0x0E PAN_REG_IMAGE_RECGNITION
+
+7 pan_bit_motion
+
+(
+1000      MOUSE_LPM_CLR_LOCK_TIME
+0x06      MOUSE_DPI_ADDRESS
+       2       MOUSE_DPI_MAX_DECR
+)
+(
+80 MOUSE_SEND_BLANK_TIMER
+)
+
+
+//mem_mouse_mode_state
+(
+0x00 MOUSE_MODE_STATE_IDLE
+0x01 MOUSE_MODE_STATE_BT
+0x02 MOUSE_MODE_STATE_BLE
+)
+
Index: Receive_Code/format/patch.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/patch.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/patch.format	(working copy)
@@ -0,0 +1,516 @@
+
+(
+	  0 patch00_0
+	  1 patch00_1
+	  2 patch00_2
+	  3 patch00_3
+	  4 patch00_4
+	  5 patch00_5
+	  6 patch00_6
+	  7 patch00_7
+	  8 patch01_0
+	  9 patch01_1
+	 10 patch01_2
+	 11 patch01_3
+	 12 patch01_4
+	 13 patch01_5
+	 14 patch01_6
+	 15 patch01_7
+	 16 patch02_0
+	 17 patch02_1
+	 18 patch02_2
+	 19 patch02_3
+	 20 patch02_4
+	 21 patch02_5
+	 22 patch02_6
+	 23 patch02_7
+	 24 patch03_0
+	 25 patch03_1
+	 26 patch03_2
+	 27 patch03_3
+	 28 patch03_4
+	 29 patch03_5
+	 30 patch03_6
+	 31 patch03_7
+	 32 patch04_0
+	 33 patch04_1
+	 34 patch04_2
+	 35 patch04_3
+	 36 patch04_4
+	 37 patch04_5
+	 38 patch04_6
+	 39 patch04_7
+	 40 patch05_0
+	 41 patch05_1
+	 42 patch05_2
+	 43 patch05_3
+	 44 patch05_4
+	 45 patch05_5
+	 46 patch05_6
+	 47 patch05_7
+	 48 patch06_0
+	 49 patch06_1
+	 50 patch06_2
+	 51 patch06_3
+	 52 patch06_4
+	 53 patch06_5
+	 54 patch06_6
+	 55 patch06_7
+	 56 patch07_0
+	 57 patch07_1
+	 58 patch07_2
+	 59 patch07_3
+	 60 patch07_4
+	 61 patch07_5
+	 62 patch07_6
+	 63 patch07_7
+	 64 patch08_0
+	 65 patch08_1
+	 66 patch08_2
+	 67 patch08_3
+	 68 patch08_4
+	 69 patch08_5
+	 70 patch08_6
+	 71 patch08_7
+	 72 patch09_0
+	 73 patch09_1
+	 74 patch09_2
+	 75 patch09_3
+	 76 patch09_4
+	 77 patch09_5
+	 78 patch09_6
+	 79 patch09_7
+	 80 patch0a_0
+	 81 patch0a_1
+	 82 patch0a_2
+	 83 patch0a_3
+	 84 patch0a_4
+	 85 patch0a_5
+	 86 patch0a_6
+	 87 patch0a_7
+	 88 patch0b_0
+	 89 patch0b_1
+	 90 patch0b_2
+	 91 patch0b_3
+	 92 patch0b_4
+	 93 patch0b_5
+	 94 patch0b_6
+	 95 patch0b_7
+	 96 patch0c_0
+	 97 patch0c_1
+	 98 patch0c_2
+	 99 patch0c_3
+	100 patch0c_4
+	101 patch0c_5
+	102 patch0c_6
+	103 patch0c_7
+	104 patch0d_0
+	105 patch0d_1
+	106 patch0d_2
+	107 patch0d_3
+	108 patch0d_4
+	109 patch0d_5
+	110 patch0d_6
+	111 patch0d_7
+	112 patch0e_0
+	113 patch0e_1
+	114 patch0e_2
+	115 patch0e_3
+	116 patch0e_4
+	117 patch0e_5
+	118 patch0e_6
+	119 patch0e_7
+	120 patch0f_0
+	121 patch0f_1
+	122 patch0f_2
+	123 patch0f_3
+	124 patch0f_4
+	125 patch0f_5
+	126 patch0f_6
+	127 patch0f_7
+	128 patch10_0
+	129 patch10_1
+	130 patch10_2
+	131 patch10_3
+	132 patch10_4
+	133 patch10_5
+	134 patch10_6
+	135 patch10_7
+	136 patch11_0
+	137 patch11_1
+	138 patch11_2
+	139 patch11_3
+	140 patch11_4
+	141 patch11_5
+	142 patch11_6
+	143 patch11_7
+	144 patch12_0
+	145 patch12_1
+	146 patch12_2
+	147 patch12_3
+	148 patch12_4
+	149 patch12_5
+	150 patch12_6
+	151 patch12_7
+	152 patch13_0
+	153 patch13_1
+	154 patch13_2
+	155 patch13_3
+	156 patch13_4
+	157 patch13_5
+	158 patch13_6
+	159 patch13_7
+	160 patch14_0
+	161 patch14_1
+	162 patch14_2
+	163 patch14_3
+	164 patch14_4
+	165 patch14_5
+	166 patch14_6
+	167 patch14_7
+	168 patch15_0
+	169 patch15_1
+	170 patch15_2
+	171 patch15_3
+	172 patch15_4
+	173 patch15_5
+	174 patch15_6
+	175 patch15_7
+	176 patch16_0
+	177 patch16_1
+	178 patch16_2
+	179 patch16_3
+	180 patch16_4
+	181 patch16_5
+	182 patch16_6
+	183 patch16_7
+	184 patch17_0
+	185 patch17_1
+	186 patch17_2
+	187 patch17_3
+	188 patch17_4
+	189 patch17_5
+	190 patch17_6
+	191 patch17_7
+	192 patch18_0
+	193 patch18_1
+	194 patch18_2
+	195 patch18_3
+	196 patch18_4
+	197 patch18_5
+	198 patch18_6
+	199 patch18_7
+	200 patch19_0
+	201 patch19_1
+	202 patch19_2
+	203 patch19_3
+	204 patch19_4
+	205 patch19_5
+	206 patch19_6
+	207 patch19_7
+	208 patch1a_0
+	209 patch1a_1
+	210 patch1a_2
+	211 patch1a_3
+	212 patch1a_4
+	213 patch1a_5
+	214 patch1a_6
+	215 patch1a_7
+	216 patch1b_0
+	217 patch1b_1
+	218 patch1b_2
+	219 patch1b_3
+	220 patch1b_4
+	221 patch1b_5
+	222 patch1b_6
+	223 patch1b_7
+	224 patch1c_0
+	225 patch1c_1
+	226 patch1c_2
+	227 patch1c_3
+	228 patch1c_4
+	229 patch1c_5
+	230 patch1c_6
+	231 patch1c_7
+	232 patch1d_0
+	233 patch1d_1
+	234 patch1d_2
+	235 patch1d_3
+	236 patch1d_4
+	237 patch1d_5
+	238 patch1d_6
+	239 patch1d_7
+	240 patch1e_0
+	241 patch1e_1
+	242 patch1e_2
+	243 patch1e_3
+	244 patch1e_4
+	245 patch1e_5
+	246 patch1e_6
+	247 patch1e_7
+	248 patch1f_0
+	249 patch1f_1
+	250 patch1f_2
+	251 patch1f_3
+	252 patch1f_4
+	253 patch1f_5
+	254 patch1f_6
+	255 patch1f_7
+	  0 patch20_0
+	  1 patch20_1
+	  2 patch20_2
+	  3 patch20_3
+	  4 patch20_4
+	  5 patch20_5
+	  6 patch20_6
+	  7 patch20_7
+	  8 patch21_0
+	  9 patch21_1
+	 10 patch21_2
+	 11 patch21_3
+	 12 patch21_4
+	 13 patch21_5
+	 14 patch21_6
+	 15 patch21_7
+	 16 patch22_0
+	 17 patch22_1
+	 18 patch22_2
+	 19 patch22_3
+	 20 patch22_4
+	 21 patch22_5
+	 22 patch22_6
+	 23 patch22_7
+	 24 patch23_0
+	 25 patch23_1
+	 26 patch23_2
+	 27 patch23_3
+	 28 patch23_4
+	 29 patch23_5
+	 30 patch23_6
+	 31 patch23_7
+	 32 patch24_0
+	 33 patch24_1
+	 34 patch24_2
+	 35 patch24_3
+	 36 patch24_4
+	 37 patch24_5
+	 38 patch24_6
+	 39 patch24_7
+	 40 patch25_0
+	 41 patch25_1
+	 42 patch25_2
+	 43 patch25_3
+	 44 patch25_4
+	 45 patch25_5
+	 46 patch25_6
+	 47 patch25_7
+	 48 patch26_0
+	 49 patch26_1
+	 50 patch26_2
+	 51 patch26_3
+	 52 patch26_4
+	 53 patch26_5
+	 54 patch26_6
+	 55 patch26_7
+	 56 patch27_0
+	 57 patch27_1
+	 58 patch27_2
+	 59 patch27_3
+	 60 patch27_4
+	 61 patch27_5
+	 62 patch27_6
+	 63 patch27_7
+	 64 patch28_0
+	 65 patch28_1
+	 66 patch28_2
+	 67 patch28_3
+	 68 patch28_4
+	 69 patch28_5
+	 70 patch28_6
+	 71 patch28_7
+	 72 patch29_0
+	 73 patch29_1
+	 74 patch29_2
+	 75 patch29_3
+	 76 patch29_4
+	 77 patch29_5
+	 78 patch29_6
+	 79 patch29_7
+	 80 patch2a_0
+	 81 patch2a_1
+	 82 patch2a_2
+	 83 patch2a_3
+	 84 patch2a_4
+	 85 patch2a_5
+	 86 patch2a_6
+	 87 patch2a_7
+	 88 patch2b_0
+	 89 patch2b_1
+	 90 patch2b_2
+	 91 patch2b_3
+	 92 patch2b_4
+	 93 patch2b_5
+	 94 patch2b_6
+	 95 patch2b_7
+	 96 patch2c_0
+	 97 patch2c_1
+	 98 patch2c_2
+	 99 patch2c_3
+	100 patch2c_4
+	101 patch2c_5
+	102 patch2c_6
+	103 patch2c_7
+	104 patch2d_0
+	105 patch2d_1
+	106 patch2d_2
+	107 patch2d_3
+	108 patch2d_4
+	109 patch2d_5
+	110 patch2d_6
+	111 patch2d_7
+	112 patch2e_0
+	113 patch2e_1
+	114 patch2e_2
+	115 patch2e_3
+	116 patch2e_4
+	117 patch2e_5
+	118 patch2e_6
+	119 patch2e_7
+	120 patch2f_0
+	121 patch2f_1
+	122 patch2f_2
+	123 patch2f_3
+	124 patch2f_4
+	125 patch2f_5
+	126 patch2f_6
+	127 patch2f_7
+	128 patch30_0
+	129 patch30_1
+	130 patch30_2
+	131 patch30_3
+	132 patch30_4
+	133 patch30_5
+	134 patch30_6
+	135 patch30_7
+	136 patch31_0
+	137 patch31_1
+	138 patch31_2
+	139 patch31_3
+	140 patch31_4
+	141 patch31_5
+	142 patch31_6
+	143 patch31_7
+	144 patch32_0
+	145 patch32_1
+	146 patch32_2
+	147 patch32_3
+	148 patch32_4
+	149 patch32_5
+	150 patch32_6
+	151 patch32_7
+	152 patch33_0
+	153 patch33_1
+	154 patch33_2
+	155 patch33_3
+	156 patch33_4
+	157 patch33_5
+	158 patch33_6
+	159 patch33_7
+	160 patch34_0
+	161 patch34_1
+	162 patch34_2
+	163 patch34_3
+	164 patch34_4
+	165 patch34_5
+	166 patch34_6
+	167 patch34_7
+	168 patch35_0
+	169 patch35_1
+	170 patch35_2
+	171 patch35_3
+	172 patch35_4
+	173 patch35_5
+	174 patch35_6
+	175 patch35_7
+	176 patch36_0
+	177 patch36_1
+	178 patch36_2
+	179 patch36_3
+	180 patch36_4
+	181 patch36_5
+	182 patch36_6
+	183 patch36_7
+	184 patch37_0
+	185 patch37_1
+	186 patch37_2
+	187 patch37_3
+	188 patch37_4
+	189 patch37_5
+	190 patch37_6
+	191 patch37_7
+	192 patch38_0
+	193 patch38_1
+	194 patch38_2
+	195 patch38_3
+	196 patch38_4
+	197 patch38_5
+	198 patch38_6
+	199 patch38_7
+	200 patch39_0
+	201 patch39_1
+	202 patch39_2
+	203 patch39_3
+	204 patch39_4
+	205 patch39_5
+	206 patch39_6
+	207 patch39_7
+	208 patch3a_0
+	209 patch3a_1
+	210 patch3a_2
+	211 patch3a_3
+	212 patch3a_4
+	213 patch3a_5
+	214 patch3a_6
+	215 patch3a_7
+	216 patch3b_0
+	217 patch3b_1
+	218 patch3b_2
+	219 patch3b_3
+	220 patch3b_4
+	221 patch3b_5
+	222 patch3b_6
+	223 patch3b_7
+	224 patch3c_0
+	225 patch3c_1
+	226 patch3c_2
+	227 patch3c_3
+	228 patch3c_4
+	229 patch3c_5
+	230 patch3c_6
+	231 patch3c_7
+	232 patch3d_0
+	233 patch3d_1
+	234 patch3d_2
+	235 patch3d_3
+	236 patch3d_4
+	237 patch3d_5
+	238 patch3d_6
+	239 patch3d_7
+	240 patch3e_0
+	241 patch3e_1
+	242 patch3e_2
+	243 patch3e_3
+	244 patch3e_4
+	245 patch3e_5
+	246 patch3e_6
+	247 patch3e_7
+	248 patch3f_0
+	249 patch3f_1
+	250 patch3f_2
+	251 patch3f_3
+	252 patch3f_4
+	253 patch3f_5
+	254 patch3f_6
+	255 patch3f_7
+
+)
Index: Receive_Code/format/regs.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/regs.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/regs.format	(working copy)
@@ -0,0 +1,297 @@
+(
+  0x8000 core_chipid
+  0x8003 core_kick
+  0x8005 core_lpm_wr
+  0x8006 core_misc_ctrl
+  0x8007 core_otp_rdata
+  0x8009 core_pcmoutfifo
+  0x8010 core_reset
+  0x8011 core_encrypt
+  0x8015 core_uart_txd
+  0x8022 core_ucode_hi
+  0x8023 core_ucode_ctrl
+  0x8024 core_ucode_low
+  0x8025 core_ucode_data
+  0x8040 core_halfslot
+  0x8042 core_clksel
+  0x8043 core_uart_clksel
+  0x8043 core_config 
+  0x8044 core_xtal_stable_time
+  0x8045 core_otp_addr
+  0x8046 core_otp_din
+  0x8047 core_otp_ctrl
+  0x8048 core_otpd_addr
+  0x804a core_otpd_len
+  0x804b core_otpd_ctrl
+  0x804c core_lpm_reg
+  0x804f core_lpm_isogate
+  0x8050 core_clkoff
+  0x8052 core_uart_baud
+  0x8054 core_uart_rsaddr
+  0x8056 core_uart_readdr
+  0x8058 core_uart_rrptr
+  0x805a core_uart_tsaddr
+  0x805c core_uart_teaddr
+  0x805e core_uart_twptr
+  0x8060 core_uart_trptrp
+  0x8062 core_uart_ctrl
+  0x8063 core_kscn_ksctrl
+  0x8064 core_kscn_rctc
+  0x8065 core_kscn_scancycle_timer_l
+  0x8066 core_kscn_scancycle_timer_h
+  0x8067 core_kscn_m_debounce          
+  0x8068 core_kscn_modkey
+  0x806f core_kscn_rowmask
+  0x8070 core_gpio_oe0
+  0x8071 core_gpio_oe1
+  0x8072 core_gpio_oe2
+  0x8073 core_gpio_oe3
+  0x8074 core_gpio_out0
+  0x8075 core_gpio_out1
+  0x8076 core_gpio_out2
+  0x8077 core_gpio_out3
+  0x8078 core_gpio_pu0
+  0x8079 core_gpio_pu1
+  0x807a core_gpio_pu2
+  0x807b core_gpio_pu3
+  0x807c core_gpio_pd0
+  0x807d core_gpio_pd1
+  0x807e core_gpio_pd2
+  0x807f core_gpio_pd3
+  0x8080 core_gpio_sel
+  0x8081 core_gpio_sel1
+  0x8082 core_gpio_sel2
+  0x8083 core_gpio_key0
+  0x8084 core_gpio_key1
+  0x8085 core_gpio_key2
+  0x8086 core_spid_ctrl
+  0x8087 core_spid_delay
+  0x8088 core_spid_txlen
+  0x808a core_spid_txaddr
+  0x808c core_spid_rxaddr
+  0x808e core_spid_rxlen
+  0x8090 core_iicd_ctrl
+  0x8091 core_iicd_scl_low
+  0x8092 core_iicd_scl_high
+  0x8093 core_iicd_start_setup
+  0x8094 core_iicd_start_hold
+  0x8095 core_iicd_stop_setup
+  0x8096 core_iicd_data_setup
+  0x8097 core_iicd_data_hold
+  0x8098 core_iicd_txlen
+  0x809a core_iicd_txaddr
+  0x809c core_iicd_rxaddr
+  0x809e core_iicd_rxlen
+  0x80a0 core_pwm_pcnt0
+  0x80a2 core_pwm_ncnt0
+  0x80a4 core_pwm_pcnt1
+  0x80a6 core_pwm_ncnt1
+  0x80b0 core_enc_ctrl
+  0x80b1 core_cvsd_ctrl
+  0x80b2 core_codec_ctrl
+  0x80b3 core_dec_ctrl
+  0x80b4 core_bist_ctrl
+
+
+
+  
+  0x8108 core_misc_status
+  0x8109 core_qdec_cntx
+  0x810a core_qdec_cnty
+  0x810b core_qdec_cntz
+  0x810c core_uart_status
+  0x810d core_uart_rbaud
+  0x810e core_uart_txitems
+  0x8110 core_uart_trptr
+  0x8112 core_uart_rxitems
+  0x8114 core_uart_rdptr
+  0x8116 core_uart_rwptr
+  0x8119 core_kscn_kstat
+  0x811a core_kscn_event
+  0x811b core_kscn_event_num
+  0x811c core_gpio_in
+  0x811d core_gpio_in1
+  0x8124 core_current_otp_addr
+  0x8126 core_otpd_remain
+  0x8128 core_spid_remain
+  0x812a core_iicd_remain
+  0x812c core_dma_status
+  0x812d core_perf_status
+  0x812e core_adc_in
+  0x8134 core_pcminfifo
+  0x8135 core_pcminfifo_remain
+  0x8136 core_pcmoutfifo_remain
+  0x8138 core_lpm_ctrl
+  0x813c core_lpm_xtalcnt
+  0x813d core_lpm_buckcnt
+  0x813e core_lpm_ldocnt
+  0x813f core_lpm_latch
+  0x8140 core_gpio_wakeup_low
+  0x8144 core_gpio_wakeup_high
+  0x8149 core_clk_counter
+  0x8150 core_adc_sum
+// dummy regs  
+
+  0x8203 core_ice_ctrl
+  0x8204 core_ice_status
+  0x8205 core_ice_break0
+  0x8207 core_ice_break1
+  
+  0x8280 core_docd_ctrl
+  0x8288 core_docd_paddr
+  0x828a core_docd_pdata
+
+  0x8300 iic_prer_low		
+  0x8301 iic_slave_addr	
+  0x8302 iic_ctr					
+  0x8303 iic_cr					
+  0x8304 iic_rxr					
+  0x8305 iic_txr					
+  0x8306 iic_sr					
+  0x8307 iic_fifo				
+
+  0x8400   mem_b_box          /* entire bank */
+  0x8500   mem_e_box          /* entire bank */
+  0x8600   mem_l_box          /* entire bank */
+
+ifdef REVD
+  0x8700 memk
+endif
+
+  0x8900 rfen_rx
+  0x8901 rfen_tx
+  0x8902 rfen_mdm
+  0x8903 rfen_sn
+  0x8904 rfen_msc
+  0x8905 rfen_ck
+  0x8906 rfen_adc
+  0x8912 rf_agc_ctrl
+  0x8914 rfen_ulp
+  0x8973 rfen_chgpump
+  0x894b rf_rx_vctrl_reg1
+  0x894c rf_rx_vctrl_reg2
+  0x894d rf_rx_ib_lna
+  0x894e rf_rx_lna_ctrim
+
+  0x8950 rf_bpf_ctrim
+  0x8951 rf_bpf_ib
+  0x8952 rf_adc_rccal
+  0x8952 rf_rccal_ctrl
+  0x8953 rf_rccal_sel
+  0x8955 rf_tx_pa
+  0x895f rf_pll_rstn
+  0x8964 rf_sdm_en
+  0x8960 rf_pll_intg
+  0x8961 rf_pll_frac
+  0x8963 rf_pll_frachi
+  0x896c rf_afc_cap
+  0x8967 rf_clkpll_bias
+  0x896f rf_clkpll_en
+  0x8968 rf_clkpll_int
+  0x8969 rf_clkpll_frac
+  0x896d rf_balun_ctrim
+  0x8971 rf_adc_mode
+  0x8972 rf_adc_gc
+  0x8973 rf_adc_ch
+  0x8980 rf_rccal_result
+  0x8981 rf_afc_d2a
+  0x8982 rf_rssi
+
+
+0x8c00 core_usb_config		
+0x8c01 core_usb_int_mask	
+0x8c10 core_usb_trig	
+0x8c11 core_usb_stall		
+0x8c12 core_usb_clear		
+0x8c18 core_usb_ep
+0x8c18 core_usb_dfifo0 
+0x8c19 core_usb_dfifo1  
+0x8c1a core_usb_dfifo2 
+0x8c20 core_usb_ep_len
+0x8c26 core_usb_status		
+0x8c27 core_usb_fifo_empty
+0x8c28 core_usb_fifo_full
+
+
+ifdef FPGA
+0 rx_freq_offset
+else
+4 rx_freq_offset
+endif
+2 tx_freq_offset
+
+/* bit difinitions */
+  4 whiteoff_bit
+  6 clksel_rc
+  5 clksel_dpll
+  4 clksel_xtal
+  5 adc_rccal
+  0 bpf_rccal
+  1 demod_clkoff
+
+(
+  7 cold_wake
+  3 gpio_latch
+  4 enable_retmem
+  0xef isogate_mask
+  0xe0 cs_mask
+)
+
+// misc ctrl
+(
+  0x01 otpd_start
+  0x02 spid_start
+  0x04 iicd_start
+  0x08 lock_otp
+  0x10 x_sethi
+  0x20 y_sethi
+  0x40 z_sethi
+  0x80 ccnt_start
+)
+// dma status bit
+(
+  0 otpd_crcok
+  1 otpd_done
+  2 spid_crcok
+  3 spid_done
+  4 iicd_crcok
+  5 iicd_done
+)
+
+0x8b uart_ctrl_default //BCSP
+0x81 uart_ctrl_h4 //H4
+0x81 uart_ctrl_normal
+0x91 uart_ctrl_5line
+0x81 uart_ctrl_57600
+2 uart_baud_len
+0x00 uartclk_crystal
+0x01 uartclk_dpll
+0x1a0 uart_baud_115200
+0xbb uart_baud_256000
+0x340 uart_baud_57600
+0x34 uart_baud_921600
+0x9c4 uart_baud_9600
+0x2dc6c00 uart_clk
+0x16E3600 uart_clk_24
+
+//core_clkoff
+(
+	0 CLOCK_OFF_AUTH_ROM
+	1 CLOCK_OFF_UC_ROM
+	2 CLOCK_OFF_DEBUG_UART
+	3 CLOCK_OFF_SCHED_RAM
+	4 CLOCK_OFF_TRANCE_FIFO
+	5 CLOCK_OFF_CORDIC
+	6 CLOCK_OFF_OTPD
+	7 CLOCK_OFF_I2C
+	8 CLICK_OFF_8051
+	9 CLOCK_OFF_KEYSCAN
+	0x0a CLOCK_OFF_USB
+	0x0b CLOCK_OFF_QDECODER
+	0x0c CLOCK_OFF_SPI
+	0x0d CLOCK_OFF_PWM
+	0x0e CLOCK_OFF_CODEC
+	0x0f CLOCK_OFF_UART
+)
+
+
Index: Receive_Code/format/rfcomm.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/rfcomm.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/rfcomm.format	(working copy)
@@ -0,0 +1,391 @@
+/*****************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                                */
+/* $Author: Administrator $                                                           */
+/* $Id: bt_rfcomm_format.upper,v 1.1 2009-09-28 04:06:17 Administrator Exp $ */
+/* Orisil Technology                                                      */
+/*****************************************************************************/
+
+/**********/
+/* memory */
+/**********/
+
+memalloc(
+1 memRemoteRPNBitRate
+1 memRemotePRNDataBits
+1 memRemotePRNStopBit
+1 memRemotePRNParity
+1 memRemotePRNFlowControl
+1 memRemotePRNXon
+1 memRemotePRNXoff
+
+
+3 mem_mod2div_temp
+2 mem_contw_temp
+2 mem_attrib_list
+
+//rfcomm head
+1 mem_current_adss
+1 mem_current_channel
+1 mem_current_frame_type
+1 mem_current_fcs
+2 mem_current_length
+2 mem_rfcomm_uih_payload_ptr
+
+//rfcomm uih
+1 mem_uih_cmd_type
+2 mem_uih_length
+2 mem_param_payload_ptr
+
+
+//rfcomm modem status
+1 mem_ms_param
+
+//rfcomm pn
+1 mem_pn_credit_flow_type_info
+1 mem_pn_priority
+1 mem_pn_acknowledg_timer
+1 mem_pn_max_retrans
+
+1 mem_rfcomm_send_adss
+1 mem_rfcomm_send_frame_type
+1 mem_rfcomm_send_fcs
+1 mem_rfcomm_send_offset
+
+)
+
+xmemalloc(
+1 mem_pn_dlci
+2 mem_pn_max_frame_size
+
+1 memFCStemp1
+1 memFCStemp2
+1 memFCStemp3
+
+1 mem_rfcomm_initiator
+
+1 mem_remote_spp_channel
+
+1 mem_HIUfcs_SPP
+1 mem_HIUfcs_SPP_WCredits
+
+1 mem_rfcomm_send_more_pkt
+
+1 mem_remote_credits
+1 mem_credit_given
+
+//rfcomm modem status
+1 mem_ms_channel
+
+1 mem_credit_flag
+
+2 mem_rfcomm_max_frame_size
+1 mem_rfcomm_credit_init_data
+
+2 mem_cb_receive_spp_data
+
+2 mem_nl_rx_data_src
+2 mem_nl_rx_len_all
+)
+
+
+(
+0 CREDIT_DISABLE
+1 CREDIT_ENABLE
+)
+
+
+/************************************************************************/
+  
+
+ 
+/************/
+/* constant */
+/************/
+
+/* RFCOMM state for Headset (memRFCOMM_State) */ 
+  (
+    0 RFCOMM_IDLE           /* before the responsor HS receive SABM            */
+    1 RFCOMM_W4_DLCI0_OPEN
+    2 RFCOMM_W4_DLCI0_CLOSE
+    3 RFCOMM_START_DLCI0    /* After respond SABM frame (DLCI=0)               */
+    4 RFCOMM_W4_DLCI_OPEN
+    5 RFCOMM_W4_DLCI_CLOSE
+    6 RFCOMM_DLCI_OPENED    
+   
+  )
+  
+/* RFCOMM timer constants   */
+  (
+    1000  RFCOMM_T1         /* Used by SABM and DISC frames,100*20ms = 20s     */     
+    1000  RFCOMM_T2         /* Used by commands send in UIH on DLCI0,          */
+    300   RFCOMM_T3_RINGON  /* 6s for ring fade time                           */
+  
+  )
+
+/* Command Type */
+  (
+    0x3F RSP_RX_SABM        /*responsor expect SABM from initiator             */
+    0x3F INI_TX_SABM
+	
+    0x73 RSP_TX_UA          /*responsor send out UA command                    */
+    0x73 UA_WFBIT_SET	    /* UA control field with F bit set                 */
+	
+    0xEF RSP_RX_UIH         /*responsor expect UIH from initiator              */
+
+    0xEF RSP_TX_UIH         /*responsor send UIH to initiator                  */
+     
+    0x1F RSP_TX_DM          /*responsor send DM to initiator                   */
+    0x1F DM_WFBIT_SET       /* DM control field with F bit set                 */
+    0x0F DM_WFBIT_CLEAR     /* DM control field with F bit clear               */
+
+    0x53 RSP_RX_DISC        /*responsor expect DISC from initiator             */
+    0x53 INI_TX_DISC	    /*initiator send DISC control type command         */
+     
+    0xFF RSP_RX_UIH_WDATA   /*UIH data with credit flow control info           */
+    
+    
+  )
+
+/* Multiplexor commands and responses frames */
+  (
+    0x83 PN_COMMAND           /* Bit 0 EA C/R Type = 000001         */
+    0x81 PN_RESPONSOR         /* Bit 0 EA C/R Type = 000001         */
+    
+    0xE3 MSC_COMMAND          /* Bit 0 EA C/R Type = 000111         */
+    0xE1 MSC_RESPONSOR
+ 
+    0x13 NSC_COMMAND          /* Bit 0 EA C/R Type = 001000         */
+    0x11 NSC_RESPONSOR        /* Bit 0 EA C/R Type = 001000         */
+
+    0x23 TEST_COMMAND         /* Bit 0 EA C/R Type = 000111         */
+    0x21 TEST_RESPONSOR 
+    
+    0x93 RPN_COMMAND          /* Bit 0 EA C/R Type = 001001         */
+    0x91 RPN_RESPONSOR 
+    
+    0x53 RLS_COMMAND          /* Bit 0 EA C/R Type = 001010         */
+    0x51 RLS_RESPONSOR 
+
+    0xA3 FCON_COMMAND         /* Bit 0 EA C/R Type = 000101         */
+    0xA1 FCON_RESPONSOR 
+    
+    0x63 FCOFF_COMMAND        /* Bit 0 EA C/R Type = 000110         */
+    0x61 FCOFF_RESPONSOR 
+    	
+    0x03 RLS_OVERRUN
+    0x05 RLS_PARITY_ERROR
+    0x09 RLS_FRAMING_ERROR
+  )
+
+/* memLocalCredit */
+  (
+    0x01 RFCOMM_CREDIT
+  )
+
+  (
+  	0x007f RFCOMM_MAX_FRAME_SIZE
+  )
+
+/* UIH received Data length */
+  (
+    0  LENGTH_ZERO
+    
+    6  LENGTH_OK
+    7  LENGTH_HOT
+    8  LENGTH_RING
+    9  LENGTH_ERROR
+    9  LENGTH_AGVOL_ONEBYTE
+    10 LENGTH_AGVOL_TWOBYTE
+    10 LENGTH_VOL_ONEBYTE
+    11 LENGTH_VOL_TWOBYTE
+    12 LENGTH_BRSF
+    13 LENGTH_PLUS_CIEV
+    15 LENGTH_INBANDRING
+    14 LENGTH_CIEV_CALL
+    17 LENGTH_CRING
+    20 LENGTH_BRSF_OK
+    24 LENGTH_CIND0
+    28 LENGTH_CIEV_TWO
+    32 LENGTH_CIND_OK
+    59 LENGTH_CIND_OK2
+    100 LENGTH_DISCARD
+  )
+  
+/************/
+/* flags    */
+/************/
+  
+/* memRFCOMM_L2CAP_Interface */
+  (
+    0 RFCOMM_TX_W4BUF_FLAG    /* Wait for Tx buffer empty flag */
+    1 RFCOMM_CLOSE_LINK_FLAG
+  )
+  
+
+    
+/* memRemoteMSC		*/
+  (
+    0 MSC_EA_BIT
+    1 MSC_FC_BIT
+    2 MSC_RTC_BIT
+    3 MSC_RTR_BIT
+    6 MSC_IC_BIT
+    7 MSC_DV_BIT
+  )
+
+/* memRemoteRLS         */
+  (
+    0x0C OVERRUN_ERROR
+    0x0A PARITY_ERROR
+    0x09 FRAMING_RERROR
+  )
+  
+/* memRemoteRPNBitRate  */
+  (
+    0x00 BITS2400
+    0x01 BITS4800
+    0x02 BITS7200
+    0x03 BITS9600
+    0x04 BITS19200
+    0x05 BITS38400
+    0x06 BITS57600
+    0x07 BITS115200
+    0x08 BITS230400
+  )
+  
+/* memRemotePRNDataBits	*/
+  (
+    0x00 DATABITS5
+    0x01 DATABITS6
+    0x02 DATABITS7
+    0x03 DATABITS8
+  )
+  
+/* memRemotePRNStopBit	*/
+  (
+    0    ONESTOP
+    1    ONEHALFSTOP
+  )
+  
+/* memRemotePRNParity   */
+  (
+    0    ODDPARITY
+    1    EVENPARITY
+    2    MARKPARITY
+    3    SPACEPARITY
+    
+    7    PARITY_ENABLE_BIT
+  )
+
+/* RPN bit mask(in)     */
+  (
+     0   BIT_RATE_MASK_BIT
+     1   DATA_BITS_MASK_BIT
+     2   STOP_BITS_MASK_BIT
+     3   PARITY_MASK_BIT
+     4   PARITY_TYPE_MASK_BIT
+     5   XON_CHAR_MASK_BIT
+     6   XOFF_CHAR_MASK_BIT
+  )
+  
+/* RPN bit mask(in) 2    */
+  (
+     0   XON_XOFF_INPUT_MASK_BIT
+     1   XON_XOFF_OUTPUT_MASK_BIT
+     2	 RTR_INPUT_MASK_BIT
+     3   RTR_OUTPUT_MASK_BIT
+     4   RTC_INPUT_MASK_BIT
+     5   RTC_OUTPUT_MASK_BIT
+
+  )
+
+/* memRFCOMM_Request	*/
+  (
+    0 SEND_MSC_CMD_REQ_FLAG
+    1 SEND_AT_CKPD_REQ_FLAG
+    2 SEND_RING_REQ_FLAG
+    3 SEND_SABM_CMD
+  )
+  
+/* memRFCOMM_Misc_Flag  */
+  (
+    0 MSC_CDM_ALREADY_SEND_FLAG
+    1 CREDIT_FLOW_USED_FLAG
+    2 DONT_EMBEDDED_CREDIT_FLAG 
+    3 MSC_EXCHANGE_DONE_FLAG
+    4 FLOW_CONTROL_FCOFF_BIT            /* set when receive FCoff, clear when FCon   */
+  )
+  
+/* memRemoteMSC		*/
+  (
+    1 FLOW_CONTROL_FC_BIT		/* received MSC FC bits                      */
+  
+  )
+/* Address filed        */
+  (
+    0 ADDR_EA_BIT
+    1 ADDR_CR_BIT
+    2 ADDR_D_BIT
+  )
+//should be same as descripted in SDP
+(
+    1 SPP_SLAVE_CHANNEL
+    7 OBEX_SERVER_CHANNEL
+    8 HF_SERVER_CHANNEL 
+    9 HS_SERVER_CHANNEL
+)
+/* memRFCOMM_Flag */
+(
+	0 USING_HF_PROFILE
+	1 USING_HS_PROFILE
+	2 USING_SPP_PROFILE
+)
+/*RFCOMM Frame Type*/
+(
+	0x3f RFCOMM_FRAME_TYPE_SABM
+	0x73 RFCOMM_FRAME_TYPE_UA
+	0xEF RFCOMM_FRAME_TYPE_UIH
+	0xFF RFCOMM_FRAME_TYPE_UIH_CREDITS
+	0x53 RFCOMM_FRAME_TYPE_DISCONN
+)
+/*RFCOMM UIH CMD TYPE*/
+(
+	0x41 UIH_PARAM_NEG_CMD
+	0x40 UIH_PARAM_NEG_RES
+	0x49 UIH_PARAM_CMD_REMOVE_PORT
+	0x71 UIH_MODEM_STATUS_CMD
+	0x70 UIH_MODEM_STATUS_RES
+)
+
+/*bits in rfcomm address*/
+(
+	0 RFCOMM_ADDRESS_EXT_LEN
+	1 RFCOMM_ADDRESS_CR
+	2 RFCOMM_ADDRESS_DERECTION
+
+
+)
+
+	(                                   
+	0 RFCOMM_CHANNEL_STATE_PN_CMD
+	1 RFCOMM_CHANNEL_STATE_PN_RES
+	2 RFCOMM_CHANNEL_STATE_SABM
+	3 RFCOMM_CHANNEL_STATE_UA
+	4 RFCOMM_CHANNEL_STATE_SND_MS_CMD
+	5 RFCOMM_CHANNEL_STATE_RCV_MS_CMD
+	6 RFCOMM_CHANNEL_STATE_SND_MS_RES
+	7 RFCOMM_CHANNEL_STATE_RCV_MS_RES
+	0xff RFCOMM_CHANNEL_SETUP_COMPLETE
+	) 
+
+	/*mem_rfcomm_send_more_pkt*/
+	(
+	1 MORE_PKT_MSC_CMD_HF
+	2 MORE_PKT_MSC_CMD_HS
+	3 MORE_PKT_MSC_CMD_SPP
+	4 MORE_PKT_MSC_CMD_OBEX
+	)
+
+	(
+	127 RFCOMM_MALLOC_SIZE
+	)
\ No newline at end of file
Index: Receive_Code/format/sdp.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/sdp.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/sdp.format	(working copy)
@@ -0,0 +1,52 @@
+
+memalloc(
+0 mem_sdp_mem_start
+4 mem_uuid_search_pat
+2 mem_sdp_continue_byte
+1 mem_sdp_pduid
+2 mem_sdp_transactionid
+2 mem_sdp_attribute_maxbyte
+2 mem_sdp_record_maxcnt
+8 mem_sdp_error_code
+4 mem_sdp_record_handle
+1 mem_sdp_search_failed
+1 mem_sdp_LACAP_found
+1 mem_sdp_RFCOMM_found
+24 mem_handle_list
+1 mem_handle_humber
+0 mem_sdp_mem_end
+)
+xmemalloc(
+2 mem_ui_uuid_table
+22 mem_all_uuid_16bits
+18 mem_all_uuid_128bits
+2 mem_ui_le_uuid_table
+)
+(
+0 AGORHS_SERVICE
+1 GENAUDIO_SERVICE
+2 HANDSFREE_SERVICE
+)
+(
+0 ATTRIBUTEID_0000
+1 ATTRIBUTEID_0001
+2 ATTRIBUTEID_0004
+3 ATTRIBUTEID_0009
+4 ATTRIBUTEID_0100
+5 ATTRIBUTEID_0302
+6 ATTRIBUTEID_0006
+7 ATTRIBUTEID_0311
+)
+/* mem_sdp_search_profile */
+(
+1	SDP_SS_HEADSET
+2  	SDP_SS_HANDSFREE
+)
+(
+0x06 sdp_pduid_serviceSearchAttrib
+)
+0x2600 sdp_max_amount
+767 SDP_MALLOC_SIZE
+0x6e sdp_tid_spp //any number
+
+ 
Index: Receive_Code/format/security.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/security.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/security.format	(working copy)
@@ -0,0 +1,141 @@
+
+memalloc(
+/* moved from bt.format for 3dh5 1021bytes packet buffer */
+17 mem_rxbuf
+
+16 mem_random_number
+16 mem_round_key
+16 mem_kinit
+
+16 mem_input_store
+16 mem_x
+15 mem_y
+1 mem_y15
+17 mem_key_store
+1 mem_key_store_end
+2 memp_ar_key
+2 memp_ar_input
+10 mem_ar_hround
+
+
+1 mem_ec_infinite
+2 mem_ec_loopc
+1 mem_aes_cmac_data_length
+
+0 memdat
+/* ecc calculation */
+
+24 mem_ax
+24  mem_ay
+24  mem_az
+24 mem_bx
+0 mem_ax_256 //32 bytes
+24 mem_by
+8 mem_bz
+16 mem_ay_256 // 32 bytes
+16 mem_cx
+8 mem_az_256 // 32 bytes
+23 mem_cy
+1 mem_cy5
+0 mem_bx_256 // 32 bytes
+24 mem_cz
+8  mem_k
+16 mem_by_256 // 31 bytes
+16 mem_align
+
+0 mem_bz_256  //32 bytes
+0 mem_tmp1
+24 memahbak
+8 mem_tmp5
+0 mem_cx_256  //32 bytes
+16 memahsave
+16  mem_tmp2
+0 mem_cy_256  // 32 bytes
+0  memahsave_end 
+1  mem_addr_padding 
+7   mem_addr_value         /* 12 bytes     */ 
+0 mem_tmp3
+5 mem_t1
+3  mem_addr_value_end   
+15 mem_addr_iocap_end
+1 mem_cy5_256 // 1 byte
+0 mem_cz_256 // 32 bytes
+0 mem_tmp0
+8 mem_t0
+16 mem_tmp0a
+8  mem_t2
+16 mem_k_256 //32 bytes
+16 mem_t3
+8  mem_tmp1_256 //32 bytes
+24 mem_t7
+
+
+32 mem_tmp5_256
+32  mem_tmp2_256
+0 mem_tmp3_256
+32 mem_t1_256
+0 mem_tmp0_256
+32 mem_t0_256
+32 mem_t2_256
+32 mem_t3_256
+32 mem_t7_256
+
+24 mem_p		
+24 mem_a
+24 mem_b
+24 mem_gx
+24 mem_gy
+32 memh0
+
+//p256
+//2 mem_ec_loopc_256
+//32 mem_ax_256
+//32 mem_ay_256
+//32 mem_az_256
+//32 mem_bx_256
+//32 mem_by_256
+//32 mem_bz_256
+//32 mem_cx_256
+//31 mem_cy_256
+//1 mem_cy5_256
+//32 mem_cz_256
+//32 mem_k_256
+
+
+//32 mem_tmp1_256
+//32 mem_tmp5_256
+//32  mem_tmp2_256
+
+//0 mem_tmp3_256
+//32 mem_t1_256
+//0 mem_tmp0_256
+//32 mem_t0_256
+//32 mem_t2_256
+//32 mem_t3_256
+//32 mem_t7_256
+
+32 mem_p_256		
+32 mem_a_256
+32 mem_gx_256
+32 mem_gy_256
+//4 mem_le_keyid
+16 mem_le_slat
+
+
+//64 mem_regext
+//1 mem_regext_index
+
+//16 mem_le_mackey
+
+
+//1 mem_AES_CMAC_flag
+//16 mem_AES_CMAC_temp
+//16 mem_AES_CMAC_M_last
+
+//4 mem_le_gkey
+
+//16 mem_le_r
+
+)
+
+
Index: Receive_Code/format/shutter.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/shutter.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/shutter.format	(working copy)
@@ -0,0 +1,460 @@
+
+
+omemalloc(
+4 mem_shutter_send_data
+1 mem_shutter_key_temp
+1 mem_shutter_send_length
+4 mem_shutter_clkn_bt_last
+1 mem_shutter_key
+1 mem_shutter_flag
+1 mem_shutter_cable_unplug_conut
+1 mem_shutter_hid_disconn_count
+1 mem_shutter_1key_send_sm
+
+1 mem_shutter_iphonekey_gpio
+1 mem_shutter_androidkey_gpio
+1 mem_shutter_key_number
+
+
+//1 mem_last_txlch
+//2 mem_last_txlen
+//20 mem_last_txdata
+1 mem_read_eeprom_temp
+3 mem_read_eeprom_mac_addr
+
+1 mem_scale_tx_length
+1 mem_scale_txbuff_inuse
+2 mem_adv_lap_ptr
+1 mem_le_sleep_flag
+2 mem_rx_window_sniff_inc
+1 mem_pair_state
+1 mem_exchange_mtu_req
+2 mem_le_sleep_timeout
+2 mem_le_sleep_timeout_timer_count
+2 mem_le_fast_adv_timeout
+2 mem_le_fast_adv_timeout_timer_count
+2 mem_led_fast_dark_time
+2 mem_led_fast_light_time
+/////////////////////////////////////////////////////////////////
+//the pin of power on button
+1 mem_power_on_pin 
+//uint(100ms)
+//1 mem_key_press_to_power_on_time
+//uint(100ms)
+//1 mem_key_press_to_power_off_time
+//= 1 hardswitch, =0 softswitch
+1 mem_hard_soft_switch_case
+//=1 power on, =0 power off
+//1 mem_is_poweron_flag 
+1 mem_shutter_powerup_flag
+1 mem_shutter_button_timeout
+1 mem_shutter_button_timer
+1 mem_power_timeout
+1 mem_power_timer
+1 mem_enable_key_scan
+2 mem_packet_interval_set
+
+// byte array for led pin,uint8_t mem_led_map[4]
+1 mem_shutter_led_num
+4 mem_led_map
+
+/*
+*	typedef struct
+*	{
+*		LED_STYLE led_type,
+*		uint8_t led_pin,//bit[4-0]:gpio num, bit 7 =0 low active
+*		uint16_t on_time,//led light time
+*		uint16_t off_time,//led dark time
+*		uint8_t blink_count,//the number of times of led flashing,if blink _count == 0xff, always flashing
+*	}Led_Style;
+*/
+0 mem_fast_adv_led_style
+1 mem_fa_led_type
+1 mem_fa_led_pin
+2 mem_fa_led_on_time
+2 mem_fa_led_off_time
+1 mem_fa_blink_count
+
+0 mem_slow_adv_led_style
+1 mem_sa_led_type
+1 mem_sa_led_pin
+2 mem_sa_led_on_time
+2 mem_sa_led_off_time
+1 mem_sa_blink_count
+
+//Led_style power_on_led_style
+0 mem_power_on_led_style
+1 mem_po_led_type
+1 mem_po_led_pin
+2 mem_po_led_on_time
+2 mem_po_led_off_time
+1 mem_po_blink_count
+
+//Led_style Powe_off_led_style
+0 mem_powe_off_led_style
+1 mem_pf_led_type
+1 mem_pf_led_pin
+2 mem_pf_led_on_time
+2 mem_pf_led_off_time
+1 mem_pf_blink_count
+
+//Led_style connected_led_style
+0 mem_connected_led_style
+1 mem_co_led_type
+1 mem_co_led_pin
+2 mem_co_led_on_time
+2 mem_co_led_off_time
+1 mem_co_blink_count
+
+0 mem_key_led_style
+0 mem_key_led_style_ind_0
+7 mem_key_led_style_ind_0_data
+0 mem_key_led_style_ind_1
+7 mem_key_led_style_ind_1_data
+0 mem_key_led_style_ind_2
+7 mem_key_led_style_ind_2_data
+0 mem_key_led_style_ind_3
+0 mem_key_led_style_ind_key_release
+7 mem_key_led_style_ind_3_data
+
+0 mem_temp_led_style
+1 mem_temp_led_type
+1 mem_temp_led_pin
+2 mem_temp_led_on_time
+2 mem_temp_led_off_time
+1 mem_temp_blink_count
+
+/**
+* typedef struct
+* {
+*	uint8_t key_pin,//bit[4-0]:gpio num, bit 7 =0 low active
+*	uint8_t led_style_ind,//key_led[0,1,2]
+*	uint8_t *press_ptr,
+*	uint8_t *rel_ptr;
+* }Key_Conf;
+**/
+1 mem_shutter_key_num
+//key_conf[max_shutter_key_num] 
+0 mem_key_conf0
+1 mem_key_conf0_pin
+1 mem_key_conf0_led
+//2 mem_key_conf0_press_ptr
+//2 mem_key_conf0_rel_ptr
+0 mem_key_conf1
+1 mem_key_conf1_pin
+1 mem_key_conf1_led
+//2 mem_key_conf1_press_ptr
+//2 mem_key_conf1_rel_ptr
+0 mem_key_conf2
+1 mem_key_conf2_pin
+1 mem_key_conf2_led
+//2 mem_key_conf2_press_ptr
+//2 mem_key_conf2_rel_ptr
+0 mem_key_conf3
+1 mem_key_conf3_pin
+1 mem_key_conf3_led
+//2 mem_key_conf3_press_ptr
+//2 mem_key_conf3_rel_ptr
+0 mem_key_conf4
+1 mem_key_conf4_pin
+1 mem_key_conf4_led
+//2 mem_key_conf4_press_ptr
+//2 mem_key_conf4_rel_ptr
+0 mem_key_conf5
+1 mem_key_conf5_pin
+1 mem_key_conf5_led
+//2 mem_key_conf5_press_ptr
+//2 mem_key_conf5_rel_ptr
+
+//0 mem_key_conf_temp
+//1 mem_key_conf_pin
+//1 mem_key_conf_led
+//2 mem_key_conf_press_ptr
+//2 mem_key_conf_rel_ptr
+2 mem_key_value_temp
+2 mem_key_value
+1 mem_key_packet_count
+2 mem_key_next_addr
+1 mem_key_value_temp1
+1 mem_key_value_temp2
+1 mem_key_value_temp3
+1 mem_key_value_temp4
+1 mem_key_value_temp5
+1 mem_key_value_temp6
+
+20 mem_key0_press
+20 mem_key0_release	
+14 mem_key1_press
+14 mem_key1_release
+14 mem_key2_press
+14 mem_key2_release
+14 mem_key3_press
+14 mem_key3_release
+14 mem_key4_press
+14 mem_key4_release
+14 mem_key5_press
+14 mem_key5_release
+
+1 mem_queue_ele_num
+2 mem_queue_read
+2 mem_queue_write
+0 mem_queue_start
+10 mem_data_ele0
+10 mem_data_ele1
+10 mem_data_ele2
+10 mem_data_ele3
+10 mem_data_ele4
+10 mem_data_ele5
+0 mem_queue_end
+2 mem_queue_temp
+
+
+
+1 mem_shutter_key_data_flag
+1 mem_shutter_key_data_flag_1
+
+// find type value 
+2 mem_le_find_type_value_start_handle
+2 mem_le_find_type_value_end_handle
+1 mem_shutter_find_type_value_flag
+1 mem_le_uuid
+
+1 mem_send_updata_le_param_timer
+3 mem_le_smp_key_dist
+1 mem_ltk_states
+1 mem_shutter_conn_update_timer
+
+1 mem_empty_count
+1 mem_shutter_notification_len
+2 mem_shutter_notification_addr
+500 mem_shutter_le_att_list
+1 mem_timeout_disconnect_timer
+135 mem_shutter_att_list_patch
+3 mem_le_app_peer_addr
+6 mem_app_peer_addr
+
+1 mem_le_conn_state
+1 mem_le_conn_sm
+1 mem_le_work_data_send_flag
+
+0 mem_le_car_write_cmd_data
+4 mem_le_car_write_cmd_head
+5 mem_le_car_write_cmd_data1
+2 mem_le_car_write_cmd_control
+1 mem_le_car_write_cmd_check_sum
+
+1 mem_queue_ele_num_patch
+2 mem_queue_read_patch
+2 mem_queue_write_patch
+0 mem_queue_start_patch
+20 mem_data_ele0_patch
+20 mem_data_ele1_patch
+20 mem_data_ele2_patch
+20 mem_data_ele3_patch
+20 mem_data_ele4_patch
+20 mem_data_ele5_patch
+0 mem_queue_end_patch
+2 mem_queue_temp_patch
+
+2 mem_le_sleep_conn_timeout
+
+6 mem_slave_addr
+
+11 mem_uart_mouse_data_buff
+6 mem_le_slave_peer_addr
+1 mem_le_send_write_request_count
+
+)
+
+(
+6 QUEUE_ELE_COUNT
+10 QUEUE_ELE_LENGTH
+)
+
+(
+0 PAIR_UNKNOWN
+1 PAIR_ING
+2 PAIR_DONE
+)
+
+(
+0x18 ATT_WRITE_REQUEST_HANDLE
+)
+
+(
+0x13	HANDLE_VOLUM_UP_KEY	
+0x17	HANDLE_ENTER_KEY
+)
+	
+(
+0x010210 param_smp_key_dist1
+0x010010 param_smp_key_dist2
+)
+
+(
+0 INITATOR_LTK
+1 INITATOR_IRK
+2 INITATOR_CSRK
+)
+
+(
+//100ms
+0x00a0	FAST_ADV_INTERVAL_VALUE
+//200ms
+0x0140	SLOW_ADV_INTERVAL_VALUE
+)
+
+(
+0x01	GAP_ADTYPE_FLAGS
+0x02	GAP_ADTYPE_16BIT_MORE
+0x03	GAP_ADTYPE_16BIT_COMPLETE
+0x04	GAP_ADTYPE_32BIT_MORE
+0x05	GAP_ADTYPE_32BIT_COMPLETE
+0x06	GAP_ADTYPE_128BIT_MORE
+0x07	GAP_ADTYPE_128BIT_COMPLETE
+0x08	GAP_ADTYPE_LOCAL_NAME_SHORT
+0x09	GAP_ADTYPE_LOCAL_NAME_COMPLETE
+0x0a	GAP_ADTYPE_POWER_LEVEL
+0xff	GAP_ADTYPE_MANUFACTURER_SPECIFIC
+)
+
+(
+0 ATT_BIT_NOTIFICATION
+1 ATT_BIT_INDICATION
+)
+///////////////////////////////////////////////////////////////////////////////////////
+(
+13 MAX_SHUTER_KEY_NUM
+4  MAX_SHUTTER_LED_NUM
+0xFF INVALID_PIN_NUM
+)
+(
+0 KEY_DEFAULT
+1 kEY_1
+2 kEY_2
+3 KEY_3
+4 KEY_4
+)
+(
+0 HARD_SWITCH
+1 SOFT_SWITCH
+)
+(
+0 LED_OFF
+1 LED_ON
+2 LED_BLINK
+0xFF LED_INVALID
+)
+
+/*struct led_style*/
+(
+7 LED_STYLE_STRUCT_LEN
+0 LED_TYPE_OFFSET
+1 LED_PIN_OFFSET
+2 LED_ON_TIME_OFFSET
+4 LED_OFF_TIME_OFFSET
+6 LED_BLINK_COUNT_OFFSET
+)
+
+/*struct key_conf*/
+(
+2 KEY_CONF_STRUCT_LEN
+0 KEY_PIN_OFFSET
+1 KEY_STYLE_IND_OFFSET
+)
+
+(
+0 SHUTTER_POWER_UP
+1 SHUTTER_POWER_ON
+2 SHUTTER_POWER_OFF
+)
+
+(
+0x5907 le_parse_att0
+0x5656 le_prepare_smp0
+0x5666 le_prepare_att0
+0x7c67 check_51cmd_once0
+)
+
+
+(
+0xf00 EEP_LAP_ADDR
+)
+
+(
+0x33 PAIRED_DEVICE_TYPE_BT
+0x44 PAIRED_DEVICE_TYPE_BLE
+5 PAIRED_DEVICE_DEFAULT_LEN
+0x5a5a PAIRED_DEVICE_MAGIC
+)
+
+(
+0 FLAG_SHUTTER_DEFAULT
+1 FLAG_SHUTTER_IPHONEKEY_SEND
+2 FLAG_SHUTTER_ANDROIDKEY_SEND
+)
+
+(
+0 FLAG_SHUTTER_IPHONEKEY_PRESS
+1 FLAG_SHUTTER_ANDROIDKEY_PRESS
+)
+
+(
+1  FLAG_SHUTTER_HID_DISCONN_TIMEOUT
+5 FLAG_SHUTTER_CABLE_UNPLUG_TIMEOUT
+)
+
+(
+1 FLAG_SHUTTER_1KEY
+2 FLAG_SHUTTER_2KEY
+)
+
+(
+0 FLAG_SHUTTER_1KEY_SEND_NULL
+1 FLAG_SHUTTER_1KEY_SEND_STEP1
+2 FLAG_SHUTTER_1KEY_SEND_STEP2
+3 FLAG_SHUTTER_1KEY_SEND_STEP3
+4 FLAG_SHUTTER_1KEY_SEND_STEP4
+)
+
+
+//mem_shutter_find_type_value_flag
+(
+0X00 LE_FIND_TYPE_VALUE_HID_BIT
+0X01 LE_FIND_TYPE_VALUE_BATTERY_BIT
+0X02 LE_FIND_TYPE_VALUE_DEVICE_INFO_BIT
+0x03 LE_FIND_TYPE_VALUE_GATT_BIT
+)
+
+(
+//20ms
+0x0020	FAST_ADV_INTERVAL_VALUE_PATCH
+)
+
+(
+50 TIMEOUT_DISCONNECT_TIMER
+)
+
+/* mem_le_conn_sm */
+( 
+  0x21 CONN_SM_SEND_WRITE_REQ                      
+  0x25 CONN_SM_WAIT_WRITE_RES
+  0x26 CONN_SM_WAIT_WRITE_RES1
+) 
+
+(
+6 QUEUE_ELE_COUNT_PATCH
+20 QUEUE_ELE_LENGTH_PATCH
+)
+
+(
+0x4000 mem_shutter_rx_buf
+0x4030 mem_shutter_rx_buf_end
+0x1f00 mem_shutter_tx_buf
+0x1f10 mem_shutter_tx_buf_end
+
+)
+
+(
+14 TIMER_UART_SEND_DATA_DELAY
+)
Index: Receive_Code/format/simple_pairing.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/simple_pairing.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/simple_pairing.format	(working copy)
@@ -0,0 +1,188 @@
+/* simple pairing page */
+
+memalloc(
+
+//4 mem_hci_ssp_mode
+0 mem_sp_state_start
+1 mem_sp_state
+1 mem_master_sp_state
+1 mem_sp_flag
+1 mem_master_sp_flag
+1 mem_sp_calc
+1 mem_sp_dh_ready
+1 mem_sp_localsm
+1 mem_pairing_auth
+
+0 mem_sp_flag_start
+1 mem_sp_local_key_send_count
+1 mem_sp_remote_key_recv_count
+1 mem_sp_remote_key_invalid
+1 mem_sp_dhkey_invalid
+
+
+4 mem_gkey
+
+
+8 mem_le_pubkey_remote_x_256
+0 mem_sp_pubkey_remote
+24 mem_sp_pubkey_remote_x
+0 mem_sp_pubkey_remote_x_end
+8 mem_le_pubkey_remote_y_256
+24 mem_sp_pubkey_remote_y
+
+8 mem_le_dhkey_256
+24 mem_sp_dhkey
+0 mem_sp_dhkey_end
+
+16 mem_sp_random_local
+0 mem_sp_random_local_end
+16 mem_sp_random_remote
+0 mem_sp_random_remote_end
+0 memresult
+0 mem_sp_calc_result
+4 memh
+4 memg
+4 memf
+4 meme
+0 mem_sp_calc_result_high
+4 memd
+4 memc
+4 memb
+4 mema
+16 mem_sp_check_result
+16 mem_sp_confirm_remote
+16 mem_sp_prarm_stack
+)
+
+xmemalloc(
+1 mem_sp_local_key_invalid
+
+
+32 mem_le_private_key_256
+32 mem_le_pubkey_local_x_256
+32 mem_le_pubkey_local_y_256
+
+24 mem_sp_private_key
+0 mem_sp_pubkey_local
+24 mem_sp_pubkey_local_x
+0 mem_sp_pubkey_local_x_end
+24 mem_sp_pubkey_local_y
+
+1 mem_ssp_enable
+3 mem_sp_iocap_local
+3 mem_sp_iocap_remote
+
+1 mem_flag_mode_ssp_pin
+1 mem_ssp_mode_flag
+1 mem_authentication_passkey_times
+1 mem_passkey_1bit
+1 mem_flag_pairing_state
+
+)
+/* simple pairing status flag */
+(
+  0x00   SP_FLAG_STANDBY
+  0x01   SP_FLAG_COMMIT
+  0x02   LE_SP_FLAG_COMMIT_256
+
+)
+
+/* simple pairing calc flag */
+(
+  0x00   SP_CALC_STANDBY
+  0x01   SP_CALC_PUBKEY
+  0x02   SP_CALC_DHKEY
+  0x03   SP_CALC_PUBKEY_256
+  0x04   SP_CALC_DHKEY_256
+)
+
+/* simple pairing state */
+(
+  0x00   SP_STAT_NULL
+  0x01   SP_STAT_KEY_RECV
+  0x02   SP_STAT_KEY_GENERATE
+  0x03   SP_STAT_KEY_SEND
+  0x04   SP_STAT_COMMIT_CALC
+  0x05   SP_STAT_COMMIT_SEND
+  0x06   SP_STAT_RANDOM_RECV
+  0x07   SP_STAT_RANDOM_SEND
+  0x08   SP_STAT_CONFIRM_RECV
+  0x09   SP_STAT_CONFIRM_CHECK
+  0x0A   SP_STAT_CONFIRM_CALC
+  0x0B   SP_STAT_CONFIRM_SEND
+  0x0C   SP_STAT_LINK_KEY_CALC
+  0x0F   SP_STAT_DONE
+  0x10   SP_STAT_FEATURE_EXT_SEND
+  0x11   SP_STAT_GKEY_CALC
+  /*simple pairing master only*/
+  0x12   SP_MASTER_STAT_START_SKIP
+  0x13   SP_MASTER_STAT_START_DONE
+  0x14   SP_STAT_COMMITMENT_COMPARE
+  0x15   SP_STATE_END
+)
+
+
+/* simple paring invalid flag */
+(
+  0x00   SP_KEY_INVALID
+  0x01   SP_KEY_VALID
+  0x03   SP_KEY_VALID_256
+
+)
+
+/* encapsulated defination for P-192 key */
+(
+  0x01  ENCAPSULATED_MAJOR_TYPE_P192
+  0x01  ENCAPSULATED_MINOR_TYPE_P192
+  0x30  ENCAPSULATED_LEN_P192
+)
+
+/* bluetooth 2.1 support flag */
+(
+  0x00  SIMPLE_PAIRING_ENABLE
+  0x01  ENCRYPTION_PAUSE_ENABLE
+  0x02  EXTENDED_INQUIRY_RESPOSE_ENABLE
+  0x03  SNIFF_SUBRATING_ENABLE
+)
+
+/*mem_sp_localsm*/
+(
+  0x00 DEFAULT_STATEMACHINE
+  0x01 LOCAL_STATEMACHINE
+)
+
+(
+ 0x00 DEFALT_PAIRING_AUTH
+ 0x01 PAIRING_AUTH
+)
+
+(
+1 SSP_MODE_SSP_PIN_FLAG
+2 SSP_MODE_PASSKEY_ENTRY_FLAG
+3 SSP_MODE_JUST_WORK_FLAG
+)
+
+(//ssp mode
+0x040003 SSP_MODE_JUST_WORK_IO_CAP_DATA
+0X040001 SSP_MODE_SSP_PIN_IO_CAP_DATA
+0X040002 SSP_MODE_PASSKEY_IO_CAP_DATA
+)
+
+(
+0x00 DISPLAY_ONLY
+0x01 DISPLAY_YESNO
+0x02 KEYBOARD_ONLY
+0x03 NO_INPUT_NO_OUTPUT
+)
+
+(
+7 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT
+6 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT
+0 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT
+)
+(
+1 FLAG_PAIRING_STATE_PAIRING
+0 FLAG_PAIRING_STATE_NOT_PAIRING
+)
+
+  
Index: Receive_Code/format/ui.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/ui.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/ui.format	(working copy)
@@ -0,0 +1,442 @@
+/*****************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                                */
+/* $Author: Administrator $                                                           */
+/* $Id: bt_ui_format.upper,v 1.1 2009-09-28 04:06:17 Administrator Exp $     */
+/************************************************************************/
+
+
+	/* ========= memory ============== */
+memalloc(
+2 mem_UI_data_txbuff_length
+
+1 mem_ipc_skip_continue_proc
+0 mem_ui_timer_temp  //length 4
+4 mem_ipc_rega_temp
+) 
+
+xmemalloc(
+//UI Work area
+1 mem_ipc_lock_bt
+1 mem_ipc_lock_c51
+8 mem_ipc_fifo_bt2c51
+8 mem_ipc_fifo_c512bt
+1 mem_led_switch
+1 mem_ui_button_timer
+1 mem_ui_button_last_state
+4 mem_ui_timer_last_btclk
+2 mem_discovery_timeout_timer_count
+1 mem_hid_handshake_timer_count
+1 memui_reconnect_mode
+2 mem_ui_state_map
+
+//UI Config area
+1 mem_ui_profile_supported
+1 mem_led_gpio
+2 mem_led_dark_time
+2 mem_led_light_time
+1 mem_led_blink_count
+1 mem_ui_button_timeout
+1 mem_ui_button_gpio
+2 mem_discovery_timeout
+1 mem_pin_length
+16 mem_pin
+
+)
+/************/
+/* constant */
+/************/
+
+//mem_ui_state_map
+(
+0 UI_STATE_BT_CONNECTED
+1 UI_STATE_BT_SETUP_COMPLETE
+2 UI_STATE_BT_HID_CONN
+3 UI_STATE_BT_HID_HANDSHAKE
+4 UI_STATE_BT_SPP_CONN
+5 UI_STATE_BT_SNIFF
+6 UI_STATE_BT_DISCOVERY
+7 UI_STATE_BT_RECONNECT
+8 UI_STATE_BT_SLAVE_ROLE
+9 UI_STATE_BLE_CONNECTED
+10 UI_STATE_BLE_WRITE_RCV
+11 UI_STATE_BLE_ADV
+12 UI_STATE_BTN_DOWN
+13 UI_STATE_LED_BLINK
+14 UI_STATE_LED_ON
+)
+(
+0xFF LED_FLASH_INFINITE
+)
+
+(
+1 UI_STATE_SPP_NL_AUTO_DISCOVER
+
+)
+
+/* UI state for Headset (memui_HS_State) */ 
+   (
+    0 UI_HEADSET_DISCONNECT
+    1 UI_HEADSET_IDLE                   /* before the responsor HS receive SABM      */
+    2 UI_HEADSET_W4CONNECT
+    3 UI_HEADSET_RINGING
+    4 UI_HEADSET_CONNECTED
+    5 UI_HEADSET_PARING
+  )
+/* memui_BB_State */
+(
+  0 UI_BB_OFF
+  1 UI_BB_IDLE
+  2 UI_BB_DISCOVERY
+  3 UI_BB_CONNECTED_ACTIVE_NO_SCO
+  4 UI_BB_CONNECTED_ACTIVE_WITH_SCO
+  5 UI_BB_CONNECTED_ACTIVE_WAIT_SNIFF
+  6 UI_BB_CONNECTED_SNIFF
+  7 UI_BB_RECONNECT
+  8 UI_BB_CONNECTED_SNIFF_WITH_SCO
+)
+
+/************/
+/* flags    */
+/************/
+  
+/* memui_Misc_Flags */
+  (
+    5 NO_IDLE_TURN_OFF
+    7 ANSWER_RING_FLAG               /* 1 Answer,0 no*/
+  )
+
+/* mem_UI_SCH_Interface */
+  (
+    0  UI_HS_PAIRING 
+    2  UI_REQ_CLOSE_RFCOMM
+    3  UI_LINK_LOST
+    4  UI_REQ_OPEN_SCO
+    6  UI_REQ_CLOSE_SCO
+  )
+  
+/* memui_PassOverKey */
+  (
+    0  ANSWER_RING_BIT
+    0  AG_SEND_RING_BIT
+    1  VOL_UP_BIT
+    2  VOL_DOWN_BIT
+    3  INI_CALL_BIT
+    4  DAIL_LAST_CALL
+    5  END_CALL_BIT
+    6  NOKIA_VOICE_ACTIVE 
+    7  REJECT_CALL_BIT
+  )
+  
+/* memui_reconnect_mode */
+(
+  0 NO_RECONNECTION
+  1 RECONNECT_HID
+  2 RECONNECT_HF
+  3 RECONNECT_HS
+  4 RECONNECT_HID_HF
+  5 RECONNECT_HID_HS
+)
+/* memui_Commands */
+(
+0 BT_CMD_STANDBY
+1 BT_CMD_START_DISCOVERY
+2 BT_CMD_STOP_DISCOVERY
+3 BT_CMD_RECONNECT
+4 BT_CMD_DISCONNECT
+5 BT_CMD_ENTER_SNIFF
+6 BT_CMD_EXIT_SNIFF
+7 BT_CMD_ENTER_SNIFF_SUBRATING
+8 BT_CMD_EXIT_SNIFF_SUBRATING
+9 BT_CMD_SNIFF_TEST
+10 BT_CMD_SET_PIN_CODE
+11 BT_CMD_START_INQUIRY
+12 BT_CMD_STOP_INQUIRY
+13 BT_CMD_START_ADV
+14 BT_CMD_STOP_ADV
+15 BT_CMD_START_DIRECT_ADV
+16 BT_CMD_STOP_DIRECT_ADV
+17 BT_CMD_LE_DISCONNECT
+18 BT_CMD_LE_UPDATE_CONN
+19 BT_CMD_LED_OFF
+20 BT_CMD_LED_ON
+21 BT_CMD_LED_BLINK
+22 BT_CMD_LE_START_CONN
+23 BT_CMD_LE_START_SCAN
+24 BT_CMD_LE_STOP_SCAN
+25 BT_CMD_ENTER_HIBERNATE
+27 BT_CMD_LE_SMP_SECURITY_REQUEST
+28 BT_CMD_LE_START_WRITE
+29 BT_CMD_ROLE_SWITCH
+30 BT_CMD_BB_RECONN_CANCEL
+31 BT_CMD_STORE_RECONN_INFO_LE
+32 BT_CMD_STORE_RECONN_INFO_BT
+33 BT_CMD_DHKEY_NOT_ACCEPT
+34 BT_CMD_START_24G
+35 BT_CMD_STOP_24G
+36 BT_CMD_PAIR_24G
+)
+
+(
+0x00 BT_EVT_NULL
+0x01 BT_EVT_BB_CONNECTED
+0x02 BT_EVT_BB_DISCONNECTED
+0x03 BT_EVT_RECONN_STARTED
+0x04 BT_EVT_RECONN_FAILED
+0x05 BT_EVT_SETUP_COMPLETE
+0x06 BT_EVT_HID_CONNECTED
+0x07 BT_EVT_HID_DISCONNECTED
+0x08 BT_EVT_SPP_CONNECTED
+0x09 BT_EVT_SPP_DISCONNECTED
+0x0A BT_EVT_PINCODE_REQ
+0x0B BT_EVT_ENTER_SNIFF
+0x0C BT_EVT_EXIT_SNIFF
+0x0D BT_EVT_ENTER_SNIFF_SUB
+0x0E BT_EVT_EXIT_SNIFF_SUB
+0x0F BT_EVT_DISCOVERY_STOPED
+0x10 BT_EVT_BUTTON_LONG_PRESSED
+0x12 BT_EVT_HID_HANDSHAKE
+0X13 BT_EVT_RECONN_PAGE_TIMEOUT
+0x14 BT_EVT_LE_CONNECTED
+0X15 BT_EVT_LE_DISCONNECTED
+0x16 BT_EVT_ML2CAP_CONN_REFUSED
+0x17 BT_EVT_BUTTON_ENTER_HIBERNATE
+0x18 BT_EVT_LINKKEY_GENERATE
+0x19 BT_EVT_SWITCH_NOT_ACCEPT
+0x20 BT_EVT_SWITCH_ACCEPT
+0x21 BT_EVT_SNIFF_NOT_ACCEPT
+0x22 BT_EVT_SNIFF_ACCEPT
+0x23 BT_EVT_UNSNIFF_ACCEPT
+0x24 BT_EVT_UNSNIFF_NOT_ACCEPT
+0x25 BT_EVT_BUTTON_ADJUST_DPI
+0x26 BT_EVT_SEND_UNSNIFF_ACCEPT
+0x27 BT_EVT_VIRTUAL_CABLE_UNPLUG
+0x28 BT_EVT_LE_WRITE_REQUEST
+0x29 BT_EVT_LE_ENC_INFO
+0x2a BT_EVT_SWITCH_FAIL_MASTER
+0x2b BT_EVT_SWITCH_SUCCESS_MASTER
+0x2c BT_EVT_BUTTON_DOWN
+0x2d BT_EVT_BUTTON_UP
+0x2e BT_EVT_REMOTE_UNSNIFF
+0x30 BT_EVT_LE_PAIRING_FAIL
+0x31 BT_EVT_LE_PAIRING_SUCCESS
+0x32 BT_EVT_LE_START_ENC
+0X33 BT_EVT_LE_PAUSE_ENC
+0X34 BT_EVT_LE_TK_GENERATE
+0x35 BT_EVT_BT_GKEY_GENERATE
+0x36 BT_EVT_BT_GET_PASSKEY
+0x37 BT_EVT_BT_PAIRING_FAIL
+0x38 BT_EVT_BT_PAIRING_SUCCESS
+0x39 BT_EVT_24G_PAIRING_COMPLETE
+0x3a BT_EVT_24G_ATTEMPT_FAIL
+0x50 BT_EVT_TIMER_INIT
+0xF0 BT_EVT_TIMER_MASK
+0x51 BT_EVT_TIMER_100MS
+0x52 BT_EVT_TIMER_200MS
+0x53 BT_EVT_TIMER_300MS
+0x54 BT_EVT_TIMER_400MS
+0x55 BT_EVT_TIMER_500MS
+0x56 BT_EVT_TIMER_600MS
+0x57 BT_EVT_TIMER_700MS
+0x58 BT_EVT_TIMER_800MS
+0x59 BT_EVT_TIMER_900MS
+0x5A BT_EVT_TIMER_1KMS
+0x5B BT_EVT_TIMER_1K1MS
+0x5C BT_EVT_TIMER_1K2MS
+0x5D BT_EVT_TIMER_1K3MS
+0x5E BT_EVT_TIMER_1K4MS
+0x5F BT_EVT_TIMER_1K5MS
+)
+//switch
+(
+0 OFF
+1 ON
+)
+/* memui_mem_lock */
+(
+    0 MEM_UNLOCK
+    1 MEM_LOCK
+)
+/* memui_flag0 */
+(
+    0 UI_USER_DATA_FLAG
+    1 UI_WII_WAITING_SLEEP
+    2 UI_KEYBOARD_SNIFF_SKIP
+)
+/* mem_master_type */
+(
+    0 MTYPE_HID_DEFAULT
+    1 MTYPE_HID_SSP
+    2 MTYPE_SPP
+)
+
+	(	
+	0x01 RECIEVE_SDP_CONN_RES
+	0x02 RECIEVE_SDP_CFG_REQ
+	0x03 RECIEVE_SDP_CFG_RES
+	0x04 RECIEVE_RFCOMM_CONN_RES
+	0x05 RECIEVE_RFCOMM_CFG_REQ
+	0x06 RECIEVE_RFCOMM_CFG_RES
+	0x07 RECIEVE_HID_CTRL_CONN_RES
+	0x08 RECIEVE_HID_CTRL_CFG_REQ
+	0x09 RECIEVE_HID_CTRL_CFG_RES
+	0x0A RECIEVE_HID_INT_CONN_RES
+	0x0B RECIEVE_HID_INT_CFG_REQ
+	0x0C RECIEVE_HID_INT_CFG_RES
+	0x0D RECIEVE_AVCTP_CONN_RES
+	0x0E RECIEVE_AVCTP_CFG_REQ
+	0x0F RECIEVE_AVCTP_CFG_RES
+	0x10 RECIEVE_AVDTP_SIGNAL_CONN_RES
+	0x11 RECIEVE_AVDTP_SIGNAL_CFG_REQ
+	0x12 RECIEVE_AVDTP_SIGNAL_CFG_RES
+	0x13 RECIEVE_AVDTP_MEDIA_CONN_RES
+	0x14 RECIEVE_AVDTP_MEDIA_CFG_REQ
+	0x15 RECIEVE_AVDTP_MEDIA_CFG_RES
+	0x16 RECIEVE_SS_REASULT_HS                  
+	0x17 RECIEVE_SS_REASULT_HF                  
+	0x18 RECIEVE_SS_REASULT_AVTARG		          
+	0x19 RECIEVE_SS_REASULT_OBEX		            
+	0x1A RECIEVE_DLCI0_UA
+	0x1B RECIEVE_HS_PARAM_NEG_RES
+	0x1C RECIEVE_HS_UA
+	0x1D RECIEVE_HS_MODEM_STATUS_RES
+	0x1E RECIEVE_HS_MODEm_STATUS_CMD
+	0x1F RECIEVE_HF_PARAM_NEG_RES   
+	0x20 RECIEVE_HF_UA              
+	0x21 RECIEVE_HF_MODEM_STATUS_RES
+	0x22 RECIEVE_HF_MODEm_STATUS_CMD 
+	0x23 RECIEVE_OBEX_PARAM_NEG_RES     
+	0x24 RECIEVE_OBEX_UA              
+	0x25 RECIEVE_OBEX_MODEM_STATUS_RES
+	0x26 RECIEVE_OBEX_MODEm_STATUS_CMD    
+	0x27 RECIEVE_SPP_PARAM_NEG_RES   
+	0x28 RECIEVE_SPP_UA              
+	0x29 RECIEVE_SPP_MODEM_STATUS_RES
+	0x2A RECIEVE_SPP_MODEm_STATUS_CMD
+	0x2b RECIEVE_SDP_DISCONN_RES
+	)
+
+
+
+	(
+	0 UPPERSM_RP_IDLE
+	1 UPPERSM_RP_SDP_CONN
+	2 UPPERSM_RP_SDP_CONN_WAIT
+	3 UPPERSM_RP_SDP_CFG
+	4 UPPERSM_RP_SDP_CFG_WAIT
+	5 UPPERSM_RP_SS_AVTARG
+	6 UPPERSM_RP_SS_AVTARG_WAIT
+	7 UPPERSM_RP_SS_OBEX
+	8 UPPERSM_RP_SS_OBEX_WAIT
+	9 UPPERSM_RP_SDP_DISCONN
+	10 UPPERSM_RP_SDP_DISCONN_WAIT
+	11 UPPERSM_RP_AVDTP_CONN_WAIT
+	12 UPPERSM_RP_AVCTP_CONN
+	13 UPPERSM_RP_AVCTP_CONN_WAIT
+	14 UPPERSM_RP_AVCTP_CFG
+	15 UPPERSM_RP_AVCTP_CFG_WAIT
+	16 UPPERSM_RP_OBEX_CMD_PN
+	17 UPPERSM_RP_OBEX_CMD_PN_WAIT
+	18 UPPERSM_RP_OBEX_SABM
+	19 UPPERSM_RP_OBEX_SABM_WAIT
+	20 UPPERSM_RP_OBEX_CMD_MS
+	21 UPPERSM_RP_OBEX_CMD_MS_WAIT
+	)
+	(		/*mem_upper_sm_reconn*/
+	0 UPPERSM_RECONN_IDLE		
+	1 UPPERSM_RECONN_SDP_CONN		
+	2 UPPERSM_RECONN_SDP_CONN_WAIT		
+	3 UPPERSM_RECONN_SDP_CFG		
+	4 UPPERSM_RECONN_SDP_CFG_WAIT		
+	5 UPPERSM_RECONN_SS_HS
+	6 UPPERSM_RECONN_SS_HS_WAIT
+	7 UPPERSM_RECONN_SS_HF
+	8 UPPERSM_RECONN_SS_HF_WAIT
+	9 UPPERSM_RECONN_SS_AVTARG		
+	10 UPPERSM_RECONN_SS_AVTARG_WAIT		    
+	11 UPPERSM_RECONN_SS_OBEX		            
+	12 UPPERSM_RECONN_SS_OBEX_WAIT		      
+	13 UPPERSM_RECONN_SDP_DISCONN		        
+	14 UPPERSM_RECONN_SDP_DISCONN_WAIT      
+	15 UPPERSM_RECONN_HID_CTRL_CONN		      
+	16 UPPERSM_RECONN_HID_CTRL_CONN_WAIT		
+	17 UPPERSM_RECONN_HID_CTRL_CFG		      
+	18 UPPERSM_RECONN_HID_CTRL_CFG_WAIT     
+	19 UPPERSM_RECONN_HID_INT_CONN		      
+	20 UPPERSM_RECONN_HID_INT_CONN_WAIT		  
+	21 UPPERSM_RECONN_HID_INT_CFG		        
+	22 UPPERSM_RECONN_HID_INT_CFG_WAIT      
+	23 UPPERSM_RECONN_RFCOMM_CONN		        
+	24 UPPERSM_RECONN_RFCOMM_CONN_WAIT		  
+	25 UPPERSM_RECONN_RFCOMM_CFG		        
+	26 UPPERSM_RECONN_RFCOMM_CFG_WAIT       
+	27 UPPERSM_RECONN_RFCOMM_SABM		        
+	28 UPPERSM_RECONN_RFCOMM_SABM_WAIT		  
+	29 UPPERSM_RECONN_SPP_CMD_PN		        
+	30 UPPERSM_RECONN_SPP_CMD_PN_WAIT		    
+	31 UPPERSM_RECONN_SPP_SABM		          
+	32 UPPERSM_RECONN_SPP_SABM_WAIT		      
+	33 UPPERSM_RECONN_SPP_CMD_MS		        
+	34 UPPERSM_RECONN_SPP_CMD_MS_WAIT       
+	35 UPPERSM_RECONN_HF_CMD_PN		          
+	36 UPPERSM_RECONN_HF_CMD_PN_WAIT		    
+	37 UPPERSM_RECONN_HF_SABM		            
+	38 UPPERSM_RECONN_HF_SABM_WAIT		      
+	39 UPPERSM_RECONN_HF_CMD_MS		          
+	40 UPPERSM_RECONN_HF_CMD_MS_WAIT        
+	41 UPPERSM_RECONN_AVDTPs_CONN		        
+	42 UPPERSM_RECONN_AVDTPs_CONN_WAIT		  
+	43 UPPERSM_RECONN_AVDTPs_CFG		        
+	44 UPPERSM_RECONN_AVDTPs_CFG_WAIT       
+	45 UPPERSM_RECONN_AVDTPm_CONN		        
+	46 UPPERSM_RECONN_AVDTPm_CONN_WAIT		  
+	47 UPPERSM_RECONN_AVDTPm_CFG		        
+	48 UPPERSM_RECONN_AVDTPm_CFG_WAIT       
+	49 UPPERSM_RECONN_AVCTP_CONN		        
+	50 UPPERSM_RECONN_AVCTP_CONN_WAIT		    
+	51 UPPERSM_RECONN_AVCTP_CFG		          
+	52 UPPERSM_RECONN_AVCTP_CFG_WAIT		    
+	53 UPPERSM_RECONN_OBEX_CMD_PN		        
+	54 UPPERSM_RECONN_OBEX_CMD_PN_WAIT		  
+	55 UPPERSM_RECONN_OBEX_SABM		          
+	56 UPPERSM_RECONN_OBEX_SABM_WAIT		    
+	57 UPPERSM_RECONN_OBEX_CMD_MS		        
+	58 UPPERSM_RECONN_OBEX_CMD_MS_WAIT     
+	59 UPPERSM_RECONN_SS_SPP
+	60 UPPERSM_RECONN_SS_SPP_WAIT
+	)
+	(/*mem_UI_profile_supported*/
+	0 support_HID
+	1 support_A2DP
+	2 support_AVRCP
+	3 support_HF
+	4 support_HS
+	5 support_PBAP
+	6 support_SPP
+	)
+	/*mem_upper_sm_ss*/
+	(
+	0 UPPERSM_SS_HS
+	1 UPPERSM_SS_HF
+	2 UPPERSM_SS_AVTARG
+	3 UPPERSM_SS_OBEX
+	)
+
+	(
+	160 UI_HUNDRED_MILLISECOND_TIME
+	0XFF UI_BUTTON_GPIO_DISABLE
+	)
+	(
+	0x01 UI_BB_INCONNECT
+	0x10 UI_BB_DISCONNECT
+	)
+(
+0x00 UI_BUTTON_STATE_DOWN
+0x01 UI_BUTTON_STATE_UP
+)
+
+//mem_ipc_skip_continue_proc
+(
+	0 IPC_CONTINUE_PROCESS
+	1 IPC_SKIP_CONTINUE_PROCESS
+)
+
Index: Receive_Code/format/utility.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/utility.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/utility.format	(working copy)
@@ -0,0 +1,100 @@
+/**
+*  @file:bt_utility_format.upper
+*  @author: lei.zhu
+*  utility header file. inlcude timer
+*  Copyright:  (C)Hanlynn Technology    
+*/
+
+memalloc(
+
+/*
+    temp parameter
+*/
+2 mem_hold_contr
+2 mem_hold_contw
+1 mem_fifo_temp
+
+8 mem_pdatatemp
+8 mem_temp //8 bytes
+4 mem_timeup // 4 bytes
+4 mem_rega //4 bytes
+4 mem_regb //4 bytes
+3 mem_regc //3 bytes
+2 mem_contr //2 bytes
+2 mem_contw //2 bytes
+
+0 mem_le_data_len_temp	//1byte
+0 mem_tx_fifo_map_temp
+0 mem_rpn_dlci		//1byte
+0 mem_event_cmd_response_content	//2byte
+0 mem_le_prand		//16byte
+0 mem_AES_CMAC_k	 //16 bytes
+0 mem_regext_index 	//1 bytes
+1 mem_temp_block0
+0 mem_le_data_temp	//15bytes
+15 mem_temp_block1
+0 mem_le_aes_128	//16byte
+0 mem_regext   //64 bytes
+0 mem_AES_CMAC_k1  //16 bytes
+16 mem_temp_block2
+0 mem_AES_CMAC_k2  //16 bytes
+16 mem_temp_block3
+0 mem_AES_CMAC_temp  // 16 bytes
+16 mem_temp_block4
+0 mem_AES_CMAC_M_last // 16 bytes
+16 mem_temp_block5
+0 mem_le_mackey //16 bytes
+16 mem_temp_block6
+
+200 mem_temp_prepare_write_request
+)
+
+
+(
+/*mem_util_timer_flag0_7*/
+    0   UTIL_TIMER_0_USED
+    1   UTIL_TIMER_1_USED
+    2   UTIL_TIMER_2_USED
+    3   UTIL_TIMER_3_USED
+    4   UTIL_TIMER_4_USED
+    5   UTIL_TIMER_5_USED
+    6   UTIL_TIMER_6_USED
+    7   UTIL_TIMER_7_USED
+/*mem_util_timer_flag8_15*/
+    0   UTIL_TIMER_8_USED
+    1   UTIL_TIMER_9_USED
+    2   UTIL_TIMER_10_USED
+    3   UTIL_TIMER_11_USED
+    4   UTIL_TIMER_12_USED
+    5   UTIL_TIMER_13_USED
+    6   UTIL_TIMER_14_USED
+    7   UTIL_TIMER_15_USED
+)
+
+//util fifo param
+(
+
+8 UTIL_FIFO_LEN
+-1 UTIL_FIFO_OFFSET
+)
+
+memalloc(
+0 mem_kb_map2_temp_start
+3 mem_kb_map2_vk
+3 mem_kb_current_vk
+1 mem_kb_vk_offset
+1 mem_kb_vk_processed_cnt
+2 mem_kb_map2_current_cell_ptr
+1 mem_kb_device_button
+8 mem_table_temp0
+8 mem_table_temp1
+0 mem_kb_map2_temp_end
+
+
+1 mem_check_count
+1 mem_store_key_count
+4 mem_kb_gpio_val
+
+
+)
+
Index: Receive_Code/format/var.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/var.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/format/var.format	(working copy)
@@ -0,0 +1,442 @@
+/************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                           */
+/* $Author: Administrator $                                                     */
+/* $Id: bt_var.osi,v 1.1 2009-09-28 04:06:18 Administrator Exp $   */
+/* Orisil Technology                                                 */
+/************************************************************************/
+
+
+/* packet types */
+(
+  0x02 FHS_PACKET 
+  0x03 DM1_PACKET 
+  0x03 DM1_LMP_PACKET 
+  0x04 DH1_PACKET 
+  0x05 HV1_PACKET 
+  0x06 HV2_PACKET 
+  0x07 HV3_PACKET 
+  0x08 DV_PACKET 
+  0x09 AUX1_PACKET 
+  0x0a DM3_PACKET 
+  0x0b DH3_PACKET 
+  0x0e DM5_PACKET 
+  0x0f DH5_PACKET 
+)
+
+
+/* mem_lmp_respond */
+(
+  0 RESPOND_TO_ALL
+  1 PASS_EVERYTHING
+  2 PASS_ONLY_UNKNOWNS
+  3 RESPOND_TO_LMPS
+)
+/* SCO algorithm defines */
+(
+  0 ULAW
+  1 ALAW
+  2 CVSD
+)
+/* encryption modes */
+(
+  0 NO_ENCRYPTION
+  1 PT_PT_ENCRYPTION
+  2 PT_BROADCAST_ENCRYPTION
+)
+
+/* bits used in mem_lmp_state1 variable */
+(
+  0 LMP_STATE_DETACH
+  1 LMP_STATE_HOLD
+  2 LMP_STATE_SNIFF
+  3 LMP_STATE_PARK
+  4 LMP_STATE_WAIT_SCO_CREATE
+  5 LMP_STATE_WAIT_SCO_KILL
+  6 LMP_STATE_SCO3
+  7 LMP_STATE_WAIT_SCO_START
+)
+/* mem_lmp_state2 */
+(
+  0 LMP_WAIT_FOR_SNIFF_ACCEPT
+  1 LMP_WAIT_FOR_PARK_ACCEPT
+  2 LMP_SEND_UNPARK_ACCEPTED
+  3 LMP_SEND_ENCRYPTION_START
+  4 LMP_SEND_ENCRYPTION_STOP
+  5 MESSAGE_QUEUE
+  7 LMP_STATE_WAIT_BEACON
+)
+/* mem_lmp_state3 */
+(
+ 0 INQUIRY_STATE_CHECK
+ 1 HOST_DELAY_MESSAGE
+ 2 VARIABLE_DELAY
+ 3 TEST_MODE_START_LOOPBACK
+ 4 TEST_MODE_START_PATTERN
+ 5 PARSE_TEST_CONTROL_MESSAGE
+ 6 H_AUTH_SEND_COMB_KEY
+)
+/* mem_rx_status */
+(
+  0 FROM_MASTER
+)
+/* mem_ms_flag */
+(
+  0 MS_RECEIVE_SWITCH_REQ
+  1 MS_SEND_SETUP_COMPLATE
+)
+/* mem_conn_sm */
+(
+  0 CONN_SM_STANDBY
+  1 CONN_SM_WAIT_PAGE
+  2 CONN_SM_SEND_FEATURES
+  3 CONN_SM_WAIT_FEATURES_RES
+  4 CONN_SM_SEND_CONN_REQ
+  5 CONN_SM_WAIT_CONN_ACCEPT
+  6 CONN_SM_AUTH_PAIR
+  7 CONN_SM_AUTH_PAIR_WAIT
+  8 CONN_SM_WAIT_MUTAL_AUTH
+  9 CONN_SM_ENCRYPT
+  0xa CONN_SM_ENCRYPT_WAIT
+  0xb CONN_SM_ENCRYPT_WAIT_CLEAR
+  0xc CONN_SM_SEND_SETUP_COMPLETE
+  0xd CONN_SM_WAIT_SETUP_COMPLETE 
+  0xe CONN_SM_SEND_SWITCH
+  0xf CONN_SM_DETACH_DELAY
+  0x10 CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION
+  0x11 CONN_SM_DELAY_RESTART_CONNECTION
+  0x12 CONN_SM_SEND_VERSION
+  0X13 CONN_SM_WAIT_VERSION
+  0x14 CONN_SM_SEND_FEATURES_EXT
+  0x15 CONN_SM_WAIT_FEATURES_EXT
+  0x16 CONN_SM_PAIRING
+  0x17 CONN_SM_AUTH
+  0x18 CONN_SM_PAIRING_WAIT
+  0x19 CONN_SM_AUTH_WAIT
+  0x1a CONN_SM_DONE
+  0x1b CONN_SM_WAIT_DONE
+)
+
+/* btStateConn1 */
+(
+  0 CONN_STANDBY
+  1 CONN_MASTER_SEND_CONN_REQ
+  2 CONN_MASTER_WAIT_FOR_CONN_ACCEPTED
+  3 CONN_MASTER_AUTH
+  4 CONN_MASTER_WAIT_FOR_FEATURES
+  5 CONN_MASTER_WAIT_FOR_SETUP_COMPLETE
+  6 CONN_MASTER_WAIT_FOR_MAX_SLOT
+  7 CONN_SLAVE_CONN_REQUESTED
+  8 CONN_SLAVE_WAIT_FOR_SETUP_COMPLETE
+  9 CONN_SLAVE_AUTH
+  10 CONN_USING_HOST_OPCODE
+  11 CONN_SLAVE_AUTH_WAIT
+  12 CONN_SLAVE_ENCRYPT_WAIT
+)
+
+/* mem_lmp_conn_state */
+(
+  0 RECEIVED_CONN_REQ
+  1 SENT_CONN_REQ
+  2 RECEIVED_SETUP_COMPLETE
+  3 SENT_SETUP_COMPLETE
+  4 HOST_CONNECTION_MADE
+  6 INIT_COMPLETE
+  7 SNIFF_NEGOTIATE
+)
+/* btStateAuth1 */
+(
+  0 WAIT_FOR_KINIT
+  1 WAIT_FOR_LKA
+  2 WAIT_FOR_LKB
+  3 WAIT_FOR_SRES
+  4 EXAMINE_RECEIVED_SRES
+  5 SEND_AU_RAND
+  6 WAIT_FOR_KC
+  7 DELAYED_ENCRYPT_RESPONSE
+)
+/* btStateAuth2 */
+(
+  0 SENT_SRES
+  1 RECEIVED_IN_RAND
+  2 SENT_AU_RAND
+  3 AUTHENTICATION_FAILED
+  4 AUTHENTICATION_PASSED
+  5 STARTED_AUTH
+  6 SENT_COMB_KEY
+  7 SENT_IN_RAND
+)
+/* btStateAuth3 */
+(
+  0 RECEIVED_AU_RAND
+  1 RECEIVED_SRES
+  2 MUTUALLY_AUTHENTICATE
+)
+/* btStateHost */
+(
+  0 H_AUTH_STARTED
+  2 H_ENCRYPTION_MODE_REQ_PT
+  3 H_ENCRYPTION_KEY_SIZE
+  4 H_ENCRYPTION_START
+  5 H_ENCRYPTION_STOP
+  6 H_AUTH_SECOND_TRY
+)
+/* btStateEncrypt2 */
+(
+  0 RECEIVED_ENCRYPT_MODE_REQ_PT
+  1 RECEIVED_ENCRYPT_KEY_SIZE
+  2 RECEIVED_ENCRYPT_START
+  3 RECEIVED_ENCRYPT_STOP
+  4 STARTED_ENCRYPT_START
+)
+/* mem_ms_state */
+(
+  0x00 MS_STANDBY
+  0x11 M_MINIT_1
+  0x12 M_MINIT_2
+  0x20 M_SINIT_0
+  0x30 S_MINIT_0
+  0x31 S_MINIT_1
+  0x32 S_MINIT_2
+  0x41 S_SINIT_1
+  0x42 S_SINIT_2
+  0x43 S_SINIT_3
+)
+/* mem_test_mode */
+(
+  0 TEST_MODE_ALLOWED
+  1 TEST_MODE_ACTIVE
+)
+/* values for mem_tester_emulate */
+(
+  0x00 NO_TEST_MODE
+  0x00 CONTINUOUS_TRANSMIT
+  0x10 TRANSMIT_TEST
+  0x08 LOOPBACK
+)
+
+/* mem_tx_misc */
+(
+  1 SEND_TX_ADDR
+)
+/* BBHWREG_page_stat */
+(
+  5 PAGE_MODE_END
+)
+/* host_return_parameters_status codes */
+(
+  0x00 HOST_RETURN_SUCCESS
+  0x01 HOST_RETURN_SLAVE_CANT_ISSUE
+  0x02 HOST_RETURN_NO_CONNECTION
+  0x04 HOST_RETURN_PAGE_TIMEOUT
+  0x05 HOST_RETURN_INQUIRY_TIMEOUT
+  0x08 HOST_RETURN_CONNECTION_TIMEOUT
+  0x09 HOST_RETURN_MAX_NUM_CONNECTIONS
+  0x0a HOST_RETURN_MAX_NUM_SCO
+  0x0b HOST_RETURN_MAX_NUM_ACL
+  0x0c HOST_RETURN_SECURITY_REASONS
+  0x10 HOST_RETURN_HOST_TIMEOUT
+  0x11 HOST_RETURN_UNSUPPORTED_FEATURE_PARAMETER
+  0x13 HOST_RETURN_OTHER_END_USER
+  0x14 HOST_RETURN_OTHER_END_LOW_RESOURCE
+  0x15 HOST_RETURN_OTHER_END_POWER_OFF
+  0x16 HOST_RETURN_LOCAL_HOST
+  0x18 HOST_RETURN_PAIRING_NOT_ALLOWED
+  0x19 HOST_RETURN_UNKNOWN_PDU
+  0x1a HOST_RETURN_UNSUPPORTED_REMOTE_FEATURE
+  0x1d HOST_RETURN_SCO_AIR_MODE_REJECTED
+  0x20 HOST_RETURN_UNSUPPORTED_LMP_VALUE
+  0x21 HOST_RETURN_AUTHENTICATION_FAILURE
+  0x22 HOST_RETURN_CHANGED_EXISTING_SCO
+  0x23 HOST_RETURN_HOST_REJECTED
+  0x24 HOST_RETURN_UNSPECIFIED_ERROR
+  0x25 HOST_RESET
+  0x26 HOST_RETURN_BAD_HANDLE
+
+  0x00 HOST_RETURN_ACCEPT_COMMAND
+  0x01 HOST_RETURN_REJECT_COMMAND
+)
+/* host_present */
+(
+  0 HOST_IS_PRESENT
+  1 BCI_IS_PRESENT
+  2 DONT_INIT_RADIO
+)
+/* mem_master_state */
+(
+  0 MASTER_STATE_STANDBY
+  1 MASTER_INQUIRY
+)
+/* misc */
+(
+  92 SECOND_SWITCH_REQ
+  93 SLAVE_DELAY_DETACH
+  94 MASTER_DELAY_DETACH
+  95 UNSNIFF_DELAY_DETACH
+  0 WE_STARTED_AS_MASTER
+  1 WE_STARTED_AS_SLAVE
+)
+/* mem_host_commands */
+(
+  0x01 HOST_INQUIRY
+  0x02 HOST_INQUIRY_CANCEL
+  0x03 HOST_CREATE_CONNECTION
+  0x04 HOST_DISCONNECT_CONNECTION
+  0x05 HOST_ADD_SCO_REQUEST
+  0x06 HOST_REMOTE_NAME_REQUEST
+  0x07 HOST_WRITE_SUPPORTED_FEATURES
+  0x08 HOST_SET_TX_LEVEL
+  0x09 HOST_SET_RX_LEVEL
+  0x0a HOST_SNIFF_REQUEST
+  0x0b HOST_UNSNIFF_REQUEST
+  0x0c HOST_WRITE_LINK_SUPERVISION_TIMEOUT
+  0x0e HOST_WRITE_SCAN_ENABLE
+  0x0f HOST_READ_AUDIO_QUALITY
+  0x10 HOST_ENABLE_DEVICE_UNDER_TEST
+  0x14 HOST_BUTTON_CONFIGURE
+  0x15 HOST_SET_LOW_BATTERY_LEVEL
+  0x16 HOST_WRITE_LOCAL_NAME
+  0x17 HOST_WRITE_LOCAL_PIN
+  0x18 HOST_KILL_SCO_REQUEST
+  0x19 HOST_QOS_REQ
+
+  0x1a HOST_FEATURES_REQUEST
+  0x1b HOST_VERSION_REQUEST
+  0x1c HOST_TIMING_REQUEST
+  0x1d HOST_CLK_OFFSET_REQUEST
+  0x1e HOST_AUTHENTICATE
+  0x1f HOST_START_ENCRYPTION
+  0x20 HOST_STOP_ENCRYPTION
+  0x21 HOST_HOLD_REQUEST
+  0x22 HOST_HOLD_FORCE
+  0x23 HOST_PARK_REQUEST
+  0x24 HOST_MOD_BEACON
+  0x25 HOST_SET_BROADCAST_SCAN_WINDOW
+  0x26 HOST_UNPARK_PM_REQUEST
+  0x27 HOST_UNPARK_BD_REQUEST
+  0x28 HOST_SLAVE_REQUEST_UNPARK
+  0x29 HOST_DECREASE_POWER_REQUEST
+  0x2a HOST_INCREASE_POWER_REQUEST
+  0x2b HOST_SEND_PREFERRED_RATE
+  0x2c HOST_MAX_SLOT_REQ
+  0x2d HOST_MAX_SLOT_FORCE
+  0x2e HOST_PAGE_MODE_REQUEST
+  0x2f HOST_PAGE_SCAN_MODE_REQUEST
+  0x30 HOST_MASTER_SLAVE_SWITCH
+  0x31 HOST_SEND_AUTO_RATE
+  0x32 HOST_PAGE_CANCEL
+  0x33 HOST_CHANGE_LINK_KEY
+  0x34 HOST_RADIO_READ
+  0x35 HOST_RADIO_WRITE
+  0x36 HOST_REMOTE_SLAVE_INIT_UNPARK_REQUESTED
+
+  0x40 HOST_REMOTE_CONNECTION_REQUESTED
+  0x41 HOST_REMOTE_DETACH
+  0x42 HOST_REMOTE_SCO_CREATE_REQUESTED
+  0x43 HOST_REMOTE_SCO_KILL_REQUESTED
+  0x44 HOST_REMOTE_PARK_REQUESTED
+  0x45 HOST_REMOTE_UNPARK_REQUESTED
+  0x46 HOST_REMOTE_SNIFF_REQUESTED
+  0x47 HOST_REMOTE_UNSNIFF_REQUESTED
+  0x48 HOST_REMOTE_HOLD_REQUESTED
+  0x49 HOST_REMOTE_AUTHENTICATION
+  0x4a HOST_REMOTE_START_ENCRYPTION_REQUESTED
+  0x4b HOST_REMOTE_STOP_ENCRYPTION_REQUESTED
+  0x4c HOST_MODE_CHANGE_EVENT
+  0x4d HOST_REMOTE_TEST_ACTIVATE
+  0x4e HOST_REMOTE_TEST_CONTROL
+  0x4f HOST_REMOTE_TIMING_REQUEST
+)
+/* BCI interface (not used if not compiled in ) */
+(
+  0x01 BCI_INQUIRY
+  0x02 BCI_INQUIRY_CANCEL
+  0x03 BCI_CREATE_CONNECTION
+  0x04 BCI_DISCONNECT
+  0x05 BCI_ADD_SCO_CONNECTION
+  0x06 BCI_REMOTE_NAME_REQUEST
+  0x07 BCI_WRITE_SUPPORTED_FEATURES
+  0x08 BCI_SET_TX_POWER_LEVEL
+  0x09 BCI_SET_RX_POWER_LEVEL
+  0x0a BCI_SNIFF_MODE
+  0x0b BCI_EXIT_SNIFF_MODE
+  0x0c BCI_WRITE_LINK_SUPERVISION_TIMEOUT
+  0x0d BCI_WRITE_PAGE_TIMEOUT
+  0x0e BCI_WRITE_SCAN_ENABLE
+  0x0f BCI_GET_AUDIO_QUALITY
+  0x10 BCI_ENABLE_DEVICE_UNDER_TEST
+  0x11 BCI_SEND_DATA
+  0x12 BCI_REGISTER_SERVICE_RECORD
+  0x13 BCI_SERVICE_SEARCH_ATTRIB_REQ
+  0x14 BCI_BUTTON_CONFIGURE
+  0x15 BCI_SET_LOW_BATTERY_LEVEL
+  0x16 BCI_WRITE_LOCAL_NAME
+  0x17 BCI_WRITE_LOCAL_PIN
+  0x18 BCI_REMOVE_SCO_CONNECTION
+  0x19 BCI_QUALITY_OF_SERVICE
+  0x40 BCI_REMOTE_CONNECTION_REQUEST
+  0x41 BCI_REMOTE_DETACH
+  0x42 BCI_REMOTE_ADD_SCO_REQUEST
+  0x43 BCI_REMOTE_REMOVE_SCO_REQUEST
+  0x44 BCI_REMOTE_PARK_REQUEST
+  0x45 BCI_REMOTE_UNPARK_REQUEST
+  0x46 BCI_REMOTE_SNIFF_REQUEST
+  0x47 BCI_REMOTE_UNSNIFF_REQUEST
+  0x48 BCI_REMOTE_HOLD_REQUEST
+  0x49 BCI_REMOTE_AUTHENTICATION_PAIRING_REQUEST
+  0x4a BCI_REMOTE_START_ENCRYPTION_REQUEST
+  0x4b BCI_REMOTE_STOP_ENCRYPTION_REQUEST
+  0x4c BCI_MODE_CHANGE_EVENT
+)
+/* mode changes */
+(
+  0 MODE_CHANGE_ACTIVE
+  1 MODE_CHANGE_SNIFFING
+  2 MODE_CHANGE_PARKED
+  3 MODE_CHANGE_HOLDING
+  4 MODE_CHANGE_SCO_ADDED
+  5 MODE_CHANGE_SCO_REMOVED
+  6 MODE_CHANGE_ACL_CONNECTION
+  7 MODE_CHANGE_DISCONNECT
+  8 MODE_CHANGE_SCO_CHANGED
+  9 MODE_CHANGE_ENCRYPTING
+  10 MODE_CHANGE_NOT_ENCRYPTING
+  11 MODE_CHANGE_BUTTON_UP
+  12 MODE_CHANGE_BUTTON_DOWN
+  13 MODE_CHANGE_BATTERY_LOW
+  14 MODE_CHANGE_RESET
+  15 MODE_CHANGE_INQUIRY_CANCELED_RMTCMD
+  16 MODE_ACTIVE_MSSWITCH_PASSED
+  17 MODE_ACTIVE_MSSWITCH_FAILED
+)
+/* mem_battery - low nibble is level information, upper nibble is status info */
+(
+  6 BATTERY_CHECK_LEVEL
+  7 BATTERY_SENT_STATUS
+)
+/* mem_radio_version */
+(
+  0x02 RADIO_2001
+  0x12 RADIO_2002
+  0x32 RADIO_2002_DDM
+  0x42 RADIO_1008A1
+  0x52 RADIO_1018A0
+)
+/* mem_slave_initiated_conn */
+(
+  0 SLAVE_INIT_AUTHENTICATION
+  1 SLAVE_INIT_ENCRYPTION
+  2 SLAVE_INIT_MASTER_SLAVE_SWITCH
+)
+/* connection_options */
+(
+  0 CONNECTION_AUTH
+  1 CONNECTION_ENCRYPT
+  2 CONNECTION_SWITCH
+  3 CONNECTION_ACL
+  4 CONNECTION_FEATURE_EXT
+)
+/* mem_debug_config */
+(
+  7 AA_INSERTION
+)
+
Index: Receive_Code/output/bt_format.meta
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/bt_format.meta	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/bt_format.meta	(working copy)
@@ -0,0 +1,7901 @@
+0x4000 mem_patch00
+0x4001 mem_patch01
+0x4002 mem_patch02
+0x4003 mem_patch03
+0x4004 mem_patch04
+0x4005 mem_patch05
+0x4006 mem_patch06
+0x4007 mem_patch07
+0x4008 mem_patch08
+0x4009 mem_patch09
+0x400a mem_patch0a
+0x400b mem_patch0b
+0x400c mem_patch0c
+0x400d mem_patch0d
+0x400e mem_patch0e
+0x400f mem_patch0f
+0x4010 mem_patch10
+0x4011 mem_patch11
+0x4012 mem_patch12
+0x4013 mem_patch13
+0x4014 mem_patch14
+0x4015 mem_patch15
+0x4016 mem_patch16
+0x4017 mem_patch17
+0x4018 mem_patch18
+0x4019 mem_patch19
+0x401a mem_patch1a
+0x401b mem_patch1b
+0x401c mem_patch1c
+0x401d mem_patch1d
+0x401e mem_patch1e
+0x401f mem_patch1f
+0x4020 mem_patch20
+0x4021 mem_patch21
+0x4022 mem_patch22
+0x4023 mem_patch23
+0x4024 mem_patch24
+0x4025 mem_patch25
+0x4026 mem_patch26
+0x4027 mem_patch27
+0x4028 mem_patch28
+0x4029 mem_patch29
+0x402a mem_patch2a
+0x402b mem_patch2b
+0x402c mem_patch2c
+0x402d mem_patch2d
+0x402e mem_patch2e
+0x402f mem_patch2f
+0x4030 mem_patch30
+0x4031 mem_patch31
+0x4032 mem_patch32
+0x4033 mem_patch33
+0x4034 mem_patch34
+0x4035 mem_patch35
+0x4036 mem_patch36
+0x4037 mem_patch37
+0x4038 mem_patch38
+0x4039 mem_patch39
+0x403a mem_patch3a
+0x403b mem_patch3b
+0x403c mem_patch3c
+0x403d mem_patch3d
+0x403e mem_patch3e
+0x403f mem_patch3f
+0x4040 mem_context
+0x4130 mem_current_amaddr
+0x4131 mem_lpm_mode
+0x4132 mem_device_option
+0x4133 mem_scan_mode
+0x4134 mem_last_clkn
+0x4138 mem_features
+0x4140 mem_lap
+0x4143 mem_uap
+0x4144 mem_nap
+0x4146 mem_npage
+0x4147 mem_glap
+0x414a mem_class
+0x414d mem_iscan_window
+0x414f mem_iscan_interval
+0x4151 mem_pscan_window
+0x4153 mem_pscan_interval
+0x4155 mem_page_interval
+0x4157 mem_page_window
+0x4159 mem_page_to
+0x415b mem_inq_window
+0x415d mem_fcomp_mul
+0x415e mem_fcomp_div
+0x415f mem_rx_window_init
+0x4161 mem_rx_window_sniff
+0x4163 mem_rf_init_ptr
+0x4165 mem_last_type
+0x4166 mem_last_type_esco
+0x4167 mem_last_type_saved
+0x4168 mem_retransmission_cnt
+0x416a mem_next_btclk
+0x416e mem_rf_rccal
+0x416f mem_handle_num
+0x4170 mem_max_slot
+0x4171 mem_eir_enable
+0x4172 mem_afh_instant
+0x4176 mem_afh_error_total
+0x4178 mem_afh_cfg
+0x4179 mem_afh_new_mod
+0x417a mem_afh_map_lo
+0x417f mem_afh_map_hi
+0x4184 mem_afh_used
+0x4185 mem_afh_index
+0x4187 mem_afh_map_new
+0x4192 mem_afh_map
+0x41e2 mem_afh_timer
+0x41e6 mem_afh_classify_channel_map
+0x41f0 mem_chip_functions
+0x41f2 mem_lpm_wake_lock
+0x41f4 mem_lpm_interval
+0x41f6 mem_lpm_overhead
+0x41f7 mem_lpm_hibernate_switch
+0x41f8 mem_esco_addr
+0x41f9 mem_sniff_unint_lost
+0x41fa mem_ptt
+0x41fb mem_sleep_counter//should be 0x41fc in REVC
+0x41ff mem_sleep_counter_all
+0x4203 mem_sleep_clkn
+0x4209 mem_sniff_rcv
+0x420c mem_sniff_lost
+0x420f mem_clks_per_lpo
+0x4212 mem_lpm_mult
+0x4213 mem_lpm_mult_timeout
+0x4214 mem_lpm_mult_cnt
+0x4215 mem_lpm_config
+0x4218 mem_lpm_xtalcnt
+0x4219 mem_lpm_buckcnt
+0x421a mem_lpm_ldocnt
+0x421b mem_lpm_isogate
+0x421c mem_lpm_isogate_final
+0x421d mem_saved_gpio// should be 0x421e in REVC
+0x422d mem_saved_gsel
+0x4230 mem_saved_mark
+0x4238 mem_saved_spidctrl
+0x4239 mem_patch_ptr
+0x423b mem_patch_len
+0x423d mem_timers
+0x425d mem_link_key_exists
+0x425e mem_link_key_eeprom_head
+0x4261 mem_link_key
+0x4271 mem_hci_cmd
+0x4272 mem_hci_conn_handle
+0x4273 mem_hci_plap
+0x4276 mem_hci_puap
+0x4277 mem_hci_pnap
+0x4279 mem_uartd_rxitems_got_data
+0x427a mem_uartd_rxitems_threshold
+0x427b mem_uartd_rx_timeout
+0x427d mem_tx_lch
+0x427e mem_tx_len
+0x4280 mem_tx_power
+0x4281 mem_context_number
+0x4282 mem_rf_init_data
+0x4283 mem_app_handshake_flag
+0x4284 mem_sniff_param_interval
+0x4286 mem_sniff_param_attempt
+0x4288 mem_sniff_param_timeout
+0x428a mem_cb_check_wakelock
+0x428c mem_cb_before_hibernate
+0x428e mem_cb_before_lpm
+0x4290 mem_cb_le_process
+0x4292 mem_cb_bt_process
+0x4294 mem_cb_idle_process
+0x4296 mem_cb_bb_event_process
+0x4298 mem_cb_discovry_timeout
+0x429a mem_cb_att_write
+0x429c mem_cb_update_notify_value
+0x429e mem_cb_update_notify_continue
+0x42a0 mem_cb_event_timer
+0x42a2 mem_cb_le_set_mult
+0x42a4 mem_cb_bt_set_mult
+0x42a6 mem_soft_version_num
+0x42a8 mem_eeprom_base
+0x42aa mem_unsniff2sniff_timer_count
+0x42ab mem_wake_up_delay_timer
+0x42ac mem_app_connection_options
+0x42ad mem_app_disconn_reason
+0x42af mem_app_disconn_reason_flag
+0x42b1 mem_lpm_delay_after_sniff
+0x42b5 mem_xrecord_mode
+0x42b6 mem_eeprom_block_size
+0x42b8 mem_wakup_from_power_flag
+0x42b9 mem_spi_init_clk
+0x42ba mem_spi_init_delay_time
+0x42bb mem_spi_ncs_gpio
+0x42bc mem_nv_data_ptr
+0x42be mem_nv_data_number
+0x42bf mem_0_5_adc_io_data
+0x42c1 mem_1v_adc_hvin_data
+0x42c3 mem_2v_adc_vinlpm_data
+0x42c5 mem_1v_adc_io_data
+0x42c7 mem_5v_adc_hvin_data
+0x42c9 mem_3v_adc_vinlpm_data
+0x42cb mem_otp_adc_flag
+0x42cd mem_reference_voltage
+0x42cf mem_adc_config_flag
+0x42d0 mem_adc_channel
+0x42d1 mem_adc_current_value
+0x42d3 mem_baud
+0x42d5 mem_hci_lt_rx_state
+0x42d6 mem_l2cap_xmem_start
+0x42d6 mem_l2cap_tx_multi_offset//0 means single packet
+0x42d8 mem_sdp_remote_cid
+0x42da mem_rfcomm_remote_cid
+0x42dc mem_hid_ctrl_remote_cid
+0x42de mem_hid_int_remote_cid
+0x42e0 mem_sdp_state
+0x42e1 mem_rfcomm_state
+0x42e2 mem_hid_control_state
+0x42e3 mem_hid_interrupt_state
+0x42e4 mem_spp_state
+0x42e5 mem_ML2CAP_comm_id
+0x42e6 mem_used_map
+0x42e7 mem_tx_fifo0
+0x42e7 mem_tx_fifo0_map
+0x42e8 mem_tx_fifo0_ptr
+0x42ea mem_tx_fifo1
+0x42ea mem_tx_fifo1_map
+0x42eb mem_tx_fifo1_ptr
+0x42ed mem_tx_fifo2
+0x42ed mem_tx_fifo2_map
+0x42ee mem_tx_fifo2_ptr
+0x42f0 mem_tx_fifo3
+0x42f0 mem_tx_fifo3_map
+0x42f1 mem_tx_fifo3_ptr
+0x42f3 mem_tx_fifo_end
+0x42f3 mem_l2cap_lpm_txbuf
+0x43f3 mem_l2cap_flow_ctrl_flag
+0x43f4 mem_l2cap_pending_item
+0x43f5 mem_l2cap_xmem_end
+0x43f5 mem_le_dsniff
+0x43f7 mem_le_conn_interval
+0x43f9 mem_le_scan_enable
+0x43fa mem_le_scan_interval
+0x43fc mem_le_scan_window
+0x43fe mem_le_adv_led
+0x43ff mem_le_adv_enable
+0x4400 mem_le_adv_data_len
+0x4401 mem_le_adv_data
+0x4420 mem_le_scan_data_len
+0x4421 mem_le_scan_data
+0x4440 mem_le_name_len
+0x4441 mem_le_name
+0x4455 mem_le_led_on_time
+0x4456 mem_le_new_map
+0x445b mem_le_new_param
+0x445b mem_le_new_transmitwindowsize
+0x445c mem_le_new_transmitwindowoffset
+0x445e mem_le_new_conninterval
+0x4460 mem_le_new_connslavelatency
+0x4462 mem_le_new_connsupervisiontimeout
+0x4464 mem_le_temp
+0x4465 mem_le_txheader
+0x4466 mem_le_txlen
+0x4467 mem_le_txpayload
+0x4469 mem_le_txcid
+0x446b mem_le_l2cap
+0x446c mem_le_l2cap_response
+0x446d mem_le_txbdy
+0x448c mem_le_pcnt_tx
+0x4491 mem_le_pcnt_rx
+0x4496 mem_le_last_mic
+0x449a mem_le_ivm
+0x449e mem_le_ivs
+0x44a2 mem_le_ltk
+0x44b2 mem_ltk_exists
+0x44b3 mem_le_rconfirm
+0x44c3 mem_le_srand
+0x44d3 mem_le_iat
+0x44d4 mem_le_rat
+0x44d5 mem_le_preq
+0x44d6 mem_le_preq_iocap
+0x44d7 mem_le_preq_oob
+0x44d8 mem_le_preq_auth
+0x44d9 mem_le_preq_max_keysize
+0x44da mem_le_preq_init_key_distribution
+0x44db mem_le_preq_resp_key_distribution
+0x44dc mem_le_pres
+0x44dd mem_le_pres_iocap
+0x44de mem_le_pres_oob
+0x44df mem_le_pres_auth
+0x44e0 mem_le_pres_max_keysize
+0x44e1 mem_le_pres_init_key_distribution
+0x44e2 mem_le_pres_resp_key_distribution
+0x44e3 mem_le_search_handle_start
+0x44e5 mem_le_search_handle_end
+0x44e7 mem_le_att_offset
+0x44e7 mem_le_search_att_type_length
+0x44e8 mem_le_search_att_type
+0x44f8 mem_le_notify_handle
+0x44fa mem_le_search_uuid_length
+0x44fb mem_le_search_uuid
+0x450b mem_le_handle_data_len
+0x450c mem_le_handle_data
+0x451c mem_le_adv_param
+0x451c mem_le_adv_interval_min
+0x451e mem_le_adv_interval_max
+0x4520 mem_le_adv_type
+0x4521 mem_le_adv_own_addr_type
+0x4522 mem_le_adv_direct_addr_type
+0x4523 mem_le_adv_direct_addr
+0x4529 mem_le_adv_channel_map
+0x452a mem_le_adv_filter_policy
+0x452b mem_le_conn_param
+0x452b mem_le_conn_peer_addr_type
+0x452c mem_le_conn_peer_addr
+0x4532 mem_le_conn_own_addr_type
+0x4533 mem_le_conn_interval_min
+0x4535 mem_le_conn_interval_max
+0x4537 mem_le_conn_latency
+0x4539 mem_le_conn_superto
+0x453b mem_le_scan_params
+0x453b mem_le_scan_type
+0x453c mem_le_scan_own_addr_type
+0x453d mem_le_scan_filter_policy
+0x453e mem_le_lap
+0x4541 mem_le_uap
+0x4542 mem_le_nap
+0x4544 mem_le_xtype_fifo
+0x454c mem_le_local_mtu
+0x454e mem_le_remote_mtu
+0x4550 mem_le_ll_cur_opcode
+0x4551 mem_le_skdm
+0x4559 mem_le_skds
+0x4561 mem_le_init_superto
+0x4563 mem_le_secure_connect_enable
+0x4564 mem_le_secure_connect_flag
+0x4565 mem_le_sc_calc
+0x4566 mem_le_secure_connect_state
+0x4567 mem_le_sc_confirm_gkey_flag
+0x4568 mem_le_sc_local_key_invalid
+0x4569 mem_le_continue_flag
+0x456a mem_le_pairing_state
+0x456b mem_le_enc_state
+0x456c mem_le_pairing_mode
+0x456d mem_le_tk
+0x4571 mem_le_ediv
+0x4573 mem_le_rand
+0x457b mem_le_irk
+0x458b mem_le_pairing_handle
+0x458d mem_le_interal_min
+0x458f mem_le_interal_max
+0x4591 mem_le_latency
+0x4593 mem_le_timeout
+0x4595 mem_le_switch_send_data
+0x4596 mem_le_transmit_window
+0x459a mem_le_buff_len
+0x459c mem_le_buff_len_all
+0x459e mem_le_buff_data_len_all
+0x45a0 mem_prepare_write_len
+0x45a2 mem_le_prepare_write_req_offset
+0x45a4 mem_prepare_handle
+0x45a6 mem_prepare_write_offest
+0x45a8 mem_le_flag
+0x45a9 mem_lmp_version
+0x45ac mem_lmp_subversion
+0x45ae mem_local_name_length
+0x45af mem_local_name
+0x45b2 mem_local_name2
+0x45f2 mem_local_name_end
+0x45f3 mem_unsniff2sniff_timer
+0x45f4 mem_switch_flag
+0x45f5 mem_pn_dlci
+0x45f6 mem_pn_max_frame_size
+0x45f8 memFCStemp1
+0x45f9 memFCStemp2
+0x45fa memFCStemp3
+0x45fb mem_rfcomm_initiator
+0x45fc mem_remote_spp_channel
+0x45fd mem_HIUfcs_SPP
+0x45fe mem_HIUfcs_SPP_WCredits
+0x45ff mem_rfcomm_send_more_pkt
+0x4600 mem_remote_credits
+0x4601 mem_credit_given
+0x4602 mem_ms_channel
+0x4603 mem_credit_flag
+0x4604 mem_rfcomm_max_frame_size
+0x4606 mem_rfcomm_credit_init_data
+0x4607 mem_cb_receive_spp_data
+0x4609 mem_nl_rx_data_src
+0x460b mem_nl_rx_len_all
+0x460d mem_ui_uuid_table
+0x460f mem_all_uuid_16bits
+0x4625 mem_all_uuid_128bits
+0x4637 mem_ui_le_uuid_table
+0x4639 mem_sp_local_key_invalid
+0x463a mem_le_private_key_256
+0x465a mem_le_pubkey_local_x_256
+0x467a mem_le_pubkey_local_y_256
+0x469a mem_sp_private_key
+0x46b2 mem_sp_pubkey_local
+0x46b2 mem_sp_pubkey_local_x
+0x46ca mem_sp_pubkey_local_x_end
+0x46ca mem_sp_pubkey_local_y
+0x46e2 mem_ssp_enable
+0x46e3 mem_sp_iocap_local
+0x46e6 mem_sp_iocap_remote
+0x46e9 mem_flag_mode_ssp_pin
+0x46ea mem_ssp_mode_flag
+0x46eb mem_authentication_passkey_times
+0x46ec mem_passkey_1bit
+0x46ed mem_flag_pairing_state
+0x46ee mem_ipc_lock_bt
+0x46ef mem_ipc_lock_c51
+0x46f0 mem_ipc_fifo_bt2c51
+0x46f8 mem_ipc_fifo_c512bt
+0x4700 mem_led_switch
+0x4701 mem_ui_button_timer
+0x4702 mem_ui_button_last_state
+0x4703 mem_ui_timer_last_btclk
+0x4707 mem_discovery_timeout_timer_count
+0x4709 mem_hid_handshake_timer_count
+0x470a memui_reconnect_mode
+0x470b mem_ui_state_map
+0x470d mem_ui_profile_supported
+0x470e mem_led_gpio
+0x470f mem_led_dark_time
+0x4711 mem_led_light_time
+0x4713 mem_led_blink_count
+0x4714 mem_ui_button_timeout
+0x4715 mem_ui_button_gpio
+0x4716 mem_discovery_timeout
+0x4718 mem_pin_length
+0x4719 mem_pin
+0x4729 mem_24g_tx_btclk
+0x472d mem_24g_interval
+0x472e mem_24g_txfail_cnt
+0x472f mem_24g_attempt_cnt
+0x4730 mem_24g_attempt_flag
+0x4731 mem_24g_rxfail_cnt
+0x4734 mem_24g_retry
+0x4735 mem_24g_pid
+0x4736 mem_24g_datalen
+0x4737 mem_24g_crc
+0x4739 mem_24g_rxbuf
+0x4779 mem_24g_addr
+0x477d mem_24g_len
+0x477f mem_24g_txpayload
+0x4789 mem_24g_txdata
+0x4793 mem_24g_ch
+0x4794 mem_24g_scremble
+0x47a4 mem_24g_current_ch_number
+0x47a5 mem_24g_ch_map1
+0x47a9 mem_24g_ch_map2
+0x47ad mem_24g_ch_map3
+0x47b1 mem_24g_ch_map4
+0x47b5 mem_24g_interval_min
+0x47b6 mem_24g_interval_max
+0x47b7 mem_24g_ensure
+0x47b8 mem_24g_enter_hibernate
+0x47c0 mem_24g_enter_lpm_timer
+0x47c1 mem_24g_pairing_sm
+0x47c2 mem_24g_addr_copy
+0x47c6 mem_24g_sifs
+0x47c7 mem_24g_rxcnt
+0x47c8 mem_24g_addr_private_dongle
+0x47cc mem_24g_map_buff0_dongle
+0x47cd mem_24g_channel_cnt_dongle
+0x47ce mem_24g_pairing_sm_dongle
+0x47cf mem_24g_tx_btclk_dongle
+0x47d3 mem_24g_interval_dongle
+0x47d4 mem_24g_ch_update_dongle
+0x47d5 mem_24g_rx_sync_dongle
+0x47d6 mem_24g_ch_cnt_dongle
+0x47d7 mem_24g_rxbuf_temp_dongle
+0x47dd mem_24g_rxbuf_dongle
+0x47e3 mem_24g_rxfail_cnt_dongle
+0x47e6 mem_24g_spi_enable_flag
+0x4729 mem_acl_credits
+0x472b mem_allow_switch
+0x472c mem_hci_acl_queue_start/*param_acl_pktcnt+2 byte*/
+0x4730 mem_hci_wake_clk
+0x4729 mem_kb_state
+0x472b mem_kb_report_data
+0x4731 mem_kb_keys
+0x4732 mem_kb_rcv_led_data
+0x4733 mem_kb_fast_wake_last
+0x4737 mem_led_cap_gpio
+0x4738 mem_led_num_gpio
+0x4739 mem_led_scl_gpio
+0x473a mem_kb_current_vdd_value_10times
+0x473c mem_kb_read_adc_cnt_100ms
+0x473d mem_kb_current_vdd_value
+0x473f mem_led_power_blink_count
+0x4740 mem_led_power_500ms_cnt
+0x4741 mem_kb_map2
+0x49fd mem_3v1_adc_default
+0x49ff mem_kb_map
+0x4a9d mem_kb_discovery_timer
+0x4a9f mem_kb_direct_timer
+0x4aa1 mem_kb_no_data_timer
+0x4aa3 mem_kb_direct_timeout
+0x4aa5 mem_kscn_event_last
+0x4aa6 mem_kscan_event_num_last
+0x4aa7 mem_auto_enable_mult_timer
+0x4aa8 mem_auto_enable_mult_timer_init
+0x4aa9 mem_kb_temp_flag
+0x4aaa mem_map2_out_report0
+0x4ab2 mem_map2_out_report1
+0x4aba mem_table_last_repory_data0
+0x4ac2 mem_table_last_repory_data1
+0x4aca mem_kb_down
+0x4ad4 mem_kb_down_last
+0x4ade mem_table_temp
+0x4ae6 mem_pincode_vk_last
+0x4ae7 mem_kb_device_button_last
+0x4ae8 mem_kb_device_button_timer
+0x4ae9 mem_kb_current_status
+0x4aea mem_seq
+0x4aeb mem_dorx_cnt
+0x4aec mem_matched_btclk
+0x4aee mem_master_sniff_interval
+0x4aef mem_led_power_gpio
+0x4af0 mem_kb_check_vdd_count
+0x4af2 mem_0v_adc_data
+0x4af4 mem_2v2_adc_data
+0x4af6 mem_3v_adc_data
+0x4af8 mem_select_system_led_timer
+0x4af9 mem_led_cap_gpio_status
+0x4afa mem_kb_no_data_timeout
+0x4afc mem_kb_gpio_last_val
+0x4b00 mem_store_current_status
+0x4b01 mem_kb_led_on_timer
+0x4b02 mem_kb_debug_sm
+0x4b03 mem_kb_mode
+0x4b05 mem_kb_mode_revese
+0x4b07 mem_master_addr
+0x4b0d mem_led_device_blink_count
+0x4b0e mem_led_device_500ms_cnt
+0x4b0f mem_kb_caps_led_status
+0x4b10 mem_kb_reconnection_ssp
+0x4b11 mem_kb_rcv_hid_control_rsp
+0x4b12 mem_kb_down_regroup
+0x4b17 mem_kb_get_fn_flag
+0x4b18 mem_kb_kscan_cnt
+0x4b19 mem_kb_down_test
+0x4b23 mem_kb_release_fn_data
+0x4b24 mem_led_cap_delay_timer
+0x4b25 mem_led_cap_mult_timer
+0x4b26 mem_led_cap_flag
+0x4b27 mem_hid_rx_data
+0x4b28 mem_kb_fn_c
+0x4b29 mem_kb_c_fn
+0x4b2a mem_keyboard_uuid_list
+0x4db4 mem_keyboard_uuid_list_end
+0x4db4 mem_keyboard_le_att_list
+0x4fa8 mem_keyboard_le_att_list_end
+0x4729 mem_module_wake_up_gpio
+0x472a mem_module_state_gpio
+0x472b mem_module_connect_state_gpio
+0x472c mem_current_packet_length
+0x472e mem_module_state
+0x472f mem_module_task
+0x4730 mem_cmode_addr
+0x4736 mem_module_mcu_wake_pin
+0x4737 mem_module_mcu_wake_delay_us
+0x473b mem_module_spp_lpm_mult
+0x473c mem_module_le_lpm_mult
+0x473d mem_module_bluetooth_stauts_by_command
+0x473e mem_module_uart_rx_buffer
+0x4740 mem_module_uart_rx_buffer_end
+0x4742 mem_module_uart_tx_buffer
+0x4744 mem_module_uart_tx_buffer_end
+0x4746 mem_module_read_vdd_flag
+0x4747 mem_module_read_vdd_count
+0x4748 mem_module_vdd_quotient
+0x4749 mem_module_vdd_remainder
+0x474a mem_module_le_buff_len
+0x474c mem_module_le_buff_len_all
+0x474e mem_module_le_buff_data_len_all
+0x4750 mem_module_le_continue_flag
+0x4751 mem_module_le_rx_data_len
+0x4752 mem_module_le_rx_data_address
+0x4754 mem_module_le_rx_data_handle
+0x4756 mem_module_data_write_handle
+0x4758 mem_module_data_write_handle2
+0x475a mem_module_flag
+0x475b mem_le_notify_type
+0x475c mem_module_hci_notify_start
+0x475e mem_module_hci_notify_offset
+0x4760 mem_module_hci_notify_len
+0x4762 mem_module_hci_notify_att
+0x4764 mem_module_hci_notify_original_len
+0x4766 mem_module_uuid_list
+0x4892 mem_module_uuid_list_end
+0x4892 mem_module_le_att_list
+0x4a86 mem_module_le_att_list_end
+0x4a86 mem_nv_data
+0x4a86 mem_nv_data0
+0x4aa8 mem_nv_data1
+0x4aca mem_nv_data2
+0x4aec mem_nv_data3
+0x4b0e mem_nv_data4
+0x4729 mem_mouse_key
+0x472a mem_mouse_x
+0x472c mem_mouse_y
+0x472e mem_mouse_z
+0x472f mem_mouse_tz
+0x4730 mem_mouse_xy_h
+0x4731 mem_sensor_shutter_hi
+0x4732 mem_sensor_shutter_lo
+0x4733 mem_sensor_smart_flag
+0x4734 mem_sensor_squal_reg
+0x4735 mem_mouse_move_flag
+0x4736 mem_reconnect_timeout
+0x4737 mem_mouse_direct_timeout
+0x4739 mem_mouse_no_data_timeout
+0x473b mem_mouse_blank_data_timeout
+0x473d mem_mouse_discovery_timer
+0x473f mem_mouse_direct_timer
+0x4741 mem_mouse_no_data_timer
+0x4743 mem_mouse_blank_data_timer
+0x4745 mem_mouse_send_blank_timer
+0x4746 mem_mouse_dpi
+0x4747 mem_mouse_dpi_button_state
+0x4748 mem_mouse_test_cnt
+0x4749 mem_le_hibernate_timer
+0x474b mem_mouse_mode_state
+0x474c mem_mouse_le_notify_handle
+0x474d mem_lbutton_gpio
+0x474e mem_rbutton_gpio
+0x474f mem_mbutton_gpio
+0x4750 mem_sbutton1_gpio
+0x4751 mem_sbutton2_gpio
+0x4752 mem_dpi_button_gpio
+0x4753 mem_sensor_data_gpio
+0x4754 mem_whee_a_data_gpio
+0x4755 mem_whee_b_data_gpio
+0x4756 mem_sensor_reset_gpio
+0x4757 mem_device1_led_gpio
+0x4758 mem_device2_led_gpio
+0x4759 mem_device3_led_gpio
+0x475a mem_conn_cnt
+0x475b mem_whee_ta_data_gpio
+0x475c mem_whee_tb_data_gpio
+0x475d mem_wheel_tb_old_pinlevel
+0x475e mem_wheel_tb_new_pinlevel
+0x475f mem_wheel_tog
+0x4760 mem_mouse_tz_data
+0x4761 mem_mouse_tz_data_count
+0x4762 mem_mouse_tz_data_count1
+0x4763 mem_mwhee_a_data_gpio
+0x4764 mem_mwhee_b_data_gpio
+0x4765 mem_mwheel_b_old_pinlevel
+0x4766 mem_mwheel_b_new_pinlevel
+0x4767 mem_mwheel_tog
+0x4768 mem_mouse_z_data
+0x4769 mem_mouse_z_data_count
+0x476a mem_mouse_z_data_count1
+0x476b mem_reconn_mode
+0x476c mem_mouse_statue_led_timer
+0x476d mem_device_flag
+0x476e mem_mouse_uuid_list
+0x49f8 mem_mouse_uuid_list_end
+0x49f8 mem_mouse_le_att_list
+0x4bec mem_mouse_le_att_list_end
+0x4729 mem_shutter_send_data
+0x472d mem_shutter_key_temp
+0x472e mem_shutter_send_length
+0x472f mem_shutter_clkn_bt_last
+0x4733 mem_shutter_key
+0x4734 mem_shutter_flag
+0x4735 mem_shutter_cable_unplug_conut
+0x4736 mem_shutter_hid_disconn_count
+0x4737 mem_shutter_1key_send_sm
+0x4738 mem_shutter_iphonekey_gpio
+0x4739 mem_shutter_androidkey_gpio
+0x473a mem_shutter_key_number
+0x473b mem_read_eeprom_temp
+0x473c mem_read_eeprom_mac_addr
+0x473f mem_scale_tx_length
+0x4740 mem_scale_txbuff_inuse
+0x4741 mem_adv_lap_ptr
+0x4743 mem_le_sleep_flag
+0x4744 mem_rx_window_sniff_inc
+0x4746 mem_pair_state
+0x4747 mem_exchange_mtu_req
+0x4748 mem_le_sleep_timeout
+0x474a mem_le_sleep_timeout_timer_count
+0x474c mem_le_fast_adv_timeout
+0x474e mem_le_fast_adv_timeout_timer_count
+0x4750 mem_led_fast_dark_time
+0x4752 mem_led_fast_light_time
+0x4754 mem_power_on_pin
+0x4755 mem_hard_soft_switch_case
+0x4756 mem_shutter_powerup_flag
+0x4757 mem_shutter_button_timeout
+0x4758 mem_shutter_button_timer
+0x4759 mem_power_timeout
+0x475a mem_power_timer
+0x475b mem_enable_key_scan
+0x475c mem_packet_interval_set
+0x475e mem_shutter_led_num
+0x475f mem_led_map
+0x4763 mem_fast_adv_led_style
+0x4763 mem_fa_led_type
+0x4764 mem_fa_led_pin
+0x4765 mem_fa_led_on_time
+0x4767 mem_fa_led_off_time
+0x4769 mem_fa_blink_count
+0x476a mem_slow_adv_led_style
+0x476a mem_sa_led_type
+0x476b mem_sa_led_pin
+0x476c mem_sa_led_on_time
+0x476e mem_sa_led_off_time
+0x4770 mem_sa_blink_count
+0x4771 mem_power_on_led_style
+0x4771 mem_po_led_type
+0x4772 mem_po_led_pin
+0x4773 mem_po_led_on_time
+0x4775 mem_po_led_off_time
+0x4777 mem_po_blink_count
+0x4778 mem_powe_off_led_style
+0x4778 mem_pf_led_type
+0x4779 mem_pf_led_pin
+0x477a mem_pf_led_on_time
+0x477c mem_pf_led_off_time
+0x477e mem_pf_blink_count
+0x477f mem_connected_led_style
+0x477f mem_co_led_type
+0x4780 mem_co_led_pin
+0x4781 mem_co_led_on_time
+0x4783 mem_co_led_off_time
+0x4785 mem_co_blink_count
+0x4786 mem_key_led_style
+0x4786 mem_key_led_style_ind_0
+0x4786 mem_key_led_style_ind_0_data
+0x478d mem_key_led_style_ind_1
+0x478d mem_key_led_style_ind_1_data
+0x4794 mem_key_led_style_ind_2
+0x4794 mem_key_led_style_ind_2_data
+0x479b mem_key_led_style_ind_3
+0x479b mem_key_led_style_ind_key_release
+0x479b mem_key_led_style_ind_3_data
+0x47a2 mem_temp_led_style
+0x47a2 mem_temp_led_type
+0x47a3 mem_temp_led_pin
+0x47a4 mem_temp_led_on_time
+0x47a6 mem_temp_led_off_time
+0x47a8 mem_temp_blink_count
+0x47a9 mem_shutter_key_num
+0x47aa mem_key_conf0
+0x47aa mem_key_conf0_pin
+0x47ab mem_key_conf0_led
+0x47ac mem_key_conf1
+0x47ac mem_key_conf1_pin
+0x47ad mem_key_conf1_led
+0x47ae mem_key_conf2
+0x47ae mem_key_conf2_pin
+0x47af mem_key_conf2_led
+0x47b0 mem_key_conf3
+0x47b0 mem_key_conf3_pin
+0x47b1 mem_key_conf3_led
+0x47b2 mem_key_conf4
+0x47b2 mem_key_conf4_pin
+0x47b3 mem_key_conf4_led
+0x47b4 mem_key_conf5
+0x47b4 mem_key_conf5_pin
+0x47b5 mem_key_conf5_led
+0x47b6 mem_key_value_temp
+0x47b8 mem_key_value
+0x47ba mem_key_packet_count
+0x47bb mem_key_next_addr
+0x47bd mem_key_value_temp1
+0x47be mem_key_value_temp2
+0x47bf mem_key_value_temp3
+0x47c0 mem_key_value_temp4
+0x47c1 mem_key_value_temp5
+0x47c2 mem_key_value_temp6
+0x47c3 mem_key0_press
+0x47d7 mem_key0_release
+0x47eb mem_key1_press
+0x47f9 mem_key1_release
+0x4807 mem_key2_press
+0x4815 mem_key2_release
+0x4823 mem_key3_press
+0x4831 mem_key3_release
+0x483f mem_key4_press
+0x484d mem_key4_release
+0x485b mem_key5_press
+0x4869 mem_key5_release
+0x4877 mem_queue_ele_num
+0x4878 mem_queue_read
+0x487a mem_queue_write
+0x487c mem_queue_start
+0x487c mem_data_ele0
+0x4886 mem_data_ele1
+0x4890 mem_data_ele2
+0x489a mem_data_ele3
+0x48a4 mem_data_ele4
+0x48ae mem_data_ele5
+0x48b8 mem_queue_end
+0x48b8 mem_queue_temp
+0x48ba mem_shutter_key_data_flag
+0x48bb mem_shutter_key_data_flag_1
+0x48bc mem_le_find_type_value_start_handle
+0x48be mem_le_find_type_value_end_handle
+0x48c0 mem_shutter_find_type_value_flag
+0x48c1 mem_le_uuid
+0x48c2 mem_send_updata_le_param_timer
+0x48c3 mem_le_smp_key_dist
+0x48c6 mem_ltk_states
+0x48c7 mem_shutter_conn_update_timer
+0x48c8 mem_empty_count
+0x48c9 mem_shutter_notification_len
+0x48ca mem_shutter_notification_addr
+0x48cc mem_shutter_le_att_list
+0x4ac0 mem_timeout_disconnect_timer
+0x4ac1 mem_shutter_att_list_patch
+0x4b48 mem_le_app_peer_addr
+0x4b4b mem_app_peer_addr
+0x4b51 mem_le_conn_state
+0x4b52 mem_le_conn_sm
+0x4b53 mem_le_work_data_send_flag
+0x4b54 mem_le_car_write_cmd_data
+0x4b54 mem_le_car_write_cmd_head
+0x4b58 mem_le_car_write_cmd_data1
+0x4b5d mem_le_car_write_cmd_control
+0x4b5f mem_le_car_write_cmd_check_sum
+0x4b60 mem_queue_ele_num_patch
+0x4b61 mem_queue_read_patch
+0x4b63 mem_queue_write_patch
+0x4b65 mem_queue_start_patch
+0x4b65 mem_data_ele0_patch
+0x4b79 mem_data_ele1_patch
+0x4b8d mem_data_ele2_patch
+0x4ba1 mem_data_ele3_patch
+0x4bb5 mem_data_ele4_patch
+0x4bc9 mem_data_ele5_patch
+0x4bdd mem_queue_end_patch
+0x4bdd mem_queue_temp_patch
+0x4bdf mem_le_sleep_conn_timeout
+0x4be1 mem_slave_addr
+0x4be7 mem_uart_mouse_data_buff
+0x4bf2 mem_le_slave_peer_addr
+0x4bf8 mem_le_send_write_request_count
+
+	width = 32
+	const length = 12000
+
+	/* ========= memory ============== */
+0x0000 mem_le_adv_transmit
+0x0001 mem_le_adv_waitcnt
+0x0002 mem_le_adv_rcv
+0x0003 mem_le_req_rcv
+0x0004 mem_le_scanrsp_rcv
+0x0005 mem_le_conn_rcv
+0x0006 mem_inquiryscan_waitcnt
+0x0007 mem_inquiryscan_rcvcnt
+0x0008 mem_pagescan_waitcnt
+0x0009 mem_pagescan_rcvcnt
+0x000a mem_pagescan_rcvfhscnt
+0x000b mem_slave_rcvcnt
+0x000c mem_page_transmit
+0x000d mem_page_rcv
+0x000e mem_page_rcv_fhs
+0x000f mem_master_rcvcnt
+0x0010 mem_fhs_wait_counter
+0x0011 mem_newconnto_counter
+0x0012 mem_inquiry_transmit
+0x0013 mem_inquiry_rcv
+0x0014 mem_fw_ver
+0x0015 mem_current_context
+0x0016 mem_le_ch_mapped
+0x0017 mem_last_freq
+0x0018 mem_rssi
+0x0019 mem_rx_type
+0x001a mem_rx_hec_err
+0x001c mem_rx_crc_err
+0x001e mem_context_ptr
+0x0020 mem_display
+0x0028 mem_bcd
+0x0030 mem_state
+0x0031 mem_mode
+0x0032 mem_tsniff
+0x0034 mem_sniff_anchor
+0x0038 mem_clk_offset
+0x003e mem_rx_window
+0x0040 mem_plap
+0x0043 mem_puap
+0x0044 mem_pnap
+0x0046 mem_conn_handle
+0x0047 mem_arq
+0x0048 mem_lmp_to_send
+0x0049 mem_lmi_opcode
+0x004a mem_lmo_reason
+0x004b mem_op
+0x004c mem_state_map
+0x004d mem_supervision_timer
+0x0051 mem_supervision_to
+0x0053 mem_name_offset
+0x0054 mem_key_size
+0x0055 mem_conn_sm
+0x0056 mem_aco
+0x0062 mem_kc
+0x0072 mem_conn_timer
+0x0073 mem_sniff_attempt
+0x0074 mem_sniff_timeout
+0x0075 mem_dsniff
+0x0077 mem_amaddr
+0x0078 mem_lmo_opcode1
+0x0079 mem_lmi_opcode1
+0x007a mem_lmo_reason1
+0x007b mem_lmo_tid1
+0x007c mem_lmo_opcode2
+0x007d mem_lmi_opcode2
+0x007e mem_lmo_reason2
+0x007f mem_lmo_tid2
+0x0080 mem_hci_version
+0x0083 mem_acl_pktlen
+0x0085 mem_sco_pktlen
+0x0086 mem_acl_pktcnt
+0x0088 mem_sco_pktcnt
+0x008a mem_current_sniff_attempt
+0x008b mem_current_sniff_timeout
+0x008c mem_nfreq_index_inq
+0x008d mem_nfreq_index_page
+0x008e mem_ninqy_index
+0x008f mem_fhs_misc
+0x0090 mem_subsniff_instant
+0x0094 mem_subsniff_rate
+0x0095 mem_subsniff_tcmax
+0x0097 mem_subsniff_tsniff
+0x0098 mem_lpm_adjust
+0x0099 mem_sync_clke
+0x009f mem_lpm_current_mult
+0x00a0 mem_gpio_wakeup_low
+0x00a4 mem_gpio_wakeup_high
+0x00a8 mem_air_mode
+0x00a9 mem_sco_asso_handle
+0x00aa mem_sco_handle
+0x00ac mem_esco_desco
+0x00ad mem_esco_type
+0x00ae mem_neogotiation_state
+0x00af mem_saved_amaddr
+0x00b0 mem_esco_arq
+0x00b1 mem_esco_saved_arq
+0x00b2 mem_sco_obuf
+0x00d0 mem_sco_ibuf
+0x00ee mem_sco_poll
+0x00ef mem_npage_index
+0x00f0 mem_page_mode
+0x00f1 mem_page_clk
+0x00f5 mem_tst_pktcnt_sync
+0x00f7 mem_tst_pktcnt_hec
+0x00f9 mem_tst_pktcnt_crc
+0x00fb mem_tst_pktcnt_dmh
+0x00fd mem_tmp_buffer_head
+0x0100 mem_tmp_buffer
+0x0150 mem_tester_emulate
+0x0151 mem_temp_payload
+0x0151 test_mode_scenario
+0x0152 test_mode_hopping_mode
+0x0153 test_mode_tx_freq
+0x0154 test_mode_rx_freq
+0x0155 test_mode_power_mode
+0x0156 test_mode_poll_period
+0x0157 test_mode_packet_type
+0x0158 test_mode_data_length
+0x015a mem_test_mode_old_debug_config
+0x015b mem_tester_cnt
+0x015c mem_temp_am_addr
+0x015d mem_temp_arq
+0x015e mem_len
+0x0160 mem_clkn_bt
+0x0164 mem_clke_bt
+0x0168 mem_dpll_clkn
+0x016c mem_connection_options
+0x016d mem_nameres_cnt
+0x016e mem_txptr
+0x0170 mem_slot_offset
+0x0172 extm_fhs_misc
+0x0173 extm_newconn_am_addr
+0x0174 extm_class
+0x0177 extm_lap
+0x017a extm_uap
+0x017b extm_nap
+0x017e mem_debug_config
+0x017f mem_lch_code
+0x0180 mem_fhs_am_addr
+0x0181 mem_dpll_error
+0x0183 mem_bdaddr_list_buff
+0x01a7 mem_select_list_item
+0x01a8 mem_temp_reconn_record
+0x01a8 mem_record_bt_mode
+0x01a9 mem_temp_lap
+0x01af mem_list_item_ptr
+0x01b1 mem_eir
+
+
+
+(//bluetooth tx power
+0 TX_POWER_0DB
+1 TX_POWER_3DB
+2 TX_POWER_5DB
+3 TX_POWER_f3DB
+4 TX_POWER_f5DB
+)
+
+
+0x3b17 rom_lpm_sleep
+0x59e0 rom_save_ucode
+
+0x4219 rom_mem_lpm_xtalcnt
+0x423b rom_mem_patch_ptr
+0x423d rom_mem_patch_len
+
+0x5b1a rom_otpd_read_data
+0x5ada rom_otp_write
+	/* context */
+(
+0x01 coffset_mode
+0x02 coffset_tsniff
+0x04 coffset_sniff_anchor
+0x08 coffset_clk_offset
+0x0e coffset_rx_window
+0x10 coffset_plap
+0x16 coffset_conn_handle
+0x17 coffset_arq
+	/* 3.0 only */
+0x18 coffset_lmp_to_send
+0x1b coffset_op
+0x1c coffset_state_map
+	/* le only */
+0x18 coffset_le_ch
+0x19 coffset_le_hop
+0x1a coffset_le_event_cnt
+
+80 context_size
+3 context_num
+)
+
+(
+0 lpm_flag_wake
+1 lpm_flag_loadcode
+)
+
+/* ========= parameters ============== */
+(
+0x0050 param_newconn_arq
+0x0007 param_esco_addr
+0x0010 param_conn_handle
+0x01f0 param_conn_handle_comp
+0x0020 param_newconnto
+0x0008 param_pagerespto
+0x0a00 param_snooze_setup_orig
+0x5353 param_snooze_ahead_orig
+0x00ff param_ninquiry
+0x2000 param_page_to
+0x0005 param_max_slot
+0x0010 param_sco_poll
+
+/* 6Mhz clock setting */
+/* 12Mhz clock setting */
+0x0e43 param_tx_setup
+0x09d0 param_rx_setup_earlier
+0x0600 param_rf_setup
+0x03bb param_clke_cal
+0x0600 param_conn_access 
+0x0800 param_conn_access_wider
+0x0500 param_pll_setup		// 120 is minimum
+0x0d00 param_rx_setup	// 114us before sync
+2000 param_dpll_start_delay
+
+110 param_lpm_fix
+10 param_lpo_extra
+200 param_lpm_adjmax
+
+-1 param_hibernate_clks
+3000 param_chgpump_delay
+
+3 param_featrue_ssp
+0x0101 param_lmpext_ssp_enable
+339 param_acl_pktlen
+30   param_sco_pktlen
+1     param_acl_pktcnt		/*buffer acl pkt cnt*/
+7     param_sco_pktcnt
+
+
+0x8fffff param_features0
+0x9d83fe param_features1  // not support afh
+0x8359     param_features2
+0x000033 param_unap
+0x001177 param_lap
+0x9e8b33 param_glap
+0x002540 param_class//0x180208 //0x002580//402500//240404
+0x12e904 param_hci_version
+0x000a04 param_lmp_version//0x0a04
+0x000a06 param_lmp_version0
+0x12e9 param_lmp_subversion
+0x0012 param_tisw
+0x0012 param_tpsw
+0x1000 param_tisi
+0x0800 param_tpsi
+0x0020 param_page_window
+0x0020 param_inq_window
+0x1c80 param_supervision_to
+39 param_fcomp_div
+2 param_fcomp_mul
+6     param_name_len
+0x535442 param_name
+0x344950 param_name1
+
+
+)
+
+/* ======= packet types  ========= */
+(
+0x0      type_null    
+0x1      type_poll   
+0x2      type_fhs    
+0x3      type_dm1    
+0x4      type_dh1    
+0x5      type_hv1    
+0x6      type_hv2    
+0x7      type_hv3    
+0x8      type_3dh1     
+0x9      type_aux1   
+0xa      type_dm3    
+0xb      type_dh3    
+0xe      type_dm5    
+0xf      type_dh5    
+0x10     type_id
+0x11     type_shutdown
+0x13     type_lmp
+)
+
+/* ========== flag[6] =============== */
+(
+0        always        /* always 1 */
+1        true          /* set/rstn by verify,compare,icompare (true) */
+2        positive      /* set/rstn by all alu operations (opcode = 0x03,0x13,0x0f,0x1f), if alu output >= 0 */
+3        timeout       /* read only, the timeout from timers */
+5        zero          /* set/rstn by all alu operations (opcode = 0x03,0x13,0x0f,0x1f), if alu output == 0 */
+6        crc_failed    /* level, cleared by hop_start */
+7        enable_white  /* outside mux decide whether to load bt_clk or response_X */
+8        enable_parity /* level */
+9        enable_crc    /* level */
+10       enable_hec    /* level */
+11       decode_fec1   /* level */
+12       decode_fec2   /* level */
+13       decode_fec0   /* level */
+14       encrypt       /* level */
+15       crc16       /* for caculate ccitt crc16 */
+16       swfine	/* =0 stop_watch count based on oneslot =1 on 1 clock */
+20       rqst_freq    /* pulse, to start calculating frequency */
+21       recalc        /* pulse, to recalculate the fhs_parity */
+22       init_encrypt  /* pulse, issued to initialize encrption */
+23       mhalfbnd    /* half slot boundary of clke_rt, or when clke_bt[0] toggles */
+24       sync          /* sync found as a result of correlation,set/rstn by correlate opcode */
+25       user10    /* user10 */
+26       kc_p_activate  /* pulse to recalc the kc_p */
+27       encode_fec1   /* level */
+28       encode_fec2   /* level */
+29       encode_fec0   /* level */
+30       packet_end    /* pulse */
+32       is_tx         /* level */
+33       is_rx         /* level */
+34       halfslot     /* pulse, read only, when clkn_bt[0] toggles */
+35       oneslot      /* pulse, read only, when clkn_bt[1] toggles */
+36       mslotbnd     /* pulse, read only, when clke_bt[1] toggles */
+37       expire       /* level, read only, when selected clock source exceed timeup value */
+38       meet         /* level, read only, when selected clock source meet timeup value */
+39       tx_clear     /* level, read only, indicate tx pipe is cleared */
+40       user         /* user0 */
+41       master        /* user1 */
+42       slave2         /* user2 */
+43       wake           /* user3 */
+44       user2        /* user4 */
+45       match         /* user5 */
+46       attempt        /* user6 */
+47       user3          /* user7 */
+48       clknt         /* user8 */
+49	   user7 	/* user9 */
+50       synchronize   /* synchronize lpo and regular version of the clock */
+51       lpo_edge  /* read only, 3 clocks after risling edge of lpo clock */
+52       blank         /* C0 only, means pdata == 0 */
+53       modone          /* set divide operation is done */
+54       le		/* bluetooth 4.0 LE enable */
+55       aes_ready	/* set when aes is ok */
+63       never         /* read only, always 0 */
+)
+
+default flag = always
+
+/* ========== reg[6] =============== */
+(
+0        mark   /* for keeping strobes, more permanent */
+1        type   /* save and verify during rx */     /* rw */
+2        temp   /* general purpose register, 64 bits */
+3        contru  /* contr uart */
+4        am_addr      /* verify during rx, read and send during tx */ /* ro */
+5        contw        /* last mem_addr during write */
+6        contr        /* last mem_addr during read */
+7        queue    /* the index of qset*,qisolate* commands, ie, if queue = 3, qset/qisolate operate on bit3 */
+8        debug    /* can be wired out for observation */
+9        access   /* the 72 bit access word */
+10       contwu   /* contw uart */
+11       timeup        /* when does certain counter expire */
+12       pwindow       /* bit 71-61 of pdata; because on rx, bits shifts in from 71 down */
+13       fhs_parity    /* re-gernated based on bt_adr( {nap,uap,lap} ) when recalc flag is pulsed */
+14       white_init    /* init value of the whitening */
+15       crc24_init        /* init crc24 lfsr, 24 bits */
+16       interrupts    /* set interrupts, 40 bits */
+17       rega          /* general purpose register, 32 bits */
+18       regb          /* general purpose register, 32 bits */
+19       regc          /* general purpose register, 17 bits */
+20       regab         /* concat of {rega,regb}, thus 64 bits */
+21       radio_ctrl   /* radio i/f direct i/o ctrl, check following "radio_ctrl" section */
+21       ctrl_reg     /* 2023 and after */
+22       jtag_addr    /* load jtag address field, lsb */
+23       freq_index   /* 7 bit read only */
+24       jtag_data    /* wdata to and rdata from jtag */
+25       clkn              /* {clkn_bt, clkn_rt} */
+26       clke              /* {clke_bt, clke_rt} */
+27       stop_watch
+28       fhs_misc   /* SR, SP, pscan mode */
+29       fhs_class  /* class field in fhs */
+30       fhs0   /* read only, bit 0-71 of fhs word */
+31       fhs1   /* read only, bit 72-142 of fhs word */
+32       bt_adr /* r/w, the bt_addr to access gen and freq hopping, contain only lap and uap */
+33       bt_clk /* r/w, the bt_clk for freq hopping */
+34       clkn_bt  /* read only, native bluetooth clock, free running 3.2KHz  or controlled by RTHALFSLOT register */
+35       clkn_rt  /* read only, native realtime clock, free running 12MHz, count from 0-3749, or controlled by RTHALFSLOT register */
+36       freq_mode
+/* wire even_train    = freq_mode[4];    // odd even train                            */
+/* wire conn_mode     = 3;    // connection                                           */
+/* wire iqpgscan_mode = 2;    // slave in inquiry and page (not response)             */
+/* wire iqpgresp_mode = 1;    // slave in inquriy and page (response only)            */
+/* wire inqypage_mode = 0;    // master in inquiry and page(response or not response) */
+37       xin   /* x parameter, read only */
+38       N_tx_slot /* the N factor in equations for Xi,Xp,Xprm,Xprs */
+39 	   auxcnt
+40       clke_bt  /* r/w,  external bluetooth clock , free running 3.2KHz or controlled by RTHALFSLOT register */
+41       clke_rt  /* r/w,  external realtime clock, , free running 12MHz, count from 0-3749, or controlled by RTHALFSLOT register */
+43       host_mode         /* generic stuff for kick starts */
+44       lap
+45       uap
+46       nap         
+47       regext		/* r/w extended 12x32bit registers,  indexed by regext_index */
+48       alarm             /* r/w, lpo wake up time, this is also how lpo and current clock keep sync */
+49       lpo_time          /* read only, this is the value to be copied back to clkn/clke after wakeup */
+50       kc_ls             /* secret key,                71: 0 */
+51       kc_ms             /* secret key,               127:72 */
+52       g1l               /* encryption length                */
+53		mask3ff		/* for mask 0x3ff operation */
+54       aes_ctrl		
+56       regext_index   /* index of regext */
+57	     loopcnt
+58      stack			/* current return address */
+59       stack_ptr		/* stack depth */
+61         pc /* direct goto */
+62       null              /* to nowhere */
+63       pdata /* the shift register */
+)
+default reg = pdata
+
+/* regext_index */
+(
+0 regidx_data
+4 regidx_key
+8 regidx_xor
+12 regidx_result
+)
+/* ========== radio_ctrl========= */
+(
+0 TXGFSK
+1 PSK
+2 PSK3M
+3 RESET
+)
+/* assign BPWR = radio_ctrl[0]; */
+/* assign PARAMP = radio_ctrl[1]; */
+/* assign XTALPU = radio_ctrl[2]; */
+/* assign SYNTHPU = radio_ctrl[3]; */
+/* assign TXPU = radio_ctrl[4]; */
+/* assign RXPU = radio_ctrl[5]; */
+/* assign SLCTRL = radio_ctrl[6]; */
+/* assign XTALSEL_MUX_SEL = radio_ctrl[7] */
+
+
+/* =========== destination[4] ============== */
+(
+0 bucket
+1 rxf
+2 back
+3 mod
+)
+default dest = bucket
+
+/* =========== source[4] ============= */
+(
+1 txf
+3 demod
+)
+default source = 0
+
+
+/* ============== mark ============= *//*0 - 47 */
+(
+
+0  mark_fhs_eir  
+1  mark_rxbuf_inuse
+2  mark_tx_l2cap
+3  mark_switch_initiated
+4  mark_accept_switch
+5  mark_loopback
+7  mark_esco
+8  mark_esco_rxok
+9  mark_context
+10 mark_am_addr_broadcast
+11 mark_fhs_already_good
+12 mark_page_trainb
+13 mark_lpm_mult_enable
+14 mark_usb_flag
+15 mark_old_packet
+16 mark_longpacket
+17 mark_testmode
+18 mark_ar2
+19 mark_h5tx_rp
+20 mark_h5tx_crc	
+21 mark_h5tx_retransmit
+22 mark_h5rx_pstart
+23 mark_h5_sync
+24 mark_h5_reinit
+28 mark_inquiry_on
+29 mark_inquiry_state
+30 mark_inquiry_trainb
+31 mark_periodical_diac
+32 mark_all_diac
+33 mark_slave_in_rand_accepted
+34 mark_reconn_recieve_switch
+35 mark_isstr
+36 mark_loadcode
+37 mark_ext_patch
+38 mark_24g
+39 mark_24g_conext
+40 mark_24g_search_pair
+41 mark_24g_normal_rcv
+42 mark_eeprom_size
+// REVAB:max 35, REVC:max 63
+
+)
+
+(
+1 reload_type_otp
+2 reload_type_spi
+3 reload_type_iic
+)
+
+
+/* ============== soft timers ============== */
+(
+0 h5_reinit_timer
+1 hci_retransmit_timer
+1 le_adv_interval_timer
+2 inquiry_length_timer
+3 le_scan_interval_timer
+4 page_length_timer
+5 iscan_interval_timer
+6 pscan_interval_timer
+7 lpo_delay_timer
+8 ui_hundred_millisecond_timer
+9 ui_led_blink
+10 switch_wait_timer
+11 enpt_delay_timer
+12 temp_timer
+13 page_interval_timer
+14 uart_rx_timer
+)
+(
+0 ui_led_stop
+1 ui_led_start
+2 ui_led_dark_time
+3 ui_led_light_time
+)
+(
+1 hci_cmd_inquiry
+2 hci_cmd_inquiry_cancel
+3 hci_cmd_remote_name_req
+4 hci_cmd_remote_feature_req
+5 hci_cmd_create_conn
+6 hci_cmd_disconn
+7 hci_cmd_accept_conn
+8 hci_cmd_reject_conn
+9 hci_cmd_pair
+10 hci_cmd_nopair
+11 hci_cmd_linkkey
+12 hci_cmd_nokey
+13 hci_cmd_auth
+14 hci_cmd_stopencrypt
+15 hci_cmd_startencrypt
+16 hci_cmd_setup_sco
+17 hci_cmd_disconn_sco
+18 hci_cmd_in_sniff
+19 hci_cmd_exit_sniff
+20 hci_cmd_remote_version_req
+21 hci_cmd_remote_ext_features_req
+22 hci_cmd_io_cap
+23 hci_cmd_role_discovery
+24 hci_cmd_role_switch
+25 hci_cmd_accept_with_switch
+26 hci_cmd_detach
+27 hci_cmd_le_create_conn
+28 hci_cmd_accept_sco_conn
+80 hci_cmd_wait_remote_feature
+81 hci_cmd_wait_remote_ext_feature
+82 hci_cmd_wait_remote_name
+)
+
+
+
+/* ============== debug ============= */
+(
+0 debug_neg_skew
+1 debug_bitbucket
+2 debug_dont_clear_got_tx
+3 debug_scatter_enabled
+4 debug_tx_fixed_freq
+5 debug_rx_fixed_freq
+6 debug_tx_pattern
+)
+
+/* ============== tester_emulator ============= */
+(
+0 tester_fixed_flow
+1 tester_fixed_flow_polarity
+2 tester_change
+3 tester_exit
+4 tester_pattern_test
+5 tester_whitening_change
+6 tester_fixed_freq
+7 tester_no_whitening
+)
+
+/* ============== mode ==========*/
+(
+0 mode_le
+1 mode_master
+2 afh_enable
+3 afh_change
+4 send_sco_when_slave
+5 first_seqnx
+)
+
+/* ============== state_map ==========*/
+(
+0 smap_lmptidinit
+1 smap_lmptid
+2 smap_encryption
+3 smap_name_res
+4 smap_name_req
+5 smap_edr
+6 smap_rxlmp
+7 smap_rxl2cap
+)
+(
+0 state_inconn
+1 state_insniff
+2 state_insco 
+3 state_inpage
+4 state_conn_comp
+5 state_init_seq
+6 state_combkey
+7 state_linkkey
+)
+(
+0 op_send_sres
+1 op_auth_req
+2 op_inrand_req
+3 op_disconn
+4 op_stop_enc
+5 op_start_enc
+6 op_txl2cap
+7 op_pkt_comp
+)
+
+
+/* ============== arq [3] ================ */
+(
+0 flow
+1 arqn
+2 seqn
+3 wack
+4 flowx              /* out */  /* not really in memory */
+5 arqnx              /* out */
+6 seqnx              /* out */
+7 bcast1             /* first broadcast received */
+)
+
+/* arq          {flow,arqn,seqn}, read/write */
+/* [0] flow r/w  acl full status of the other, store during rx, checked during tx */
+/* [1] arqn r/w  ack of the other during rx (ack tx fifo),                        */
+/* [2] seqn r/w  seqn of the other, check during rx                               */ 
+/* arqx         {flowx,arqnx,seqnx} */
+/* [0] flowx r/o flow back to the other, 1 alow send, 0 not to send, read only tx */
+/* [1] arqnx r/w ack to the other, set by rx, send back on tx                     */
+/* [2] seqnx r/w toggled by arqn, to be send during tx                            */ 
+
+(
+0 llid0
+1 llid1
+2 nesn
+3 sn
+4 md
+5 wak
+)
+
+/* AFH flags */
+(
+0 AFH_CFG_ON
+1 AFH_CFG_TIMER
+2 send_lmp_set_afh
+3 AFH_CFG_REPORT_MODE
+4 AFH_CFG_MASTER_SENT_REQ
+)
+
+/* LLID CODE */
+(	
+1 LLID_L2CAP_CONT
+2 LLID_L2CAP_START
+3 LLID_LMP
+)
+
+/* ============== master_state ==========*/
+(
+0  master_in_idle
+1  master_in_inquiry
+2  master_in_page
+10 master_in_becoming_slave
+15 master_in_conn
+)
+(
+0 newrev_feature_bettx
+1 newrev_feature_betplltx
+2 newrev_feature_skip_retransmit
+3 newrev_feature_init_radio_after_sleep
+4 newrev_feature_no_lpolog
+)
+/*************mem_pincode_state****************/
+(
+0 pincode_state_ilde
+1 pincode_state_wait_pincode
+2 pincode_state_pincode_ready
+)
+
+
+// lpm_write
+(
+1 lpmreg_sel_ctrl
+2 lpmreg_sel_ctrl2
+4 lpmreg_sel_gpiolow
+8 lpmreg_sel_gpiohigh
+16 lpmreg_sel_counter
+)
+
+//scan_mode
+(
+0 inq_scan_mode
+1 page_scan_mode
+2 page_inq_enable
+)
+//mem_neogotiation_state
+(
+ 0 default_neogotiation_state
+ 1 prarm_neogotiation
+)
+
+//mem_lpm_wake_lock
+(
+
+2 wake_lock_hci_host
+3 wake_link_key_exists
+4 wake_lock_delay
+5 wake_lock_uart_tx
+6 wake_lock_uart_rx
+7 wake_lock_button
+8 wake_lock_cmd
+9 wake_lock_app
+10 wake_lock_lmp_tx
+11 wake_lock_lmp_rx
+12 wake_lock_l2cap_tx
+13 wake_lock_l2cap_rx
+14 wake_lock_ipc_c512bt
+15 wake_lock_ipc_bt2c51
+
+)
+
+(
+0 bt_disabled
+1 ble_disabled
+2 module_disable
+
+)
+
+(
+0x33  REC_3_MODE
+0x34  REC_4_MODE
+0x35  REC_4_MODE_STATIC_ADDRESS
+0x36  REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS
+0x37  REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS
+)
+
+
+//sniff UART_TX UART_RX
+(
+6 UART_WAKEUP_TX
+7 UART_WAKEUP_RX
+)
+
+
+
+
+(
+0 P24G_SM_PAIRING_SUCC
+1 P24G_SM_PAIRING_REQUEST
+2 P24G_SM_PAIRING_WAIT_ADDR
+3 P24G_SM_PAIRING_COMPLETE
+4 P24G_SM_PAIRING_WAIT_SUCC
+)
+
+(
+0 P24G_PAIRING_REQ_HEAD
+1 P24G_PAIRING_COMPLETE_HEAD
+)
+
+(
+0 ENSURE_OFF_24G
+1 ENSURE_ON_24G
+)
+
+/* 24g */
+(
+6 dlen_24g
+14 plen_24g
+90 blen_tx_24g
+106 blen_rx_24g
+42 blen_txack_24g
+58 blen_rxack_24g
+3 retry_24g
+0xaaf08e acc_24g
+0x15c4 crc_data_3byte
+0xbb81 crc_data_6byte
+0x4160 crc_ack
+41390 crc_ack_4byte
+
+1 NO_ACK_24g
+0 with_ack_24g
+
+)
+
+
+
+0x0215 mem_ucode_status
+0x0216 mem_otp_ucode_flag
+0x0218 mem_spid_tbuf/* spid buf: 03 addr[23:16] addr[15:8] addr[7:0] */
+0x0219 mem_iicd_tbuf/* iicd buf: iic_adr addr[15:8] addr[7:0] iic_adr */
+0x0219 mem_addr_hi
+0x021a mem_addr_mi
+0x021b mem_addr_lo
+0x021c mem_iicd_addr
+0x021d mem_spid_rbuf
+0x0221 mem_ucode_buf
+0x0223 mem_ucode_len
+0x0225 mem_sched_addr
+0x0227 mem_ucode_ptr
+0x0229 mem_ucode_keybuf
+0x0239 mem_check_plap_temp
+0x024b mem_sensor_id
+0x024c mem_reconnect_flag
+0x024d mem_switch_fail_master_count
+0x024e mem_app_evt_timer_count
+
+//adc read
+(
+0 ADC_CONFIG_VINLPM
+1 ADC_CONFIG_HVIN
+2 ADC_CONFIG_GPIO
+)
+
+
+0x0000 otp_ucode_flag
+0x07f0 otp_ucode_aeskey
+
+/* adc data addr and flag */
+(
+0x07e0 OTP_CHIP_FUNCTIONS
+0x07e2 otp_adc_io_0_5V_addr
+0x07e4 otp_adc_hvin_1V_addr
+0x07e6 otp_adc_vinlpm_2V_addr
+0x07e8 otp_adc_io_1V_addr
+0x07ea otp_adc_hvin_5V_addr
+0x07ec otp_adc_vinlpm_3V_addr
+0x07ee otp_adc_flag_addr
+0xaa55 OTP_ADC_FLAG
+)
+
+/* data stored in eeprom */
+(
+0	eeprom_bdaddr_list
+0	eeprom_nv_ram
+28	eeprom_last_record
+29	eeprom_le_reconn_local_addr
+35	eeprom_linkkey_list//64
+
+99	eeprom_module_bt_adss//6
+105	eeprom_module_le_adss//6
+111	eeprom_module_pincode_length//1
+112	eeprom_module_pincode//15
+127	eeprom_module_bt_name_length//1
+128	eeprom_module_bt_name//32
+160	eeprom_module_ble_name_length//1
+161	eeprom_module_ble_name//31
+192	eeprom_module_trans_baud//3
+195	eeprom_module_init_flag//2
+197	eeprom_module_uuid//6
+203 eeprom_module_ssp_enable//1
+204 eeprom_module_end//2
+
+//dpi eeprom addr
+198 eeprom_mouse_dpi
+)
+
+/*mem_app_handshake_flag*/
+(
+0 APP_HANDSHAKE_NULL
+1 APP_HANDSHAKE_DONE
+
+)
+/*mem_device_option*/
+(
+1 dvc_op_hci
+3 dvc_op_kb
+4 dvc_op_dongle
+5 dvc_op_spp
+6 dvc_op_ukey
+7 dvc_op_ir
+
+9 dvc_op_shutter
+10 dvc_op_module
+11 dvc_op_ble_mouse
+12 dvc_op_ble_kb
+13 dvc_op_ble_prcp
+255 dvc_op_test
+//device option hight 4
+6 dvc_op_mouse
+7 dvc_op_keyboard
+//device option low 2
+(
+0 MODE_3_MOUSE
+1 MODE_4_MOUSE
+)
+)
+
+(
+3 twspi_sclk
+4 twspi_sdio
+)
+
+(
+4 pan_clk_bit
+5 pan_dat_bit
+6 pan_mov_bit
+)
+
+(
+7 otp_uflag_aes
+6 otp_uflag_skip_eep
+5 otp_uflag_skip_flash
+4 otp_uflag_hci
+)
+
+/* ir command */
+(
+1 ircmd_record
+2 ircmd_play
+3 ircmd_write_pulse
+4 ircmd_write_seq
+5 ircmd_write_next
+
+8 ircmd_test_play
+9 ircmd_test_rec
+
+10 ircmd_report_pulse
+11 ircmd_report_seq
+12 ircmd_report_raw
+
+20 ircmd_screen_on
+21 ircmd_screen_off
+)
+
+(
+7 gpio_active_bit
+)
+(
+2 HID_HANDSHAKE_TIMEOUT
+
+)
+
+(
+1 APP_FLAG_RECONNECT
+)
+(
+5 LPM_WAKE_UP_DELAY_TIMER
+)
+
+
+//mem_app_disconn_reason
+//mem_app_disconn_reason_flag
+//bit map
+(
+2 APP_DISC_RSN_SIZE
+)
+(
+0 APP_DISC_BY_BUTTON
+1 APP_DISC_AFTER_PAIRING
+2 APP_DISC_AFTER_RECONN
+3 APP_DISC_AFTER_SNIFF
+4 APP_DISC_AFTER_SETUP_DONE
+5 APP_DISC_AFTER_HANDSHAKE
+6 APP_DISC_BT
+7 APP_DISC_BLE
+8 APP_DISC_L2CAP_REFUSED
+9 APP_DISC_SWITCH_FAIL
+)
+//eeprom init flag
+(
+	0xaa55 EEPROM_INIT_FLAG
+)
+
+
+
+0x024f mem_h5rx_ackcnt
+0x0250 mem_check_err_acl_cont
+0x0251 mem_rp_packets
+0x0252 mem_packet_type
+0x0254 mem_hci_sniff_conn_handle
+0x0256 mem_hci_sniff_max_interval
+0x0258 mem_hci_sniff_min_interval
+0x025a mem_hci_sniff_attempt
+0x025c mem_hci_sniff_timeout
+0x025e mem_voice_setting
+0x0260 mem_retransmission_effort
+0x0261 mem_sco_ptype
+0x0263 mem_extm_uap_restore
+0x0266 mem_h5rx_rptr
+0x0268 mem_h5rx_ack
+0x0269 mem_h5tx_ack
+0x026a mem_h5tx_rptr
+0x026c mem_h5tx_wptr
+0x026e mem_h5tx_free
+0x0270 mem_h5rx_tmp
+0x0271 mem_h5tx_seq
+0x0272 mem_hci_acl_queue_wptr
+0x0274 mem_hci_acl_queue_rptr
+0x0276 mem_hci_acl_queue_end
+0x0278 mem_hci_acl_queue_wcnt
+0x0279 mem_hci_acl_cnt
+0x027a mem_hci_acl_tx_trigger_wptr//tx via uart
+0x027c mem_ucode_id_local
+0x027d mem_ucode_id_remote
+0x027e mem_check_sum
+0x027f mem_ucode_temp
+0x0280 mem_ucode_temp1
+0x0281 mem_lock_in_enc//boolean
+0x0282 mem_hci_disconn_reason
+0x0283 mem_hci_curr_len
+0x0284 mem_hci_curr_target
+
+
+15 hci_flag_rp
+//mem_hci_options bit map
+(
+1 hci_option_h4
+2 hci_option_protocol2
+3 hci_option_protocol3
+4 hci_option_uart
+5 hci_option_usb
+6 hci_option_phy2
+7 hci_option_phy3
+)
+// UART baud rate @6MHz
+(
+0 uart_ctrl_bit_enable
+3 uart_ctrl_bit_slip_protocol
+
+)
+
+//bit map of core_uart_ctrl
+(
+
+)
+//bit map of core_uart_status
+(
+0 uart_status_tx_fifo_full
+1 uart_status_tx_fifo_empty
+2 uart_status_tx_busy
+3 uart_status_rx_fifo_empty
+
+)
+//HCI H4 LOG related
+(
+0x4850 mem_hci_log
+8 hci_log_size
+100 hci_log_cnt
+
+)
+//HCI H4 Packet TYPE
+(
+0x01 HCI_H4_TYPE_CMD
+0x02 HCI_H4_TYPE_ACL
+0x04 HCI_H4_TYPE_EVENT
+
+)
+// HCI command opcode group field values
+(
+0x01 HCI_OGF_LINK_CONTROL
+0x02 HCI_OGF_LINK_POLICY
+0x03 HCI_OGF_BASEBAND
+0x04 HCI_OGF_INFO
+0x05 HCI_OGF_STATUS
+0x06 HCI_OGF_TEST
+0x08 HCI_OGF_LOW_ENERGY
+0x3e HCI_OGF_LOGO_TESTING
+0x3f HCI_OGF_VENDOR_SPECIFIC
+)
+
+// HCI link control opcode command field values, OGF=1
+(
+0x01 HCI_INQUIRY 
+0x02 HCI_INQUIRY_CANCEL 
+0x03 HCI_PERIODIC_INQUIRY_MODE 
+0x04 HCI_EXIT_PERIODIC_INQUIRY_MODE 
+0x05 HCI_CREATE_CONNECTION 
+0x06 HCI_DISCONNECT 
+0x07 HCI_ADD_SCO_CONNECTION 
+0x08 HCI_CREATE_CONNECTION_CANCEL
+0x09 HCI_ACCEPT_CONNECTION 
+0x0A HCI_REJECT_CONNECTION 
+0x0B HCI_LINK_KEY_REQUEST_REPLY 
+0x0C HCI_LINK_KEY_REQUEST_NEGATIVE_REPLY 
+0x0D HCI_PIN_CODE_REQUEST_REPLY 
+0x0E HCI_PIN_CODE_REQUEST_NEGATIVE_REPLY 
+0x0F HCI_CHANGE_CONNECTION_PACKET_TYPE 
+0x11 HCI_AUTHENTICATION_REQUESTED 
+0x13 HCI_SET_CONNECTION_ENCRYPTION 
+0x15 HCI_CHANGE_CONNECTION_LINK_KEY 
+0x17 HCI_MASTER_LINK_KEY 
+0x19 HCI_REMOTE_NAME_REQUEST 
+0x1A HCI_REMOTE_NAME_REQUEST_CANCEL
+0x1B HCI_READ_REMOTE_SUPPORTED_FEATURES 
+0x1C HCI_READ_REMOTE_EXT_FEATURES 
+0x1D HCI_READ_REMOTE_VERSION_INFORMATION 
+0x1F HCI_READ_CLOCK_OFFSET 
+0x20 HCI_READ_LMP_HANDLE
+0x28 HCI_SETUP_SCO_CONNECTION
+0x29 HCI_ACCEPT_SCO_CONNECTION
+0x2A HCI_REJECT_SCO_CONNECTION
+0x2B HCI_IO_CAP_REQUEST_REPLY
+0x2C HCI_USER_CONFIRMATION_REQUEST_REPLY
+0x2D HCI_USER_CONFIRMATION_REQUEST_NEGATIVE_REPLY
+0x2E HCI_USER_PASSKEY_REQUEST_REPLY
+0x2F HCI_USER_PASSKEY_REQUEST_NEGATIVE_REPLY
+0x30 HCI_REMOTE_OOB_DATA_REQUEST_REPLY
+0x33 HCI_REMOTE_OOB_DATA_REQUEST_NEGATIVE_REPLY
+0x34 HCI_IO_CAPABILITY_REQUEST_NEGATIVE_REPLY
+0x35 HCI_CREATE_PHYSICAL_LINK
+0x36 HCI_ACCEPT_PHYSICAL_LINK
+0x37 HCI_DISCONNECT_PHYSICAL_LINK
+0x38 HCI_CREATE_LOGICAL_LINK
+0x39 HCI_ACCEPT_LOGICAL_LINK
+0x3A HCI_DISCONNECT_LOGICAL_LINK
+0x3B HCI_LOGICAL_LINK_CANCEL
+0x3C HCI_FLOW_SPEC_MODIFY
+0x3D HCI_ENHANCED_SETUP_SYNCHRONOUS_CONNECTION
+0x3E HCI_ENHANCED_ACCEPT_SYNCHRONOUS_CONNECTION_REQUEST
+0x3F HCI_TRUNCATED_PAGE
+0x40 HCI_TRUNCATED_PAGE_CANCEL
+0x41 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST
+0x42 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST_RECEIVE
+0x43 HCI_START_SYNCHRONIZATION_TRAIN
+0x44 HCI_RECEIVE_SYNCHRONIZATION_TRAIN
+0x45 HCI_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY
+)
+
+
+// HCI link policy commands OCF value, OGF=2
+(
+0x01 HCI_HOLD_MODE 
+0x03 HCI_SNIFF_MODE 
+0x04 HCI_EXIT_SNIFF_MODE 
+0x05 HCI_PARK_MODE 
+0x06 HCI_EXIT_PARK_MODE 
+0x07 HCI_QOS_SETUP 
+0x09 HCI_ROLE_DISCOVERY 
+0x0B HCI_SWITCH_ROLE 
+0x0C HCI_READ_LINK_POLICY_SETTINGS 
+0x0D HCI_WRITE_LINK_POLICY_SETTINGS 
+0x0e HCI_READ_DEFAULT_LINK_POLICY_SETTINGS
+0x0f HCI_WRITE_DEFAULT_LINK_POLICY_SETTINGS
+0x10 HCI_FLOW_SPECIFICATION
+0x11 HCI_SNIFF_SUBRATING
+)
+
+// HCI host controller and baseband commands OCF values, OGF=3
+(
+0x01 HCI_SET_EVENT_MASK 
+0x03 HCI_RESET 
+0x05 HCI_SET_EVENT_FILTER 
+0x08 HCI_FLUSH 
+0x09 HCI_READ_PIN_TYPE 
+0x0A HCI_WRITE_PIN_TYPE 
+0x0B HCI_CREATE_NEW_UNIT_KEY 
+0x0D HCI_READ_STORED_LINK_KEY 
+0x11 HCI_WRITE_STORED_LINK_KEY 
+0x12 HCI_DELETE_STORED_LINK_KEY 
+0x13 HCI_WRITE_LOCAL_NAME 
+0x14 HCI_READ_LOCAL_NAME 
+0x15 HCI_READ_CONN_ACCEPT_TIMEOUT 
+0x16 HCI_WRITE_CONN_ACCEPT_TIMEOUT 
+0x17 HCI_READ_PAGE_TIMEOUT 
+0x18 HCI_WRITE_PAGE_TIMEOUT 
+0x19 HCI_READ_SCAN_ENABLE 
+0x1A HCI_WRITE_SCAN_ENABLE 
+0x1B HCI_READ_PAGE_SCAN_ACTIVITY 
+0x1C HCI_WRITE_PAGE_SCAN_ACTIVITY 
+0x1D HCI_READ_INQUIRY_SCAN_ACTIVITY 
+0x1E HCI_WRITE_INQUIRY_SCAN_ACTIVITY 
+0x1F HCI_READ_AUTHENTICATION_ENABLE 
+0x20 HCI_WRITE_AUTHENTICATION_ENABLE 
+0x21 HCI_READ_ENCRYPTION_MODE 
+0x22 HCI_WRITE_ENCRYPTION_MODE 
+0x23 HCI_READ_CLASS_OF_DEVICE 
+0x24 HCI_WRITE_CLASS_OF_DEVICE 
+0x25 HCI_READ_VOICE_SETTING 
+0x26 HCI_WRITE_VOICE_SETTING 
+0x27 HCI_READ_AUTOMATIC_FLUSH_TIMEOUT 
+0x28 HCI_WRITE_AUTOMATIC_FLUSH_TIMEOUT 
+0x29 HCI_READ_NUM_BROADCAST_RETRANSMISSIONS 
+0x2A HCI_WRITE_NUM_BROADCAST_RETRANSMISSIONS 
+0x2B HCI_READ_HOLD_MODE_ACTIVITY 
+0x2C HCI_WRITE_HOLD_MODE_ACTIVITY 
+0x2D HCI_READ_TRANSMIT_POWER_LEVEL 
+0x2E HCI_READ_SCO_FLOW_CONTROL_ENABLE 
+0x2F HCI_WRITE_SCO_FLOW_CONTROL_ENABLE 
+0x31 HCI_SET_CONTROLLER_TO_HOST_FLOW_CONTROL 
+0x33 HCI_HOST_BUFFER_SIZE 
+0x35 HCI_HOST_NUM_COMPLETED_PACKETS 
+0x36 HCI_READ_LINK_SUPERVISION_TIMEOUT 
+0x37 HCI_WRITE_LINK_SUPERVISION_TIMEOUT 
+0x38 HCI_READ_NUMBER_OF_SUPPORTED_IAC 
+0x39 HCI_READ_CURRENT_IAC_LAP 
+0x3A HCI_WRITE_CURRENT_IAC_LAP 
+0x3B HCI_READ_PAGE_SCAN_PERIOD_MODE 
+0x3C HCI_WRITE_PAGE_SCAN_PERIOD_MODE 
+0x3D HCI_READ_PAGE_SCAN_MODE 
+0x3E HCI_WRITE_PAGE_SCAN_MODE 
+0x3F HCI_SET_AFH_CHANNEL_CLASSIFICATION 
+
+
+0x42 HCI_READ_INQUIRY_SCAN_TYPE 
+0x43 HCI_WRITE_INQUIRY_SCAN_TYPE 
+0x44 HCI_READ_INQUIRY_MODE 
+0x45 HCI_WRITE_INQUIRY_MODE 
+0x46 HCI_READ_PAGE_SCAN_TYPE 
+0x47 HCI_WRITE_PAGE_SCAN_TYPE 
+
+0x48 HCI_READ_AFH_CHANNEL_ACCESSMENT_MODE 
+0x49 HCI_WRITE_AFH_CHANNEL_ACCESSMENT_MODE 
+0x51 HCI_READ_EXTENDED_INQUIRY_RESPONSE
+0x52 HCI_WRITE_EXTENDED_INQUIRY_RESPONSE
+0x53 HCI_REFRESH_ENCRYPTION_KEY
+0x55 HCI_READ_SIMPLE_PAIRING_MODE
+0x56 HCI_WRITE_SIMPLE_PAIRING_MODE
+0x57 HCI_READ_LOCAL_OOB_DATA
+0x58 HCI_READ_INQUIRY_RESPONSE_TRANSMIT_POWER_LEVEL
+0x59 HCI_WRITE_INQUIRY_TRANSMIT_POWER_LEVEL
+0x60 HCI_SEND_KEYPRESS_NOTIFICATION
+0x5A HCI_READ_DEFAULT_ERRONEOUS_DATA_REPORTING
+0x5B HCI_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING
+0x5F HCI_ENHANCED_FLUSH
+0x61 HCI_READ_LOGICAL_LINK_ACCEPT_TIMEOUT
+0x62 HCI_WRITE_LOGICAL_LINK_ACCEPT_TIMEOUT
+0x63 HCI_SET_EVENT_MASK_PAGE_2
+0x64 HCI_READ_LOCATION_DATA
+0x65 HCI_WRITE_LOCATION_DATA
+0x66 HCI_READ_FLOW_CONTROL_MODE
+0x67 HCI_WRITE_FLOW_CONTROL_MODE
+0x68 HCI_READ_ENHANCE_TRANSMIT_POWER_LEVEL
+0x69 HCI_READ_BEST_EFFORT_FLUSH_TIMEOUT
+0x6A HCI_WRITE_BEST_EFFORT_FLUSH_TIMEOUT
+0x6B HCI_SHORT_RANGE_MODE
+0x6C HCI_READ_LE_HOST_SUPPORT
+0x6D HCI_WRITE_LE_HOST_SUPPORT
+0x6E HCI_SET_MWS_CHANNEL_PARAMETERS
+0x6F HCI_SET_EXTERNAL_FRAME_CONFIGURATION
+0x70 HCI_SET_MWS_SIGNALING
+0x71 HCI_SET_MWS_TRANSPORT_LAYER
+0x72 HCI_SET_MWS_SCAN_FREQUENCY_TABLE
+0x73 HCI_SET_MWS_PATTERN_CONFIGURATION
+0x74 HCI_SET_RESERVED_LT_ADDR
+0x75 HCI_DELETE_RESERVED_LT_ADDR
+0x76 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST_DATA
+0x77 HCI_READ_SYNCHRONIZATION_TRAIN_PARAMETERS
+0x78 HCI_WRITE_SYNCHRONIZATION_TRAIN_PARAMETERS
+0x79 HCI_READ_SECURE_CONNECTIONS_HOST_SUPPORT
+0x7A HCI_WRITE_SECURE_CONNECTIONS_HOST_SUPPORT
+0x7B HCI_READ_AUTHENTICATED_PAYLOAD_TIMEOUT
+0x7C HCI_WRITE_AUTHENTICATED_PAYLOAD_TIMEOUT
+0x7D HCI_READ_LOCAL_OOB_EXTENDED_DATA
+0x7E HCI_READ_EXTENDED_PAGE_TIMEOUT
+0x7F HCI_WRITE_EXTENDED_PAGE_TIMEOUT
+0x80 HCI_READ_EXTENDED_INQUIRY_LENGTH
+0x81 HCI_WRITE_EXTENDED_INQUIRY_LENGTH
+)
+
+
+// HCI informational parameters OCF values, OGF=4
+(
+0x01 HCI_READ_LOCAL_VERSION_INFORMATION 
+0x02 HCI_READ_LOCAL_SUPPORTED_COMMANDS
+0x03 HCI_READ_LOCAL_SUPPORTED_FEATURES 
+0x04 HCI_READ_LOCAL_EXT_FEATURES 
+0x05 HCI_READ_BUFFER_SIZE 
+0x07 HCI_READ_COUNTRY_CODE 
+0x09 HCI_READ_BD_ADDR 
+0x0A HCI_REJECT_CONNECTION_REQUEST
+0x0B HCI_READ_LOCAL_SUPPORTED_CODECS
+)
+
+// HCI status parameters OCF values, OGF=5
+(
+0x01 HCI_READ_FAILED_CONTACT_COUNTER 
+0x02 HCI_RESET_FAILED_CONTACT_COUNTER 
+0x03 HCI_GET_LINK_QUALITY 
+0x05 HCI_READ_RSSI 
+0x06 HCI_READ_AFH_CHANNEL_MAP
+0x07 HCI_READ_BD_CLOCK
+0x08 HCI_READ_ENCRYPTION_KEY_SIZE
+0x09 HCI_READ_LOCAL_AMP_INFO
+0x0A HCI_READ_LOCAL_AMP_ASSOC
+0x0B HCI_WRITE_REMOTE_AMP_ASSOC
+0x0C HCI_GET_MWS_TRANSPORT_LAYER_CONFIGURATION
+0x0D HCI_SET_TRIGGERED_CLOCK_CAPTURE
+)
+
+// HCI testing command OCF values, OGF=6
+(
+0x01 HCI_READ_LOOPBACK_MODE 
+0x02 HCI_WRITE_LOOPBACK_MODE 
+0x03 HCI_ENABLE_DEVICE_UNDER_TEST_MODE 
+0x04 HCI_WRITE_SIMPLE_PAIRING_DEBUG_MODE
+0x07 HCI_ENABLE_AMP_RECEIVER_REPORTS
+0x08 HCI_AMP_TEST_END
+0x09 HCI_AMP_TEST
+0x0A HCI_WRITE_SECURE_CONNECTIONS_TEST_MODE
+)
+
+// HCI vendor specific command OCF values -OGF=3F
+(
+0x01 HCI_WRITE_BD_ADDR 
+0x02 HCI_READ_INQUIRY_RESPONSE_TIMEOUT 
+0x03 HCI_WRITE_INQUIRY_RESPONSE_TIMEOUT 
+0x04 HCI_READ_PAGE_SCAN_REPETITION_MODE 
+0x05 HCI_WRITE_PAGE_SCAN_REPETITION_MODE 
+0x06 HCI_READ_PAGE_RESPONSE_TIMEOUT 
+0x07 HCI_WRITE_PAGE_RESPONSE_TIMEOUT 
+0x08 HCI_READ_NEW_CONNECTION_TIMEOUT 
+0x09 HCI_WRITE_NEW_CONNECTION_TIMEOUT 
+0x0a HCI_INITIALIZE_BASEBAND 
+0x0b HCI_WRITE_LOCAL_SUPPORTED_FEATURES 
+0x0c HCI_WRITE_PARK_PARAMETERS 
+0x0d HCI_READ_PARK_PARAMETERS 
+0x0e HCI_WRITE_QUALITY_OF_SERVICE 
+0x0f HCI_NOT_USED 
+0x10 HCI_MODIFY_BEACON_PARAMETERS 
+0x11 HCI_UNPARK_USING_PM_ADDR 
+0x12 HCI_WRITE_HOPPING_CHANNELS 
+0x13 HCI_SLEEP_FOREVER_MODE 
+0x14 HCI_WRITE_AUTO_PAGE_SCAN_ENABLE 
+0x15 HCI_READ_AUTO_PAGE_SCAN_ENABLE 
+0x16 HCI_SET_ENCRYPTION_KEY_SIZE 
+0x17 HCI_INVALIDATE_FLASH_AND_REBOOT 
+0x18 HCI_UPDATE_UART_BAUD_RATE 
+0x19 HCI_WRITE_GPIO_1_4_AS_OUTPUT 
+0x1A HCI_WRITE_GPIO_2_LED 
+0x1B HCI_SET_TESTMODE_TYPE 
+0x1C HCI_WRITE_SCO_PCM_INT_PARAM 
+0x1D HCI_READ_SCO_PCM_INT_PARAM 
+0x1E HCI_WRITE_PCM_DATA_FORMAT_PARAM 
+0x1F HCI_READ_PCM_DATA_FORMAT_PARAM 
+0x20 HCI_WRITE_COMFORT_NOISE_PARAM 
+0x21 HCI_READ_COMFORT_NOISE_PARAM 
+0x22 HCI_WRITE_SCO_TS 
+0x23 HCI_READ_SCO_TS 
+0x24 HCI_WRITE_PCM_LOOPBACK_MODE 
+0x25 HCI_READ_PCM_LOOPBACK_MODE 
+0x26 HCI_SET_TRANSMIT_POWER 
+0x27 HCI_SET_SLEEPMODE_PARAM 
+0x28 HCI_READ_SLEEPMODE_PARAM 
+0x29 HCI_SLEEPMODE_CMD 
+0x2A HCI_DELAY_PERIPHERAL_SCO_STARTUP 
+0x2B HCI_WRITE_RECEIVE_ONLY 
+0x2C HCI_WRITE_RATE_CONTROL 
+0x2D HCI_TX_UNMOD_CARRIER 
+0x2E HCI_DOWNLOAD_MINIDRIVER 
+0x2F HCI_CRYSTAL_PPM 
+0x30 HCI_SET_POWER_AMP_BIAS 
+0x31 HCI_SET_HAM_BEHAVIOR 
+0x32 HCI_SET_AFH_BEHAVIOR 
+0x33 HCI_READ_USER_DEFINED_NVRAM 
+0x34 HCI_ENABLE_RADIO 
+0x35 HCI_READ_DIAGNOSTIC_INFO 
+0x36 HCI_GET_HID_DEVICE_LIST 
+0x37 HCI_ADD_HID_DEVICE 
+0x38 HCI_READ_APP_FW_CONFIG_VERSION 
+0x39 HCI_DELETE_HID_DEVICE 
+0x3B HCI_ENABLE_USB_HID_EMULATION 
+// 0x3A available
+// 0x3B available
+0x3C HCI_SEND_LMPDU 
+0x3D HCI_AUTO_PAIR_REQ 
+0x3E HCI_READ_VS_EXTENSION 
+0x3F HCI_WRITE_VS_EXTENSION 
+
+0x77 HCI_OPCODE_FC77
+0x79 HCI_OPCODE_FC79
+0xC4 HCI_DOWNLOAD_PATCH
+0xCC HCI_OPCODE_FCCC
+
+0x00 HCI_VENDOR_CMD_RESET
+0x01 HCI_VENDOR_CMD_CHIPID
+0x02 HCI_VENDOR_CMD_BAUD
+0x03 HCI_VENDOR_CMD_PATCH
+0x04 HCI_VENDOR_CMD_PATCH_DONE
+0x05 HCI_VENDOR_CMD_ECHO
+0x06 HCI_VENDOR_CMD_BDADDR
+
+0x07 HCI_VENDOR_CMD_ENTER_LPM
+0x08 HCI_VENDOR_CMD_COMMU_READY
+
+0x10 HCI_VENDOR_CMD_MEM
+0x11 HCI_VENDOR_CMD_EEP
+)
+
+//HCI LE controller command OCF values, OGF=8
+(
+0x01 HCI_LE_SET_EVENT_MASK
+0x02 HCI_LE_READ_BUFFER_SIZE
+0x03 HCI_LE_READ_LOCAL_SUPPORTED_FEATURES
+0x05 HCI_LE_SET_RANDOM_ADDRESS
+0x06 HCI_LE_SET_ADVERTISING_PARAMETERS
+0x07 HCI_LE_READ_ADVERTISING_CHANNEL_TX_POWER
+0x08 HCI_LE_SET_ADVERTISING_DATA
+0x09 HCI_LE_SET_SCAN_RESPONSE_DATA
+0x0A HCI_LE_SET_ADVERTISE_ENABLE
+0x0B HCI_LE_SET_SCAN_PARAMETERS
+0x0C HCI_LE_SET_SCAN_ENABLE
+0x0D HCI_LE_CREATE_CONNECTION
+0x0E HCI_LE_CREATE_CONNECTION_CANCEL
+0x0F HCI_LE_READ_WHITE_LIST_SIZE
+0x10 HCI_LE_CLEAR_WHITE_LIST
+0x11 HCI_LE_ADD_DEVICE_TO_WHITE_LIST
+0x12 HCI_LE_REMOVE_DEVICE_FROM_WHITE_LIST
+0x13 HCI_LE_CONNECTION_UPDATE
+0x14 HCI_LE_SET_HOST_CHANNEL_CLASSIFICATION
+0x15 HCI_LE_READ_CHANNEL_MAP
+0x16 HCI_LE_READ_REMOTE_USED_FEATURES
+0x17 HCI_LE_ENCRYPT
+0x18 HCI_LE_RAND
+0x19 HCI_LE_START_ENCRYPTION
+0x1A HCI_LE_LONG_TERM_KEY_REQUEST_REPLY
+0x1B HCI_LE_LONG_TERM_KEY_REQUEST_NEGATIVE_REPLY
+0x1C HCI_LE_READ_SUPPORTED_STATES
+0x1D HCI_LE_RECEIVER_TEST
+0x1E HCI_LE_TRANSMITTER_TEST
+0x1F HCI_LE_TEST_END
+0x20 HCI_LE_REMOTE_CONNECTION_PARAMETER_REQUEST_REPLY
+0x21 HCI_LE_REMOTE_CONNECTION_PARAMETER_REQUEST_NEGATIVE_REPLY
+)
+// HCI event code
+(
+0x01 HCI_EVENT_INQUIRY_COMPLETE
+0x02 HCI_EVENT_INQUIRY_RESULT
+0x03 HCI_EVENT_CONNECTION_COMPLETE
+0x04 HCI_EVENT_CONNECTION_REQUEST
+0x05 HCI_EVENT_DISCONNECTION_COMPLETE
+0x06 HCI_EVENT_AUTHENTICATION_COMPLETE
+0x07 HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
+0x08 HCI_EVENT_ENCRYPTION_CHANGE_COMPLETE
+0x09 HCI_EVENT_CHANGE_CONNECTION_LINK_KEY_COMPLETE
+0x0A HCI_EVENT_MASTER_LINK_KEY_COMPLETE
+0x0B HCI_EVENT_READ_REMOTE_FEATURES_COMPLETE
+0x0C HCI_EVENT_READ_REMOTE_VERSION_INFORMATION_COMPLETE
+0x0D HCI_EVENT_QOS_SETUP_COMPLETE
+0x0E HCI_EVENT_COMMAND_COMPLETE
+0x0F HCI_EVENT_COMMAND_STATUS
+0x10 HCI_EVENT_HARDWARE_ERROR
+0x11 HCI_EVENT_FLUSH_OCCURRED
+0x12 HCI_EVENT_ROLE_CHANGE
+0x13 HCI_EVENT_NUM_COMPLETED_PACKETS
+0x14 HCI_EVENT_MODE_CHANGE
+0x15 HCI_EVENT_RETURN_LINK_KEYS
+0x16 HCI_EVENT_PIN_CODE_REQUEST
+0x17 HCI_EVENT_LINK_KEY_REQUEST
+0x18 HCI_EVENT_LINK_KEY_NOTIFICATION
+0x19 HCI_EVENT_LOOPBACK_COMMAND
+0x1A HCI_EVENT_DATA_BUFFER_OVERFLOW
+0x1B HCI_EVENT_MAX_SLOTS_CHANGE
+0x1C HCI_EVENT_READ_CLOCK_OFFSET_COMPLETE
+0x1D HCI_EVENT_CONNECTION_PACKET_TYPE_CHANGED
+0x1E HCI_EVENT_QOS_VIOLATION
+0x1F HCI_EVENT_PAGE_SCAN_MODE_CHANGE
+0x20 HCI_EVENT_PAGE_SCAN_REPETITION_MODE_CHANGE
+0x21 HCI_EVENT_FLOW_SPECIFICATION_COMPLETE
+0x22 HCI_EVENT_INQUIRY_RESULT_WITHRSSI
+0x23 HCI_EVENT_READ_REMOTE_EXT_FEATURES_COMPLETE
+0x2C HCI_EVENT_SCO_CONNECTION_COMPLETE
+0x2D HCI_EVENT_SCO_CONNECTION_CHANGED
+0x2E HCI_EVENT_SNIFF_SUBRATING
+0x2F HCI_EVENT_EXT_INQUIRY_RESULT
+0x30 HCI_EVENT_ENCRYPT_KEY_REFRESH_COMPLETE
+0x31 HCI_EVENT_IO_CAP_REQ
+0x32 HCI_EVENT_IO_CAP_RESPONSE
+0x33 HCI_EVENT_USER_CONFIRMATION_REQUEST
+0x34 HCI_EVENT_UESR_PASSKEY_REQUEST
+0x35 HCI_EVENT_REMOTE_OOB_DATA_REQUEST
+0x36 HCI_EVENT_SIMPLE_PAIRING_COMPLETE
+0x38 HCI_EVENT_LINK_SUPERVISION_TIMEOUT_CHANGED
+0x39 HCI_EVENT_ENHANCED_FLUSH_COMPLETE
+0x3B HCI_EVENT_USER_PASSKEY_NOTIFICATION
+0x3C HCI_EVENT_KEYPRESS_NOTIFICATION
+0x3D HCI_EVENT_REMOTE_HOST_SUPPORTED_FEATURES_NOTIFICATION 
+0x3E HCI_EVENT_LE_META_EVENT
+0x40 HCI_EVENT_PHYSICAL_LINK_COMPLETE
+0x41 HCI_EVENT_CHANNEL_SELECTED
+0x42 HCI_EVENT_DISCONNECTION_PHYSICAL_LINK_COMPLETE
+0x43 HCI_EVENT_PHYSICAL_LINK_LOSS_EARLY_WARNING
+0x44 HCI_EVENT_PHYSICAL_LINK_RECOVERY
+0x45 HCI_EVENT_LOGICAL_LINK_COMPLETE
+0x46 HCI_EVENT_DISCONNECTION_LOGICAL_LINK_COMPLETE
+0x47 HCI_EVENT_FLOW_SPEC_MODIFY_COMPLETE
+0x48 HCI_EVENT_NUMBER_OF_COMPLETED_DATA_BLOCKS
+0x49 HCI_EVENT_AMP_START_TEST
+0x4A HCI_EVENT_AMP_TEST_END
+0x4B HCI_EVENT_AMP_RECEIVER_REPORT
+0x4C HCI_EVENT_SHORT_RANGE_MODE_CHANGE_COMPLETE
+0x4D HCI_EVENT_AMP_STATUS_CHANGE
+0x4E HCI_EVENT_TRIGGERED_CLOCK_CAPTURE
+0x4F HCI_EVENT_SYNCHRONIZATION_TRAIN_COMPLETE
+0x50 HCI_EVENT_SYNCHRONIZATION_TRAIN_RECEIVED
+0x51 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_RECEIVE
+0x52 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_TIMEOUT
+0x53 HCI_EVENT_TRUNCATED_PAGE_COMPLETE
+0x54 HCI_EVENT_SLAVE_PAGE_RESPONSE_TIMEOUT
+0x55 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_CHANNEL_MAP_CHANGE
+0x56 HCI_EVENT_INQUIRY_RESPONSE_NOTIFICATION
+0x57 HCI_EVENT_AUTHENTICATED_PAYLOAD_TIMEOUT_EXPIRED
+
+0xFE HCI_EVENT_LOGO_TESTING
+0xFF HCI_EVENT_VENDOR_SPECIFIC
+)
+(
+0x01 HCI_VENDOR_EVENT_COMMU_READY
+)
+//HCI LE SUBEVENT CODE
+(
+0x01 HCI_LE_SUBEVENT_CONN_COMPLETE
+0x02 HCI_LE_SUBEVENT_ADV_REPORT
+0x03 HCI_LE_SUBEVENT_CONN_UPDATE_COMPLETE
+0x04 HCI_LE_SUBEVENT_REMOTE_FEATURE_COMPLETE
+0x05 HCI_LE_SUBEVENT_LTK_REQUEST
+0x06 HCI_LE_SUBEVENT_REMOTE_CONN_PARAM_REQ
+)
+//HCI ErrorCodes
+(    
+0x00 HCI_SUCCESS
+0x01 HCI_ERROR_UNKNOWN_HCI_COMMAND
+0x02 HCI_ERROR_NO_CONNECTION
+0x03 HCI_ERROR_HARDWARE_FAILURE
+0x04 HCI_ERROR_PAGE_TIMEOUT
+0x05 HCI_ERROR_AUTHENTICATION_FAILURE
+0x06 HCI_ERROR_KEY_MISSING
+0x07 HCI_ERROR_MEMORY_FULL
+0x08 HCI_ERROR_CONNECTION_TIMEOUT
+0x09 HCI_ERROR_MAX_CONNECTIONS
+0x0A HCI_ERROR_MAX_SCO_CONNECTIONS
+0x0B HCI_ERROR_MAX_ACL_CONNECTIONS
+0x0C HCI_ERROR_COMMAND_DISALLOWED
+0x0D HCI_ERROR_HOST_REJECT_LIMITED_RESOURCES
+0x0E HCI_ERROR_HOST_REJECT_SECURITY_REASONS
+0x0F HCI_ERROR_HOST_REJECT_REMOTE_IS_ONLY_PERSONAL
+0x10 HCI_ERROR_HOST_TIMEOUT
+0x11 HCI_ERROR_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE
+0x12 HCI_ERROR_INVALID_HCI_COMMAND_PARAMETERS
+0x13 HCI_ERROR_REMOTE_USER_ENDED_CONNECTION
+0x14 HCI_ERROR_REMOTE_LOW_RESOURCES
+0x15 HCI_ERROR_REMOTE_POWERING_OFF
+0x16 HCI_ERROR_CONNECTION_TERMINATED_BY_LOCAL_HOST
+0x17 HCI_ERROR_REPEATED_ATTEMPTS
+0x18 HCI_ERROR_PAIRING_NOT_ALLOWED
+0x19 HCI_ERROR_UNKNOWN_LMP_PDU
+0x1A HCI_ERROR_UNSUPPORTED_REMOTE_FEATURE
+0x1B HCI_ERROR_SCO_OFFSET_REJECTED
+0x1C HCI_ERROR_SCO_INTERVAL_REJECTED
+0x1D HCI_ERROR_SCO_AIR_MODE_REJECTED
+0x1E HCI_ERROR_INVALID_LMP_PARAMETER
+0x1F HCI_ERROR_UNSPECIFIED_ERROR
+0x20 HCI_ERROR_UNSUPPORTED_LMP_PARAMETER_VALUE
+0x21 HCI_ERROR_ROLE_CHANGE_NOT_ALLOWD
+0x22 HCI_ERROR_LMP_RESPONSE_TIMEOUT
+0x23 HCI_ERROR_ERROR_TRANSACTION_COLLISION
+0x24 HCI_ERROR_LMP_PDU_NOT_ALLOWED
+0x25 HCI_ERROR_ENCRYPTION_MODE_NOT_ACCEPTABLE
+0x26 HCI_ERROR_UNIT_KEY_USED
+0x27 HCI_ERROR_QOS_NOT_SUPPORTED
+0x28 HCI_ERROR_INSTANT_PASSED
+0x29 HCI_ERROR_PAIRING_W_UNIT_KEY_NOT_SUPPORTED
+0x2a HCI_ERROR_DIFFERENT_TRANSACTION_COLLISION
+0x2c HCI_ERROR_QOS_UNACCEPTABLE_PARAMETER
+0x2d HIC_ERROR_QOS_REJECTED
+0x2e HIC_ERROR_CHANNEL_CLASSIFICATION_NOT_SUPPORTED
+0x2f HIC_ERROR_INSUFFICIENT_SECURITY
+0x30 HIC_ERROR_PARAMETER_OUT_OF_MANDATORY_PANGE
+0x32 HIC_ERROR_ROLE_SWITCH_PENDING
+0x34 HIC_ERROR_RESERVED_SLOT_VIOLATION
+0x35 HIC_ERROR_ROLE_SWITCH_FAILED
+0x36 HIC_ERROR_EXTENDED_INQUIRY_RESPONSE_TOO_LARGE
+0x37 HIC_ERROR_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST
+0x38 HIC_ERROR_HOST_BUSY_PAIRING
+)
+
+(
+0x00 HCI_LPM_OFF
+0x01 HCI_LPM_ON
+)
+
+
+(
+33 HOST_WAKE_TIME
+)
+
+(
+1 HCI_RX_WAKE
+0 HCI_RX_READY
+)
+
+
+(
+/*HID TYPE*/
+0x01 HID_TYPE_CONTROL
+0x04 HID_TYPE_GET_REPORT
+0x05 HID_TYPE_SET_REPORT
+0x07 HID_TYPE_SET_PROTOCOL
+0x09 HID_TYPE_SET_IDLE
+0x0a HID_TYPE_DATA
+/*HID REPORT ID*/
+0x01 HID_REPORT_ID_KB
+
+0x00 HID_CONTROL_P_NOOPERATION
+0x01 HID_CONTROL_P_HARDRESET
+0x02 HID_CONTROL_P_SOFTRESET
+0x03 HID_CONTROL_P_SUSPEND
+0x04 HID_CONTROL_P_EXITSUSPEND
+0x05 HID_CONTROL_P_VIRTUALCABLEUNPLUG
+)
+
+
+
+
+
+8 KB_KSCAN_ROW 
+7 KB_KSCAN_ROW_1
+20 KB_KSCAN_COL
+19 KB_KSCAN_COL_1
+
+/* ks_ctrl */
+(
+0x01 KB_KSCAN_CTRL_ENABLE					
+0x02 KB_KSCAN_CTRL_FREEZE					
+0x04 KB_KSCAN_CTRL_GHOST					
+0x08 KB_KSCAN_CTRL_INT						
+0x10 KB_KSCAN_CTRL_CLKON					
+0x20 KB_KSCAN_CTRL_FIFO_CLR				
+                  
+0 KB_KSCAN_STAT_EMPTY
+1 KB_KSCAN_STAT_FULL 					
+2 KB_KSCAN_STAT_OVERFLOW				
+6 KB_KSCAN_STAT_GHOST 
+
+0 KB_KSCAN_KEY_EVENT_STAT
+0 KB_KSCAN_KEY_PRESS	
+1 KB_KSCAN_KEY_RELEASE
+
+)
+(
+0 CACEL_RECONN_FLAG
+1 KEY_EVENT_FLAG
+2 KEY_SEARCH_M_KEY_FLAG
+3 CHECK_VDD_LOW_FLAG
+)
+
+// MACRO for map2
+
+// MACRO for map2
+
+//map2 Functions definition
+ 0x00 KB_MAP2_FUNC_REPORT0
+ 0x01 KB_MAP2_FUNC_REPORT1
+ 0x02 KB_MAP2_FUNC_REPORT2
+ 0x80 KB_MAP2_FUNC_IGNORE
+ 0x81 KB_MAP2_FUNC_DISCOV
+ 0x82 KB_MAP2_FUNC_WIN
+ 0x83 KB_MAP2_FUNC_ANDROID
+ 0x84 KB_MAP2_FUNC_IOS
+ 0x85 KB_MAP2_FUNC_DEV1
+ 0x86 KB_MAP2_FUNC_DEV2
+ 0x87 KB_MAP2_FUNC_DEV3
+ 
+//map2 Status definition (bit map)
+ 0x01 KB_MAP2_STATUS_WIN
+ 0x02 KB_MAP2_STATUS_ANDROID
+ 0x04 KB_MAP2_STATUS_IOS
+ 0x10 KB_MAP2_STATUS_CONN
+ 0x20 KB_MAP2_STATUS_UNCONN
+ 
+ 0x00 KB_MAP2_STATUS_BIT_WIN
+ 0x01 KB_MAP2_STATUS_BIT_ANDROID
+ 0x02 KB_MAP2_STATUS_BIT_IOS
+ 0x04 KB_MAP2_STATUS_BIT_CONN
+ 0x05 KB_MAP2_STATUS_BIT_UNCONN
+
+// map2 report length
+8 KB_MAP2_REPORT_LENGTH
+0x08 KB_VK_MAX_LEN
+
+//map2 device button state
+0 KB_DEVICE_BUTTON_UP
+1 KB_DEVICE_BUTTON_DEVICE1
+2 KB_DEVICE_BUTTON_DEVICE2
+3 KB_DEVICE_BUTTON_DEVICE3
+0xff KB_DEVICE_BUTTON_ALREADY_LONG
+)
+
+//
+(
+0x01 REPORT_ID_1
+0x02 REPORT_ID_2
+0x03 REPORT_ID_3
+)
+
+(
+1 FLAG_VDD_LOW
+0 FLAG_VDD_NOT_LOW
+
+0x1fe9 EEPROM_ADDR_VDD_FLAG
+0x1fea EEPROM_ADDR_VDD_LOW_FLAG
+0x1fec EEPROM_SYSTEM_FALG
+
+)
+
+//Specil Function Key
+(
+0XFF SFK_ANDROID_MAP
+0XFE SFK_IOS_SCREENSHOT
+
+)
+0x39 CAPS_LOCK_DATA
+)
+
+(
+2 KB_TEST_MODE
+)
+/* special key codes */
+(
+0x1d KB_KCODE_1_M1
+0x27 KB_KCODE_0
+0x28 KB_KCODE_ENTER
+0x2a KB_KCODE_BKSP
+)
+
+/*DATA OUTPUT report id = 1*/
+0 KB_NUM_LOCK_SELECTED
+1 KB_CAPS_LOCK_SELECTED
+2 KB_SCROLL_LOCK_SELECTED
+
+
+0x1f  KB_UI_BUTTON_GPIO
+
+
+
+
+0x0286 mem_l2cap_mem_start
+0x0286 mem_l2cap_rxbuff1_len
+0x0288 mem_l2cap_rxbuff2_len
+0x028a mem_l2cap_rxbuff_new
+0x028c mem_l2cap_rxbuff_inuse
+0x028d mem_l2cap_payload_ptr
+0x028f mem_l2cap_rx_pkt_length
+0x0291 mem_l2cap_rx_cid
+0x0293 mem_l2cap_rx_done
+0x0294 mem_l2cap_signal_tx_buff_ptr
+0x0296 mem_l2cap_signal_tx_payload_ptr
+0x0298 mem_l2cap_signal_tx_length
+0x029a mem_sdp_tx_buff_ptr
+0x029c mem_sdp_tx_payload_ptr
+0x029e mem_sdp_tx_pkt_length
+0x02a0 mem_rfcomm_tx_buff_ptr
+0x02a2 mem_rfcomm_tx_payload_ptr
+0x02a4 mem_rfcomm_tx_pkt_length
+0x02a6 memL2CAP_T1
+0x02a8 mem_CONTROL_tasks
+0x02a9 mem_send_config_req
+0x02aa mem_config_identifier
+0x02ab mem_config_req_dest_CID
+0x02ad mem_rfcomm_malloc_fail_flag
+0x02ae mem_message_to_uppersm
+0x02af mem_upper_sm_remote_page
+0x02b0 mem_upper_sm_reconn
+0x02b1 mem_upper_sm_ss
+0x02b2 mem_tx_malloc_log
+0x02f2 mem_l2cap_mem_end
+0x02f2 mem_scid
+0x02f4 mem_cmd_length
+0x02f6 mem_tt2
+0x02f8 mem_tt3
+0x02fa mem_id
+0x02fc mem_psm
+0x02fe mem_l2cap_sdpres_delay_time
+
+
+
+//mem_l2cap_lpm_txbuf
+(
+256 l2cap_lpm_txbuf_len
+)
+
+(
+4 L2CAP_TX_FIFO_SIZE
+8 L2CAP_TX_BUFF_CNT
+
+)
+(
+0x0002 L2CAP_SIG_EXT_FEATRUE
+0x0003 L2CAP_SIG_FIX_FEATRUE
+)
+
+
+(
+0 HS_IDLE
+1 AG_INIT_CALL
+2 HS_INIT_CALL
+)
+(
+0 M_ACL_LINK_ABSENT
+1 M_ACL_LINK_EXIST
+)
+
+(
+0 L2CAP_INUSE_BUFF1
+1 L2CAP_INUSE_BUFF2
+)
+/* upper layer interface w/ lower layer */
+(
+1 MAX_NUM_LINKS_ALLOWED
+1 MAX_NUM_SCO_ALLOWED
+1 ACL_LINK_PRESENT
+0 ACL_LINK_ABSENT
+)
+(
+1 L2CAP_RX_DONE 
+0 L2CAP_RX_CLEAR
+)
+/* Scheduler */
+(
+0 L2CAP_DISCONNECT_INTERRUPT
+1 RFCOMM_wants_service
+2 L2CAP_sig_Tx_buff_full
+3 RFCOMM_Tx_buff_full
+4 SDP_Tx_buff_full
+5 got_complete_L2CAP_pkt	
+6 L2CAP_init_Config_Req
+7 L2CAP_DISCONNECT_CONTROL
+)
+
+/* mem_CONTROL_tasks2 */
+(
+0 UI_NEED_SERVICE
+)
+/* L2CAP logic channel identifiers (2 bytes) p.261 */
+(
+0x0001 L2CAP_signal_channel
+0x0050 L2CAP_SDP_channel
+0x0051 L2CAP_RFCOMM_channel
+0x0052 L2CAP_HID_Control_channel   
+0x0053 L2CAP_HID_Interrupt_channel
+0x0077 L2CAP_AVDTP_signal_channel		//------avdtp
+0x0078 L2CAP_AVDTP_media_channel
+0x0079 L2CAP_AVDTP_report_channel
+0x0080 L2CAP_AVDTP_recovery_channel
+0x00dd L2CAP_AVCTP_Control_channel
+)
+/* L2CAP signalling command codes (1 byte) p.284 */
+(
+0x00 reserved
+0x01 signal_cmd_reject
+0x02 signal_connect_req
+0x03 signal_connect_rsp
+0x04 signal_config_req
+0x05 signal_config_rsp
+0x06 signal_disconnect_req
+0x07 signal_disconnect_rsp
+0x08 signal_echo_req
+0x09 signal_echo_rsp
+0x0a signal_info_req
+0x0b signal_info_rsp
+)
+/* L2CAP signal_command_reject reason code (2 bytes), p.285 */
+(
+0x0000 cmd_not_understood
+0x0001 signalling_MTU_exceeded
+0x0002 invalid_CID_in_req
+)
+/* L2CAP PSM values used in signal_connect_req (2 bytes), p.286 */
+(
+0x0001 PSM_SDP
+0x0003 PSM_RFCOMM
+0x0005 PSM_TCS
+0x0011 PSM_HID_control
+0x0013 PSM_HID_interrupt
+0x0017 PSM_AVCTP
+0x0019 PSM_AVDTP
+)
+/* L2CAP connection response result code (2 bytes), p.288 */
+(
+0x0000 L2CAP_connect_successful
+0x0001 L2CAP_connect_pending
+0x0002 L2CAP_connect_refused_PSM_unsupported
+0x0003 L2CAP_connect_refused_security_block
+0x0004 L2CAP_connect_refused_no_resources
+)
+/* L2CAP connection status values (2 bytes), p.288 */
+(
+0x0000 L2CAP_no_info_available
+0x0001 L2CAP_authentication_pending
+0x0002 L2CAP_authorization_pending
+)
+/* L2CAP configuration response result code (2 bytes), p.292 */
+(
+0x0000 L2CAP_config_success
+0x0001 L2CAP_config_failure_bad_parameters
+0x0002 L2CAP_config_failure_no_reason
+0x0003 L2CAP_config_failure_unknown_options
+)
+/* L2CAP constant definitions */
+(
+128 L2CAP_Rx_buff_size
+48  L2CAP_signal_Tx_buff_size
+128 SDP_Tx_buff_size
+128 RFCOMM_Tx_buff_size
+1 AM_ADDRESS
+3 DM1TYPE
+4 DH1TYPE
+11 DH3TYPE
+8 DVTYPE
+0 channel_state_closed
+1 channel_state_config
+2 channel_state_open
+0x0030 L2CAP_config_MTU_SDP
+0xffff L2CAP_config_ftimeout_SDP
+0x03e3 L2CAP_config_MTU_RFCOMM
+0xffff L2CAP_config_ftimeout_RFCOMM
+260 l2cap_max_pkt_len
+)
+
+(
+0 FAILURE
+1 SUCCESS
+2 IN_PROGRESS
+)
+(
+0x00	IDLE
+0x01	WAIT_4_BB_PAGE
+0x02	WAIT_4_LMP_CONN
+0x03	WAIT_4_SCO_CONN
+0x04	WAIT_4_SCO_KILLED
+)
+
+/*mem_master_mss*/
+(
+0 STOP_ENC
+1 SEND_SWITCH_REQ
+)
+(
+0 HF_HS_READY
+1 HF_AG_READY
+)
+/* mem_hf_state */
+(
+0 HF_STATE_WAITING_RFCOMM_CONN
+1 HF_STATE_HF_SEND_FEATURE
+2 HF_STATE_WAITING_AG_FEATURE_OK
+3 HF_STATE_HF_SEND_INDICATORS
+4 HF_STATE_WAITING_AG_INDICATORS_OK
+5 HF_STATE_HF_SEND_CURR_STATUS
+6 HF_STATE_WAITING_AG_STATUS_OK
+7 HF_STATE_HF_SEND_UPDATE_STATUS
+8 HF_STATE_WAITING_AG_UPDATE_STATUS_OK
+9 HF_STATE_CONNECTED
+0x0a HF_STATE_HF_SEND_RECEIVE_INFO
+0x0b HF_STATE_WAITING_AG_INFO
+0x0c HF_STATE_HF_SEND_AT_CLIP
+0x0d HF_STATE_WAITING_AT_CLIP
+0x0e HF_STATE_HF_SEND_AT_CCWA
+0x0f HF_STATE_WAITING_AT_CCWA
+)
+/*mem_hf_call_state*/
+(
+0 HF_CALL_STATE_INACTIVE
+1 HF_CALL_STATE_SETUP
+2 HF_CALL_STATE_ACTIVE 
+)
+/* mem_pairing_state bit definition */
+(
+0 PAIR_INQUIRY_START
+1 PAIR_INQUIRY_TIME_OUT
+2 PAIR_INQUIRY_FAILED
+3 PAIR_INQUIRY_SUCCESS
+4 PAIR_READY_CONN
+5 PAIR_WAIT_CANCEL_RESPONSE
+6 PAIR_CONN_SUCCESS
+7 PAIR_WAIT_DETACH
+)  
+
+/* mem_pairing_mode bit definition */
+(
+0 FORCE_AUTHENTICATION
+)
+/* mem_hid_protecol_type */
+(
+0 PROTECOL_BOOT /*default*/
+1 PROTECOL_REPORT
+)
+
+/* mem_upper_sm_reconn */
+(
+1 UPPERSM_SEND_SDP_CONN_REQ
+2 UPPERSM_SEND_SDP_CFG_REQ
+3 UPPERSM_SEND_SDP_HF_SS
+4 UPPERSM_SEND_SDP_DISC_REQ
+5 UPPERSM_SEND_RFCOMM_CONN_REQ
+6 UPPERSM_SEND_RFCOMM_CFG_REQ
+7 UPPERSM_SEND_SABM_CMD
+8 UPPERSM_SEND_DISC
+9 UPPERSM_SEND_WAIT
+10 UPPERSM_SEND_HID_CONTROL_CONN_REQ
+11 UPPERSM_SEND_HID_CONTROL_CFG_REQ
+12 UPPERSM_SEND_HID_INTERRUPT_CONN_REQ
+13 UPPERSM_SEND_HID_INTERRUPT_CFG_REQ
+14 UPPERSM_SEND_SDP_HS_SS
+15 UPPERSM_SEND_SDP_PBAP_SS
+16 UPPERSM_SEND_SDP_AVTARG_SS
+)
+/* mem_upper_sm_remote_page */
+(
+1 UPPERSM_RP_SEND_SDP_CONN_REQ
+2 UPPERSM_RP_SEND_SDP_CFG_REQ
+3 UPPERSM_RP_SEND_SDP_HF_SS
+4 UPPERSM_RP_SEND_SDP_HS_SS
+5 UPPERSM_RP_SEND_SDP_PBAP_SS
+6 UPPERSM_RP_SEND_SDP_AVTARG_SS
+7 UPPERSM_RP_SEND_SDP_DISC_REQ
+8 UPPERSM_RP_SEND_AVCTP_CONN_REQ
+9 UPPERSM_RP_SEND_AVCTP_CFG_REQ
+)
+
+/* mem_ML2CAP_flag */
+(
+0 MSCHEDULER_HID_CONTROL_CONN_DONE
+1 MSCHEDULER_HID_INTERRUPT_CONN_DONE
+2 MSCHEDULER_HID_CONTROL_CFG_REQ_DONE
+3 MSCHEDULER_HID_CONTROL_CFG_RSP_DONE
+4 MSCHEDULER_HID_INTERRUPT_CFG_REQ_DONE
+5 MSCHEDULER_HID_INTERRUPT_CFG_RSP_DONE
+6 MSCHEDULER_HID_CONTROL_DISC_DONE
+7 MSCHEDULER_HID_INTERRUPT_DISC_DONE
+)
+/*    ui event    --add by lj*/
+(
+0x00 UI_DATA_EVNET_NONE
+0x01 UI_DATA_EVNET_HID
+0x02 UI_DATA_EVNET_AVDTP_S
+0x03 UI_DATA_EVNET_AVDTP_M
+0x04 UI_DATA_EVNET_AVCTP
+0x05 UI_DATA_EVNET_HS
+0x06 UI_DATA_EVNET_HF
+0x07 UI_DATA_EVNET_SPP
+0x08 UI_DATA_EVNET_OBEX
+)
+/*    ui ack --add by lj*/
+(
+0x00 UI_DATA_TX_NONE
+0x01 UI_DATA_TX_HID
+0x02 UI_DATA_TX_AVDTP_S
+0x03 UI_DATA_TX_AVDTP_M
+0x04 UI_DATA_TX_AVCTP
+0x05 UI_DATA_TX_HS
+0x06 UI_DATA_TX_HF
+0x07 UI_DATA_TX_SPP
+0x08 UI_DATA_TX_OBEX
+0x10 ACL_TX_L2CAP_SIGNAL
+0x11 ACL_TX_SDP
+0x12 ACL_TX_RFCOMM
+
+)
+
+(
+0 L2CAP_SDP_interface_conn
+1 L2CAP_SDP_interface_cfg
+)
+
+(                                   
+0 L2CAP_CHANNEL_STATE_CONN_REQ      
+1 L2CAP_CHANNEL_STATE_CONN_RES      
+2 L2CAP_CHANNEL_STATE_SND_CFG_REQ   
+3 L2CAP_CHANNEL_STATE_SND_CFG_RES   
+4 L2CAP_CHANNEL_STATE_RCV_CFG_REQ   
+5 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+6 L2CAP_CHANNEL_RFCOMM_ONLY_SABM
+7 L2CAP_CHANNEL_RFCOMM_ONLY_UA
+6 L2CAP_CHANNEL_AVDTP_SIGNAL_INIT //set avdtp init complete
+6 L2CAP_CHANNEL_HID_HANDSHAKE_DONE
+0x3f L2CAP_CHANNEL_SETUP_COMPLETE
+0x7f L2CAP_CHANNEL_AVDTP_SIGNAL_COMPLETE
+0xff L2CAP_CHANNEL_RFCOMM_DLCI0_OPENED
+)                                     
+
+/*  AVDTP---lj*/
+(
+0 L2CAP_AVDTP_SIGNAL_CONNECT
+1 L2CAP_AVDTP_SIGNAL_CONFIG
+2 L2CAP_AVDTP_MEDIA_CONNECT
+3 L2CAP_AVDTP_MEDIA_CONFIG
+4 L2CAP_AVDTP_REPORT_CONNECT
+5 L2CAP_AVDTP_REPORT_CONFIG
+6 L2CAP_AVDTP_RECOVERY_CONNECT
+7 L2CAP_AVDTP_RECOVERY_CONFIG
+)
+/*  AVCTP---lj*/
+(
+0 L2CAP_AVCTP_SIGNAL_CONNECT
+1 L2CAP_AVCTP_SIGNAL_CONFIG
+)
+
+127 L2CAP_SIGNAL_MALLOC_SIZE
+
+//1 mem_rfcomm_malloc_fail_flag
+(
+0 RFCOMM_MALLOC_SUCCEED
+1 RFCOMM_MALLOC_FAIL
+)
+
+//mem_l2cap_flow_ctrl_flag
+(
+0 L2CAP_FLOW_CTRL_DISABLE
+1 L2CAP_FLOW_CTRL_ENABLE
+)
+
+
+0x0302 mem_le_rxbuf
+0x033a mem_le_mic
+0x033e mem_le_peer_mic
+0x0342 mem_le_peer_ltk
+0x0352 mem_le_mrand
+0x0362 mem_le_state
+0x0363 mem_le_mode
+0x0364 mem_le_tsniff
+0x0366 mem_le_anchor
+0x036a mem_le_clk_offset
+0x0370 mem_le_receive_window
+0x0372 mem_le_plap
+0x0378 mem_le_conn_handle
+0x0379 mem_le_arq
+0x037a mem_le_ch
+0x037b mem_le_hop
+0x037c mem_le_event_count
+0x037e mem_le_supervision_timer
+0x0382 mem_le_instant
+0x0384 mem_le_channels
+0x0385 mem_le_op
+0x0386 mem_le_access
+0x038a mem_le_crcinit
+0x038d mem_le_window_size
+0x038e mem_le_slave_latency
+0x0390 mem_le_superto
+0x0392 mem_le_channel_map
+0x0397 mem_le_no_using
+0x0399 mem_le_peer_sca
+0x039a mem_le_att_opcode
+0x039b mem_le_att_handle
+0x039d mem_le_err_code
+0x039e mem_le_l2cap_pdu_length
+0x03a0 mem_le_sk
+0x03b0 mem_le_testtype
+0x03b1 mem_le_test_sync
+0x03b3 mem_le_test_pcnt
+0x03b5 mem_le_rxon_ts
+0x03bb mem_le_rx_ll_opcode
+0x03bc mem_le_notify_attr_start
+0x03be mem_le_notify_len
+0x03bf mem_cmd_le_create_conn
+0x03c0 mem_24g_id
+0x03c1 mem_le_cur_attlist_start_ptr
+0x03c3 mem_le_cur_handle_start
+0x03c5 mem_le_cur_handle_end
+0x03c7 mem_le_cur_uuid_lenth
+0x03c8 mem_le_cur_uuid
+0x03d8 mem_le_search_len
+0x03d9 mem_le_search_res
+0x03da mem_le_continue_type
+0x03db mem_le_public_length
+
+
+
+(
+20 notify_handle
+2 param_max_slaves
+1636 param_sifs
+0x000a06 param_le_version
+0x1d87 param_le_subversion
+0x000001 param_le_features
+23 param_le_mtu
+16 param_le_scan_interval
+16 param_le_scan_window
+0x1e0 param_clke_cal_le
+0x1000302 param_smp_paring_response		/* for mouse, noinputnooutput */
+0x010410 param_smp_key_dist	
+0xa0 param_le_sca
+)
+
+(
+0 DEFAULT_STATES
+1 IPHONE_LOST_LTK
+2 MODULE_LOST_LTK
+3 LTK_NOT_LOST
+)
+
+(
+0 FLAG_BLE_INSUFFICIENT_AUTHENTICATION
+1 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST
+)
+
+/*LE MOUSE-KB*/
+(
+1 LE_CONTEXT_STATE_KB
+2 LE_CONTEXT_STATE_MOUSE
+
+3 USB_MOUSE_DATA_CMD
+
+1 SEND_MOUSE_DATA_CMD
+2 SEND_KB_DATA_CMD
+)
+
+
+  (
+  	0 LE_M_STATE_SLAVE1_STANDBY
+  	1 LE_M_STATE_SLAVE1_ADVERTISING
+  	2 LE_M_STATE_SLAVE1_SCANNING
+  	3 LE_M_STATE_SLAVE1_INITIATING
+  	4 LE_M_STATE_SLAVE1_CONNECTED
+  	5 LE_M_STATE_SLAVE1_RFU_1
+  	6 LE_M_STATE_SLAVE1_RFU_2
+  	7 LE_M_STATE_SLAVE1_RFU_3
+  )
+
+  (
+  	0 LE_M_STATE_SLAVE2_STANDBY
+  	1 LE_M_STATE_SLAVE2_ADVERTISING
+  	2 LE_M_STATE_SLAVE2_SCANNING
+  	3 LE_M_STATE_SLAVE2_INITIATING
+  	4 LE_M_STATE_SLAVE2_CONNECTED
+  	5 LE_M_STATE_SLAVE2_CONNECT_INIT
+  	6 LE_M_STATE_SLAVE2_RFU_2
+  	7 LE_M_STATE_SLAVE2_RFU_3
+  )
+
+  	(
+	0 LE_SM_IDLE
+	1 LE_SM_FBTV_1800
+	2 LE_SM_FBTV_1800_WAIT
+	3 LE_SM_RBT_DEVICE_NAME
+	4 LE_SM_RBT_DEVICE_NAME_WAIT
+	5 LE_SM_FBTV_1801
+	6 LE_SM_FBTV_1801_WAIT
+	7 LE_SM_RBT_DEVICE_CHARACTER
+	8 LE_SM_RBT_DEVICE_CHARACTER_WAIT
+	
+  	)
+
+/* advertising channel PDU type */
+(
+0 ADV_IND
+1 ADV_DIRECT_IND
+2 ADV_NONCONN_IND
+3 SCAN_REQ
+4 SCAN_RSP
+5 CONNECT_REQ
+6 ADV_SCAN_IND
+)
+
+	/* tx packet type */
+	(
+	0x20 XT_LL_CONNECTION_UPDATE_REQ
+	0x21 XT_LL_CHANNEL_MAP_REQ
+	0x22 XT_LL_TERMINATE_IND
+	0x23 XT_LL_ENC_REQ
+	0x24 XT_LL_ENC_RSP
+	0x25 XT_LL_START_ENC_REQ
+	0x26 XT_LL_START_ENC_RSP
+	0x27 XT_LL_UNKNOWN_RSP
+	0x28 XT_LL_FEATURE_REQ
+	0x29 XT_LL_FEATURE_RSP
+	0x2A XT_LL_PAUSE_ENC_REQ
+	0x2B XT_LL_PAUSE_ENC_RSP
+	0x2C XT_LL_VERSION_IND
+	0x2D XT_LL_REJECT_IND
+	0x2E XT_LL_SLAVE_FEATURE_REQ
+	0x2F XT_LL_CONNECTION_PARAM_REQ
+	0x30 XT_LL_CONNECTION_PARAM_RSP
+	0x31 XT_LL_REJECT_IND_EXT
+	0x32 XT_LL_PING_REQ
+	0x33 XT_LL_PING_RSP
+	0x41 XT_SMP_PAIRING_REQUEST
+	0x42 XT_SMP_PAIRING_RESPONSE
+	0x43 XT_SMP_PAIRING_CONFIRM
+	0x44 XT_SMP_PAIRING_RANDOM
+	0x45 XT_SMP_PAIRING_FAILED
+	0x46 XT_SMP_ENCRYPTION_INFORMATION
+	0x47 XT_SMP_MASTER_IDENTIFICATION
+	0x48 XT_SMP_IDENTITY_INFORMATION
+	0x49 XT_SMP_IDENTITY_ADDRESS_INFORMATION
+	0x4A XT_SMP_SIGNING_INFORMATION
+	0x4B XT_SMP_SECURITY_REQUEST
+	0x4c XT_SMP_PAIRING_PUBLIC_KEY
+	0x4d XT_SMP_PAIRING_DHKEY_CHECK
+	)
+
+
+	/* LE control packet type */
+	(
+	0x00 LL_CONNECTION_UPDATE_REQ
+	0x01 LL_CHANNEL_MAP_REQ
+	0x02 LL_TERMINATE_IND
+	0x03 LL_ENC_REQ
+	0x04 LL_ENC_RSP
+	0x05 LL_START_ENC_REQ
+	0x06 LL_START_ENC_RSP
+	0x07 LL_UNKNOWN_RSP
+	0x08 LL_FEATURE_REQ
+	0x09 LL_FEATURE_RSP
+	0x0A LL_PAUSE_ENC_REQ
+	0x0B LL_PAUSE_ENC_RSP
+	0x0C LL_VERSION_IND
+	0x0D LL_REJECT_IND
+	0x0E LL_SLAVE_FEATURE_REQ
+	0x0F LL_CONNECTION_PARAM_REQ
+	0x10 LL_CONNECTION_PARAM_RSP
+	0x11 LL_REJECT_IND_EXT
+	0x12 LL_PING_REQ
+	0x13 LL_PING_RSP
+	)
+
+	/* Security Manager Protocol Code */
+	(
+	0x01 SMP_PAIRING_REQUEST
+	0x02 SMP_PAIRING_RESPONSE
+	0x03 SMP_PAIRING_CONFIRM
+	0x04 SMP_PAIRING_RANDOM
+	0x05 SMP_PAIRING_FAILED
+	0x06 SMP_ENCRYPTION_INFORMATION
+	0x07 SMP_MASTER_IDENTIFICATION
+	0x08 SMP_IDENTITY_INFORMATION
+	0x09 SMP_IDENTITY_ADDRESS_INFORMATION
+	0x0A SMP_SIGNING_INFORMATION
+	0x0B SMP_SECURITY_REQUEST
+	0x0c SMP_PAIRING_PUBLIC_KEY
+	0x0d SMP_PAIRING_DHKEY_CHECK
+	)
+
+	/* ATT OPCODE */
+	(
+	0x01 ATTOP_ERROR_RESPONSE
+	0x02 ATTOP_EXCHANGE_MTU_REQUEST
+	0x03 ATTOP_EXCHANGE_MTU_RESPONSE
+	0x04 ATTOP_FIND_INFORMATION_REQUEST
+	0x05 ATTOP_FIND_INFORMATION_RESPONSE
+	0x06 ATTOP_FIND_BY_TYPE_VALUE_REQUEST
+	0x07 ATTOP_FIND_BY_TYPE_VALUE_RESPONSE
+	0x08 ATTOP_READ_BY_TYPE_REQUEST
+	0x09 ATTOP_READ_BY_TYPE_RESPONSE
+	0x0A ATTOP_READ_REQUEST
+	0x0B ATTOP_READ_RESPONSE
+	0x0C ATTOP_READ_BLOB_REQUEST
+	0x0D ATTOP_READ_BLOB_RESPONSE
+	0x0E ATTOP_READ_MULTIPLE_REQUEST
+	0x0F ATTOP_READ_MULTIPLE_RESPONSE
+	0x10 ATTOP_READ_BY_GROUP_TYPE_REQUEST
+	0x11 ATTOP_READ_BY_GROUP_TYPE_RESPONSE
+	0x12 ATTOP_WRITE_REQUEST
+	0x13 ATTOP_WRITE_RESPONSE
+	0x16 ATTOP_PREPARE_WRITE_REQUEST
+	0x17 ATTOP_PREPARE_WRITE_RESPONSE
+	0x18 ATTOP_EXECUTE_WRITE_REQUEST
+	0x19 ATTOP_EXECUTE_WRITE_RESPONSE
+	0x1B ATTOP_HANDLE_VALUE_NOTIFICATION
+	0x1D ATTOP_HANDLE_VALUE_INDICATION
+	0x1E ATTOP_HANDLE_VALUE_CONFIRMATION
+	0x52 ATTOP_WRITE_COMMAND
+	0xD2 ATTOP_SIGNED_WRITE_COMMAND
+	0x1f ATTOP_CONTINUE
+	0x9e EMPTY_LE_DATA_PRE
+	0x9f EMPTY_LE_DATA
+	)
+
+	/* ATT error code */
+	(
+	0x01 ATT_ERR_INVALID_HANDLE
+	0x02 ATT_ERR_READ_NOT_PERMITTED
+	0x03 ATT_ERR_WRITE_NOT_PERMITTED
+	0x04 ATT_ERR_INVALID_PDU
+	0x05 ATT_ERR_INSUFFICIENT_AUTHENTICATION
+	0x06 ATT_ERR_REQUEST_NOT_SUPPORTED
+	0x07 ATT_ERR_INVALID_OFFSET
+	0x08 ATT_ERR_INSUFFICIENT_AUTHORIZATION
+	0x09 ATT_ERR_PREPARE_QUEUE_FULL
+	0x0A ATT_ERR_ATTRIBUTE_NOT_FOUND
+	0x0B ATT_ERR_ATTRIBUTE_NOT_LONG
+	0x0C ATT_ERR_INSUFFICIENT_ENCRYPTION_KEY_SIZE
+	0x0D ATT_ERR_INVALID_ATTRIBUTE_VALUE_LENGTH
+	0x0E ATT_ERR_UNLIKELY_ERROR
+	0x0F ATT_ERR_INSUFFICIENT_ENCRYPTION
+	0x10 ATT_ERR_UNSUPPORTED_GROUP_TYPE
+	0x11 ATT_ERR_INSUFFICIENT_RESOURCES
+	)
+	/*	SERVICE UUID	*/
+	(
+	0x1800 UUID_SERVICE_GENERIC_ACC
+	0x1801 UUID_SERVICE_GENERIC_ATT
+	0x180a UUID_SERVICE_DEVICE_INFO
+	0x180f UUID_SERVICE_BATTERY
+	0x1812 UUID_SERVICE_HIDS
+	0x2800 UUID_GATT_PRIMARY_SERVICE
+	0x2801 UUID_GATT_SECONDARY_SERVICE
+	0X2802 UUID_GATT_INCLUDE
+	0X2803 UUID_GATT_CHARACTERISTIC
+	0X2A00 UUID_CHRCTR_DEVICE_NAME
+	0X2A19 UUID_CHRCTR_BATTERY_LEVEL
+	0X2A22 UUID_CHRCTR_KEYBOARD_INPUT
+	0X2A23 UUID_CHRCTR_SYSTEM_ID 
+	0X2A25 UUID_CHRCTR_SERIAL_NUMBER
+	0X2A26 UUID_CHRCTR_FIRMWARE
+	0X2A32 UUID_CHRCTR_KEYBOARD_OUTPUT
+	0X2A33 UUID_CHRCTR_MOUSE_INPUT
+	0X2A4A UUID_CHRCTR_HID_INFO
+	0X2A4B UUID_CHRCTR_REPORT_MAP
+	0X2A4C UUID_CHRCTR_HID_CTRL_POINT
+	0X2A4D UUID_CHRCTR_REPORT
+	0X2A4E UUID_CHRCTR_PROTOCOL_MODE
+	)
+
+	(// pairing failed reason
+	0x00 PAIRING_FAILED_RESERVED
+	0X01 PAIRING_FAILED_PASSKEY_ENTRY_FAILED
+	0X02 PAIRING_FAILED_OOB_NOT_AVAILABLE
+	0X03 PAIRING_FAILED_AUTHENTICATION_REQUIRE
+	0X04 PAIRING_FAILED_CONFIRM_VALUE_FAILED
+	0X05 PAIRING_FAILED_PAIRING_NOT_SUPPORTED
+	0X06 PAIRING_FAILED_ENCRYPTION_KEY_SIZE
+	0X07 PAIRING_FAILED_COMMAND_NOT_SUPPORTED
+	0X08 PAIRING_FAILED_UNSPECIFIED_REASON
+	0X09 PAIRING_FAILED_REPEATED_ATTEMPTS
+	0X0A PAIRING_FAILED_INVALID_PARAMETERS
+	0X0B PAIRING_FAILED_DHKEY_CHECK_FAILED
+	0X0C PAIRING_FAILED_NUMERIC_COMPARISON_FAILED
+	0X0D PAIRING_FAILED_BR_EDR_PAIRING_IN_PROGRESS
+	0X0E PAIRING_FAILED_KEY_DERIVATION_GENERATION_NOT_ALLOWED
+	)
+
+	//modified_name
+	(
+	0x14 MAX_NAME_LEN
+	0x16 ADV_DATA_NAME_LEN
+	0X20 SPACE
+	
+	)
+	/* GATT Specifications*/
+	(
+	0X2900 CHARACTERTIC_EXTENDED_PROPERTIES
+	0X2901 CHARACTERTIC_USER_DESCRIPTION
+	0X2902 CLIENT_CHARACTERTIC_CONFIGURATION
+	0X2903 SERVER_CHARACTERTIC_CONFIGURATION
+	0X2904 CHARACTERTIC_PRESENTATION_FORMAT
+	0X2905 CHARACTERTIC_AGGREGATE
+	0X2906 VALID_RANGE
+	0X2907 EXTERNAL_REPORT_REFERENCE
+	0X2908 REPORT_REFERENCE
+	0X290B ENVIR_SENSING_CONFIGURATION
+	0X290C ENVIR_SENSING_MEASUREMENT
+	0X290D ENVIR_SENSING_TRIGGER_SETTING
+	)
+	/* LE L2CAP CID */
+	(
+	0x04 LE_L2CAP_CID_ATT
+	0x05 LE_L2CAP_CID_SIGNAL
+	0x06 LE_L2CAP_CID_SMP
+	)
+
+	//LE address type
+	(
+	0 LE_ADDR_TYPE_PUBLIC
+	1 LE_ADDR_TYPE_RANDOM
+	)
+	//LE address type bitmap
+	(
+	7 LE_RECEIVER_ADDR_BIT
+	6 LE_SENDER_ADDR_BIT
+	)
+	//LE SCAN TYPE
+	(
+	0x00 LE_SCAN_TYPE_PASSIVE //no SCAN_REQ shall be sent
+	0x01 LE_SCAN_TYPE_ACTIVE
+	)
+
+	//LE SCAN ENABLE
+	(
+	0x00 LE_SCAN_DISABLE
+	0x01 LE_SCAN_ENABLE
+	0x0101 LE_ACTIVE_SCAN_ENABLE
+	)
+
+
+//	le_state_map 0-2 is reserved for state_inconn,state_insniff and state_sco
+(
+3 lestate_got_first_packet
+4 lestate_encryption
+5 lestate_update_param
+6 lestate_update_map
+)
+
+// 	le mode
+(
+0 lemode_idle
+1 lemode_slave
+3 lemode_master
+)
+
+(
+0 LE_CONTINUE_TYPE_NULL
+1 LE_CONTINUE_TYPE_NOTIFICATION
+2 LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE 
+)
+
+
+(
+0 LE_INITATOR_LTK_BIT
+1 LE_INITATOR_IRK_BIT
+2 LE_INITATOR_CSRK_BIT
+)
+
+(
+0X00	LE_PAIRING_MODE_NONE
+0X01	LE_PAIRING_MODE_LAGACY_JUSTWORK
+0X02	LE_PAIRING_MODE_LAGACY_PASSKEY
+0x81	LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK
+0x82	LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC
+0X83	LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY
+
+7 LE_PAIRING_MODE_SECURE_CONNECT_BIT
+)
+
+
+(
+0 FLAG_IOCAP_DISPLAYONLY
+1 FLAG_IOCAP_DISPLAYYESNO
+2 FLAG_IOCAP_KEYBOARDONLY
+3 FLAG_IOCAP_NOINPUTNOOUTPUT
+4 FLAG_IOCAP_KEYBOARDDISPLAY
+
+0x00 FLAG_OOB_DATA_FLAG_NO
+)
+
+(
+0X00 FLAG_LE_NO_BONDING_NO_MITM
+0X01 FLAG_LE_BONDING_NO_MITM
+0X04 FLAG_LE_NO_BONDING_MITM
+0X05 FLAG_LE_BONDING_MITM
+0X09 FLAG_LE_BONDING_NO_MITM_SECURE
+0X0D FLAG_LE_BONDING_MITM_SECURE
+
+2 LE_AUTH_MITM_BIT
+3 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT
+)
+
+(
+0  LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND
+1  LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE
+2  LE_FIND_BY_TYPE_VAL_RES_FOUND_ENDING_HANDLE
+
+)
+
+(
+0 MASTER_PUBLIC_ADDR
+1 MASTER_RANDOM_ADDR
+)
+
+(
+0x06 LE_ERR_PIN_OR_KEY_MISSING
+)
+
+//mem_le_enc_state
+(
+0 FLAG_LE_ENC_NULL
+1 FLAG_LE_ENC_START
+2 FLAG_LE_ENC_PAUSE
+3 FLAG_LE_ENC_END
+)
+
+//mem_le_pairing_state
+(
+0 FLAG_LE_PAIRING_NULL
+1 FLAG_LE_PAIRING_START
+2 FLAG_LE_PAIRING_AFTER_AUTH
+3 FLAG_LE_PAIRING_END
+)
+
+/*LE secure connect state */
+(
+0x00 LE_SC_STAT_NULL
+0x01 LE_SC_STAT_RECEIVE_PUBLIC_KEY
+0x02 LE_SC_STAT_WAIT_SEND_PUBLIC_KEY
+0x03 LE_SC_STAT_SEND_PUBLIC_KEY
+0x04 LE_SC_STAT_RECEIVE_RANDOM
+0x05 LE_SC_STAT_SEND_RANDOM
+0x06 LE_SC_STAT_RECEIVE_DHKEY
+0x07 LE_SC_STAT_WAIT_CONFIRM_GKEY
+0x08 LE_SC_STAT_PASSKEY_WAIT_CONFIRM
+)
+
+
+(
+0 FLAG_LE_SC_CONFRIM_NULL
+1 FLAG_LE_SC_CONFRIM_GKEY_OK
+)
+
+
+(
+3 LE_CONTINUE_TYPE_PUBLIC_KEY
+)
+
+//mem_le_continue_flag
+(
+0 LE_CONTINUE_FLAG_NULL
+1 LE_CONTINUE_FLAG_RX
+2 LE_CONTINUE_FLAG_TX
+)
+
+
+
+0x03dc mem_lmo_header_length
+0x03dd mem_lmo_header_opcode
+0x03de mem_lmo_payload
+0x03ef mem_lmi_accepted_opcode
+0x03f0 mem_disconn_reason_send
+0x03f1 mem_tx_fixed_freq
+0x03f2 mem_rx_fixed_freq
+0x03f3 mem_ext_features_page
+0x03f4 mem_lmpext_ssp_enable
+0x03f6 mem_remote_sppcap
+0x03f7 mem_lmp_conn_state
+0x03f8 mem_soft_timer
+0x03fa mem_pincode_state
+0x03fb mem_sres_tid
+0x03fc mem_accptsco_tid
+0x03fd mem_auth_enable
+0x03fe mem_wait_encryption
+0x03ff mem_sniff_payload
+0x040f mem_aurand_send_delay_time
+
+	(
+	//bit map
+	0 pair_state_inrand
+	1 pair_state_inrand_acpt
+	2 pair_state_send_comb
+	3 pair_state_recv_comb
+	4 pair_state_send_aurand
+	5 pair_state_recv_sres
+	6 pair_state_recv_aurand
+	7 pair_state_send_sres	
+	)
+	/* LMP opcodes */
+	(
+	1 LMP_NAME_REQ 
+	2 LMP_NAME_RES 
+	3 LMP_ACCEPTED 
+	4 LMP_NOT_ACCEPTED 
+	5 LMP_CLKOFFSET_REQ 
+	6 LMP_CLKOFFSET_RES 
+	7 LMP_DETACH 
+	8 LMP_IN_RAND 
+	9 LMP_COMB_KEY 
+	10 LMP_UNIT_KEY 
+	11 LMP_AU_RAND 
+	12 LMP_SRES 
+	13 LMP_TEMP_RAND 
+	14 LMP_TEMP_KEY 
+	15 LMP_ENCRYPTION_MODE_REQ 
+	16 LMP_ENCRYPTION_KEY_SIZE_REQ 
+	17 LMP_START_ENCRYPTION_REQ 
+	18 LMP_STOP_ENCRYPTION_REQ 
+	19 LMP_SWITCH_REQ 
+	20 LMP_HOLD
+	21 LMP_HOLD_REQ
+	23 LMP_SNIFF_REQ 
+	24 LMP_UNSNIFF_REQ 
+	26 LMP_PARK_REQ 
+	27 LMP_SET_BROADCAST_SCAN_WINDOW 
+	28 LMP_MODIFY_BEACON 
+	29 LMP_UNPARK_BD_ADDR_REQ 
+	30 LMP_UNPARK_PM_ADDR_REQ 
+	31 LMP_INCR_POWER_REQ 
+	32 LMP_DECR_POWER_REQ 
+	33 LMP_MAX_POWER 
+	34 LMP_MIN_POWER 
+	35 LMP_AUTO_RATE 
+	36 LMP_PREFERRED_RATE 
+	37 LMP_VERSION_REQ 
+	38 LMP_VERSION_RES 
+	39 LMP_FEATURES_REQ 
+	40 LMP_FEATURES_RES 
+	41 LMP_QUALITY_OF_SERVICE 
+	42 LMP_QUALITY_OF_SERVICE_REQ 
+	43 LMP_SCO_LINK_REQ 
+	44 LMP_REMOVE_SCO_LINK_REQ 
+	45 LMP_MAX_SLOT 
+	46 LMP_MAX_SLOT_REQ 
+	47 LMP_TIMING_ACCURACY_REQ 
+	48 LMP_TIMING_ACCURACY_RES 
+	49 LMP_SETUP_COMPLETE 
+	50 LMP_USE_SEMI_PERMANENT_KEY 
+	51 LMP_HOST_CONNECTION_REQ 
+	52 LMP_SLOT_OFFSET 
+	53 LMP_PAGE_MODE_REQ 
+	54 LMP_PAGE_SCAN_MODE_REQ 
+	55 LMP_SUPERVISION_TIMEOUT 
+	56 LMP_TEST_ACTIVATE
+	57 LMP_TEST_CONTROL
+	58 LMP_ENC_KEY_SIZE_MASK_REQ
+	59 LMP_ENC_KEY_SIZE_MASK_RES
+	60 LMP_SET_AFH
+
+	/* simple pairing support */
+	61 LMP_ENCAPSULATED_HEADER
+	62 LMP_ENCAPSULATED_PAYLOAD
+	63 LMP_SIMPLE_PAIRING_CONFIRM
+	64 LMP_SIMPLE_PAIRING_NUMBER
+	65 LMP_DHKEY_CHECK
+	127 LMP_ESCAPE
+	127 LMP_ESCAPE_4   /* add 2bytes LMP header support  */   
+	)
+	/* LMP EXT opcodes, ORed with bit 7 to make difference to nonEXT */
+	(
+	129 LMP_EXT_ACCEPTED
+	130 LMP_NOT_ACCEPTED_EXT
+	131 LMP_EXT_FEATURES_REQ
+	132 LMP_EXT_FEATURES_RES
+	139 LMP_PACKET_TYPE_TABLE_REQ
+	140 LMP_EXT_ESCO_LINK_REQ
+	141 LMP_EXT_REMOVE_ESCO_REQ
+	144 LMP_EXT_CHN_CLASSIFICATION_REQ
+	145 LMP_EXT_CHN_CLASSIFICATION
+	149 LMP_SNIFF_SUBRATING_REQ
+	150 LMP_SNIFF_SUBRATING_RES
+	151 LMP_PAUSE_ENCRYPTION_REQ
+	152 LMP_RESUME_ENCRYPTION_REQ
+	153 LMP_IO_CAP_REQ
+	154 LMP_IO_CAP_RES
+	)
+	/* LMP reason codes */
+	(
+	0x05 AUTHENTICATION_FAILURE_ERROR
+	0x06 KEY_MISSING
+	0x0b ACL_CONNECTION_ALREADY_EXISTS
+	0x13 OTHER_END_TERMINATED
+	0x15 ABOUT_TO_POEWR_OFF
+	0x16 LOCAL_HOST
+	0x18 PAIRING_NOT_ALLOWED
+	0x19 UNKNOWN_LMP_PDU
+	0x1A UNSUPPORTED_LMP_FEATURE 
+	0x1F UNSPECIFIED_ERROR
+	0x20 UNSUPPORTED_PARAMETERS
+	0x21 SWITCH_NOT_ALLOWED
+	0x23 TRANSACTION_COLLISION
+	0x24 PDU_NOT_ALLOWED
+	0x25 ENCRYPTION_MODE_NOT_ACCEPTABLE
+	0x2e NOT_SUPPORT_CHN_CLASSIFICATION
+	0x37 NOT_SUPPORT_SSP
+	)
+
+	/* test mode scenarios */
+	(
+	0 PAUSE_TEST_MODE
+	1 ZERO_PATTERN
+	2 ONE_PATTERN
+	3 ALT_PATTERN
+	4 PSEUDORANDOM
+	5 CLOSED_LOOP_BACK_ACL
+	6 CLOSED_LOOP_BACK_SCO
+	7 ACL_WITHOUT_WHITENING
+	8 SCO_WITHOUT_WHITENING
+	9 ALT2_PATTERN
+	255 EXIT_TEST_MODE
+	)
+	/* test mode hoppig modes */
+	(
+	0 FIXED_FREQ
+	1 NORMAL_HOP
+	)
+
+	/* mem_lmp_tid indicates which type of LMP will be sent */
+	(
+	0 TID_NORM_REPLY
+	1 TID_NORM_SEND
+	2 TID_ONE
+	3 TID_ZERO
+	4 TID_PAIRING
+	5 TID_ENCRYPTION
+	6 TID_VARIABLE
+	7 TID_RX
+	)
+
+	/* ============== lmp status ==========*/
+	(
+	0 lmp_incoming
+	1 lmp_outgoing
+	2 lmp_reject_msg
+	3 lmp_clear_msg
+	4 upper_reject_msg
+	5 upper_clear_msg
+	)
+
+(
+0x2ee00 TIMER_ONE_MINUTE //96000*2
+80 TIMER_SWITCH_WAITE
+12 TIMER_ENPT_WAITE
+)
+
+(
+0 SWITCH_FLAG_INIT
+1 SWITCH_FLAG_ACCEPT
+2 SWITCH_FLAG_NOT_ACCEPT
+)
+(
+0 NULL_ENCRYP
+1 DONE_ENCRYP
+)
+
+//
+//
+//Large memory blocks defined in this file.
+//Blocks Shall be defined with absolute address.
+//Blocks' length Shall be specified in comment following Blocks' names.
+//Different blocks MAY be overlap.
+//Blocks defined in this file Shall NOT be overlap with variable in memmap.format.
+
+// USB C51 exchange area
+(
+0xff0 mem_mcmd
+0xff1 mem_mouse_data
+)
+
+//l2cap RX buffers
+(
+0x1000 mem_l2cap_rxbuff1		//0x400
+0x1400 mem_l2cap_rxbuff2		//0x400
+//end address:0x17ff
+)
+//l2cap TX buffers
+(
+0x1800 mem_tx_buff0		//128
+0x1880 mem_tx_buff1		//128
+0x1900 mem_tx_buff2		//128
+0x1980 mem_tx_buff3		//128
+0x1a00 mem_tx_buff4		//128
+0x1a80 mem_tx_buff5		//128
+0x1b00 mem_tx_buff6		//128
+0x1b80 mem_tx_buff7		//128
+//end address: 0x1bff
+)
+
+//uart buffer
+(
+0x1800 mem_h5rx_buf//0x400
+0x1bff mem_h5rx_buf_end
+0x1c00 mem_h5tx_buf
+0x1fff mem_h5tx_buf_end
+)
+
+(
+0x4c00 mem_module_rx_buf//0x400
+0x4c00 mem_module_rx_buf_little
+0x4fff mem_module_rx_buf_end
+0x1c00 mem_module_tx_buf
+0x1fff mem_module_tx_buf_end
+)
+
+(
+0x1800 mem_ir_record
+0x1c      mem_ir_record_max
+)
+
+
+0x0413 mem_module_temp_len
+0x0415 mem_uart_cmd
+0x0416 mem_uart_opcode
+0x0417 mem_uart_len
+0x0418 mem_module_temp_nl_discard_packet
+0x0419 mem_module_le_md_flag
+
+
+(
+0 MODULE_FLAG_UART_FLOW_CONTROL
+1 MODULE_FLAG_BLE_RECEIVED_DATA
+2 MODULE_FLAG_BLE_SEND_MTU23
+3 MODULE_FLAG_BLE_SEND_DATA
+)
+
+
+
+
+(
+34 NV_DATA_LEN
+-1 DECREASED_ONE
+)
+
+
+
+(
+	10 FLAG_MODULE_READ_VDD_COUNT
+)
+
+	(
+		110  DM_REFCOM_BUFF_LEN
+		230  NL_RFCOMM_BUFF_LEN
+		220  NL_RFCOMM_BUFF_LEN_220
+		20 DM_LE_BUFF_LEN
+	)
+	(
+		0x200 UART_AIR_CONTROL_THRESHOLD
+		0x150 UART_RX_CONTROL_THRESHOLD
+	)
+	(
+		0 MODULE_LED_DISABLE
+		1 MODULE_LED_BLINK
+	)
+
+
+
+
+(
+0x01 HCI_DISCARD_PACKET
+0x00 HCI_NOT_DISCARD_PACKET
+
+
+)
+
+
+
+(//Command
+0x00 HCI_CMD_SET_BT_ADDR_REQ
+0x01 HCI_CMD_SET_LE_ADDR_REQ
+0x02 HCI_CMD_SET_VISIBILITY_REQ
+0x03 HCI_CMD_SET_BT_NAME_REQ
+0x04 HCI_CMD_SET_LE_NAME_REQ
+0x05 HCI_CMD_SPP_DATA_REQ
+0x09 HCI_CMD_LE_DATA_REQ
+0x0b HCI_CMD_STATUS_IRQ
+0x0c HCI_CMD_SET_PAIRING_REQ
+0x0d HCI_CMD_SET_PINCODE_REQ
+0x0e HCI_CMD_SET_UARTCONTROL_REQ
+0x0f HCI_CMD_SET_UART_BAUD_REQ
+0x10 HCI_CMD_VERSION_REQ
+0x11 HCI_CMD_BT_DISCONNECT
+0x12 HCI_CMD_BLE_DISCONNECT
+0x13 HCI_CMD_DELETE_DEVICE
+0x14 HCI_CMD_CREATE_CONNECT
+0x26 HCI_CMD_SET_NVRAM_REQ
+0x27 HCI_CMD_SLEEP
+0x28 HCI_CMD_CONFIRM_GKEY
+0x29 HCI_CMD_SET_CREDIT_GIVEN
+0x2a HCI_CMD_AUTO_ADV_SCAN
+0x2b HCI_CMD_POWER_REQ
+0x2c HCI_CMD_POWER_SET
+0x30 HCI_CMD_PASSKEY_ENTRY
+0x31 HCI_CMD_SET_GPIO
+0x32 HCI_CMD_READ_GPIO
+0x33 HCI_CMD_LE_SET_PAIRING
+0x34 HCI_CMD_LE_SET_ADV_DATA
+0x35 HCI_CMD_LE_SET_SCAN_DATA
+0x36 HCI_CMD_LE_SEND_CONN_UPDATE_REQ
+0x38 HCI_CMD_LE_START_PAIRING
+0x48 HCI_CMD_LE_CONFIRM_GKEY
+
+)
+
+(//event
+0x00 HCI_EVENT_SPP_CONN_REP
+0x01 HCI_EVENT_HID_CONN_REP
+0x02 HCI_EVENT_LE_CONN_REP
+0x03 HCI_EVENT_SPP_DIS_REP
+0x04 HCI_EVENT_HID_DIS_REP
+0x05 HCI_EVENT_LE_DIS_REP
+0x06 HCI_EVENT_CMD_RES
+0x07 HCI_EVENT_SPP_DATA_REP
+0x08 HCI_EVENT_LE_DATA_REP
+0x09 HCI_EVENT_STANDBY_REP
+0x0a HCI_EVENT_STATUS_RES
+0x0b HCI_EVENT_FINISH_PACK_NUM
+0X0C HCI_EVENT_SNIFF_MD_CHANGE
+0x0D HCI_EVENT_NVRAM_REP
+0x0e HCI_EVENT_GKEY
+0x0F HCI_EVENT_INVALID_PACKET
+0x10 HCI_EVENT_GET_PASSKEY
+0x11 HCI_EVENT_LE_TK
+0x12 HCI_EVENT_REMOTE_MTU
+0x14 HCI_EVENT_LE_PAIRING_STATE
+0X15 HCI_EVENT_LE_ENCRYPTION_STATE
+0x17 HCI_EVENT_LE_CONNECTION_UPDATE
+0x1d HCI_EVENT_LE_GKEY
+
+)
+
+
+
+
+(
+0x7e0 OTP_ADDR_RF_PARAM_FIX
+//struct of RF_PARAM_FIX
+// uint8       //length = param_pair_count * 2 
+// uint16     //param-pair-1
+// uint16     //param-pair-2
+// uint16     //param-pair-3
+// uint16     //param-pair-4
+// uint16     //param-pair-5
+// uint16     //param-pair-6
+// uint16     //param-pair-7
+)
+(
+0x0270 FW_VERSION_NUMBER
+)
+
+(
+0	PAIRING_PINCODE
+1	PAIRING_JUSTWORK
+2	PAIRING_PASSKEY
+3	PAIRING_CONFIRM
+)
+
+
+(
+0x0001	FLAG_BT_PAIRING_SUCCESS
+0x0101	FLAG_BT_PAIRING_FAIL
+0x0080	FLAG_BLE_PAIRING_SUCCESS
+0x0180	FLAG_BLE_PAIRING_FAIL
+)
+
+
+(
+1	FLAG_EVENT_START_ENC
+0	FLAG_EVENT_PAUSE_ENC
+)
+
+(
+	0 MOUDLE_STATE_BT_BIT
+	1 MOUDLE_STATE_BLE_BIT
+)
+
+(
+	0 MOUDLE_TASK_UNSINFF
+)
+
+
+
+0x041a mem_init_cnt
+//dpi eeprom addr
+198 mouse_dpi_eeprom_addr
+
+(
+0x00 DPI_BUTTON_STATE_DOWN
+0x01 DPI_BUTTON_STATE_UP
+
+)
+
+(
+1 ONE_TRADITION_MOUSE
+2 ONE_BLE_MOUSE
+)
+
+
+(
+1 SENSOR_TYPE_A7530
+2 SENSOR_TYPE_P3204
+)
+0x30 P3204_ID
+0x31 P3065_ID
+0x3e P3610_ID
+
+0x00 PAN_REG_PID_L
+0x01 PAN_REG_PID_H
+0x02 PAN_REG_MOTION_STAUS
+0x03 PAN_REG_DELTA_X
+0x04 PAN_REG_DELTA_Y
+0x05 PAN_REG_OPRATION_MODE
+0x06 PAN_REG_CONFIG
+0x07 PAN_REG_IMAGE_QUALITY
+0x08 PAN_REG_OPRATION_STATE
+0x09 PAN_REG_WRITE_PROTECT
+0x0A PAN_REG_SLEEP_1
+0x0B PAN_REG_ENTER_TIME
+0x0C PAN_REG_SLEEP_2
+0x0D PAN_REG_IMAGE_THRESHOLD
+0x0E PAN_REG_IMAGE_RECGNITION
+
+7 pan_bit_motion
+
+(
+1000      MOUSE_LPM_CLR_LOCK_TIME
+0x06      MOUSE_DPI_ADDRESS
+       2       MOUSE_DPI_MAX_DECR
+)
+(
+80 MOUSE_SEND_BLANK_TIMER
+)
+
+
+//mem_mouse_mode_state
+(
+0x00 MOUSE_MODE_STATE_IDLE
+0x01 MOUSE_MODE_STATE_BT
+0x02 MOUSE_MODE_STATE_BLE
+)
+
+
+(
+	  0 patch00_0
+	  1 patch00_1
+	  2 patch00_2
+	  3 patch00_3
+	  4 patch00_4
+	  5 patch00_5
+	  6 patch00_6
+	  7 patch00_7
+	  8 patch01_0
+	  9 patch01_1
+	 10 patch01_2
+	 11 patch01_3
+	 12 patch01_4
+	 13 patch01_5
+	 14 patch01_6
+	 15 patch01_7
+	 16 patch02_0
+	 17 patch02_1
+	 18 patch02_2
+	 19 patch02_3
+	 20 patch02_4
+	 21 patch02_5
+	 22 patch02_6
+	 23 patch02_7
+	 24 patch03_0
+	 25 patch03_1
+	 26 patch03_2
+	 27 patch03_3
+	 28 patch03_4
+	 29 patch03_5
+	 30 patch03_6
+	 31 patch03_7
+	 32 patch04_0
+	 33 patch04_1
+	 34 patch04_2
+	 35 patch04_3
+	 36 patch04_4
+	 37 patch04_5
+	 38 patch04_6
+	 39 patch04_7
+	 40 patch05_0
+	 41 patch05_1
+	 42 patch05_2
+	 43 patch05_3
+	 44 patch05_4
+	 45 patch05_5
+	 46 patch05_6
+	 47 patch05_7
+	 48 patch06_0
+	 49 patch06_1
+	 50 patch06_2
+	 51 patch06_3
+	 52 patch06_4
+	 53 patch06_5
+	 54 patch06_6
+	 55 patch06_7
+	 56 patch07_0
+	 57 patch07_1
+	 58 patch07_2
+	 59 patch07_3
+	 60 patch07_4
+	 61 patch07_5
+	 62 patch07_6
+	 63 patch07_7
+	 64 patch08_0
+	 65 patch08_1
+	 66 patch08_2
+	 67 patch08_3
+	 68 patch08_4
+	 69 patch08_5
+	 70 patch08_6
+	 71 patch08_7
+	 72 patch09_0
+	 73 patch09_1
+	 74 patch09_2
+	 75 patch09_3
+	 76 patch09_4
+	 77 patch09_5
+	 78 patch09_6
+	 79 patch09_7
+	 80 patch0a_0
+	 81 patch0a_1
+	 82 patch0a_2
+	 83 patch0a_3
+	 84 patch0a_4
+	 85 patch0a_5
+	 86 patch0a_6
+	 87 patch0a_7
+	 88 patch0b_0
+	 89 patch0b_1
+	 90 patch0b_2
+	 91 patch0b_3
+	 92 patch0b_4
+	 93 patch0b_5
+	 94 patch0b_6
+	 95 patch0b_7
+	 96 patch0c_0
+	 97 patch0c_1
+	 98 patch0c_2
+	 99 patch0c_3
+	100 patch0c_4
+	101 patch0c_5
+	102 patch0c_6
+	103 patch0c_7
+	104 patch0d_0
+	105 patch0d_1
+	106 patch0d_2
+	107 patch0d_3
+	108 patch0d_4
+	109 patch0d_5
+	110 patch0d_6
+	111 patch0d_7
+	112 patch0e_0
+	113 patch0e_1
+	114 patch0e_2
+	115 patch0e_3
+	116 patch0e_4
+	117 patch0e_5
+	118 patch0e_6
+	119 patch0e_7
+	120 patch0f_0
+	121 patch0f_1
+	122 patch0f_2
+	123 patch0f_3
+	124 patch0f_4
+	125 patch0f_5
+	126 patch0f_6
+	127 patch0f_7
+	128 patch10_0
+	129 patch10_1
+	130 patch10_2
+	131 patch10_3
+	132 patch10_4
+	133 patch10_5
+	134 patch10_6
+	135 patch10_7
+	136 patch11_0
+	137 patch11_1
+	138 patch11_2
+	139 patch11_3
+	140 patch11_4
+	141 patch11_5
+	142 patch11_6
+	143 patch11_7
+	144 patch12_0
+	145 patch12_1
+	146 patch12_2
+	147 patch12_3
+	148 patch12_4
+	149 patch12_5
+	150 patch12_6
+	151 patch12_7
+	152 patch13_0
+	153 patch13_1
+	154 patch13_2
+	155 patch13_3
+	156 patch13_4
+	157 patch13_5
+	158 patch13_6
+	159 patch13_7
+	160 patch14_0
+	161 patch14_1
+	162 patch14_2
+	163 patch14_3
+	164 patch14_4
+	165 patch14_5
+	166 patch14_6
+	167 patch14_7
+	168 patch15_0
+	169 patch15_1
+	170 patch15_2
+	171 patch15_3
+	172 patch15_4
+	173 patch15_5
+	174 patch15_6
+	175 patch15_7
+	176 patch16_0
+	177 patch16_1
+	178 patch16_2
+	179 patch16_3
+	180 patch16_4
+	181 patch16_5
+	182 patch16_6
+	183 patch16_7
+	184 patch17_0
+	185 patch17_1
+	186 patch17_2
+	187 patch17_3
+	188 patch17_4
+	189 patch17_5
+	190 patch17_6
+	191 patch17_7
+	192 patch18_0
+	193 patch18_1
+	194 patch18_2
+	195 patch18_3
+	196 patch18_4
+	197 patch18_5
+	198 patch18_6
+	199 patch18_7
+	200 patch19_0
+	201 patch19_1
+	202 patch19_2
+	203 patch19_3
+	204 patch19_4
+	205 patch19_5
+	206 patch19_6
+	207 patch19_7
+	208 patch1a_0
+	209 patch1a_1
+	210 patch1a_2
+	211 patch1a_3
+	212 patch1a_4
+	213 patch1a_5
+	214 patch1a_6
+	215 patch1a_7
+	216 patch1b_0
+	217 patch1b_1
+	218 patch1b_2
+	219 patch1b_3
+	220 patch1b_4
+	221 patch1b_5
+	222 patch1b_6
+	223 patch1b_7
+	224 patch1c_0
+	225 patch1c_1
+	226 patch1c_2
+	227 patch1c_3
+	228 patch1c_4
+	229 patch1c_5
+	230 patch1c_6
+	231 patch1c_7
+	232 patch1d_0
+	233 patch1d_1
+	234 patch1d_2
+	235 patch1d_3
+	236 patch1d_4
+	237 patch1d_5
+	238 patch1d_6
+	239 patch1d_7
+	240 patch1e_0
+	241 patch1e_1
+	242 patch1e_2
+	243 patch1e_3
+	244 patch1e_4
+	245 patch1e_5
+	246 patch1e_6
+	247 patch1e_7
+	248 patch1f_0
+	249 patch1f_1
+	250 patch1f_2
+	251 patch1f_3
+	252 patch1f_4
+	253 patch1f_5
+	254 patch1f_6
+	255 patch1f_7
+	  0 patch20_0
+	  1 patch20_1
+	  2 patch20_2
+	  3 patch20_3
+	  4 patch20_4
+	  5 patch20_5
+	  6 patch20_6
+	  7 patch20_7
+	  8 patch21_0
+	  9 patch21_1
+	 10 patch21_2
+	 11 patch21_3
+	 12 patch21_4
+	 13 patch21_5
+	 14 patch21_6
+	 15 patch21_7
+	 16 patch22_0
+	 17 patch22_1
+	 18 patch22_2
+	 19 patch22_3
+	 20 patch22_4
+	 21 patch22_5
+	 22 patch22_6
+	 23 patch22_7
+	 24 patch23_0
+	 25 patch23_1
+	 26 patch23_2
+	 27 patch23_3
+	 28 patch23_4
+	 29 patch23_5
+	 30 patch23_6
+	 31 patch23_7
+	 32 patch24_0
+	 33 patch24_1
+	 34 patch24_2
+	 35 patch24_3
+	 36 patch24_4
+	 37 patch24_5
+	 38 patch24_6
+	 39 patch24_7
+	 40 patch25_0
+	 41 patch25_1
+	 42 patch25_2
+	 43 patch25_3
+	 44 patch25_4
+	 45 patch25_5
+	 46 patch25_6
+	 47 patch25_7
+	 48 patch26_0
+	 49 patch26_1
+	 50 patch26_2
+	 51 patch26_3
+	 52 patch26_4
+	 53 patch26_5
+	 54 patch26_6
+	 55 patch26_7
+	 56 patch27_0
+	 57 patch27_1
+	 58 patch27_2
+	 59 patch27_3
+	 60 patch27_4
+	 61 patch27_5
+	 62 patch27_6
+	 63 patch27_7
+	 64 patch28_0
+	 65 patch28_1
+	 66 patch28_2
+	 67 patch28_3
+	 68 patch28_4
+	 69 patch28_5
+	 70 patch28_6
+	 71 patch28_7
+	 72 patch29_0
+	 73 patch29_1
+	 74 patch29_2
+	 75 patch29_3
+	 76 patch29_4
+	 77 patch29_5
+	 78 patch29_6
+	 79 patch29_7
+	 80 patch2a_0
+	 81 patch2a_1
+	 82 patch2a_2
+	 83 patch2a_3
+	 84 patch2a_4
+	 85 patch2a_5
+	 86 patch2a_6
+	 87 patch2a_7
+	 88 patch2b_0
+	 89 patch2b_1
+	 90 patch2b_2
+	 91 patch2b_3
+	 92 patch2b_4
+	 93 patch2b_5
+	 94 patch2b_6
+	 95 patch2b_7
+	 96 patch2c_0
+	 97 patch2c_1
+	 98 patch2c_2
+	 99 patch2c_3
+	100 patch2c_4
+	101 patch2c_5
+	102 patch2c_6
+	103 patch2c_7
+	104 patch2d_0
+	105 patch2d_1
+	106 patch2d_2
+	107 patch2d_3
+	108 patch2d_4
+	109 patch2d_5
+	110 patch2d_6
+	111 patch2d_7
+	112 patch2e_0
+	113 patch2e_1
+	114 patch2e_2
+	115 patch2e_3
+	116 patch2e_4
+	117 patch2e_5
+	118 patch2e_6
+	119 patch2e_7
+	120 patch2f_0
+	121 patch2f_1
+	122 patch2f_2
+	123 patch2f_3
+	124 patch2f_4
+	125 patch2f_5
+	126 patch2f_6
+	127 patch2f_7
+	128 patch30_0
+	129 patch30_1
+	130 patch30_2
+	131 patch30_3
+	132 patch30_4
+	133 patch30_5
+	134 patch30_6
+	135 patch30_7
+	136 patch31_0
+	137 patch31_1
+	138 patch31_2
+	139 patch31_3
+	140 patch31_4
+	141 patch31_5
+	142 patch31_6
+	143 patch31_7
+	144 patch32_0
+	145 patch32_1
+	146 patch32_2
+	147 patch32_3
+	148 patch32_4
+	149 patch32_5
+	150 patch32_6
+	151 patch32_7
+	152 patch33_0
+	153 patch33_1
+	154 patch33_2
+	155 patch33_3
+	156 patch33_4
+	157 patch33_5
+	158 patch33_6
+	159 patch33_7
+	160 patch34_0
+	161 patch34_1
+	162 patch34_2
+	163 patch34_3
+	164 patch34_4
+	165 patch34_5
+	166 patch34_6
+	167 patch34_7
+	168 patch35_0
+	169 patch35_1
+	170 patch35_2
+	171 patch35_3
+	172 patch35_4
+	173 patch35_5
+	174 patch35_6
+	175 patch35_7
+	176 patch36_0
+	177 patch36_1
+	178 patch36_2
+	179 patch36_3
+	180 patch36_4
+	181 patch36_5
+	182 patch36_6
+	183 patch36_7
+	184 patch37_0
+	185 patch37_1
+	186 patch37_2
+	187 patch37_3
+	188 patch37_4
+	189 patch37_5
+	190 patch37_6
+	191 patch37_7
+	192 patch38_0
+	193 patch38_1
+	194 patch38_2
+	195 patch38_3
+	196 patch38_4
+	197 patch38_5
+	198 patch38_6
+	199 patch38_7
+	200 patch39_0
+	201 patch39_1
+	202 patch39_2
+	203 patch39_3
+	204 patch39_4
+	205 patch39_5
+	206 patch39_6
+	207 patch39_7
+	208 patch3a_0
+	209 patch3a_1
+	210 patch3a_2
+	211 patch3a_3
+	212 patch3a_4
+	213 patch3a_5
+	214 patch3a_6
+	215 patch3a_7
+	216 patch3b_0
+	217 patch3b_1
+	218 patch3b_2
+	219 patch3b_3
+	220 patch3b_4
+	221 patch3b_5
+	222 patch3b_6
+	223 patch3b_7
+	224 patch3c_0
+	225 patch3c_1
+	226 patch3c_2
+	227 patch3c_3
+	228 patch3c_4
+	229 patch3c_5
+	230 patch3c_6
+	231 patch3c_7
+	232 patch3d_0
+	233 patch3d_1
+	234 patch3d_2
+	235 patch3d_3
+	236 patch3d_4
+	237 patch3d_5
+	238 patch3d_6
+	239 patch3d_7
+	240 patch3e_0
+	241 patch3e_1
+	242 patch3e_2
+	243 patch3e_3
+	244 patch3e_4
+	245 patch3e_5
+	246 patch3e_6
+	247 patch3e_7
+	248 patch3f_0
+	249 patch3f_1
+	250 patch3f_2
+	251 patch3f_3
+	252 patch3f_4
+	253 patch3f_5
+	254 patch3f_6
+	255 patch3f_7
+
+)
+(
+  0x8000 core_chipid
+  0x8003 core_kick
+  0x8005 core_lpm_wr
+  0x8006 core_misc_ctrl
+  0x8007 core_otp_rdata
+  0x8009 core_pcmoutfifo
+  0x8010 core_reset
+  0x8011 core_encrypt
+  0x8015 core_uart_txd
+  0x8022 core_ucode_hi
+  0x8023 core_ucode_ctrl
+  0x8024 core_ucode_low
+  0x8025 core_ucode_data
+  0x8040 core_halfslot
+  0x8042 core_clksel
+  0x8043 core_uart_clksel
+  0x8043 core_config 
+  0x8044 core_xtal_stable_time
+  0x8045 core_otp_addr
+  0x8046 core_otp_din
+  0x8047 core_otp_ctrl
+  0x8048 core_otpd_addr
+  0x804a core_otpd_len
+  0x804b core_otpd_ctrl
+  0x804c core_lpm_reg
+  0x804f core_lpm_isogate
+  0x8050 core_clkoff
+  0x8052 core_uart_baud
+  0x8054 core_uart_rsaddr
+  0x8056 core_uart_readdr
+  0x8058 core_uart_rrptr
+  0x805a core_uart_tsaddr
+  0x805c core_uart_teaddr
+  0x805e core_uart_twptr
+  0x8060 core_uart_trptrp
+  0x8062 core_uart_ctrl
+  0x8063 core_kscn_ksctrl
+  0x8064 core_kscn_rctc
+  0x8065 core_kscn_scancycle_timer_l
+  0x8066 core_kscn_scancycle_timer_h
+  0x8067 core_kscn_m_debounce          
+  0x8068 core_kscn_modkey
+  0x806f core_kscn_rowmask
+  0x8070 core_gpio_oe0
+  0x8071 core_gpio_oe1
+  0x8072 core_gpio_oe2
+  0x8073 core_gpio_oe3
+  0x8074 core_gpio_out0
+  0x8075 core_gpio_out1
+  0x8076 core_gpio_out2
+  0x8077 core_gpio_out3
+  0x8078 core_gpio_pu0
+  0x8079 core_gpio_pu1
+  0x807a core_gpio_pu2
+  0x807b core_gpio_pu3
+  0x807c core_gpio_pd0
+  0x807d core_gpio_pd1
+  0x807e core_gpio_pd2
+  0x807f core_gpio_pd3
+  0x8080 core_gpio_sel
+  0x8081 core_gpio_sel1
+  0x8082 core_gpio_sel2
+  0x8083 core_gpio_key0
+  0x8084 core_gpio_key1
+  0x8085 core_gpio_key2
+  0x8086 core_spid_ctrl
+  0x8087 core_spid_delay
+  0x8088 core_spid_txlen
+  0x808a core_spid_txaddr
+  0x808c core_spid_rxaddr
+  0x808e core_spid_rxlen
+  0x8090 core_iicd_ctrl
+  0x8091 core_iicd_scl_low
+  0x8092 core_iicd_scl_high
+  0x8093 core_iicd_start_setup
+  0x8094 core_iicd_start_hold
+  0x8095 core_iicd_stop_setup
+  0x8096 core_iicd_data_setup
+  0x8097 core_iicd_data_hold
+  0x8098 core_iicd_txlen
+  0x809a core_iicd_txaddr
+  0x809c core_iicd_rxaddr
+  0x809e core_iicd_rxlen
+  0x80a0 core_pwm_pcnt0
+  0x80a2 core_pwm_ncnt0
+  0x80a4 core_pwm_pcnt1
+  0x80a6 core_pwm_ncnt1
+  0x80b0 core_enc_ctrl
+  0x80b1 core_cvsd_ctrl
+  0x80b2 core_codec_ctrl
+  0x80b3 core_dec_ctrl
+  0x80b4 core_bist_ctrl
+
+
+
+  
+  0x8108 core_misc_status
+  0x8109 core_qdec_cntx
+  0x810a core_qdec_cnty
+  0x810b core_qdec_cntz
+  0x810c core_uart_status
+  0x810d core_uart_rbaud
+  0x810e core_uart_txitems
+  0x8110 core_uart_trptr
+  0x8112 core_uart_rxitems
+  0x8114 core_uart_rdptr
+  0x8116 core_uart_rwptr
+  0x8119 core_kscn_kstat
+  0x811a core_kscn_event
+  0x811b core_kscn_event_num
+  0x811c core_gpio_in
+  0x811d core_gpio_in1
+  0x8124 core_current_otp_addr
+  0x8126 core_otpd_remain
+  0x8128 core_spid_remain
+  0x812a core_iicd_remain
+  0x812c core_dma_status
+  0x812d core_perf_status
+  0x812e core_adc_in
+  0x8134 core_pcminfifo
+  0x8135 core_pcminfifo_remain
+  0x8136 core_pcmoutfifo_remain
+  0x8138 core_lpm_ctrl
+  0x813c core_lpm_xtalcnt
+  0x813d core_lpm_buckcnt
+  0x813e core_lpm_ldocnt
+  0x813f core_lpm_latch
+  0x8140 core_gpio_wakeup_low
+  0x8144 core_gpio_wakeup_high
+  0x8149 core_clk_counter
+  0x8150 core_adc_sum
+// dummy regs  
+
+  0x8203 core_ice_ctrl
+  0x8204 core_ice_status
+  0x8205 core_ice_break0
+  0x8207 core_ice_break1
+  
+  0x8280 core_docd_ctrl
+  0x8288 core_docd_paddr
+  0x828a core_docd_pdata
+
+  0x8300 iic_prer_low		
+  0x8301 iic_slave_addr	
+  0x8302 iic_ctr					
+  0x8303 iic_cr					
+  0x8304 iic_rxr					
+  0x8305 iic_txr					
+  0x8306 iic_sr					
+  0x8307 iic_fifo				
+
+  0x8400   mem_b_box          /* entire bank */
+  0x8500   mem_e_box          /* entire bank */
+  0x8600   mem_l_box          /* entire bank */
+
+  0x8700 memk
+
+  0x8900 rfen_rx
+  0x8901 rfen_tx
+  0x8902 rfen_mdm
+  0x8903 rfen_sn
+  0x8904 rfen_msc
+  0x8905 rfen_ck
+  0x8906 rfen_adc
+  0x8912 rf_agc_ctrl
+  0x8914 rfen_ulp
+  0x8973 rfen_chgpump
+  0x894b rf_rx_vctrl_reg1
+  0x894c rf_rx_vctrl_reg2
+  0x894d rf_rx_ib_lna
+  0x894e rf_rx_lna_ctrim
+
+  0x8950 rf_bpf_ctrim
+  0x8951 rf_bpf_ib
+  0x8952 rf_adc_rccal
+  0x8952 rf_rccal_ctrl
+  0x8953 rf_rccal_sel
+  0x8955 rf_tx_pa
+  0x895f rf_pll_rstn
+  0x8964 rf_sdm_en
+  0x8960 rf_pll_intg
+  0x8961 rf_pll_frac
+  0x8963 rf_pll_frachi
+  0x896c rf_afc_cap
+  0x8967 rf_clkpll_bias
+  0x896f rf_clkpll_en
+  0x8968 rf_clkpll_int
+  0x8969 rf_clkpll_frac
+  0x896d rf_balun_ctrim
+  0x8971 rf_adc_mode
+  0x8972 rf_adc_gc
+  0x8973 rf_adc_ch
+  0x8980 rf_rccal_result
+  0x8981 rf_afc_d2a
+  0x8982 rf_rssi
+
+
+0x8c00 core_usb_config		
+0x8c01 core_usb_int_mask	
+0x8c10 core_usb_trig	
+0x8c11 core_usb_stall		
+0x8c12 core_usb_clear		
+0x8c18 core_usb_ep
+0x8c18 core_usb_dfifo0 
+0x8c19 core_usb_dfifo1  
+0x8c1a core_usb_dfifo2 
+0x8c20 core_usb_ep_len
+0x8c26 core_usb_status		
+0x8c27 core_usb_fifo_empty
+0x8c28 core_usb_fifo_full
+
+
+4 rx_freq_offset
+2 tx_freq_offset
+
+/* bit difinitions */
+  4 whiteoff_bit
+  6 clksel_rc
+  5 clksel_dpll
+  4 clksel_xtal
+  5 adc_rccal
+  0 bpf_rccal
+  1 demod_clkoff
+
+(
+  7 cold_wake
+  3 gpio_latch
+  4 enable_retmem
+  0xef isogate_mask
+  0xe0 cs_mask
+)
+
+// misc ctrl
+(
+  0x01 otpd_start
+  0x02 spid_start
+  0x04 iicd_start
+  0x08 lock_otp
+  0x10 x_sethi
+  0x20 y_sethi
+  0x40 z_sethi
+  0x80 ccnt_start
+)
+// dma status bit
+(
+  0 otpd_crcok
+  1 otpd_done
+  2 spid_crcok
+  3 spid_done
+  4 iicd_crcok
+  5 iicd_done
+)
+
+0x8b uart_ctrl_default //BCSP
+0x81 uart_ctrl_h4 //H4
+0x81 uart_ctrl_normal
+0x91 uart_ctrl_5line
+0x81 uart_ctrl_57600
+2 uart_baud_len
+0x00 uartclk_crystal
+0x01 uartclk_dpll
+0x1a0 uart_baud_115200
+0xbb uart_baud_256000
+0x340 uart_baud_57600
+0x34 uart_baud_921600
+0x9c4 uart_baud_9600
+0x2dc6c00 uart_clk
+0x16E3600 uart_clk_24
+
+//core_clkoff
+(
+	0 CLOCK_OFF_AUTH_ROM
+	1 CLOCK_OFF_UC_ROM
+	2 CLOCK_OFF_DEBUG_UART
+	3 CLOCK_OFF_SCHED_RAM
+	4 CLOCK_OFF_TRANCE_FIFO
+	5 CLOCK_OFF_CORDIC
+	6 CLOCK_OFF_OTPD
+	7 CLOCK_OFF_I2C
+	8 CLICK_OFF_8051
+	9 CLOCK_OFF_KEYSCAN
+	0x0a CLOCK_OFF_USB
+	0x0b CLOCK_OFF_QDECODER
+	0x0c CLOCK_OFF_SPI
+	0x0d CLOCK_OFF_PWM
+	0x0e CLOCK_OFF_CODEC
+	0x0f CLOCK_OFF_UART
+)
+
+
+/*****************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                                */
+/* $Author: Administrator $                                                           */
+/* $Id: bt_rfcomm_format.upper,v 1.1 2009-09-28 04:06:17 Administrator Exp $ */
+/* Orisil Technology                                                      */
+/*****************************************************************************/
+
+/**********/
+/* memory */
+/**********/
+
+0x041c memRemoteRPNBitRate
+0x041d memRemotePRNDataBits
+0x041e memRemotePRNStopBit
+0x041f memRemotePRNParity
+0x0420 memRemotePRNFlowControl
+0x0421 memRemotePRNXon
+0x0422 memRemotePRNXoff
+0x0423 mem_mod2div_temp
+0x0426 mem_contw_temp
+0x0428 mem_attrib_list
+0x042a mem_current_adss
+0x042b mem_current_channel
+0x042c mem_current_frame_type
+0x042d mem_current_fcs
+0x042e mem_current_length
+0x0430 mem_rfcomm_uih_payload_ptr
+0x0432 mem_uih_cmd_type
+0x0433 mem_uih_length
+0x0435 mem_param_payload_ptr
+0x0437 mem_ms_param
+0x0438 mem_pn_credit_flow_type_info
+0x0439 mem_pn_priority
+0x043a mem_pn_acknowledg_timer
+0x043b mem_pn_max_retrans
+0x043c mem_rfcomm_send_adss
+0x043d mem_rfcomm_send_frame_type
+0x043e mem_rfcomm_send_fcs
+0x043f mem_rfcomm_send_offset
+
+
+
+(
+0 CREDIT_DISABLE
+1 CREDIT_ENABLE
+)
+
+
+/************************************************************************/
+  
+
+ 
+/************/
+/* constant */
+/************/
+
+/* RFCOMM state for Headset (memRFCOMM_State) */ 
+  (
+    0 RFCOMM_IDLE           /* before the responsor HS receive SABM            */
+    1 RFCOMM_W4_DLCI0_OPEN
+    2 RFCOMM_W4_DLCI0_CLOSE
+    3 RFCOMM_START_DLCI0    /* After respond SABM frame (DLCI=0)               */
+    4 RFCOMM_W4_DLCI_OPEN
+    5 RFCOMM_W4_DLCI_CLOSE
+    6 RFCOMM_DLCI_OPENED    
+   
+  )
+  
+/* RFCOMM timer constants   */
+  (
+    1000  RFCOMM_T1         /* Used by SABM and DISC frames,100*20ms = 20s     */     
+    1000  RFCOMM_T2         /* Used by commands send in UIH on DLCI0,          */
+    300   RFCOMM_T3_RINGON  /* 6s for ring fade time                           */
+  
+  )
+
+/* Command Type */
+  (
+    0x3F RSP_RX_SABM        /*responsor expect SABM from initiator             */
+    0x3F INI_TX_SABM
+	
+    0x73 RSP_TX_UA          /*responsor send out UA command                    */
+    0x73 UA_WFBIT_SET	    /* UA control field with F bit set                 */
+	
+    0xEF RSP_RX_UIH         /*responsor expect UIH from initiator              */
+
+    0xEF RSP_TX_UIH         /*responsor send UIH to initiator                  */
+     
+    0x1F RSP_TX_DM          /*responsor send DM to initiator                   */
+    0x1F DM_WFBIT_SET       /* DM control field with F bit set                 */
+    0x0F DM_WFBIT_CLEAR     /* DM control field with F bit clear               */
+
+    0x53 RSP_RX_DISC        /*responsor expect DISC from initiator             */
+    0x53 INI_TX_DISC	    /*initiator send DISC control type command         */
+     
+    0xFF RSP_RX_UIH_WDATA   /*UIH data with credit flow control info           */
+    
+    
+  )
+
+/* Multiplexor commands and responses frames */
+  (
+    0x83 PN_COMMAND           /* Bit 0 EA C/R Type = 000001         */
+    0x81 PN_RESPONSOR         /* Bit 0 EA C/R Type = 000001         */
+    
+    0xE3 MSC_COMMAND          /* Bit 0 EA C/R Type = 000111         */
+    0xE1 MSC_RESPONSOR
+ 
+    0x13 NSC_COMMAND          /* Bit 0 EA C/R Type = 001000         */
+    0x11 NSC_RESPONSOR        /* Bit 0 EA C/R Type = 001000         */
+
+    0x23 TEST_COMMAND         /* Bit 0 EA C/R Type = 000111         */
+    0x21 TEST_RESPONSOR 
+    
+    0x93 RPN_COMMAND          /* Bit 0 EA C/R Type = 001001         */
+    0x91 RPN_RESPONSOR 
+    
+    0x53 RLS_COMMAND          /* Bit 0 EA C/R Type = 001010         */
+    0x51 RLS_RESPONSOR 
+
+    0xA3 FCON_COMMAND         /* Bit 0 EA C/R Type = 000101         */
+    0xA1 FCON_RESPONSOR 
+    
+    0x63 FCOFF_COMMAND        /* Bit 0 EA C/R Type = 000110         */
+    0x61 FCOFF_RESPONSOR 
+    	
+    0x03 RLS_OVERRUN
+    0x05 RLS_PARITY_ERROR
+    0x09 RLS_FRAMING_ERROR
+  )
+
+/* memLocalCredit */
+  (
+    0x01 RFCOMM_CREDIT
+  )
+
+  (
+  	0x007f RFCOMM_MAX_FRAME_SIZE
+  )
+
+/* UIH received Data length */
+  (
+    0  LENGTH_ZERO
+    
+    6  LENGTH_OK
+    7  LENGTH_HOT
+    8  LENGTH_RING
+    9  LENGTH_ERROR
+    9  LENGTH_AGVOL_ONEBYTE
+    10 LENGTH_AGVOL_TWOBYTE
+    10 LENGTH_VOL_ONEBYTE
+    11 LENGTH_VOL_TWOBYTE
+    12 LENGTH_BRSF
+    13 LENGTH_PLUS_CIEV
+    15 LENGTH_INBANDRING
+    14 LENGTH_CIEV_CALL
+    17 LENGTH_CRING
+    20 LENGTH_BRSF_OK
+    24 LENGTH_CIND0
+    28 LENGTH_CIEV_TWO
+    32 LENGTH_CIND_OK
+    59 LENGTH_CIND_OK2
+    100 LENGTH_DISCARD
+  )
+  
+/************/
+/* flags    */
+/************/
+  
+/* memRFCOMM_L2CAP_Interface */
+  (
+    0 RFCOMM_TX_W4BUF_FLAG    /* Wait for Tx buffer empty flag */
+    1 RFCOMM_CLOSE_LINK_FLAG
+  )
+  
+
+    
+/* memRemoteMSC		*/
+  (
+    0 MSC_EA_BIT
+    1 MSC_FC_BIT
+    2 MSC_RTC_BIT
+    3 MSC_RTR_BIT
+    6 MSC_IC_BIT
+    7 MSC_DV_BIT
+  )
+
+/* memRemoteRLS         */
+  (
+    0x0C OVERRUN_ERROR
+    0x0A PARITY_ERROR
+    0x09 FRAMING_RERROR
+  )
+  
+/* memRemoteRPNBitRate  */
+  (
+    0x00 BITS2400
+    0x01 BITS4800
+    0x02 BITS7200
+    0x03 BITS9600
+    0x04 BITS19200
+    0x05 BITS38400
+    0x06 BITS57600
+    0x07 BITS115200
+    0x08 BITS230400
+  )
+  
+/* memRemotePRNDataBits	*/
+  (
+    0x00 DATABITS5
+    0x01 DATABITS6
+    0x02 DATABITS7
+    0x03 DATABITS8
+  )
+  
+/* memRemotePRNStopBit	*/
+  (
+    0    ONESTOP
+    1    ONEHALFSTOP
+  )
+  
+/* memRemotePRNParity   */
+  (
+    0    ODDPARITY
+    1    EVENPARITY
+    2    MARKPARITY
+    3    SPACEPARITY
+    
+    7    PARITY_ENABLE_BIT
+  )
+
+/* RPN bit mask(in)     */
+  (
+     0   BIT_RATE_MASK_BIT
+     1   DATA_BITS_MASK_BIT
+     2   STOP_BITS_MASK_BIT
+     3   PARITY_MASK_BIT
+     4   PARITY_TYPE_MASK_BIT
+     5   XON_CHAR_MASK_BIT
+     6   XOFF_CHAR_MASK_BIT
+  )
+  
+/* RPN bit mask(in) 2    */
+  (
+     0   XON_XOFF_INPUT_MASK_BIT
+     1   XON_XOFF_OUTPUT_MASK_BIT
+     2	 RTR_INPUT_MASK_BIT
+     3   RTR_OUTPUT_MASK_BIT
+     4   RTC_INPUT_MASK_BIT
+     5   RTC_OUTPUT_MASK_BIT
+
+  )
+
+/* memRFCOMM_Request	*/
+  (
+    0 SEND_MSC_CMD_REQ_FLAG
+    1 SEND_AT_CKPD_REQ_FLAG
+    2 SEND_RING_REQ_FLAG
+    3 SEND_SABM_CMD
+  )
+  
+/* memRFCOMM_Misc_Flag  */
+  (
+    0 MSC_CDM_ALREADY_SEND_FLAG
+    1 CREDIT_FLOW_USED_FLAG
+    2 DONT_EMBEDDED_CREDIT_FLAG 
+    3 MSC_EXCHANGE_DONE_FLAG
+    4 FLOW_CONTROL_FCOFF_BIT            /* set when receive FCoff, clear when FCon   */
+  )
+  
+/* memRemoteMSC		*/
+  (
+    1 FLOW_CONTROL_FC_BIT		/* received MSC FC bits                      */
+  
+  )
+/* Address filed        */
+  (
+    0 ADDR_EA_BIT
+    1 ADDR_CR_BIT
+    2 ADDR_D_BIT
+  )
+//should be same as descripted in SDP
+(
+    1 SPP_SLAVE_CHANNEL
+    7 OBEX_SERVER_CHANNEL
+    8 HF_SERVER_CHANNEL 
+    9 HS_SERVER_CHANNEL
+)
+/* memRFCOMM_Flag */
+(
+	0 USING_HF_PROFILE
+	1 USING_HS_PROFILE
+	2 USING_SPP_PROFILE
+)
+/*RFCOMM Frame Type*/
+(
+	0x3f RFCOMM_FRAME_TYPE_SABM
+	0x73 RFCOMM_FRAME_TYPE_UA
+	0xEF RFCOMM_FRAME_TYPE_UIH
+	0xFF RFCOMM_FRAME_TYPE_UIH_CREDITS
+	0x53 RFCOMM_FRAME_TYPE_DISCONN
+)
+/*RFCOMM UIH CMD TYPE*/
+(
+	0x41 UIH_PARAM_NEG_CMD
+	0x40 UIH_PARAM_NEG_RES
+	0x49 UIH_PARAM_CMD_REMOVE_PORT
+	0x71 UIH_MODEM_STATUS_CMD
+	0x70 UIH_MODEM_STATUS_RES
+)
+
+/*bits in rfcomm address*/
+(
+	0 RFCOMM_ADDRESS_EXT_LEN
+	1 RFCOMM_ADDRESS_CR
+	2 RFCOMM_ADDRESS_DERECTION
+
+
+)
+
+	(                                   
+	0 RFCOMM_CHANNEL_STATE_PN_CMD
+	1 RFCOMM_CHANNEL_STATE_PN_RES
+	2 RFCOMM_CHANNEL_STATE_SABM
+	3 RFCOMM_CHANNEL_STATE_UA
+	4 RFCOMM_CHANNEL_STATE_SND_MS_CMD
+	5 RFCOMM_CHANNEL_STATE_RCV_MS_CMD
+	6 RFCOMM_CHANNEL_STATE_SND_MS_RES
+	7 RFCOMM_CHANNEL_STATE_RCV_MS_RES
+	0xff RFCOMM_CHANNEL_SETUP_COMPLETE
+	) 
+
+	/*mem_rfcomm_send_more_pkt*/
+	(
+	1 MORE_PKT_MSC_CMD_HF
+	2 MORE_PKT_MSC_CMD_HS
+	3 MORE_PKT_MSC_CMD_SPP
+	4 MORE_PKT_MSC_CMD_OBEX
+	)
+
+	(
+	127 RFCOMM_MALLOC_SIZE
+	)
+0x0440 mem_sdp_mem_start
+0x0440 mem_uuid_search_pat
+0x0444 mem_sdp_continue_byte
+0x0446 mem_sdp_pduid
+0x0447 mem_sdp_transactionid
+0x0449 mem_sdp_attribute_maxbyte
+0x044b mem_sdp_record_maxcnt
+0x044d mem_sdp_error_code
+0x0455 mem_sdp_record_handle
+0x0459 mem_sdp_search_failed
+0x045a mem_sdp_LACAP_found
+0x045b mem_sdp_RFCOMM_found
+0x045c mem_handle_list
+0x0474 mem_handle_humber
+0x0475 mem_sdp_mem_end
+(
+0 AGORHS_SERVICE
+1 GENAUDIO_SERVICE
+2 HANDSFREE_SERVICE
+)
+(
+0 ATTRIBUTEID_0000
+1 ATTRIBUTEID_0001
+2 ATTRIBUTEID_0004
+3 ATTRIBUTEID_0009
+4 ATTRIBUTEID_0100
+5 ATTRIBUTEID_0302
+6 ATTRIBUTEID_0006
+7 ATTRIBUTEID_0311
+)
+/* mem_sdp_search_profile */
+(
+1	SDP_SS_HEADSET
+2  	SDP_SS_HANDSFREE
+)
+(
+0x06 sdp_pduid_serviceSearchAttrib
+)
+0x2600 sdp_max_amount
+767 SDP_MALLOC_SIZE
+0x6e sdp_tid_spp //any number
+
+ 
+
+0x0475 mem_rxbuf
+0x0486 mem_random_number
+0x0496 mem_round_key
+0x04a6 mem_kinit
+0x04b6 mem_input_store
+0x04c6 mem_x
+0x04d6 mem_y
+0x04e5 mem_y15
+0x04e6 mem_key_store
+0x04f7 mem_key_store_end
+0x04f8 memp_ar_key
+0x04fa memp_ar_input
+0x04fc mem_ar_hround
+0x0506 mem_ec_infinite
+0x0507 mem_ec_loopc
+0x0509 mem_aes_cmac_data_length
+0x050a memdat
+0x050a mem_ax
+0x0522 mem_ay
+0x053a mem_az
+0x0552 mem_bx
+0x056a mem_ax_256//32 bytes
+0x056a mem_by
+0x0582 mem_bz
+0x058a mem_ay_256// 32 bytes
+0x059a mem_cx
+0x05aa mem_az_256// 32 bytes
+0x05b2 mem_cy
+0x05c9 mem_cy5
+0x05ca mem_bx_256// 32 bytes
+0x05ca mem_cz
+0x05e2 mem_k
+0x05ea mem_by_256// 31 bytes
+0x05fa mem_align
+0x060a mem_bz_256//32 bytes
+0x060a mem_tmp1
+0x060a memahbak
+0x0622 mem_tmp5
+0x062a mem_cx_256//32 bytes
+0x062a memahsave
+0x063a mem_tmp2
+0x064a mem_cy_256// 32 bytes
+0x064a memahsave_end
+0x064a mem_addr_padding
+0x064b mem_addr_value/* 12 bytes     */ 
+0x0652 mem_tmp3
+0x0652 mem_t1
+0x0657 mem_addr_value_end
+0x065a mem_addr_iocap_end
+0x0669 mem_cy5_256// 1 byte
+0x066a mem_cz_256// 32 bytes
+0x066a mem_tmp0
+0x066a mem_t0
+0x0672 mem_tmp0a
+0x0682 mem_t2
+0x068a mem_k_256//32 bytes
+0x069a mem_t3
+0x06aa mem_tmp1_256//32 bytes
+0x06b2 mem_t7
+0x06ca mem_tmp5_256
+0x06ea mem_tmp2_256
+0x070a mem_tmp3_256
+0x070a mem_t1_256
+0x072a mem_tmp0_256
+0x072a mem_t0_256
+0x074a mem_t2_256
+0x076a mem_t3_256
+0x078a mem_t7_256
+0x07aa mem_p
+0x07c2 mem_a
+0x07da mem_b
+0x07f2 mem_gx
+0x080a mem_gy
+0x0822 memh0
+0x0842 mem_p_256
+0x0862 mem_a_256
+0x0882 mem_gx_256
+0x08a2 mem_gy_256
+0x08c2 mem_le_slat
+
+
+
+
+
+(
+6 QUEUE_ELE_COUNT
+10 QUEUE_ELE_LENGTH
+)
+
+(
+0 PAIR_UNKNOWN
+1 PAIR_ING
+2 PAIR_DONE
+)
+
+(
+0x18 ATT_WRITE_REQUEST_HANDLE
+)
+
+(
+0x13	HANDLE_VOLUM_UP_KEY	
+0x17	HANDLE_ENTER_KEY
+)
+	
+(
+0x010210 param_smp_key_dist1
+0x010010 param_smp_key_dist2
+)
+
+(
+0 INITATOR_LTK
+1 INITATOR_IRK
+2 INITATOR_CSRK
+)
+
+(
+//100ms
+0x00a0	FAST_ADV_INTERVAL_VALUE
+//200ms
+0x0140	SLOW_ADV_INTERVAL_VALUE
+)
+
+(
+0x01	GAP_ADTYPE_FLAGS
+0x02	GAP_ADTYPE_16BIT_MORE
+0x03	GAP_ADTYPE_16BIT_COMPLETE
+0x04	GAP_ADTYPE_32BIT_MORE
+0x05	GAP_ADTYPE_32BIT_COMPLETE
+0x06	GAP_ADTYPE_128BIT_MORE
+0x07	GAP_ADTYPE_128BIT_COMPLETE
+0x08	GAP_ADTYPE_LOCAL_NAME_SHORT
+0x09	GAP_ADTYPE_LOCAL_NAME_COMPLETE
+0x0a	GAP_ADTYPE_POWER_LEVEL
+0xff	GAP_ADTYPE_MANUFACTURER_SPECIFIC
+)
+
+(
+0 ATT_BIT_NOTIFICATION
+1 ATT_BIT_INDICATION
+)
+///////////////////////////////////////////////////////////////////////////////////////
+(
+13 MAX_SHUTER_KEY_NUM
+4  MAX_SHUTTER_LED_NUM
+0xFF INVALID_PIN_NUM
+)
+(
+0 KEY_DEFAULT
+1 kEY_1
+2 kEY_2
+3 KEY_3
+4 KEY_4
+)
+(
+0 HARD_SWITCH
+1 SOFT_SWITCH
+)
+(
+0 LED_OFF
+1 LED_ON
+2 LED_BLINK
+0xFF LED_INVALID
+)
+
+/*struct led_style*/
+(
+7 LED_STYLE_STRUCT_LEN
+0 LED_TYPE_OFFSET
+1 LED_PIN_OFFSET
+2 LED_ON_TIME_OFFSET
+4 LED_OFF_TIME_OFFSET
+6 LED_BLINK_COUNT_OFFSET
+)
+
+/*struct key_conf*/
+(
+2 KEY_CONF_STRUCT_LEN
+0 KEY_PIN_OFFSET
+1 KEY_STYLE_IND_OFFSET
+)
+
+(
+0 SHUTTER_POWER_UP
+1 SHUTTER_POWER_ON
+2 SHUTTER_POWER_OFF
+)
+
+(
+0x5907 le_parse_att0
+0x5656 le_prepare_smp0
+0x5666 le_prepare_att0
+0x7c67 check_51cmd_once0
+)
+
+
+(
+0xf00 EEP_LAP_ADDR
+)
+
+(
+0x33 PAIRED_DEVICE_TYPE_BT
+0x44 PAIRED_DEVICE_TYPE_BLE
+5 PAIRED_DEVICE_DEFAULT_LEN
+0x5a5a PAIRED_DEVICE_MAGIC
+)
+
+(
+0 FLAG_SHUTTER_DEFAULT
+1 FLAG_SHUTTER_IPHONEKEY_SEND
+2 FLAG_SHUTTER_ANDROIDKEY_SEND
+)
+
+(
+0 FLAG_SHUTTER_IPHONEKEY_PRESS
+1 FLAG_SHUTTER_ANDROIDKEY_PRESS
+)
+
+(
+1  FLAG_SHUTTER_HID_DISCONN_TIMEOUT
+5 FLAG_SHUTTER_CABLE_UNPLUG_TIMEOUT
+)
+
+(
+1 FLAG_SHUTTER_1KEY
+2 FLAG_SHUTTER_2KEY
+)
+
+(
+0 FLAG_SHUTTER_1KEY_SEND_NULL
+1 FLAG_SHUTTER_1KEY_SEND_STEP1
+2 FLAG_SHUTTER_1KEY_SEND_STEP2
+3 FLAG_SHUTTER_1KEY_SEND_STEP3
+4 FLAG_SHUTTER_1KEY_SEND_STEP4
+)
+
+
+//mem_shutter_find_type_value_flag
+(
+0X00 LE_FIND_TYPE_VALUE_HID_BIT
+0X01 LE_FIND_TYPE_VALUE_BATTERY_BIT
+0X02 LE_FIND_TYPE_VALUE_DEVICE_INFO_BIT
+0x03 LE_FIND_TYPE_VALUE_GATT_BIT
+)
+
+(
+//20ms
+0x0020	FAST_ADV_INTERVAL_VALUE_PATCH
+)
+
+(
+50 TIMEOUT_DISCONNECT_TIMER
+)
+
+/* mem_le_conn_sm */
+( 
+  0x21 CONN_SM_SEND_WRITE_REQ                      
+  0x25 CONN_SM_WAIT_WRITE_RES
+  0x26 CONN_SM_WAIT_WRITE_RES1
+) 
+
+(
+6 QUEUE_ELE_COUNT_PATCH
+20 QUEUE_ELE_LENGTH_PATCH
+)
+
+(
+0x4000 mem_shutter_rx_buf
+0x4030 mem_shutter_rx_buf_end
+0x1f00 mem_shutter_tx_buf
+0x1f10 mem_shutter_tx_buf_end
+
+)
+
+(
+14 TIMER_UART_SEND_DATA_DELAY
+)
+/* simple pairing page */
+
+0x08d2 mem_sp_state_start
+0x08d2 mem_sp_state
+0x08d3 mem_master_sp_state
+0x08d4 mem_sp_flag
+0x08d5 mem_master_sp_flag
+0x08d6 mem_sp_calc
+0x08d7 mem_sp_dh_ready
+0x08d8 mem_sp_localsm
+0x08d9 mem_pairing_auth
+0x08da mem_sp_flag_start
+0x08da mem_sp_local_key_send_count
+0x08db mem_sp_remote_key_recv_count
+0x08dc mem_sp_remote_key_invalid
+0x08dd mem_sp_dhkey_invalid
+0x08de mem_gkey
+0x08e2 mem_le_pubkey_remote_x_256
+0x08ea mem_sp_pubkey_remote
+0x08ea mem_sp_pubkey_remote_x
+0x0902 mem_sp_pubkey_remote_x_end
+0x0902 mem_le_pubkey_remote_y_256
+0x090a mem_sp_pubkey_remote_y
+0x0922 mem_le_dhkey_256
+0x092a mem_sp_dhkey
+0x0942 mem_sp_dhkey_end
+0x0942 mem_sp_random_local
+0x0952 mem_sp_random_local_end
+0x0952 mem_sp_random_remote
+0x0962 mem_sp_random_remote_end
+0x0962 memresult
+0x0962 mem_sp_calc_result
+0x0962 memh
+0x0966 memg
+0x096a memf
+0x096e meme
+0x0972 mem_sp_calc_result_high
+0x0972 memd
+0x0976 memc
+0x097a memb
+0x097e mema
+0x0982 mem_sp_check_result
+0x0992 mem_sp_confirm_remote
+0x09a2 mem_sp_prarm_stack
+
+/* simple pairing status flag */
+(
+  0x00   SP_FLAG_STANDBY
+  0x01   SP_FLAG_COMMIT
+  0x02   LE_SP_FLAG_COMMIT_256
+
+)
+
+/* simple pairing calc flag */
+(
+  0x00   SP_CALC_STANDBY
+  0x01   SP_CALC_PUBKEY
+  0x02   SP_CALC_DHKEY
+  0x03   SP_CALC_PUBKEY_256
+  0x04   SP_CALC_DHKEY_256
+)
+
+/* simple pairing state */
+(
+  0x00   SP_STAT_NULL
+  0x01   SP_STAT_KEY_RECV
+  0x02   SP_STAT_KEY_GENERATE
+  0x03   SP_STAT_KEY_SEND
+  0x04   SP_STAT_COMMIT_CALC
+  0x05   SP_STAT_COMMIT_SEND
+  0x06   SP_STAT_RANDOM_RECV
+  0x07   SP_STAT_RANDOM_SEND
+  0x08   SP_STAT_CONFIRM_RECV
+  0x09   SP_STAT_CONFIRM_CHECK
+  0x0A   SP_STAT_CONFIRM_CALC
+  0x0B   SP_STAT_CONFIRM_SEND
+  0x0C   SP_STAT_LINK_KEY_CALC
+  0x0F   SP_STAT_DONE
+  0x10   SP_STAT_FEATURE_EXT_SEND
+  0x11   SP_STAT_GKEY_CALC
+  /*simple pairing master only*/
+  0x12   SP_MASTER_STAT_START_SKIP
+  0x13   SP_MASTER_STAT_START_DONE
+  0x14   SP_STAT_COMMITMENT_COMPARE
+  0x15   SP_STATE_END
+)
+
+
+/* simple paring invalid flag */
+(
+  0x00   SP_KEY_INVALID
+  0x01   SP_KEY_VALID
+  0x03   SP_KEY_VALID_256
+
+)
+
+/* encapsulated defination for P-192 key */
+(
+  0x01  ENCAPSULATED_MAJOR_TYPE_P192
+  0x01  ENCAPSULATED_MINOR_TYPE_P192
+  0x30  ENCAPSULATED_LEN_P192
+)
+
+/* bluetooth 2.1 support flag */
+(
+  0x00  SIMPLE_PAIRING_ENABLE
+  0x01  ENCRYPTION_PAUSE_ENABLE
+  0x02  EXTENDED_INQUIRY_RESPOSE_ENABLE
+  0x03  SNIFF_SUBRATING_ENABLE
+)
+
+/*mem_sp_localsm*/
+(
+  0x00 DEFAULT_STATEMACHINE
+  0x01 LOCAL_STATEMACHINE
+)
+
+(
+ 0x00 DEFALT_PAIRING_AUTH
+ 0x01 PAIRING_AUTH
+)
+
+(
+1 SSP_MODE_SSP_PIN_FLAG
+2 SSP_MODE_PASSKEY_ENTRY_FLAG
+3 SSP_MODE_JUST_WORK_FLAG
+)
+
+(//ssp mode
+0x040003 SSP_MODE_JUST_WORK_IO_CAP_DATA
+0X040001 SSP_MODE_SSP_PIN_IO_CAP_DATA
+0X040002 SSP_MODE_PASSKEY_IO_CAP_DATA
+)
+
+(
+0x00 DISPLAY_ONLY
+0x01 DISPLAY_YESNO
+0x02 KEYBOARD_ONLY
+0x03 NO_INPUT_NO_OUTPUT
+)
+
+(
+7 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT
+6 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT
+0 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT
+)
+(
+1 FLAG_PAIRING_STATE_PAIRING
+0 FLAG_PAIRING_STATE_NOT_PAIRING
+)
+
+  
+/*****************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                                */
+/* $Author: Administrator $                                                           */
+/* $Id: bt_ui_format.upper,v 1.1 2009-09-28 04:06:17 Administrator Exp $     */
+/************************************************************************/
+
+
+	/* ========= memory ============== */
+0x09b2 mem_UI_data_txbuff_length
+0x09b4 mem_ipc_skip_continue_proc
+0x09b5 mem_ui_timer_temp//length 4
+0x09b5 mem_ipc_rega_temp
+
+/************/
+/* constant */
+/************/
+
+//mem_ui_state_map
+(
+0 UI_STATE_BT_CONNECTED
+1 UI_STATE_BT_SETUP_COMPLETE
+2 UI_STATE_BT_HID_CONN
+3 UI_STATE_BT_HID_HANDSHAKE
+4 UI_STATE_BT_SPP_CONN
+5 UI_STATE_BT_SNIFF
+6 UI_STATE_BT_DISCOVERY
+7 UI_STATE_BT_RECONNECT
+8 UI_STATE_BT_SLAVE_ROLE
+9 UI_STATE_BLE_CONNECTED
+10 UI_STATE_BLE_WRITE_RCV
+11 UI_STATE_BLE_ADV
+12 UI_STATE_BTN_DOWN
+13 UI_STATE_LED_BLINK
+14 UI_STATE_LED_ON
+)
+(
+0xFF LED_FLASH_INFINITE
+)
+
+(
+1 UI_STATE_SPP_NL_AUTO_DISCOVER
+
+)
+
+/* UI state for Headset (memui_HS_State) */ 
+   (
+    0 UI_HEADSET_DISCONNECT
+    1 UI_HEADSET_IDLE                   /* before the responsor HS receive SABM      */
+    2 UI_HEADSET_W4CONNECT
+    3 UI_HEADSET_RINGING
+    4 UI_HEADSET_CONNECTED
+    5 UI_HEADSET_PARING
+  )
+/* memui_BB_State */
+(
+  0 UI_BB_OFF
+  1 UI_BB_IDLE
+  2 UI_BB_DISCOVERY
+  3 UI_BB_CONNECTED_ACTIVE_NO_SCO
+  4 UI_BB_CONNECTED_ACTIVE_WITH_SCO
+  5 UI_BB_CONNECTED_ACTIVE_WAIT_SNIFF
+  6 UI_BB_CONNECTED_SNIFF
+  7 UI_BB_RECONNECT
+  8 UI_BB_CONNECTED_SNIFF_WITH_SCO
+)
+
+/************/
+/* flags    */
+/************/
+  
+/* memui_Misc_Flags */
+  (
+    5 NO_IDLE_TURN_OFF
+    7 ANSWER_RING_FLAG               /* 1 Answer,0 no*/
+  )
+
+/* mem_UI_SCH_Interface */
+  (
+    0  UI_HS_PAIRING 
+    2  UI_REQ_CLOSE_RFCOMM
+    3  UI_LINK_LOST
+    4  UI_REQ_OPEN_SCO
+    6  UI_REQ_CLOSE_SCO
+  )
+  
+/* memui_PassOverKey */
+  (
+    0  ANSWER_RING_BIT
+    0  AG_SEND_RING_BIT
+    1  VOL_UP_BIT
+    2  VOL_DOWN_BIT
+    3  INI_CALL_BIT
+    4  DAIL_LAST_CALL
+    5  END_CALL_BIT
+    6  NOKIA_VOICE_ACTIVE 
+    7  REJECT_CALL_BIT
+  )
+  
+/* memui_reconnect_mode */
+(
+  0 NO_RECONNECTION
+  1 RECONNECT_HID
+  2 RECONNECT_HF
+  3 RECONNECT_HS
+  4 RECONNECT_HID_HF
+  5 RECONNECT_HID_HS
+)
+/* memui_Commands */
+(
+0 BT_CMD_STANDBY
+1 BT_CMD_START_DISCOVERY
+2 BT_CMD_STOP_DISCOVERY
+3 BT_CMD_RECONNECT
+4 BT_CMD_DISCONNECT
+5 BT_CMD_ENTER_SNIFF
+6 BT_CMD_EXIT_SNIFF
+7 BT_CMD_ENTER_SNIFF_SUBRATING
+8 BT_CMD_EXIT_SNIFF_SUBRATING
+9 BT_CMD_SNIFF_TEST
+10 BT_CMD_SET_PIN_CODE
+11 BT_CMD_START_INQUIRY
+12 BT_CMD_STOP_INQUIRY
+13 BT_CMD_START_ADV
+14 BT_CMD_STOP_ADV
+15 BT_CMD_START_DIRECT_ADV
+16 BT_CMD_STOP_DIRECT_ADV
+17 BT_CMD_LE_DISCONNECT
+18 BT_CMD_LE_UPDATE_CONN
+19 BT_CMD_LED_OFF
+20 BT_CMD_LED_ON
+21 BT_CMD_LED_BLINK
+22 BT_CMD_LE_START_CONN
+23 BT_CMD_LE_START_SCAN
+24 BT_CMD_LE_STOP_SCAN
+25 BT_CMD_ENTER_HIBERNATE
+27 BT_CMD_LE_SMP_SECURITY_REQUEST
+28 BT_CMD_LE_START_WRITE
+29 BT_CMD_ROLE_SWITCH
+30 BT_CMD_BB_RECONN_CANCEL
+31 BT_CMD_STORE_RECONN_INFO_LE
+32 BT_CMD_STORE_RECONN_INFO_BT
+33 BT_CMD_DHKEY_NOT_ACCEPT
+34 BT_CMD_START_24G
+35 BT_CMD_STOP_24G
+36 BT_CMD_PAIR_24G
+)
+
+(
+0x00 BT_EVT_NULL
+0x01 BT_EVT_BB_CONNECTED
+0x02 BT_EVT_BB_DISCONNECTED
+0x03 BT_EVT_RECONN_STARTED
+0x04 BT_EVT_RECONN_FAILED
+0x05 BT_EVT_SETUP_COMPLETE
+0x06 BT_EVT_HID_CONNECTED
+0x07 BT_EVT_HID_DISCONNECTED
+0x08 BT_EVT_SPP_CONNECTED
+0x09 BT_EVT_SPP_DISCONNECTED
+0x0A BT_EVT_PINCODE_REQ
+0x0B BT_EVT_ENTER_SNIFF
+0x0C BT_EVT_EXIT_SNIFF
+0x0D BT_EVT_ENTER_SNIFF_SUB
+0x0E BT_EVT_EXIT_SNIFF_SUB
+0x0F BT_EVT_DISCOVERY_STOPED
+0x10 BT_EVT_BUTTON_LONG_PRESSED
+0x12 BT_EVT_HID_HANDSHAKE
+0X13 BT_EVT_RECONN_PAGE_TIMEOUT
+0x14 BT_EVT_LE_CONNECTED
+0X15 BT_EVT_LE_DISCONNECTED
+0x16 BT_EVT_ML2CAP_CONN_REFUSED
+0x17 BT_EVT_BUTTON_ENTER_HIBERNATE
+0x18 BT_EVT_LINKKEY_GENERATE
+0x19 BT_EVT_SWITCH_NOT_ACCEPT
+0x20 BT_EVT_SWITCH_ACCEPT
+0x21 BT_EVT_SNIFF_NOT_ACCEPT
+0x22 BT_EVT_SNIFF_ACCEPT
+0x23 BT_EVT_UNSNIFF_ACCEPT
+0x24 BT_EVT_UNSNIFF_NOT_ACCEPT
+0x25 BT_EVT_BUTTON_ADJUST_DPI
+0x26 BT_EVT_SEND_UNSNIFF_ACCEPT
+0x27 BT_EVT_VIRTUAL_CABLE_UNPLUG
+0x28 BT_EVT_LE_WRITE_REQUEST
+0x29 BT_EVT_LE_ENC_INFO
+0x2a BT_EVT_SWITCH_FAIL_MASTER
+0x2b BT_EVT_SWITCH_SUCCESS_MASTER
+0x2c BT_EVT_BUTTON_DOWN
+0x2d BT_EVT_BUTTON_UP
+0x2e BT_EVT_REMOTE_UNSNIFF
+0x30 BT_EVT_LE_PAIRING_FAIL
+0x31 BT_EVT_LE_PAIRING_SUCCESS
+0x32 BT_EVT_LE_START_ENC
+0X33 BT_EVT_LE_PAUSE_ENC
+0X34 BT_EVT_LE_TK_GENERATE
+0x35 BT_EVT_BT_GKEY_GENERATE
+0x36 BT_EVT_BT_GET_PASSKEY
+0x37 BT_EVT_BT_PAIRING_FAIL
+0x38 BT_EVT_BT_PAIRING_SUCCESS
+0x39 BT_EVT_24G_PAIRING_COMPLETE
+0x3a BT_EVT_24G_ATTEMPT_FAIL
+0x50 BT_EVT_TIMER_INIT
+0xF0 BT_EVT_TIMER_MASK
+0x51 BT_EVT_TIMER_100MS
+0x52 BT_EVT_TIMER_200MS
+0x53 BT_EVT_TIMER_300MS
+0x54 BT_EVT_TIMER_400MS
+0x55 BT_EVT_TIMER_500MS
+0x56 BT_EVT_TIMER_600MS
+0x57 BT_EVT_TIMER_700MS
+0x58 BT_EVT_TIMER_800MS
+0x59 BT_EVT_TIMER_900MS
+0x5A BT_EVT_TIMER_1KMS
+0x5B BT_EVT_TIMER_1K1MS
+0x5C BT_EVT_TIMER_1K2MS
+0x5D BT_EVT_TIMER_1K3MS
+0x5E BT_EVT_TIMER_1K4MS
+0x5F BT_EVT_TIMER_1K5MS
+)
+//switch
+(
+0 OFF
+1 ON
+)
+/* memui_mem_lock */
+(
+    0 MEM_UNLOCK
+    1 MEM_LOCK
+)
+/* memui_flag0 */
+(
+    0 UI_USER_DATA_FLAG
+    1 UI_WII_WAITING_SLEEP
+    2 UI_KEYBOARD_SNIFF_SKIP
+)
+/* mem_master_type */
+(
+    0 MTYPE_HID_DEFAULT
+    1 MTYPE_HID_SSP
+    2 MTYPE_SPP
+)
+
+	(	
+	0x01 RECIEVE_SDP_CONN_RES
+	0x02 RECIEVE_SDP_CFG_REQ
+	0x03 RECIEVE_SDP_CFG_RES
+	0x04 RECIEVE_RFCOMM_CONN_RES
+	0x05 RECIEVE_RFCOMM_CFG_REQ
+	0x06 RECIEVE_RFCOMM_CFG_RES
+	0x07 RECIEVE_HID_CTRL_CONN_RES
+	0x08 RECIEVE_HID_CTRL_CFG_REQ
+	0x09 RECIEVE_HID_CTRL_CFG_RES
+	0x0A RECIEVE_HID_INT_CONN_RES
+	0x0B RECIEVE_HID_INT_CFG_REQ
+	0x0C RECIEVE_HID_INT_CFG_RES
+	0x0D RECIEVE_AVCTP_CONN_RES
+	0x0E RECIEVE_AVCTP_CFG_REQ
+	0x0F RECIEVE_AVCTP_CFG_RES
+	0x10 RECIEVE_AVDTP_SIGNAL_CONN_RES
+	0x11 RECIEVE_AVDTP_SIGNAL_CFG_REQ
+	0x12 RECIEVE_AVDTP_SIGNAL_CFG_RES
+	0x13 RECIEVE_AVDTP_MEDIA_CONN_RES
+	0x14 RECIEVE_AVDTP_MEDIA_CFG_REQ
+	0x15 RECIEVE_AVDTP_MEDIA_CFG_RES
+	0x16 RECIEVE_SS_REASULT_HS                  
+	0x17 RECIEVE_SS_REASULT_HF                  
+	0x18 RECIEVE_SS_REASULT_AVTARG		          
+	0x19 RECIEVE_SS_REASULT_OBEX		            
+	0x1A RECIEVE_DLCI0_UA
+	0x1B RECIEVE_HS_PARAM_NEG_RES
+	0x1C RECIEVE_HS_UA
+	0x1D RECIEVE_HS_MODEM_STATUS_RES
+	0x1E RECIEVE_HS_MODEm_STATUS_CMD
+	0x1F RECIEVE_HF_PARAM_NEG_RES   
+	0x20 RECIEVE_HF_UA              
+	0x21 RECIEVE_HF_MODEM_STATUS_RES
+	0x22 RECIEVE_HF_MODEm_STATUS_CMD 
+	0x23 RECIEVE_OBEX_PARAM_NEG_RES     
+	0x24 RECIEVE_OBEX_UA              
+	0x25 RECIEVE_OBEX_MODEM_STATUS_RES
+	0x26 RECIEVE_OBEX_MODEm_STATUS_CMD    
+	0x27 RECIEVE_SPP_PARAM_NEG_RES   
+	0x28 RECIEVE_SPP_UA              
+	0x29 RECIEVE_SPP_MODEM_STATUS_RES
+	0x2A RECIEVE_SPP_MODEm_STATUS_CMD
+	0x2b RECIEVE_SDP_DISCONN_RES
+	)
+
+
+
+	(
+	0 UPPERSM_RP_IDLE
+	1 UPPERSM_RP_SDP_CONN
+	2 UPPERSM_RP_SDP_CONN_WAIT
+	3 UPPERSM_RP_SDP_CFG
+	4 UPPERSM_RP_SDP_CFG_WAIT
+	5 UPPERSM_RP_SS_AVTARG
+	6 UPPERSM_RP_SS_AVTARG_WAIT
+	7 UPPERSM_RP_SS_OBEX
+	8 UPPERSM_RP_SS_OBEX_WAIT
+	9 UPPERSM_RP_SDP_DISCONN
+	10 UPPERSM_RP_SDP_DISCONN_WAIT
+	11 UPPERSM_RP_AVDTP_CONN_WAIT
+	12 UPPERSM_RP_AVCTP_CONN
+	13 UPPERSM_RP_AVCTP_CONN_WAIT
+	14 UPPERSM_RP_AVCTP_CFG
+	15 UPPERSM_RP_AVCTP_CFG_WAIT
+	16 UPPERSM_RP_OBEX_CMD_PN
+	17 UPPERSM_RP_OBEX_CMD_PN_WAIT
+	18 UPPERSM_RP_OBEX_SABM
+	19 UPPERSM_RP_OBEX_SABM_WAIT
+	20 UPPERSM_RP_OBEX_CMD_MS
+	21 UPPERSM_RP_OBEX_CMD_MS_WAIT
+	)
+	(		/*mem_upper_sm_reconn*/
+	0 UPPERSM_RECONN_IDLE		
+	1 UPPERSM_RECONN_SDP_CONN		
+	2 UPPERSM_RECONN_SDP_CONN_WAIT		
+	3 UPPERSM_RECONN_SDP_CFG		
+	4 UPPERSM_RECONN_SDP_CFG_WAIT		
+	5 UPPERSM_RECONN_SS_HS
+	6 UPPERSM_RECONN_SS_HS_WAIT
+	7 UPPERSM_RECONN_SS_HF
+	8 UPPERSM_RECONN_SS_HF_WAIT
+	9 UPPERSM_RECONN_SS_AVTARG		
+	10 UPPERSM_RECONN_SS_AVTARG_WAIT		    
+	11 UPPERSM_RECONN_SS_OBEX		            
+	12 UPPERSM_RECONN_SS_OBEX_WAIT		      
+	13 UPPERSM_RECONN_SDP_DISCONN		        
+	14 UPPERSM_RECONN_SDP_DISCONN_WAIT      
+	15 UPPERSM_RECONN_HID_CTRL_CONN		      
+	16 UPPERSM_RECONN_HID_CTRL_CONN_WAIT		
+	17 UPPERSM_RECONN_HID_CTRL_CFG		      
+	18 UPPERSM_RECONN_HID_CTRL_CFG_WAIT     
+	19 UPPERSM_RECONN_HID_INT_CONN		      
+	20 UPPERSM_RECONN_HID_INT_CONN_WAIT		  
+	21 UPPERSM_RECONN_HID_INT_CFG		        
+	22 UPPERSM_RECONN_HID_INT_CFG_WAIT      
+	23 UPPERSM_RECONN_RFCOMM_CONN		        
+	24 UPPERSM_RECONN_RFCOMM_CONN_WAIT		  
+	25 UPPERSM_RECONN_RFCOMM_CFG		        
+	26 UPPERSM_RECONN_RFCOMM_CFG_WAIT       
+	27 UPPERSM_RECONN_RFCOMM_SABM		        
+	28 UPPERSM_RECONN_RFCOMM_SABM_WAIT		  
+	29 UPPERSM_RECONN_SPP_CMD_PN		        
+	30 UPPERSM_RECONN_SPP_CMD_PN_WAIT		    
+	31 UPPERSM_RECONN_SPP_SABM		          
+	32 UPPERSM_RECONN_SPP_SABM_WAIT		      
+	33 UPPERSM_RECONN_SPP_CMD_MS		        
+	34 UPPERSM_RECONN_SPP_CMD_MS_WAIT       
+	35 UPPERSM_RECONN_HF_CMD_PN		          
+	36 UPPERSM_RECONN_HF_CMD_PN_WAIT		    
+	37 UPPERSM_RECONN_HF_SABM		            
+	38 UPPERSM_RECONN_HF_SABM_WAIT		      
+	39 UPPERSM_RECONN_HF_CMD_MS		          
+	40 UPPERSM_RECONN_HF_CMD_MS_WAIT        
+	41 UPPERSM_RECONN_AVDTPs_CONN		        
+	42 UPPERSM_RECONN_AVDTPs_CONN_WAIT		  
+	43 UPPERSM_RECONN_AVDTPs_CFG		        
+	44 UPPERSM_RECONN_AVDTPs_CFG_WAIT       
+	45 UPPERSM_RECONN_AVDTPm_CONN		        
+	46 UPPERSM_RECONN_AVDTPm_CONN_WAIT		  
+	47 UPPERSM_RECONN_AVDTPm_CFG		        
+	48 UPPERSM_RECONN_AVDTPm_CFG_WAIT       
+	49 UPPERSM_RECONN_AVCTP_CONN		        
+	50 UPPERSM_RECONN_AVCTP_CONN_WAIT		    
+	51 UPPERSM_RECONN_AVCTP_CFG		          
+	52 UPPERSM_RECONN_AVCTP_CFG_WAIT		    
+	53 UPPERSM_RECONN_OBEX_CMD_PN		        
+	54 UPPERSM_RECONN_OBEX_CMD_PN_WAIT		  
+	55 UPPERSM_RECONN_OBEX_SABM		          
+	56 UPPERSM_RECONN_OBEX_SABM_WAIT		    
+	57 UPPERSM_RECONN_OBEX_CMD_MS		        
+	58 UPPERSM_RECONN_OBEX_CMD_MS_WAIT     
+	59 UPPERSM_RECONN_SS_SPP
+	60 UPPERSM_RECONN_SS_SPP_WAIT
+	)
+	(/*mem_UI_profile_supported*/
+	0 support_HID
+	1 support_A2DP
+	2 support_AVRCP
+	3 support_HF
+	4 support_HS
+	5 support_PBAP
+	6 support_SPP
+	)
+	/*mem_upper_sm_ss*/
+	(
+	0 UPPERSM_SS_HS
+	1 UPPERSM_SS_HF
+	2 UPPERSM_SS_AVTARG
+	3 UPPERSM_SS_OBEX
+	)
+
+	(
+	160 UI_HUNDRED_MILLISECOND_TIME
+	0XFF UI_BUTTON_GPIO_DISABLE
+	)
+	(
+	0x01 UI_BB_INCONNECT
+	0x10 UI_BB_DISCONNECT
+	)
+(
+0x00 UI_BUTTON_STATE_DOWN
+0x01 UI_BUTTON_STATE_UP
+)
+
+//mem_ipc_skip_continue_proc
+(
+	0 IPC_CONTINUE_PROCESS
+	1 IPC_SKIP_CONTINUE_PROCESS
+)
+
+/**
+*  @file:bt_utility_format.upper
+*  @author: lei.zhu
+*  utility header file. inlcude timer
+*  Copyright:  (C)Hanlynn Technology    
+*/
+
+0x09b9 mem_hold_contr
+0x09bb mem_hold_contw
+0x09bd mem_fifo_temp
+0x09be mem_pdatatemp
+0x09c6 mem_temp//8 bytes
+0x09ce mem_timeup// 4 bytes
+0x09d2 mem_rega//4 bytes
+0x09d6 mem_regb//4 bytes
+0x09da mem_regc//3 bytes
+0x09dd mem_contr//2 bytes
+0x09df mem_contw//2 bytes
+0x09e1 mem_le_data_len_temp//1byte
+0x09e1 mem_tx_fifo_map_temp
+0x09e1 mem_rpn_dlci//1byte
+0x09e1 mem_event_cmd_response_content//2byte
+0x09e1 mem_le_prand//16byte
+0x09e1 mem_AES_CMAC_k//16 bytes
+0x09e1 mem_regext_index//1 bytes
+0x09e1 mem_temp_block0
+0x09e2 mem_le_data_temp//15bytes
+0x09e2 mem_temp_block1
+0x09f1 mem_le_aes_128//16byte
+0x09f1 mem_regext//64 bytes
+0x09f1 mem_AES_CMAC_k1//16 bytes
+0x09f1 mem_temp_block2
+0x0a01 mem_AES_CMAC_k2//16 bytes
+0x0a01 mem_temp_block3
+0x0a11 mem_AES_CMAC_temp// 16 bytes
+0x0a11 mem_temp_block4
+0x0a21 mem_AES_CMAC_M_last// 16 bytes
+0x0a21 mem_temp_block5
+0x0a31 mem_le_mackey//16 bytes
+0x0a31 mem_temp_block6
+0x0a41 mem_temp_prepare_write_request
+
+
+(
+/*mem_util_timer_flag0_7*/
+    0   UTIL_TIMER_0_USED
+    1   UTIL_TIMER_1_USED
+    2   UTIL_TIMER_2_USED
+    3   UTIL_TIMER_3_USED
+    4   UTIL_TIMER_4_USED
+    5   UTIL_TIMER_5_USED
+    6   UTIL_TIMER_6_USED
+    7   UTIL_TIMER_7_USED
+/*mem_util_timer_flag8_15*/
+    0   UTIL_TIMER_8_USED
+    1   UTIL_TIMER_9_USED
+    2   UTIL_TIMER_10_USED
+    3   UTIL_TIMER_11_USED
+    4   UTIL_TIMER_12_USED
+    5   UTIL_TIMER_13_USED
+    6   UTIL_TIMER_14_USED
+    7   UTIL_TIMER_15_USED
+)
+
+//util fifo param
+(
+
+8 UTIL_FIFO_LEN
+-1 UTIL_FIFO_OFFSET
+)
+
+0x0b09 mem_kb_map2_temp_start
+0x0b09 mem_kb_map2_vk
+0x0b0c mem_kb_current_vk
+0x0b0f mem_kb_vk_offset
+0x0b10 mem_kb_vk_processed_cnt
+0x0b11 mem_kb_map2_current_cell_ptr
+0x0b13 mem_kb_device_button
+0x0b14 mem_table_temp0
+0x0b1c mem_table_temp1
+0x0b24 mem_kb_map2_temp_end
+0x0b24 mem_check_count
+0x0b25 mem_store_key_count
+0x0b26 mem_kb_gpio_val
+
+/************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                           */
+/* $Author: Administrator $                                                     */
+/* $Id: bt_var.osi,v 1.1 2009-09-28 04:06:18 Administrator Exp $   */
+/* Orisil Technology                                                 */
+/************************************************************************/
+
+
+/* packet types */
+(
+  0x02 FHS_PACKET 
+  0x03 DM1_PACKET 
+  0x03 DM1_LMP_PACKET 
+  0x04 DH1_PACKET 
+  0x05 HV1_PACKET 
+  0x06 HV2_PACKET 
+  0x07 HV3_PACKET 
+  0x08 DV_PACKET 
+  0x09 AUX1_PACKET 
+  0x0a DM3_PACKET 
+  0x0b DH3_PACKET 
+  0x0e DM5_PACKET 
+  0x0f DH5_PACKET 
+)
+
+
+/* mem_lmp_respond */
+(
+  0 RESPOND_TO_ALL
+  1 PASS_EVERYTHING
+  2 PASS_ONLY_UNKNOWNS
+  3 RESPOND_TO_LMPS
+)
+/* SCO algorithm defines */
+(
+  0 ULAW
+  1 ALAW
+  2 CVSD
+)
+/* encryption modes */
+(
+  0 NO_ENCRYPTION
+  1 PT_PT_ENCRYPTION
+  2 PT_BROADCAST_ENCRYPTION
+)
+
+/* bits used in mem_lmp_state1 variable */
+(
+  0 LMP_STATE_DETACH
+  1 LMP_STATE_HOLD
+  2 LMP_STATE_SNIFF
+  3 LMP_STATE_PARK
+  4 LMP_STATE_WAIT_SCO_CREATE
+  5 LMP_STATE_WAIT_SCO_KILL
+  6 LMP_STATE_SCO3
+  7 LMP_STATE_WAIT_SCO_START
+)
+/* mem_lmp_state2 */
+(
+  0 LMP_WAIT_FOR_SNIFF_ACCEPT
+  1 LMP_WAIT_FOR_PARK_ACCEPT
+  2 LMP_SEND_UNPARK_ACCEPTED
+  3 LMP_SEND_ENCRYPTION_START
+  4 LMP_SEND_ENCRYPTION_STOP
+  5 MESSAGE_QUEUE
+  7 LMP_STATE_WAIT_BEACON
+)
+/* mem_lmp_state3 */
+(
+ 0 INQUIRY_STATE_CHECK
+ 1 HOST_DELAY_MESSAGE
+ 2 VARIABLE_DELAY
+ 3 TEST_MODE_START_LOOPBACK
+ 4 TEST_MODE_START_PATTERN
+ 5 PARSE_TEST_CONTROL_MESSAGE
+ 6 H_AUTH_SEND_COMB_KEY
+)
+/* mem_rx_status */
+(
+  0 FROM_MASTER
+)
+/* mem_ms_flag */
+(
+  0 MS_RECEIVE_SWITCH_REQ
+  1 MS_SEND_SETUP_COMPLATE
+)
+/* mem_conn_sm */
+(
+  0 CONN_SM_STANDBY
+  1 CONN_SM_WAIT_PAGE
+  2 CONN_SM_SEND_FEATURES
+  3 CONN_SM_WAIT_FEATURES_RES
+  4 CONN_SM_SEND_CONN_REQ
+  5 CONN_SM_WAIT_CONN_ACCEPT
+  6 CONN_SM_AUTH_PAIR
+  7 CONN_SM_AUTH_PAIR_WAIT
+  8 CONN_SM_WAIT_MUTAL_AUTH
+  9 CONN_SM_ENCRYPT
+  0xa CONN_SM_ENCRYPT_WAIT
+  0xb CONN_SM_ENCRYPT_WAIT_CLEAR
+  0xc CONN_SM_SEND_SETUP_COMPLETE
+  0xd CONN_SM_WAIT_SETUP_COMPLETE 
+  0xe CONN_SM_SEND_SWITCH
+  0xf CONN_SM_DETACH_DELAY
+  0x10 CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION
+  0x11 CONN_SM_DELAY_RESTART_CONNECTION
+  0x12 CONN_SM_SEND_VERSION
+  0X13 CONN_SM_WAIT_VERSION
+  0x14 CONN_SM_SEND_FEATURES_EXT
+  0x15 CONN_SM_WAIT_FEATURES_EXT
+  0x16 CONN_SM_PAIRING
+  0x17 CONN_SM_AUTH
+  0x18 CONN_SM_PAIRING_WAIT
+  0x19 CONN_SM_AUTH_WAIT
+  0x1a CONN_SM_DONE
+  0x1b CONN_SM_WAIT_DONE
+)
+
+/* btStateConn1 */
+(
+  0 CONN_STANDBY
+  1 CONN_MASTER_SEND_CONN_REQ
+  2 CONN_MASTER_WAIT_FOR_CONN_ACCEPTED
+  3 CONN_MASTER_AUTH
+  4 CONN_MASTER_WAIT_FOR_FEATURES
+  5 CONN_MASTER_WAIT_FOR_SETUP_COMPLETE
+  6 CONN_MASTER_WAIT_FOR_MAX_SLOT
+  7 CONN_SLAVE_CONN_REQUESTED
+  8 CONN_SLAVE_WAIT_FOR_SETUP_COMPLETE
+  9 CONN_SLAVE_AUTH
+  10 CONN_USING_HOST_OPCODE
+  11 CONN_SLAVE_AUTH_WAIT
+  12 CONN_SLAVE_ENCRYPT_WAIT
+)
+
+/* mem_lmp_conn_state */
+(
+  0 RECEIVED_CONN_REQ
+  1 SENT_CONN_REQ
+  2 RECEIVED_SETUP_COMPLETE
+  3 SENT_SETUP_COMPLETE
+  4 HOST_CONNECTION_MADE
+  6 INIT_COMPLETE
+  7 SNIFF_NEGOTIATE
+)
+/* btStateAuth1 */
+(
+  0 WAIT_FOR_KINIT
+  1 WAIT_FOR_LKA
+  2 WAIT_FOR_LKB
+  3 WAIT_FOR_SRES
+  4 EXAMINE_RECEIVED_SRES
+  5 SEND_AU_RAND
+  6 WAIT_FOR_KC
+  7 DELAYED_ENCRYPT_RESPONSE
+)
+/* btStateAuth2 */
+(
+  0 SENT_SRES
+  1 RECEIVED_IN_RAND
+  2 SENT_AU_RAND
+  3 AUTHENTICATION_FAILED
+  4 AUTHENTICATION_PASSED
+  5 STARTED_AUTH
+  6 SENT_COMB_KEY
+  7 SENT_IN_RAND
+)
+/* btStateAuth3 */
+(
+  0 RECEIVED_AU_RAND
+  1 RECEIVED_SRES
+  2 MUTUALLY_AUTHENTICATE
+)
+/* btStateHost */
+(
+  0 H_AUTH_STARTED
+  2 H_ENCRYPTION_MODE_REQ_PT
+  3 H_ENCRYPTION_KEY_SIZE
+  4 H_ENCRYPTION_START
+  5 H_ENCRYPTION_STOP
+  6 H_AUTH_SECOND_TRY
+)
+/* btStateEncrypt2 */
+(
+  0 RECEIVED_ENCRYPT_MODE_REQ_PT
+  1 RECEIVED_ENCRYPT_KEY_SIZE
+  2 RECEIVED_ENCRYPT_START
+  3 RECEIVED_ENCRYPT_STOP
+  4 STARTED_ENCRYPT_START
+)
+/* mem_ms_state */
+(
+  0x00 MS_STANDBY
+  0x11 M_MINIT_1
+  0x12 M_MINIT_2
+  0x20 M_SINIT_0
+  0x30 S_MINIT_0
+  0x31 S_MINIT_1
+  0x32 S_MINIT_2
+  0x41 S_SINIT_1
+  0x42 S_SINIT_2
+  0x43 S_SINIT_3
+)
+/* mem_test_mode */
+(
+  0 TEST_MODE_ALLOWED
+  1 TEST_MODE_ACTIVE
+)
+/* values for mem_tester_emulate */
+(
+  0x00 NO_TEST_MODE
+  0x00 CONTINUOUS_TRANSMIT
+  0x10 TRANSMIT_TEST
+  0x08 LOOPBACK
+)
+
+/* mem_tx_misc */
+(
+  1 SEND_TX_ADDR
+)
+/* BBHWREG_page_stat */
+(
+  5 PAGE_MODE_END
+)
+/* host_return_parameters_status codes */
+(
+  0x00 HOST_RETURN_SUCCESS
+  0x01 HOST_RETURN_SLAVE_CANT_ISSUE
+  0x02 HOST_RETURN_NO_CONNECTION
+  0x04 HOST_RETURN_PAGE_TIMEOUT
+  0x05 HOST_RETURN_INQUIRY_TIMEOUT
+  0x08 HOST_RETURN_CONNECTION_TIMEOUT
+  0x09 HOST_RETURN_MAX_NUM_CONNECTIONS
+  0x0a HOST_RETURN_MAX_NUM_SCO
+  0x0b HOST_RETURN_MAX_NUM_ACL
+  0x0c HOST_RETURN_SECURITY_REASONS
+  0x10 HOST_RETURN_HOST_TIMEOUT
+  0x11 HOST_RETURN_UNSUPPORTED_FEATURE_PARAMETER
+  0x13 HOST_RETURN_OTHER_END_USER
+  0x14 HOST_RETURN_OTHER_END_LOW_RESOURCE
+  0x15 HOST_RETURN_OTHER_END_POWER_OFF
+  0x16 HOST_RETURN_LOCAL_HOST
+  0x18 HOST_RETURN_PAIRING_NOT_ALLOWED
+  0x19 HOST_RETURN_UNKNOWN_PDU
+  0x1a HOST_RETURN_UNSUPPORTED_REMOTE_FEATURE
+  0x1d HOST_RETURN_SCO_AIR_MODE_REJECTED
+  0x20 HOST_RETURN_UNSUPPORTED_LMP_VALUE
+  0x21 HOST_RETURN_AUTHENTICATION_FAILURE
+  0x22 HOST_RETURN_CHANGED_EXISTING_SCO
+  0x23 HOST_RETURN_HOST_REJECTED
+  0x24 HOST_RETURN_UNSPECIFIED_ERROR
+  0x25 HOST_RESET
+  0x26 HOST_RETURN_BAD_HANDLE
+
+  0x00 HOST_RETURN_ACCEPT_COMMAND
+  0x01 HOST_RETURN_REJECT_COMMAND
+)
+/* host_present */
+(
+  0 HOST_IS_PRESENT
+  1 BCI_IS_PRESENT
+  2 DONT_INIT_RADIO
+)
+/* mem_master_state */
+(
+  0 MASTER_STATE_STANDBY
+  1 MASTER_INQUIRY
+)
+/* misc */
+(
+  92 SECOND_SWITCH_REQ
+  93 SLAVE_DELAY_DETACH
+  94 MASTER_DELAY_DETACH
+  95 UNSNIFF_DELAY_DETACH
+  0 WE_STARTED_AS_MASTER
+  1 WE_STARTED_AS_SLAVE
+)
+/* mem_host_commands */
+(
+  0x01 HOST_INQUIRY
+  0x02 HOST_INQUIRY_CANCEL
+  0x03 HOST_CREATE_CONNECTION
+  0x04 HOST_DISCONNECT_CONNECTION
+  0x05 HOST_ADD_SCO_REQUEST
+  0x06 HOST_REMOTE_NAME_REQUEST
+  0x07 HOST_WRITE_SUPPORTED_FEATURES
+  0x08 HOST_SET_TX_LEVEL
+  0x09 HOST_SET_RX_LEVEL
+  0x0a HOST_SNIFF_REQUEST
+  0x0b HOST_UNSNIFF_REQUEST
+  0x0c HOST_WRITE_LINK_SUPERVISION_TIMEOUT
+  0x0e HOST_WRITE_SCAN_ENABLE
+  0x0f HOST_READ_AUDIO_QUALITY
+  0x10 HOST_ENABLE_DEVICE_UNDER_TEST
+  0x14 HOST_BUTTON_CONFIGURE
+  0x15 HOST_SET_LOW_BATTERY_LEVEL
+  0x16 HOST_WRITE_LOCAL_NAME
+  0x17 HOST_WRITE_LOCAL_PIN
+  0x18 HOST_KILL_SCO_REQUEST
+  0x19 HOST_QOS_REQ
+
+  0x1a HOST_FEATURES_REQUEST
+  0x1b HOST_VERSION_REQUEST
+  0x1c HOST_TIMING_REQUEST
+  0x1d HOST_CLK_OFFSET_REQUEST
+  0x1e HOST_AUTHENTICATE
+  0x1f HOST_START_ENCRYPTION
+  0x20 HOST_STOP_ENCRYPTION
+  0x21 HOST_HOLD_REQUEST
+  0x22 HOST_HOLD_FORCE
+  0x23 HOST_PARK_REQUEST
+  0x24 HOST_MOD_BEACON
+  0x25 HOST_SET_BROADCAST_SCAN_WINDOW
+  0x26 HOST_UNPARK_PM_REQUEST
+  0x27 HOST_UNPARK_BD_REQUEST
+  0x28 HOST_SLAVE_REQUEST_UNPARK
+  0x29 HOST_DECREASE_POWER_REQUEST
+  0x2a HOST_INCREASE_POWER_REQUEST
+  0x2b HOST_SEND_PREFERRED_RATE
+  0x2c HOST_MAX_SLOT_REQ
+  0x2d HOST_MAX_SLOT_FORCE
+  0x2e HOST_PAGE_MODE_REQUEST
+  0x2f HOST_PAGE_SCAN_MODE_REQUEST
+  0x30 HOST_MASTER_SLAVE_SWITCH
+  0x31 HOST_SEND_AUTO_RATE
+  0x32 HOST_PAGE_CANCEL
+  0x33 HOST_CHANGE_LINK_KEY
+  0x34 HOST_RADIO_READ
+  0x35 HOST_RADIO_WRITE
+  0x36 HOST_REMOTE_SLAVE_INIT_UNPARK_REQUESTED
+
+  0x40 HOST_REMOTE_CONNECTION_REQUESTED
+  0x41 HOST_REMOTE_DETACH
+  0x42 HOST_REMOTE_SCO_CREATE_REQUESTED
+  0x43 HOST_REMOTE_SCO_KILL_REQUESTED
+  0x44 HOST_REMOTE_PARK_REQUESTED
+  0x45 HOST_REMOTE_UNPARK_REQUESTED
+  0x46 HOST_REMOTE_SNIFF_REQUESTED
+  0x47 HOST_REMOTE_UNSNIFF_REQUESTED
+  0x48 HOST_REMOTE_HOLD_REQUESTED
+  0x49 HOST_REMOTE_AUTHENTICATION
+  0x4a HOST_REMOTE_START_ENCRYPTION_REQUESTED
+  0x4b HOST_REMOTE_STOP_ENCRYPTION_REQUESTED
+  0x4c HOST_MODE_CHANGE_EVENT
+  0x4d HOST_REMOTE_TEST_ACTIVATE
+  0x4e HOST_REMOTE_TEST_CONTROL
+  0x4f HOST_REMOTE_TIMING_REQUEST
+)
+/* BCI interface (not used if not compiled in ) */
+(
+  0x01 BCI_INQUIRY
+  0x02 BCI_INQUIRY_CANCEL
+  0x03 BCI_CREATE_CONNECTION
+  0x04 BCI_DISCONNECT
+  0x05 BCI_ADD_SCO_CONNECTION
+  0x06 BCI_REMOTE_NAME_REQUEST
+  0x07 BCI_WRITE_SUPPORTED_FEATURES
+  0x08 BCI_SET_TX_POWER_LEVEL
+  0x09 BCI_SET_RX_POWER_LEVEL
+  0x0a BCI_SNIFF_MODE
+  0x0b BCI_EXIT_SNIFF_MODE
+  0x0c BCI_WRITE_LINK_SUPERVISION_TIMEOUT
+  0x0d BCI_WRITE_PAGE_TIMEOUT
+  0x0e BCI_WRITE_SCAN_ENABLE
+  0x0f BCI_GET_AUDIO_QUALITY
+  0x10 BCI_ENABLE_DEVICE_UNDER_TEST
+  0x11 BCI_SEND_DATA
+  0x12 BCI_REGISTER_SERVICE_RECORD
+  0x13 BCI_SERVICE_SEARCH_ATTRIB_REQ
+  0x14 BCI_BUTTON_CONFIGURE
+  0x15 BCI_SET_LOW_BATTERY_LEVEL
+  0x16 BCI_WRITE_LOCAL_NAME
+  0x17 BCI_WRITE_LOCAL_PIN
+  0x18 BCI_REMOVE_SCO_CONNECTION
+  0x19 BCI_QUALITY_OF_SERVICE
+  0x40 BCI_REMOTE_CONNECTION_REQUEST
+  0x41 BCI_REMOTE_DETACH
+  0x42 BCI_REMOTE_ADD_SCO_REQUEST
+  0x43 BCI_REMOTE_REMOVE_SCO_REQUEST
+  0x44 BCI_REMOTE_PARK_REQUEST
+  0x45 BCI_REMOTE_UNPARK_REQUEST
+  0x46 BCI_REMOTE_SNIFF_REQUEST
+  0x47 BCI_REMOTE_UNSNIFF_REQUEST
+  0x48 BCI_REMOTE_HOLD_REQUEST
+  0x49 BCI_REMOTE_AUTHENTICATION_PAIRING_REQUEST
+  0x4a BCI_REMOTE_START_ENCRYPTION_REQUEST
+  0x4b BCI_REMOTE_STOP_ENCRYPTION_REQUEST
+  0x4c BCI_MODE_CHANGE_EVENT
+)
+/* mode changes */
+(
+  0 MODE_CHANGE_ACTIVE
+  1 MODE_CHANGE_SNIFFING
+  2 MODE_CHANGE_PARKED
+  3 MODE_CHANGE_HOLDING
+  4 MODE_CHANGE_SCO_ADDED
+  5 MODE_CHANGE_SCO_REMOVED
+  6 MODE_CHANGE_ACL_CONNECTION
+  7 MODE_CHANGE_DISCONNECT
+  8 MODE_CHANGE_SCO_CHANGED
+  9 MODE_CHANGE_ENCRYPTING
+  10 MODE_CHANGE_NOT_ENCRYPTING
+  11 MODE_CHANGE_BUTTON_UP
+  12 MODE_CHANGE_BUTTON_DOWN
+  13 MODE_CHANGE_BATTERY_LOW
+  14 MODE_CHANGE_RESET
+  15 MODE_CHANGE_INQUIRY_CANCELED_RMTCMD
+  16 MODE_ACTIVE_MSSWITCH_PASSED
+  17 MODE_ACTIVE_MSSWITCH_FAILED
+)
+/* mem_battery - low nibble is level information, upper nibble is status info */
+(
+  6 BATTERY_CHECK_LEVEL
+  7 BATTERY_SENT_STATUS
+)
+/* mem_radio_version */
+(
+  0x02 RADIO_2001
+  0x12 RADIO_2002
+  0x32 RADIO_2002_DDM
+  0x42 RADIO_1008A1
+  0x52 RADIO_1018A0
+)
+/* mem_slave_initiated_conn */
+(
+  0 SLAVE_INIT_AUTHENTICATION
+  1 SLAVE_INIT_ENCRYPTION
+  2 SLAVE_INIT_MASTER_SLAVE_SWITCH
+)
+/* connection_options */
+(
+  0 CONNECTION_AUTH
+  1 CONNECTION_ENCRYPT
+  2 CONNECTION_SWITCH
+  3 CONNECTION_ACL
+  4 CONNECTION_FEATURE_EXT
+)
+/* mem_debug_config */
+(
+  7 AA_INSERTION
+)
+
+
+/* Parse Command:
+TX: take bits from tx fifo, jam it into shift and a destination (rf,bucket)
+RX: take bits from demod,  jam it into shift and a destination (acl,sco,bucket) */
+
+/* Inject Command:
+TX: 0 into shift, send tail of shift into a destination (rf,bucket)
+RX: 0 into shift, send tail of shift into a destination (acl,sco,bucket) */
+
+format
+  ! 15 romdat
+  % d0
+  % d1
+  % d2
+  % d3
+  [8] d0
+  [8] d1
+  [8] d2
+  [8] d3
+end
+
+format
+  ! 15 enable   /* set flag to 1 */
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [6] null
+  [9] 0
+end
+ /* High 5 bytes of channel map */
+format
+  ! 15 pulse   /* set flag to 1 */
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [6] null
+  [9] 0
+end
+
+format
+  ! 15 disable   /* set flag to 0 */
+  % flag
+  [5] opcode
+  [6] 2
+  [6] flag
+  [6] null
+  [9] 0
+end
+
+format
+  ! 15 set0  /* set selected bit of reg to 0 */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9
+  [6] never
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 set1  /* set selected bit of reg to 1 */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9          /* alu op demux */
+  [6] always
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 setflag  /* set selected bit of the reg to the polarity of the flag */
+  % flag
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9
+  [6] flag
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 nsetflag  /* set the selected bit of the reg to the opposite polarity of the flag */
+  % flag
+  % immediate
+  % reg
+  [5] opcode
+  [6] 0x29
+  [6] flag
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 setflip    /* invert the selected bit of the reg */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 10            /* this is alu op */
+  [6] always
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 0x1f qset1      /* demux the lowest 4 bit of queue and OR it with regr into regw */
+  % reg             /* in short, set the bit in reg indexed by queue to 1 */
+  [5] opcode
+  [6] 9
+  [6] always
+  [6] reg
+  [9] 0
+end
+  
+format
+  ! 0x1f qset0      /* demux the lowest 4 bit of queue and AND it with regr into regw */
+  % reg             /* in short, set the bit in reg indexed by queue to 0 */
+  [5] opcode
+  [6] 9
+  [6] never
+  [6] reg
+  [9] 0
+end
+
+format 
+  ! 0x1f qsetflag   /* set the bit in reg index by queue to same as flag */
+  % flag
+  % reg
+  [5] opcode
+  [6] 9
+  [6] flag
+  [6] reg
+  [9] 0
+end
+
+format 
+  ! 0x1f nqsetflag   /* set the bit in the reg index by queue to opposite of flag */
+  % flag
+  % reg
+  [5] opcode
+  [6] 0x29
+  [6] flag
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 0x1f qsetflip      /* flip the bit in reg index by queue */
+  % reg
+  [5] opcode
+  [6] 10
+  [6] always
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 1 parse       /* take bits out of source (sco_tx,tx_buffer,rx-elas) into pdata and dest (sco_rx,rx_fifo,tx-elas) */
+  % source
+  % dest
+  % immediate
+  [5] opcode
+  [4] source      /* voice, data, demod */
+  [2] 0
+  [6] 0    
+  [2] 0           /* parse or inject */ 
+  [4] dest        /* acl, sco, mod, bucket */
+  [9] immediate   /* number of bits to parse off */
+end
+
+format
+  ! 1 inject      /* shift data from pdata into destination (tx-elas,rx_fifo,sco_rx) */
+  % destination
+  % immediate
+  [5] opcode
+  [4] 0
+  [2] 0
+  [6] 1
+  [2] 0
+  [4] destination /* acl,sco,mod,bucket */
+  [9] immediate   /* number of bits to be injected */
+end
+
+format
+  ! 1 iinject
+  % destination
+  % regr
+  [5] opcode
+  [6] regr       /* contain the number of bits to inject */
+  [6] 3
+  [2] 0
+  [4] destination /* acl,sco,mod,bucket */
+  [9] 0 
+end
+
+format
+  ! 1 stuff  /* automatic parse, stuff_counter decrement on every bit until hits zero */
+  % source
+  % destination
+  [5] opcode
+  [4] source
+  [2] 0
+  [6] 2
+  [2] 0
+  [4] destination
+  [9] 0
+end
+
+format    /* force immediate value into registers */
+  ! 3 force
+  % immediate
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 0    /* alu operation force */
+  [6] regw  /* destination register */
+  [9] immediate
+end
+
+format    /* force whatever is on shift_reg to regsiters */
+  ! 0x13 iforce
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 0    /* alu operation force */
+  [6] regw  /* destination register */
+  [9] 0
+end
+
+format    /* force immediate value into registers */
+  ! 3 increase
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 1    /* alu operation add */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 pincrease
+  % immediate
+  [5] opcode
+  [6] -1  /* pdata */
+  [6] 1   /* alu add */
+  [6] -1  /* back to pdata */
+  [9] immediate
+end
+
+format    /* force immediate value into registers */
+  ! 3 and_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 2    /* alu operation and into */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 and
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 2    /* alu operation and into */
+  [6] regw
+  [9] immediate
+end
+  
+format
+  ! 0x13 iand    /* pdata & regr -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 2    /* alu operation and into */
+  [6] regw
+  [9] 0
+end
+  
+
+format    /* and whatever is in shiftreg with reg */
+  ! 0x13 iand_into
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 2    /* alu operation and into */
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 3 or_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 3    /* alu operation or into */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 or
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 3    /* alu operation or into */
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 ior
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 3    /* alu operation or into */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 0x13 ior_into
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 3    /* alu operation or into */
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 3 skip_to   /* jump to location stored in reg */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 4   /* alu operation copy */
+  [6] rom_addr
+  [9] 0
+end
+
+format
+  ! 3 copy
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 4   /* alu operation copy */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 deposit   /* copy the register content thru alu to shift register, not prealigned like preload */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 4   /* alu operation copy */
+  [6] -1  /* pdata */
+  [9] 0
+end
+
+format
+  ! 3 icopy     /* copy the shift register lsb content directly to register, not aligned */
+  % regw
+  [5] opcode
+  [6] -1  /* pdata */
+  [6]  4  /* alu copy */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 add
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 1
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 iadd       /* regr + pdata -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 1
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 sub          /* immediate - regr -> regw */
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 12
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 isub       /* pdata - regr -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 12
+  [6] regw
+  [9] 0
+end
+
+
+format
+  ! 3 flip
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 5
+  [6] reg
+  [9] immediate
+end
+  
+format
+  ! 0x13 iflip  /* use shift register as immediate to do xor */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] 0
+end
+  
+format
+  ! 3 xor
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 3 xor_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 5
+  [6] reg
+  [9] immediate
+end
+  
+format
+  ! 0x13 ixor  /* pdata xor regr and store result in regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] 0
+end
+  
+format
+  ! 3 invert
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 8
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 pinvert    /* invert pdata into itself */
+  [5] opcode
+  [6] -1
+  [6] 8
+  [6] -1
+  [9] 0
+end
+
+format
+  ! 3 div                 /* regr div immediate div */
+  % reg
+  % immediate
+  [5] opcode
+  [6] reg
+  [6] 13                   /* generate diven pulse to div */
+  [6] null
+  [9] immediate
+end
+
+format
+  ! 0x13 idiv           /* pdata div regr data ready at most after 41 nops */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 13                   /* generate diven pulse to div */
+  [6] null
+  [9] 0
+end
+
+format
+  ! 3 remainder            /* harvest div remainder */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 14
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 quotient             /* harvest div quotient */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 15
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 6
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift2
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 22
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift3
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 18
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift4
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 35
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift8
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 25
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift16
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 34
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift32
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 30
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 7
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift2
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 23
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift8
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 26
+  [6] regw
+  [9] 0
+end
+
+  
+format
+  ! 3 lshift3
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 19
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift4
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 36
+  [6] regw
+  [9] 0
+end
+  
+
+format
+  ! 3 lshift16
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 32
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 random               /* random number into regw */
+  % reg
+  [5] opcode
+  [6] 0
+  [6] 20
+  [6] reg
+  [9] 0
+end
+
+format                     /* bit reverse within a byte */
+  ! 3 reverse
+  % reg
+  % regw
+  [5] opcode
+  [6] reg
+  [6] 27
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 priority    /* priority encode reg into regw, lsb is the top priority, ie, priority(8'b00010000) = 4 */
+  % reg
+  % regw
+  [5] opcode
+  [6] reg
+  [6] 21
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 7 setsect   /* set a section of pdata */
+  % section    /* 0 sets 17:0 of pdata with set_data, 1 sets 35:18, 2 sets 53:36, 3 sets 71:54 */
+  % set_data
+  [5] opcode
+  [7] 0
+  [2] section
+  [18] set_data
+end
+
+format
+  ! 10 preload   /* load stuff into pdata according to fhs format, check us.v */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 0
+  [6] -1
+  [9] 0
+end
+
+format  /* load register with pdata content, according to fhs format, check us.v */
+  ! 10 ialigned   /* all bits are in position */
+  % regw
+  [5] opcode
+  [6] -1
+  [6] 0
+  [6] regw
+  [9] 0
+end
+
+format  /* load register to another according to fhs format */
+  ! 10 aligned
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 0
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 4 branch
+  % addr
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 call
+  % addr
+  % flag
+  [5] opcode
+  [6] 2
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 rtn
+  % flag
+  [5] opcode
+  [6] 3
+  [6] flag
+  [15] 0
+end
+
+format
+  ! 0x0c store          /* write to memory, data from pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0c hstore          /* write to memory, data from pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1c istore        /* write to memory, data from pdata, address from regr then mem_ptr */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg            /* hold address */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0d fetch          /* read from memory, data into pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d hfetch          /* read from memory, data into pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d crc         /* read from memory, count from loopcnt, put crc result into pdata */
+  % addr
+  [5] opcode
+  [6] 0
+  [1] 0
+  [1] 0
+  [4] 0
+  [15] addr
+end
+
+format
+  ! 0x1d icrc         /* read from memory, address from reg, count from loopcnt, put crc result into pdata */
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 0
+  [4] 0
+  [15] 0
+end
+
+
+format
+  ! 0x1d ifetch         /* read from memory, data into pdata, address from regr then mem_ptr */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0c storet          /* write to memory, data from temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0c hstoret          /* write to corereg, data from temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1c istoret        /* write to memory, data from temp, address from regr won't increment */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg            /* hold address */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0d fetcht          /* read from memory, data into temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d hfetcht          /* read from corereg, data into temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1d ifetcht         /* read from memory, data into temp, address from regr won't increment */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0e jam
+  % immediate
+  % addr
+  [5] opcode
+  [3] 0
+  [1] 0   /* msb */
+  [15] addr
+  [8] immediate
+end
+
+format
+  ! 0x0e hjam
+  % immediate
+  % addr
+  [5] opcode
+  [3] 0
+  [1] 1   /* msb */
+  [15] addr
+  [8] immediate
+end
+
+format			/* 0x242... */
+  ! 4 nbranch
+  % addr
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 1
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 ncall
+  % addr
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 2
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 nrtn
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 3
+  [6] flag
+  [15] 0
+end
+
+format
+  ! 4 nop
+  % addr  /* no-op for addr+2 clocks */
+  [5] opcode
+  [6] 0     
+  [6] 0     /* always */ 
+  [15] addr
+end
+
+format
+  ! 4 clear_stack
+  [5] opcode
+  [6] 4
+  [6] 0    /* always */
+  [15] 0
+end
+
+format
+  ! 6 until
+  % reg
+  % flag
+  [5] opcode
+  [6] reg
+  [6] flag
+  [6] 1
+  [9] 0
+end
+  
+format
+  ! 6 correlate   /* quit if 1. flag is true 2, regr time up 3, found sync,(cond_true) */
+  % reg          /* expire counter to check against */
+  % flag
+  [5] opcode
+  [6] reg
+  [6] flag
+  [6] 2           /* correlate */
+  [9] 0           
+end
+
+format
+  ! 5 compare   /* sets cond flag,  if reg equals immediate */
+  % immediate
+  % reg
+  % mask
+  [5] opcode
+  [6] reg
+  [3] 0
+  [9] mask
+  [9] immediate
+end
+
+format
+  ! 0x15 icompare   /* sets cond flag,  if reg equals pdata */
+  % mask
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 0
+  [9] mask
+  [9] 0
+end
+
+format   /* sets cond. flag, if reg equals LS half of shift reg with MS half of reg being mask */
+  ! 5 iverify
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 2
+  [18] 0
+end
+
+format
+  ! 0x15 qisolate1
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [18] -1
+end
+
+format
+  ! 0x15 qisolate0
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [18] 0
+end
+
+	/* REVAB bug: cannot access bit above 35 */
+format
+  ! 5 isolate1
+  % addr
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [9] -1
+  [9] addr
+end
+
+format
+  ! 5 isolate0
+  % addr
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [9] 0
+  [9] addr
+end
+
+format
+  ! 11 setarg
+  % immediate
+  [5] opcode
+  [27] immediate
+end
+
+format
+  ! 0x1b arg
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [21] immediate
+end
+
+  
+format
+  ! 0 sleep
+  [5] opcode
+  [27] 0
+end
+
+format
+  ! 0 snooze
+  [5] opcode
+  [6] -1
+  [21] 0
+end
+
+format
+  ! 0 revision
+  % rev_num
+  [5] opcode
+  [27] rev_num
+end
+
+format
+  ! 0x18 loop   /* branch when loopcnt is NOT zero, and decrease loopcnt */
+  % addr
+  [5] opcode
+  [4] 4
+  [8] 0
+  [15] addr
+end
+
+format
+  ! 0x18 beq   /* branch when pdata is equal to immediate */
+  % imme
+  % addr
+  [5] opcode
+  [4] 0
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bne   /* branch when pdata is NOT equal to immediate */
+  % imme
+  % addr
+  [5] opcode
+  [4] 1
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtneq   /* return when pdata is equal to immediate */
+  % imme
+  [5] opcode
+  [4] 2
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnne   /* return when pdata is NOT equal to immediate */
+  % imme
+  [5] opcode
+  [4] 3
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 bbit1   /* branch when pdata's imme bit is 1 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 5
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bbit0   /* branch when pdata's imme bit is 0 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 6
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtnbit1   /* return when pdata's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 7
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnbit0   /* return when pdata's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 8
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 8	bpatch
+  % imme
+  % addr
+  [5] opcode
+  [4] 9
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bmark1   /* branch when mark's imme bit is 1 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 10
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bmark0   /* branch when mark's imme bit is 0 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 11
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtnmark1   /* return when mark's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 12
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnmark0   /* return when mark's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 13
+  [8] imme
+  [15] 0
+end
+
+
+format
+  ! 3 mult                  /* immediate mult regr */  /* the product will be ready 17 clks later */
+  % immediate                                   /* use "product" instruction to get the result */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 16                   /* generate diven pulse to div */
+  [6] null
+  [9] immediate
+end
+
+format
+  ! 0x13 imult           /* pdata mult regr */  /* the product will be ready after 15 nops */
+  % reg                                         /* use product opcode to get the result */
+  [5] opcode
+  [6] reg
+  [6] 16                   /* generate mult pulse to multiplier */
+  [6] null
+  [9] 0
+end
+
+format
+  ! 3 mul32                  /* immediate mult regr */ 
+  % regr
+  % immediate                                  
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 31           
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 imul32           /* pdata mult regr 32x32=64bit */  
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 31                   
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 product              /* harvest mult product */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 17
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 byteswap
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 33
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 shasx          /* SHA256 Sx operation, immediate is Sx */
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 28
+  [6] regw
+  [9] immediate
+end
+
+
+format
+  ! 0x13 regexrot 	/* regext[0] <- regext[7], regext[1] <- regext[0], regext[2] <- regext[1] ... */
+  [5] opcode
+  [6] 0
+  [6] 29
+  [6] null
+  [9] 0
+end
+
Index: Receive_Code/output/bt_program23.icode
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/bt_program23.icode	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/bt_program23.icode	(working copy)
@@ -0,0 +1,21015 @@
+ 00000000  0x00000028 bmark1  0x00000025 , 0x00000007 
+ 00000001  0x00000029 beq  0x00000003 , 0x00000015 
+ 00000002  0x0000002a beq  0x00000086 , 0x00000232 
+ 00000003  0x0000002b beq  0x0000008a , 0x000001fb 
+ 00000004  0x0000002c beq  0x0000008b , 0x00000254 
+ 00000005  0x0000002d beq  0x000000b4 , 0x00000035 
+ 00000006  0x0000002e branch  0x00003b31 
+ 00000007  0x00000031 beq  0x00000003 , 0x000000d8 
+ 00000008  0x00000032 beq  0x00000019 , 0x0000022a 
+ 00000009  0x00000033 beq  0x0000002b , 0x00000073 
+ 00000010  0x00000034 beq  0x0000002e , 0x000000cf 
+ 00000011  0x00000035 beq  0x00000032 , 0x0000001e 
+ 00000012  0x00000036 beq  0x00000033 , 0x000000bc 
+ 00000013  0x00000037 beq  0x0000003c , 0x00000094 
+ 00000014  0x00000038 beq  0x0000003e , 0x0000009d 
+ 00000015  0x00000039 beq  0x00000095 , 0x000001f4 
+ 00000016  0x0000003a beq  0x000000d8 , 0x0000005b 
+ 00000017  0x0000003b beq  0x000000d9 , 0x000001c5 
+ 00000018  0x0000003c beq  0x000000dc , 0x0000013b 
+ 00000019  0x0000003d beq  0x000000f7 , 0x00000086 
+ 00000020  0x0000003e branch  0x00003b31 
+ 00000021  0x00000041 arg  0x0000000e , 0x00000007 
+ 00000022  0x00000042 call  0x00007ee2 
+ 00000023  0x00000043 ncall  0x0000001a , 0x00000034 
+ 00000024  0x00000044 call  0x0000001b 
+ 00000025  0x00000045 call  0x0000009d 
+ 00000026  0x00000047 branch  0x0000301b 
+ 00000027  0x0000004a setarg  0x0000000e 
+ 00000028  0x0000004b arg  0x0000000e , 0x00000007 
+ 00000029  0x0000004c branch  0x00007ed4 
+ 00000030  0x0000004f fetch  0x00000001 , 0x0000446b 
+ 00000031  0x00000051 beq  0x00000001 , 0x00004cbb 
+ 00000032  0x00000052 beq  0x00000002 , 0x0000002d 
+ 00000033  0x00000053 beq  0x00000003 , 0x00004cda 
+ 00000034  0x00000054 beq  0x00000004 , 0x00004ce8 
+ 00000035  0x00000055 beq  0x00000005 , 0x00004ced 
+ 00000036  0x00000056 beq  0x00000006 , 0x00004cf2 
+ 00000037  0x00000057 beq  0x00000007 , 0x00004d10 
+ 00000038  0x00000058 beq  0x00000008 , 0x00004d27 
+ 00000039  0x00000059 beq  0x00000009 , 0x00004d2d 
+ 00000040  0x0000005a beq  0x0000000a , 0x00004d32 
+ 00000041  0x0000005b beq  0x0000000b , 0x00004d35 
+ 00000042  0x0000005c beq  0x0000000c , 0x00004d39 
+ 00000043  0x0000005d beq  0x0000000d , 0x00004d64 
+ 00000044  0x0000005e branch  0x00003b31 
+ 00000045  0x00000061 setarg  0x01000302 
+ 00000046  0x00000062 store  0x00000004 , 0x000044dc 
+ 00000047  0x00000063 setarg  0x00010010 
+ 00000048  0x00000064 istore  0x00000003 , 0x00000005 
+ 00000049  0x00000065 fetch  0x00000006 , 0x000044dd 
+ 00000050  0x00000066 store  0x00000006 , 0x0000446c 
+ 00000051  0x00000067 force  0x0000000b , 0x00000002 
+ 00000052  0x00000068 branch  0x00004f89 
+ 00000053  0x0000006a fetch  0x00000001 , 0x00004132 
+ 00000054  0x0000006b branch  0x00003d4b , 0x00000034 
+ 00000055  0x0000006f beq  0x00000003 , 0x0000400c 
+ 00000056  0x00000070 beq  0x00000009 , 0x0000003d 
+ 00000057  0x00000071 beq  0x0000000a , 0x000059dd 
+ 00000058  0x00000073 bbit1  0x00000006 , 0x00005dca 
+ 00000059  0x00000074 bbit1  0x00000007 , 0x0000400c 
+ 00000060  0x00000075 rtn 
+ 00000061  0x00000078 rtn  0x0000002b 
+ 00000062  0x00000079 call  0x000074fd 
+ 00000063  0x0000007a arg  0x00000087 , 0x00000039 
+ 00000064  0x0000007b arg  0x000049b2 , 0x00000005 
+ 00000065  0x0000007c arg  0x00004ac1 , 0x00000006 
+ 00000066  0x0000007d call  0x00007ecd 
+ 00000067  0x0000007e call  0x000075c9 
+ 00000068  0x00000080 hjam  0x00000000 , 0x00008081 
+ 00000069  0x00000081 call  0x000073a5 
+ 00000070  0x00000083 setarg  0x0000737c 
+ 00000071  0x00000084 store  0x00000002 , 0x0000428c 
+ 00000072  0x00000086 setarg  0x0000748c 
+ 00000073  0x00000087 store  0x00000002 , 0x0000428e 
+ 00000074  0x00000089 setarg  0x00007365 
+ 00000075  0x0000008a store  0x00000002 , 0x00004298 
+ 00000076  0x0000008c setarg  0x0000737a 
+ 00000077  0x0000008d store  0x00000002 , 0x00004294 
+ 00000078  0x0000008f setarg  0x00007371 
+ 00000079  0x00000090 store  0x00000002 , 0x00004290 
+ 00000080  0x00000092 setarg  0x000000c6 
+ 00000081  0x00000093 store  0x00000002 , 0x00004296 
+ 00000082  0x00000095 call  0x000001d0 
+ 00000083  0x00000097 setarg  0x000072ef 
+ 00000084  0x00000098 store  0x00000002 , 0x0000428a 
+ 00000085  0x00000099 setarg  0x000074f4 
+ 00000086  0x0000009a store  0x00000002 , 0x0000429a 
+ 00000087  0x0000009b call  0x0000010b 
+ 00000088  0x0000009c jam  0x00000000 , 0x00004212 
+ 00000089  0x0000009d jam  0x00000000 , 0x000048c7 
+ 00000090  0x0000009e branch  0x000072ad 
+ 00000091  0x000000a1 fetch  0x00000001 , 0x00004755 
+ 00000092  0x000000a2 beq  0x00000000 , 0x0000005e 
+ 00000093  0x000000a3 branch  0x000072b1 
+ 00000094  0x000000a7 jam  0x00000001 , 0x00004756 
+ 00000095  0x000000a8 jam  0x00000001 , 0x0000475b 
+ 00000096  0x000000a9 call  0x00007382 
+ 00000097  0x000000aa setarg  0x00004771 
+ 00000098  0x000000ab call  0x0000738e 
+ 00000099  0x000000ad call  0x00007d44 
+ 00000100  0x000000ae fetch  0x00000001 , 0x00004713 
+ 00000101  0x000000af nbranch  0x00000063 , 0x00000034 
+ 00000102  0x000000b1 jam  0x00000001 , 0x000043f9 
+ 00000103  0x000000b2 setarg  0x00000000 
+ 00000104  0x000000b3 store  0x00000004 , 0x00004729 
+ 00000105  0x000000b4 call  0x00007382 
+ 00000106  0x000000b7 fetch  0x00000002 , 0x00004748 
+ 00000107  0x000000b8 store  0x00000002 , 0x0000474a 
+ 00000108  0x000000b9 branch  0x0000006d 
+ 00000109  0x000000bd fetch  0x00000002 , 0x00004748 
+ 00000110  0x000000be store  0x00000002 , 0x0000474a 
+ 00000111  0x000000bf jam  0x00000000 , 0x000048bb 
+ 00000112  0x000000c0 jam  0x00000001 , 0x000043f9 
+ 00000113  0x000000c1 setarg  0x00004763 
+ 00000114  0x000000c2 branch  0x0000738e 
+ 00000115  0x000000c5 fetch  0x00000006 , 0x00000304 
+ 00000116  0x000000c6 store  0x00000006 , 0x00000372 
+ 00000117  0x000000c7 fetch  0x00000006 , 0x00000372 
+ 00000118  0x000000ca fetcht  0x00000006 , 0x0000452c 
+ 00000119  0x000000cb isub  0x00000002 , 0x0000003e 
+ 00000120  0x000000cc branch  0x00004bb4 , 0x00000005 
+ 00000121  0x000000cd branch  0x0000007a 
+ 00000122  0x000000d0 fetch  0x00000006 , 0x00000372 
+ 00000123  0x000000d3 fetcht  0x00000006 , 0x00004bf2 
+ 00000124  0x000000d4 isub  0x00000002 , 0x0000003e 
+ 00000125  0x000000d5 nrtn  0x00000005 
+ 00000126  0x000000d6 fetch  0x00000006 , 0x00000372 
+ 00000127  0x000000d7 store  0x00000006 , 0x00004b4b 
+ 00000128  0x000000d8 jam  0x0000001c , 0x000043f7 
+ 00000129  0x000000d9 setarg  0x00000100 
+ 00000130  0x000000da store  0x00000002 , 0x00004539 
+ 00000131  0x000000db jam  0x00000000 , 0x000043f9 
+ 00000132  0x000000dc jam  0x00000001 , 0x00004b51 
+ 00000133  0x000000dd branch  0x00003e69 
+ 00000134  0x000000e0 call  0x00007d80 
+ 00000135  0x000000e1 arg  0x000046f8 , 0x00000011 
+ 00000136  0x000000e2 call  0x00007f95 
+ 00000137  0x000000e3 copy  0x0000003f , 0x00000002 
+ 00000138  0x000000e4 call  0x00007d84 
+ 00000139  0x000000e5 copy  0x00000002 , 0x0000003f 
+ 00000140  0x000000e6 rtn  0x00000034 
+ 00000141  0x000000e7 beq  0x00000016 , 0x0000008f 
+ 00000142  0x000000e8 branch  0x00007db3 
+ 00000143  0x000000ea jam  0x00000001 , 0x000043f9 
+ 00000144  0x000000eb jam  0x0000001b , 0x00004271 
+ 00000145  0x000000ec fetch  0x00000006 , 0x00004b4b 
+ 00000146  0x000000ed store  0x00000006 , 0x0000452c 
+ 00000147  0x000000ee rtn 
+ 00000148  0x000000f1 copy  0x00000013 , 0x0000003f 
+ 00000149  0x000000f2 beq  0x00000002 , 0x00000097 
+ 00000150  0x000000f3 branch  0x00004fb9 
+ 00000151  0x000000f5 fetch  0x00000001 , 0x00004132 
+ 00000152  0x000000f6 bne  0x00000009 , 0x0000009a 
+ 00000153  0x000000f7 jam  0x00000001 , 0x000048bb 
+ 00000154  0x000000f9 setarg  0x00000003 
+ 00000155  0x000000fa store  0x00000002 , 0x00000390 
+ 00000156  0x000000fb rtn 
+ 00000157  0x000000fe ifetch  0x00000003 , 0x00000006 
+ 00000158  0x000000ff store  0x00000003 , 0x0000039a 
+ 00000159  0x00000100 beq  0x00000013 , 0x000000a3 
+ 00000160  0x00000101 beq  0x0000001b , 0x000000a2 
+ 00000161  0x00000102 rtn 
+ 00000162  0x00000105 branch  0x000001e9 
+ 00000163  0x00000109 fetch  0x00000001 , 0x00004bf8 
+ 00000164  0x0000010a rtn  0x00000034 
+ 00000165  0x0000010b increase  0xffffffff , 0x0000003f 
+ 00000166  0x0000010c store  0x00000001 , 0x00004bf8 
+ 00000167  0x0000010d beq  0x00000001 , 0x000000aa 
+ 00000168  0x0000010e beq  0x00000000 , 0x000000b3 
+ 00000169  0x0000010f rtn 
+ 00000170  0x00000112 setarg  0x00000027 
+ 00000171  0x00000113 store  0x00000002 , 0x000044f8 
+ 00000172  0x00000114 jam  0x00000002 , 0x0000450b 
+ 00000173  0x00000115 setarg  0x00000001 
+ 00000174  0x00000116 store  0x00000002 , 0x0000450c 
+ 00000175  0x00000117 jam  0x00000000 , 0x00004b52 
+ 00000176  0x00000119 jam  0x00000001 , 0x00004b53 
+ 00000177  0x0000011a jam  0x00000012 , 0x000009bd 
+ 00000178  0x0000011b branch  0x00004bd6 
+ 00000179  0x0000011d setarg  0x00000060 
+ 00000180  0x0000011e store  0x00000002 , 0x000044f8 
+ 00000181  0x0000011f jam  0x00000002 , 0x0000450b 
+ 00000182  0x00000120 setarg  0x00000001 
+ 00000183  0x00000121 store  0x00000002 , 0x0000450c 
+ 00000184  0x00000122 jam  0x00000000 , 0x00004b52 
+ 00000185  0x00000124 jam  0x00000001 , 0x00004b53 
+ 00000186  0x00000125 jam  0x00000012 , 0x000009bd 
+ 00000187  0x00000126 branch  0x00004bd6 
+ 00000188  0x0000012a fetch  0x00000001 , 0x0000446b 
+ 00000189  0x0000012b beq  0x00000012 , 0x000000bf 
+ 00000190  0x0000012c branch  0x00004c2b 
+ 00000191  0x00000142 fetch  0x00000002 , 0x000044f8 
+ 00000192  0x00000143 store  0x00000002 , 0x0000446c 
+ 00000193  0x00000144 fetch  0x00000001 , 0x0000450b 
+ 00000194  0x00000145 copy  0x0000003f , 0x00000039 
+ 00000195  0x00000146 arg  0x0000450c , 0x00000006 
+ 00000196  0x00000147 call  0x00007ecd 
+ 00000197  0x00000148 branch  0x00004f81 
+ 00000198  0x0000014c copy  0x00000013 , 0x0000003f 
+ 00000199  0x0000014e beq  0x0000002d , 0x00007475 
+ 00000200  0x0000014f beq  0x00000010 , 0x0000747a 
+ 00000201  0x00000150 beq  0x00000014 , 0x00007334 
+ 00000202  0x00000151 beq  0x00000015 , 0x000000f6 
+ 00000203  0x00000152 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00000204  0x00000153 and_into  0x000000f0 , 0x0000003f 
+ 00000205  0x00000154 beq  0x00000050 , 0x000072fd 
+ 00000206  0x00000155 rtn 
+ 00000207  0x00000158 fetch  0x00000002 , 0x00004bdf 
+ 00000208  0x00000159 store  0x00000002 , 0x0000474a 
+ 00000209  0x0000015a setarg  0x0000477f 
+ 00000210  0x0000015b call  0x0000738e 
+ 00000211  0x0000015c jam  0x00000001 , 0x00004b51 
+ 00000212  0x0000015e jam  0x00000001 , 0x0000475b 
+ 00000213  0x0000015f jam  0x00000021 , 0x00004b52 
+ 00000214  0x00000160 call  0x00004bc2 
+ 00000215  0x00000161 rtn 
+ 00000216  0x00000164 fetch  0x00000001 , 0x00000005 
+ 00000217  0x00000165 increase  0x00000001 , 0x0000003f 
+ 00000218  0x00000166 store  0x00000001 , 0x00000005 
+ 00000219  0x00000167 call  0x00004b51 
+ 00000220  0x00000168 call  0x000000df 
+ 00000221  0x00000169 disable  0x00000029 
+ 00000222  0x0000016a rtn 
+ 00000223  0x0000016e fetch  0x00000001 , 0x00004b52 
+ 00000224  0x0000016f beq  0x00000021 , 0x000000e4 
+ 00000225  0x00000170 beq  0x00000025 , 0x000000ee 
+ 00000226  0x00000171 beq  0x00000026 , 0x000000f5 
+ 00000227  0x00000172 rtn 
+ 00000228  0x00000175 setarg  0x0000001a 
+ 00000229  0x00000176 store  0x00000002 , 0x000044f8 
+ 00000230  0x00000177 jam  0x00000002 , 0x0000450b 
+ 00000231  0x00000178 setarg  0x00000001 
+ 00000232  0x00000179 store  0x00000002 , 0x0000450c 
+ 00000233  0x0000017a jam  0x00000000 , 0x00004b52 
+ 00000234  0x0000017c jam  0x00000001 , 0x00004b53 
+ 00000235  0x0000017d jam  0x00000012 , 0x000009bd 
+ 00000236  0x0000017e call  0x00004bd6 
+ 00000237  0x0000017f rtn 
+ 00000238  0x00000182 jam  0x00000026 , 0x00004b52 
+ 00000239  0x00000183 jam  0x00000002 , 0x000009bd 
+ 00000240  0x00000184 call  0x00004bd6 
+ 00000241  0x00000185 fetch  0x00000002 , 0x0000470b 
+ 00000242  0x00000186 set1  0x00000009 , 0x0000003f 
+ 00000243  0x00000187 store  0x00000002 , 0x0000470b 
+ 00000244  0x00000188 rtn 
+ 00000245  0x0000018b rtn 
+ 00000246  0x00000190 setarg  0x00000000 
+ 00000247  0x00000191 store  0x00000006 , 0x0000452c 
+ 00000248  0x00000192 jam  0x00000002 , 0x00004bf8 
+ 00000249  0x00000193 jam  0x00000000 , 0x00004b51 
+ 00000250  0x00000194 jam  0x00000000 , 0x00004212 
+ 00000251  0x00000195 jam  0x00000000 , 0x000048c7 
+ 00000252  0x00000196 jam  0x00000000 , 0x000044b2 
+ 00000253  0x00000197 jam  0x00000000 , 0x000048c6 
+ 00000254  0x00000198 jam  0x00000000 , 0x000048c0 
+ 00000255  0x00000199 call  0x00000110 
+ 00000256  0x0000019a fetch  0x00000002 , 0x00004748 
+ 00000257  0x0000019b store  0x00000002 , 0x0000474a 
+ 00000258  0x0000019c fetch  0x00000001 , 0x00004743 
+ 00000259  0x0000019d bne  0x00000000 , 0x00007369 
+ 00000260  0x0000019e call  0x0000006d 
+ 00000261  0x0000019f jam  0x00000000 , 0x00004746 
+ 00000262  0x000001a0 setarg  0x00000000 
+ 00000263  0x000001a1 store  0x00000002 , 0x00000286 
+ 00000264  0x000001a2 setarg  0x00000000 
+ 00000265  0x000001a3 store  0x00000002 , 0x00000288 
+ 00000266  0x000001a4 branch  0x00007363 
+ 00000267  0x000001a7 jam  0x00000000 , 0x00004b60 
+ 00000268  0x000001a8 setarg  0x00004b65 
+ 00000269  0x000001a9 store  0x00000002 , 0x00004b61 
+ 00000270  0x000001aa store  0x00000002 , 0x00004b63 
+ 00000271  0x000001ab rtn 
+ 00000272  0x000001af branch  0x0000010b 
+ 00000273  0x000001b4 disable  0x00000028 
+ 00000274  0x000001b5 fetch  0x00000001 , 0x00004b60 
+ 00000275  0x000001b6 compare  0x00000006 , 0x0000003f , 0x000000ff 
+ 00000276  0x000001b7 rtn  0x00000001 
+ 00000277  0x000001b9 enable  0x00000028 
+ 00000278  0x000001ba fetch  0x00000002 , 0x00004b63 
+ 00000279  0x000001bb copy  0x0000003f , 0x00000005 
+ 00000280  0x000001bc copy  0x00000002 , 0x00000006 
+ 00000281  0x000001bd call  0x00007ecd 
+ 00000282  0x000001bf fetch  0x00000001 , 0x00004b60 
+ 00000283  0x000001c0 increase  0x00000001 , 0x0000003f 
+ 00000284  0x000001c1 store  0x00000001 , 0x00004b60 
+ 00000285  0x000001c3 setarg  0x00004b63 
+ 00000286  0x000001c4 branch  0x0000011f 
+ 00000287  0x000001c8 copy  0x0000003f , 0x00000011 
+ 00000288  0x000001c9 arg  0x00004bdd , 0x00000002 
+ 00000289  0x000001ca ifetch  0x00000002 , 0x00000011 
+ 00000290  0x000001cb increase  0x00000014 , 0x0000003f 
+ 00000291  0x000001cc isub  0x00000002 , 0x0000003e 
+ 00000292  0x000001cd nbranch  0x00000126 , 0x00000002 
+ 00000293  0x000001ce setarg  0x00004b65 
+ 00000294  0x000001d0 istore  0x00000002 , 0x00000011 
+ 00000295  0x000001d1 rtn 
+ 00000296  0x000001d6 disable  0x00000028 
+ 00000297  0x000001d7 fetch  0x00000001 , 0x00004b60 
+ 00000298  0x000001d8 rtn  0x00000034 
+ 00000299  0x000001d9 enable  0x00000028 
+ 00000300  0x000001da fetch  0x00000001 , 0x00004b60 
+ 00000301  0x000001db increase  0xffffffff , 0x0000003f 
+ 00000302  0x000001dc store  0x00000001 , 0x00004b60 
+ 00000303  0x000001de fetch  0x00000002 , 0x00004b61 
+ 00000304  0x000001df store  0x00000002 , 0x00004bdd 
+ 00000305  0x000001e1 setarg  0x00004b61 
+ 00000306  0x000001e2 call  0x0000011f 
+ 00000307  0x000001e3 fetch  0x00000002 , 0x00004bdd 
+ 00000308  0x000001e4 rtn 
+ 00000309  0x000001e7 disable  0x00000028 
+ 00000310  0x000001e8 fetch  0x00000001 , 0x00004b60 
+ 00000311  0x000001e9 rtn  0x00000034 
+ 00000312  0x000001ea enable  0x00000028 
+ 00000313  0x000001eb fetch  0x00000002 , 0x00004b61 
+ 00000314  0x000001ec rtn 
+ 00000315  0x000001ef fetch  0x00000001 , 0x000047a9 
+ 00000316  0x000001f0 rtn  0x00000034 
+ 00000317  0x000001f1 call  0x000073af 
+ 00000318  0x000001f2 nbranch  0x00007d28 , 0x00000028 
+ 00000319  0x000001f3 call  0x00007d26 
+ 00000320  0x000001f4 disable  0x00000028 
+ 00000321  0x000001f5 fetch  0x00000002 , 0x00004bdf 
+ 00000322  0x000001f6 store  0x00000002 , 0x0000474a 
+ 00000323  0x000001f9 fetch  0x00000001 , 0x00004b51 
+ 00000324  0x000001fa beq  0x00000000 , 0x0000006d 
+ 00000325  0x000001fb call  0x000074de 
+ 00000326  0x000001fc branch  0x0000015f , 0x00000002 
+ 00000327  0x000001fd fetch  0x00000002 , 0x000047b6 
+ 00000328  0x000001fe store  0x00000002 , 0x000047c0 
+ 00000329  0x000001ff jam  0x00000000 , 0x000047c2 
+ 00000330  0x00000200 force  0x00000000 , 0x00000007 
+ 00000331  0x00000203 fetch  0x00000002 , 0x000047b8 
+ 00000332  0x00000204 rshift  0x0000003f , 0x00000002 
+ 00000333  0x00000205 storet  0x00000002 , 0x000047b8 
+ 00000334  0x00000206 and  0x0000003f , 0x00000001 , 0x0000003f 
+ 00000335  0x00000207 fetcht  0x00000002 , 0x000047c0 
+ 00000336  0x00000208 and  0x00000002 , 0x00000001 , 0x00000011 
+ 00000337  0x00000209 rshift  0x00000002 , 0x00000002 
+ 00000338  0x0000020a storet  0x00000002 , 0x000047c0 
+ 00000339  0x0000020b ixor  0x00000011 , 0x0000003e 
+ 00000340  0x0000020c ncall  0x00000163 , 0x00000005 
+ 00000341  0x0000020d fetch  0x00000001 , 0x000047a9 
+ 00000342  0x0000020e fetcht  0x00000001 , 0x000047c2 
+ 00000343  0x0000020f increase  0x00000001 , 0x00000002 
+ 00000344  0x00000210 storet  0x00000001 , 0x000047c2 
+ 00000345  0x00000211 copy  0x00000002 , 0x00000007 
+ 00000346  0x00000212 ixor  0x00000007 , 0x0000003e 
+ 00000347  0x00000214 nbranch  0x0000014b , 0x00000005 
+ 00000348  0x00000215 fetch  0x00000002 , 0x000047b6 
+ 00000349  0x00000216 store  0x00000002 , 0x000047b8 
+ 00000350  0x00000217 rtn 
+ 00000351  0x00000219 setarg  0x00000000 
+ 00000352  0x0000021a store  0x00000002 , 0x000047b6 
+ 00000353  0x0000021b store  0x00000002 , 0x000047b8 
+ 00000354  0x0000021c rtn 
+ 00000355  0x00000222 deposit  0x00000011 
+ 00000356  0x00000223 branch  0x00000181 , 0x00000034 
+ 00000357  0x00000224 copy  0x00000007 , 0x0000003f 
+ 00000358  0x00000225 beq  0x00000000 , 0x00000187 
+ 00000359  0x00000226 beq  0x00000001 , 0x0000018e 
+ 00000360  0x00000227 beq  0x00000002 , 0x00000195 
+ 00000361  0x00000228 beq  0x00000003 , 0x0000019c 
+ 00000362  0x0000022a ifetch  0x00000001 , 0x00000002 
+ 00000363  0x0000022b rtn  0x00000034 
+ 00000364  0x0000022c store  0x00000001 , 0x000047ba 
+ 00000365  0x0000022d increase  0x00000001 , 0x00000002 
+ 00000366  0x0000022e storet  0x00000002 , 0x000047bb 
+ 00000367  0x00000230 fetch  0x00000002 , 0x000047bb 
+ 00000368  0x00000231 ifetcht  0x00000001 , 0x0000003f 
+ 00000369  0x00000232 copy  0x00000002 , 0x00000039 
+ 00000370  0x00000233 iadd  0x00000002 , 0x00000002 
+ 00000371  0x00000234 storet  0x00000002 , 0x000047bb 
+ 00000372  0x00000235 copy  0x0000003f , 0x00000002 
+ 00000373  0x00000236 call  0x00000111 
+ 00000374  0x00000237 fetch  0x00000001 , 0x000047ba 
+ 00000375  0x00000238 increase  0xffffffff , 0x0000003f 
+ 00000376  0x00000239 store  0x00000001 , 0x000047ba 
+ 00000377  0x0000023a nbranch  0x0000016f , 0x00000005 
+ 00000378  0x0000023b branch  0x0000017b 
+ 00000379  0x0000023e call  0x00000135 
+ 00000380  0x0000023f nrtn  0x00000028 
+ 00000381  0x00000240 disable  0x00000028 
+ 00000382  0x00000242 jam  0x00000012 , 0x000009bd 
+ 00000383  0x00000243 call  0x00004bd6 
+ 00000384  0x00000244 branch  0x0000735f 
+ 00000385  0x00000248 copy  0x00000007 , 0x0000003f 
+ 00000386  0x00000249 beq  0x00000000 , 0x000001a3 
+ 00000387  0x0000024a beq  0x00000001 , 0x000001aa 
+ 00000388  0x0000024b beq  0x00000002 , 0x000001b1 
+ 00000389  0x0000024c beq  0x00000003 , 0x000001b8 
+ 00000390  0x0000024d branch  0x0000016a 
+ 00000391  0x00000250 jam  0x00000001 , 0x00004b5e 
+ 00000392  0x00000251 arg  0x00004b58 , 0x00000006 
+ 00000393  0x00000252 arg  0x00000007 , 0x00000039 
+ 00000394  0x00000253 call  0x000001bf 
+ 00000395  0x00000254 store  0x00000001 , 0x00004b5f 
+ 00000396  0x00000255 arg  0x00004b54 , 0x00000002 
+ 00000397  0x00000256 branch  0x0000016a 
+ 00000398  0x00000258 jam  0x00000002 , 0x00004b5e 
+ 00000399  0x00000259 arg  0x00004b58 , 0x00000006 
+ 00000400  0x0000025a arg  0x00000007 , 0x00000039 
+ 00000401  0x0000025b call  0x000001bf 
+ 00000402  0x0000025c store  0x00000001 , 0x00004b5f 
+ 00000403  0x0000025d arg  0x00004b54 , 0x00000002 
+ 00000404  0x0000025e branch  0x0000016a 
+ 00000405  0x00000260 jam  0x00000001 , 0x00004b5d 
+ 00000406  0x00000261 arg  0x00004b58 , 0x00000006 
+ 00000407  0x00000262 arg  0x00000007 , 0x00000039 
+ 00000408  0x00000263 call  0x000001bf 
+ 00000409  0x00000264 store  0x00000001 , 0x00004b5f 
+ 00000410  0x00000265 arg  0x00004b54 , 0x00000002 
+ 00000411  0x00000266 branch  0x0000016a 
+ 00000412  0x00000268 jam  0x00000002 , 0x00004b5d 
+ 00000413  0x00000269 arg  0x00004b58 , 0x00000006 
+ 00000414  0x0000026a arg  0x00000007 , 0x00000039 
+ 00000415  0x0000026b call  0x000001bf 
+ 00000416  0x0000026c store  0x00000001 , 0x00004b5f 
+ 00000417  0x0000026d arg  0x00004b54 , 0x00000002 
+ 00000418  0x0000026e branch  0x0000016a 
+ 00000419  0x00000271 jam  0x00000000 , 0x00004b5e 
+ 00000420  0x00000272 arg  0x00004b58 , 0x00000006 
+ 00000421  0x00000273 arg  0x00000007 , 0x00000039 
+ 00000422  0x00000274 call  0x000001bf 
+ 00000423  0x00000275 store  0x00000001 , 0x00004b5f 
+ 00000424  0x00000276 arg  0x00004b54 , 0x00000002 
+ 00000425  0x00000277 branch  0x0000016a 
+ 00000426  0x00000279 jam  0x00000000 , 0x00004b5e 
+ 00000427  0x0000027a arg  0x00004b58 , 0x00000006 
+ 00000428  0x0000027b arg  0x00000007 , 0x00000039 
+ 00000429  0x0000027c call  0x000001bf 
+ 00000430  0x0000027d store  0x00000001 , 0x00004b5f 
+ 00000431  0x0000027e arg  0x00004b54 , 0x00000002 
+ 00000432  0x0000027f branch  0x0000016a 
+ 00000433  0x00000281 jam  0x00000000 , 0x00004b5d 
+ 00000434  0x00000282 arg  0x00004b58 , 0x00000006 
+ 00000435  0x00000283 arg  0x00000007 , 0x00000039 
+ 00000436  0x00000284 call  0x000001bf 
+ 00000437  0x00000285 store  0x00000001 , 0x00004b5f 
+ 00000438  0x00000286 arg  0x00004b54 , 0x00000002 
+ 00000439  0x00000287 branch  0x0000016a 
+ 00000440  0x00000289 jam  0x00000000 , 0x00004b5d 
+ 00000441  0x0000028a arg  0x00004b58 , 0x00000006 
+ 00000442  0x0000028b arg  0x00000007 , 0x00000039 
+ 00000443  0x0000028c call  0x000001bf 
+ 00000444  0x0000028d store  0x00000001 , 0x00004b5f 
+ 00000445  0x0000028e arg  0x00004b54 , 0x00000002 
+ 00000446  0x0000028f branch  0x0000016a 
+ 00000447  0x00000294 arg  0x00000000 , 0x00000011 
+ 00000448  0x00000296 ifetch  0x00000001 , 0x00000006 
+ 00000449  0x00000297 iadd  0x00000011 , 0x00000011 
+ 00000450  0x00000298 loop  0x000001c0 
+ 00000451  0x0000029a and  0x00000011 , 0x000000ff , 0x0000003f 
+ 00000452  0x0000029b rtn 
+ 00000453  0x000002a0 call  0x0000731f 
+ 00000454  0x000002a4 call  0x00007313 
+ 00000455  0x000002a6 branch  0x000072fe 
+ 00000456  0x000002a9 fetch  0x00000001 , 0x0000475a 
+ 00000457  0x000002aa rtn  0x00000034 
+ 00000458  0x000002ab increase  0xffffffff , 0x0000003f 
+ 00000459  0x000002ac store  0x00000001 , 0x0000475a 
+ 00000460  0x000002ad nrtn  0x00000034 
+ 00000461  0x000002ae fetch  0x00000001 , 0x00004756 
+ 00000462  0x000002af beq  0x00000001 , 0x00000066 
+ 00000463  0x000002b0 branch  0x0000748a 
+ 00000464  0x000002bf hjam  0x00000004 , 0x00008081 
+ 00000465  0x000002c0 hfetch  0x00000004 , 0x00008078 
+ 00000466  0x000002c1 set1  0x00000007 , 0x0000003f 
+ 00000467  0x000002c2 hstore  0x00000004 , 0x00008078 
+ 00000468  0x000002c4 hjam  0x00000001 , 0x00008043 
+ 00000469  0x000002c5 setarg  0x00004000 
+ 00000470  0x000002c6 hstore  0x00000002 , 0x00008054 
+ 00000471  0x000002c7 setarg  0x00004030 
+ 00000472  0x000002c8 hstore  0x00000002 , 0x00008056 
+ 00000473  0x000002c9 setarg  0x00001f00 
+ 00000474  0x000002ca hstore  0x00000002 , 0x0000805a 
+ 00000475  0x000002cb setarg  0x00001f10 
+ 00000476  0x000002cc hstore  0x00000002 , 0x0000805c 
+ 00000477  0x000002cd setarg  0x00004000 
+ 00000478  0x000002ce hstore  0x00000002 , 0x00008058 
+ 00000479  0x000002cf setarg  0x00001f00 
+ 00000480  0x000002d0 hstore  0x00000002 , 0x0000805e 
+ 00000481  0x000002d1 hstore  0x00000002 , 0x00008060 
+ 00000482  0x000002d3 setarg  0x000001a0 
+ 00000483  0x000002d4 hstore  0x00000002 , 0x00008052 
+ 00000484  0x000002d6 hfetch  0x00000002 , 0x00008050 
+ 00000485  0x000002d7 set0  0x0000000f , 0x0000003f 
+ 00000486  0x000002d8 hstore  0x00000002 , 0x00008050 
+ 00000487  0x000002d9 hjam  0x00000081 , 0x00008062 
+ 00000488  0x000002da rtn 
+ 00000489  0x000002dd fetch  0x00000007 , 0x0000030b 
+ 00000490  0x000002de store  0x00000007 , 0x00004bea 
+ 00000491  0x000002e0 jam  0x00000002 , 0x00004be7 
+ 00000492  0x000002e1 jam  0x00000029 , 0x00004be8 
+ 00000493  0x000002e2 jam  0x00000008 , 0x00004be9 
+ 00000494  0x000002e4 hfetch  0x00000002 , 0x0000805e 
+ 00000495  0x000002e5 copy  0x0000003f , 0x0000000a 
+ 00000496  0x000002e6 arg  0x0000000b , 0x00000039 
+ 00000497  0x000002e7 arg  0x00004be7 , 0x00000006 
+ 00000498  0x000002e8 call  0x0000633b 
+ 00000499  0x000002e9 branch  0x0000631f 
+ 00000500  0x000002ec hfetch  0x00000004 , 0x00008078 
+ 00000501  0x000002ed hfetcht  0x00000004 , 0x0000807c 
+ 00000502  0x000002ee ior  0x00000002 , 0x0000003f 
+ 00000503  0x000002ef invert  0x0000003f , 0x0000003f 
+ 00000504  0x000002f0 iand  0x00000011 , 0x0000003f 
+ 00000505  0x000002f2 hstore  0x00000004 , 0x00008070 
+ 00000506  0x000002f3 rtn 
+ 00000507  0x000002f6 storet  0x00000001 , 0x00000017 
+ 00000508  0x000002f7 add  0x00000002 , 0x00000000 , 0x00000011 
+ 00000509  0x000002f8 call  0x00003a13 
+ 00000510  0x000002f9 setarg  0x00000500 
+ 00000511  0x000002fa call  0x00003b35 
+ 00000512  0x000002fc hjam  0x00000001 , 0x00008906 
+ 00000513  0x000002fd hjam  0x0000003c , 0x00008900 
+ 00000514  0x000002fe hjam  0x000000e0 , 0x00008901 
+ 00000515  0x000002ff hjam  0x00000012 , 0x0000096d 
+ 00000516  0x00000300 nop  0x0000000a 
+ 00000517  0x00000301 hjam  0x00000001 , 0x00008902 
+ 00000518  0x00000302 hjam  0x0000003d , 0x00008902 
+ 00000519  0x00000303 nop  0x0000000a 
+ 00000520  0x00000304 hjam  0x000000b7 , 0x00008903 
+ 00000521  0x00000305 nop  0x0000000a 
+ 00000522  0x00000306 hjam  0x0000007f , 0x00008902 
+ 00000523  0x00000307 fetch  0x00000001 , 0x00004b51 
+ 00000524  0x00000309 beq  0x00000000 , 0x0000021b 
+ 00000525  0x0000030a fetch  0x00000001 , 0x00004280 
+ 00000526  0x0000030b bbit1  0x00000000 , 0x00000213 
+ 00000527  0x0000030c bbit1  0x00000001 , 0x00000217 
+ 00000528  0x0000030d bbit1  0x00000002 , 0x0000021b 
+ 00000529  0x0000030e bbit1  0x00000003 , 0x0000021f 
+ 00000530  0x0000030f bbit1  0x00000004 , 0x00000223 
+ 00000531  0x00000311 hjam  0x000000f0 , 0x00000956 
+ 00000532  0x00000312 call  0x000039f5 
+ 00000533  0x00000313 hjam  0x000000d8 , 0x00000955 
+ 00000534  0x00000314 rtn 
+ 00000535  0x00000316 hjam  0x000000df , 0x00000956 
+ 00000536  0x00000317 call  0x000039f5 
+ 00000537  0x00000318 hjam  0x000000df , 0x00000955 
+ 00000538  0x00000319 rtn 
+ 00000539  0x0000031b hjam  0x000000ff , 0x00000956 
+ 00000540  0x0000031c call  0x000039f5 
+ 00000541  0x0000031d hjam  0x000000df , 0x00000955 
+ 00000542  0x0000031e rtn 
+ 00000543  0x00000320 hjam  0x000000ce , 0x00000956 
+ 00000544  0x00000321 call  0x000039f5 
+ 00000545  0x00000322 hjam  0x000000d8 , 0x00000955 
+ 00000546  0x00000323 rtn 
+ 00000547  0x00000325 hjam  0x000000cb , 0x00000956 
+ 00000548  0x00000326 call  0x000039f5 
+ 00000549  0x00000327 hjam  0x000000d8 , 0x00000955 
+ 00000550  0x00000328 rtn 
+ 00000551  0x0000032a hjam  0x000000c0 , 0x00000956 
+ 00000552  0x0000032b hjam  0x000000d8 , 0x00000955 
+ 00000553  0x0000032c rtn 
+ 00000554  0x0000032f call  0x00004985 
+ 00000555  0x00000330 call  0x00000230 
+ 00000556  0x00000331 call  0x00004a6d 
+ 00000557  0x00000332 fetch  0x00000001 , 0x00004132 
+ 00000558  0x00000333 beq  0x0000000a , 0x00005d8e 
+ 00000559  0x00000334 rtn 
+ 00000560  0x00000336 branch  0x00000200 , 0x0000002d 
+ 00000561  0x00000337 branch  0x00004994 
+ 00000562  0x0000033a branch  0x00000243 , 0x00000021 
+ 00000563  0x0000033b hjam  0x000000d4 , 0x00000955 
+ 00000564  0x0000033c nop  0x00000004 
+ 00000565  0x0000033d hjam  0x000000d2 , 0x00000955 
+ 00000566  0x0000033e nop  0x00000004 
+ 00000567  0x0000033f hjam  0x000000d1 , 0x00000955 
+ 00000568  0x00000340 nop  0x00000004 
+ 00000569  0x00000341 fetch  0x00000001 , 0x00004b51 
+ 00000570  0x00000342 beq  0x00000000 , 0x00000251 
+ 00000571  0x00000343 fetch  0x00000001 , 0x00004280 
+ 00000572  0x00000344 bbit1  0x00000000 , 0x00000241 
+ 00000573  0x00000345 bbit1  0x00000001 , 0x0000024e 
+ 00000574  0x00000346 bbit1  0x00000002 , 0x00000241 
+ 00000575  0x00000347 bbit1  0x00000003 , 0x0000024e 
+ 00000576  0x00000348 bbit1  0x00000004 , 0x0000024e 
+ 00000577  0x0000034b hjam  0x000000d0 , 0x00000955 
+ 00000578  0x0000034c hjam  0x000000e0 , 0x00000956 
+ 00000579  0x0000034e force  0x00000000 , 0x00000015 
+ 00000580  0x0000034f disable  0x00000021 
+ 00000581  0x00000350 disable  0x00000020 
+ 00000582  0x00000351 pulse  0x0000001e 
+ 00000583  0x00000352 hjam  0x00000000 , 0x00008902 
+ 00000584  0x00000353 hjam  0x00000000 , 0x00008901 
+ 00000585  0x00000354 hjam  0x00000000 , 0x00008900 
+ 00000586  0x00000355 hjam  0x00000000 , 0x00008903 
+ 00000587  0x00000356 hjam  0x00000070 , 0x00008904 
+ 00000588  0x00000357 hjam  0x00000000 , 0x00008906 
+ 00000589  0x00000358 rtn 
+ 00000590  0x0000035d hjam  0x000000d0 , 0x00000955 
+ 00000591  0x0000035e hjam  0x000000c0 , 0x00000956 
+ 00000592  0x0000035f branch  0x00000243 
+ 00000593  0x00000361 hjam  0x000000d0 , 0x00000955 
+ 00000594  0x00000362 hjam  0x000000c0 , 0x00000956 
+ 00000595  0x00000363 rtn 
+ 00000596  0x00000367 fetch  0x00000001 , 0x00004218 
+ 00000597  0x00000368 nbranch  0x0000025a , 0x00000034 
+ 00000598  0x00000369 call  0x00003cd2 
+ 00000599  0x0000036a nop  0x00007530 
+ 00000600  0x0000036b nop  0x00007530 
+ 00000601  0x0000036c nop  0x00007530 
+ 00000602  0x0000036e call  0x00003a5f 
+ 00000603  0x0000036f hjam  0x00000005 , 0x00008042 
+ 00000604  0x00000370 nop  0x00000001 
+ 00000605  0x00000371 hjam  0x00000004 , 0x00008042 
+ 00000606  0x00000372 hfetch  0x00000001 , 0x0000896b 
+ 00000607  0x00000373 and_into  0x000000cf , 0x0000003f 
+ 00000608  0x00000374 hstore  0x00000001 , 0x0000896b 
+ 00000609  0x00000375 or_into  0x00000030 , 0x0000003f 
+ 00000610  0x00000376 hstore  0x00000001 , 0x0000896b 
+ 00000611  0x00000377 rtn 
+ 00012288  0x00000381 call  0x00003bab 
+ 00012289  0x00000385 hjam  0x00000008 , 0x00008006 
+ 00012290  0x00000386 set0  0x00000025 , 0x00000000 
+ 00012291  0x00000387 bpatch  0x00000000 , 0x00004000 
+ 00012292  0x00000388 hfetch  0x00000001 , 0x0000813b 
+ 00012293  0x00000389 store  0x00000001 , 0x000042b8 
+ 00012294  0x0000038a call  0x000060e3 
+ 00012295  0x0000038b clear_stack 
+ 00012296  0x0000038c ncall  0x00007f6b , 0x0000002b 
+ 00012297  0x0000038d call  0x000039fc 
+ 00012298  0x0000038e call  0x0000621d 
+ 00012299  0x0000038f call  0x00003b3c 
+ 00012300  0x00000390 call  0x000042ea 
+ 00012301  0x00000391 set0  0x00000025 , 0x00000000 
+ 00012302  0x00000392 bpatch  0x00000001 , 0x00004000 
+ 00012303  0x00000393 call  0x00006607 
+ 00012304  0x00000394 call  0x0000530c 
+ 00012305  0x00000395 call  0x00007cef 
+ 00012306  0x00000396 call  0x00003d4b 
+ 00012307  0x00000397 ncall  0x00006571 , 0x0000002b 
+ 00012308  0x00000398 set0  0x00000025 , 0x00000000 
+ 00012309  0x00000399 bpatch  0x00000002 , 0x00004000 
+ 00012310  0x0000039a call  0x00003d55 , 0x0000002b 
+ 00012311  0x0000039b call  0x000075e0 
+ 00012312  0x0000039c call  0x00003c29 , 0x0000002b 
+ 00012313  0x0000039e set0  0x00000025 , 0x00000000 
+ 00012314  0x0000039f bpatch  0x00000003 , 0x00004000 
+ 00012315  0x000003a0 call  0x000076f7 
+ 00012316  0x000003a1 call  0x00007acf 
+ 00012317  0x000003a2 call  0x000075e3 
+ 00012318  0x000003a3 call  0x00004911 
+ 00012319  0x000003a4 set0  0x00000025 , 0x00000000 
+ 00012320  0x000003a5 bpatch  0x00000004 , 0x00004000 
+ 00012321  0x000003a6 call  0x00003043 
+ 00012322  0x000003a7 call  0x00003d60 
+ 00012323  0x000003a8 call  0x0000309e 
+ 00012324  0x000003a9 call  0x0000333e 
+ 00012325  0x000003aa call  0x000033b3 
+ 00012326  0x000003ab call  0x00003029 
+ 00012327  0x000003ac call  0x00003c53 
+ 00012328  0x000003ad branch  0x00003019 
+ 00012329  0x000003b0 call  0x0000302e 
+ 00012330  0x000003b1 rtnmark0  0x00000009 
+ 00012331  0x000003b2 set0  0x00000009 , 0x00000000 
+ 00012332  0x000003b3 call  0x00003260 
+ 00012333  0x000003b4 branch  0x0000497d 
+ 00012334  0x000003b7 set0  0x00000025 , 0x00000000 
+ 00012335  0x000003b8 bpatch  0x00000005 , 0x00004000 
+ 00012336  0x000003b9 call  0x0000329f 
+ 00012337  0x000003ba nbranch  0x00003038 , 0x00000005 
+ 00012338  0x000003bb call  0x00003246 
+ 00012339  0x000003bc add  0x00000011 , 0x00000001 , 0x00000006 
+ 00012340  0x000003bd ifetch  0x00000001 , 0x00000006 
+ 00012341  0x000003be bbit1  0x00000000 , 0x00004915 
+ 00012342  0x000003bf bbit1  0x00000001 , 0x00003188 
+ 00012343  0x000003c0 branch  0x0000341f 
+ 00012344  0x000003c2 set0  0x00000025 , 0x00000000 
+ 00012345  0x000003c3 bpatch  0x00000006 , 0x00004000 
+ 00012346  0x000003c4 call  0x00003269 
+ 00012347  0x000003c5 copy  0x00000039 , 0x0000003e 
+ 00012348  0x000003c6 rtn  0x00000005 
+ 00012349  0x000003c7 call  0x00003246 
+ 00012350  0x000003c8 fetch  0x00000001 , 0x00000030 
+ 00012351  0x000003c9 bbit1  0x00000003 , 0x000030e8 
+ 00012352  0x000003ca fetch  0x00000001 , 0x00000031 
+ 00012353  0x000003cb bbit1  0x00000001 , 0x00003188 
+ 00012354  0x000003cc branch  0x0000341f 
+ 00012355  0x000003d5 fetch  0x00000001 , 0x00004271 
+ 00012356  0x000003d6 rtn  0x00000034 
+ 00012357  0x000003d7 beq  0x00000001 , 0x00003053 
+ 00012358  0x000003d8 beq  0x00000002 , 0x00003058 
+ 00012359  0x000003d9 beq  0x00000003 , 0x0000305b 
+ 00012360  0x000003da beq  0x00000005 , 0x00003060 
+ 00012361  0x000003db beq  0x0000001b , 0x00003050 
+ 00012362  0x000003dc call  0x00003297 
+ 00012363  0x000003dd rtn  0x00000005 
+ 00012364  0x000003de call  0x0000329a 
+ 00012365  0x000003df rtn  0x00000005 
+ 00012366  0x000003e1 jam  0x00000000 , 0x00004271 
+ 00012367  0x000003e2 rtn 
+ 00012368  0x000003e5 jam  0x0000001b , 0x000003bf 
+ 00012369  0x000003e6 jam  0x00000000 , 0x00004271 
+ 00012370  0x000003e7 rtn 
+ 00012371  0x000003ea set1  0x0000001c , 0x00000000 
+ 00012372  0x000003eb set0  0x0000001e , 0x00000000 
+ 00012373  0x000003ec jam  0x000000ff , 0x0000008e 
+ 00012374  0x000003ed jam  0x0000001f , 0x0000008c 
+ 00012375  0x000003ee branch  0x0000304e 
+ 00012376  0x000003f1 set0  0x0000001c , 0x00000000 
+ 00012377  0x000003f2 force  0x00000000 , 0x0000001b 
+ 00012378  0x000003f3 branch  0x0000304e 
+ 00012379  0x000003f6 call  0x0000329a 
+ 00012380  0x000003f7 rtn  0x00000005 
+ 00012381  0x000003f8 force  0x00000001 , 0x00000002 
+ 00012382  0x000003f9 jam  0x00000005 , 0x0000016d 
+ 00012383  0x000003fa branch  0x00003068 
+ 00012384  0x000003fd set0  0x00000025 , 0x00000000 
+ 00012385  0x000003fe bpatch  0x00000007 , 0x00004000 
+ 00012386  0x00000400 fetch  0x00000006 , 0x00004273 
+ 00012387  0x00000401 branch  0x0000304e , 0x00000034 
+ 00012388  0x00000402 jam  0x00000001 , 0x0000470a 
+ 00012389  0x00000404 jam  0x00000003 , 0x00000055 
+ 00012390  0x00000405 branch  0x00003067 
+ 00012391  0x00000408 force  0x00000025 , 0x00000002 
+ 00012392  0x0000040a set0  0x00000025 , 0x00000000 
+ 00012393  0x0000040b bpatch  0x00000008 , 0x00004001 
+ 00012394  0x0000040c fetch  0x00000001 , 0x000000f0 
+ 00012395  0x0000040d branch  0x0000306f , 0x00000034 
+ 00012396  0x0000040e lshift3  0x0000003f , 0x0000003f 
+ 00012397  0x0000040f lshift4  0x0000003f , 0x0000003f 
+ 00012398  0x00000410 increase  0xffffffff , 0x0000003f 
+ 00012399  0x00000412 store  0x00000001 , 0x00004146 
+ 00012400  0x00000413 store  0x00000001 , 0x000000ef 
+ 00012401  0x00000414 jam  0x0000001f , 0x0000008d 
+ 00012402  0x00000415 set0  0x0000000c , 0x00000000 
+ 00012403  0x00000416 call  0x0000327a 
+ 00012404  0x00000417 nbranch  0x00003091 , 0x00000005 
+ 00012405  0x00000418 call  0x00003b11 
+ 00012406  0x00000419 store  0x00000001 , 0x00000077 
+ 00012407  0x0000041a storet  0x00000001 , 0x0000007c 
+ 00012408  0x0000041b fetch  0x00000006 , 0x00004273 
+ 00012409  0x0000041c store  0x00000006 , 0x00000040 
+ 00012410  0x0000041d set0  0x00000025 , 0x00000000 
+ 00012411  0x0000041e bpatch  0x00000009 , 0x00004001 
+ 00012412  0x0000041f call  0x00007ee2 
+ 00012413  0x00000420 force  0x00000000 , 0x0000003f 
+ 00012414  0x00000421 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00012415  0x00000422 nsetflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00012416  0x00000423 set1  0x00000003 , 0x0000003f 
+ 00012417  0x00000424 store  0x00000001 , 0x00000030 
+ 00012418  0x00000425 jam  0x00000003 , 0x000009bd 
+ 00012419  0x00000426 call  0x00007d86 
+ 00012420  0x00000427 force  0x00000000 , 0x0000003f 
+ 00012421  0x00000428 setflag  0x00000001 , 0x00000004 , 0x0000003f 
+ 00012422  0x00000429 store  0x00000001 , 0x0000004c 
+ 00012423  0x0000042a setarg  0x00000000 
+ 00012424  0x0000042b set1  0x00000001 , 0x0000003f 
+ 00012425  0x0000042c store  0x00000001 , 0x00000031 
+ 00012426  0x0000042d enable  0x00000029 
+ 00012427  0x0000042e call  0x00003260 
+ 00012428  0x0000042f disable  0x00000029 
+ 00012429  0x00000430 force  0x00000004 , 0x00000007 
+ 00012430  0x00000431 fetch  0x00000002 , 0x00004159 
+ 00012431  0x00000432 call  0x00007ed4 
+ 00012432  0x00000433 branch  0x0000304e 
+ 00012433  0x00000435 set0  0x00000025 , 0x00000000 
+ 00012434  0x00000436 bpatch  0x0000000a , 0x00004001 
+ 00012435  0x00000437 fetch  0x00000006 , 0x00004273 
+ 00012436  0x00000438 store  0x00000006 , 0x00000040 
+ 00012437  0x00000439 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00012438  0x0000043a branch  0x00003098 , 0x00000001 
+ 00012439  0x0000043b branch  0x0000304e 
+ 00012440  0x0000043d arg  0x00000100 , 0x00000005 
+ 00012441  0x0000043e arg  0x00000008 , 0x00000039 
+ 00012442  0x0000043f call  0x00007e91 
+ 00012443  0x00000440 jam  0x00000004 , 0x000009bd 
+ 00012444  0x00000441 call  0x00007d86 
+ 00012445  0x00000442 branch  0x0000304e 
+ 00012446  0x0000044a rtnmark0  0x0000001c 
+ 00012447  0x0000044b force  0x00000002 , 0x00000007 
+ 00012448  0x0000044c call  0x00007ee2 
+ 00012449  0x0000044d nsetflag  0x00000034 , 0x0000001c , 0x00000000 
+ 00012450  0x0000044e nbranch  0x000030a4 , 0x00000034 
+ 00012451  0x0000044f rtn 
+ 00012452  0x00000454 set0  0x00000025 , 0x00000000 
+ 00012453  0x00000455 bpatch  0x0000000b , 0x00004001 
+ 00012454  0x00000456 fetcht  0x00000002 , 0x0000415b 
+ 00012455  0x00000457 force  0x00000004 , 0x00000007 
+ 00012456  0x00000458 call  0x0000379f 
+ 00012457  0x00000459 rtn  0x00000028 
+ 00012458  0x0000045a call  0x00003937 
+ 00012459  0x0000045b force  0x00000000 , 0x00000024 
+ 00012460  0x0000045d rtn  0x00000003 
+ 00012461  0x0000045e set0  0x0000000b , 0x00000000 
+ 00012462  0x0000045f set0  0x00000000 , 0x00000000 
+ 00012463  0x00000461 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00012464  0x00000462 isolate1  0x0000001e , 0x00000000 
+ 00012465  0x00000463 setflag  0x00000001 , 0x00000002 , 0x00000024 
+ 00012466  0x00000464 compare  0x00000000 , 0x00000021 , 0x00000002 
+ 00012467  0x00000465 nbranch  0x000030d0 , 0x00000001 
+ 00012468  0x00000468 set0  0x00000025 , 0x00000000 
+ 00012469  0x00000469 bpatch  0x0000000c , 0x00004001 
+ 00012470  0x0000046a fetch  0x00000001 , 0x00000012 
+ 00012471  0x0000046b increase  0x00000001 , 0x0000003f 
+ 00012472  0x0000046c store  0x00000001 , 0x00000012 
+ 00012473  0x0000046d call  0x0000396e 
+ 00012474  0x0000046e call  0x00003967 
+ 00012475  0x0000046f call  0x0000398b 
+ 00012476  0x00000470 call  0x00003aee 
+ 00012477  0x00000471 call  0x00003af4 
+ 00012478  0x00000472 call  0x00003b05 
+ 00012479  0x00000473 call  0x000036c6 
+ 00012480  0x00000474 call  0x000030c2 
+ 00012481  0x00000475 branch  0x000030ac 
+ 00012482  0x00000478 set0  0x00000025 , 0x00000000 
+ 00012483  0x00000479 bpatch  0x0000000d , 0x00004001 
+ 00012484  0x0000047a fetch  0x00000001 , 0x0000008c 
+ 00012485  0x0000047b increase  0xffffffff , 0x0000003f 
+ 00012486  0x0000047c store  0x00000001 , 0x0000008c 
+ 00012487  0x0000047d rtn  0x00000002 
+ 00012488  0x0000047e jam  0x0000001f , 0x0000008c 
+ 00012489  0x0000047f fetch  0x00000001 , 0x0000008e 
+ 00012490  0x00000480 increase  0xffffffff , 0x0000003f 
+ 00012491  0x00000481 store  0x00000001 , 0x0000008e 
+ 00012492  0x00000482 rtn  0x00000002 
+ 00012493  0x00000483 setflip  0x0000001e , 0x00000000 
+ 00012494  0x00000484 jam  0x000000ff , 0x0000008e 
+ 00012495  0x00000485 rtn 
+ 00012496  0x00000488 set0  0x00000025 , 0x00000000 
+ 00012497  0x00000489 bpatch  0x0000000e , 0x00004001 
+ 00012498  0x0000048a call  0x0000396e 
+ 00012499  0x0000048b call  0x00003960 
+ 00012500  0x0000048c call  0x0000398b 
+ 00012501  0x0000048d call  0x00003afa 
+ 00012502  0x0000048e call  0x00003a7f 
+ 00012503  0x0000048f call  0x00003aa3 
+ 00012504  0x00000490 branch  0x000030db , 0x00000018 
+ 00012505  0x00000491 call  0x000030c2 
+ 00012506  0x00000492 branch  0x000030af 
+ 00012507  0x00000494 set0  0x00000025 , 0x00000000 
+ 00012508  0x00000495 bpatch  0x0000000f , 0x00004001 
+ 00012509  0x00000496 call  0x00003a50 
+ 00012510  0x00000497 call  0x00003b0d 
+ 00012511  0x00000498 call  0x00003584 
+ 00012512  0x00000499 set0  0x00000001 , 0x00000000 
+ 00012513  0x0000049a rtnmark0  0x0000000b 
+ 00012514  0x0000049c set0  0x00000025 , 0x00000000 
+ 00012515  0x0000049d bpatch  0x00000010 , 0x00004002 
+ 00012516  0x0000049f fetch  0x00000001 , 0x00000013 
+ 00012517  0x000004a0 increase  0x00000001 , 0x0000003f 
+ 00012518  0x000004a1 store  0x00000001 , 0x00000013 
+ 00012519  0x000004a2 rtn 
+ 00012520  0x000004ab set0  0x00000025 , 0x00000000 
+ 00012521  0x000004ac bpatch  0x00000011 , 0x00004002 
+ 00012522  0x000004ad enable  0x00000029 
+ 00012523  0x000004ae enable  0x00000030 
+ 00012524  0x000004af fetch  0x00000002 , 0x00004155 
+ 00012525  0x000004b0 branch  0x000030f1 , 0x00000034 
+ 00012526  0x000004b1 force  0x0000000d , 0x00000007 
+ 00012527  0x000004b2 call  0x00007ee2 
+ 00012528  0x000004b3 nrtn  0x00000034 
+ 00012529  0x000004b5 set0  0x00000025 , 0x00000000 
+ 00012530  0x000004b6 bpatch  0x00000012 , 0x00004002 
+ 00012531  0x000004b7 fetcht  0x00000002 , 0x00004157 
+ 00012532  0x000004b8 force  0x00000028 , 0x00000007 
+ 00012533  0x000004b9 call  0x0000379f 
+ 00012534  0x000004ba branch  0x0000312f , 0x00000028 
+ 00012535  0x000004bb force  0x00000004 , 0x00000007 
+ 00012536  0x000004bc call  0x00007ee2 
+ 00012537  0x000004bd nbranch  0x00003108 , 0x00000034 
+ 00012538  0x000004be fetch  0x00000001 , 0x0000004c 
+ 00012539  0x000004bf bbit1  0x00000004 , 0x000030fd 
+ 00012540  0x000004c0 branch  0x00003100 
+ 00012541  0x000004c2 arg  0x00000100 , 0x00000005 
+ 00012542  0x000004c3 arg  0x00000008 , 0x00000039 
+ 00012543  0x000004c4 call  0x00007e91 
+ 00012544  0x000004c6 set0  0x00000025 , 0x00000000 
+ 00012545  0x000004c7 bpatch  0x00000013 , 0x00004002 
+ 00012546  0x000004c8 jam  0x00000000 , 0x00000030 
+ 00012547  0x000004c9 call  0x0000530d 
+ 00012548  0x000004ca jam  0x00000000 , 0x0000470a 
+ 00012549  0x000004cb jam  0x00000013 , 0x000009bd 
+ 00012550  0x000004cc call  0x00007d86 
+ 00012551  0x000004cd branch  0x0000312f 
+ 00012552  0x000004d0 set0  0x00000025 , 0x00000000 
+ 00012553  0x000004d1 bpatch  0x00000014 , 0x00004002 
+ 00012554  0x000004d2 force  0x00000000 , 0x0000000b 
+ 00012555  0x000004d3 until  0x00000023 , 0x00000026 
+ 00012556  0x000004d4 fetch  0x00000001 , 0x000000f1 
+ 00012557  0x000004d5 increase  0xffffffff , 0x0000003f 
+ 00012558  0x000004d6 ixor  0x00000022 , 0x0000003f 
+ 00012559  0x000004d7 compare  0x00000000 , 0x0000003f , 0x00000003 
+ 00012560  0x000004d8 nbranch  0x00003108 , 0x00000001 
+ 00012561  0x000004d9 deposit  0x00000004 
+ 00012562  0x000004da store  0x00000001 , 0x00000180 
+ 00012563  0x000004db force  0x00000000 , 0x00000026 
+ 00012564  0x000004dc force  0x00000000 , 0x00000024 
+ 00012565  0x000004df set0  0x00000025 , 0x00000000 
+ 00012566  0x000004e0 bpatch  0x00000015 , 0x00004002 
+ 00012567  0x000004e1 branch  0x0000312f , 0x00000003 
+ 00012568  0x000004e2 call  0x00003972 
+ 00012569  0x000004e3 arg  0x00000600 , 0x0000000b 
+ 00012570  0x000004e4 until  0x00000023 , 0x00000026 
+ 00012571  0x000004e6 set0  0x00000025 , 0x00000000 
+ 00012572  0x000004e7 bpatch  0x00000016 , 0x00004002 
+ 00012573  0x000004e8 fetch  0x00000004 , 0x000000f1 
+ 00012574  0x000004e9 iforce  0x00000021 
+ 00012575  0x000004ea increase  0x00000001 , 0x0000003f 
+ 00012576  0x000004eb store  0x00000004 , 0x000000f1 
+ 00012577  0x000004ec isolate1  0x0000000c , 0x00000000 
+ 00012578  0x000004ed setflag  0x00000001 , 0x00000002 , 0x00000024 
+ 00012579  0x000004ee compare  0x00000000 , 0x00000021 , 0x00000002 
+ 00012580  0x000004ef nbranch  0x00003145 , 0x00000001 
+ 00012581  0x000004f0 fetch  0x00000001 , 0x0000000c 
+ 00012582  0x000004f1 increase  0x00000001 , 0x0000003f 
+ 00012583  0x000004f2 store  0x00000001 , 0x0000000c 
+ 00012584  0x000004f3 call  0x00003967 
+ 00012585  0x000004f4 call  0x00003aee 
+ 00012586  0x000004f5 call  0x00003af4 
+ 00012587  0x000004f6 call  0x00003b05 
+ 00012588  0x000004f7 call  0x000036c6 
+ 00012589  0x000004f8 call  0x00003136 
+ 00012590  0x000004f9 branch  0x00003115 
+ 00012591  0x000004fb set0  0x00000025 , 0x00000000 
+ 00012592  0x000004fc bpatch  0x00000017 , 0x00004002 
+ 00012593  0x000004fd disable  0x00000029 
+ 00012594  0x000004fe fetch  0x00000002 , 0x00004155 
+ 00012595  0x000004ff rtn  0x00000034 
+ 00012596  0x00000500 force  0x0000000d , 0x00000007 
+ 00012597  0x00000501 branch  0x00007ed4 
+ 00012598  0x00000504 set0  0x00000025 , 0x00000000 
+ 00012599  0x00000505 bpatch  0x00000018 , 0x00004003 
+ 00012600  0x00000506 fetch  0x00000001 , 0x0000008d 
+ 00012601  0x00000507 increase  0xffffffff , 0x0000003f 
+ 00012602  0x00000508 store  0x00000001 , 0x0000008d 
+ 00012603  0x00000509 rtn  0x00000002 
+ 00012604  0x0000050a jam  0x0000001f , 0x0000008d 
+ 00012605  0x0000050b fetch  0x00000001 , 0x000000ef 
+ 00012606  0x0000050c increase  0xffffffff , 0x0000003f 
+ 00012607  0x0000050d store  0x00000001 , 0x000000ef 
+ 00012608  0x0000050e rtn  0x00000002 
+ 00012609  0x0000050f setflip  0x0000000c , 0x00000000 
+ 00012610  0x00000510 fetch  0x00000001 , 0x00004146 
+ 00012611  0x00000511 store  0x00000001 , 0x000000ef 
+ 00012612  0x00000512 rtn 
+ 00012613  0x00000515 set0  0x00000025 , 0x00000000 
+ 00012614  0x00000516 bpatch  0x00000019 , 0x00004003 
+ 00012615  0x00000517 call  0x00003960 
+ 00012616  0x00000518 call  0x00003afa 
+ 00012617  0x00000519 call  0x00003a7f 
+ 00012618  0x0000051a call  0x00003aa3 
+ 00012619  0x0000051b branch  0x0000314e , 0x00000018 
+ 00012620  0x0000051c call  0x00003136 
+ 00012621  0x0000051d branch  0x0000311b 
+ 00012622  0x0000051f call  0x000036c6 
+ 00012623  0x00000520 fetch  0x00000001 , 0x0000000d 
+ 00012624  0x00000521 increase  0x00000001 , 0x0000003f 
+ 00012625  0x00000522 store  0x00000001 , 0x0000000d 
+ 00012626  0x00000523 force  0x00000000 , 0x0000001b 
+ 00012627  0x00000524 fetch  0x00000004 , 0x000000f1 
+ 00012628  0x00000526 set0  0x00000025 , 0x00000000 
+ 00012629  0x00000527 bpatch  0x0000001a , 0x00004003 
+ 00012630  0x00000528 call  0x00003aec 
+ 00012631  0x00000529 call  0x00003972 
+ 00012632  0x0000052a increase  0x00000001 , 0x00000026 
+ 00012633  0x0000052c and_into  0x000001fd , 0x00000021 
+ 00012634  0x0000052d and_into  0x000001fc , 0x00000024 
+ 00012635  0x0000052e call  0x00003967 
+ 00012636  0x0000052f call  0x00003aee 
+ 00012637  0x00000530 call  0x00003af4 
+ 00012638  0x00000531 call  0x00003b05 
+ 00012639  0x00000532 deposit  0x00000022 
+ 00012640  0x00000533 store  0x00000004 , 0x00000160 
+ 00012641  0x00000534 force  0x00000000 , 0x00000004 
+ 00012642  0x00000535 force  0x00000002 , 0x00000001 
+ 00012643  0x00000536 call  0x00003b0d 
+ 00012644  0x00000537 call  0x000037ee 
+ 00012645  0x00000539 set0  0x00000025 , 0x00000000 
+ 00012646  0x0000053a bpatch  0x0000001b , 0x00004003 
+ 00012647  0x0000053b call  0x00003aea 
+ 00012648  0x0000053c or_into  0x00000002 , 0x00000021 
+ 00012649  0x0000053d and_into  0x000001fc , 0x00000024 
+ 00012650  0x0000053e call  0x00003960 
+ 00012651  0x0000053f call  0x00003afa 
+ 00012652  0x00000540 call  0x00003a7f 
+ 00012653  0x00000541 call  0x00003aa3 
+ 00012654  0x00000542 call  0x000036c6 , 0x00000018 
+ 00012655  0x00000543 branch  0x00003175 , 0x00000018 
+ 00012656  0x00000544 fetch  0x00000001 , 0x00000010 
+ 00012657  0x00000545 branch  0x00003115 , 0x00000034 
+ 00012658  0x00000546 increase  0xffffffff , 0x0000003f 
+ 00012659  0x00000547 store  0x00000001 , 0x00000010 
+ 00012660  0x00000548 branch  0x00003154 
+ 00012661  0x0000054b set0  0x00000025 , 0x00000000 
+ 00012662  0x0000054c bpatch  0x0000001c , 0x00004003 
+ 00012663  0x0000054d fetch  0x00000001 , 0x0000000e 
+ 00012664  0x0000054e increase  0x00000001 , 0x0000003f 
+ 00012665  0x0000054f store  0x00000001 , 0x0000000e 
+ 00012666  0x00000550 call  0x0000348d 
+ 00012667  0x00000552 call  0x00003337 
+ 00012668  0x00000553 branch  0x00003180 , 0x00000018 
+ 00012669  0x00000554 call  0x000034b0 
+ 00012670  0x00000555 nbranch  0x0000317b , 0x00000034 
+ 00012671  0x00000556 branch  0x00003115 
+ 00012672  0x00000559 set0  0x00000025 , 0x00000000 
+ 00012673  0x0000055a bpatch  0x0000001d , 0x00004003 
+ 00012674  0x0000055b fetch  0x00000001 , 0x00000030 
+ 00012675  0x0000055c set0  0x00000003 , 0x0000003f 
+ 00012676  0x0000055d store  0x00000001 , 0x00000030 
+ 00012677  0x0000055e call  0x00003499 
+ 00012678  0x0000055f disable  0x00000029 
+ 00012679  0x00000560 rtn 
+ 00012680  0x00000564 set0  0x00000025 , 0x00000000 
+ 00012681  0x00000565 bpatch  0x0000001e , 0x00004003 
+ 00012682  0x00000566 enable  0x00000029 
+ 00012683  0x00000567 enable  0x00000030 
+ 00012684  0x00000568 call  0x0000321a 
+ 00012685  0x00000569 rtn  0x00000028 
+ 00012686  0x0000056a call  0x00003d42 
+ 00012687  0x0000056b call  0x00003aec 
+ 00012688  0x0000056c add  0x00000022 , 0x00000001 , 0x00000021 
+ 00012689  0x0000056d call  0x00003979 
+ 00012690  0x0000056e force  0x00000003 , 0x00000024 
+ 00012691  0x0000056f call  0x000068dc 
+ 00012692  0x00000570 call  0x000034e7 
+ 00012693  0x00000571 call  0x00003967 
+ 00012694  0x00000572 call  0x00003aee 
+ 00012695  0x00000573 call  0x00003af4 
+ 00012696  0x00000574 call  0x00003b05 
+ 00012697  0x00000575 call  0x000037ec 
+ 00012698  0x00000577 set0  0x00000025 , 0x00000000 
+ 00012699  0x00000578 bpatch  0x0000001f , 0x00004003 
+ 00012700  0x00000579 call  0x0000531f 
+ 00012701  0x0000057a call  0x00003328 
+ 00012702  0x0000057b nbranch  0x000031a4 , 0x0000002d 
+ 00012703  0x0000057c call  0x00003b2c 
+ 00012704  0x0000057d call  0x000037ac 
+ 00012705  0x0000057e fetch  0x00000001 , 0x0000000f 
+ 00012706  0x0000057f increase  0x00000001 , 0x0000003f 
+ 00012707  0x00000580 store  0x00000001 , 0x0000000f 
+ 00012708  0x00000582 set0  0x00000025 , 0x00000000 
+ 00012709  0x00000583 bpatch  0x00000020 , 0x00004004 
+ 00012710  0x00000584 call  0x000068c0 
+ 00012711  0x00000585 call  0x000031b0 
+ 00012712  0x00000586 nrtn  0x00000029 
+ 00012713  0x00000587 call  0x00003775 
+ 00012714  0x00000588 nbranch  0x000031ad , 0x00000034 
+ 00012715  0x0000058a disable  0x00000029 
+ 00012716  0x0000058b rtn 
+ 00012717  0x0000058e call  0x000034e7 
+ 00012718  0x0000058f call  0x0000331d 
+ 00012719  0x00000590 branch  0x0000319a 
+ 00012720  0x00000594 branch  0x000031b3 , 0x0000002d 
+ 00012721  0x00000595 call  0x00003b22 
+ 00012722  0x00000596 branch  0x000031c1 , 0x00000002 
+ 00012723  0x00000598 call  0x000031cd 
+ 00012724  0x00000599 nbranch  0x000031c1 , 0x00000028 
+ 00012725  0x0000059a fetch  0x00000001 , 0x0000004c 
+ 00012726  0x0000059b rtnbit0  0x00000004 
+ 00012727  0x0000059c rtnbit1  0x00000003 
+ 00012728  0x0000059d fetch  0x00000001 , 0x0000004b 
+ 00012729  0x0000059e rtnbit1  0x00000003 
+ 00012730  0x0000059f call  0x000031d6 
+ 00012731  0x000005a0 nrtn  0x00000034 
+ 00012732  0x000005a1 fetch  0x00000001 , 0x0000016d 
+ 00012733  0x000005a2 increase  0xffffffff , 0x0000003f 
+ 00012734  0x000005a3 store  0x00000001 , 0x0000016d 
+ 00012735  0x000005a4 nrtn  0x00000034 
+ 00012736  0x000005a5 branch  0x0000561d 
+ 00012737  0x000005a8 set0  0x00000025 , 0x00000000 
+ 00012738  0x000005a9 bpatch  0x00000021 , 0x00004004 
+ 00012739  0x000005aa call  0x000034b8 
+ 00012740  0x000005ab disable  0x00000029 
+ 00012741  0x000005ac fetch  0x00000001 , 0x0000004c 
+ 00012742  0x000005ad bbit1  0x00000004 , 0x000031c8 
+ 00012743  0x000005ae rtn 
+ 00012744  0x000005b1 fetch  0x00000001 , 0x0000004c 
+ 00012745  0x000005b2 rtnbit1  0x00000003 
+ 00012746  0x000005b4 arg  0x00000100 , 0x00000005 
+ 00012747  0x000005b5 arg  0x00000008 , 0x00000039 
+ 00012748  0x000005b6 branch  0x00007e91 
+ 00012749  0x000005b9 set0  0x00000025 , 0x00000000 
+ 00012750  0x000005ba bpatch  0x00000022 , 0x00004004 
+ 00012751  0x000005bb enable  0x00000028 
+ 00012752  0x000005bc fetch  0x00000001 , 0x0000004b 
+ 00012753  0x000005bd rtnbit0  0x00000003 
+ 00012754  0x000005be call  0x000031d6 
+ 00012755  0x000005bf nrtn  0x00000034 
+ 00012756  0x000005c1 disable  0x00000028 
+ 00012757  0x000005c2 rtn 
+ 00012758  0x000005c5 fetch  0x00000001 , 0x00000072 
+ 00012759  0x000005c6 increase  0xffffffff , 0x0000003f 
+ 00012760  0x000005c7 store  0x00000001 , 0x00000072 
+ 00012761  0x000005c8 rtn 
+ 00012762  0x000005cb set0  0x00000025 , 0x00000000 
+ 00012763  0x000005cc bpatch  0x00000023 , 0x00004004 
+ 00012764  0x000005cd fetch  0x00000001 , 0x00000030 
+ 00012765  0x000005ce bbit1  0x00000007 , 0x000031e4 
+ 00012766  0x000005cf fetch  0x00000001 , 0x000008d9 
+ 00012767  0x000005d0 branch  0x000031e4 , 0x00000034 
+ 00012768  0x000005d1 jam  0x00000000 , 0x000008d9 
+ 00012769  0x000005d2 jam  0x00000018 , 0x000009bd 
+ 00012770  0x000005d3 call  0x00007d86 
+ 00012771  0x000005d4 branch  0x000031e4 
+ 00012772  0x000005d6 set0  0x00000025 , 0x00000000 
+ 00012773  0x000005d7 bpatch  0x00000024 , 0x00004004 
+ 00012774  0x000005d8 call  0x00003294 
+ 00012775  0x000005d9 fetch  0x00000001 , 0x00000030 
+ 00012776  0x000005da set1  0x00000007 , 0x0000003f 
+ 00012777  0x000005db store  0x00000001 , 0x00000030 
+ 00012778  0x000005dc jam  0x00000001 , 0x0000425d 
+ 00012779  0x000005dd fetch  0x00000001 , 0x00000055 
+ 00012780  0x000005de bne  0x00000016 , 0x000031ed 
+ 00012781  0x000005e0 rtn 
+ 00012782  0x000005e3 jam  0x00000001 , 0x000008d9 
+ 00012783  0x000005e5 fetch  0x00000001 , 0x00000030 
+ 00012784  0x000005e6 set0  0x00000007 , 0x0000003f 
+ 00012785  0x000005e7 store  0x00000001 , 0x00000030 
+ 00012786  0x000005e8 rtn 
+ 00012787  0x000005ed set0  0x00000025 , 0x00000000 
+ 00012788  0x000005ee bpatch  0x00000025 , 0x00004004 
+ 00012789  0x000005ef disable  0x00000028 
+ 00012790  0x000005f0 fetch  0x00000001 , 0x00000030 
+ 00012791  0x000005f1 rtnbit0  0x00000001 
+ 00012792  0x000005f2 fetch  0x00000002 , 0x00000032 
+ 00012793  0x000005f3 nrtn  0x00000034 
+ 00012794  0x000005f4 fetch  0x00000004 , 0x00000034 
+ 00012795  0x000005f5 branch  0x000031fe , 0x00000030 
+ 00012796  0x000005f6 isub  0x00000028 , 0x0000003f 
+ 00012797  0x000005f7 branch  0x000031ff 
+ 00012798  0x000005f9 isub  0x00000022 , 0x0000003f 
+ 00012799  0x000005fb sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00012800  0x000005fc nrtn  0x00000002 
+ 00012801  0x000005fd fetch  0x00000001 , 0x00000030 
+ 00012802  0x000005fe set0  0x00000001 , 0x0000003f 
+ 00012803  0x000005ff store  0x00000001 , 0x00000030 
+ 00012804  0x00000600 enable  0x00000028 
+ 00012805  0x00000601 rtn 
+ 00012806  0x00000605 copy  0x0000003f , 0x00000002 
+ 00012807  0x00000606 set0  0x00000025 , 0x00000000 
+ 00012808  0x00000607 bpatch  0x00000026 , 0x00004004 
+ 00012809  0x00000608 store  0x00000004 , 0x00000034 
+ 00012810  0x0000060a jam  0x00000001 , 0x000045f4 
+ 00012811  0x0000060b fetch  0x00000001 , 0x00000030 
+ 00012812  0x0000060c set1  0x00000001 , 0x0000003f 
+ 00012813  0x0000060d store  0x00000001 , 0x00000030 
+ 00012814  0x0000060e force  0x00000000 , 0x0000003f 
+ 00012815  0x0000060f store  0x00000002 , 0x00000032 
+ 00012816  0x00000610 jam  0x00000001 , 0x00000073 
+ 00012817  0x00000611 jam  0x00000000 , 0x00000074 
+ 00012818  0x00000612 jam  0x00000000 , 0x0000008b 
+ 00012819  0x00000613 fetch  0x00000004 , 0x00000034 
+ 00012820  0x00000614 copy  0x00000022 , 0x00000002 
+ 00012821  0x00000615 isub  0x00000002 , 0x0000003f 
+ 00012822  0x00000616 rshift2  0x0000003f , 0x0000003f 
+ 00012823  0x00000617 increase  0xfffffff8 , 0x0000003f 
+ 00012824  0x00000618 store  0x00000001 , 0x0000008a 
+ 00012825  0x00000619 rtn 
+ 00012826  0x0000061d set0  0x00000025 , 0x00000000 
+ 00012827  0x0000061e bpatch  0x00000027 , 0x00004004 
+ 00012828  0x0000061f call  0x000031f3 
+ 00012829  0x00000620 nrtn  0x00000028 
+ 00012830  0x00000621 disable  0x00000028 
+ 00012831  0x00000622 jam  0x00000020 , 0x00000011 
+ 00012832  0x00000623 set0  0x0000000b , 0x00000000 
+ 00012833  0x00000625 call  0x00003aec 
+ 00012834  0x00000626 call  0x0000332b 
+ 00012835  0x00000627 bmark1  0x0000000b , 0x0000322f 
+ 00012836  0x00000628 call  0x000034b0 
+ 00012837  0x00000629 nbranch  0x00003221 , 0x00000034 
+ 00012838  0x0000062b set0  0x00000025 , 0x00000000 
+ 00012839  0x0000062c bpatch  0x00000028 , 0x00004005 
+ 00012840  0x0000062d disable  0x00000028 
+ 00012841  0x0000062e deposit  0x00000022 
+ 00012842  0x0000062f store  0x00000004 , 0x0000416a 
+ 00012843  0x00000630 enable  0x00000030 
+ 00012844  0x00000631 enable  0x00000029 
+ 00012845  0x00000632 jam  0x0000002a , 0x000009bd 
+ 00012846  0x00000633 branch  0x00007d86 
+ 00012847  0x00000636 set0  0x00000025 , 0x00000000 
+ 00012848  0x00000637 bpatch  0x00000029 , 0x00004005 
+ 00012849  0x00000638 call  0x00003aea 
+ 00012850  0x00000639 call  0x00003320 
+ 00012851  0x0000063a disable  0x00000030 
+ 00012852  0x0000063b disable  0x00000029 
+ 00012853  0x0000063c call  0x000038a7 
+ 00012854  0x0000063d call  0x0000348d 
+ 00012855  0x0000063f set0  0x00000025 , 0x00000000 
+ 00012856  0x00000640 bpatch  0x0000002a , 0x00004005 
+ 00012857  0x00000641 call  0x000034d9 
+ 00012858  0x00000642 branch  0x0000323e , 0x0000002d 
+ 00012859  0x00000643 call  0x000034b0 
+ 00012860  0x00000644 nbranch  0x00003237 , 0x00000034 
+ 00012861  0x00000645 branch  0x00003226 
+ 00012862  0x00000647 fetch  0x00000001 , 0x00000031 
+ 00012863  0x00000648 set0  0x00000001 , 0x0000003f 
+ 00012864  0x00000649 store  0x00000001 , 0x00000031 
+ 00012865  0x0000064a call  0x00003b2c 
+ 00012866  0x0000064b call  0x000038d1 
+ 00012867  0x0000064c enable  0x00000028 
+ 00012868  0x0000064d jam  0x0000002b , 0x000009bd 
+ 00012869  0x0000064e branch  0x00007d86 
+ 00012870  0x00000654 set0  0x00000025 , 0x00000000 
+ 00012871  0x00000655 bpatch  0x0000002b , 0x00004005 
+ 00012872  0x00000656 set1  0x00000009 , 0x00000000 
+ 00012873  0x00000657 deposit  0x00000011 
+ 00012874  0x00000658 store  0x00000002 , 0x0000001e 
+ 00012875  0x00000659 force  0x00000050 , 0x00000039 
+ 00012876  0x0000065a arg  0x00000362 , 0x00000005 
+ 00012877  0x0000065b add  0x00000011 , 0x00000001 , 0x00000006 
+ 00012878  0x0000065c ifetch  0x00000001 , 0x00000006 
+ 00012879  0x0000065d copy  0x00000011 , 0x00000006 
+ 00012880  0x0000065e bbit1  0x00000000 , 0x00007ecd 
+ 00012881  0x0000065f arg  0x00000030 , 0x00000005 
+ 00012882  0x00000660 call  0x00007ecd 
+ 00012883  0x00000661 disable  0x0000002e 
+ 00012884  0x00000662 fetch  0x00000001 , 0x00000077 
+ 00012885  0x00000663 iforce  0x00000004 
+ 00012886  0x00000664 jam  0x00000001 , 0x0000008a 
+ 00012887  0x00000665 branch  0x00003259 , 0x00000029 
+ 00012888  0x00000666 jam  0x00000001 , 0x0000008a 
+ 00012889  0x00000668 fetch  0x00000001 , 0x00000030 
+ 00012890  0x00000669 rtnbit0  0x00000001 
+ 00012891  0x0000066a fetch  0x00000001 , 0x00000073 
+ 00012892  0x0000066b store  0x00000001 , 0x0000008a 
+ 00012893  0x0000066c fetch  0x00000001 , 0x00000074 
+ 00012894  0x0000066d store  0x00000001 , 0x0000008b 
+ 00012895  0x0000066e rtn 
+ 00012896  0x00000671 set0  0x00000025 , 0x00000000 
+ 00012897  0x00000672 bpatch  0x0000002c , 0x00004005 
+ 00012898  0x00000673 fetch  0x00000002 , 0x0000001e 
+ 00012899  0x00000674 iforce  0x00000005 
+ 00012900  0x00000675 force  0x00000050 , 0x00000039 
+ 00012901  0x00000676 arg  0x00000362 , 0x00000006 
+ 00012902  0x00000677 branch  0x00007ecd , 0x00000036 
+ 00012903  0x00000678 arg  0x00000030 , 0x00000006 
+ 00012904  0x00000679 branch  0x00007ecd 
+ 00012905  0x0000067e fetch  0x00000001 , 0x00004281 
+ 00012906  0x0000067f copy  0x0000003f , 0x00000039 
+ 00012907  0x00000680 fetcht  0x00000001 , 0x00000015 
+ 00012908  0x00000682 increase  0x00000001 , 0x00000002 
+ 00012909  0x00000683 compare  0x00000003 , 0x00000002 , 0x000000ff 
+ 00012910  0x00000684 nbranch  0x00003270 , 0x00000001 
+ 00012911  0x00000685 arg  0x00000000 , 0x00000002 
+ 00012912  0x00000687 storet  0x00000001 , 0x00000015 
+ 00012913  0x00000688 mul32  0x00000002 , 0x00000050 , 0x0000003f 
+ 00012914  0x00000689 arg  0x00004040 , 0x00000011 
+ 00012915  0x0000068a iadd  0x00000011 , 0x00000011 
+ 00012916  0x0000068b ifetch  0x00000001 , 0x00000011 
+ 00012917  0x0000068c bbit1  0x00000001 , 0x00003278 
+ 00012918  0x0000068d rtnbit1  0x00000000 
+ 00012919  0x0000068e rtnbit1  0x00000003 
+ 00012920  0x00000690 loop  0x0000326c 
+ 00012921  0x00000691 rtn 
+ 00012922  0x00000694 set0  0x00000025 , 0x00000000 
+ 00012923  0x00000695 bpatch  0x0000002d , 0x00004005 
+ 00012924  0x00000696 arg  0x000032ad , 0x00000013 
+ 00012925  0x00000697 call  0x000032a2 
+ 00012926  0x00000698 nrtn  0x00000005 
+ 00012927  0x00000699 deposit  0x00000011 
+ 00012928  0x0000069a store  0x00000002 , 0x0000001e 
+ 00012929  0x0000069b force  0x00000000 , 0x0000003e 
+ 00012930  0x0000069c rtn 
+ 00012931  0x000006a1 call  0x000037a9 
+ 00012932  0x000006a2 branch  0x0000328b , 0x00000001 
+ 00012933  0x000006a3 fetch  0x00000002 , 0x0000001e 
+ 00012934  0x000006a4 add  0x0000003f , 0x00000017 , 0x00000005 
+ 00012935  0x000006a5 fetch  0x00000001 , 0x00000047 
+ 00012936  0x000006a6 istore  0x00000001 , 0x00000005 
+ 00012937  0x000006a7 arg  0x000032ed , 0x00000013 
+ 00012938  0x000006a8 branch  0x000032a2 
+ 00012939  0x000006ab fetch  0x00000001 , 0x00000047 
+ 00012940  0x000006ac isolate1  0x00000003 , 0x0000003f 
+ 00012941  0x000006ad branch  0x00003290 , 0x00000001 
+ 00012942  0x000006ae force  0x00000001 , 0x0000003e 
+ 00012943  0x000006af rtn 
+ 00012944  0x000006b1 force  0x00000000 , 0x0000003e 
+ 00012945  0x000006b2 rtn 
+ 00012946  0x000006b6 arg  0x000032ea , 0x00000013 
+ 00012947  0x000006b7 branch  0x000032a2 
+ 00012948  0x000006ba fetcht  0x00000002 , 0x0000001e 
+ 00012949  0x000006bb arg  0x00003312 , 0x00000013 
+ 00012950  0x000006bc branch  0x000032a2 
+ 00012951  0x000006c1 fetcht  0x00000001 , 0x00004272 
+ 00012952  0x000006c3 arg  0x000032b8 , 0x00000013 
+ 00012953  0x000006c4 branch  0x000032a2 
+ 00012954  0x000006c7 set0  0x00000025 , 0x00000000 
+ 00012955  0x000006c8 bpatch  0x0000002e , 0x00004005 
+ 00012956  0x000006c9 fetcht  0x00000006 , 0x00004273 
+ 00012957  0x000006cb arg  0x000032b1 , 0x00000013 
+ 00012958  0x000006cc branch  0x000032a2 
+ 00012959  0x000006cf arg  0x000032be , 0x00000013 
+ 00012960  0x000006d0 branch  0x000032a2 
+ 00012961  0x000006d3 arg  0x00003309 , 0x00000013 
+ 00012962  0x000006d5 set0  0x00000025 , 0x00000000 
+ 00012963  0x000006d6 bpatch  0x0000002f , 0x00004005 
+ 00012964  0x000006d7 arg  0x00004040 , 0x00000011 
+ 00012965  0x000006d8 fetch  0x00000001 , 0x00004281 
+ 00012966  0x000006d9 copy  0x0000003f , 0x00000039 
+ 00012967  0x000006db ifetch  0x00000001 , 0x00000011 
+ 00012968  0x000006dc copy  0x00000013 , 0x0000003d 
+ 00012969  0x000006de increase  0x00000050 , 0x00000011 
+ 00012970  0x000006df loop  0x000032a7 
+ 00012971  0x000006e0 force  0x00000001 , 0x0000003e 
+ 00012972  0x000006e1 rtn 
+ 00012973  0x000006e4 bbit1  0x00000000 , 0x000032a9 
+ 00012974  0x000006e5 bbit1  0x00000003 , 0x000032a9 
+ 00012975  0x000006e6 force  0x00000000 , 0x0000003e 
+ 00012976  0x000006e7 rtn 
+ 00012977  0x000006ea bbit1  0x00000003 , 0x000032b3 
+ 00012978  0x000006eb bbit0  0x00000000 , 0x000032a9 
+ 00012979  0x000006ed add  0x00000011 , 0x00000010 , 0x00000006 
+ 00012980  0x000006ee ifetch  0x00000006 , 0x00000006 
+ 00012981  0x000006ef isub  0x00000002 , 0x0000003e 
+ 00012982  0x000006f0 rtn  0x00000005 
+ 00012983  0x000006f1 branch  0x000032a9 
+ 00012984  0x000006f4 bbit0  0x00000000 , 0x000032a9 
+ 00012985  0x000006f5 add  0x00000011 , 0x00000016 , 0x00000006 
+ 00012986  0x000006f6 ifetch  0x00000001 , 0x00000006 
+ 00012987  0x000006f7 isub  0x00000002 , 0x0000003e 
+ 00012988  0x000006f8 rtn  0x00000005 
+ 00012989  0x000006f9 branch  0x000032a9 
+ 00012990  0x000006fc bbit0  0x00000001 , 0x000032a9 
+ 00012991  0x000006fe call  0x000032f6 
+ 00012992  0x000006ff call  0x000032da 
+ 00012993  0x00000700 isub  0x00000002 , 0x0000003f 
+ 00012994  0x00000701 increase  0x00000001 , 0x0000003f 
+ 00012995  0x00000702 branch  0x000032d4 , 0x00000002 
+ 00012996  0x00000703 copy  0x00000006 , 0x00000012 
+ 00012997  0x00000704 store  0x00000009 , 0x000009c6 
+ 00012998  0x00000705 fetch  0x00000001 , 0x00004565 
+ 00012999  0x00000706 nbranch  0x000032cc , 0x00000034 
+ 00013000  0x00000707 fetch  0x00000009 , 0x000009c6 
+ 00013001  0x00000708 copy  0x00000012 , 0x00000006 
+ 00013002  0x00000709 increase  0x00000005 , 0x0000003f 
+ 00013003  0x0000070a branch  0x000032cf 
+ 00013004  0x0000070c fetch  0x00000009 , 0x000009c6 
+ 00013005  0x0000070d copy  0x00000012 , 0x00000006 
+ 00013006  0x0000070e increase  0x00000014 , 0x0000003f 
+ 00013007  0x00000710 nbranch  0x000032a9 , 0x00000002 
+ 00013008  0x00000712 copy  0x00000002 , 0x00000021 
+ 00013009  0x00000713 call  0x00003302 
+ 00013010  0x00000714 force  0x00000000 , 0x0000003e 
+ 00013011  0x00000715 rtn 
+ 00013012  0x00000719 iforce  0x00000012 
+ 00013013  0x0000071a add  0x00000011 , 0x00000002 , 0x00000006 
+ 00013014  0x0000071b ifetch  0x00000002 , 0x00000006 
+ 00013015  0x0000071c branch  0x000032d0 , 0x00000034 
+ 00013016  0x0000071d call  0x00003302 
+ 00013017  0x0000071e branch  0x000032bf 
+ 00013018  0x00000721 rshift16  0x0000003f , 0x0000000b 
+ 00013019  0x00000722 rshift8  0x0000000b , 0x0000000b 
+ 00013020  0x00000723 branch  0x000032e4 , 0x00000005 
+ 00013021  0x00000724 compare  0x0000000f , 0x0000000b , 0x0000000f 
+ 00013022  0x00000725 nrtn  0x00000001 
+ 00013023  0x00000726 rshift16  0x00000002 , 0x0000000b 
+ 00013024  0x00000727 rshift8  0x0000000b , 0x0000000b 
+ 00013025  0x00000728 nrtn  0x00000005 
+ 00013026  0x00000729 set1  0x0000001c , 0x00000002 
+ 00013027  0x0000072a rtn 
+ 00013028  0x0000072c rshift16  0x00000002 , 0x0000000b 
+ 00013029  0x0000072d rshift8  0x0000000b , 0x0000000b 
+ 00013030  0x0000072e compare  0x0000000f , 0x0000000b , 0x0000000f 
+ 00013031  0x0000072f nrtn  0x00000001 
+ 00013032  0x00000730 set1  0x0000001c , 0x0000003f 
+ 00013033  0x00000731 rtn 
+ 00013034  0x00000734 bbit0  0x00000000 , 0x000032a9 
+ 00013035  0x00000735 force  0x00000000 , 0x0000003e 
+ 00013036  0x00000736 rtn 
+ 00013037  0x00000739 bbit0  0x00000000 , 0x000032a9 
+ 00013038  0x0000073a add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013039  0x0000073b ifetch  0x00000001 , 0x00000006 
+ 00013040  0x0000073c bbit1  0x00000000 , 0x000032a9 
+ 00013041  0x0000073d add  0x00000011 , 0x00000017 , 0x00000006 
+ 00013042  0x0000073e ifetch  0x00000001 , 0x00000006 
+ 00013043  0x0000073f bbit0  0x00000003 , 0x000032a9 
+ 00013044  0x00000740 force  0x00000000 , 0x0000003e 
+ 00013045  0x00000741 rtn 
+ 00013046  0x00000744 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013047  0x00000745 ifetcht  0x00000001 , 0x00000006 
+ 00013048  0x00000746 deposit  0x00000022 
+ 00013049  0x00000747 isolate1  0x00000001 , 0x00000002 
+ 00013050  0x00000748 add  0x00000011 , 0x00000004 , 0x00000006 
+ 00013051  0x00000749 ifetcht  0x00000004 , 0x00000006 
+ 00013052  0x0000074a rtn  0x00000001 
+ 00013053  0x0000074b add  0x00000011 , 0x00000008 , 0x00000006 
+ 00013054  0x0000074c ifetch  0x00000006 , 0x00000006 
+ 00013055  0x0000074d call  0x000038e5 
+ 00013056  0x0000074e deposit  0x00000028 
+ 00013057  0x0000074f rtn 
+ 00013058  0x00000752 add  0x00000011 , 0x00000002 , 0x00000006 
+ 00013059  0x00000753 add  0x00000011 , 0x00000004 , 0x00000005 
+ 00013060  0x00000754 ifetch  0x00000002 , 0x00000006 
+ 00013061  0x00000755 iadd  0x00000002 , 0x0000000b 
+ 00013062  0x00000756 deposit  0x0000000b 
+ 00013063  0x00000757 istore  0x00000004 , 0x00000005 
+ 00013064  0x00000758 branch  0x000049dc 
+ 00013065  0x0000075c bbit0  0x00000001 , 0x000032a9 
+ 00013066  0x0000075d call  0x000032f6 
+ 00013067  0x0000075e iadd  0x0000001b , 0x0000003f 
+ 00013068  0x0000075f iadd  0x0000001b , 0x0000003f 
+ 00013069  0x00000760 iadd  0x00000007 , 0x0000003f 
+ 00013070  0x00000761 isub  0x00000002 , 0x0000003e 
+ 00013071  0x00000762 nbranch  0x000032a9 , 0x00000002 
+ 00013072  0x00000763 force  0x00000000 , 0x0000003e 
+ 00013073  0x00000764 rtn 
+ 00013074  0x00000767 bbit0  0x00000000 , 0x000032a9 
+ 00013075  0x00000768 deposit  0x00000002 
+ 00013076  0x00000769 isub  0x00000011 , 0x0000003e 
+ 00013077  0x0000076a branch  0x000032a9 , 0x0000003e 
+ 00013078  0x0000076b add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013079  0x0000076c ifetch  0x00000001 , 0x00000006 
+ 00013080  0x0000076d bbit1  0x00000000 , 0x000032a9 
+ 00013081  0x0000076e ifetch  0x00000001 , 0x00000011 
+ 00013082  0x0000076f set0  0x00000007 , 0x0000003f 
+ 00013083  0x00000770 istore  0x00000001 , 0x00000011 
+ 00013084  0x00000771 branch  0x000032a9 
+ 00013085  0x00000775 set0  0x00000025 , 0x00000000 
+ 00013086  0x00000776 bpatch  0x00000030 , 0x00004006 
+ 00013087  0x00000777 call  0x00003aec 
+ 00013088  0x00000779 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013089  0x0000077a call  0x00003979 
+ 00013090  0x0000077b force  0x00000003 , 0x00000024 
+ 00013091  0x0000077c call  0x00003967 
+ 00013092  0x0000077d call  0x00003aee 
+ 00013093  0x0000077e call  0x00003af4 
+ 00013094  0x0000077f call  0x00003b05 
+ 00013095  0x00000780 branch  0x000037ec 
+ 00013096  0x00000783 set0  0x00000025 , 0x00000000 
+ 00013097  0x00000784 bpatch  0x00000031 , 0x00004006 
+ 00013098  0x00000785 call  0x00003aea 
+ 00013099  0x00000787 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013100  0x00000788 call  0x00003979 
+ 00013101  0x00000789 force  0x00000003 , 0x00000024 
+ 00013102  0x0000078a call  0x00003960 
+ 00013103  0x0000078b call  0x00003481 
+ 00013104  0x0000078c call  0x00003a86 
+ 00013105  0x0000078d call  0x00003afa 
+ 00013106  0x0000078e call  0x00003a7f 
+ 00013107  0x00000790 call  0x00003aa3 
+ 00013108  0x00000791 nrtn  0x00000018 
+ 00013109  0x00000792 call  0x00003a50 
+ 00013110  0x00000793 branch  0x00003582 
+ 00013111  0x00000798 set0  0x00000025 , 0x00000000 
+ 00013112  0x00000799 bpatch  0x00000032 , 0x00004006 
+ 00013113  0x0000079a fetch  0x00000001 , 0x00000180 
+ 00013114  0x0000079b iforce  0x00000004 
+ 00013115  0x0000079c force  0x00000001 , 0x00000001 
+ 00013116  0x0000079d call  0x0000331d 
+ 00013117  0x0000079e branch  0x00003328 
+ 00013118  0x000007aa fetch  0x00000001 , 0x00004133 
+ 00013119  0x000007ab rtnbit0  0x00000000 
+ 00013120  0x000007ac force  0x00000005 , 0x00000007 
+ 00013121  0x000007ad call  0x00007ee2 
+ 00013122  0x000007ae nrtn  0x00000034 
+ 00013123  0x000007af fetcht  0x00000002 , 0x0000414d 
+ 00013124  0x000007b0 force  0x00000004 , 0x00000007 
+ 00013125  0x000007b1 call  0x0000379f 
+ 00013126  0x000007b2 rtn  0x00000028 
+ 00013127  0x000007b3 call  0x0000334e 
+ 00013128  0x000007b4 force  0x00000005 , 0x00000007 
+ 00013129  0x000007b5 fetch  0x00000002 , 0x0000414f 
+ 00013130  0x000007b6 nbranch  0x00007ed4 , 0x00000018 
+ 00013131  0x000007b7 random  0x0000003f 
+ 00013132  0x000007b8 iand  0x00000035 , 0x0000003f 
+ 00013133  0x000007b9 branch  0x00007ed4 
+ 00013134  0x000007bd set0  0x00000025 , 0x00000000 
+ 00013135  0x000007be bpatch  0x00000033 , 0x00004006 
+ 00013136  0x000007bf jam  0x00000000 , 0x00000180 
+ 00013137  0x000007c0 disable  0x00000030 
+ 00013138  0x000007c1 disable  0x0000002e 
+ 00013139  0x000007c2 call  0x00003937 
+ 00013140  0x000007c3 and  0x00000022 , 0x000001fc , 0x00000021 
+ 00013141  0x000007c4 force  0x00000001 , 0x00000024 
+ 00013142  0x000007c5 call  0x0000396e 
+ 00013143  0x000007c6 call  0x00003960 
+ 00013144  0x000007c7 setflip  0x0000001d , 0x00000000 
+ 00013145  0x000007c8 fetch  0x00000001 , 0x00000006 
+ 00013146  0x000007c9 increase  0x00000001 , 0x0000003f 
+ 00013147  0x000007ca store  0x00000001 , 0x00000006 
+ 00013148  0x000007cb call  0x0000398b 
+ 00013149  0x000007cc call  0x00003a7f 
+ 00013150  0x000007cd call  0x00003aab 
+ 00013151  0x000007ce nrtn  0x00000018 
+ 00013152  0x000007cf set0  0x00000025 , 0x00000000 
+ 00013153  0x000007d0 bpatch  0x00000034 , 0x00004006 
+ 00013154  0x000007d1 force  0x00000000 , 0x0000001b 
+ 00013155  0x000007d2 call  0x00003992 
+ 00013156  0x000007d3 fetch  0x00000001 , 0x00000007 
+ 00013157  0x000007d4 increase  0x00000001 , 0x0000003f 
+ 00013158  0x000007d5 store  0x00000001 , 0x00000007 
+ 00013159  0x000007d6 call  0x0000396e 
+ 00013160  0x000007d7 call  0x00003aea 
+ 00013161  0x000007d8 or_into  0x00000002 , 0x00000021 
+ 00013162  0x000007d9 force  0x00000001 , 0x00000024 
+ 00013163  0x000007da call  0x00003967 
+ 00013164  0x000007db call  0x0000398b 
+ 00013165  0x000007dc call  0x00003aee 
+ 00013166  0x000007dd call  0x00003aff 
+ 00013167  0x000007de deposit  0x00000022 
+ 00013168  0x000007df store  0x00000004 , 0x00000160 
+ 00013169  0x000007e0 call  0x00003b05 
+ 00013170  0x000007e1 force  0x00000002 , 0x00000001 
+ 00013171  0x000007e2 force  0x00000000 , 0x00000004 
+ 00013172  0x000007e3 call  0x00003b0d 
+ 00013173  0x000007e4 call  0x000037ee 
+ 00013174  0x000007e5 call  0x0000337a 
+ 00013175  0x000007e6 and_into  0x000001fd , 0x00000021 
+ 00013176  0x000007e7 increase  0x00000001 , 0x00000026 
+ 00013177  0x000007e8 rtn 
+ 00013178  0x000007eb set0  0x00000025 , 0x00000000 
+ 00013179  0x000007ec bpatch  0x00000035 , 0x00004006 
+ 00013180  0x000007ed fetch  0x00000001 , 0x00004171 
+ 00013181  0x000007ee rtn  0x00000034 
+ 00013182  0x000007ef arg  0x000001b1 , 0x00000005 
+ 00013183  0x000007f0 fetch  0x00000001 , 0x000045ae 
+ 00013184  0x000007f1 copy  0x0000003f , 0x00000039 
+ 00013185  0x000007f2 increase  0x00000001 , 0x0000003f 
+ 00013186  0x000007f3 istore  0x00000001 , 0x00000005 
+ 00013187  0x000007f4 copy  0x00000005 , 0x00000002 
+ 00013188  0x000007f5 increase  0x00000001 , 0x0000003f 
+ 00013189  0x000007f6 store  0x00000002 , 0x0000427e 
+ 00013190  0x000007f7 copy  0x00000002 , 0x00000005 
+ 00013191  0x000007f8 setarg  0x00000009 
+ 00013192  0x000007f9 istore  0x00000001 , 0x00000005 
+ 00013193  0x000007fa arg  0x000045af , 0x00000006 
+ 00013194  0x000007fb call  0x00007ecd 
+ 00013195  0x000007fd arg  0x00004625 , 0x00000013 
+ 00013196  0x000007fe arg  0x00000004 , 0x00000039 
+ 00013197  0x000007ff call  0x0000339d 
+ 00013198  0x00000800 arg  0x0000460f , 0x00000013 
+ 00013199  0x00000801 arg  0x00000001 , 0x00000039 
+ 00013200  0x00000802 call  0x0000339d 
+ 00013201  0x00000804 force  0x0000000a , 0x00000001 
+ 00013202  0x00000805 jam  0x00000002 , 0x0000427d 
+ 00013203  0x00000806 setarg  0x000001b1 
+ 00013204  0x00000807 store  0x00000002 , 0x0000016e 
+ 00013205  0x00000808 call  0x00003aea 
+ 00013206  0x00000809 call  0x00003967 
+ 00013207  0x0000080a call  0x00003aee 
+ 00013208  0x0000080b call  0x00003aff 
+ 00013209  0x0000080c call  0x00003b05 
+ 00013210  0x0000080d call  0x00003b0d 
+ 00013211  0x0000080e call  0x000037ee 
+ 00013212  0x0000080f rtn 
+ 00013213  0x00000813 copy  0x00000005 , 0x00000002 
+ 00013214  0x00000814 copy  0x00000013 , 0x00000006 
+ 00013215  0x00000815 ifetch  0x00000001 , 0x00000006 
+ 00013216  0x00000816 rtn  0x00000034 
+ 00013217  0x00000818 lshift  0x0000003f , 0x0000003f 
+ 00013218  0x00000819 loop  0x000033a1 
+ 00013219  0x0000081a copy  0x0000003f , 0x00000011 
+ 00013220  0x0000081b increase  0x00000002 , 0x0000003f 
+ 00013221  0x0000081c copy  0x0000003f , 0x00000007 
+ 00013222  0x0000081d fetch  0x00000002 , 0x0000427e 
+ 00013223  0x0000081e iadd  0x00000007 , 0x0000003f 
+ 00013224  0x0000081f store  0x00000002 , 0x0000427e 
+ 00013225  0x00000820 copy  0x00000002 , 0x00000005 
+ 00013226  0x00000821 copy  0x00000011 , 0x0000003f 
+ 00013227  0x00000822 increase  0x00000001 , 0x0000003f 
+ 00013228  0x00000823 istore  0x00000001 , 0x00000005 
+ 00013229  0x00000824 copy  0x00000013 , 0x00000006 
+ 00013230  0x00000825 ifetch  0x00000001 , 0x00000006 
+ 00013231  0x00000826 ifetch  0x00000001 , 0x00000006 
+ 00013232  0x00000827 istore  0x00000001 , 0x00000005 
+ 00013233  0x00000828 copy  0x00000011 , 0x00000039 
+ 00013234  0x00000829 branch  0x00007ecd 
+ 00013235  0x00000830 fetch  0x00000001 , 0x00004133 
+ 00013236  0x00000831 rtnbit0  0x00000001 
+ 00013237  0x00000832 force  0x00000006 , 0x00000007 
+ 00013238  0x00000833 call  0x00007ee2 
+ 00013239  0x00000834 nrtn  0x00000034 
+ 00013240  0x00000835 fetcht  0x00000002 , 0x00004151 
+ 00013241  0x00000836 force  0x00000028 , 0x00000007 
+ 00013242  0x00000837 call  0x0000379f 
+ 00013243  0x00000838 rtn  0x00000028 
+ 00013244  0x00000839 force  0x00000000 , 0x00000004 
+ 00013245  0x0000083a jam  0x00000008 , 0x00000010 
+ 00013246  0x0000083b set0  0x0000000b , 0x00000000 
+ 00013247  0x0000083c call  0x000033c3 
+ 00013248  0x0000083d force  0x00000006 , 0x00000007 
+ 00013249  0x0000083e fetch  0x00000002 , 0x00004153 
+ 00013250  0x0000083f branch  0x00007ed4 
+ 00013251  0x00000843 set0  0x00000025 , 0x00000000 
+ 00013252  0x00000844 bpatch  0x00000036 , 0x00004006 
+ 00013253  0x00000845 disable  0x00000030 
+ 00013254  0x00000846 call  0x00003937 
+ 00013255  0x00000847 fetch  0x00000001 , 0x00000008 
+ 00013256  0x00000848 increase  0x00000001 , 0x0000003f 
+ 00013257  0x00000849 store  0x00000001 , 0x00000008 
+ 00013258  0x0000084a force  0x00000000 , 0x00000026 
+ 00013259  0x0000084b call  0x00003979 
+ 00013260  0x0000084c add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013261  0x0000084d force  0x00000002 , 0x00000024 
+ 00013262  0x0000084e set0  0x00000025 , 0x00000000 
+ 00013263  0x0000084f bpatch  0x00000037 , 0x00004006 
+ 00013264  0x00000850 call  0x00003960 
+ 00013265  0x00000851 call  0x00003a7f 
+ 00013266  0x00000852 call  0x00003aab 
+ 00013267  0x00000853 nrtn  0x00000018 
+ 00013268  0x00000854 call  0x00003992 
+ 00013269  0x00000855 fetch  0x00000001 , 0x00000009 
+ 00013270  0x00000856 increase  0x00000001 , 0x0000003f 
+ 00013271  0x00000857 store  0x00000001 , 0x00000009 
+ 00013272  0x00000858 force  0x00000000 , 0x0000001b 
+ 00013273  0x00000859 call  0x00003aea 
+ 00013274  0x0000085a or_into  0x00000002 , 0x00000021 
+ 00013275  0x0000085b force  0x00000001 , 0x00000024 
+ 00013276  0x0000085c call  0x00003967 
+ 00013277  0x0000085d call  0x00003aee 
+ 00013278  0x0000085e call  0x00003aff 
+ 00013279  0x0000085f call  0x00003b05 
+ 00013280  0x00000860 call  0x000036c6 
+ 00013281  0x00000861 force  0x00000000 , 0x00000004 
+ 00013282  0x00000862 arg  0x00000600 , 0x0000000b 
+ 00013283  0x00000863 until  0x00000029 , 0x00000026 
+ 00013284  0x00000864 or_into  0x00000003 , 0x00000028 
+ 00013285  0x00000865 and_into  0x000001fd , 0x00000021 
+ 00013286  0x00000867 set0  0x00000025 , 0x00000000 
+ 00013287  0x00000868 bpatch  0x00000038 , 0x00004007 
+ 00013288  0x00000869 increase  0x00000001 , 0x00000026 
+ 00013289  0x0000086a call  0x00003960 
+ 00013290  0x0000086b call  0x00003a7f 
+ 00013291  0x0000086c call  0x00003a9d 
+ 00013292  0x0000086d nbranch  0x000033f0 , 0x00000018 
+ 00013293  0x0000086e call  0x00003b0d 
+ 00013294  0x0000086f call  0x00003584 
+ 00013295  0x00000870 bmark1  0x0000000b , 0x000033f8 
+ 00013296  0x00000872 set0  0x00000025 , 0x00000000 
+ 00013297  0x00000873 bpatch  0x00000039 , 0x00004007 
+ 00013298  0x00000874 fetch  0x00000001 , 0x00000010 
+ 00013299  0x00000875 rtn  0x00000034 
+ 00013300  0x00000876 increase  0xffffffff , 0x0000003f 
+ 00013301  0x00000877 store  0x00000001 , 0x00000010 
+ 00013302  0x00000878 call  0x00003aec 
+ 00013303  0x00000879 branch  0x000033e6 
+ 00013304  0x0000087d set0  0x00000025 , 0x00000000 
+ 00013305  0x0000087e bpatch  0x0000003a , 0x00004007 
+ 00013306  0x0000087f set0  0x00000001 , 0x00000028 
+ 00013307  0x00000880 set1  0x00000000 , 0x00000028 
+ 00013308  0x00000881 fetch  0x00000001 , 0x0000000a 
+ 00013309  0x00000882 increase  0x00000001 , 0x0000003f 
+ 00013310  0x00000883 store  0x00000001 , 0x0000000a 
+ 00013311  0x00000884 call  0x00003aea 
+ 00013312  0x00000885 or_into  0x00000002 , 0x00000021 
+ 00013313  0x00000886 call  0x00003967 
+ 00013314  0x00000887 call  0x00003aee 
+ 00013315  0x00000888 call  0x00003aff 
+ 00013316  0x00000889 call  0x00003b05 
+ 00013317  0x0000088a call  0x000036c6 
+ 00013318  0x0000088c compare  0x00000003 , 0x00000028 , 0x00000003 
+ 00013319  0x0000088d branch  0x0000340a , 0x00000001 
+ 00013320  0x0000088e until  0x0000003e , 0x00000017 
+ 00013321  0x0000088f branch  0x00003406 
+ 00013322  0x00000891 fetch  0x00000004 , 0x00000164 
+ 00013323  0x00000892 or_into  0x00000003 , 0x0000003f 
+ 00013324  0x00000893 icopy  0x00000028 
+ 00013325  0x00000896 set0  0x00000025 , 0x00000000 
+ 00013326  0x00000897 bpatch  0x0000003b , 0x00004007 
+ 00013327  0x00000898 fetch  0x00000006 , 0x00000177 
+ 00013328  0x00000899 store  0x00000006 , 0x00000040 
+ 00013329  0x0000089a call  0x0000348d 
+ 00013330  0x0000089c call  0x000034d9 
+ 00013331  0x0000089d branch  0x00003417 , 0x0000002d 
+ 00013332  0x0000089e call  0x000034b0 
+ 00013333  0x0000089f nbranch  0x00003412 , 0x00000034 
+ 00013334  0x000008a0 rtn 
+ 00013335  0x000008a4 set0  0x00000025 , 0x00000000 
+ 00013336  0x000008a5 bpatch  0x0000003c , 0x00004007 
+ 00013337  0x000008a6 call  0x00003499 
+ 00013338  0x000008a7 call  0x0000327a 
+ 00013339  0x000008a8 nrtn  0x00000005 
+ 00013340  0x000008a9 jam  0x00000000 , 0x00000031 
+ 00013341  0x000008aa call  0x000038d1 
+ 00013342  0x000008ab branch  0x00003260 
+ 00013343  0x000008af set0  0x00000025 , 0x00000000 
+ 00013344  0x000008b0 bpatch  0x0000003d , 0x00004007 
+ 00013345  0x000008b1 call  0x000038e1 
+ 00013346  0x000008b2 call  0x00003447 
+ 00013347  0x000008b3 rtn  0x00000028 
+ 00013348  0x000008b5 set0  0x00000025 , 0x00000000 
+ 00013349  0x000008b6 bpatch  0x0000003e , 0x00004007 
+ 00013350  0x000008b7 call  0x00003d42 
+ 00013351  0x000008b8 call  0x000068c0 
+ 00013352  0x000008b9 call  0x00003579 
+ 00013353  0x000008ba nbranch  0x00003434 , 0x0000002d 
+ 00013354  0x000008bb call  0x00003b2c 
+ 00013355  0x000008bc call  0x000068dc 
+ 00013356  0x000008bd call  0x000034e7 
+ 00013357  0x000008be call  0x000037de 
+ 00013358  0x000008bf call  0x000037ac 
+ 00013359  0x000008c0 call  0x0000531f 
+ 00013360  0x000008c1 fetch  0x00000001 , 0x0000000b 
+ 00013361  0x000008c2 increase  0x00000001 , 0x0000003f 
+ 00013362  0x000008c3 store  0x00000001 , 0x0000000b 
+ 00013363  0x000008c4 call  0x000038d1 
+ 00013364  0x000008c6 set0  0x00000025 , 0x00000000 
+ 00013365  0x000008c7 bpatch  0x0000003f , 0x00004007 
+ 00013366  0x000008c8 call  0x00003ca0 
+ 00013367  0x000008c9 call  0x00003b22 
+ 00013368  0x000008ca branch  0x0000343e , 0x00000002 
+ 00013369  0x000008cb call  0x000031cd 
+ 00013370  0x000008cc nbranch  0x0000343e , 0x00000028 
+ 00013371  0x000008cd call  0x00003775 
+ 00013372  0x000008ce nbranch  0x00003424 , 0x00000034 
+ 00013373  0x000008cf rtn 
+ 00013374  0x000008d2 set0  0x00000025 , 0x00000000 
+ 00013375  0x000008d3 bpatch  0x00000040 , 0x00004008 
+ 00013376  0x000008d4 jam  0x00000000 , 0x00000150 
+ 00013377  0x000008d5 jam  0x00000000 , 0x0000017e 
+ 00013378  0x000008d6 call  0x000034b8 
+ 00013379  0x000008d7 set0  0x00000011 , 0x00000000 
+ 00013380  0x000008d8 call  0x00007f80 
+ 00013381  0x000008d9 fetch  0x00000001 , 0x00000030 
+ 00013382  0x000008da rtn 
+ 00013383  0x000008de set0  0x00000025 , 0x00000000 
+ 00013384  0x000008df bpatch  0x00000041 , 0x00004008 
+ 00013385  0x000008e0 call  0x000031f3 
+ 00013386  0x000008e1 nrtn  0x00000028 
+ 00013387  0x000008e2 copy  0x00000004 , 0x00000002 
+ 00013388  0x000008e3 call  0x00003b11 
+ 00013389  0x000008e4 store  0x00000001 , 0x00000180 
+ 00013390  0x000008e5 copy  0x00000002 , 0x00000004 
+ 00013391  0x000008e6 jam  0x00000020 , 0x00000011 
+ 00013392  0x000008e8 set0  0x00000025 , 0x00000000 
+ 00013393  0x000008e9 bpatch  0x00000042 , 0x00004008 
+ 00013394  0x000008ea call  0x00003aec 
+ 00013395  0x000008eb force  0x00000002 , 0x00000001 
+ 00013396  0x000008ec call  0x000037d5 
+ 00013397  0x000008ed deposit  0x00000022 
+ 00013398  0x000008ee store  0x00000004 , 0x00000160 
+ 00013399  0x000008ef call  0x000037ec 
+ 00013400  0x000008f0 call  0x00003aea 
+ 00013401  0x000008f1 enable  0x0000002f 
+ 00013402  0x000008f2 call  0x0000355a 
+ 00013403  0x000008f3 branch  0x00003463 , 0x00000018 
+ 00013404  0x000008f4 call  0x00003992 
+ 00013405  0x000008f5 call  0x000034b0 
+ 00013406  0x000008f6 nbranch  0x00003450 , 0x00000034 
+ 00013407  0x000008f7 rtnmark0  0x00000004 
+ 00013408  0x000008f8 jam  0x00000034 , 0x0000007c 
+ 00013409  0x000008f9 set1  0x00000003 , 0x00000000 
+ 00013410  0x000008fa rtn 
+ 00013411  0x000008fc enable  0x00000030 
+ 00013412  0x000008fd call  0x0000348d 
+ 00013413  0x000008fe call  0x00003937 
+ 00013414  0x00000900 set0  0x00000025 , 0x00000000 
+ 00013415  0x00000901 bpatch  0x00000043 , 0x00004008 
+ 00013416  0x00000902 call  0x00003337 
+ 00013417  0x00000903 branch  0x00003470 , 0x00000018 
+ 00013418  0x00000904 call  0x000034b0 
+ 00013419  0x00000905 nbranch  0x00003466 , 0x00000034 
+ 00013420  0x00000906 disable  0x00000030 
+ 00013421  0x00000907 deposit  0x00000028 
+ 00013422  0x00000908 store  0x00000004 , 0x0000416a 
+ 00013423  0x00000909 rtn 
+ 00013424  0x0000090b enable  0x00000029 
+ 00013425  0x0000090c bmark0  0x00000004 , 0x00003476 
+ 00013426  0x0000090d set0  0x00000004 , 0x00000000 
+ 00013427  0x0000090e jam  0x00000003 , 0x0000007c 
+ 00013428  0x0000090f jam  0x00000033 , 0x0000007d 
+ 00013429  0x00000910 call  0x00005903 
+ 00013430  0x00000912 deposit  0x00000004 
+ 00013431  0x00000913 store  0x00000001 , 0x00000077 
+ 00013432  0x00000914 force  0x00000000 , 0x0000003f 
+ 00013433  0x00000915 store  0x00000006 , 0x00000038 
+ 00013434  0x00000916 fetch  0x00000001 , 0x00000031 
+ 00013435  0x00000917 set1  0x00000001 , 0x0000003f 
+ 00013436  0x00000918 store  0x00000001 , 0x00000031 
+ 00013437  0x00000919 call  0x00003b2c 
+ 00013438  0x0000091a disable  0x00000029 
+ 00013439  0x0000091b enable  0x00000028 
+ 00013440  0x0000091c rtn 
+ 00013441  0x00000921 set0  0x00000025 , 0x00000000 
+ 00013442  0x00000922 bpatch  0x00000044 , 0x00004008 
+ 00013443  0x00000923 disable  0x0000002d 
+ 00013444  0x00000924 set0  0x00000005 , 0x00000000 
+ 00013445  0x00000925 set0  0x0000000a , 0x00000000 
+ 00013446  0x00000926 set0  0x00000010 , 0x00000000 
+ 00013447  0x00000927 set0  0x0000000f , 0x00000000 
+ 00013448  0x00000928 fetch  0x00000001 , 0x00000047 
+ 00013449  0x00000929 set0  0x00000005 , 0x0000003f 
+ 00013450  0x0000092a set1  0x00000004 , 0x0000003f 
+ 00013451  0x0000092b store  0x00000001 , 0x00000047 
+ 00013452  0x0000092c rtn 
+ 00013453  0x0000092f set0  0x00000025 , 0x00000000 
+ 00013454  0x00000930 bpatch  0x00000045 , 0x00004008 
+ 00013455  0x00000931 jam  0x00000020 , 0x00000011 
+ 00013456  0x00000932 jam  0x00000050 , 0x00000047 
+ 00013457  0x00000933 fetch  0x00000002 , 0x0000415f 
+ 00013458  0x00000934 store  0x00000002 , 0x0000003e 
+ 00013459  0x00000935 deposit  0x00000022 
+ 00013460  0x00000936 store  0x00000004 , 0x0000416a 
+ 00013461  0x00000937 rtn  0x00000030 
+ 00013462  0x00000938 deposit  0x00000028 
+ 00013463  0x00000939 store  0x00000004 , 0x0000416a 
+ 00013464  0x0000093a rtn 
+ 00013465  0x0000093d set0  0x00000025 , 0x00000000 
+ 00013466  0x0000093e bpatch  0x00000046 , 0x00004008 
+ 00013467  0x0000093f call  0x0000531b 
+ 00013468  0x00000940 call  0x000034b4 
+ 00013469  0x00000941 store  0x00000001 , 0x00000046 
+ 00013470  0x00000942 setarg  0x00000000 
+ 00013471  0x00000943 store  0x00000002 , 0x00000286 
+ 00013472  0x00000944 setarg  0x00001c80 
+ 00013473  0x00000945 store  0x00000002 , 0x00000051 
+ 00013474  0x00000946 fetch  0x00000001 , 0x00000030 
+ 00013475  0x00000947 set1  0x00000000 , 0x0000003f 
+ 00013476  0x00000948 store  0x00000001 , 0x00000030 
+ 00013477  0x00000949 jam  0x00000000 , 0x0000004b 
+ 00013478  0x0000094a jam  0x00000000 , 0x0000004c 
+ 00013479  0x0000094b jam  0x00000000 , 0x0000009f 
+ 00013480  0x0000094c branch  0x00003b2c 
+ 00013481  0x00000950 set0  0x00000025 , 0x00000000 
+ 00013482  0x00000951 bpatch  0x00000047 , 0x00004008 
+ 00013483  0x00000952 force  0x00000000 , 0x0000003f 
+ 00013484  0x00000953 store  0x00000008 , 0x00004261 
+ 00013485  0x00000954 istore  0x00000008 , 0x00000005 
+ 00013486  0x00000955 call  0x000031ef 
+ 00013487  0x00000956 branch  0x00003294 
+ 00013488  0x00000959 fetch  0x00000001 , 0x00000011 
+ 00013489  0x0000095a increase  0xffffffff , 0x0000003f 
+ 00013490  0x0000095b store  0x00000001 , 0x00000011 
+ 00013491  0x0000095c rtn 
+ 00013492  0x0000095f fetch  0x00000001 , 0x0000416f 
+ 00013493  0x00000960 increase  0x00000001 , 0x0000003f 
+ 00013494  0x00000961 store  0x00000001 , 0x0000416f 
+ 00013495  0x00000962 rtn 
+ 00013496  0x00000966 set0  0x00000025 , 0x00000000 
+ 00013497  0x00000967 bpatch  0x00000048 , 0x00004009 
+ 00013498  0x00000968 fetch  0x00000001 , 0x00004271 
+ 00013499  0x00000969 beq  0x00000003 , 0x000034be 
+ 00013500  0x0000096a fetch  0x00000001 , 0x00000048 
+ 00013501  0x0000096b bne  0x00000001 , 0x000034c2 
+ 00013502  0x0000096d call  0x00003f9d 
+ 00013503  0x0000096e nbranch  0x000034c2 , 0x00000005 
+ 00013504  0x0000096f call  0x000031ca 
+ 00013505  0x00000970 jam  0x00000000 , 0x00004271 
+ 00013506  0x00000972 set0  0x00000025 , 0x00000000 
+ 00013507  0x00000973 bpatch  0x00000049 , 0x00004009 
+ 00013508  0x00000974 call  0x00003e12 
+ 00013509  0x00000975 call  0x0000376a 
+ 00013510  0x00000976 jam  0x00000002 , 0x000009bd 
+ 00013511  0x00000977 call  0x00007d86 
+ 00013512  0x00000978 call  0x0000530d 
+ 00013513  0x00000979 call  0x000042eb 
+ 00013514  0x0000097a call  0x000075f4 
+ 00013515  0x0000097b fetch  0x00000001 , 0x00000030 
+ 00013516  0x0000097c set0  0x00000000 
+ 00013517  0x0000097d store  0x00000001 , 0x00000030 
+ 00013518  0x0000097e jam  0x00000000 , 0x0000470a 
+ 00013519  0x00000980 fetch  0x00000001 , 0x0000004c 
+ 00013520  0x00000981 compare  0x00000000 , 0x0000003f , 0x000000c0 
+ 00013521  0x00000982 branch  0x000034d3 , 0x00000001 
+ 00013522  0x00000983 set0  0x00000001 , 0x00000000 
+ 00013523  0x00000985 fetch  0x00000001 , 0x00000047 
+ 00013524  0x00000986 bbit0  0x00000003 , 0x000034d5 
+ 00013525  0x00000988 fetch  0x00000001 , 0x0000004b 
+ 00013526  0x00000989 rtnbit0  0x00000006 
+ 00013527  0x0000098a set0  0x00000002 , 0x00000000 
+ 00013528  0x0000098b rtn 
+ 00013529  0x0000098e set0  0x00000025 , 0x00000000 
+ 00013530  0x0000098f bpatch  0x0000004a , 0x00004009 
+ 00013531  0x00000990 fetch  0x00000001 , 0x00000173 
+ 00013532  0x00000991 rtn  0x00000034 
+ 00013533  0x00000992 icopy  0x00000004 
+ 00013534  0x00000993 call  0x00003579 
+ 00013535  0x00000994 nrtn  0x0000002d 
+ 00013536  0x00000995 force  0x00000000 , 0x00000001 
+ 00013537  0x00000996 call  0x000037de 
+ 00013538  0x00000997 deposit  0x00000004 
+ 00013539  0x00000998 store  0x00000001 , 0x00000077 
+ 00013540  0x00000999 force  0x00000000 , 0x0000003f 
+ 00013541  0x0000099a store  0x00000001 , 0x00000173 
+ 00013542  0x0000099b rtn 
+ 00013543  0x000009a2 set0  0x00000025 , 0x00000000 
+ 00013544  0x000009a3 bpatch  0x0000004b , 0x00004009 
+ 00013545  0x000009a4 fetch  0x00000001 , 0x00000030 
+ 00013546  0x000009a5 bbit0  0x00000002 , 0x000034f5 
+ 00013547  0x000009a6 force  0x00000007 , 0x00000001 
+ 00013548  0x000009a7 bmark0  0x00000007 , 0x000034f4 
+ 00013549  0x000009a8 call  0x000037a9 
+ 00013550  0x000009a9 nbranch  0x000034f5 , 0x00000001 
+ 00013551  0x000009aa branch  0x000034f5 , 0x0000002e 
+ 00013552  0x000009ab call  0x00003523 
+ 00013553  0x000009ac setarg  0x00000002 
+ 00013554  0x000009ad store  0x00000002 , 0x00004168 
+ 00013555  0x000009ae rtn 
+ 00013556  0x000009b0 nrtn  0x0000002e 
+ 00013557  0x000009b2 set0  0x00000025 , 0x00000000 
+ 00013558  0x000009b3 bpatch  0x0000004c , 0x00004009 
+ 00013559  0x000009b4 call  0x00003283 
+ 00013560  0x000009b5 nbranch  0x00003508 , 0x00000005 
+ 00013561  0x000009b6 fetch  0x00000001 , 0x00000047 
+ 00013562  0x000009b7 bbit0  0x00000003 , 0x00003511 
+ 00013563  0x000009b9 bmark1  0x00000005 , 0x00003515 
+ 00013564  0x000009ba fetch  0x00000001 , 0x0000017e 
+ 00013565  0x000009bb bbit1  0x00000006 , 0x0000351c 
+ 00013566  0x000009bc fetch  0x00000002 , 0x00004168 
+ 00013567  0x000009bd increase  0xffffffff , 0x0000003f 
+ 00013568  0x000009be store  0x00000002 , 0x00004168 
+ 00013569  0x000009bf branch  0x00003505 , 0x00000034 
+ 00013570  0x000009c0 fetch  0x00000001 , 0x00004165 
+ 00013571  0x000009c1 iforce  0x00000001 
+ 00013572  0x000009c2 rtn 
+ 00013573  0x000009c5 set0  0x00000025 , 0x00000000 
+ 00013574  0x000009c6 bpatch  0x0000004d , 0x00004009 
+ 00013575  0x000009c7 call  0x00003703 
+ 00013576  0x000009c9 call  0x000037a9 
+ 00013577  0x000009ca branch  0x00003511 , 0x00000001 
+ 00013578  0x000009cb call  0x00005621 
+ 00013579  0x000009cc branch  0x00003520 , 0x00000028 
+ 00013580  0x000009cd fetch  0x00000001 , 0x0000004b 
+ 00013581  0x000009ce bbit1  0x00000006 , 0x00003522 
+ 00013582  0x000009cf bmark1  0x00000005 , 0x00003515 
+ 00013583  0x000009d0 fetch  0x00000001 , 0x0000017e 
+ 00013584  0x000009d1 bbit1  0x00000006 , 0x0000351c 
+ 00013585  0x000009d3 force  0x00000001 , 0x00000001 
+ 00013586  0x000009d4 rtn  0x00000029 
+ 00013587  0x000009d5 force  0x00000000 , 0x00000001 
+ 00013588  0x000009d6 rtn 
+ 00013589  0x000009d8 set0  0x00000025 , 0x00000000 
+ 00013590  0x000009d9 bpatch  0x0000004e , 0x00004009 
+ 00013591  0x000009da fetch  0x00000001 , 0x00000019 
+ 00013592  0x000009db iforce  0x00000001 
+ 00013593  0x000009dc rtnne  0x00000001 
+ 00013594  0x000009dd force  0x00000000 , 0x00000001 
+ 00013595  0x000009de rtn 
+ 00013596  0x000009e0 fetch  0x00000001 , 0x00000157 
+ 00013597  0x000009e1 and  0x0000003f , 0x0000000f , 0x00000001 
+ 00013598  0x000009e2 set1  0x00000005 , 0x00000000 
+ 00013599  0x000009e3 rtn 
+ 00013600  0x000009e5 force  0x00000013 , 0x00000001 
+ 00013601  0x000009e6 branch  0x00003523 
+ 00013602  0x000009e8 call  0x0000352d 
+ 00013603  0x000009eb set0  0x00000025 , 0x00000000 
+ 00013604  0x000009ec bpatch  0x0000004f , 0x00004009 
+ 00013605  0x000009ed fetcht  0x00000001 , 0x00000047 
+ 00013606  0x000009ee set1  0x00000003 , 0x00000002 
+ 00013607  0x000009ef storet  0x00000001 , 0x00000047 
+ 00013608  0x000009f0 deposit  0x00000001 
+ 00013609  0x000009f1 store  0x00000001 , 0x00004165 
+ 00013610  0x000009f2 setarg  0x0000ffff 
+ 00013611  0x000009f3 store  0x00000002 , 0x00004168 
+ 00013612  0x000009f4 rtn 
+ 00013613  0x000009f7 set0  0x00000025 , 0x00000000 
+ 00013614  0x000009f8 bpatch  0x00000050 , 0x0000400a 
+ 00013615  0x000009f9 fetch  0x00000001 , 0x0000004c 
+ 00013616  0x000009fa isolate1  0x00000005 , 0x0000003f 
+ 00013617  0x000009fb fetch  0x00000002 , 0x0000427e 
+ 00013618  0x000009fc branch  0x00003544 , 0x00000001 
+ 00013619  0x000009fd force  0x00000003 , 0x00000001 
+ 00013620  0x000009fe sub  0x0000003f , 0x00000011 , 0x0000003e 
+ 00013621  0x000009ff rtn  0x00000002 
+ 00013622  0x00000a00 force  0x00000004 , 0x00000001 
+ 00013623  0x00000a01 sub  0x0000003f , 0x0000001b , 0x0000003e 
+ 00013624  0x00000a02 rtn  0x00000002 
+ 00013625  0x00000a03 force  0x0000000a , 0x00000001 
+ 00013626  0x00000a04 sub  0x0000003f , 0x00000079 , 0x0000003e 
+ 00013627  0x00000a05 rtn  0x00000002 
+ 00013628  0x00000a06 force  0x0000000b , 0x00000001 
+ 00013629  0x00000a07 sub  0x0000003f , 0x000000b7 , 0x0000003e 
+ 00013630  0x00000a08 rtn  0x00000002 
+ 00013631  0x00000a09 force  0x0000000e , 0x00000001 
+ 00013632  0x00000a0a sub  0x0000003f , 0x000000e0 , 0x0000003e 
+ 00013633  0x00000a0b rtn  0x00000002 
+ 00013634  0x00000a0c force  0x0000000f , 0x00000001 
+ 00013635  0x00000a0d rtn 
+ 00013636  0x00000a0f force  0x00000003 , 0x00000001 
+ 00013637  0x00000a10 sub  0x0000003f , 0x00000011 , 0x0000003e 
+ 00013638  0x00000a11 rtn  0x00000002 
+ 00013639  0x00000a12 force  0x00000004 , 0x00000001 
+ 00013640  0x00000a13 sub  0x0000003f , 0x00000036 , 0x0000003e 
+ 00013641  0x00000a14 rtn  0x00000002 
+ 00013642  0x00000a15 force  0x0000000a , 0x00000001 
+ 00013643  0x00000a16 arg  0x0000016f , 0x00000002 
+ 00013644  0x00000a17 isub  0x00000002 , 0x0000003e 
+ 00013645  0x00000a18 nrtn  0x00000002 
+ 00013646  0x00000a19 force  0x0000000e , 0x00000001 
+ 00013647  0x00000a1a arg  0x000002a7 , 0x00000002 
+ 00013648  0x00000a1b isub  0x00000002 , 0x0000003e 
+ 00013649  0x00000a1c nrtn  0x00000002 
+ 00013650  0x00000a1d force  0x0000000f , 0x00000001 
+ 00013651  0x00000a1e rtn 
+ 00013652  0x00000a28 fetch  0x00000001 , 0x00000030 
+ 00013653  0x00000a29 bbit0  0x00000001 , 0x00003559 
+ 00013654  0x00000a2a fetch  0x00000002 , 0x00000032 
+ 00013655  0x00000a2b branch  0x00003559 , 0x00000034 
+ 00013656  0x00000a2c nbranch  0x0000355b , 0x0000002e 
+ 00013657  0x00000a2e call  0x00003aec 
+ 00013658  0x00000a30 add  0x00000028 , 0x00000001 , 0x00000021 
+ 00013659  0x00000a32 enable  0x00000010 
+ 00013660  0x00000a33 fetch  0x00000002 , 0x0000003e 
+ 00013661  0x00000a34 rshift  0x0000003f , 0x0000003f 
+ 00013662  0x00000a35 arg  0x00000500 , 0x00000002 
+ 00013663  0x00000a36 iadd  0x00000002 , 0x0000003f 
+ 00013664  0x00000a37 call  0x00003abd 
+ 00013665  0x00000a38 call  0x00003982 
+ 00013666  0x00000a39 force  0x00000003 , 0x00000024 
+ 00013667  0x00000a3a call  0x00003960 
+ 00013668  0x00000a3b call  0x00003481 
+ 00013669  0x00000a3c call  0x00003a86 
+ 00013670  0x00000a3d set0  0x00000025 , 0x00000000 
+ 00013671  0x00000a3e bpatch  0x00000051 , 0x0000400a 
+ 00013672  0x00000a3f fetch  0x00000002 , 0x0000003e 
+ 00013673  0x00000a40 rshift  0x0000003f , 0x0000003f 
+ 00013674  0x00000a41 call  0x00003abd 
+ 00013675  0x00000a42 call  0x00003a7f 
+ 00013676  0x00000a43 enable  0x0000000d 
+ 00013677  0x00000a44 fetch  0x00000002 , 0x0000003e 
+ 00013678  0x00000a45 arg  0x000003bb , 0x00000002 
+ 00013679  0x00000a46 iadd  0x00000002 , 0x0000001b 
+ 00013680  0x00000a47 correlate  0x0000003e , 0x00000003 
+ 00013681  0x00000a48 copy  0x0000001a , 0x00000002 
+ 00013682  0x00000a49 storet  0x00000006 , 0x00000099 
+ 00013683  0x00000a4a disable  0x0000000d 
+ 00013684  0x00000a4b nrtn  0x00000018 
+ 00013685  0x00000a4c arg  0x000003bb , 0x00000029 
+ 00013686  0x00000a4d copy  0x00000021 , 0x00000028 
+ 00013687  0x00000a4e branch  0x00003bed , 0x0000002b 
+ 00013688  0x00000a4f rtn 
+ 00013689  0x00000a53 set0  0x00000025 , 0x00000000 
+ 00013690  0x00000a54 bpatch  0x00000052 , 0x0000400a 
+ 00013691  0x00000a55 call  0x00003554 
+ 00013692  0x00000a56 nbranch  0x00003992 , 0x00000018 
+ 00013693  0x00000a57 call  0x00003a50 
+ 00013694  0x00000a58 bmark0  0x00000011 , 0x00003582 
+ 00013695  0x00000a59 fetch  0x00000002 , 0x000000f5 
+ 00013696  0x00000a5a increase  0x00000001 , 0x0000003f 
+ 00013697  0x00000a5b store  0x00000002 , 0x000000f5 
+ 00013698  0x00000a5d rshift  0x00000021 , 0x00000002 
+ 00013699  0x00000a5e or  0x00000002 , 0x00000040 , 0x0000000e 
+ 00013700  0x00000a60 set0  0x00000025 , 0x00000000 
+ 00013701  0x00000a61 bpatch  0x00000053 , 0x0000400a 
+ 00013702  0x00000a62 enable  0x00000007 
+ 00013703  0x00000a63 enable  0x0000000a 
+ 00013704  0x00000a64 enable  0x0000000b 
+ 00013705  0x00000a65 parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013706  0x00000a66 rshift8  0x0000000c , 0x0000003f 
+ 00013707  0x00000a67 store  0x00000001 , 0x0000015c 
+ 00013708  0x00000a68 parse  0x00000003 , 0x00000000 , 0x00000004 
+ 00013709  0x00000a69 inject  0x00000000 , 0x00000007 
+ 00013710  0x00000a6a copy  0x0000000c , 0x0000003f 
+ 00013711  0x00000a6b store  0x00000001 , 0x00000019 
+ 00013712  0x00000a6c parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013713  0x00000a6d rshift8  0x0000000c , 0x0000003f 
+ 00013714  0x00000a6e store  0x00000001 , 0x0000015d 
+ 00013715  0x00000a6f fetch  0x00000001 , 0x00000019 
+ 00013716  0x00000a70 sub  0x0000003f , 0x00000003 , 0x0000003e 
+ 00013717  0x00000a71 branch  0x0000359a , 0x00000002 
+ 00013718  0x00000a72 beq  0x00000007 , 0x0000359a 
+ 00013719  0x00000a73 fetch  0x00000001 , 0x0000004c 
+ 00013720  0x00000a74 isolate1  0x00000005 , 0x0000003f 
+ 00013721  0x00000a75 setflag  0x00000001 , 0x00000001 , 0x00000015 
+ 00013722  0x00000a77 set0  0x00000025 , 0x00000000 
+ 00013723  0x00000a78 bpatch  0x00000054 , 0x0000400a 
+ 00013724  0x00000a79 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013725  0x00000a7a disable  0x0000000b 
+ 00013726  0x00000a7b disable  0x0000000a 
+ 00013727  0x00000a7c branch  0x000036a8 , 0x00000006 
+ 00013728  0x00000a7d bmark0  0x00000011 , 0x000035a4 
+ 00013729  0x00000a7e fetch  0x00000002 , 0x000000f7 
+ 00013730  0x00000a7f increase  0x00000001 , 0x0000003f 
+ 00013731  0x00000a80 store  0x00000002 , 0x000000f7 
+ 00013732  0x00000a82 set0  0x00000025 , 0x00000000 
+ 00013733  0x00000a83 bpatch  0x00000055 , 0x0000400a 
+ 00013734  0x00000a84 fetch  0x00000001 , 0x0000015c 
+ 00013735  0x00000a85 compare  0x00000000 , 0x0000003f , 0x00000007 
+ 00013736  0x00000a86 setflag  0x00000001 , 0x0000000a , 0x00000000 
+ 00013737  0x00000a87 branch  0x000035b5 , 0x00000001 
+ 00013738  0x00000a88 icompare  0x00000007 , 0x00000004 
+ 00013739  0x00000a89 branch  0x000035b4 , 0x00000001 
+ 00013740  0x00000a8a bmark0  0x00000007 , 0x000036c6 
+ 00013741  0x00000a8b fetcht  0x00000001 , 0x000000af 
+ 00013742  0x00000a8c icompare  0x00000007 , 0x00000002 
+ 00013743  0x00000a8d nbranch  0x000036c6 , 0x00000001 
+ 00013744  0x00000a8e fetch  0x00000001 , 0x00000047 
+ 00013745  0x00000a8f set0  0x00000005 , 0x0000003f 
+ 00013746  0x00000a90 set1  0x00000004 , 0x0000003f 
+ 00013747  0x00000a91 store  0x00000001 , 0x00000047 
+ 00013748  0x00000a93 enable  0x0000002d 
+ 00013749  0x00000a95 set0  0x00000025 , 0x00000000 
+ 00013750  0x00000a96 bpatch  0x00000056 , 0x0000400a 
+ 00013751  0x00000a97 fetch  0x00000001 , 0x00000019 
+ 00013752  0x00000a98 icopy  0x00000001 
+ 00013753  0x00000a99 bmark1  0x0000000a , 0x000035c5 
+ 00013754  0x00000a9a fetcht  0x00000001 , 0x0000015d 
+ 00013755  0x00000a9b fetch  0x00000001 , 0x00000047 
+ 00013756  0x00000a9c set0  0x00000000 , 0x0000003f 
+ 00013757  0x00000a9d isolate1  0x00000000 , 0x00000002 
+ 00013758  0x00000a9e setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00013759  0x00000a9f isolate1  0x00000001 , 0x00000002 
+ 00013760  0x00000aa0 setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00013761  0x00000aa1 store  0x00000001 , 0x00000047 
+ 00013762  0x00000aa2 isolate0  0x00000001 , 0x00000002 
+ 00013763  0x00000aa3 branch  0x000035c5 , 0x00000001 
+ 00013764  0x00000aa4 call  0x00003703 
+ 00013765  0x00000aa6 set0  0x00000025 , 0x00000000 
+ 00013766  0x00000aa7 bpatch  0x00000057 , 0x0000400a 
+ 00013767  0x00000aa8 arg  0x00000000 , 0x00000002 
+ 00013768  0x00000aa9 call  0x00003ab4 
+ 00013769  0x00000aaa and  0x00000001 , 0x0000000f , 0x0000003f 
+ 00013770  0x00000aab beq  0x00000001 , 0x000035f4 
+ 00013771  0x00000aac beq  0x00000000 , 0x000036c6 
+ 00013772  0x00000aad beq  0x00000002 , 0x000036d3 
+ 00013773  0x00000aae fetcht  0x00000001 , 0x0000015d 
+ 00013774  0x00000aaf fetch  0x00000001 , 0x00000047 
+ 00013775  0x00000ab0 icompare  0x00000004 , 0x00000002 
+ 00013776  0x00000ab1 nbranch  0x000035d4 , 0x00000001 
+ 00013777  0x00000ab2 bmark0  0x0000000a , 0x000035d3 
+ 00013778  0x00000ab3 bbit0  0x00000007 , 0x000035d4 
+ 00013779  0x00000ab5 set1  0x0000000f , 0x00000000 
+ 00013780  0x00000ab7 set0  0x00000025 , 0x00000000 
+ 00013781  0x00000ab8 bpatch  0x00000058 , 0x0000400b 
+ 00013782  0x00000ab9 deposit  0x00000001 
+ 00013783  0x00000aba beq  0x00000003 , 0x000035f6 
+ 00013784  0x00000abb beq  0x00000004 , 0x000035fa 
+ 00013785  0x00000abc beq  0x00000007 , 0x000035e4 
+ 00013786  0x00000abd beq  0x00000008 , 0x000035f9 
+ 00013787  0x00000abe arg  0x00000004 , 0x00000002 
+ 00013788  0x00000abf call  0x00003ab4 
+ 00013789  0x00000ac0 beq  0x0000000a , 0x000035f5 
+ 00013790  0x00000ac1 beq  0x0000000b , 0x000035f8 
+ 00013791  0x00000ac2 arg  0x00000008 , 0x00000002 
+ 00013792  0x00000ac3 call  0x00003ab4 
+ 00013793  0x00000ac4 beq  0x0000000e , 0x000035f5 
+ 00013794  0x00000ac5 beq  0x0000000f , 0x000035f8 
+ 00013795  0x00000ac6 rtn 
+ 00013796  0x00000aca set0  0x00000025 , 0x00000000 
+ 00013797  0x00000acb bpatch  0x00000059 , 0x0000400b 
+ 00013798  0x00000acc enable  0x0000000d 
+ 00013799  0x00000acd enable  0x00000009 
+ 00013800  0x00000ace enable  0x0000000e 
+ 00013801  0x00000acf arg  0x000000d0 , 0x00000005 
+ 00013802  0x00000ad0 force  0x0000001e , 0x00000039 
+ 00013803  0x00000ad2 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013804  0x00000ad3 rshift3  0x0000000c , 0x0000003f 
+ 00013805  0x00000ad4 istore  0x00000001 , 0x00000005 
+ 00013806  0x00000ad5 loop  0x000035eb 
+ 00013807  0x00000ad6 bmark0  0x00000007 , 0x000036c6 
+ 00013808  0x00000ad7 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00013809  0x00000ad8 nsetflag  0x00000006 , 0x00000008 , 0x00000000 
+ 00013810  0x00000ad9 branch  0x000036b5 , 0x00000006 
+ 00013811  0x00000ada branch  0x00003696 
+ 00013812  0x00000ade branch  0x000036c6 
+ 00013813  0x00000ae2 set1  0x00000010 , 0x00000000 
+ 00013814  0x00000ae4 enable  0x0000000c 
+ 00013815  0x00000ae5 branch  0x000035fb 
+ 00013816  0x00000ae9 set1  0x00000010 , 0x00000000 
+ 00013817  0x00000aeb set1  0x00000002 , 0x00000015 
+ 00013818  0x00000aed enable  0x0000000d 
+ 00013819  0x00000aef set0  0x00000025 , 0x00000000 
+ 00013820  0x00000af0 bpatch  0x0000005a , 0x0000400b 
+ 00013821  0x00000af1 bmark1  0x00000001 , 0x000036c6 
+ 00013822  0x00000af2 isolate0  0x00000001 , 0x00000015 
+ 00013823  0x00000af3 branch  0x00003608 , 0x00000001 
+ 00013824  0x00000af4 disable  0x00000007 
+ 00013825  0x00000af5 enable  0x0000000d 
+ 00013826  0x00000af6 disable  0x0000000c 
+ 00013827  0x00000af7 add  0x00000022 , 0x00000002 , 0x0000000b 
+ 00013828  0x00000af8 correlate  0x00000022 , 0x00000026 
+ 00013829  0x00000af9 nbranch  0x000036b5 , 0x00000018 
+ 00013830  0x00000afa set1  0x00000010 , 0x00000000 
+ 00013831  0x00000afb enable  0x00000007 
+ 00013832  0x00000afd set0  0x00000025 , 0x00000000 
+ 00013833  0x00000afe bpatch  0x0000005b , 0x0000400b 
+ 00013834  0x00000aff enable  0x0000000e 
+ 00013835  0x00000b00 enable  0x00000009 
+ 00013836  0x00000b01 parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013837  0x00000b02 rshift8  0x0000000c , 0x0000003f 
+ 00013838  0x00000b03 store  0x00000001 , 0x0000017f 
+ 00013839  0x00000b04 parse  0x00000003 , 0x00000000 , 0x00000005 
+ 00013840  0x00000b05 bmark1  0x00000010 , 0x00003614 
+ 00013841  0x00000b06 rshift3  0x0000000c , 0x00000039 
+ 00013842  0x00000b07 rshift3  0x00000039 , 0x00000039 
+ 00013843  0x00000b08 branch  0x00003617 
+ 00013844  0x00000b0a parse  0x00000003 , 0x00000000 , 0x00000005 
+ 00013845  0x00000b0b rshift  0x0000000c , 0x00000039 
+ 00013846  0x00000b0c parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013847  0x00000b0e set0  0x00000025 , 0x00000000 
+ 00013848  0x00000b0f bpatch  0x0000005c , 0x0000400b 
+ 00013849  0x00000b10 deposit  0x00000039 
+ 00013850  0x00000b11 store  0x00000002 , 0x0000015e 
+ 00013851  0x00000b12 branch  0x0000365b , 0x00000034 
+ 00013852  0x00000b13 isub  0x00000035 , 0x0000003e 
+ 00013853  0x00000b14 branch  0x000036b5 , 0x00000002 
+ 00013854  0x00000b15 set0  0x00000025 , 0x00000000 
+ 00013855  0x00000b16 bpatch  0x0000005d , 0x0000400b 
+ 00013856  0x00000b17 set0  0x00000000 , 0x00000000 
+ 00013857  0x00000b18 fetch  0x00000001 , 0x0000017f 
+ 00013858  0x00000b19 and_into  0x00000003 , 0x0000003f 
+ 00013859  0x00000b1a arg  0x00000475 , 0x00000005 
+ 00013860  0x00000b1b beq  0x00000003 , 0x0000362b 
+ 00013861  0x00000b1c bmark1  0x00000011 , 0x00003657 
+ 00013862  0x00000b1e fetch  0x00000001 , 0x0000017f 
+ 00013863  0x00000b1f and_into  0x00000003 , 0x0000003f 
+ 00013864  0x00000b20 beq  0x00000002 , 0x00003630 
+ 00013865  0x00000b21 beq  0x00000001 , 0x00003645 
+ 00013866  0x00000b22 branch  0x000036b5 
+ 00013867  0x00000b25 fetch  0x00000002 , 0x0000015e 
+ 00013868  0x00000b26 sub  0x0000003f , 0x00000070 , 0x0000003e 
+ 00013869  0x00000b27 nbranch  0x000036b5 , 0x00000002 
+ 00013870  0x00000b28 bmark1  0x0000000f , 0x00003696 
+ 00013871  0x00000b29 branch  0x00003657 
+ 00013872  0x00000b2d set0  0x00000025 , 0x00000000 
+ 00013873  0x00000b2e bpatch  0x0000005e , 0x0000400b 
+ 00013874  0x00000b2f bmark1  0x0000000f , 0x00003696 
+ 00013875  0x00000b30 fetch  0x00000002 , 0x0000015e 
+ 00013876  0x00000b31 arg  0x000002e0 , 0x00000002 
+ 00013877  0x00000b32 isub  0x00000002 , 0x0000003e 
+ 00013878  0x00000b33 branch  0x000036b5 , 0x00000002 
+ 00013879  0x00000b34 fetch  0x00000001 , 0x0000028c 
+ 00013880  0x00000b35 bbit0  0x00000000 , 0x0000363b 
+ 00013881  0x00000b36 bbit0  0x00000001 , 0x00003640 
+ 00013882  0x00000b37 branch  0x000036c6 
+ 00013883  0x00000b39 jam  0x00000001 , 0x0000028a 
+ 00013884  0x00000b3a fetch  0x00000002 , 0x00000286 
+ 00013885  0x00000b3b bne  0x00000000 , 0x000036c6 
+ 00013886  0x00000b3c arg  0x00001000 , 0x00000005 
+ 00013887  0x00000b3d branch  0x00003657 
+ 00013888  0x00000b3f jam  0x00000002 , 0x0000028a 
+ 00013889  0x00000b40 fetch  0x00000002 , 0x00000288 
+ 00013890  0x00000b41 bne  0x00000000 , 0x000036c6 
+ 00013891  0x00000b42 arg  0x00001400 , 0x00000005 
+ 00013892  0x00000b43 branch  0x00003657 
+ 00013893  0x00000b46 set0  0x00000025 , 0x00000000 
+ 00013894  0x00000b47 bpatch  0x0000005f , 0x0000400b 
+ 00013895  0x00000b48 bmark1  0x0000000f , 0x00003696 
+ 00013896  0x00000b49 fetch  0x00000002 , 0x0000015e 
+ 00013897  0x00000b4a arg  0x000002e0 , 0x00000002 
+ 00013898  0x00000b4b isub  0x00000002 , 0x0000003e 
+ 00013899  0x00000b4c branch  0x000036b5 , 0x00000002 
+ 00013900  0x00000b4d fetch  0x00000001 , 0x0000028a 
+ 00013901  0x00000b4e beq  0x00000001 , 0x00003650 
+ 00013902  0x00000b4f beq  0x00000002 , 0x00003654 
+ 00013903  0x00000b50 branch  0x000036c6 
+ 00013904  0x00000b52 arg  0x00001000 , 0x00000005 
+ 00013905  0x00000b53 fetch  0x00000002 , 0x00000286 
+ 00013906  0x00000b54 iadd  0x00000005 , 0x00000005 
+ 00013907  0x00000b55 branch  0x00003657 
+ 00013908  0x00000b57 arg  0x00001400 , 0x00000005 
+ 00013909  0x00000b58 fetch  0x00000002 , 0x00000288 
+ 00013910  0x00000b59 iadd  0x00000005 , 0x00000005 
+ 00013911  0x00000b5b parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013912  0x00000b5c rshift3  0x0000000c , 0x0000003f 
+ 00013913  0x00000b5d istore  0x00000001 , 0x00000005 
+ 00013914  0x00000b5e loop  0x00003657 
+ 00013915  0x00000b60 set0  0x00000025 , 0x00000000 
+ 00013916  0x00000b61 bpatch  0x00000060 , 0x0000400c 
+ 00013917  0x00000b62 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00013918  0x00000b63 branch  0x000036af , 0x00000006 
+ 00013919  0x00000b64 fetch  0x00000001 , 0x000043f3 
+ 00013920  0x00000b65 beq  0x00000001 , 0x000036c6 
+ 00013921  0x00000b66 bmark1  0x00000011 , 0x00003682 
+ 00013922  0x00000b67 bmark1  0x0000000f , 0x000036c3 
+ 00013923  0x00000b68 fetch  0x00000001 , 0x0000017f 
+ 00013924  0x00000b69 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00013925  0x00000b6a branch  0x00003682 , 0x00000001 
+ 00013926  0x00000b6b fetch  0x00000002 , 0x0000015e 
+ 00013927  0x00000b6c branch  0x00003682 , 0x00000034 
+ 00013928  0x00000b6d set0  0x00000025 , 0x00000000 
+ 00013929  0x00000b6e bpatch  0x00000061 , 0x0000400c 
+ 00013930  0x00000b6f fetch  0x00000001 , 0x0000028a 
+ 00013931  0x00000b70 beq  0x00000001 , 0x0000366e 
+ 00013932  0x00000b71 beq  0x00000002 , 0x00003678 
+ 00013933  0x00000b72 branch  0x00003b31 
+ 00013934  0x00000b74 fetch  0x00000002 , 0x00000286 
+ 00013935  0x00000b75 fetcht  0x00000002 , 0x0000015e 
+ 00013936  0x00000b76 iadd  0x00000002 , 0x0000003f 
+ 00013937  0x00000b77 store  0x00000002 , 0x00000286 
+ 00013938  0x00000b78 beq  0x00000000 , 0x00003b31 
+ 00013939  0x00000b79 fetcht  0x00000002 , 0x00001000 
+ 00013940  0x00000b7a increase  0x00000004 , 0x00000002 
+ 00013941  0x00000b7b isub  0x00000002 , 0x0000003e 
+ 00013942  0x00000b7c call  0x000037cd , 0x00000005 
+ 00013943  0x00000b7d branch  0x00003682 
+ 00013944  0x00000b7f fetch  0x00000002 , 0x00000288 
+ 00013945  0x00000b80 fetcht  0x00000002 , 0x0000015e 
+ 00013946  0x00000b81 iadd  0x00000002 , 0x0000003f 
+ 00013947  0x00000b82 store  0x00000002 , 0x00000288 
+ 00013948  0x00000b83 beq  0x00000000 , 0x00003b31 
+ 00013949  0x00000b84 fetcht  0x00000002 , 0x00001400 
+ 00013950  0x00000b85 add  0x00000002 , 0x00000004 , 0x00000002 
+ 00013951  0x00000b86 isub  0x00000002 , 0x0000003e 
+ 00013952  0x00000b87 call  0x000037d1 , 0x00000005 
+ 00013953  0x00000b88 branch  0x00003682 
+ 00013954  0x00000b8a set0  0x00000025 , 0x00000000 
+ 00013955  0x00000b8b bpatch  0x00000062 , 0x0000400c 
+ 00013956  0x00000b8c fetcht  0x00000001 , 0x0000004c 
+ 00013957  0x00000b8d fetch  0x00000001 , 0x0000017f 
+ 00013958  0x00000b8e compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00013959  0x00000b8f setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00013960  0x00000b90 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00013961  0x00000b91 storet  0x00000001 , 0x0000004c 
+ 00013962  0x00000b92 nbranch  0x0000368c , 0x00000001 
+ 00013963  0x00000b93 set1  0x00000001 , 0x00000000 
+ 00013964  0x00000b95 bmark0  0x00000011 , 0x00003696 
+ 00013965  0x00000b96 isolate1  0x00000006 , 0x00000002 
+ 00013966  0x00000b97 branch  0x00003696 , 0x00000001 
+ 00013967  0x00000b98 fetch  0x00000002 , 0x000000f9 
+ 00013968  0x00000b99 increase  0x00000001 , 0x0000003f 
+ 00013969  0x00000b9a store  0x00000002 , 0x000000f9 
+ 00013970  0x00000b9b set1  0x00000005 , 0x00000000 
+ 00013971  0x00000b9c set0  0x00000007 , 0x00000002 
+ 00013972  0x00000b9d set0  0x00000001 , 0x00000000 
+ 00013973  0x00000b9e storet  0x00000001 , 0x0000004c 
+ 00013974  0x00000ba0 set0  0x00000025 , 0x00000000 
+ 00013975  0x00000ba1 bpatch  0x00000063 , 0x0000400c 
+ 00013976  0x00000ba2 fetcht  0x00000001 , 0x0000015d 
+ 00013977  0x00000ba3 fetch  0x00000001 , 0x00000047 
+ 00013978  0x00000ba4 set1  0x00000005 , 0x0000003f 
+ 00013979  0x00000ba5 isolate1  0x00000002 , 0x00000002 
+ 00013980  0x00000ba6 setflag  0x00000001 , 0x00000002 , 0x0000003f 
+ 00013981  0x00000ba7 isolate1  0x0000000a , 0x00000000 
+ 00013982  0x00000ba8 setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00013983  0x00000ba9 store  0x00000001 , 0x00000047 
+ 00013984  0x00000baa fetch  0x00000002 , 0x0000015e 
+ 00013985  0x00000bab nbranch  0x000036c6 , 0x00000034 
+ 00013986  0x00000bac fetch  0x00000001 , 0x0000004c 
+ 00013987  0x00000bad set0  0x00000007 , 0x0000003f 
+ 00013988  0x00000bae store  0x00000001 , 0x0000004c 
+ 00013989  0x00000baf fetch  0x00000001 , 0x0000017f 
+ 00013990  0x00000bb0 compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00013991  0x00000bb2 branch  0x000036c6 
+ 00013992  0x00000bb5 set0  0x00000025 , 0x00000000 
+ 00013993  0x00000bb6 bpatch  0x00000064 , 0x0000400c 
+ 00013994  0x00000bb7 disable  0x0000002d 
+ 00013995  0x00000bb8 fetch  0x00000002 , 0x0000001a 
+ 00013996  0x00000bb9 increase  0x00000001 , 0x0000003f 
+ 00013997  0x00000bba store  0x00000002 , 0x0000001a 
+ 00013998  0x00000bbb branch  0x000036c6 
+ 00013999  0x00000bbd fetch  0x00000002 , 0x0000001c 
+ 00014000  0x00000bbe increase  0x00000001 , 0x0000003f 
+ 00014001  0x00000bbf store  0x00000002 , 0x0000001c 
+ 00014002  0x00000bc0 call  0x000036b6 
+ 00014003  0x00000bc1 bmark0  0x00000011 , 0x000036b5 
+ 00014004  0x00000bc2 set1  0x00000005 , 0x00000000 
+ 00014005  0x00000bc4 branch  0x000036c6 
+ 00014006  0x00000bc7 set0  0x00000025 , 0x00000000 
+ 00014007  0x00000bc8 bpatch  0x00000065 , 0x0000400c 
+ 00014008  0x00000bc9 fetch  0x00000001 , 0x0000017f 
+ 00014009  0x00000bca compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00014010  0x00000bcb nbranch  0x000036bf , 0x00000001 
+ 00014011  0x00000bcd fetcht  0x00000001 , 0x0000004c 
+ 00014012  0x00000bce set0  0x00000006 , 0x00000002 
+ 00014013  0x00000bcf storet  0x00000001 , 0x0000004c 
+ 00014014  0x00000bd0 rtn 
+ 00014015  0x00000bd4 fetcht  0x00000001 , 0x0000004c 
+ 00014016  0x00000bd5 set0  0x00000007 , 0x00000002 
+ 00014017  0x00000bd6 storet  0x00000001 , 0x0000004c 
+ 00014018  0x00000bd7 branch  0x00003eca 
+ 00014019  0x00000bda fetch  0x00000001 , 0x00000047 
+ 00014020  0x00000bdb set1  0x00000005 , 0x0000003f 
+ 00014021  0x00000bdc store  0x00000001 , 0x00000047 
+ 00014022  0x00000bde set0  0x00000025 , 0x00000000 
+ 00014023  0x00000bdf bpatch  0x00000066 , 0x0000400c 
+ 00014024  0x00000be0 disable  0x0000001d 
+ 00014025  0x00000be1 disable  0x0000001c 
+ 00014026  0x00000be2 disable  0x0000000d 
+ 00014027  0x00000be3 disable  0x0000000c 
+ 00014028  0x00000be4 disable  0x00000009 
+ 00014029  0x00000be5 disable  0x0000000e 
+ 00014030  0x00000be6 disable  0x00000007 
+ 00014031  0x00000be7 branch  0x00003992 , 0x00000021 
+ 00014032  0x00000be8 until  0x0000003e , 0x00000027 
+ 00014033  0x00000be9 nop  0x00000064 
+ 00014034  0x00000bea branch  0x00003992 
+ 00014035  0x00000bed set0  0x00000025 , 0x00000000 
+ 00014036  0x00000bee bpatch  0x00000067 , 0x0000400c 
+ 00014037  0x00000bef enable  0x00000009 
+ 00014038  0x00000bf0 enable  0x0000000c 
+ 00014039  0x00000bf1 parse  0x00000003 , 0x00000000 , 0x00000048 
+ 00014040  0x00000bf2 isolate1  0x0000003a , 0x0000003f 
+ 00014041  0x00000bf3 setflag  0x00000001 , 0x00000000 , 0x00000000 
+ 00014042  0x00000bf4 copy  0x00000020 , 0x00000002 
+ 00014043  0x00000bf5 ialigned  0x00000020 
+ 00014044  0x00000bf6 ialigned  0x0000001e 
+ 00014045  0x00000bf7 pulse  0x00000015 
+ 00014046  0x00000bf8 setsect  0x00000002 , 0x000fffff 
+ 00014047  0x00000bf9 setsect  0x00000003 , 0x0000ffff 
+ 00014048  0x00000bfa nop  0x00000020 
+ 00014049  0x00000bfb iverify  0x0000000d 
+ 00014050  0x00000bfc deposit  0x0000002c 
+ 00014051  0x00000bfd store  0x00000003 , 0x00000177 
+ 00014052  0x00000bfe deposit  0x0000002d 
+ 00014053  0x00000bff store  0x00000001 , 0x0000017a 
+ 00014054  0x00000c00 copy  0x00000002 , 0x00000020 
+ 00014055  0x00000c01 branch  0x000036e9 , 0x00000001 
+ 00014056  0x00000c02 branch  0x000036b5 
+ 00014057  0x00000c04 set0  0x00000025 , 0x00000000 
+ 00014058  0x00000c05 bpatch  0x00000068 , 0x0000400d 
+ 00014059  0x00000c06 parse  0x00000003 , 0x00000000 , 0x00000048 
+ 00014060  0x00000c07 ialigned  0x0000001f 
+ 00014061  0x00000c08 ialigned  0x00000004 
+ 00014062  0x00000c09 ialigned  0x0000002e 
+ 00014063  0x00000c0a ialigned  0x00000012 
+ 00014064  0x00000c0b force  0x00000000 , 0x0000003f 
+ 00014065  0x00000c0c parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00014066  0x00000c0d branch  0x000036b5 , 0x00000006 
+ 00014067  0x00000c0e setarg  0x0ffffffc 
+ 00014068  0x00000c0f iand  0x00000012 , 0x0000003f 
+ 00014069  0x00000c10 store  0x00000004 , 0x00000164 
+ 00014070  0x00000c11 deposit  0x0000001d 
+ 00014071  0x00000c12 store  0x00000003 , 0x00000174 
+ 00014072  0x00000c13 deposit  0x0000001c 
+ 00014073  0x00000c14 store  0x00000001 , 0x00000172 
+ 00014074  0x00000c15 deposit  0x00000004 
+ 00014075  0x00000c16 store  0x00000001 , 0x00000173 
+ 00014076  0x00000c17 deposit  0x0000002e 
+ 00014077  0x00000c18 store  0x00000002 , 0x0000017b 
+ 00014078  0x00000c19 deposit  0x00000021 
+ 00014079  0x00000c1a inject  0x00000001 , 0x00000020 
+ 00014080  0x00000c1b compare  0x00000002 , 0x00000001 , 0x0000000f 
+ 00014081  0x00000c1c setflag  0x00000001 , 0x0000000b , 0x00000000 
+ 00014082  0x00000c1d branch  0x000036c6 
+ 00014083  0x00000c20 set0  0x00000025 , 0x00000000 
+ 00014084  0x00000c21 bpatch  0x00000069 , 0x0000400d 
+ 00014085  0x00000c22 fetch  0x00000001 , 0x00000047 
+ 00014086  0x00000c23 rtnbit0  0x00000003 
+ 00014087  0x00000c24 set0  0x00000003 , 0x0000003f 
+ 00014088  0x00000c25 setflip  0x00000006 , 0x0000003f 
+ 00014089  0x00000c26 store  0x00000001 , 0x00000047 
+ 00014090  0x00000c27 fetch  0x00000001 , 0x00004165 
+ 00014091  0x00000c28 beq  0x00000013 , 0x00003719 
+ 00014092  0x00000c29 rtneq  0x00000007 
+ 00014093  0x00000c2a fetch  0x00000001 , 0x0000004b 
+ 00014094  0x00000c2b rtnbit0  0x00000006 , 0x0000003f 
+ 00014095  0x00000c2c set0  0x00000006 , 0x0000003f 
+ 00014096  0x00000c2d set1  0x00000007 , 0x0000003f 
+ 00014097  0x00000c2e store  0x00000001 , 0x0000004b 
+ 00014098  0x00000c2f set0  0x00000002 , 0x00000000 
+ 00014099  0x00000c30 fetch  0x00000002 , 0x000042d6 
+ 00014100  0x00000c31 nrtn  0x00000034 
+ 00014101  0x00000c32 fetch  0x00000001 , 0x0000004b 
+ 00014102  0x00000c33 set0  0x00000007 , 0x0000003f 
+ 00014103  0x00000c34 store  0x00000001 , 0x0000004b 
+ 00014104  0x00000c35 branch  0x000047fb 
+ 00014105  0x00000c38 set0  0x00000025 , 0x00000000 
+ 00014106  0x00000c39 bpatch  0x0000006a , 0x0000400d 
+ 00014107  0x00000c3a fetch  0x00000001 , 0x000003dd 
+ 00014108  0x00000c3b rshift  0x0000003f , 0x0000003f 
+ 00014109  0x00000c3c beq  0x00000011 , 0x00003736 
+ 00014110  0x00000c3d beq  0x00000012 , 0x0000373f 
+ 00014111  0x00000c3e beq  0x00000018 , 0x0000376a 
+ 00014112  0x00000c3f beq  0x0000007f , 0x00003726 
+ 00014113  0x00000c40 rtnne  0x00000003 
+ 00014114  0x00000c41 fetch  0x00000001 , 0x000003de 
+ 00014115  0x00000c42 beq  0x0000002b , 0x0000372e 
+ 00014116  0x00000c43 beq  0x00000011 , 0x00003729 
+ 00014117  0x00000c44 rtn 
+ 00014118  0x00000c47 fetch  0x00000001 , 0x000003de 
+ 00014119  0x00000c48 set1  0x00000007 , 0x0000003f 
+ 00014120  0x00000c49 rtn 
+ 00014121  0x00000c4b rtn  0x00000029 
+ 00014122  0x00000c4c fetch  0x00000001 , 0x00000030 
+ 00014123  0x00000c4d rtnbit1  0x00000004 
+ 00014124  0x00000c4e jam  0x00000031 , 0x0000007c 
+ 00014125  0x00000c4f rtn 
+ 00014126  0x00000c53 rtn  0x00000029 
+ 00014127  0x00000c54 fetch  0x00000001 , 0x00000031 
+ 00014128  0x00000c55 isolate1  0x00000004 , 0x0000003f 
+ 00014129  0x00000c56 branch  0x00003733 , 0x00000001 
+ 00014130  0x00000c58 rtn 
+ 00014131  0x00000c5a set0  0x00000004 , 0x0000003f 
+ 00014132  0x00000c5b store  0x00000001 , 0x00000031 
+ 00014133  0x00000c5c rtn 
+ 00014134  0x00000c5f set0  0x00000025 , 0x00000000 
+ 00014135  0x00000c60 bpatch  0x0000006b , 0x0000400d 
+ 00014136  0x00000c61 fetch  0x00000001 , 0x0000004c 
+ 00014137  0x00000c62 set1  0x00000002 , 0x0000003f 
+ 00014138  0x00000c63 store  0x00000001 , 0x0000004c 
+ 00014139  0x00000c64 hjam  0x00000001 , 0x00008011 
+ 00014140  0x00000c65 fetch  0x00000001 , 0x00000030 
+ 00014141  0x00000c66 isolate1  0x00000004 , 0x0000003f 
+ 00014142  0x00000c67 rtn 
+ 00014143  0x00000c6a set0  0x00000025 , 0x00000000 
+ 00014144  0x00000c6b bpatch  0x0000006c , 0x0000400d 
+ 00014145  0x00000c6c fetch  0x00000001 , 0x0000004c 
+ 00014146  0x00000c6d set0  0x00000002 , 0x0000003f 
+ 00014147  0x00000c6e store  0x00000001 , 0x0000004c 
+ 00014148  0x00000c6f hjam  0x00000000 , 0x00008011 
+ 00014149  0x00000c70 rtn 
+ 00014150  0x00000c74 set0  0x00000025 , 0x00000000 
+ 00014151  0x00000c75 bpatch  0x0000006d , 0x0000400d 
+ 00014152  0x00000c76 copy  0x00000022 , 0x0000003f 
+ 00014153  0x00000c77 store  0x00000004 , 0x000042b1 
+ 00014154  0x00000c78 add  0x00000022 , 0x00000003 , 0x00000011 
+ 00014155  0x00000c79 branch  0x0000374d , 0x00000029 
+ 00014156  0x00000c7a add  0x00000028 , 0x00000003 , 0x00000011 
+ 00014157  0x00000c7c fetcht  0x00000002 , 0x00000032 
+ 00014158  0x00000c7d deposit  0x00000011 
+ 00014159  0x00000c7e set0  0x0000001b , 0x0000003f 
+ 00014160  0x00000c7f idiv  0x00000002 
+ 00014161  0x00000c80 fetch  0x00000002 , 0x00000075 
+ 00014162  0x00000c81 call  0x00007f53 
+ 00014163  0x00000c82 remainder  0x00000013 
+ 00014164  0x00000c83 isub  0x00000013 , 0x0000003f 
+ 00014165  0x00000c84 branch  0x00003757 , 0x00000002 
+ 00014166  0x00000c85 iadd  0x00000002 , 0x0000003f 
+ 00014167  0x00000c87 iadd  0x00000011 , 0x0000003f 
+ 00014168  0x00000c88 store  0x00000004 , 0x00000034 
+ 00014169  0x00000c89 jam  0x00000000 , 0x000045f4 
+ 00014170  0x00000c8a fetch  0x00000001 , 0x00000030 
+ 00014171  0x00000c8b set1  0x00000001 , 0x0000003f 
+ 00014172  0x00000c8c store  0x00000001 , 0x00000030 
+ 00014173  0x00000c8d fetch  0x00000001 , 0x00000073 
+ 00014174  0x00000c8e store  0x00000001 , 0x0000008a 
+ 00014175  0x00000c8f setarg  0x00000000 
+ 00014176  0x00000c90 store  0x00000003 , 0x00004209 
+ 00014177  0x00000c91 store  0x00000003 , 0x0000420c 
+ 00014178  0x00000c92 store  0x00000001 , 0x000041f9 
+ 00014179  0x00000c93 jam  0x0000000b , 0x000009bd 
+ 00014180  0x00000c94 call  0x00007d86 
+ 00014181  0x00000c95 fetch  0x00000002 , 0x00004161 
+ 00014182  0x00000c96 store  0x00000002 , 0x0000003e 
+ 00014183  0x00000c97 nrtn  0x00000029 
+ 00014184  0x00000c98 add  0x00000004 , 0xffffffff , 0x00000007 
+ 00014185  0x00000c99 rtn 
+ 00014186  0x00000c9c set0  0x00000025 , 0x00000000 
+ 00014187  0x00000c9d bpatch  0x0000006e , 0x0000400d 
+ 00014188  0x00000c9e fetch  0x00000001 , 0x00000030 
+ 00014189  0x00000c9f rtnbit0  0x00000001 
+ 00014190  0x00000ca0 set0  0x00000001 , 0x0000003f 
+ 00014191  0x00000ca1 store  0x00000001 , 0x00000030 
+ 00014192  0x00000ca2 fetch  0x00000002 , 0x0000415f 
+ 00014193  0x00000ca3 store  0x00000002 , 0x0000003e 
+ 00014194  0x00000ca4 disable  0x0000002b 
+ 00014195  0x00000ca5 jam  0x0000000c , 0x000009bd 
+ 00014196  0x00000ca6 branch  0x00007d86 
+ 00014197  0x00000caa set0  0x00000025 , 0x00000000 
+ 00014198  0x00000cab bpatch  0x0000006f , 0x0000400d 
+ 00014199  0x00000cac enable  0x0000002e 
+ 00014200  0x00000cad fetch  0x00000001 , 0x00000030 
+ 00014201  0x00000cae bbit1  0x00000001 , 0x00003783 
+ 00014202  0x00000caf rtnmark1  0x00000011 
+ 00014203  0x00000cb0 fetch  0x00000001 , 0x00000047 
+ 00014204  0x00000cb1 rtnbit1  0x00000003 
+ 00014205  0x00000cb2 fetch  0x00000001 , 0x00000048 
+ 00014206  0x00000cb3 nrtn  0x00000034 
+ 00014207  0x00000cb4 fetch  0x00000001 , 0x0000004b 
+ 00014208  0x00000cb5 rtnbit1  0x00000006 
+ 00014209  0x00000cb7 force  0x00000000 , 0x0000003f 
+ 00014210  0x00000cb8 rtn 
+ 00014211  0x00000cbb bbit0  0x00000002 , 0x00003792 
+ 00014212  0x00000cbc fetch  0x00000001 , 0x0000008a 
+ 00014213  0x00000cbd beq  0x00000002 , 0x00003789 
+ 00014214  0x00000cbe fetch  0x00000001 , 0x00000047 
+ 00014215  0x00000cbf bbit1  0x00000003 , 0x0000379b 
+ 00014216  0x00000cc0 bmark0  0x00000008 , 0x0000379b 
+ 00014217  0x00000cc2 nbranch  0x0000379b , 0x00000029 
+ 00014218  0x00000cc3 fetch  0x00000001 , 0x00000048 
+ 00014219  0x00000cc4 nbranch  0x0000379b , 0x00000034 
+ 00014220  0x00000cc6 fetch  0x00000001 , 0x000000ee 
+ 00014221  0x00000cc7 increase  0xffffffff , 0x0000003f 
+ 00014222  0x00000cc8 store  0x00000001 , 0x000000ee 
+ 00014223  0x00000cc9 nbranch  0x00003781 , 0x00000034 
+ 00014224  0x00000cca jam  0x00000010 , 0x000000ee 
+ 00014225  0x00000ccb branch  0x0000379b 
+ 00014226  0x00000cce fetch  0x00000001 , 0x0000008a 
+ 00014227  0x00000ccf bne  0x00000001 , 0x0000379b 
+ 00014228  0x00000cd0 fetch  0x00000001 , 0x0000008b 
+ 00014229  0x00000cd1 branch  0x0000379b , 0x00000034 
+ 00014230  0x00000cd2 increase  0xffffffff , 0x0000003f 
+ 00014231  0x00000cd3 store  0x00000001 , 0x0000008b 
+ 00014232  0x00000cd4 fetch  0x00000001 , 0x00000047 
+ 00014233  0x00000cd5 rtnbit1  0x00000003 
+ 00014234  0x00000cd6 nrtn  0x0000002d 
+ 00014235  0x00000cd8 fetch  0x00000001 , 0x0000008a 
+ 00014236  0x00000cd9 increase  0xffffffff , 0x0000003f 
+ 00014237  0x00000cda store  0x00000001 , 0x0000008a 
+ 00014238  0x00000cdb rtn 
+ 00014239  0x00000cdf set0  0x00000025 , 0x00000000 
+ 00014240  0x00000ce0 bpatch  0x00000070 , 0x0000400e 
+ 00014241  0x00000ce1 disable  0x00000010 
+ 00014242  0x00000ce2 copy  0x00000002 , 0x0000001b 
+ 00014243  0x00000ce3 call  0x000032a1 
+ 00014244  0x00000ce4 disable  0x00000028 
+ 00014245  0x00000ce5 nrtn  0x00000005 
+ 00014246  0x00000ce6 force  0x00000000 , 0x0000001b 
+ 00014247  0x00000ce7 enable  0x00000028 
+ 00014248  0x00000ce8 rtn 
+ 00014249  0x00000cec fetch  0x00000001 , 0x000041f8 
+ 00014250  0x00000ced icompare  0x000000ff , 0x00000004 
+ 00014251  0x00000cee rtn 
+ 00014252  0x00000cf2 set0  0x00000025 , 0x00000000 
+ 00014253  0x00000cf3 bpatch  0x00000071 , 0x0000400e 
+ 00014254  0x00000cf4 set0  0x00000001 , 0x00000000 
+ 00014255  0x00000cf6 jam  0x00000000 , 0x00000293 
+ 00014256  0x00000cf7 fetch  0x00000001 , 0x0000028c 
+ 00014257  0x00000cf8 rtn  0x00000034 
+ 00014258  0x00000cf9 isolate1  0x00000000 , 0x0000003f 
+ 00014259  0x00000cfa arg  0x00001000 , 0x00000006 
+ 00014260  0x00000cfb call  0x000042fa , 0x00000001 
+ 00014261  0x00000cfc set0  0x00000025 , 0x00000000 
+ 00014262  0x00000cfd bpatch  0x00000072 , 0x0000400e 
+ 00014263  0x00000cfe fetch  0x00000001 , 0x00000293 
+ 00014264  0x00000cff beq  0x00000001 , 0x000037c1 
+ 00014265  0x00000d01 jam  0x00000000 , 0x00000293 
+ 00014266  0x00000d02 fetch  0x00000001 , 0x0000028c 
+ 00014267  0x00000d03 rtnbit0  0x00000001 
+ 00014268  0x00000d04 arg  0x00001400 , 0x00000006 
+ 00014269  0x00000d05 call  0x000042fa 
+ 00014270  0x00000d06 fetch  0x00000001 , 0x00000293 
+ 00014271  0x00000d07 beq  0x00000001 , 0x000037c7 
+ 00014272  0x00000d08 rtn 
+ 00014273  0x00000d0b fetch  0x00000001 , 0x0000028c 
+ 00014274  0x00000d0c set0  0x00000000 , 0x0000003f 
+ 00014275  0x00000d0d store  0x00000001 , 0x0000028c 
+ 00014276  0x00000d0e setarg  0x00000000 
+ 00014277  0x00000d0f store  0x00000002 , 0x00000286 
+ 00014278  0x00000d10 rtn 
+ 00014279  0x00000d12 fetch  0x00000001 , 0x0000028c 
+ 00014280  0x00000d13 set0  0x00000001 , 0x0000003f 
+ 00014281  0x00000d14 store  0x00000001 , 0x0000028c 
+ 00014282  0x00000d15 setarg  0x00000000 
+ 00014283  0x00000d16 store  0x00000002 , 0x00000288 
+ 00014284  0x00000d17 rtn 
+ 00014285  0x00000d1a fetch  0x00000001 , 0x0000028c 
+ 00014286  0x00000d1b set1  0x00000000 , 0x0000003f 
+ 00014287  0x00000d1c store  0x00000001 , 0x0000028c 
+ 00014288  0x00000d1d rtn 
+ 00014289  0x00000d20 fetch  0x00000001 , 0x0000028c 
+ 00014290  0x00000d21 set1  0x00000001 , 0x0000003f 
+ 00014291  0x00000d22 store  0x00000001 , 0x0000028c 
+ 00014292  0x00000d23 rtn 
+ 00014293  0x00000d2a set0  0x00000025 , 0x00000000 
+ 00014294  0x00000d2b bpatch  0x00000073 , 0x0000400e 
+ 00014295  0x00000d2c add  0x00000028 , 0x00000001 , 0x00000021 
+ 00014296  0x00000d2d call  0x00003982 
+ 00014297  0x00000d2e force  0x00000003 , 0x00000024 
+ 00014298  0x00000d2f call  0x00003967 
+ 00014299  0x00000d30 call  0x00003aee 
+ 00014300  0x00000d31 call  0x00003aff 
+ 00014301  0x00000d32 branch  0x00003b05 
+ 00014302  0x00000d36 set0  0x00000025 , 0x00000000 
+ 00014303  0x00000d37 bpatch  0x00000074 , 0x0000400e 
+ 00014304  0x00000d38 call  0x00003aea 
+ 00014305  0x00000d39 deposit  0x00000028 
+ 00014306  0x00000d3a fetcht  0x00000004 , 0x0000416a 
+ 00014307  0x00000d3b isub  0x00000002 , 0x0000003f 
+ 00014308  0x00000d3c rtnne  0x00000001 
+ 00014309  0x00000d3d compare  0x00000000 , 0x00000001 , 0x0000001f 
+ 00014310  0x00000d3e nbranch  0x000037e9 , 0x00000001 
+ 00014311  0x00000d3f fetch  0x00000001 , 0x00000019 
+ 00014312  0x00000d40 rtn  0x00000034 
+ 00014313  0x00000d42 call  0x000037d5 
+ 00014314  0x00000d43 compare  0x00000010 , 0x00000001 , 0x0000001f 
+ 00014315  0x00000d44 branch  0x000036c6 , 0x00000001 
+ 00014316  0x00000d46 rshift  0x00000021 , 0x00000002 
+ 00014317  0x00000d47 or  0x00000002 , 0x00000040 , 0x0000000e 
+ 00014318  0x00000d49 set0  0x00000025 , 0x00000000 
+ 00014319  0x00000d4a bpatch  0x00000075 , 0x0000400e 
+ 00014320  0x00000d4b enable  0x00000007 
+ 00014321  0x00000d4c enable  0x0000000a 
+ 00014322  0x00000d4d enable  0x0000001b 
+ 00014323  0x00000d4e set0  0x00000010 , 0x00000000 
+ 00014324  0x00000d4f deposit  0x00000004 
+ 00014325  0x00000d50 inject  0x00000003 , 0x00000003 
+ 00014326  0x00000d51 deposit  0x00000001 
+ 00014327  0x00000d52 inject  0x00000003 , 0x00000004 
+ 00014328  0x00000d53 fetch  0x00000001 , 0x00000047 
+ 00014329  0x00000d54 inject  0x00000000 , 0x00000004 
+ 00014330  0x00000d55 inject  0x00000003 , 0x00000003 
+ 00014331  0x00000d56 enable  0x00000008 
+ 00014332  0x00000d57 inject  0x00000003 , 0x00000008 
+ 00014333  0x00000d58 disable  0x0000001b 
+ 00014334  0x00000d59 disable  0x00000008 
+ 00014335  0x00000d5a disable  0x0000000a 
+ 00014336  0x00000d5b set0  0x00000002 , 0x00000015 
+ 00014337  0x00000d5c arg  0x00000000 , 0x00000002 
+ 00014338  0x00000d5d call  0x00003ab4 
+ 00014339  0x00000d5e set0  0x00000025 , 0x00000000 
+ 00014340  0x00000d5f bpatch  0x00000076 , 0x0000400e 
+ 00014341  0x00000d60 and  0x00000001 , 0x0000001f , 0x0000003f 
+ 00014342  0x00000d61 beq  0x00000013 , 0x00003840 
+ 00014343  0x00000d62 beq  0x00000000 , 0x000036c6 
+ 00014344  0x00000d63 beq  0x00000001 , 0x000036c6 
+ 00014345  0x00000d64 beq  0x00000002 , 0x00003822 
+ 00014346  0x00000d65 beq  0x00000003 , 0x00003852 
+ 00014347  0x00000d66 beq  0x00000004 , 0x00003858 
+ 00014348  0x00000d67 beq  0x00000007 , 0x00003816 
+ 00014349  0x00000d68 beq  0x00000008 , 0x00003857 
+ 00014350  0x00000d69 arg  0x00000004 , 0x00000002 
+ 00014351  0x00000d6a call  0x00003ab4 
+ 00014352  0x00000d6b beq  0x0000000a , 0x00003854 
+ 00014353  0x00000d6c beq  0x0000000b , 0x0000385a 
+ 00014354  0x00000d6d arg  0x00000008 , 0x00000002 
+ 00014355  0x00000d6e call  0x00003ab4 
+ 00014356  0x00000d6f beq  0x0000000f , 0x0000385a 
+ 00014357  0x00000d70 branch  0x00003854 
+ 00014358  0x00000d74 set0  0x00000025 , 0x00000000 
+ 00014359  0x00000d75 bpatch  0x00000077 , 0x0000400e 
+ 00014360  0x00000d76 enable  0x0000001d 
+ 00014361  0x00000d77 enable  0x00000009 
+ 00014362  0x00000d78 enable  0x0000000e 
+ 00014363  0x00000d79 force  0x0000001e , 0x00000039 
+ 00014364  0x00000d7a arg  0x000000b2 , 0x00000006 
+ 00014365  0x00000d7c ifetch  0x00000001 , 0x00000006 
+ 00014366  0x00000d7d inject  0x00000003 , 0x00000008 
+ 00014367  0x00000d7e loop  0x0000381d 
+ 00014368  0x00000d7f bmark1  0x00000007 , 0x00003885 
+ 00014369  0x00000d80 branch  0x000036c6 
+ 00014370  0x00000d83 set0  0x00000025 , 0x00000000 
+ 00014371  0x00000d84 bpatch  0x00000078 , 0x0000400f 
+ 00014372  0x00000d85 fetch  0x00000001 , 0x00000180 
+ 00014373  0x00000d86 icopy  0x00000004 
+ 00014374  0x00000d87 fetch  0x00000001 , 0x0000008f 
+ 00014375  0x00000d88 icopy  0x0000001c 
+ 00014376  0x00000d89 fetch  0x00000003 , 0x0000414a 
+ 00014377  0x00000d8a icopy  0x0000001d 
+ 00014378  0x00000d8b fetch  0x00000002 , 0x00004144 
+ 00014379  0x00000d8c icopy  0x0000002e 
+ 00014380  0x00000d8d enable  0x00000009 
+ 00014381  0x00000d8e enable  0x0000001c 
+ 00014382  0x00000d8f copy  0x00000020 , 0x00000011 
+ 00014383  0x00000d90 call  0x00003979 
+ 00014384  0x00000d91 pulse  0x00000015 
+ 00014385  0x00000d92 nop  0x00000020 
+ 00014386  0x00000d93 copy  0x00000021 , 0x0000000b 
+ 00014387  0x00000d94 fetch  0x00000004 , 0x00000160 
+ 00014388  0x00000d95 icopy  0x00000021 
+ 00014389  0x00000d96 preload  0x0000001e 
+ 00014390  0x00000d97 set1  0x0000003a , 0x0000003f 
+ 00014391  0x00000d98 inject  0x00000003 , 0x00000048 
+ 00014392  0x00000d99 preload  0x0000001f 
+ 00014393  0x00000d9a inject  0x00000003 , 0x00000048 
+ 00014394  0x00000d9b copy  0x0000000b , 0x00000021 
+ 00014395  0x00000d9c copy  0x00000011 , 0x00000020 
+ 00014396  0x00000d9d enable  0x00000008 
+ 00014397  0x00000d9e inject  0x00000003 , 0x00000010 
+ 00014398  0x00000d9f disable  0x00000008 
+ 00014399  0x00000da0 branch  0x000036c6 
+ 00014400  0x00000da3 set0  0x00000025 , 0x00000000 
+ 00014401  0x00000da4 bpatch  0x00000079 , 0x0000400f 
+ 00014402  0x00000da5 enable  0x0000000e 
+ 00014403  0x00000da6 enable  0x00000009 
+ 00014404  0x00000da7 enable  0x0000001c 
+ 00014405  0x00000da8 fetch  0x00000001 , 0x000003dc 
+ 00014406  0x00000da9 and  0x0000003f , 0x000001f8 , 0x00000002 
+ 00014407  0x00000daa arg  0x000003dc , 0x00000006 
+ 00014408  0x00000dab increase  0x00000008 , 0x00000002 
+ 00014409  0x00000dad add  0x00000002 , 0xffffffb8 , 0x00000013 
+ 00014410  0x00000dae nbranch  0x0000384f , 0x00000002 
+ 00014411  0x00000daf ifetch  0x00000009 , 0x00000006 
+ 00014412  0x00000db0 inject  0x00000003 , 0x00000048 
+ 00014413  0x00000db1 copy  0x00000013 , 0x00000002 
+ 00014414  0x00000db2 branch  0x00003849 
+ 00014415  0x00000db4 ifetch  0x00000009 , 0x00000006 
+ 00014416  0x00000db5 iinject  0x00000003 , 0x00000002 
+ 00014417  0x00000db6 branch  0x00003885 
+ 00014418  0x00000db9 enable  0x0000001c 
+ 00014419  0x00000dba branch  0x0000385d 
+ 00014420  0x00000dbd enable  0x0000001c 
+ 00014421  0x00000dbe set1  0x00000010 , 0x00000000 
+ 00014422  0x00000dbf branch  0x0000385d 
+ 00014423  0x00000dc2 set1  0x00000002 , 0x00000015 
+ 00014424  0x00000dc4 enable  0x0000001d 
+ 00014425  0x00000dc5 branch  0x0000385d 
+ 00014426  0x00000dc9 set1  0x00000002 , 0x00000015 
+ 00014427  0x00000dca enable  0x0000001d 
+ 00014428  0x00000dcb set1  0x00000010 , 0x00000000 
+ 00014429  0x00000dce set0  0x00000025 , 0x00000000 
+ 00014430  0x00000dcf bpatch  0x0000007a , 0x0000400f 
+ 00014431  0x00000dd0 fetch  0x00000001 , 0x0000004c 
+ 00014432  0x00000dd1 bbit0  0x00000005 , 0x00003873 
+ 00014433  0x00000dd2 sub  0x00000001 , 0x00000003 , 0x0000003e 
+ 00014434  0x00000dd3 branch  0x00003873 , 0x00000002 
+ 00014435  0x00000dd4 disable  0x0000000e 
+ 00014436  0x00000dd5 disable  0x0000001c 
+ 00014437  0x00000dd6 enable  0x0000001d 
+ 00014438  0x00000dd7 disable  0x00000007 
+ 00014439  0x00000dd8 set1  0x00000001 , 0x00000015 
+ 00014440  0x00000dd9 isolate1  0x00000002 , 0x00000015 
+ 00014441  0x00000dda branch  0x0000386d , 0x00000001 
+ 00014442  0x00000ddb setarg  0x000abeee 
+ 00014443  0x00000ddc inject  0x00000003 , 0x00000014 
+ 00014444  0x00000ddd branch  0x00003871 
+ 00014445  0x00000ddf setarg  0x005faeba 
+ 00014446  0x00000de0 inject  0x00000003 , 0x00000018 
+ 00014447  0x00000de1 setarg  0x00000012 
+ 00014448  0x00000de2 inject  0x00000003 , 0x00000006 
+ 00014449  0x00000de4 enable  0x00000007 
+ 00014450  0x00000de5 set1  0x00000010 , 0x00000000 
+ 00014451  0x00000de7 enable  0x0000000e 
+ 00014452  0x00000de8 enable  0x00000009 
+ 00014453  0x00000de9 bmark1  0x00000005 , 0x0000388e 
+ 00014454  0x00000dea fetch  0x00000001 , 0x0000427d 
+ 00014455  0x00000deb inject  0x00000003 , 0x00000003 
+ 00014456  0x00000dec fetch  0x00000002 , 0x0000427e 
+ 00014457  0x00000ded iforce  0x00000039 
+ 00014458  0x00000dee bmark1  0x00000010 , 0x0000387d 
+ 00014459  0x00000def inject  0x00000003 , 0x00000005 
+ 00014460  0x00000df0 branch  0x0000387e 
+ 00014461  0x00000df2 inject  0x00000003 , 0x0000000d 
+ 00014462  0x00000df4 deposit  0x00000039 
+ 00014463  0x00000df5 branch  0x00003885 , 0x00000034 
+ 00014464  0x00000df6 fetch  0x00000002 , 0x0000016e 
+ 00014465  0x00000df7 iforce  0x00000006 
+ 00014466  0x00000df9 ifetch  0x00000001 , 0x00000006 
+ 00014467  0x00000dfa inject  0x00000003 , 0x00000008 
+ 00014468  0x00000dfb loop  0x00003882 
+ 00014469  0x00000dff enable  0x00000008 
+ 00014470  0x00000e00 inject  0x00000003 , 0x00000010 
+ 00014471  0x00000e01 disable  0x00000008 
+ 00014472  0x00000e02 call  0x00003523 
+ 00014473  0x00000e03 fetch  0x00000001 , 0x0000004c 
+ 00014474  0x00000e04 bbit0  0x00000005 , 0x000036c6 
+ 00014475  0x00000e05 force  0x00000000 , 0x0000003f 
+ 00014476  0x00000e06 inject  0x00000003 , 0x00000006 
+ 00014477  0x00000e07 branch  0x000036c6 
+ 00014478  0x00000e0b set0  0x00000025 , 0x00000000 
+ 00014479  0x00000e0c bpatch  0x0000007b , 0x0000400f 
+ 00014480  0x00000e0d bmark1  0x00000010 , 0x00003897 
+ 00014481  0x00000e0f fetch  0x00000001 , 0x0000017f 
+ 00014482  0x00000e10 inject  0x00000003 , 0x00000003 
+ 00014483  0x00000e11 fetch  0x00000001 , 0x0000015e 
+ 00014484  0x00000e12 iforce  0x00000013 
+ 00014485  0x00000e13 inject  0x00000003 , 0x00000005 
+ 00014486  0x00000e14 branch  0x0000389c 
+ 00014487  0x00000e16 fetch  0x00000001 , 0x0000017f 
+ 00014488  0x00000e17 inject  0x00000003 , 0x00000003 
+ 00014489  0x00000e18 fetch  0x00000002 , 0x0000015e 
+ 00014490  0x00000e19 iforce  0x00000013 
+ 00014491  0x00000e1a inject  0x00000003 , 0x0000000d 
+ 00014492  0x00000e1c arg  0x00000475 , 0x00000006 
+ 00014493  0x00000e1e copy  0x00000013 , 0x0000003e 
+ 00014494  0x00000e1f branch  0x000038a3 , 0x00000005 
+ 00014495  0x00000e20 ifetch  0x00000001 , 0x00000006 
+ 00014496  0x00000e21 inject  0x00000003 , 0x00000008 
+ 00014497  0x00000e22 increase  0xffffffff , 0x00000013 
+ 00014498  0x00000e23 branch  0x0000389d 
+ 00014499  0x00000e25 fetch  0x00000002 , 0x000000fb 
+ 00014500  0x00000e26 increase  0x00000001 , 0x0000003f 
+ 00014501  0x00000e27 store  0x00000002 , 0x000000fb 
+ 00014502  0x00000e28 branch  0x00003885 
+ 00014503  0x00000e2c fetch  0x00000004 , 0x00000164 
+ 00014504  0x00000e2d add  0x0000003f , 0x00000007 , 0x00000011 
+ 00014505  0x00000e2e fetch  0x00000002 , 0x00000170 
+ 00014506  0x00000e2f nbranch  0x000038ad , 0x00000034 
+ 00014507  0x00000e30 increase  0xfffffffd , 0x00000011 
+ 00014508  0x00000e31 branch  0x000038b5 
+ 00014509  0x00000e33 mul32  0x0000003f , 0x0000000c , 0x0000003f 
+ 00014510  0x00000e34 hfetcht  0x00000002 , 0x00008040 
+ 00014511  0x00000e35 increase  0x00000001 , 0x00000002 
+ 00014512  0x00000e37 isub  0x00000002 , 0x0000003f 
+ 00014513  0x00000e38 nbranch  0x000038b4 , 0x00000002 
+ 00014514  0x00000e39 increase  0xffffffff , 0x00000011 
+ 00014515  0x00000e3a branch  0x000038b0 
+ 00014516  0x00000e3c sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00014517  0x00000e3e until  0x0000003e , 0x00000023 
+ 00014518  0x00000e3f compare  0x00000000 , 0x00000022 , 0x00000003 
+ 00014519  0x00000e40 nbranch  0x000038b5 , 0x00000001 
+ 00014520  0x00000e41 iforce  0x00000029 
+ 00014521  0x00000e42 copy  0x00000011 , 0x00000028 
+ 00014522  0x00000e43 iforce  0x00000029 
+ 00014523  0x00000e44 rtn 
+ 00014524  0x00000e48 set0  0x00000025 , 0x00000000 
+ 00014525  0x00000e49 bpatch  0x0000007c , 0x0000400f 
+ 00014526  0x00000e4a until  0x0000003e , 0x00000022 
+ 00014527  0x00000e4b deposit  0x0000001a 
+ 00014528  0x00000e4c iforce  0x00000006 
+ 00014529  0x00000e4d rshift16 , 0x0000003f , 0x0000003f 
+ 00014530  0x00000e4e isub  0x00000022 , 0x00000039 
+ 00014531  0x00000e4f and_into  0x00000003 , 0x00000039 
+ 00014532  0x00000e50 nbranch  0x000038c7 , 0x00000005 
+ 00014533  0x00000e51 force  0x00000000 , 0x0000003f 
+ 00014534  0x00000e52 branch  0x000038cb 
+ 00014535  0x00000e54 arg  0x00000ea6 , 0x00000002 
+ 00014536  0x00000e55 force  0x00000000 , 0x0000003f 
+ 00014537  0x00000e57 iadd  0x00000002 , 0x0000003f 
+ 00014538  0x00000e58 loop  0x000038c9 
+ 00014539  0x00000e5a iadd  0x00000006 , 0x0000003f 
+ 00014540  0x00000e5b div  0x0000003f , 0x0000000c 
+ 00014541  0x00000e5c call  0x00007f53 
+ 00014542  0x00000e5d quotient  0x0000003f 
+ 00014543  0x00000e5e store  0x00000002 , 0x00000170 
+ 00014544  0x00000e5f rtn 
+ 00014545  0x00000e62 set0  0x00000025 , 0x00000000 
+ 00014546  0x00000e63 bpatch  0x0000007d , 0x0000400f 
+ 00014547  0x00000e64 deposit  0x0000001a 
+ 00014548  0x00000e65 copy  0x00000019 , 0x00000002 
+ 00014549  0x00000e66 isub  0x00000002 , 0x0000003e 
+ 00014550  0x00000e67 nsetflag  0x00000002 , 0x0000002c , 0x0000003f 
+ 00014551  0x00000e68 isub  0x00000002 , 0x00000002 
+ 00014552  0x00000e69 setarg  0x00000ea6 
+ 00014553  0x00000e6a isolate0  0x0000000f , 0x00000002 
+ 00014554  0x00000e6b branch  0x000038dd , 0x00000001 
+ 00014555  0x00000e6c setarg  0xffff0ea6 
+ 00014556  0x00000e6d iadd  0x00000002 , 0x00000002 
+ 00014557  0x00000e6f storet  0x00000006 , 0x0000036a 
+ 00014558  0x00000e70 rtn  0x00000036 
+ 00014559  0x00000e71 storet  0x00000006 , 0x00000038 
+ 00014560  0x00000e72 rtn 
+ 00014561  0x00000e75 disable  0x00000030 
+ 00014562  0x00000e76 fetch  0x00000006 , 0x0000036a 
+ 00014563  0x00000e77 branch  0x000038e5 , 0x00000036 
+ 00014564  0x00000e78 fetch  0x00000006 , 0x00000038 
+ 00014565  0x00000e7a iadd  0x00000019 , 0x00000030 
+ 00014566  0x00000e7b increase  0x0000000a , 0x00000030 
+ 00014567  0x00000e7c setarg  0x00000ea6 
+ 00014568  0x00000e7d isub  0x00000030 , 0x0000003f 
+ 00014569  0x00000e7e isolate0  0x0000000f , 0x0000003f 
+ 00014570  0x00000e7f branch  0x000038ef , 0x00000001 
+ 00014571  0x00000e80 setarg  0x0000f15a 
+ 00014572  0x00000e81 iadd  0x00000030 , 0x00000030 
+ 00014573  0x00000e83 copy  0x00000030 , 0x0000001a 
+ 00014574  0x00000e84 rtn 
+ 00014575  0x00000e86 force  0x00000000 , 0x0000003e 
+ 00014576  0x00000e87 branch  0x000038ed 
+ 00014577  0x00000e8f set0  0x00000025 , 0x00000000 
+ 00014578  0x00000e90 bpatch  0x0000007e , 0x0000400f 
+ 00014579  0x00000e91 call  0x000039b1 
+ 00014580  0x00000e92 copy  0x00000021 , 0x0000003f 
+ 00014581  0x00000e93 and_into  0x00000180 , 0x0000003f 
+ 00014582  0x00000e94 compare  0x00000003 , 0x00000024 , 0x00000007 
+ 00014583  0x00000e95 nbranch  0x000038fb , 0x00000001 
+ 00014584  0x00000e96 rshift3  0x0000003f , 0x0000003f 
+ 00014585  0x00000e97 iadd  0x00000017 , 0x0000003f 
+ 00014586  0x00000e98 branch  0x000038fc 
+ 00014587  0x00000e9a copy  0x00000017 , 0x0000003f 
+ 00014588  0x00000e9c div  0x0000003f , 0x0000004f 
+ 00014589  0x00000e9d pulse  0x00000015 
+ 00014590  0x00000e9e call  0x00007f53 
+ 00014591  0x00000e9f remainder  0x00000011 
+ 00014592  0x00000ea0 add  0x00000011 , 0xffffffd8 , 0x00000002 
+ 00014593  0x00000ea1 branch  0x00003904 , 0x00000002 
+ 00014594  0x00000ea2 lshift  0x00000011 , 0x00000002 
+ 00014595  0x00000ea3 branch  0x00003906 
+ 00014596  0x00000ea5 lshift  0x00000002 , 0x00000002 
+ 00014597  0x00000ea6 increase  0x00000001 , 0x00000002 
+ 00014598  0x00000ea8 set0  0x00000025 , 0x00000000 
+ 00014599  0x00000ea9 bpatch  0x0000007f , 0x0000400f 
+ 00014600  0x00000eaa fetch  0x00000001 , 0x00000031 
+ 00014601  0x00000eab bbit0  0x00000003 , 0x00003918 
+ 00014602  0x00000ead fetch  0x00000004 , 0x00004172 
+ 00014603  0x00000eae isub  0x00000021 , 0x0000003e 
+ 00014604  0x00000eaf branch  0x00003918 , 0x00000002 
+ 00014605  0x00000eb0 call  0x00003937 
+ 00014606  0x00000eb1 fetch  0x00000001 , 0x00004179 
+ 00014607  0x00000eb2 rtn  0x00000034 
+ 00014608  0x00000eb3 fetch  0x00000001 , 0x00000031 
+ 00014609  0x00000eb4 set1  0x00000002 , 0x0000003f 
+ 00014610  0x00000eb5 store  0x00000001 , 0x00000031 
+ 00014611  0x00000eb6 fetch  0x00000005 , 0x00004187 
+ 00014612  0x00000eb7 store  0x00000005 , 0x0000417a 
+ 00014613  0x00000eb8 ifetch  0x00000005 , 0x00000006 
+ 00014614  0x00000eb9 store  0x00000005 , 0x0000417f 
+ 00014615  0x00000eba call  0x0000393c 
+ 00014616  0x00000ebc fetch  0x00000001 , 0x00000031 
+ 00014617  0x00000ebd rtnbit0  0x00000002 
+ 00014618  0x00000ebe isolate1  0x00000001 , 0x00000021 
+ 00014619  0x00000ebf branch  0x00003934 , 0x00000001 
+ 00014620  0x00000ec0 rshift3  0x00000002 , 0x00000011 
+ 00014621  0x00000ec1 and  0x00000002 , 0x00000007 , 0x00000007 
+ 00014622  0x00000ec2 setarg  0x0000417a 
+ 00014623  0x00000ec3 iadd  0x00000011 , 0x00000011 
+ 00014624  0x00000ec4 ifetch  0x00000001 , 0x00000011 
+ 00014625  0x00000ec5 qisolate0  0x0000003f 
+ 00014626  0x00000ec6 branch  0x00003925 , 0x00000001 
+ 00014627  0x00000ec7 deposit  0x00000002 
+ 00014628  0x00000ec8 branch  0x00003931 
+ 00014629  0x00000eca fetch  0x00000001 , 0x00004184 
+ 00014630  0x00000ecb iforce  0x00000012 
+ 00014631  0x00000ecc deposit  0x00000021 
+ 00014632  0x00000ecd and_into  0x00000180 , 0x0000003f 
+ 00014633  0x00000ece rshift3  0x0000003f , 0x0000003f 
+ 00014634  0x00000ecf iadd  0x00000017 , 0x0000003f 
+ 00014635  0x00000ed0 idiv  0x00000012 
+ 00014636  0x00000ed1 setarg  0x00004192 
+ 00014637  0x00000ed2 call  0x00007f53 
+ 00014638  0x00000ed3 remainder  0x00000011 
+ 00014639  0x00000ed4 iadd  0x00000011 , 0x00000006 
+ 00014640  0x00000ed5 ifetch  0x00000001 , 0x00000006 
+ 00014641  0x00000ed7 store  0x00000001 , 0x00004185 
+ 00014642  0x00000ed8 iforce  0x00000002 
+ 00014643  0x00000ed9 rtn 
+ 00014644  0x00000edc fetch  0x00000001 , 0x00004185 
+ 00014645  0x00000edd iforce  0x00000002 
+ 00014646  0x00000ede rtn 
+ 00014647  0x00000ee1 fetch  0x00000001 , 0x00000031 
+ 00014648  0x00000ee2 set0  0x00000002 , 0x0000003f 
+ 00014649  0x00000ee3 set0  0x00000003 , 0x0000003f 
+ 00014650  0x00000ee4 store  0x00000001 , 0x00000031 
+ 00014651  0x00000ee5 rtn 
+ 00014652  0x00000eec set0  0x00000025 , 0x00000000 
+ 00014653  0x00000eed bpatch  0x00000080 , 0x00004010 
+ 00014654  0x00000eee arg  0x00004192 , 0x00000005 
+ 00014655  0x00000eef force  0x0000000a , 0x00000039 
+ 00014656  0x00000ef0 call  0x00007e91 
+ 00014657  0x00000ef1 arg  0x00004192 , 0x00000005 
+ 00014658  0x00000ef2 force  0x00000000 , 0x00000013 
+ 00014659  0x00000ef3 force  0x00000002 , 0x00000007 
+ 00014660  0x00000ef5 fetch  0x00000005 , 0x0000417a 
+ 00014661  0x00000ef6 iforce  0x00000002 
+ 00014662  0x00000ef7 compare  0x00000002 , 0x00000007 , 0x000000ff 
+ 00014663  0x00000ef8 branch  0x00003949 , 0x00000001 
+ 00014664  0x00000ef9 rshift  0x00000002 , 0x00000002 
+ 00014665  0x00000efb isolate0  0x00000000 , 0x00000002 
+ 00014666  0x00000efc branch  0x0000394d , 0x00000001 
+ 00014667  0x00000efd deposit  0x00000013 
+ 00014668  0x00000efe istore  0x00000001 , 0x00000005 
+ 00014669  0x00000f00 rshift2  0x00000002 , 0x00000002 
+ 00014670  0x00000f01 increase  0x00000002 , 0x00000013 
+ 00014671  0x00000f02 compare  0x00000028 , 0x00000013 , 0x000000fe 
+ 00014672  0x00000f03 nbranch  0x00003956 , 0x00000001 
+ 00014673  0x00000f04 fetch  0x00000005 , 0x0000417f 
+ 00014674  0x00000f05 iforce  0x00000002 
+ 00014675  0x00000f06 compare  0x00000002 , 0x00000007 , 0x000000ff 
+ 00014676  0x00000f07 branch  0x00003956 , 0x00000001 
+ 00014677  0x00000f08 rshift  0x00000002 , 0x00000002 
+ 00014678  0x00000f0a sub  0x00000013 , 0x0000004e , 0x0000003e 
+ 00014679  0x00000f0b branch  0x00003949 , 0x00000002 
+ 00014680  0x00000f0c force  0x00000001 , 0x00000013 
+ 00014681  0x00000f0d increase  0xffffffff , 0x00000007 
+ 00014682  0x00000f0e nbranch  0x00003944 , 0x00000005 
+ 00014683  0x00000f0f arg  0x00004192 , 0x00000011 
+ 00014684  0x00000f10 deposit  0x00000005 
+ 00014685  0x00000f11 isub  0x00000011 , 0x0000003f 
+ 00014686  0x00000f12 store  0x00000001 , 0x00004184 
+ 00014687  0x00000f13 rtn 
+ 00014688  0x00000f16 set0  0x00000025 , 0x00000000 
+ 00014689  0x00000f17 bpatch  0x00000081 , 0x00004010 
+ 00014690  0x00000f18 call  0x000038f1 
+ 00014691  0x00000f19 fetch  0x00000001 , 0x0000017e 
+ 00014692  0x00000f1a bbit0  0x00000005 , 0x00003966 
+ 00014693  0x00000f1b fetcht  0x00000001 , 0x000003f2 
+ 00014694  0x00000f1d branch  0x000039b9 
+ 00014695  0x00000f21 set0  0x00000025 , 0x00000000 
+ 00014696  0x00000f22 bpatch  0x00000082 , 0x00004010 
+ 00014697  0x00000f23 call  0x000038f1 
+ 00014698  0x00000f24 fetch  0x00000001 , 0x0000017e 
+ 00014699  0x00000f25 bbit0  0x00000004 , 0x0000396d 
+ 00014700  0x00000f26 fetcht  0x00000001 , 0x000003f1 
+ 00014701  0x00000f28 branch  0x000039c9 
+ 00014702  0x00000f2c force  0x00000000 , 0x0000002d 
+ 00014703  0x00000f2d fetch  0x00000003 , 0x00004147 
+ 00014704  0x00000f2e iforce  0x0000002c 
+ 00014705  0x00000f2f rtn 
+ 00014706  0x00000f32 set0  0x00000025 , 0x00000000 
+ 00014707  0x00000f33 bpatch  0x00000083 , 0x00004010 
+ 00014708  0x00000f34 fetch  0x00000001 , 0x00004276 
+ 00014709  0x00000f35 icopy  0x0000002d 
+ 00014710  0x00000f36 fetch  0x00000003 , 0x00004273 
+ 00014711  0x00000f37 icopy  0x0000002c 
+ 00014712  0x00000f38 rtn 
+ 00014713  0x00000f3b set0  0x00000025 , 0x00000000 
+ 00014714  0x00000f3c bpatch  0x00000084 , 0x00004010 
+ 00014715  0x00000f3d fetch  0x00000002 , 0x00004144 
+ 00014716  0x00000f3e icopy  0x0000002e 
+ 00014717  0x00000f3f fetch  0x00000001 , 0x00004143 
+ 00014718  0x00000f40 icopy  0x0000002d 
+ 00014719  0x00000f41 fetch  0x00000003 , 0x00004140 
+ 00014720  0x00000f42 icopy  0x0000002c 
+ 00014721  0x00000f43 rtn 
+ 00014722  0x00000f46 set0  0x00000025 , 0x00000000 
+ 00014723  0x00000f47 bpatch  0x00000085 , 0x00004010 
+ 00014724  0x00000f48 fetch  0x00000002 , 0x00000044 
+ 00014725  0x00000f49 icopy  0x0000002e 
+ 00014726  0x00000f4a fetch  0x00000001 , 0x00000043 
+ 00014727  0x00000f4b icopy  0x0000002d 
+ 00014728  0x00000f4c fetch  0x00000003 , 0x00000040 
+ 00014729  0x00000f4d icopy  0x0000002c 
+ 00014730  0x00000f4e rtn 
+ 00014731  0x00000f52 bmark1  0x00000020 , 0x0000398e 
+ 00014732  0x00000f53 rtnmark0  0x0000001d 
+ 00014733  0x00000f54 rtnmark0  0x0000001f 
+ 00014734  0x00000f56 and_into  0xffffff00 , 0x0000002c 
+ 00014735  0x00000f57 pulse  0x00000015 
+ 00014736  0x00000f58 nop  0x00000020 
+ 00014737  0x00000f59 rtn 
+ 00014738  0x00000f5d set0  0x00000025 , 0x00000000 
+ 00014739  0x00000f5e bpatch  0x00000086 , 0x00004010 
+ 00014740  0x00000f5f branch  0x000039a3 , 0x00000021 
+ 00014741  0x00000f60 hjam  0x000000d4 , 0x00000955 
+ 00014742  0x00000f61 nop  0x00000004 
+ 00014743  0x00000f62 hjam  0x000000d2 , 0x00000955 
+ 00014744  0x00000f63 nop  0x00000004 
+ 00014745  0x00000f64 hjam  0x000000d1 , 0x00000955 
+ 00014746  0x00000f65 nop  0x00000004 
+ 00014747  0x00000f66 fetch  0x00000001 , 0x00004280 
+ 00014748  0x00000f67 bbit1  0x00000000 , 0x000039a1 
+ 00014749  0x00000f68 bbit1  0x00000001 , 0x000039ae 
+ 00014750  0x00000f69 bbit1  0x00000002 , 0x000039a1 
+ 00014751  0x00000f6a bbit1  0x00000003 , 0x000039ae 
+ 00014752  0x00000f6b bbit1  0x00000004 , 0x000039ae 
+ 00014753  0x00000f6e hjam  0x000000d0 , 0x00000955 
+ 00014754  0x00000f6f hjam  0x000000e0 , 0x00000956 
+ 00014755  0x00000f71 force  0x00000000 , 0x00000015 
+ 00014756  0x00000f72 disable  0x00000021 
+ 00014757  0x00000f73 disable  0x00000020 
+ 00014758  0x00000f74 pulse  0x0000001e 
+ 00014759  0x00000f75 hjam  0x00000000 , 0x00008902 
+ 00014760  0x00000f76 hjam  0x00000000 , 0x00008901 
+ 00014761  0x00000f77 hjam  0x00000000 , 0x00008900 
+ 00014762  0x00000f78 hjam  0x00000000 , 0x00008903 
+ 00014763  0x00000f79 hjam  0x00000070 , 0x00008904 
+ 00014764  0x00000f7a hjam  0x00000000 , 0x00008906 
+ 00014765  0x00000f7b rtn 
+ 00014766  0x00000f80 hjam  0x000000d0 , 0x00000955 
+ 00014767  0x00000f81 hjam  0x000000c0 , 0x00000956 
+ 00014768  0x00000f82 branch  0x000039a3 
+ 00014769  0x00000f85 set0  0x00000025 , 0x00000000 
+ 00014770  0x00000f86 bpatch  0x00000087 , 0x00004010 
+ 00014771  0x00000f87 hjam  0x00000000 , 0x00008902 
+ 00014772  0x00000f88 hjam  0x00000000 , 0x00008901 
+ 00014773  0x00000f89 hjam  0x00000018 , 0x00008900 
+ 00014774  0x00000f8a hjam  0x000000a7 , 0x00008903 
+ 00014775  0x00000f8b hjam  0x0000007f , 0x00008904 
+ 00014776  0x00000f8c rtn 
+ 00014777  0x00000f8f set0  0x00000025 , 0x00000000 
+ 00014778  0x00000f90 bpatch  0x00000088 , 0x00004011 
+ 00014779  0x00000f92 storet  0x00000001 , 0x00000017 
+ 00014780  0x00000f93 add  0x00000002 , 0x00000004 , 0x00000011 
+ 00014781  0x00000f94 hjam  0x00000007 , 0x0000096d 
+ 00014782  0x00000f95 branch  0x00003a13 
+ 00014783  0x00000f97 set0  0x00000025 , 0x00000000 
+ 00014784  0x00000f98 bpatch  0x00000089 , 0x00004011 
+ 00014785  0x00000f99 hjam  0x000000cf , 0x00008901 
+ 00014786  0x00000f9a nop  0x0000000a 
+ 00014787  0x00000f9b hjam  0x000000ff , 0x00008900 
+ 00014788  0x00000f9c hjam  0x000000af , 0x00008903 
+ 00014789  0x00000f9d hjam  0x000000ff , 0x00008904 
+ 00014790  0x00000f9e nop  0x0000000a 
+ 00014791  0x00000f9f hjam  0x000000a0 , 0x00008902 
+ 00014792  0x00000fa0 rtn 
+ 00014793  0x00000fa4 set0  0x00000025 , 0x00000000 
+ 00014794  0x00000fa5 bpatch  0x0000008a , 0x00004011 
+ 00014795  0x00000fa6 storet  0x00000001 , 0x00000017 
+ 00014796  0x00000fa7 add  0x00000002 , 0x00000000 , 0x00000011 
+ 00014797  0x00000fa8 call  0x00003a13 
+ 00014798  0x00000fa9 setarg  0x00000500 
+ 00014799  0x00000faa call  0x00003b35 
+ 00014800  0x00000fac hjam  0x00000001 , 0x00008906 
+ 00014801  0x00000fad hjam  0x0000003c , 0x00008900 
+ 00014802  0x00000fae hjam  0x000000e0 , 0x00008901 
+ 00014803  0x00000faf hjam  0x00000012 , 0x0000096d 
+ 00014804  0x00000fb0 nop  0x0000000a 
+ 00014805  0x00000fb1 hjam  0x00000001 , 0x00008902 
+ 00014806  0x00000fb2 hjam  0x0000003d , 0x00008902 
+ 00014807  0x00000fb3 nop  0x0000000a 
+ 00014808  0x00000fb4 hjam  0x000000b7 , 0x00008903 
+ 00014809  0x00000fb5 nop  0x0000000a 
+ 00014810  0x00000fb6 hjam  0x0000007f , 0x00008902 
+ 00014811  0x00000fb7 fetch  0x00000001 , 0x00004280 
+ 00014812  0x00000fb8 bbit1  0x00000000 , 0x000039e1 
+ 00014813  0x00000fb9 bbit1  0x00000001 , 0x000039e5 
+ 00014814  0x00000fba bbit1  0x00000002 , 0x000039e9 
+ 00014815  0x00000fbb bbit1  0x00000003 , 0x000039ed 
+ 00014816  0x00000fbc bbit1  0x00000004 , 0x000039f1 
+ 00014817  0x00000fbe hjam  0x000000f0 , 0x00000956 
+ 00014818  0x00000fbf call  0x000039f5 
+ 00014819  0x00000fc0 hjam  0x000000d8 , 0x00000955 
+ 00014820  0x00000fc1 rtn 
+ 00014821  0x00000fc4 hjam  0x000000df , 0x00000956 
+ 00014822  0x00000fc5 call  0x000039f5 
+ 00014823  0x00000fc6 hjam  0x000000df , 0x00000955 
+ 00014824  0x00000fc7 rtn 
+ 00014825  0x00000fca hjam  0x000000ff , 0x00000956 
+ 00014826  0x00000fcb call  0x000039f5 
+ 00014827  0x00000fcc hjam  0x000000df , 0x00000955 
+ 00014828  0x00000fcd rtn 
+ 00014829  0x00000fcf hjam  0x000000ce , 0x00000956 
+ 00014830  0x00000fd0 call  0x000039f5 
+ 00014831  0x00000fd1 hjam  0x000000d8 , 0x00000955 
+ 00014832  0x00000fd2 rtn 
+ 00014833  0x00000fd5 hjam  0x000000cb , 0x00000956 
+ 00014834  0x00000fd6 call  0x000039f5 
+ 00014835  0x00000fd7 hjam  0x000000d8 , 0x00000955 
+ 00014836  0x00000fd8 rtn 
+ 00014837  0x00000fdb nop  0x00000004 
+ 00014838  0x00000fdc hjam  0x000000d1 , 0x00000955 
+ 00014839  0x00000fdd nop  0x00000004 
+ 00014840  0x00000fde hjam  0x000000d2 , 0x00000955 
+ 00014841  0x00000fdf nop  0x00000004 
+ 00014842  0x00000fe0 hjam  0x000000d4 , 0x00000955 
+ 00014843  0x00000fe1 rtn 
+ 00014844  0x00000fe5 hjam  0x00000006 , 0x00008042 
+ 00014845  0x00000fe6 call  0x00003b64 
+ 00014846  0x00000fe8 fetch  0x00000002 , 0x00004163 
+ 00014847  0x00000fe9 bbit0  0x0000000e , 0x000039fe 
+ 00014848  0x00000fea iforce  0x00000006 
+ 00014849  0x00000feb arg  0x00008900 , 0x00000002 
+ 00014850  0x00000fed ifetch  0x00000001 , 0x00000006 
+ 00014851  0x00000fee beq  0x000000ff , 0x00003a08 
+ 00014852  0x00000fef ior  0x00000002 , 0x00000005 
+ 00014853  0x00000ff0 ifetch  0x00000001 , 0x00000006 
+ 00014854  0x00000ff1 istore  0x00000001 , 0x00000005 
+ 00014855  0x00000ff2 branch  0x00003a02 
+ 00014856  0x00000ff4 set0  0x00000025 , 0x00000000 
+ 00014857  0x00000ff5 bpatch  0x0000008b , 0x00004011 
+ 00014858  0x00000ff6 call  0x00003cd2 
+ 00014859  0x00000ff7 call  0x00003a5f 
+ 00014860  0x00000ff9 setarg  0x000007d0 
+ 00014861  0x00000ffa iadd  0x00000022 , 0x0000003f 
+ 00014862  0x00000ffb store  0x00000004 , 0x00000168 
+ 00014863  0x00000ffc set1  0x00000003 , 0x00000015 
+ 00014864  0x00000ffd force  0x00000000 , 0x00000015 
+ 00014865  0x00000ffe ncall  0x00003a2b , 0x0000002b 
+ 00014866  0x00000fff branch  0x00003a3f 
+ 00014867  0x00001003 set0  0x00000025 , 0x00000000 
+ 00014868  0x00001004 bpatch  0x0000008c , 0x00004011 
+ 00014869  0x00001005 setarg  0x00000960 
+ 00014870  0x00001006 iadd  0x00000011 , 0x00000002 
+ 00014871  0x00001007 fetch  0x00000001 , 0x0000415d 
+ 00014872  0x00001008 hjam  0x00000004 , 0x0000895f 
+ 00014873  0x00001009 imul32  0x00000002 , 0x0000003f 
+ 00014874  0x0000100a fetcht  0x00000001 , 0x0000415e 
+ 00014875  0x0000100b idiv  0x00000002 
+ 00014876  0x0000100c call  0x00007f53 
+ 00014877  0x0000100d quotient  0x00000011 
+ 00014878  0x0000100e remainder  0x0000003f 
+ 00014879  0x0000100f lshift16  0x0000003f , 0x0000003f 
+ 00014880  0x00001010 lshift4  0x0000003f , 0x0000003f 
+ 00014881  0x00001011 idiv  0x00000002 
+ 00014882  0x00001012 call  0x00007f53 
+ 00014883  0x00001013 quotient  0x0000003f 
+ 00014884  0x00001014 lshift8  0x0000003f , 0x0000003f 
+ 00014885  0x00001015 lshift  0x0000003f , 0x0000003f 
+ 00014886  0x00001016 ior  0x00000011 , 0x0000003f 
+ 00014887  0x00001017 hstore  0x00000004 , 0x00008960 
+ 00014888  0x00001018 hjam  0x00000044 , 0x0000895f 
+ 00014889  0x00001019 hjam  0x000000c4 , 0x0000895f 
+ 00014890  0x0000101a rtn 
+ 00014891  0x0000101e set0  0x00000025 , 0x00000000 
+ 00014892  0x0000101f bpatch  0x0000008d , 0x00004011 
+ 00014893  0x00001020 hjam  0x00000002 , 0x00008906 
+ 00014894  0x00001021 setarg  0x0003d090 
+ 00014895  0x00001022 call  0x00003b35 
+ 00014896  0x00001023 hjam  0x0000007f , 0x00008900 
+ 00014897  0x00001024 nop  0x00000082 
+ 00014898  0x00001025 hjam  0x00000030 , 0x00008952 
+ 00014899  0x00001026 hjam  0x000000d0 , 0x00008901 
+ 00014900  0x00001027 hjam  0x00000070 , 0x00008952 
+ 00014901  0x00001028 hjam  0x000000f0 , 0x00008952 
+ 00014902  0x00001029 force  0x00000032 , 0x00000039 
+ 00014903  0x0000102b hfetch  0x00000001 , 0x00008980 
+ 00014904  0x0000102c bbit1  0x00000005 , 0x00003a3a 
+ 00014905  0x0000102d loop  0x00003a37 
+ 00014906  0x0000102f store  0x00000001 , 0x0000416e 
+ 00014907  0x00001030 hjam  0x00000000 , 0x00008901 
+ 00014908  0x00001031 hjam  0x00000000 , 0x00008900 
+ 00014909  0x00001032 hjam  0x00000000 , 0x00008906 
+ 00014910  0x00001033 rtn 
+ 00014911  0x00001036 set0  0x00000025 , 0x00000000 
+ 00014912  0x00001037 bpatch  0x0000008e , 0x00004011 
+ 00014913  0x00001038 fetch  0x00000001 , 0x0000416e 
+ 00014914  0x00001039 set1  0x00000005 , 0x0000003f 
+ 00014915  0x0000103a hstore  0x00000001 , 0x00008952 
+ 00014916  0x0000103b hfetcht  0x00000001 , 0x00008950 
+ 00014917  0x0000103c and_into  0x00000007 , 0x00000002 
+ 00014918  0x0000103d lshift3  0x0000003f , 0x0000003f 
+ 00014919  0x0000103e ior  0x00000002 , 0x0000003f 
+ 00014920  0x0000103f hstore  0x00000001 , 0x00008950 
+ 00014921  0x00001040 hfetch  0x00000001 , 0x00008951 
+ 00014922  0x00001041 set0  0x00000000 , 0x0000003f 
+ 00014923  0x00001042 hstore  0x00000001 , 0x00008951 
+ 00014924  0x00001043 hfetch  0x00000001 , 0x00008952 
+ 00014925  0x00001044 set0  0x00000005 , 0x0000003f 
+ 00014926  0x00001045 hstore  0x00000001 , 0x00008952 
+ 00014927  0x00001046 rtn 
+ 00014928  0x00001049 set0  0x00000025 , 0x00000000 
+ 00014929  0x0000104a bpatch  0x0000008f , 0x00004011 
+ 00014930  0x0000104b hfetch  0x00000002 , 0x00008981 
+ 00014931  0x0000104c rshift4  0x0000003f , 0x0000003f 
+ 00014932  0x0000104d rshift3  0x0000003f , 0x0000003f 
+ 00014933  0x0000104e sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00014934  0x0000104f and_into  0x000000ff , 0x0000003f 
+ 00014935  0x00001050 div  0x0000003f , 0x0000000a 
+ 00014936  0x00001051 call  0x00007f53 
+ 00014937  0x00001052 quotient  0x0000003f 
+ 00014938  0x00001053 lshift4  0x0000003f , 0x0000003f 
+ 00014939  0x00001054 remainder  0x00000002 
+ 00014940  0x00001055 ior  0x00000002 , 0x0000003f 
+ 00014941  0x00001056 store  0x00000001 , 0x00000018 
+ 00014942  0x00001057 rtn 
+ 00014943  0x0000105b hjam  0x00000006 , 0x00008042 
+ 00014944  0x0000105c hfetch  0x00000001 , 0x0000896b 
+ 00014945  0x0000105d set0  0x00000004 , 0x0000003f 
+ 00014946  0x0000105e set0  0x00000005 , 0x0000003f 
+ 00014947  0x0000105f hstore  0x00000001 , 0x0000896b 
+ 00014948  0x00001060 hjam  0x00000000 , 0x00008905 
+ 00014949  0x00001061 hjam  0x00000000 , 0x00008904 
+ 00014950  0x00001062 hjam  0x00000070 , 0x00008904 
+ 00014951  0x00001063 hjam  0x000000ff , 0x00008905 
+ 00014952  0x00001064 hfetch  0x00000001 , 0x0000896b 
+ 00014953  0x00001065 set1  0x00000004 , 0x0000003f 
+ 00014954  0x00001066 set1  0x00000005 , 0x0000003f 
+ 00014955  0x00001067 hstore  0x00000001 , 0x0000896b 
+ 00014956  0x00001068 call  0x00003a7d 
+ 00014957  0x00001069 hfetch  0x00000001 , 0x00008968 
+ 00014958  0x0000106a set1  0x00000007 , 0x0000003f 
+ 00014959  0x0000106b hstore  0x00000001 , 0x00008968 
+ 00014960  0x0000106c set0  0x00000007 , 0x0000003f 
+ 00014961  0x0000106d hstore  0x00000001 , 0x00008968 
+ 00014962  0x0000106e set1  0x00000007 , 0x0000003f 
+ 00014963  0x0000106f hstore  0x00000001 , 0x00008968 
+ 00014964  0x00001071 hjam  0x00000004 , 0x00008042 
+ 00014965  0x00001072 hfetch  0x00000001 , 0x0000896b 
+ 00014966  0x00001073 and_into  0x000000cf , 0x0000003f 
+ 00014967  0x00001074 hstore  0x00000001 , 0x0000896b 
+ 00014968  0x00001075 or_into  0x00000030 , 0x0000003f 
+ 00014969  0x00001076 hstore  0x00000001 , 0x0000896b 
+ 00014970  0x00001077 rtn 
+ 00014971  0x0000107b setarg  0x00000f0f 
+ 00014972  0x0000107c branch  0x00003ceb 
+ 00014973  0x0000107f setarg  0x0000080f 
+ 00014974  0x00001080 branch  0x00003ceb 
+ 00014975  0x00001085 set0  0x00000025 , 0x00000000 
+ 00014976  0x00001086 bpatch  0x00000090 , 0x00004012 
+ 00014977  0x00001087 call  0x000039bf 
+ 00014978  0x00001088 disable  0x00000020 
+ 00014979  0x00001089 enable  0x00000021 
+ 00014980  0x0000108a pulse  0x00000016 
+ 00014981  0x0000108b rtn 
+ 00014982  0x0000108e set0  0x00000025 , 0x00000000 
+ 00014983  0x0000108f bpatch  0x00000091 , 0x00004012 
+ 00014984  0x00001090 fetch  0x00000001 , 0x0000004c 
+ 00014985  0x00001091 isolate1  0x00000002 , 0x0000003f 
+ 00014986  0x00001092 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00014987  0x00001093 hstore  0x00000001 , 0x00008011 
+ 00014988  0x00001094 arg  0x00000062 , 0x00000006 
+ 00014989  0x00001095 ifetch  0x00000009 , 0x00000006 
+ 00014990  0x00001096 iforce  0x00000032 
+ 00014991  0x00001097 ifetch  0x00000007 , 0x00000006 
+ 00014992  0x00001098 iforce  0x00000033 
+ 00014993  0x00001099 fetch  0x00000001 , 0x00000054 
+ 00014994  0x0000109a add  0x0000003f , 0xffffffff , 0x00000034 
+ 00014995  0x0000109b pulse  0x0000001a 
+ 00014996  0x0000109c rtn 
+ 00014997  0x0000109f deposit  0x0000001a 
+ 00014998  0x000010a0 store  0x00000006 , 0x00000099 
+ 00014999  0x000010a1 disable  0x0000000d 
+ 00015000  0x000010a2 nbranch  0x00003992 , 0x00000018 
+ 00015001  0x000010a3 arg  0x000003bb , 0x00000029 
+ 00015002  0x000010a4 increase  0x00000001 , 0x00000028 
+ 00015003  0x000010a5 and_into  0x000001fc , 0x00000028 
+ 00015004  0x000010a6 rtn 
+ 00015005  0x000010ab enable  0x0000000d 
+ 00015006  0x000010ad correlate  0x0000003e , 0x00000017 
+ 00015007  0x000010ae branch  0x00003a95 , 0x00000018 
+ 00015008  0x000010af compare  0x00000002 , 0x00000028 , 0x00000002 
+ 00015009  0x000010b0 nbranch  0x00003a9e , 0x00000001 
+ 00015010  0x000010b1 branch  0x00003a95 
+ 00015011  0x000010b4 set0  0x00000025 , 0x00000000 
+ 00015012  0x000010b5 bpatch  0x00000092 , 0x00004012 
+ 00015013  0x000010b6 arg  0x00000600 , 0x0000000b 
+ 00015014  0x000010b7 enable  0x0000000d 
+ 00015015  0x000010b8 correlate  0x00000023 , 0x00000026 
+ 00015016  0x000010b9 disable  0x0000000d 
+ 00015017  0x000010ba nbranch  0x00003992 , 0x00000018 
+ 00015018  0x000010bb rtn 
+ 00015019  0x000010be set0  0x00000025 , 0x00000000 
+ 00015020  0x000010bf bpatch  0x00000093 , 0x00004012 
+ 00015021  0x000010c0 enable  0x0000000d 
+ 00015022  0x000010c1 correlate  0x0000003e , 0x00000003 
+ 00015023  0x000010c2 disable  0x0000000d 
+ 00015024  0x000010c3 nbranch  0x00003992 , 0x00000018 
+ 00015025  0x000010c4 arg  0x000003bb , 0x00000029 
+ 00015026  0x000010c5 and_into  0x000001fc , 0x00000028 
+ 00015027  0x000010c6 rtn 
+ 00015028  0x000010ca set0  0x00000025 , 0x00000000 
+ 00015029  0x000010cb bpatch  0x00000094 , 0x00004012 
+ 00015030  0x000010cc iforce  0x00000011 
+ 00015031  0x000010cd deposit  0x00000021 
+ 00015032  0x000010ce iadd  0x00000002 , 0x0000000b 
+ 00015033  0x000010cf copy  0x0000000b , 0x0000003f 
+ 00015034  0x000010d0 store  0x00000004 , 0x0000416a 
+ 00015035  0x000010d1 deposit  0x00000011 
+ 00015036  0x000010d2 rtn 
+ 00015037  0x000010d6 copy  0x0000003f , 0x00000002 
+ 00015038  0x000010d7 set0  0x00000025 , 0x00000000 
+ 00015039  0x000010d8 bpatch  0x00000095 , 0x00004012 
+ 00015040  0x000010d9 copy  0x00000002 , 0x0000003f 
+ 00015041  0x000010da call  0x00007f1d 
+ 00015042  0x000010db lshift16  0x00000021 , 0x0000003f 
+ 00015043  0x000010dc set1  0x0000002c , 0x0000003f 
+ 00015044  0x000010dd call  0x00007f06 
+ 00015045  0x000010de set0  0x0000002c , 0x0000003f 
+ 00015046  0x000010df call  0x00003b1a 
+ 00015047  0x000010e0 call  0x00007f06 
+ 00015048  0x000010e1 rtn  0x00000028 
+ 00015049  0x000010e2 call  0x00007f10 
+ 00015050  0x000010e3 iforce  0x0000001b 
+ 00015051  0x000010e4 until  0x0000003e , 0x00000003 
+ 00015052  0x000010e5 rtn 
+ 00015053  0x000010e9 set0  0x00000025 , 0x00000000 
+ 00015054  0x000010ea bpatch  0x00000096 , 0x00004012 
+ 00015055  0x000010eb branch  0x00003ad3 , 0x00000030 
+ 00015056  0x000010ec until  0x00000029 , 0x00000026 
+ 00015057  0x000010ee copy  0x00000028 , 0x00000002 
+ 00015058  0x000010ef branch  0x00003ad6 
+ 00015059  0x000010f1 branch  0x00003ad5 , 0x0000002e 
+ 00015060  0x000010f2 until  0x00000023 , 0x00000026 
+ 00015061  0x000010f4 copy  0x00000022 , 0x00000002 
+ 00015062  0x000010f6 branch  0x00003ae3 , 0x00000028 
+ 00015063  0x000010f7 compare  0x00000001 , 0x00000002 , 0x00000003 
+ 00015064  0x000010f8 nbranch  0x00003acd , 0x00000001 
+ 00015065  0x000010fa set0  0x00000025 , 0x00000000 
+ 00015066  0x000010fb bpatch  0x00000097 , 0x00004012 
+ 00015067  0x000010fc fetch  0x00000001 , 0x00000030 
+ 00015068  0x000010fd rtnbit0  0x00000000 
+ 00015069  0x000010fe fetch  0x00000004 , 0x0000416a 
+ 00015070  0x000010ff isub  0x00000002 , 0x0000003f 
+ 00015071  0x00001100 nrtn  0x00000002 
+ 00015072  0x00001101 sub  0x0000003f , 0x000000ff , 0x0000003e 
+ 00015073  0x00001102 branch  0x00003acd , 0x00000002 
+ 00015074  0x00001103 rtn 
+ 00015075  0x00001105 compare  0x00000003 , 0x00000002 , 0x00000003 
+ 00015076  0x00001106 nbranch  0x00003acd , 0x00000001 
+ 00015077  0x00001107 branch  0x00003ad9 
+ 00015078  0x0000110a set0  0x00000025 , 0x00000000 
+ 00015079  0x0000110b bpatch  0x00000098 , 0x00004013 
+ 00015080  0x0000110c arg  0x00000600 , 0x0000000b 
+ 00015081  0x0000110d branch  0x00003acd 
+ 00015082  0x00001110 disable  0x00000028 
+ 00015083  0x00001111 branch  0x00003ae6 
+ 00015084  0x00001114 enable  0x00000028 
+ 00015085  0x00001115 branch  0x00003ae6 
+ 00015086  0x00001118 set0  0x00000025 , 0x00000000 
+ 00015087  0x00001119 bpatch  0x00000099 , 0x00004013 
+ 00015088  0x0000111a call  0x00003a86 
+ 00015089  0x0000111b disable  0x00000021 
+ 00015090  0x0000111c enable  0x00000020 
+ 00015091  0x0000111d rtn 
+ 00015092  0x00001122 set0  0x00000025 , 0x00000000 
+ 00015093  0x00001123 bpatch  0x0000009a , 0x00004013 
+ 00015094  0x00001124 arg  0x00000e43 , 0x0000000b 
+ 00015095  0x00001125 until  0x00000023 , 0x00000026 
+ 00015096  0x00001126 pulse  0x00000016 
+ 00015097  0x00001127 rtn 
+ 00015098  0x0000112a set0  0x00000025 , 0x00000000 
+ 00015099  0x0000112b bpatch  0x0000009b , 0x00004013 
+ 00015100  0x0000112c arg  0x00000d00 , 0x0000000b 
+ 00015101  0x0000112d until  0x00000023 , 0x00000026 
+ 00015102  0x0000112e rtn 
+ 00015103  0x00001132 set0  0x00000025 , 0x00000000 
+ 00015104  0x00001133 bpatch  0x0000009c , 0x00004013 
+ 00015105  0x00001134 arg  0x00000e43 , 0x0000000b 
+ 00015106  0x00001135 until  0x00000029 , 0x00000026 
+ 00015107  0x00001136 pulse  0x00000016 
+ 00015108  0x00001137 rtn 
+ 00015109  0x0000113a set0  0x00000025 , 0x00000000 
+ 00015110  0x0000113b bpatch  0x0000009d , 0x00004013 
+ 00015111  0x0000113c preload  0x00000009 
+ 00015112  0x0000113d enable  0x0000001d 
+ 00015113  0x0000113e set1  0x00000000 , 0x00000015 
+ 00015114  0x0000113f inject  0x00000003 , 0x00000048 
+ 00015115  0x00001140 disable  0x0000001d 
+ 00015116  0x00001141 rtn 
+ 00015117  0x00001145 copy  0x00000025 , 0x00000002 
+ 00015118  0x00001146 or_into  0x00000060 , 0x00000002 
+ 00015119  0x00001147 copy  0x00000002 , 0x0000000e 
+ 00015120  0x00001148 rtn 
+ 00015121  0x0000114e set0  0x00000025 , 0x00000000 
+ 00015122  0x0000114f bpatch  0x0000009e , 0x00004013 
+ 00015123  0x00001150 fetch  0x00000001 , 0x00004130 
+ 00015124  0x00001151 increase  0x00000001 , 0x0000003f 
+ 00015125  0x00001152 bne  0x00000007 , 0x00003b17 
+ 00015126  0x00001153 force  0x00000001 , 0x0000003f 
+ 00015127  0x00001155 store  0x00000001 , 0x00004130 
+ 00015128  0x00001156 iforce  0x00000004 
+ 00015129  0x00001157 rtn 
+ 00015130  0x0000115a copy  0x00000019 , 0x00000002 
+ 00015131  0x0000115b rtn  0x00000029 
+ 00015132  0x0000115c copy  0x0000001a , 0x00000002 
+ 00015133  0x0000115d rtn 
+ 00015134  0x00001160 deposit  0x00000022 
+ 00015135  0x00001161 rtn  0x00000029 
+ 00015136  0x00001162 deposit  0x00000028 
+ 00015137  0x00001163 rtn 
+ 00015138  0x00001167 set0  0x00000025 , 0x00000000 
+ 00015139  0x00001168 bpatch  0x0000009f , 0x00004013 
+ 00015140  0x00001169 fetcht  0x00000004 , 0x0000004d 
+ 00015141  0x0000116a call  0x00003b1e 
+ 00015142  0x0000116b isub  0x00000002 , 0x0000000b 
+ 00015143  0x0000116c deposit  0x0000000b 
+ 00015144  0x0000116d fetcht  0x00000002 , 0x00000051 
+ 00015145  0x0000116e lshift  0x00000002 , 0x00000002 
+ 00015146  0x0000116f isub  0x00000002 , 0x0000003f 
+ 00015147  0x00001170 rtn 
+ 00015148  0x00001173 set0  0x00000025 , 0x00000000 
+ 00015149  0x00001174 bpatch  0x000000a0 , 0x00004014 
+ 00015150  0x00001175 call  0x00003b1e 
+ 00015151  0x00001176 store  0x00000004 , 0x0000004d 
+ 00015152  0x00001177 rtn 
+ 00015153  0x0000117a set0  0x00000025 , 0x00000000 
+ 00015154  0x0000117b bpatch  0x000000a1 , 0x00004014 
+ 00015155  0x0000117c rtn 
+ 00015156  0x0000117f branch  0x00003b34 
+ 00015157  0x00001182 rtn  0x00000034 
+ 00015158  0x00001184 rshift  0x0000003f , 0x0000003f 
+ 00015159  0x00001185 increase  0xfffffffd , 0x0000003f 
+ 00015160  0x00001187 increase  0xffffffff , 0x0000003f 
+ 00015161  0x00001188 nbranch  0x00003b38 , 0x00000005 
+ 00015162  0x00001189 force  0x00000000 , 0x0000003f 
+ 00015163  0x0000118a rtn 
+ 00015164  0x00001190 arg  0x00000010 , 0x00000039 
+ 00015165  0x00001191 arg  0x00000000 , 0x00000005 
+ 00015166  0x00001192 call  0x00007e91 
+ 00015167  0x00001193 arg  0x00000362 , 0x00000005 
+ 00015168  0x00001194 arg  0x0000000a , 0x00000039 
+ 00015169  0x00001195 call  0x00007e91 
+ 00015170  0x00001196 jam  0x00000000 , 0x000008d6 
+ 00015171  0x00001197 jam  0x00000000 , 0x000009bd 
+ 00015172  0x00001198 jam  0x00000000 , 0x000003b0 
+ 00015173  0x00001199 jam  0x00000000 , 0x0000017e 
+ 00015174  0x0000119a jam  0x00000000 , 0x000003f7 
+ 00015175  0x0000119b set0  0x00000025 , 0x00000000 
+ 00015176  0x0000119c bpatch  0x000000a2 , 0x00004014 
+ 00015177  0x0000119d jam  0x00000000 , 0x0000016c 
+ 00015178  0x0000119e jam  0x00000000 , 0x00000150 
+ 00015179  0x0000119f jam  0x00000000 , 0x0000015b 
+ 00015180  0x000011a0 setarg  0x009e8b33 
+ 00015181  0x000011a1 store  0x00000003 , 0x00004147 
+ 00015182  0x000011a2 setarg  0x00000153 
+ 00015183  0x000011a3 store  0x00000002 , 0x00000083 
+ 00015184  0x000011a4 jam  0x0000001e , 0x00000085 
+ 00015185  0x000011a5 jam  0x00000001 , 0x00000086 
+ 00015186  0x000011a6 jam  0x00000007 , 0x00000088 
+ 00015187  0x000011a7 setarg  0x0012e904 
+ 00015188  0x000011a8 store  0x00000003 , 0x00000080 
+ 00015189  0x000011ad jam  0x00000060 , 0x0000008f 
+ 00015190  0x000011ae jam  0x00000005 , 0x00004170 
+ 00015191  0x000011af jam  0x00000002 , 0x00000014 
+ 00015192  0x000011b0 fetch  0x00000001 , 0x000046e2 
+ 00015193  0x000011b1 ncall  0x000071ea , 0x00000034 
+ 00015194  0x000011b2 fetch  0x00000001 , 0x00004563 
+ 00015195  0x000011b3 ncall  0x00007241 , 0x00000034 
+ 00015196  0x000011b4 set0  0x00000025 , 0x00000000 
+ 00015197  0x000011b5 bpatch  0x000000a3 , 0x00004014 
+ 00015198  0x000011b6 rtn  0x0000002b 
+ 00015199  0x000011b7 setarg  0x00000000 
+ 00015200  0x000011b8 store  0x00000002 , 0x0000427e 
+ 00015201  0x000011b9 rshift  0x00000022 , 0x0000003f 
+ 00015202  0x000011ba store  0x00000004 , 0x00004134 
+ 00015203  0x000011bb rtn 
+ 00015204  0x000011be hjam  0x0000001f , 0x00000909 
+ 00015205  0x000011bf hjam  0x00000045 , 0x00000912 
+ 00015206  0x000011c0 hjam  0x00000000 , 0x00000953 
+ 00015207  0x000011c1 hjam  0x00000088 , 0x0000096f 
+ 00015208  0x000011c2 hjam  0x00000030 , 0x00000973 
+ 00015209  0x000011c3 hjam  0x000000c9 , 0x00000956 
+ 00015210  0x000011c5 hjam  0x000000ff , 0x00000907 
+ 00015211  0x000011c6 hjam  0x00000001 , 0x00000908 
+ 00015212  0x000011c7 hjam  0x000000f8 , 0x0000090a 
+ 00015213  0x000011c8 hjam  0x000000ff , 0x0000090b 
+ 00015214  0x000011c9 hjam  0x000000fb , 0x0000091a 
+ 00015215  0x000011ca hjam  0x000000fb , 0x0000091b 
+ 00015216  0x000011cb hjam  0x000000fb , 0x0000091c 
+ 00015217  0x000011cc hjam  0x000000f6 , 0x0000091d 
+ 00015218  0x000011cd hjam  0x000000f2 , 0x0000091e 
+ 00015219  0x000011ce hjam  0x000000ee , 0x0000091f 
+ 00015220  0x000011cf hjam  0x000000ea , 0x00000920 
+ 00015221  0x000011d0 hjam  0x000000e6 , 0x00000921 
+ 00015222  0x000011d1 hjam  0x000000e2 , 0x00000922 
+ 00015223  0x000011d2 hjam  0x000000de , 0x00000923 
+ 00015224  0x000011d3 hjam  0x000000da , 0x00000924 
+ 00015225  0x000011d4 hjam  0x000000d6 , 0x00000925 
+ 00015226  0x000011d5 hjam  0x000000d2 , 0x00000926 
+ 00015227  0x000011d6 hjam  0x000000ce , 0x00000927 
+ 00015228  0x000011d7 hjam  0x000000ca , 0x00000928 
+ 00015229  0x000011d8 hjam  0x000000c6 , 0x00000929 
+ 00015230  0x000011d9 hjam  0x000000c2 , 0x0000092a 
+ 00015231  0x000011da hjam  0x000000bd , 0x0000092b 
+ 00015232  0x000011db hjam  0x000000b9 , 0x0000092c 
+ 00015233  0x000011dc hjam  0x000000b5 , 0x0000092d 
+ 00015234  0x000011dd hjam  0x000000b1 , 0x0000092e 
+ 00015235  0x000011de hjam  0x000000ad , 0x0000092f 
+ 00015236  0x000011df hjam  0x000000a9 , 0x00000930 
+ 00015237  0x000011e0 hjam  0x00000080 , 0x00000931 
+ 00015238  0x000011e1 hjam  0x00000080 , 0x00000932 
+ 00015239  0x000011e2 hjam  0x00000080 , 0x00000933 
+ 00015240  0x000011e3 hjam  0x000000c0 , 0x00000934 
+ 00015241  0x000011e4 hjam  0x000000c1 , 0x00000935 
+ 00015242  0x000011e5 hjam  0x000000c2 , 0x00000936 
+ 00015243  0x000011e6 hjam  0x000000c3 , 0x00000937 
+ 00015244  0x000011e7 hjam  0x000000c4 , 0x00000938 
+ 00015245  0x000011e8 hjam  0x000000c5 , 0x00000939 
+ 00015246  0x000011e9 hjam  0x000000c6 , 0x0000093a 
+ 00015247  0x000011ea hjam  0x000000c7 , 0x0000093b 
+ 00015248  0x000011eb hjam  0x00000006 , 0x0000093c 
+ 00015249  0x000011ec hjam  0x00000007 , 0x0000093d 
+ 00015250  0x000011ed hjam  0x00000046 , 0x0000093e 
+ 00015251  0x000011ee hjam  0x00000085 , 0x0000093f 
+ 00015252  0x000011ef hjam  0x00000086 , 0x00000940 
+ 00015253  0x000011f0 hjam  0x00000087 , 0x00000941 
+ 00015254  0x000011f1 hjam  0x000000c6 , 0x00000942 
+ 00015255  0x000011f2 hjam  0x000000c7 , 0x00000943 
+ 00015256  0x000011f3 hjam  0x000000d6 , 0x00000944 
+ 00015257  0x000011f4 hjam  0x000000d7 , 0x00000945 
+ 00015258  0x000011f5 hjam  0x000000e6 , 0x00000946 
+ 00015259  0x000011f6 hjam  0x000000f5 , 0x00000947 
+ 00015260  0x000011f7 hjam  0x00000000 , 0x00000948 
+ 00015261  0x000011f8 hjam  0x000000f8 , 0x00000949 
+ 00015262  0x000011f9 hjam  0x0000007f , 0x0000094a 
+ 00015263  0x000011fa hjam  0x000000fb , 0x0000094c 
+ 00015264  0x000011fb hjam  0x000000ef , 0x0000094d 
+ 00015265  0x000011fc hjam  0x000000ec , 0x0000094e 
+ 00015266  0x000011fd hjam  0x0000005e , 0x0000094f 
+ 00015267  0x000011fe hjam  0x0000004c , 0x00000957 
+ 00015268  0x000011ff hjam  0x0000006c , 0x00000958 
+ 00015269  0x00001200 hjam  0x00000050 , 0x00000959 
+ 00015270  0x00001201 hjam  0x000000e4 , 0x00000968 
+ 00015271  0x00001202 hjam  0x00000000 , 0x00000969 
+ 00015272  0x00001203 hjam  0x00000000 , 0x0000096a 
+ 00015273  0x00001204 hjam  0x00000030 , 0x0000096b 
+ 00015274  0x00001205 rtn 
+ 00015275  0x0000120f setarg  0x0000ee21 
+ 00015276  0x00001210 hstore  0x00000002 , 0x00008050 
+ 00015277  0x00001211 hfetch  0x00000001 , 0x0000813e 
+ 00015278  0x00001212 bbit0  0x00000003 , 0x0000613b 
+ 00015279  0x00001213 enable  0x0000002b 
+ 00015280  0x00001214 bbit0  0x00000007 , 0x00003bb6 
+ 00015281  0x00001215 disable  0x0000002b 
+ 00015282  0x00001216 deposit  0x00000027 
+ 00015283  0x00001217 nbranch  0x00003bb6 , 0x00000034 
+ 00015284  0x00001218 arg  0xffffffff , 0x00000002 
+ 00015285  0x00001219 branch  0x00003c24 
+ 00015286  0x0000121b hfetch  0x00000003 , 0x0000813c 
+ 00015287  0x0000121c hstore  0x00000003 , 0x0000804c 
+ 00015288  0x0000121d ifetch  0x00000001 , 0x00000006 
+ 00015289  0x0000121e or_into  0x000000ef , 0x0000003f 
+ 00015290  0x0000121f istore  0x00000001 , 0x00000005 
+ 00015291  0x00001220 call  0x00003cf6 
+ 00015292  0x00001221 hfetch  0x00000001 , 0x0000804f 
+ 00015293  0x00001222 set1  0x00000004 , 0x0000003f 
+ 00015294  0x00001223 hstore  0x00000001 , 0x0000804f 
+ 00015295  0x00001224 call  0x00003cf6 
+ 00015296  0x00001225 call  0x00003bc7 , 0x0000002b 
+ 00015297  0x00001226 hfetch  0x00000001 , 0x0000804e 
+ 00015298  0x00001227 set0  0x00000003 , 0x0000003f 
+ 00015299  0x00001228 hstore  0x00000001 , 0x0000804e 
+ 00015300  0x00001229 call  0x00003cf6 
+ 00015301  0x0000122a rtn  0x0000002b 
+ 00015302  0x0000122b branch  0x0000613b 
+ 00015303  0x0000122e fetch  0x00000001 , 0x00004238 
+ 00015304  0x0000122f hstore  0x00000001 , 0x00008086 
+ 00015305  0x00001230 fetch  0x00000003 , 0x0000422d 
+ 00015306  0x00001231 hstore  0x00000003 , 0x00008080 
+ 00015307  0x00001232 fetch  0x00000004 , 0x00004221 
+ 00015308  0x00001233 hstore  0x00000004 , 0x00008074 
+ 00015309  0x00001234 fetch  0x00000004 , 0x0000421d 
+ 00015310  0x00001235 hstore  0x00000004 , 0x00008070 
+ 00015311  0x00001236 fetch  0x00000008 , 0x00004225 
+ 00015312  0x00001237 hstore  0x00000008 , 0x00008078 
+ 00015313  0x00001238 fetch  0x00000008 , 0x00004230 
+ 00015314  0x00001239 iforce  0x00000000 
+ 00015315  0x0000123a hfetch  0x00000008 , 0x00008140 
+ 00015316  0x0000123b store  0x00000008 , 0x000000a0 
+ 00015317  0x0000123c call  0x0000619f 
+ 00015318  0x0000123d rtn 
+ 00015319  0x00001240 deposit  0x00000000 
+ 00015320  0x00001241 store  0x00000008 , 0x00004230 
+ 00015321  0x00001242 hfetch  0x00000008 , 0x00008070 
+ 00015322  0x00001243 store  0x00000008 , 0x0000421d 
+ 00015323  0x00001244 ifetch  0x00000008 , 0x00000006 
+ 00015324  0x00001245 istore  0x00000008 , 0x00000005 
+ 00015325  0x00001246 hfetch  0x00000003 , 0x00008080 
+ 00015326  0x00001247 store  0x00000003 , 0x0000422d 
+ 00015327  0x00001248 hfetch  0x00000001 , 0x00008086 
+ 00015328  0x00001249 store  0x00000001 , 0x00004238 
+ 00015329  0x0000124a branch  0x00003cfc 
+ 00015330  0x0000124d hfetch  0x00000001 , 0x000080b4 
+ 00015331  0x0000124e nbranch  0x00003be8 , 0x00000034 
+ 00015332  0x0000124f fetch  0x00000003 , 0x0000420f 
+ 00015333  0x00001250 nrtn  0x00000034 
+ 00015334  0x00001251 hjam  0x000000c0 , 0x000080b4 
+ 00015335  0x00001252 hjam  0x00000080 , 0x00008006 
+ 00015336  0x00001254 hfetch  0x00000001 , 0x0000812d 
+ 00015337  0x00001255 rtnbit0  0x00000001 
+ 00015338  0x00001256 hfetch  0x00000003 , 0x00008149 
+ 00015339  0x00001257 store  0x00000003 , 0x0000420f 
+ 00015340  0x00001258 rtn 
+ 00015341  0x0000125d set0  0x00000025 , 0x00000000 
+ 00015342  0x0000125e bpatch  0x000000a4 , 0x00004014 
+ 00015343  0x0000125f deposit  0x0000001a 
+ 00015344  0x00001260 call  0x00007f04 
+ 00015345  0x00001261 fetcht  0x00000004 , 0x000041ff 
+ 00015346  0x00001262 sub  0x00000002 , 0x000000ff , 0x0000003e 
+ 00015347  0x00001263 rtn  0x00000002 
+ 00015348  0x00001264 lshift8  0x0000003f , 0x0000003f 
+ 00015349  0x00001265 lshift4  0x0000003f , 0x0000003f 
+ 00015350  0x00001266 idiv  0x00000002 
+ 00015351  0x00001267 call  0x00007f53 
+ 00015352  0x00001268 quotient  0x0000003f 
+ 00015353  0x00001269 arg  0x000000c8 , 0x00000002 
+ 00015354  0x0000126a call  0x00007f5e 
+ 00015355  0x0000126b store  0x00000001 , 0x00000098 
+ 00015356  0x0000126c nbranch  0x00003bfe , 0x00000028 
+ 00015357  0x0000126d sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00015358  0x0000126f fetcht  0x00000003 , 0x0000420f 
+ 00015359  0x00001270 iadd  0x00000002 , 0x0000003f 
+ 00015360  0x00001271 store  0x00000003 , 0x0000420f 
+ 00015361  0x00001273 setarg  0x00000000 
+ 00015362  0x00001274 store  0x00000004 , 0x000041ff 
+ 00015363  0x00001275 rtn 
+ 00015364  0x00001279 set0  0x00000025 , 0x00000000 
+ 00015365  0x0000127a bpatch  0x000000a5 , 0x00004014 
+ 00015366  0x0000127b call  0x00003cfc 
+ 00015367  0x0000127c hfetch  0x00000004 , 0x00008138 
+ 00015368  0x0000127d set0  0x0000000f , 0x0000003f 
+ 00015369  0x0000127e hstore  0x00000004 , 0x0000804c 
+ 00015370  0x0000127f call  0x00003cf4 
+ 00015371  0x00001281 arg  0xffffffff , 0x00000002 
+ 00015372  0x00001282 fetch  0x00000001 , 0x000041f7 
+ 00015373  0x00001283 store  0x00000001 , 0x0000421c 
+ 00015374  0x00001284 fetch  0x00000001 , 0x0000421a 
+ 00015375  0x00001285 set1  0x00000007 , 0x0000003f 
+ 00015376  0x00001286 store  0x00000001 , 0x0000421a 
+ 00015377  0x0000128a set0  0x00000025 , 0x00000000 
+ 00015378  0x0000128b bpatch  0x000000a6 , 0x00004014 
+ 00015379  0x0000128c call  0x00003a7b 
+ 00015380  0x0000128d fetch  0x00000004 , 0x000041ff 
+ 00015381  0x0000128e iadd  0x00000002 , 0x0000003f 
+ 00015382  0x0000128f store  0x00000004 , 0x000041ff 
+ 00015383  0x00001290 call  0x00003bd7 
+ 00015384  0x00001291 fetch  0x00000005 , 0x00004218 
+ 00015385  0x00001292 hstore  0x00000004 , 0x0000804c 
+ 00015386  0x00001293 rshift32  0x0000003f , 0x00000011 
+ 00015387  0x00001294 until  0x0000003e , 0x00000033 
+ 00015388  0x00001295 deposit  0x00000019 
+ 00015389  0x00001296 store  0x00000006 , 0x00004203 
+ 00015390  0x00001297 hjam  0x00000002 , 0x00008005 
+ 00015391  0x00001298 until  0x0000003e , 0x00000033 
+ 00015392  0x00001299 until  0x0000003e , 0x00000033 
+ 00015393  0x0000129a deposit  0x00000011 
+ 00015394  0x0000129b hstore  0x00000001 , 0x0000804f 
+ 00015395  0x0000129c hjam  0x00000002 , 0x00008005 
+ 00015396  0x0000129e until  0x0000003e , 0x00000033 
+ 00015397  0x0000129f until  0x0000003e , 0x00000033 
+ 00015398  0x000012a0 hstoret  0x00000004 , 0x0000804c 
+ 00015399  0x000012a1 hjam  0x00000010 , 0x00008005 
+ 00015400  0x000012a2 until  0x0000003e , 0x0000003f 
+ 00015401  0x000012a8 set0  0x00000025 , 0x00000000 
+ 00015402  0x000012a9 bpatch  0x000000a7 , 0x00004014 
+ 00015403  0x000012aa setarg  0x00000000 
+ 00015404  0x000012ab copy  0x00000027 , 0x0000003e 
+ 00015405  0x000012ac branch  0x00003c35 , 0x00000005 
+ 00015406  0x000012ad hfetch  0x00000001 , 0x0000813c 
+ 00015407  0x000012ae hfetcht  0x00000001 , 0x0000813d 
+ 00015408  0x000012af isub  0x00000002 , 0x0000003e 
+ 00015409  0x000012b0 branch  0x00003c33 , 0x00000002 
+ 00015410  0x000012b1 deposit  0x00000002 
+ 00015411  0x000012b3 isub  0x00000027 , 0x0000003f 
+ 00015412  0x000012b4 increase  0x00000001 , 0x0000003f 
+ 00015413  0x000012b6 increase  0x00000008 , 0x0000003f 
+ 00015414  0x000012b7 until  0x0000003e , 0x00000033 
+ 00015415  0x000012b8 iadd  0x00000031 , 0x0000003f 
+ 00015416  0x000012b9 fetcht  0x00000004 , 0x000041fb 
+ 00015417  0x000012ba iadd  0x00000002 , 0x0000003f 
+ 00015418  0x000012bb fetcht  0x00000003 , 0x0000420f 
+ 00015419  0x000012bc imul32  0x00000002 , 0x0000003f 
+ 00015420  0x000012bd rshift8  0x0000003f , 0x0000003f 
+ 00015421  0x000012be rshift4  0x0000003f , 0x0000003f 
+ 00015422  0x000012bf increase  0x0000006e , 0x0000003f 
+ 00015423  0x000012c0 arg  0x00000ea6 , 0x00000002 
+ 00015424  0x000012c1 idiv  0x00000002 
+ 00015425  0x000012c2 call  0x00007f53 
+ 00015426  0x000012c3 quotient  0x0000003f 
+ 00015427  0x000012c4 lshift16  0x0000003f , 0x0000003f 
+ 00015428  0x000012c5 remainder  0x00000002 
+ 00015429  0x000012c6 ior  0x00000002 , 0x0000003f 
+ 00015430  0x000012c7 fetcht  0x00000006 , 0x00004203 
+ 00015431  0x000012c8 call  0x00007ef9 
+ 00015432  0x000012c9 copy  0x00000002 , 0x00000019 
+ 00015433  0x000012ca fetch  0x00000006 , 0x00004048 
+ 00015434  0x000012cb call  0x000038e5 
+ 00015435  0x000012cc deposit  0x0000001a 
+ 00015436  0x000012cd store  0x00000006 , 0x000009be 
+ 00015437  0x000012ce deposit  0x00000027 
+ 00015438  0x000012cf istore  0x00000001 , 0x00000005 
+ 00015439  0x000012d0 hfetch  0x00000001 , 0x0000811d 
+ 00015440  0x000012d1 or_into  0x000000f0 , 0x0000003f 
+ 00015441  0x000012d2 istore  0x00000001 , 0x00000005 
+ 00015442  0x000012d3 rtn 
+ 00015443  0x000012d6 set0  0x00000025 , 0x00000000 
+ 00015444  0x000012d7 bpatch  0x000000a8 , 0x00004015 
+ 00015445  0x000012d8 call  0x00003be2 
+ 00015446  0x000012d9 fetch  0x00000003 , 0x0000420f 
+ 00015447  0x000012da rtn  0x00000034 
+ 00015448  0x000012db fetch  0x00000001 , 0x00004131 
+ 00015449  0x000012dc rtn  0x00000034 
+ 00015450  0x000012dd fetch  0x00000001 , 0x000046e2 
+ 00015451  0x000012de branch  0x00003c5e , 0x00000034 
+ 00015452  0x000012df fetch  0x00000001 , 0x00004639 
+ 00015453  0x000012e0 rtn  0x00000034 
+ 00015454  0x000012e2 fetch  0x00000001 , 0x00004565 
+ 00015455  0x000012e3 nrtn  0x00000034 
+ 00015456  0x000012e4 call  0x00003d0e 
+ 00015457  0x000012e5 nrtn  0x00000034 
+ 00015458  0x000012e6 fetch  0x00000001 , 0x00004040 
+ 00015459  0x000012e7 compare  0x00000003 , 0x0000003f , 0x00000007 
+ 00015460  0x000012e8 nbranch  0x00003c8a , 0x00000001 
+ 00015461  0x000012e9 fetch  0x00000002 , 0x00004042 
+ 00015462  0x000012ea rtn  0x00000034 
+ 00015463  0x000012eb rtn  0x0000002b 
+ 00015464  0x000012ed set0  0x00000025 , 0x00000000 
+ 00015465  0x000012ee bpatch  0x000000a9 , 0x00004015 
+ 00015466  0x000012ef fetcht  0x00000001 , 0x0000009f 
+ 00015467  0x000012f0 fetch  0x00000002 , 0x00004042 
+ 00015468  0x000012f1 imul32  0x00000002 , 0x0000003f 
+ 00015469  0x000012f2 rshift4  0x00000002 , 0x00000002 
+ 00015470  0x000012f3 rshift2  0x00000002 , 0x00000002 
+ 00015471  0x000012f4 isub  0x00000002 , 0x0000003f 
+ 00015472  0x000012f5 fetcht  0x00000004 , 0x00004044 
+ 00015473  0x000012f6 iadd  0x00000002 , 0x0000003f 
+ 00015474  0x000012f7 fetcht  0x00000001 , 0x000041f6 
+ 00015475  0x000012f8 isub  0x00000002 , 0x0000003f 
+ 00015476  0x000012f9 lshift16  0x0000003f , 0x00000030 
+ 00015477  0x000012fb set0  0x00000025 , 0x00000000 
+ 00015478  0x000012fc bpatch  0x000000aa , 0x00004015 
+ 00015479  0x000012fd fetch  0x00000002 , 0x0000404e 
+ 00015480  0x000012fe rshift  0x0000003f , 0x0000003f 
+ 00015481  0x000012ff call  0x00007f1d 
+ 00015482  0x00001300 deposit  0x00000030 
+ 00015483  0x00001301 call  0x00007f06 
+ 00015484  0x00001302 copy  0x0000001a , 0x00000002 
+ 00015485  0x00001303 call  0x00007f04 
+ 00015486  0x00001304 rtn  0x00000028 
+ 00015487  0x00001306 call  0x00007f16 
+ 00015488  0x00001308 set0  0x00000025 , 0x00000000 
+ 00015489  0x00001309 bpatch  0x000000ab , 0x00004015 
+ 00015490  0x0000130a fetch  0x00000001 , 0x00004218 
+ 00015491  0x0000130b isub  0x00000002 , 0x0000003e 
+ 00015492  0x0000130c branch  0x00003c01 , 0x00000002 
+ 00015493  0x0000130d storet  0x00000004 , 0x000041fb 
+ 00015494  0x0000130e call  0x00003d9f 
+ 00015495  0x0000130f call  0x000048a5 
+ 00015496  0x00001310 fetcht  0x00000004 , 0x000041fb 
+ 00015497  0x00001311 branch  0x00003c11 
+ 00015498  0x00001314 set0  0x00000025 , 0x00000000 
+ 00015499  0x00001315 bpatch  0x000000ac , 0x00004015 
+ 00015500  0x00001316 fetch  0x00000001 , 0x00004040 
+ 00015501  0x00001317 rtnbit1  0x00000000 
+ 00015502  0x00001318 rtnbit1  0x00000003 
+ 00015503  0x00001319 fetch  0x00000001 , 0x000046e2 
+ 00015504  0x0000131a branch  0x00003c93 , 0x00000034 
+ 00015505  0x0000131b fetch  0x00000001 , 0x00004639 
+ 00015506  0x0000131c rtn  0x00000034 
+ 00015507  0x0000131e set0  0x00000025 , 0x00000000 
+ 00015508  0x0000131f bpatch  0x000000ad , 0x00004015 
+ 00015509  0x00001320 fetch  0x00000001 , 0x000043ff 
+ 00015510  0x00001321 nbranch  0x00003c99 , 0x00000034 
+ 00015511  0x00001322 fetch  0x00000001 , 0x00004133 
+ 00015512  0x00001323 rtn  0x00000034 
+ 00015513  0x00001325 fetch  0x00000002 , 0x000041f4 
+ 00015514  0x00001326 rtn  0x00000034 
+ 00015515  0x00001328 fetcht  0x00000001 , 0x000041f6 
+ 00015516  0x00001329 isub  0x00000002 , 0x0000003f 
+ 00015517  0x0000132a arg  0x00001d4c , 0x00000002 
+ 00015518  0x0000132b imul32  0x00000002 , 0x0000003f 
+ 00015519  0x0000132c branch  0x00003c7f 
+ 00015520  0x0000132f set0  0x00000025 , 0x00000000 
+ 00015521  0x00001330 bpatch  0x000000ae , 0x00004015 
+ 00015522  0x00001331 disable  0x0000002b 
+ 00015523  0x00001332 fetch  0x00000001 , 0x00000030 
+ 00015524  0x00001333 rtnbit0  0x00000001 
+ 00015525  0x00001334 nbranch  0x00003cbc , 0x0000002d 
+ 00015526  0x00001335 call  0x00003cb7 
+ 00015527  0x00001336 fetch  0x00000002 , 0x00004161 
+ 00015528  0x00001337 store  0x00000002 , 0x0000003e 
+ 00015529  0x00001338 fetch  0x00000001 , 0x00000047 
+ 00015530  0x00001339 bbit1  0x00000003 , 0x00003ccb 
+ 00015531  0x0000133a bmark0  0x0000000d , 0x00003ccb 
+ 00015532  0x0000133b call  0x00004816 
+ 00015533  0x0000133c nbranch  0x00003ccb , 0x00000034 
+ 00015534  0x0000133d fetch  0x00000002 , 0x000042a4 
+ 00015535  0x0000133e call  0x00007f69 
+ 00015536  0x00001340 jam  0x00000000 , 0x0000009f 
+ 00015537  0x00001341 bmark0  0x0000000d , 0x00003ccb 
+ 00015538  0x00001342 fetch  0x00000001 , 0x00004214 
+ 00015539  0x00001343 branch  0x00003ccf , 0x00000034 
+ 00015540  0x00001344 increase  0xffffffff , 0x0000003f 
+ 00015541  0x00001345 store  0x00000001 , 0x00004214 
+ 00015542  0x00001346 rtn 
+ 00015543  0x00001349 jam  0x00000000 , 0x000041f9 
+ 00015544  0x0000134a fetch  0x00000003 , 0x00004209 
+ 00015545  0x0000134b increase  0x00000001 , 0x0000003f 
+ 00015546  0x0000134c store  0x00000003 , 0x00004209 
+ 00015547  0x0000134d rtn 
+ 00015548  0x00001350 set0  0x00000025 , 0x00000000 
+ 00015549  0x00001351 bpatch  0x000000af , 0x00004015 
+ 00015550  0x00001352 fetcht  0x00000002 , 0x00004161 
+ 00015551  0x00001353 rshift  0x00000002 , 0x00000002 
+ 00015552  0x00001354 fetch  0x00000002 , 0x0000003e 
+ 00015553  0x00001355 iadd  0x00000002 , 0x0000003f 
+ 00015554  0x00001356 store  0x00000002 , 0x0000003e 
+ 00015555  0x00001358 jam  0x00000000 , 0x0000009f 
+ 00015556  0x00001359 fetch  0x00000003 , 0x0000420c 
+ 00015557  0x0000135a increase  0x00000001 , 0x0000003f 
+ 00015558  0x0000135b store  0x00000003 , 0x0000420c 
+ 00015559  0x0000135c fetch  0x00000001 , 0x000041f9 
+ 00015560  0x0000135d increase  0x00000001 , 0x0000003f 
+ 00015561  0x0000135e store  0x00000001 , 0x000041f9 
+ 00015562  0x0000135f rtn 
+ 00015563  0x00001362 jam  0x00000000 , 0x0000009f 
+ 00015564  0x00001363 fetch  0x00000001 , 0x00004213 
+ 00015565  0x00001364 store  0x00000001 , 0x00004214 
+ 00015566  0x00001365 rtn 
+ 00015567  0x00001368 fetcht  0x00000001 , 0x00004212 
+ 00015568  0x00001369 storet  0x00000001 , 0x0000009f 
+ 00015569  0x0000136a rtn 
+ 00015570  0x0000136d set0  0x00000025 , 0x00000000 
+ 00015571  0x0000136e bpatch  0x000000b0 , 0x00004016 
+ 00015572  0x0000136f fetch  0x00000001 , 0x00004218 
+ 00015573  0x00001370 nrtn  0x00000034 
+ 00015574  0x00001371 hjam  0x00000006 , 0x00008042 
+ 00015575  0x00001372 setarg  0x00000f0c 
+ 00015576  0x00001373 call  0x00003ceb 
+ 00015577  0x00001374 setarg  0x00030d40 
+ 00015578  0x00001375 call  0x00003b35 
+ 00015579  0x00001376 until  0x0000003e , 0x00000033 
+ 00015580  0x00001377 copy  0x00000031 , 0x00000030 
+ 00015581  0x00001378 call  0x00003a7b 
+ 00015582  0x00001379 hjam  0x00000004 , 0x00008042 
+ 00015583  0x0000137a nop  0x0000000a 
+ 00015584  0x0000137b until  0x0000003e , 0x00000033 
+ 00015585  0x0000137c deposit  0x00000031 
+ 00015586  0x0000137d isub  0x00000030 , 0x0000003f 
+ 00015587  0x0000137e increase  0x00000030 , 0x0000003f 
+ 00015588  0x0000137f arg  0x000000ff , 0x00000002 
+ 00015589  0x00001380 call  0x00007f5e 
+ 00015590  0x00001381 store  0x00000001 , 0x00004218 
+ 00015591  0x00001382 nop  0x00007530 
+ 00015592  0x00001383 nop  0x00007530 
+ 00015593  0x00001384 nop  0x00007530 
+ 00015594  0x00001385 rtn 
+ 00015595  0x0000138b arg  0x00000fff , 0x00000005 
+ 00015596  0x0000138c iand  0x00000005 , 0x00000005 
+ 00015597  0x0000138d fetch  0x00000001 , 0x00004215 
+ 00015598  0x0000138e and_into  0x000000f0 , 0x0000003f 
+ 00015599  0x0000138f lshift8  0x0000003f , 0x0000003f 
+ 00015600  0x00001390 ior  0x00000005 , 0x0000003f 
+ 00015601  0x00001391 hstore  0x00000002 , 0x0000804c 
+ 00015602  0x00001392 ifetch  0x00000002 , 0x00000006 
+ 00015603  0x00001393 istore  0x00000002 , 0x00000005 
+ 00015604  0x00001396 setarg  0x00000001 
+ 00015605  0x00001397 branch  0x00003cf7 
+ 00015606  0x0000139a setarg  0x00000002 
+ 00015607  0x0000139c until  0x0000003e , 0x00000033 
+ 00015608  0x0000139d hstore  0x00000001 , 0x00008005 
+ 00015609  0x0000139e until  0x0000003e , 0x00000033 
+ 00015610  0x0000139f until  0x0000003e , 0x00000033 
+ 00015611  0x000013a0 rtn 
+ 00015612  0x000013a4 set0  0x00000025 , 0x00000000 
+ 00015613  0x000013a5 bpatch  0x000000b1 , 0x00004016 
+ 00015614  0x000013a6 fetch  0x00000004 , 0x000000a0 
+ 00015615  0x000013a7 hstore  0x00000004 , 0x0000804c 
+ 00015616  0x000013a8 setarg  0x00000004 
+ 00015617  0x000013a9 call  0x00003cf7 
+ 00015618  0x000013aa fetch  0x00000004 , 0x000000a4 
+ 00015619  0x000013ab hstore  0x00000004 , 0x0000804c 
+ 00015620  0x000013ac setarg  0x00000008 
+ 00015621  0x000013ad branch  0x00003cf7 
+ 00015622  0x000013b0 fetch  0x00000002 , 0x000041f2 
+ 00015623  0x000013b1 qset1  0x0000003f 
+ 00015624  0x000013b2 store  0x00000002 , 0x000041f2 
+ 00015625  0x000013b3 rtn 
+ 00015626  0x000013b6 fetch  0x00000002 , 0x000041f2 
+ 00015627  0x000013b7 qset0  0x0000003f 
+ 00015628  0x000013b8 store  0x00000002 , 0x000041f2 
+ 00015629  0x000013b9 rtn 
+ 00015630  0x000013be set0  0x00000025 , 0x00000000 
+ 00015631  0x000013bf bpatch  0x000000b2 , 0x00004016 
+ 00015632  0x000013c0 call  0x00003d9d 
+ 00015633  0x000013c1 fetch  0x00000002 , 0x000041f2 
+ 00015634  0x000013c2 copy  0x0000003f , 0x00000011 
+ 00015635  0x000013c3 fetch  0x00000001 , 0x0000004c 
+ 00015636  0x000013c4 isolate1  0x00000006 , 0x0000003f 
+ 00015637  0x000013c5 setflag  0x00000001 , 0x0000000b , 0x00000011 
+ 00015638  0x000013c6 fetch  0x00000001 , 0x00000078 
+ 00015639  0x000013c7 fetcht  0x00000001 , 0x0000007c 
+ 00015640  0x000013c8 iadd  0x00000002 , 0x0000003f 
+ 00015641  0x000013c9 fetcht  0x00000001 , 0x00000048 
+ 00015642  0x000013ca iadd  0x00000002 , 0x0000003f 
+ 00015643  0x000013cb nsetflag  0x00000034 , 0x0000000a , 0x00000011 
+ 00015644  0x000013cd set0  0x00000025 , 0x00000000 
+ 00015645  0x000013ce bpatch  0x000000b3 , 0x00004016 
+ 00015646  0x000013cf fetch  0x00000002 , 0x00000286 
+ 00015647  0x000013d0 fetcht  0x00000002 , 0x00000288 
+ 00015648  0x000013d1 iadd  0x00000002 , 0x0000003f 
+ 00015649  0x000013d2 nsetflag  0x00000034 , 0x0000000d , 0x00000011 
+ 00015650  0x000013d3 fetch  0x00000005 , 0x000046f0 
+ 00015651  0x000013d4 nsetflag  0x00000034 , 0x0000000f , 0x00000011 
+ 00015652  0x000013d5 fetch  0x00000005 , 0x000046f8 
+ 00015653  0x000013d6 nsetflag  0x00000034 , 0x0000000e , 0x00000011 
+ 00015654  0x000013d7 fetch  0x00000001 , 0x00004271 
+ 00015655  0x000013d8 nsetflag  0x00000034 , 0x00000008 , 0x00000011 
+ 00015656  0x000013d9 fetch  0x00000001 , 0x00004132 
+ 00015657  0x000013da compare  0x0000000a , 0x0000003f , 0x000000ff 
+ 00015658  0x000013db call  0x00003d2c , 0x00000001 
+ 00015659  0x000013dc branch  0x00003d31 
+ 00015660  0x000013df hfetch  0x00000002 , 0x00008112 
+ 00015661  0x000013e0 nsetflag  0x00000034 , 0x00000006 , 0x00000011 
+ 00015662  0x000013e1 hfetch  0x00000002 , 0x0000810e 
+ 00015663  0x000013e2 nsetflag  0x00000034 , 0x00000005 , 0x00000011 
+ 00015664  0x000013e3 rtn 
+ 00015665  0x000013e6 setarg  0xfffffff8 
+ 00015666  0x000013e7 iand  0x00000011 , 0x00000011 
+ 00015667  0x000013e9 copy  0x00000011 , 0x0000003f 
+ 00015668  0x000013ea store  0x00000002 , 0x000041f2 
+ 00015669  0x000013eb rtn  0x00000034 
+ 00015670  0x000013ec rtn  0x0000002d 
+ 00015671  0x000013ed enable  0x0000002b 
+ 00015672  0x000013ee rtn 
+ 00015673  0x000013f1 hfetch  0x00000004 , 0x00008138 
+ 00015674  0x000013f2 set0  0x0000001b , 0x0000003f 
+ 00015675  0x000013f3 hstore  0x00000004 , 0x0000804c 
+ 00015676  0x000013f4 call  0x00003cf4 
+ 00015677  0x000013f5 branch  0x00003b31 
+ 00015678  0x000013f8 hfetch  0x00000004 , 0x0000813c 
+ 00015679  0x000013f9 set0  0x00000014 , 0x0000003f 
+ 00015680  0x000013fa hstore  0x00000004 , 0x0000804c 
+ 00015681  0x000013fb branch  0x00003cf6 
+ 00015682  0x000013fe fetch  0x00000002 , 0x000041f0 
+ 00015683  0x000013ff bbit1  0x00000000 , 0x00003b31 
+ 00015684  0x00001400 rtn 
+ 00015685  0x00001402 fetch  0x00000002 , 0x000041f0 
+ 00015686  0x00001403 bbit1  0x00000001 , 0x00003b31 
+ 00015687  0x00001404 rtn 
+ 00015688  0x00001406 fetch  0x00000002 , 0x000041f0 
+ 00015689  0x00001407 bbit1  0x00000002 , 0x00003b31 
+ 00015690  0x00001408 rtn 
+ 00015691  0x00001410 set0  0x00000025 , 0x00000000 
+ 00015692  0x00001411 bpatch  0x000000b4 , 0x00004016 
+ 00015693  0x00001412 fetch  0x00000001 , 0x00004132 
+ 00015694  0x00001413 branch  0x00003d4b , 0x00000034 
+ 00015695  0x00001417 beq  0x00000003 , 0x0000400c 
+ 00015696  0x00001418 beq  0x00000009 , 0x00007293 
+ 00015697  0x00001419 beq  0x0000000a , 0x000059dd 
+ 00015698  0x0000141b bbit1  0x00000006 , 0x00005dca 
+ 00015699  0x0000141c bbit1  0x00000007 , 0x0000400c 
+ 00015700  0x0000141d rtn 
+ 00015701  0x00001420 set0  0x00000025 , 0x00000000 
+ 00015702  0x00001421 bpatch  0x000000b5 , 0x00004016 
+ 00015703  0x00001422 jam  0x00000000 , 0x00000150 
+ 00015704  0x00001423 jam  0x00000000 , 0x0000017e 
+ 00015705  0x00001424 jam  0x00000000 , 0x0000017f 
+ 00015706  0x00001425 setarg  0x00000000 
+ 00015707  0x00001426 store  0x00000005 , 0x000008d2 
+ 00015708  0x00001427 fetch  0x00000001 , 0x00004132 
+ 00015709  0x00001428 branch  0x00003d55 , 0x00000034 
+ 00015710  0x00001429 beq  0x0000000a , 0x00005a12 
+ 00015711  0x0000142b rtn 
+ 00015712  0x0000142f call  0x00007cf4 
+ 00015713  0x00001430 call  0x00007d9e 
+ 00015714  0x00001431 call  0x00003d69 
+ 00015715  0x00001432 fetch  0x00000002 , 0x00004294 
+ 00015716  0x00001433 branch  0x00007f69 
+ 00015717  0x00001436 fetch  0x00000002 , 0x00004292 
+ 00015718  0x00001437 branch  0x00007f69 
+ 00015719  0x0000143a fetch  0x00000002 , 0x00004290 
+ 00015720  0x0000143b branch  0x00007f69 
+ 00015721  0x0000143e set0  0x00000025 , 0x00000000 
+ 00015722  0x0000143f bpatch  0x000000b6 , 0x00004016 
+ 00015723  0x00001441 arg  0x000046f0 , 0x00000011 
+ 00015724  0x00001442 call  0x00007f95 
+ 00015725  0x00001443 rtn  0x00000034 
+ 00015726  0x00001445 copy  0x0000003f , 0x00000013 
+ 00015727  0x00001446 call  0x00003d73 
+ 00015728  0x00001447 branch  0x00003d9b 
+ 00015729  0x0000144a arg  0x00000000 , 0x00000013 
+ 00015730  0x0000144b rtn 
+ 00015731  0x00001451 beq  0x00000001 , 0x00003d88 
+ 00015732  0x00001452 beq  0x00000010 , 0x00003dcf 
+ 00015733  0x00001453 beq  0x00000005 , 0x00003dac 
+ 00015734  0x00001454 beq  0x00000012 , 0x00003db3 
+ 00015735  0x00001455 beq  0x00000006 , 0x00003dcb 
+ 00015736  0x00001456 beq  0x00000004 , 0x00003df6 
+ 00015737  0x00001457 beq  0x00000002 , 0x00003dfb 
+ 00015738  0x00001458 beq  0x00000013 , 0x00003df6 
+ 00015739  0x00001459 beq  0x00000014 , 0x00003dc2 
+ 00015740  0x0000145a beq  0x00000015 , 0x00003dc6 
+ 00015741  0x0000145b beq  0x00000003 , 0x00003da5 
+ 00015742  0x0000145c beq  0x0000000b , 0x00003db7 
+ 00015743  0x0000145d beq  0x0000000c , 0x00003dbe 
+ 00015744  0x0000145f beq  0x00000016 , 0x00003dd3 
+ 00015745  0x00001460 beq  0x00000018 , 0x00003da1 
+ 00015746  0x00001461 beq  0x0000002a , 0x00003d91 
+ 00015747  0x00001462 beq  0x0000002b , 0x00003d8f 
+ 00015748  0x00001464 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00015749  0x00001465 and_into  0x000000f0 , 0x0000003f 
+ 00015750  0x00001466 beq  0x00000050 , 0x00003dd7 
+ 00015751  0x00001467 rtn 
+ 00015752  0x0000146a fetch  0x00000002 , 0x0000470b 
+ 00015753  0x0000146b set1  0x00000000 , 0x0000003f 
+ 00015754  0x0000146c store  0x00000002 , 0x0000470b 
+ 00015755  0x0000146d fetch  0x00000002 , 0x000042af 
+ 00015756  0x0000146e set0  0x00000000 , 0x0000003f 
+ 00015757  0x0000146f store  0x00000002 , 0x000042af 
+ 00015758  0x00001470 rtn 
+ 00015759  0x00001473 jam  0x00000000 , 0x0000024d 
+ 00015760  0x00001474 rtn 
+ 00015761  0x00001477 fetch  0x00000001 , 0x0000024d 
+ 00015762  0x00001478 increase  0x00000001 , 0x0000003f 
+ 00015763  0x00001479 store  0x00000001 , 0x0000024d 
+ 00015764  0x0000147a sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00015765  0x0000147b branch  0x00003e47 , 0x00000002 
+ 00015766  0x0000147c jam  0x00000000 , 0x0000024d 
+ 00015767  0x0000147d fetch  0x00000002 , 0x000042af 
+ 00015768  0x0000147e set1  0x00000009 , 0x0000003f 
+ 00015769  0x0000147f store  0x00000002 , 0x000042af 
+ 00015770  0x00001480 branch  0x00003e52 
+ 00015771  0x00001483 fetch  0x00000002 , 0x00004296 
+ 00015772  0x00001484 branch  0x00007f69 
+ 00015773  0x00001487 fetch  0x00000002 , 0x0000428a 
+ 00015774  0x00001488 branch  0x00007f69 
+ 00015775  0x0000148b fetch  0x00000002 , 0x0000428e 
+ 00015776  0x0000148c branch  0x00007f69 
+ 00015777  0x0000148f fetch  0x00000002 , 0x000042af 
+ 00015778  0x00001490 set1  0x00000001 , 0x0000003f 
+ 00015779  0x00001491 store  0x00000002 , 0x000042af 
+ 00015780  0x00001492 branch  0x00003e7d 
+ 00015781  0x00001495 fetch  0x00000002 , 0x0000470b 
+ 00015782  0x00001496 set1  0x00000007 , 0x0000003f 
+ 00015783  0x00001497 store  0x00000002 , 0x0000470b 
+ 00015784  0x00001498 fetch  0x00000002 , 0x000042af 
+ 00015785  0x00001499 set1  0x00000002 , 0x0000003f 
+ 00015786  0x0000149a store  0x00000002 , 0x000042af 
+ 00015787  0x0000149b rtn 
+ 00015788  0x0000149e fetch  0x00000002 , 0x0000470b 
+ 00015789  0x0000149f set1  0x00000001 , 0x0000003f 
+ 00015790  0x000014a0 store  0x00000002 , 0x0000470b 
+ 00015791  0x000014a1 fetch  0x00000002 , 0x000042af 
+ 00015792  0x000014a2 set1  0x00000004 , 0x0000003f 
+ 00015793  0x000014a3 store  0x00000002 , 0x000042af 
+ 00015794  0x000014a4 rtn 
+ 00015795  0x000014a7 fetch  0x00000002 , 0x0000470b 
+ 00015796  0x000014a8 set1  0x00000003 , 0x0000003f 
+ 00015797  0x000014a9 store  0x00000002 , 0x0000470b 
+ 00015798  0x000014aa rtn 
+ 00015799  0x000014ad fetch  0x00000002 , 0x0000470b 
+ 00015800  0x000014ae set1  0x00000005 , 0x0000003f 
+ 00015801  0x000014af store  0x00000002 , 0x0000470b 
+ 00015802  0x000014b0 fetch  0x00000002 , 0x000042af 
+ 00015803  0x000014b1 set1  0x00000003 , 0x0000003f 
+ 00015804  0x000014b2 store  0x00000002 , 0x000042af 
+ 00015805  0x000014b3 rtn 
+ 00015806  0x000014b6 fetch  0x00000002 , 0x0000470b 
+ 00015807  0x000014b7 set0  0x00000005 , 0x0000003f 
+ 00015808  0x000014b8 store  0x00000002 , 0x0000470b 
+ 00015809  0x000014b9 rtn 
+ 00015810  0x000014bc fetch  0x00000002 , 0x0000470b 
+ 00015811  0x000014bd set1  0x00000009 , 0x0000003f 
+ 00015812  0x000014be store  0x00000002 , 0x0000470b 
+ 00015813  0x000014bf rtn 
+ 00015814  0x000014c2 fetch  0x00000002 , 0x0000470b 
+ 00015815  0x000014c3 set0  0x00000009 , 0x0000003f 
+ 00015816  0x000014c4 store  0x00000002 , 0x0000470b 
+ 00015817  0x000014c5 jam  0x00000000 , 0x00004595 
+ 00015818  0x000014c6 branch  0x00003e81 
+ 00015819  0x000014c9 fetch  0x00000002 , 0x0000470b 
+ 00015820  0x000014ca set1  0x00000002 , 0x0000003f 
+ 00015821  0x000014cb store  0x00000002 , 0x0000470b 
+ 00015822  0x000014cc rtn 
+ 00015823  0x000014cf fetch  0x00000002 , 0x000042af 
+ 00015824  0x000014d0 set1  0x00000000 , 0x0000003f 
+ 00015825  0x000014d1 store  0x00000002 , 0x000042af 
+ 00015826  0x000014d2 rtn 
+ 00015827  0x000014d5 fetch  0x00000002 , 0x000042af 
+ 00015828  0x000014d6 set1  0x00000008 , 0x0000003f 
+ 00015829  0x000014d7 store  0x00000002 , 0x000042af 
+ 00015830  0x000014d8 branch  0x00003e52 
+ 00015831  0x000014dc set0  0x00000025 , 0x00000000 
+ 00015832  0x000014dd bpatch  0x000000b7 , 0x00004016 
+ 00015833  0x000014de storet  0x00000001 , 0x0000024e 
+ 00015834  0x000014e0 fetch  0x00000001 , 0x0000024e 
+ 00015835  0x000014e1 rtn  0x00000034 
+ 00015836  0x000014e2 increase  0xffffffff , 0x0000003f 
+ 00015837  0x000014e3 store  0x00000001 , 0x0000024e 
+ 00015838  0x000014e4 call  0x00007d02 
+ 00015839  0x000014e5 call  0x00003e3b 
+ 00015840  0x000014e6 call  0x00003de5 
+ 00015841  0x000014e7 call  0x00003ded 
+ 00015842  0x000014e8 fetch  0x00000002 , 0x000042a0 
+ 00015843  0x000014e9 call  0x00007f69 
+ 00015844  0x000014ea branch  0x00003dda 
+ 00015845  0x000014ed fetch  0x00000001 , 0x000042aa 
+ 00015846  0x000014ee rtn  0x00000034 
+ 00015847  0x000014ef increase  0xffffffff , 0x0000003f 
+ 00015848  0x000014f0 store  0x00000001 , 0x000042aa 
+ 00015849  0x000014f1 nrtn  0x00000034 
+ 00015850  0x000014f2 call  0x00003292 
+ 00015851  0x000014f3 branch  0x00003e79 , 0x00000005 
+ 00015852  0x000014f4 rtn 
+ 00015853  0x000014f6 fetch  0x00000002 , 0x00004707 
+ 00015854  0x000014f7 rtn  0x00000034 
+ 00015855  0x000014f8 increase  0xffffffff , 0x0000003f 
+ 00015856  0x000014f9 store  0x00000002 , 0x00004707 
+ 00015857  0x000014fa nrtn  0x00000034 
+ 00015858  0x000014fb call  0x00003e59 
+ 00015859  0x000014fc call  0x00003e73 
+ 00015860  0x000014fd fetch  0x00000002 , 0x00004298 
+ 00015861  0x000014fe branch  0x00007f69 
+ 00015862  0x00001501 call  0x00003e0f 
+ 00015863  0x00001503 fetch  0x00000002 , 0x0000470b 
+ 00015864  0x00001504 set0  0x00000007 , 0x0000003f 
+ 00015865  0x00001505 store  0x00000002 , 0x0000470b 
+ 00015866  0x00001506 rtn 
+ 00015867  0x00001509 jam  0x00000000 , 0x000042aa 
+ 00015868  0x0000150a fetch  0x00000002 , 0x0000470b 
+ 00015869  0x0000150b bbit1  0x00000007 , 0x00003e00 
+ 00015870  0x0000150c isolate0  0x00000001 , 0x0000003f 
+ 00015871  0x0000150d call  0x00003d71 , 0x00000001 
+ 00015872  0x0000150f set0  0x00000025 , 0x00000000 
+ 00015873  0x00001510 bpatch  0x000000b8 , 0x00004017 
+ 00015874  0x00001511 fetch  0x00000002 , 0x0000470b 
+ 00015875  0x00001512 set0  0x00000000 , 0x0000003f 
+ 00015876  0x00001513 set0  0x00000001 , 0x0000003f 
+ 00015877  0x00001514 set0  0x00000002 , 0x0000003f 
+ 00015878  0x00001515 set0  0x00000003 , 0x0000003f 
+ 00015879  0x00001516 set0  0x00000007 , 0x0000003f 
+ 00015880  0x00001517 store  0x00000002 , 0x0000470b 
+ 00015881  0x00001518 branch  0x00003e81 
+ 00015882  0x0000151b call  0x00003e0c 
+ 00015883  0x0000151c branch  0x00003e75 
+ 00015884  0x00001520 setarg  0x00000000 
+ 00015885  0x00001521 store  0x00000002 , 0x000042ad 
+ 00015886  0x00001522 rtn 
+ 00015887  0x00001524 setarg  0x00000000 
+ 00015888  0x00001525 store  0x00000002 , 0x000042af 
+ 00015889  0x00001526 rtn 
+ 00015890  0x0000152a fetch  0x00000002 , 0x000042af 
+ 00015891  0x0000152b store  0x00000002 , 0x000042ad 
+ 00015892  0x0000152c setarg  0x00000000 
+ 00015893  0x0000152d store  0x00000002 , 0x000042af 
+ 00015894  0x0000152e rtn 
+ 00015895  0x00001531 fetch  0x00000002 , 0x000042af 
+ 00015896  0x00001532 set1  0x00000007 , 0x0000003f 
+ 00015897  0x00001533 store  0x00000002 , 0x000042ad 
+ 00015898  0x00001534 setarg  0x00000000 
+ 00015899  0x00001535 store  0x00000002 , 0x000042af 
+ 00015900  0x00001536 rtn 
+ 00015901  0x0000153f fetch  0x00000001 , 0x0000470b 
+ 00015902  0x00001540 isolate1  0x00000005 , 0x0000003f 
+ 00015903  0x00001541 rtn 
+ 00015904  0x0000154a setarg  0x0000aa55 
+ 00015905  0x0000154c store  0x00000002 , 0x000009ce 
+ 00015906  0x0000154d set0  0x00000025 , 0x00000000 
+ 00015907  0x0000154e bpatch  0x000000b9 , 0x00004017 
+ 00015908  0x0000154f arg  0x00000002 , 0x00000002 
+ 00015909  0x00001550 arg  0x000009ce , 0x00000011 
+ 00015910  0x00001551 arg  0x000000c3 , 0x00000012 
+ 00015911  0x00001552 branch  0x0000626f 
+ 00015912  0x00001556 set0  0x00000025 , 0x00000000 
+ 00015913  0x00001557 bpatch  0x000000ba , 0x00004017 
+ 00015914  0x00001558 arg  0x00000002 , 0x00000002 
+ 00015915  0x00001559 arg  0x000009be , 0x00000011 
+ 00015916  0x0000155a arg  0x000000c3 , 0x00000012 
+ 00015917  0x0000155b call  0x00006245 
+ 00015918  0x0000155c fetch  0x00000002 , 0x000009be 
+ 00015919  0x0000155d arg  0x0000aa55 , 0x00000002 
+ 00015920  0x0000155e isub  0x00000002 , 0x0000003e 
+ 00015921  0x0000155f rtn 
+ 00015922  0x00001563 fetch  0x00000001 , 0x000045f3 
+ 00015923  0x00001564 store  0x00000001 , 0x000042aa 
+ 00015924  0x00001565 rtn 
+ 00015925  0x00001568 arg  0x00000009 , 0x00000007 
+ 00015926  0x00001569 branch  0x00003d06 
+ 00015927  0x0000156c arg  0x00000009 , 0x00000007 
+ 00015928  0x0000156d branch  0x00003d0a 
+ 00015929  0x00001570 jam  0x00000005 , 0x000042ab 
+ 00015930  0x00001571 branch  0x00003e35 
+ 00015931  0x00001573 fetch  0x00000001 , 0x000042ab 
+ 00015932  0x00001574 rtn  0x00000034 
+ 00015933  0x00001575 increase  0xffffffff , 0x0000003f 
+ 00015934  0x00001576 store  0x00000001 , 0x000042ab 
+ 00015935  0x00001577 nrtn  0x00000034 
+ 00015936  0x00001578 branch  0x00003e37 
+ 00015937  0x0000157b jam  0x00000001 , 0x000043f3 
+ 00015938  0x0000157c rtn 
+ 00015939  0x0000157f jam  0x00000000 , 0x000043f3 
+ 00015940  0x00001580 rtn 
+ 00015941  0x00001583 jam  0x0000000a , 0x000009bd 
+ 00015942  0x00001584 branch  0x00007d90 
+ 00015943  0x00001587 jam  0x0000001d , 0x000009bd 
+ 00015944  0x00001588 branch  0x00007d90 
+ 00015945  0x0000158b set0  0x00000025 , 0x00000000 
+ 00015946  0x0000158c bpatch  0x000000bb , 0x00004017 
+ 00015947  0x0000158d fetch  0x00000001 , 0x000042ac 
+ 00015948  0x0000158e store  0x00000001 , 0x0000016c 
+ 00015949  0x0000158f jam  0x00000001 , 0x0000024c 
+ 00015950  0x00001590 jam  0x00000003 , 0x000009bd 
+ 00015951  0x00001591 branch  0x00007d90 
+ 00015952  0x00001594 jam  0x0000001e , 0x000009bd 
+ 00015953  0x00001595 branch  0x00007d90 
+ 00015954  0x00001598 jam  0x00000004 , 0x000009bd 
+ 00015955  0x00001599 branch  0x00007d90 
+ 00015956  0x0000159c fetch  0x00000002 , 0x00004716 
+ 00015957  0x0000159d store  0x00000002 , 0x00004707 
+ 00015958  0x0000159f call  0x00003e6f 
+ 00015959  0x000015a1 jam  0x00000001 , 0x000009bd 
+ 00015960  0x000015a2 branch  0x00007d90 
+ 00015961  0x000015a5 setarg  0x00000000 
+ 00015962  0x000015a6 store  0x00000002 , 0x00004707 
+ 00015963  0x000015a7 jam  0x00000002 , 0x000009bd 
+ 00015964  0x000015a8 branch  0x00007d90 
+ 00015965  0x000015ab jam  0x0000000f , 0x000009bd 
+ 00015966  0x000015ac branch  0x00007d90 
+ 00015967  0x000015af jam  0x00000010 , 0x000009bd 
+ 00015968  0x000015b0 branch  0x00007d90 
+ 00015969  0x000015b3 jam  0x0000000e , 0x000009bd 
+ 00015970  0x000015b4 branch  0x00007d90 
+ 00015971  0x000015b7 jam  0x0000000d , 0x000009bd 
+ 00015972  0x000015b8 branch  0x00007d90 
+ 00015973  0x000015bb jam  0x00000017 , 0x000009bd 
+ 00015974  0x000015bc branch  0x00007d90 
+ 00015975  0x000015bf jam  0x00000018 , 0x000009bd 
+ 00015976  0x000015c0 branch  0x00007d90 
+ 00015977  0x000015c3 jam  0x00000016 , 0x000009bd 
+ 00015978  0x000015c4 branch  0x00007d90 
+ 00015979  0x000015c7 jam  0x00000011 , 0x000009bd 
+ 00015980  0x000015c8 branch  0x00007d90 
+ 00015981  0x000015cb jam  0x0000001c , 0x000009bd 
+ 00015982  0x000015cc branch  0x00007d90 
+ 00015983  0x000015cf jam  0x00000015 , 0x000009bd 
+ 00015984  0x000015d0 branch  0x00007d90 
+ 00015985  0x000015d3 jam  0x00000014 , 0x000009bd 
+ 00015986  0x000015d4 branch  0x00007d90 
+ 00015987  0x000015d8 jam  0x00000013 , 0x000009bd 
+ 00015988  0x000015d9 branch  0x00007d90 
+ 00015989  0x000015dc jam  0x00000019 , 0x000009bd 
+ 00015990  0x000015dd branch  0x00007d90 
+ 00015991  0x000015e0 jam  0x00000006 , 0x000009bd 
+ 00015992  0x000015e1 branch  0x00007d90 
+ 00015993  0x000015e4 jam  0x00000005 , 0x000009bd 
+ 00015994  0x000015e5 branch  0x00007d90 
+ 00015995  0x000015e8 jam  0x0000001f , 0x000009bd 
+ 00015996  0x000015e9 branch  0x00007d90 
+ 00015997  0x000015ec jam  0x00000020 , 0x000009bd 
+ 00015998  0x000015ed branch  0x00007d90 
+ 00015999  0x000015f0 set1  0x0000000d , 0x00000000 
+ 00016000  0x000015f1 rtn 
+ 00016001  0x000015f4 set0  0x0000000d , 0x00000000 
+ 00016002  0x000015f5 rtn 
+ 00016003  0x000015fb set0  0x00000025 , 0x00000000 
+ 00016004  0x000015fc bpatch  0x000000bc , 0x00004017 
+ 00016005  0x000015fd fetch  0x00000001 , 0x00004271 
+ 00016006  0x000015fe nrtn  0x00000034 
+ 00016007  0x00001600 call  0x00003e8a 
+ 00016008  0x00001601 ncall  0x00003ea3 , 0x00000028 
+ 00016009  0x00001602 rtn 
+ 00016010  0x00001605 set0  0x00000025 , 0x00000000 
+ 00016011  0x00001606 bpatch  0x000000bd , 0x00004017 
+ 00016012  0x00001607 copy  0x00000003 , 0x00000011 
+ 00016013  0x00001608 arg  0x00000004 , 0x00000002 
+ 00016014  0x00001609 ifetch  0x00000001 , 0x00000003 
+ 00016015  0x0000160a beq  0x00000001 , 0x00003e95 
+ 00016016  0x0000160b increase  0x00000001 , 0x00000002 
+ 00016017  0x0000160c beq  0x00000002 , 0x00003e95 
+ 00016018  0x0000160d copy  0x00000003 , 0x0000003f 
+ 00016019  0x0000160e hstore  0x00000002 , 0x00008058 
+ 00016020  0x0000160f rtn 
+ 00016021  0x00001611 hfetch  0x00000002 , 0x00008112 
+ 00016022  0x00001612 isub  0x00000002 , 0x0000003e 
+ 00016023  0x00001613 nbranch  0x00003e95 , 0x00000002 
+ 00016024  0x00001615 disable  0x00000028 
+ 00016025  0x00001616 copy  0x00000011 , 0x00000003 
+ 00016026  0x00001617 call  0x00003eac 
+ 00016027  0x00001618 iadd  0x00000002 , 0x00000002 
+ 00016028  0x0000161a hfetch  0x00000002 , 0x00008112 
+ 00016029  0x0000161b isub  0x00000002 , 0x0000003e 
+ 00016030  0x0000161c nbranch  0x00003e9c , 0x00000002 
+ 00016031  0x0000161d copy  0x00000011 , 0x00000003 
+ 00016032  0x0000161e ifetch  0x00000001 , 0x00000003 
+ 00016033  0x0000161f beq  0x00000001 , 0x00003f06 
+ 00016034  0x00001620 branch  0x00003b31 
+ 00016035  0x00001623 set0  0x00000025 , 0x00000000 
+ 00016036  0x00001624 bpatch  0x000000be , 0x00004017 
+ 00016037  0x00001625 hfetch  0x00000002 , 0x00008058 
+ 00016038  0x00001626 iforce  0x00000003 
+ 00016039  0x00001627 call  0x00003eac 
+ 00016040  0x00001628 iadd  0x00000003 , 0x00000003 
+ 00016041  0x00001629 deposit  0x00000003 
+ 00016042  0x0000162a hstore  0x00000002 , 0x00008058 
+ 00016043  0x0000162b rtn 
+ 00016044  0x00001631 ifetch  0x00000001 , 0x00000003 
+ 00016045  0x00001632 increase  0x00000002 , 0x00000003 
+ 00016046  0x00001633 beq  0x00000002 , 0x00003eb1 
+ 00016047  0x00001634 ifetch  0x00000001 , 0x00000003 
+ 00016048  0x00001635 rtn 
+ 00016049  0x00001637 ifetch  0x00000002 , 0x00000003 
+ 00016050  0x00001638 rtn 
+ 00016051  0x0000163b hfetch  0x00000002 , 0x0000805e 
+ 00016052  0x0000163c increase  0xfffffffb , 0x0000000a 
+ 00016053  0x0000163d iadd  0x0000000a , 0x0000000a 
+ 00016054  0x0000163e rtn 
+ 00016055  0x00001641 arg  0x00000004 , 0x00000002 
+ 00016056  0x00001642 branch  0x00003eba 
+ 00016057  0x00001644 arg  0x00000002 , 0x00000002 
+ 00016058  0x00001646 set0  0x00000025 , 0x00000000 
+ 00016059  0x00001647 bpatch  0x000000bf , 0x00004017 
+ 00016060  0x00001648 increase  0x00000001 , 0x00000039 
+ 00016061  0x00001649 hfetch  0x00000002 , 0x0000805e 
+ 00016062  0x0000164a copy  0x0000003f , 0x0000000a 
+ 00016063  0x0000164b copy  0x00000039 , 0x0000003f 
+ 00016064  0x0000164c istoret  0x00000001 , 0x0000000a 
+ 00016065  0x0000164d increase  0xffffffff , 0x0000003f 
+ 00016066  0x0000164e iadd  0x0000000a , 0x0000000a 
+ 00016067  0x0000164f copy  0x0000000a , 0x0000003f 
+ 00016068  0x00001650 store  0x00000002 , 0x0000027a 
+ 00016069  0x00001651 copy  0x00000002 , 0x0000003f 
+ 00016070  0x00001652 rtneq  0x00000002 
+ 00016071  0x00001653 fetch  0x00000002 , 0x0000027a 
+ 00016072  0x00001654 hstore  0x00000002 , 0x0000805e 
+ 00016073  0x00001655 branch  0x00003eca 
+ 00016074  0x00001659 setarg  0x00000000 
+ 00016075  0x0000165a store  0x00000002 , 0x0000027a 
+ 00016076  0x0000165b rtn 
+ 00016077  0x00001663 set0  0x00000025 , 0x00000000 
+ 00016078  0x00001664 bpatch  0x000000c0 , 0x00004018 
+ 00016079  0x00001665 rtn  0x0000002b 
+ 00016080  0x00001666 setarg  0x00003fbf 
+ 00016081  0x00001667 store  0x00000002 , 0x00004294 
+ 00016082  0x00001669 setarg  0x000001a0 
+ 00016083  0x0000166a store  0x00000002 , 0x000042d3 
+ 00016084  0x0000166c set0  0x00000025 , 0x00000000 
+ 00016085  0x0000166d bpatch  0x000000c1 , 0x00004018 
+ 00016086  0x0000166e setarg  0x00001800 
+ 00016087  0x0000166f hstore  0x00000002 , 0x00008054 
+ 00016088  0x00001670 setarg  0x00001bff 
+ 00016089  0x00001671 hstore  0x00000002 , 0x00008056 
+ 00016090  0x00001672 setarg  0x00001c00 
+ 00016091  0x00001673 hstore  0x00000002 , 0x0000805a 
+ 00016092  0x00001674 call  0x00003eed 
+ 00016093  0x00001676 hjam  0x00000000 , 0x00008062 
+ 00016094  0x00001677 setarg  0x00001c00 
+ 00016095  0x00001678 hstore  0x00000002 , 0x0000805e 
+ 00016096  0x00001679 hstore  0x00000002 , 0x00008060 
+ 00016097  0x0000167a setarg  0x00001800 
+ 00016098  0x0000167b hstore  0x00000002 , 0x00008058 
+ 00016099  0x0000167c store  0x00000002 , 0x00000266 
+ 00016100  0x0000167e set0  0x00000025 , 0x00000000 
+ 00016101  0x0000167f bpatch  0x000000c2 , 0x00004018 
+ 00016102  0x00001680 hfetch  0x00000002 , 0x00008050 
+ 00016103  0x00001681 set0  0x0000000f , 0x0000003f 
+ 00016104  0x00001682 hstore  0x00000002 , 0x00008050 
+ 00016105  0x00001683 call  0x00006325 
+ 00016106  0x00001684 hjam  0x00000001 , 0x00008043 
+ 00016107  0x00001685 hjam  0x00000081 , 0x00008062 
+ 00016108  0x00001686 rtn 
+ 00016109  0x00001689 setarg  0x00001fff 
+ 00016110  0x0000168a hstore  0x00000002 , 0x0000805c 
+ 00016111  0x0000168b hfetch  0x00000001 , 0x00008081 
+ 00016112  0x0000168c or_into  0x00000007 , 0x0000003f 
+ 00016113  0x0000168d hstore  0x00000001 , 0x00008081 
+ 00016114  0x0000168e jam  0x000000ff , 0x0000027c 
+ 00016115  0x0000168f rtn 
+ 00016116  0x00001693 set0  0x00000025 , 0x00000000 
+ 00016117  0x00001694 bpatch  0x000000c3 , 0x00004018 
+ 00016118  0x00001695 hfetch  0x00000001 , 0x0000810c 
+ 00016119  0x00001696 iforce  0x00000012 
+ 00016120  0x00001697 bbit0  0x00000003 , 0x00003efe 
+ 00016121  0x00001698 hfetch  0x00000002 , 0x00008112 
+ 00016122  0x00001699 iforce  0x00000013 
+ 00016123  0x0000169a arg  0x0000044f , 0x00000002 
+ 00016124  0x0000169b isub  0x00000002 , 0x0000003e 
+ 00016125  0x0000169c nrtn  0x00000005 
+ 00016126  0x0000169e hfetch  0x00000002 , 0x00008058 
+ 00016127  0x0000169f iforce  0x00000003 
+ 00016128  0x000016a0 branch  0x00003e83 
+ 00016129  0x000016a3 hfetcht  0x00000001 , 0x0000810c 
+ 00016130  0x000016a4 isolate1  0x00000006 , 0x00000002 
+ 00016131  0x000016a5 branch  0x00003f01 , 0x00000001 
+ 00016132  0x000016a6 hstore  0x00000001 , 0x00008015 
+ 00016133  0x000016a7 rtn 
+ 00016134  0x000016aa set0  0x00000025 , 0x00000000 
+ 00016135  0x000016ab bpatch  0x000000c4 , 0x00004018 
+ 00016136  0x000016ac fetch  0x00000001 , 0x00004271 
+ 00016137  0x000016ad branch  0x00003f0c , 0x00000034 
+ 00016138  0x000016ae enable  0x00000028 
+ 00016139  0x000016af rtn 
+ 00016140  0x000016b1 ifetch  0x00000002 , 0x00000003 
+ 00016141  0x000016b2 iforce  0x00000030 
+ 00016142  0x000016b3 iforce  0x00000007 
+ 00016143  0x000016b4 ifetch  0x00000001 , 0x00000003 
+ 00016144  0x000016b5 iforce  0x00000002 
+ 00016145  0x000016b6 rshift2  0x00000030 , 0x0000003f 
+ 00016146  0x000016b7 rshift8  0x0000003f , 0x0000003f 
+ 00016147  0x000016b8 beq  0x0000003f , 0x00003f15 
+ 00016148  0x000016b9 rtn 
+ 00016149  0x000016bd set0  0x00000025 , 0x00000000 
+ 00016150  0x000016be bpatch  0x000000c5 , 0x00004018 
+ 00016151  0x000016bf deposit  0x00000007 
+ 00016152  0x000016c0 beq  0x00000000 , 0x00003f70 
+ 00016153  0x000016c1 beq  0x00000001 , 0x00003f2d 
+ 00016154  0x000016c2 beq  0x00000002 , 0x00003f32 
+ 00016155  0x000016c3 beq  0x00000003 , 0x00003f36 
+ 00016156  0x000016c4 beq  0x00000004 , 0x00003f49 
+ 00016157  0x000016c5 beq  0x00000005 , 0x00003f70 
+ 00016158  0x000016c6 beq  0x00000006 , 0x00003f5a 
+ 00016159  0x000016c7 beq  0x00000007 , 0x00003f23 
+ 00016160  0x000016c9 beq  0x00000010 , 0x00003f5d 
+ 00016161  0x000016ca beq  0x00000011 , 0x00003f65 
+ 00016162  0x000016cb branch  0x00003f70 
+ 00016163  0x000016ce call  0x00003f70 
+ 00016164  0x000016cf call  0x00007f6b 
+ 00016165  0x000016d0 call  0x00006561 
+ 00016166  0x000016d2 call  0x00003e37 
+ 00016167  0x000016d3 call  0x00003e41 
+ 00016168  0x000016d4 branch  0x00006564 
+ 00016169  0x000016d7 jam  0x00000000 , 0x000042d5 
+ 00016170  0x000016d8 call  0x00003e35 
+ 00016171  0x000016d9 call  0x00003ed4 
+ 00016172  0x000016da branch  0x00003e43 
+ 00016173  0x000016dd call  0x00003f89 
+ 00016174  0x000016de hfetch  0x00000002 , 0x00008000 
+ 00016175  0x000016df istore  0x00000002 , 0x0000000a 
+ 00016176  0x000016e0 force  0x00000006 , 0x00000039 
+ 00016177  0x000016e1 branch  0x00003f73 
+ 00016178  0x000016e4 ifetch  0x00000002 , 0x00000003 
+ 00016179  0x000016e5 store  0x00000002 , 0x000042d3 
+ 00016180  0x000016e6 hstore  0x00000002 , 0x00008052 
+ 00016181  0x000016e7 rtn 
+ 00016182  0x000016eb ifetch  0x00000001 , 0x00000003 
+ 00016183  0x000016ec copy  0x0000003f , 0x00000002 
+ 00016184  0x000016ed hstore  0x00000001 , 0x00008024 
+ 00016185  0x000016ee ifetch  0x00000001 , 0x00000003 
+ 00016186  0x000016ef iadd  0x00000002 , 0x00000002 
+ 00016187  0x000016f0 set1  0x00000007 , 0x0000003f 
+ 00016188  0x000016f1 hstore  0x00000001 , 0x00008023 
+ 00016189  0x000016f2 ifetch  0x00000001 , 0x00000003 
+ 00016190  0x000016f3 iadd  0x00000002 , 0x00000002 
+ 00016191  0x000016f4 copy  0x0000003f , 0x00000039 
+ 00016192  0x000016f6 ifetch  0x00000001 , 0x00000003 
+ 00016193  0x000016f7 hstore  0x00000001 , 0x00008025 
+ 00016194  0x000016f8 iadd  0x00000002 , 0x00000002 
+ 00016195  0x000016f9 loop  0x00003f40 
+ 00016196  0x000016fa and  0x00000002 , 0x000000ff , 0x00000002 
+ 00016197  0x000016fb ifetch  0x00000001 , 0x00000003 
+ 00016198  0x000016fc isub  0x00000002 , 0x0000003e 
+ 00016199  0x000016fd nbranch  0x00003f58 , 0x00000005 
+ 00016200  0x000016fe branch  0x00003f70 
+ 00016201  0x00001701 arg  0x00000020 , 0x00000039 
+ 00016202  0x00001702 arg  0x00004000 , 0x00000005 
+ 00016203  0x00001703 arg  0x00000000 , 0x00000002 
+ 00016204  0x00001705 ifetch  0x00000001 , 0x00000003 
+ 00016205  0x00001706 istore  0x00000001 , 0x00000005 
+ 00016206  0x00001707 iadd  0x00000002 , 0x00000002 
+ 00016207  0x00001708 loop  0x00003f4c 
+ 00016208  0x00001709 and  0x00000002 , 0x000000ff , 0x00000002 
+ 00016209  0x0000170a ifetch  0x00000001 , 0x00000003 
+ 00016210  0x0000170b isub  0x00000002 , 0x0000003e 
+ 00016211  0x0000170c nbranch  0x00003f58 , 0x00000005 
+ 00016212  0x0000170d hjam  0x00000000 , 0x00008023 
+ 00016213  0x0000170e call  0x00003f70 
+ 00016214  0x0000170f call  0x00003ea3 
+ 00016215  0x00001710 branch  0x00003001 
+ 00016216  0x00001713 hjam  0x00000000 , 0x00008023 
+ 00016217  0x00001714 branch  0x00003000 
+ 00016218  0x00001717 ifetch  0x00000006 , 0x00000003 
+ 00016219  0x00001718 store  0x00000006 , 0x00004140 
+ 00016220  0x00001719 branch  0x00003f70 
+ 00016221  0x0000171d ifetch  0x00000001 , 0x00000003 
+ 00016222  0x0000171e store  0x00000001 , 0x00000283 
+ 00016223  0x0000171f copy  0x0000003f , 0x00000039 
+ 00016224  0x00001720 ifetch  0x00000002 , 0x00000003 
+ 00016225  0x00001721 store  0x00000002 , 0x00000284 
+ 00016226  0x00001722 copy  0x0000003f , 0x00000005 
+ 00016227  0x00001723 call  0x00006354 
+ 00016228  0x00001724 branch  0x00003f70 
+ 00016229  0x00001728 ifetch  0x00000001 , 0x00000003 
+ 00016230  0x00001729 store  0x00000001 , 0x00000283 
+ 00016231  0x0000172a copy  0x0000003f , 0x00000039 
+ 00016232  0x0000172b ifetch  0x00000002 , 0x00000003 
+ 00016233  0x0000172c store  0x00000002 , 0x00000284 
+ 00016234  0x0000172d arg  0x00001000 , 0x00000005 
+ 00016235  0x0000172e call  0x00006354 
+ 00016236  0x0000172f fetcht  0x00000001 , 0x00000283 
+ 00016237  0x00001730 arg  0x00001000 , 0x00000011 
+ 00016238  0x00001731 fetch  0x00000002 , 0x00000284 
+ 00016239  0x00001732 branch  0x00006271 
+ 00016240  0x00001738 set0  0x00000025 , 0x00000000 
+ 00016241  0x00001739 bpatch  0x000000c6 , 0x00004018 
+ 00016242  0x0000173a force  0x00000004 , 0x00000039 
+ 00016243  0x0000173c call  0x00003f8b 
+ 00016244  0x0000173d force  0x00000001 , 0x0000003f 
+ 00016245  0x0000173e istore  0x00000001 , 0x0000000a 
+ 00016246  0x0000173f deposit  0x00000030 
+ 00016247  0x00001740 istore  0x00000003 , 0x0000000a 
+ 00016248  0x00001741 force  0x0000000e , 0x00000007 
+ 00016249  0x00001743 set0  0x00000025 , 0x00000000 
+ 00016250  0x00001744 bpatch  0x000000c7 , 0x00004018 
+ 00016251  0x00001745 call  0x00003f8d 
+ 00016252  0x00001746 deposit  0x00000007 
+ 00016253  0x00001747 istore  0x00000001 , 0x0000000a 
+ 00016254  0x00001748 deposit  0x00000039 
+ 00016255  0x00001749 istore  0x00000001 , 0x0000000a 
+ 00016256  0x0000174b force  0x00000005 , 0x00000007 
+ 00016257  0x0000174c increase  0x00000002 , 0x00000039 
+ 00016258  0x0000174e branch  0x00003eb7 
+ 00016259  0x00001751 force  0x000000ff , 0x00000007 
+ 00016260  0x00001752 call  0x00003f8b 
+ 00016261  0x00001753 setarg  0x00000001 
+ 00016262  0x00001754 istore  0x00000001 , 0x0000000a 
+ 00016263  0x00001755 force  0x00000001 , 0x00000039 
+ 00016264  0x00001756 branch  0x00003f79 
+ 00016265  0x00001759 force  0x0000000c , 0x0000000a 
+ 00016266  0x0000175a branch  0x00003f8e 
+ 00016267  0x0000175d force  0x00000008 , 0x0000000a 
+ 00016268  0x0000175e branch  0x00003f8e 
+ 00016269  0x00001761 force  0x00000006 , 0x0000000a 
+ 00016270  0x00001763 branch  0x00003eb3 
+ 00016271  0x00001768 pulse  0x0000000f 
+ 00016272  0x00001769 enable  0x00000009 
+ 00016273  0x0000176b ifetch  0x00000001 , 0x0000000a 
+ 00016274  0x0000176c inject  0x00000000 , 0x00000008 
+ 00016275  0x0000176d loop  0x00003f91 
+ 00016276  0x0000176e enable  0x00000008 
+ 00016277  0x0000176f inject  0x00000000 , 0x00000010 
+ 00016278  0x00001770 disable  0x00000008 
+ 00016279  0x00001771 disable  0x00000009 
+ 00016280  0x00001772 disable  0x0000000f 
+ 00016281  0x00001773 byteswap  0x0000003f , 0x0000003f 
+ 00016282  0x00001774 rtn 
+ 00016283  0x00001779 jam  0x00000000 , 0x00004271 
+ 00016284  0x0000177a rtn 
+ 00016285  0x0000177c fetch  0x00000006 , 0x00004273 
+ 00016286  0x0000177d fetcht  0x00000006 , 0x00000040 
+ 00016287  0x0000177e isub  0x00000002 , 0x0000003e 
+ 00016288  0x0000177f rtn 
+ 00016289  0x00001785 fetch  0x00000001 , 0x0000004b 
+ 00016290  0x00001786 bbit1  0x00000002 , 0x00003fa6 
+ 00016291  0x00001787 call  0x000058fa 
+ 00016292  0x00001788 jam  0x00000008 , 0x0000007c 
+ 00016293  0x00001789 branch  0x00003f9b 
+ 00016294  0x0000178b set0  0x00000002 , 0x0000003f 
+ 00016295  0x0000178c store  0x00000001 , 0x0000004b 
+ 00016296  0x0000178d call  0x00005618 
+ 00016297  0x0000178e setarg  0x00000000 
+ 00016298  0x0000178f setflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00016299  0x00001790 store  0x00000001 , 0x0000007f 
+ 00016300  0x00001791 branch  0x00003f9b 
+ 00016301  0x00001792 rtn 
+ 00016302  0x00001794 jam  0x00000017 , 0x0000007c 
+ 00016303  0x00001795 arg  0x000003ff , 0x00000005 
+ 00016304  0x00001796 setarg  0x00000000 
+ 00016305  0x00001797 isolate1  0x0000001b , 0x00000028 
+ 00016306  0x00001798 setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00016307  0x00001799 istore  0x00000001 , 0x00000005 
+ 00016308  0x0000179a setarg  0x00000000 
+ 00016309  0x0000179b istore  0x00000002 , 0x00000005 
+ 00016310  0x0000179c fetch  0x00000002 , 0x00004284 
+ 00016311  0x0000179d istore  0x00000002 , 0x00000005 
+ 00016312  0x0000179e fetch  0x00000001 , 0x00004286 
+ 00016313  0x0000179f istore  0x00000002 , 0x00000005 
+ 00016314  0x000017a0 fetch  0x00000001 , 0x00004288 
+ 00016315  0x000017a1 istore  0x00000002 , 0x00000005 
+ 00016316  0x000017a2 branch  0x00003f9b 
+ 00016317  0x000017a5 jam  0x00000018 , 0x0000007c 
+ 00016318  0x000017a6 branch  0x00003f9b 
+ 00016319  0x000017a9 call  0x0000656e 
+ 00016320  0x000017aa rtn  0x00000001 
+ 00016321  0x000017ab arg  0x00000007 , 0x00000002 
+ 00016322  0x000017ac call  0x000064f5 
+ 00016323  0x000017ad nbranch  0x00003fc6 , 0x00000001 
+ 00016324  0x000017ae jam  0x00000001 , 0x000042d5 
+ 00016325  0x000017af rtn 
+ 00016326  0x000017b1 fetch  0x00000001 , 0x000042d5 
+ 00016327  0x000017b2 rtnne  0x00000001 
+ 00016328  0x000017b3 call  0x00003f29 
+ 00016329  0x000017b4 branch  0x00003f83 
+ 00016330  0x000017c3 set0  0x00000025 , 0x00000000 
+ 00016331  0x000017c4 bpatch  0x000000c8 , 0x00004019 
+ 00016332  0x000017c5 fetch  0x00000002 , 0x0000028d 
+ 00016333  0x000017c6 copy  0x0000003f , 0x00000006 
+ 00016334  0x000017c7 ifetch  0x00000001 , 0x00000006 
+ 00016335  0x000017c8 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00016336  0x000017c9 rshift4  0x0000003f , 0x0000003f 
+ 00016337  0x000017ca beq  0x00000009 , 0x00003feb 
+ 00016338  0x000017cb beq  0x00000007 , 0x00003feb 
+ 00016339  0x000017cc beq  0x0000000a , 0x00003ff7 
+ 00016340  0x000017cd beq  0x00000005 , 0x00003fe3 
+ 00016341  0x000017ce beq  0x00000001 , 0x00003fd7 
+ 00016342  0x000017cf rtn 
+ 00016343  0x000017d2 copy  0x00000002 , 0x0000003f 
+ 00016344  0x000017d3 beq  0x00000005 , 0x00003fdb 
+ 00016345  0x000017d4 beq  0x00000003 , 0x00003fe2 
+ 00016346  0x000017d5 rtn 
+ 00016347  0x000017d8 jam  0x00000027 , 0x000009bd 
+ 00016348  0x000017d9 call  0x00007d86 
+ 00016349  0x000017da fetch  0x00000001 , 0x00004132 
+ 00016350  0x000017db rtnne  0x00000006 , 0x0000003f 
+ 00016351  0x000017dc copy  0x00000002 , 0x0000003f 
+ 00016352  0x000017dd beq  0x00000005 , 0x00006455 
+ 00016353  0x000017de rtn 
+ 00016354  0x000017e0 rtn 
+ 00016355  0x000017e3 call  0x00003ff7 
+ 00016356  0x000017e4 arg  0x00000001 , 0x00000011 
+ 00016357  0x000017e5 call  0x00004005 
+ 00016358  0x000017e6 fetch  0x00000002 , 0x000042dc 
+ 00016359  0x000017e7 istore  0x00000002 , 0x00000005 
+ 00016360  0x000017e8 setarg  0x00000000 
+ 00016361  0x000017e9 istore  0x00000001 , 0x00000005 
+ 00016362  0x000017ea rtn 
+ 00016363  0x000017ed arg  0x00000001 , 0x00000011 
+ 00016364  0x000017ee call  0x00004005 
+ 00016365  0x000017ef fetch  0x00000002 , 0x000042dc 
+ 00016366  0x000017f0 istore  0x00000002 , 0x00000005 
+ 00016367  0x000017f1 setarg  0x00000000 
+ 00016368  0x000017f2 istore  0x00000001 , 0x00000005 
+ 00016369  0x000017f3 jam  0x00000001 , 0x000009b2 
+ 00016370  0x000017f4 fetch  0x00000001 , 0x000042e2 
+ 00016371  0x000017f5 set1  0x00000006 
+ 00016372  0x000017f6 store  0x00000001 , 0x000042e2 
+ 00016373  0x000017f7 jam  0x00000012 , 0x000009bd 
+ 00016374  0x000017f8 branch  0x00007d86 
+ 00016375  0x000017fb ifetch  0x00000001 , 0x00000006 
+ 00016376  0x000017fc beq  0x00000001 , 0x00003ffa 
+ 00016377  0x000017fd rtn 
+ 00016378  0x00001800 copy  0x00000006 , 0x00000011 
+ 00016379  0x00001801 fetch  0x00000001 , 0x00004132 
+ 00016380  0x00001802 rtnne  0x00000003 , 0x0000003f 
+ 00016381  0x00001803 copy  0x00000011 , 0x00000006 
+ 00016382  0x00001804 ifetch  0x00000001 , 0x00000006 
+ 00016383  0x00001805 store  0x00000001 , 0x00004b0f 
+ 00016384  0x00001806 store  0x00000001 , 0x00004b27 
+ 00016385  0x00001807 fetch  0x00000001 , 0x00004b01 
+ 00016386  0x00001808 nrtn  0x00000034 
+ 00016387  0x00001809 jam  0x00000002 , 0x00004b24 
+ 00016388  0x0000180a rtn 
+ 00016389  0x0000180d call  0x000047dc 
+ 00016390  0x0000180e copy  0x00000011 , 0x00000002 
+ 00016391  0x0000180f storet  0x00000001 , 0x000009b2 
+ 00016392  0x00001810 copy  0x0000003f , 0x00000005 
+ 00016393  0x00001811 copy  0x00000011 , 0x0000003f 
+ 00016394  0x00001812 istore  0x00000002 , 0x00000005 
+ 00016395  0x00001813 rtn 
+ 00016396  0x00001817 call  0x00004196 
+ 00016397  0x00001818 rtn  0x0000002b 
+ 00016398  0x0000181a call  0x00004034 
+ 00016399  0x0000181b call  0x00004055 
+ 00016400  0x0000181c setarg  0x000041a1 
+ 00016401  0x0000181d store  0x00000002 , 0x00004294 
+ 00016402  0x0000181e setarg  0x00004082 
+ 00016403  0x0000181f store  0x00000002 , 0x00004292 
+ 00016404  0x00001820 setarg  0x000041e6 
+ 00016405  0x00001821 store  0x00000002 , 0x00004296 
+ 00016406  0x00001822 setarg  0x00004268 
+ 00016407  0x00001823 store  0x00000002 , 0x0000428e 
+ 00016408  0x00001824 setarg  0x00004246 
+ 00016409  0x00001825 store  0x00000002 , 0x00004298 
+ 00016410  0x00001826 setarg  0x0000424b 
+ 00016411  0x00001827 store  0x00000002 , 0x0000428c 
+ 00016412  0x00001828 jam  0x00000000 , 0x000008d4 
+ 00016413  0x00001829 jam  0x00000000 , 0x000008d5 
+ 00016414  0x0000182a call  0x00004027 
+ 00016415  0x0000182b fetch  0x00000002 , 0x0000470b 
+ 00016416  0x0000182c bbit1  0x0000000c , 0x00003e54 
+ 00016417  0x0000182e fetch  0x00000001 , 0x000042b5 
+ 00016418  0x0000182f beq  0x00000033 , 0x00004024 
+ 00016419  0x00001830 branch  0x0000423e 
+ 00016420  0x00001832 fetch  0x00000006 , 0x00004273 
+ 00016421  0x00001833 branch  0x00003e54 , 0x00000034 
+ 00016422  0x00001834 branch  0x00003e49 
+ 00016423  0x00001837 call  0x00003e28 
+ 00016424  0x00001838 branch  0x00004032 , 0x00000005 
+ 00016425  0x00001839 setarg  0x00000001 
+ 00016426  0x0000183a store  0x00000001 , 0x00004ae9 
+ 00016427  0x0000183b call  0x0000427d 
+ 00016428  0x0000183c fetch  0x00000006 , 0x00004b07 
+ 00016429  0x0000183d store  0x00000006 , 0x00000040 
+ 00016430  0x0000183e store  0x00000006 , 0x00004273 
+ 00016431  0x0000183f call  0x00006432 
+ 00016432  0x00001840 jam  0x00000033 , 0x000042b5 
+ 00016433  0x00001841 branch  0x00003e20 
+ 00016434  0x00001844 call  0x00004284 
+ 00016435  0x00001845 branch  0x00006441 
+ 00016436  0x00001849 set0  0x00000025 , 0x00000000 
+ 00016437  0x0000184a bpatch  0x000000c9 , 0x00004019 
+ 00016438  0x0000184b hjam  0x00000000 , 0x00008070 
+ 00016439  0x0000184c hjam  0x000000ff , 0x00008078 
+ 00016440  0x0000184d hjam  0x000000ff , 0x00008071 
+ 00016441  0x0000184e hjam  0x000000ff , 0x00008072 
+ 00016442  0x0000184f hfetch  0x00000001 , 0x00008073 
+ 00016443  0x00001850 or_into  0x00000007 , 0x0000003f 
+ 00016444  0x00001851 hstore  0x00000001 , 0x00008073 
+ 00016445  0x00001852 hjam  0x00000000 , 0x00008080 
+ 00016446  0x00001853 hjam  0x00000000 , 0x00008081 
+ 00016447  0x00001854 hjam  0x00000000 , 0x0000806f 
+ 00016448  0x00001855 setarg  0x00000013 
+ 00016449  0x00001856 lshift3  0x0000003f , 0x0000003f 
+ 00016450  0x00001857 add  0x0000003f , 0x00000007 , 0x0000003f 
+ 00016451  0x00001858 hstore  0x00000001 , 0x00008064 
+ 00016452  0x00001859 hjam  0x000000ff , 0x00008083 
+ 00016453  0x0000185a hjam  0x000000ff , 0x00008084 
+ 00016454  0x0000185b hfetch  0x00000001 , 0x00008085 
+ 00016455  0x0000185c or_into  0x00000001 , 0x0000003f 
+ 00016456  0x0000185d hstore  0x00000001 , 0x00008085 
+ 00016457  0x0000185f hfetch  0x00000001 , 0x00008043 
+ 00016458  0x00001860 set1  0x00000002 , 0x0000003f 
+ 00016459  0x00001861 hstore  0x00000001 , 0x00008043 
+ 00016460  0x00001862 hjam  0x0000000c , 0x00008063 
+ 00016461  0x00001863 hjam  0x00000030 , 0x00008066 
+ 00016462  0x00001864 hfetch  0x00000001 , 0x00008051 
+ 00016463  0x00001865 set0  0x00000001 , 0x0000003f 
+ 00016464  0x00001866 hstore  0x00000001 , 0x00008051 
+ 00016465  0x00001867 hfetch  0x00000001 , 0x00008063 
+ 00016466  0x00001868 set1  0x00000000 , 0x0000003f 
+ 00016467  0x00001869 hstore  0x00000001 , 0x00008063 
+ 00016468  0x0000186a rtn 
+ 00016469  0x0000186c call  0x00004058 
+ 00016470  0x0000186d call  0x0000405c 
+ 00016471  0x0000186e branch  0x00004060 
+ 00016472  0x00001870 fetch  0x00000001 , 0x00004737 
+ 00016473  0x00001871 rtneq  0x000000ff 
+ 00016474  0x00001872 fetcht  0x00000001 , 0x00004737 
+ 00016475  0x00001873 branch  0x000064e8 
+ 00016476  0x00001875 fetch  0x00000001 , 0x00004738 
+ 00016477  0x00001876 rtneq  0x000000ff 
+ 00016478  0x00001877 fetcht  0x00000001 , 0x00004738 
+ 00016479  0x00001878 branch  0x000064e8 
+ 00016480  0x0000187a fetch  0x00000001 , 0x00004739 
+ 00016481  0x0000187b rtneq  0x000000ff 
+ 00016482  0x0000187c fetcht  0x00000001 , 0x00004739 
+ 00016483  0x0000187d branch  0x000064e8 
+ 00016484  0x00001880 fetch  0x00000001 , 0x00004b24 
+ 00016485  0x00001881 rtn  0x00000034 
+ 00016486  0x00001882 increase  0xffffffff , 0x0000003f 
+ 00016487  0x00001883 store  0x00000001 , 0x00004b24 
+ 00016488  0x00001884 nrtn  0x00000034 
+ 00016489  0x00001886 set0  0x00000025 , 0x00000000 
+ 00016490  0x00001887 bpatch  0x000000ca , 0x00004019 
+ 00016491  0x00001888 fetch  0x00000001 , 0x00004b27 
+ 00016492  0x00001889 copy  0x0000003f , 0x00000011 
+ 00016493  0x0000188a fetcht  0x00000001 , 0x00004738 
+ 00016494  0x0000188b isolate1  0x00000000 , 0x00000011 
+ 00016495  0x0000188c call  0x00006500 
+ 00016496  0x0000188d fetcht  0x00000001 , 0x00004737 
+ 00016497  0x0000188e isolate1  0x00000001 , 0x00000011 
+ 00016498  0x0000188f call  0x00006500 
+ 00016499  0x00001890 fetcht  0x00000001 , 0x00004739 
+ 00016500  0x00001891 isolate1  0x00000002 , 0x00000011 
+ 00016501  0x00001892 call  0x00006500 
+ 00016502  0x00001893 branch  0x0000407d 
+ 00016503  0x00001895 fetch  0x00000001 , 0x00004aa7 
+ 00016504  0x00001896 rtn  0x00000034 
+ 00016505  0x00001897 increase  0xffffffff , 0x0000003f 
+ 00016506  0x00001898 store  0x00000001 , 0x00004aa7 
+ 00016507  0x00001899 nrtn  0x00000034 
+ 00016508  0x0000189a branch  0x00003e7f 
+ 00016509  0x0000189c fetch  0x00000001 , 0x00004aa8 
+ 00016510  0x0000189d store  0x00000001 , 0x00004aa7 
+ 00016511  0x0000189e branch  0x00003e81 
+ 00016512  0x000018a1 jam  0x00000001 , 0x00004b26 
+ 00016513  0x000018a2 branch  0x000040b4 
+ 00016514  0x000018a6 call  0x00004812 
+ 00016515  0x000018a7 nrtn  0x00000034 
+ 00016516  0x000018a8 fetch  0x00000006 , 0x00004b07 
+ 00016517  0x000018a9 fetcht  0x00000006 , 0x00000040 
+ 00016518  0x000018aa isub  0x00000002 , 0x0000003e 
+ 00016519  0x000018ab branch  0x00004097 , 0x00000005 
+ 00016520  0x000018ac fetch  0x00000001 , 0x000003fa 
+ 00016521  0x000018ad beq  0x00000001 , 0x00004119 
+ 00016522  0x000018ae fetch  0x00000001 , 0x000042e3 
+ 00016523  0x000018af rtnne  0x0000003f 
+ 00016524  0x000018b0 fetcht  0x00000008 , 0x00004aba 
+ 00016525  0x000018b1 fetch  0x00000008 , 0x00004aaa 
+ 00016526  0x000018b2 store  0x00000008 , 0x00004aba 
+ 00016527  0x000018b3 isub  0x00000002 , 0x0000003e 
+ 00016528  0x000018b4 ncall  0x000040ac , 0x00000005 
+ 00016529  0x000018b6 fetcht  0x00000008 , 0x00004ac2 
+ 00016530  0x000018b7 fetch  0x00000008 , 0x00004ab2 
+ 00016531  0x000018b8 store  0x00000008 , 0x00004ac2 
+ 00016532  0x000018b9 isub  0x00000002 , 0x0000003e 
+ 00016533  0x000018ba ncall  0x000040c7 , 0x00000005 
+ 00016534  0x000018bb rtn 
+ 00016535  0x000018be fetch  0x00000001 , 0x00004aca 
+ 00016536  0x000018bf beq  0x0000007f , 0x000040aa 
+ 00016537  0x000018c0 fetcht  0x00000008 , 0x00004aba 
+ 00016538  0x000018c1 fetch  0x00000008 , 0x00004aaa 
+ 00016539  0x000018c2 store  0x00000008 , 0x00004aba 
+ 00016540  0x000018c3 isub  0x00000002 , 0x0000003e 
+ 00016541  0x000018c4 rtn  0x00000005 
+ 00016542  0x000018c5 arg  0x00004aaa , 0x00000006 
+ 00016543  0x000018c6 arg  0x00004ade , 0x00000011 
+ 00016544  0x000018c7 call  0x000040bb 
+ 00016545  0x000018c8 arg  0x0000000a , 0x00000011 
+ 00016546  0x000018c9 call  0x00004005 
+ 00016547  0x000018ca setarg  0x00000053 
+ 00016548  0x000018cb istore  0x00000002 , 0x00000005 
+ 00016549  0x000018cc setarg  0x000001a1 
+ 00016550  0x000018cd istore  0x00000002 , 0x00000005 
+ 00016551  0x000018ce fetch  0x00000008 , 0x00004ade 
+ 00016552  0x000018cf istore  0x00000008 , 0x00000005 
+ 00016553  0x000018d0 rtn 
+ 00016554  0x000018d2 store  0x00000008 , 0x00004aaa 
+ 00016555  0x000018d3 branch  0x00004099 
+ 00016556  0x000018d7 call  0x00004812 
+ 00016557  0x000018d8 nrtn  0x00000034 
+ 00016558  0x000018d9 fetch  0x00000001 , 0x00004aa9 
+ 00016559  0x000018da rtnbit1  0x00000002 
+ 00016560  0x000018db call  0x000040e0 
+ 00016561  0x000018dc fetch  0x00000001 , 0x00004aaa 
+ 00016562  0x000018dd beq  0x00000039 , 0x00004080 
+ 00016563  0x000018de jam  0x00000000 , 0x00004b26 
+ 00016564  0x000018df arg  0x00004aaa , 0x00000006 
+ 00016565  0x000018e0 arg  0x00004ade , 0x00000011 
+ 00016566  0x000018e1 call  0x000040bb 
+ 00016567  0x000018e2 call  0x000040f1 
+ 00016568  0x000018e3 fetch  0x00000008 , 0x00004ade 
+ 00016569  0x000018e4 istore  0x00000008 , 0x00000005 
+ 00016570  0x000018e5 rtn 
+ 00016571  0x000018e8 arg  0x00000000 , 0x00000002 
+ 00016572  0x000018e9 add  0x00000011 , 0x00000002 , 0x00000005 
+ 00016573  0x000018ea arg  0x00000008 , 0x00000039 
+ 00016574  0x000018ec ifetch  0x00000001 , 0x00000006 
+ 00016575  0x000018ed bbit0  0x00000007 , 0x000040c3 
+ 00016576  0x000018ee and  0x0000003f , 0x00000007 , 0x00000007 
+ 00016577  0x000018ef qset1  0x00000002 
+ 00016578  0x000018f0 branch  0x000040c4 
+ 00016579  0x000018f2 istore  0x00000001 , 0x00000005 
+ 00016580  0x000018f4 loop  0x000040be 
+ 00016581  0x000018f5 istoret  0x00000002 , 0x00000011 
+ 00016582  0x000018f6 rtn 
+ 00016583  0x000018f9 call  0x00004812 
+ 00016584  0x000018fa nrtn  0x00000034 
+ 00016585  0x000018fb call  0x000040e0 
+ 00016586  0x000018fc fetch  0x00000001 , 0x00004ab2 
+ 00016587  0x000018fd beq  0x000000ff , 0x0000410d 
+ 00016588  0x000018fe beq  0x000000fe , 0x00004109 
+ 00016589  0x000018ff setarg  0x00000000 
+ 00016590  0x00001900 store  0x00000008 , 0x00004ade 
+ 00016591  0x00001901 call  0x000040d6 
+ 00016592  0x00001903 fetch  0x00000001 , 0x00004aa9 
+ 00016593  0x00001904 bbit1  0x00000002 , 0x000040ff 
+ 00016594  0x00001905 call  0x000040f8 
+ 00016595  0x00001906 fetch  0x00000004 , 0x00004ade 
+ 00016596  0x00001907 istore  0x00000004 , 0x00000005 
+ 00016597  0x00001908 rtn 
+ 00016598  0x0000190b fetch  0x00000001 , 0x00004ab2 
+ 00016599  0x0000190c rtn  0x00000034 
+ 00016600  0x0000190d enable  0x00000001 
+ 00016601  0x0000190e fetch  0x00000001 , 0x00004ab2 
+ 00016602  0x0000190f copy  0x0000003f , 0x00000007 
+ 00016603  0x00001910 fetch  0x00000008 , 0x00004ade 
+ 00016604  0x00001911 qsetflag  0x00000001 , 0x0000003f 
+ 00016605  0x00001912 store  0x00000008 , 0x00004ade 
+ 00016606  0x00001913 disable  0x00000001 
+ 00016607  0x00001914 rtn 
+ 00016608  0x00001917 fetch  0x00000002 , 0x00004afa 
+ 00016609  0x00001918 store  0x00000002 , 0x00004aa1 
+ 00016610  0x00001919 rtn 
+ 00016611  0x0000191b fetch  0x00000002 , 0x00004aa1 
+ 00016612  0x0000191c rtn  0x00000034 
+ 00016613  0x0000191d fetch  0x00000002 , 0x00004aa1 
+ 00016614  0x0000191e increase  0xffffffff , 0x0000003f 
+ 00016615  0x0000191f store  0x00000002 , 0x00004aa1 
+ 00016616  0x00001920 nrtn  0x00000034 
+ 00016617  0x00001921 branch  0x000040ea 
+ 00016618  0x00001923 setarg  0x00000000 
+ 00016619  0x00001924 store  0x00000002 , 0x00004aa1 
+ 00016620  0x00001925 fetch  0x00000002 , 0x0000470b 
+ 00016621  0x00001926 bbit1  0x00000009 , 0x00003e6b 
+ 00016622  0x00001927 fetch  0x00000002 , 0x0000470b 
+ 00016623  0x00001928 bbit1  0x00000000 , 0x00003e52 
+ 00016624  0x00001929 rtn 
+ 00016625  0x0000192c arg  0x0000000a , 0x00000011 
+ 00016626  0x0000192d call  0x00004005 
+ 00016627  0x0000192e fetch  0x00000002 , 0x000042de 
+ 00016628  0x0000192f istore  0x00000002 , 0x00000005 
+ 00016629  0x00001930 setarg  0x000001a1 
+ 00016630  0x00001931 istore  0x00000002 , 0x00000005 
+ 00016631  0x00001932 rtn 
+ 00016632  0x00001934 arg  0x00000006 , 0x00000011 
+ 00016633  0x00001935 call  0x00004005 
+ 00016634  0x00001936 fetch  0x00000002 , 0x000042de 
+ 00016635  0x00001937 istore  0x00000002 , 0x00000005 
+ 00016636  0x00001938 setarg  0x000002a1 
+ 00016637  0x00001939 istore  0x00000002 , 0x00000005 
+ 00016638  0x0000193a rtn 
+ 00016639  0x0000193d call  0x000040f1 
+ 00016640  0x0000193e setarg  0x00000000 
+ 00016641  0x0000193f istore  0x00000008 , 0x00000005 
+ 00016642  0x00001940 call  0x000040f8 
+ 00016643  0x00001941 setarg  0x00000000 
+ 00016644  0x00001942 istore  0x00000004 , 0x00000005 
+ 00016645  0x00001943 fetch  0x00000001 , 0x00004aa9 
+ 00016646  0x00001944 set0  0x00000002 , 0x0000003f 
+ 00016647  0x00001945 store  0x00000001 , 0x00004aa9 
+ 00016648  0x00001946 rtn 
+ 00016649  0x00001948 call  0x000040f8 
+ 00016650  0x00001949 setarg  0x00002002 
+ 00016651  0x0000194a istore  0x00000004 , 0x00000005 
+ 00016652  0x0000194b rtn 
+ 00016653  0x0000194e call  0x000040f8 
+ 00016654  0x0000194f setarg  0x00000040 
+ 00016655  0x00001950 istore  0x00000004 , 0x00000005 
+ 00016656  0x00001951 call  0x000040f1 
+ 00016657  0x00001952 setarg  0x00000000 
+ 00016658  0x00001953 istore  0x00000002 , 0x00000005 
+ 00016659  0x00001954 setarg  0x00000010 
+ 00016660  0x00001955 istore  0x00000007 , 0x00000005 
+ 00016661  0x00001956 fetch  0x00000001 , 0x00004aa9 
+ 00016662  0x00001957 set1  0x00000002 , 0x0000003f 
+ 00016663  0x00001958 store  0x00000001 , 0x00004aa9 
+ 00016664  0x00001959 rtn 
+ 00016665  0x0000195d set0  0x00000025 , 0x00000000 
+ 00016666  0x0000195e bpatch  0x000000cb , 0x00004019 
+ 00016667  0x0000195f fetch  0x00000001 , 0x00004aa9 
+ 00016668  0x00001960 rtnbit0  0x00000001 
+ 00016669  0x00001961 set0  0x00000001 , 0x0000003f 
+ 00016670  0x00001962 store  0x00000001 , 0x00004aa9 
+ 00016671  0x00001963 fetcht  0x00000001 , 0x00004718 
+ 00016672  0x00001964 setarg  0x00004719 
+ 00016673  0x00001965 iadd  0x00000002 , 0x00000005 
+ 00016674  0x00001966 fetch  0x00000001 , 0x00004aca 
+ 00016675  0x00001967 branch  0x00004128 , 0x00000034 
+ 00016676  0x00001968 beq  0x0000002a , 0x0000412a 
+ 00016677  0x00001969 bne  0x00000028 , 0x00004134 
+ 00016678  0x0000196a storet  0x00000001 , 0x00004718 
+ 00016679  0x0000196b branch  0x00003e45 
+ 00016680  0x0000196e storet  0x00000001 , 0x00004718 
+ 00016681  0x0000196f rtn 
+ 00016682  0x00001971 fetch  0x00000001 , 0x00004718 
+ 00016683  0x00001972 rtn  0x00000034 
+ 00016684  0x00001973 increase  0xffffffff , 0x0000003f 
+ 00016685  0x00001974 store  0x00000001 , 0x00004718 
+ 00016686  0x00001975 arg  0x00004719 , 0x00000005 
+ 00016687  0x00001976 iadd  0x00000005 , 0x00000005 
+ 00016688  0x00001977 setarg  0x00000000 
+ 00016689  0x00001978 istore  0x00000001 , 0x00000005 
+ 00016690  0x00001979 enable  0x0000002c 
+ 00016691  0x0000197a branch  0x00004143 
+ 00016692  0x0000197c sub  0x0000003f , 0x0000001d , 0x0000003e 
+ 00016693  0x0000197d rtn  0x00000002 
+ 00016694  0x0000197e arg  0x00000030 , 0x00000002 
+ 00016695  0x0000197f sub  0x0000003f , 0x00000027 , 0x0000003e 
+ 00016696  0x00001980 nrtn  0x00000002 
+ 00016697  0x00001981 branch  0x0000413d , 0x00000005 
+ 00016698  0x00001982 arg  0x0000001d , 0x00000002 
+ 00016699  0x00001983 isub  0x00000002 , 0x00000002 
+ 00016700  0x00001984 or_into  0x00000030 , 0x00000002 
+ 00016701  0x00001986 istoret  0x00000001 , 0x00000005 
+ 00016702  0x00001987 fetch  0x00000001 , 0x00004718 
+ 00016703  0x00001988 increase  0x00000001 , 0x0000003f 
+ 00016704  0x00001989 store  0x00000001 , 0x00004718 
+ 00016705  0x0000198a disable  0x0000002c 
+ 00016706  0x0000198b branch  0x00004143 
+ 00016707  0x0000198e fetch  0x00000002 , 0x000042de 
+ 00016708  0x0000198f rtn  0x00000034 
+ 00016709  0x00001990 arg  0x00000003 , 0x00000011 
+ 00016710  0x00001991 call  0x00004005 
+ 00016711  0x00001992 fetch  0x00000002 , 0x000042de 
+ 00016712  0x00001993 istore  0x00000002 , 0x00000005 
+ 00016713  0x00001994 setarg  0x0000ffa1 
+ 00016714  0x00001995 istore  0x00000002 , 0x00000005 
+ 00016715  0x00001996 setarg  0x00000000 
+ 00016716  0x00001997 setflag  0x0000002c , 0x00000000 , 0x0000003f 
+ 00016717  0x00001998 istore  0x00000001 , 0x00000005 
+ 00016718  0x00001999 rtn 
+ 00016719  0x0000199e disable  0x00000028 
+ 00016720  0x0000199f disable  0x0000002c 
+ 00016721  0x000019a0 hfetch  0x00000001 , 0x00008119 
+ 00016722  0x000019a1 rtnbit1  0x00000000 
+ 00016723  0x000019a4 hfetch  0x00000001 , 0x0000811b 
+ 00016724  0x000019a5 bbit1  0x00000000 , 0x00004159 
+ 00016725  0x000019a6 hfetch  0x00000001 , 0x00008119 
+ 00016726  0x000019a7 bbit0  0x00000006 , 0x00004159 
+ 00016727  0x000019a8 hfetch  0x00000001 , 0x0000811a 
+ 00016728  0x000019a9 branch  0x0000414f 
+ 00016729  0x000019ac enable  0x00000028 
+ 00016730  0x000019ad enable  0x0000002c 
+ 00016731  0x000019ae hfetch  0x00000001 , 0x0000811b 
+ 00016732  0x000019af isolate0  0x00000000 , 0x0000003f 
+ 00016733  0x000019b0 hfetch  0x00000001 , 0x0000811a 
+ 00016734  0x000019b1 arg  0x000049ff , 0x00000006 
+ 00016735  0x000019b2 iadd  0x00000006 , 0x00000006 
+ 00016736  0x000019b3 ifetch  0x00000001 , 0x00000006 
+ 00016737  0x000019b4 bbit1  0x00000007 , 0x00004191 
+ 00016738  0x000019b5 nbranch  0x00004182 , 0x00000001 
+ 00016739  0x000019b6 disable  0x0000002c 
+ 00016740  0x000019b7 iforce  0x00000002 
+ 00016741  0x000019b8 fetch  0x00000001 , 0x00004731 
+ 00016742  0x000019b9 sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00016743  0x000019ba nrtn  0x00000002 
+ 00016744  0x000019bb copy  0x0000003f , 0x00000011 
+ 00016745  0x000019bc arg  0x00000003 , 0x00000039 
+ 00016746  0x000019bd arg  0x0000472b , 0x00000006 
+ 00016747  0x000019bf ifetch  0x00000001 , 0x00000006 
+ 00016748  0x000019c0 isub  0x00000002 , 0x0000003e 
+ 00016749  0x000019c1 branch  0x0000414f , 0x00000005 
+ 00016750  0x000019c2 loop  0x0000416b 
+ 00016751  0x000019c4 copy  0x00000011 , 0x0000003f 
+ 00016752  0x000019c5 arg  0x0000472b , 0x00000005 
+ 00016753  0x000019c6 iadd  0x00000005 , 0x00000005 
+ 00016754  0x000019c7 istoret  0x00000001 , 0x00000005 
+ 00016755  0x000019c8 increase  0x00000001 , 0x0000003f 
+ 00016756  0x000019c9 store  0x00000001 , 0x00004731 
+ 00016757  0x000019ca hfetch  0x00000001 , 0x0000811b 
+ 00016758  0x000019cb rshift3  0x0000003f , 0x0000003f 
+ 00016759  0x000019cc nbranch  0x00004179 , 0x00000034 
+ 00016760  0x000019cd branch  0x00004180 
+ 00016761  0x000019d0 increase  0xffffffff , 0x0000003f 
+ 00016762  0x000019d1 branch  0x00004180 , 0x00000005 
+ 00016763  0x000019d2 hfetch  0x00000001 , 0x0000811b 
+ 00016764  0x000019d3 and_into  0x00000001 , 0x0000003f 
+ 00016765  0x000019d4 beq  0x00000000 , 0x0000414f 
+ 00016766  0x000019d5 beq  0x00000001 , 0x00004180 
+ 00016767  0x000019d6 rtn 
+ 00016768  0x000019d8 enable  0x0000002c 
+ 00016769  0x000019d9 rtn 
+ 00016770  0x000019dc and  0x0000003f , 0x000000ff , 0x00000002 
+ 00016771  0x000019dd fetch  0x00000001 , 0x00004731 
+ 00016772  0x000019de rtn  0x00000034 
+ 00016773  0x000019df iforce  0x00000039 
+ 00016774  0x000019e0 arg  0x0000472b , 0x00000006 
+ 00016775  0x000019e2 ifetch  0x00000001 , 0x00000006 
+ 00016776  0x000019e3 isub  0x00000002 , 0x0000003e 
+ 00016777  0x000019e4 branch  0x00004291 , 0x00000005 
+ 00016778  0x000019e5 loop  0x00004187 
+ 00016779  0x000019e6 rtn 
+ 00016780  0x000019ea hfetch  0x00000001 , 0x0000811b 
+ 00016781  0x000019eb and_into  0x00000001 , 0x0000003f 
+ 00016782  0x000019ec beq  0x00000000 , 0x00004180 
+ 00016783  0x000019ed beq  0x00000001 , 0x0000414f 
+ 00016784  0x000019ee rtn 
+ 00016785  0x000019f1 and  0x0000003f , 0x00000007 , 0x00000007 
+ 00016786  0x000019f2 fetch  0x00000001 , 0x00004729 
+ 00016787  0x000019f3 qsetflag  0x00000001 , 0x0000003f 
+ 00016788  0x000019f4 store  0x00000001 , 0x00004729 
+ 00016789  0x000019f5 rtn 
+ 00016790  0x000019f8 setarg  0x00000000 
+ 00016791  0x000019f9 store  0x00000008 , 0x00004aca 
+ 00016792  0x000019fa store  0x00000001 , 0x00004731 
+ 00016793  0x000019fb rtn 
+ 00016794  0x000019fe hfetch  0x00000001 , 0x0000811b 
+ 00016795  0x000019ff hfetch  0x00000001 , 0x0000811a 
+ 00016796  0x00001a00 hfetch  0x00000001 , 0x00008119 
+ 00016797  0x00001a01 bbit0  0x00000000 , 0x0000419a 
+ 00016798  0x00001a02 setarg  0x000000ff 
+ 00016799  0x00001a03 enable  0x00000028 
+ 00016800  0x00001a04 rtn 
+ 00016801  0x00001a07 call  0x000041ac 
+ 00016802  0x00001a08 rtn  0x0000002b 
+ 00016803  0x00001a0a fetch  0x00000001 , 0x00004b17 
+ 00016804  0x00001a0b call  0x00004299 , 0x00000034 
+ 00016805  0x00001a0c call  0x0000429c 
+ 00016806  0x00001a0d fetch  0x00000001 , 0x00004731 
+ 00016807  0x00001a0e rtn  0x00000034 
+ 00016808  0x00001a0f call  0x000041bf 
+ 00016809  0x00001a10 fetch  0x00000004 , 0x00000b26 
+ 00016810  0x00001a11 store  0x00000004 , 0x00004afc 
+ 00016811  0x00001a12 rtn 
+ 00016812  0x00001a15 fetch  0x00000002 , 0x0000470b 
+ 00016813  0x00001a16 rtnbit0  0x00000007 
+ 00016814  0x00001a17 fetch  0x00000001 , 0x00004aa9 
+ 00016815  0x00001a18 rtnbit1  0x00000000 , 0x0000003f 
+ 00016816  0x00001a19 fetch  0x00000002 , 0x00004aca 
+ 00016817  0x00001a1a fetcht  0x00000002 , 0x00004b28 
+ 00016818  0x00001a1b isub  0x00000002 , 0x0000003e 
+ 00016819  0x00001a1c branch  0x000041bb , 0x00000005 
+ 00016820  0x00001a1d fetch  0x00000002 , 0x00004aca 
+ 00016821  0x00001a1e fetcht  0x00000002 , 0x00004b29 
+ 00016822  0x00001a1f isub  0x00000002 , 0x0000003e 
+ 00016823  0x00001a20 branch  0x000041bb , 0x00000005 
+ 00016824  0x00001a21 fetch  0x00000002 , 0x0000470b 
+ 00016825  0x00001a22 bbit1  0x0000000c , 0x000041bb 
+ 00016826  0x00001a23 rtn 
+ 00016827  0x00001a26 fetch  0x00000001 , 0x00004aa9 
+ 00016828  0x00001a27 set1  0x00000000 , 0x0000003f 
+ 00016829  0x00001a28 store  0x00000001 , 0x00004aa9 
+ 00016830  0x00001a29 branch  0x00007e3d 
+ 00016831  0x00001a2d hfetch  0x00000003 , 0x00008083 
+ 00016832  0x00001a2e iforce  0x00000012 
+ 00016833  0x00001a2f hfetch  0x00000004 , 0x00008078 
+ 00016834  0x00001a30 iforce  0x00000011 
+ 00016835  0x00001a31 hfetcht  0x00000008 , 0x00008070 
+ 00016836  0x00001a32 setarg  0x00000000 
+ 00016837  0x00001a33 hstore  0x00000003 , 0x00008083 
+ 00016838  0x00001a34 nop  0x00000064 
+ 00016839  0x00001a35 hfetch  0x00000001 , 0x0000811c 
+ 00016840  0x00001a36 store  0x00000001 , 0x00000b26 
+ 00016841  0x00001a37 hjam  0x00000000 , 0x00008078 
+ 00016842  0x00001a38 hfetch  0x00000001 , 0x00008073 
+ 00016843  0x00001a39 and_into  0x000000f0 , 0x0000003f 
+ 00016844  0x00001a3a hstore  0x00000001 , 0x00008073 
+ 00016845  0x00001a3b xor_into  0x000000ff , 0x0000003f 
+ 00016846  0x00001a3c hstore  0x00000001 , 0x0000807b 
+ 00016847  0x00001a3d setarg  0x000000ff 
+ 00016848  0x00001a3e hstore  0x00000003 , 0x00008070 
+ 00016849  0x00001a3f setarg  0x0000ffff 
+ 00016850  0x00001a40 hstore  0x00000002 , 0x00008079 
+ 00016851  0x00001a41 nop  0x00000064 
+ 00016852  0x00001a42 hfetch  0x00000003 , 0x0000811d 
+ 00016853  0x00001a43 iand  0x00000012 , 0x0000003f 
+ 00016854  0x00001a44 store  0x00000003 , 0x00000b27 
+ 00016855  0x00001a45 deposit  0x00000011 
+ 00016856  0x00001a46 hstore  0x00000004 , 0x00008078 
+ 00016857  0x00001a47 hstoret  0x00000008 , 0x00008070 
+ 00016858  0x00001a48 deposit  0x00000012 
+ 00016859  0x00001a49 hstore  0x00000003 , 0x00008083 
+ 00016860  0x00001a4a rtn 
+ 00016861  0x00001a4d fetch  0x00000001 , 0x00004133 
+ 00016862  0x00001a4e nrtn  0x00000034 
+ 00016863  0x00001a4f fetch  0x00000001 , 0x00004283 
+ 00016864  0x00001a50 nrtn  0x00000034 
+ 00016865  0x00001a51 fetch  0x00000001 , 0x00004701 
+ 00016866  0x00001a52 rtn  0x00000034 
+ 00016867  0x00001a53 fetch  0x00000001 , 0x00004702 
+ 00016868  0x00001a54 nrtn  0x00000034 
+ 00016869  0x00001a55 branch  0x00003e75 
+ 00016870  0x00001a58 copy  0x00000013 , 0x0000003f 
+ 00016871  0x00001a59 beq  0x00000006 , 0x0000426d 
+ 00016872  0x00001a5a beq  0x0000000a , 0x00004247 
+ 00016873  0x00001a5b beq  0x00000012 , 0x00004271 
+ 00016874  0x00001a5c beq  0x00000010 , 0x00004223 
+ 00016875  0x00001a5d beq  0x0000002e , 0x00003e32 
+ 00016876  0x00001a5e beq  0x00000001 , 0x0000423a 
+ 00016877  0x00001a5f beq  0x00000002 , 0x0000420c 
+ 00016878  0x00001a60 beq  0x00000004 , 0x00004201 
+ 00016879  0x00001a61 beq  0x00000013 , 0x00004201 
+ 00016880  0x00001a62 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00016881  0x00001a63 and_into  0x000000f0 , 0x0000003f 
+ 00016882  0x00001a64 beq  0x00000050 , 0x000041f4 
+ 00016883  0x00001a65 rtn 
+ 00016884  0x00001a69 set0  0x00000025 , 0x00000000 
+ 00016885  0x00001a6a bpatch  0x000000cc , 0x00004019 
+ 00016886  0x00001a6b storet  0x00000001 , 0x0000024e 
+ 00016887  0x00001a6d fetch  0x00000001 , 0x0000024e 
+ 00016888  0x00001a6e rtn  0x00000034 
+ 00016889  0x00001a6f increase  0xffffffff , 0x0000003f 
+ 00016890  0x00001a70 store  0x00000001 , 0x0000024e 
+ 00016891  0x00001a71 call  0x00004064 
+ 00016892  0x00001a72 call  0x0000421d 
+ 00016893  0x00001a73 call  0x00004077 
+ 00016894  0x00001a74 call  0x000040e3 
+ 00016895  0x00001a75 call  0x000042b3 
+ 00016896  0x00001a76 branch  0x000041f7 
+ 00016897  0x00001a79 fetch  0x00000002 , 0x0000470b 
+ 00016898  0x00001a7a bbit1  0x0000000c , 0x0000423e 
+ 00016899  0x00001a7b fetch  0x00000001 , 0x00004aa9 
+ 00016900  0x00001a7c bbit0 , 0x00000000 , 0x00003e0a 
+ 00016901  0x00001a7d fetch  0x00000001 , 0x00004aa9 
+ 00016902  0x00001a7e set0  0x00000000 , 0x0000003f 
+ 00016903  0x00001a7f store  0x00000001 , 0x00004aa9 
+ 00016904  0x00001a80 fetch  0x00000002 , 0x0000470b 
+ 00016905  0x00001a81 set0  0x00000007 , 0x0000003f 
+ 00016906  0x00001a82 store  0x00000002 , 0x0000470b 
+ 00016907  0x00001a83 rtn 
+ 00016908  0x00001a86 set0  0x00000025 , 0x00000000 
+ 00016909  0x00001a87 bpatch  0x000000cd , 0x00004019 
+ 00016910  0x00001a88 call  0x0000421a 
+ 00016911  0x00001a89 fetch  0x00000002 , 0x000042ad 
+ 00016912  0x00001a8a bbit1  0x00000000 , 0x00003e0c 
+ 00016913  0x00001a8b bbit1  0x00000001 , 0x00004214 
+ 00016914  0x00001a8c bbit1  0x00000002 , 0x00004217 
+ 00016915  0x00001a8d branch  0x0000423e 
+ 00016916  0x00001a8f bbit1  0x00000005 , 0x00004217 
+ 00016917  0x00001a90 bbit1  0x00000003 , 0x00004217 
+ 00016918  0x00001a91 branch  0x0000423e 
+ 00016919  0x00001a94 fetch  0x00000002 , 0x0000470b 
+ 00016920  0x00001a95 bbit1  0x0000000c , 0x0000423e 
+ 00016921  0x00001a96 branch  0x00003e0a 
+ 00016922  0x00001a99 jam  0x00000000 , 0x00004283 
+ 00016923  0x00001a9a jam  0x00000000 , 0x00004b02 
+ 00016924  0x00001a9b rtn 
+ 00016925  0x00001a9f fetch  0x00000001 , 0x00004709 
+ 00016926  0x00001aa0 rtn  0x00000034 
+ 00016927  0x00001aa1 increase  0xffffffff , 0x0000003f 
+ 00016928  0x00001aa2 store  0x00000001 , 0x00004709 
+ 00016929  0x00001aa3 nrtn  0x00000034 
+ 00016930  0x00001aa4 branch  0x00004271 
+ 00016931  0x00001aa8 setarg  0x00000000 
+ 00016932  0x00001aa9 store  0x00000002 , 0x00004a9f 
+ 00016933  0x00001aaa store  0x00000001 , 0x00004718 
+ 00016934  0x00001aab call  0x0000422a 
+ 00016935  0x00001aac call  0x0000422d 
+ 00016936  0x00001aad call  0x00003e81 
+ 00016937  0x00001aae branch  0x0000423e 
+ 00016938  0x00001ab1 jam  0x00000001 , 0x00004af9 
+ 00016939  0x00001ab2 fetcht  0x00000001 , 0x00004737 
+ 00016940  0x00001ab3 branch  0x000064fd 
+ 00016941  0x00001ab6 set0  0x00000025 , 0x00000000 
+ 00016942  0x00001ab7 bpatch  0x000000ce , 0x00004019 
+ 00016943  0x00001ab8 fetch  0x00000002 , 0x0000470b 
+ 00016944  0x00001ab9 isolate1  0x00000007 , 0x0000003f 
+ 00016945  0x00001aba call  0x00003e50 , 0x00000001 
+ 00016946  0x00001abb fetch  0x00000002 , 0x00004716 
+ 00016947  0x00001abc store  0x00000002 , 0x00004707 
+ 00016948  0x00001abd fetch  0x00000002 , 0x000042af 
+ 00016949  0x00001abe set1  0x00000000 , 0x0000003f 
+ 00016950  0x00001abf store  0x00000002 , 0x000042af 
+ 00016951  0x00001ac0 fetch  0x00000002 , 0x0000470b 
+ 00016952  0x00001ac1 bbit1  0x00000000 , 0x00003e52 
+ 00016953  0x00001ac2 rtn 
+ 00016954  0x00001ac6 call  0x00003e73 
+ 00016955  0x00001ac7 setarg  0x00000000 
+ 00016956  0x00001ac8 store  0x00000002 , 0x00004a9d 
+ 00016957  0x00001ac9 branch  0x00003e59 
+ 00016958  0x00001acc call  0x00003e81 
+ 00016959  0x00001acd fetch  0x00000002 , 0x00004716 
+ 00016960  0x00001ace store  0x00000002 , 0x00004a9d 
+ 00016961  0x00001acf call  0x00003e57 
+ 00016962  0x00001ad0 jam  0x00000000 , 0x00004b01 
+ 00016963  0x00001ad2 call  0x00003e6f 
+ 00016964  0x00001ad3 call  0x0000419a 
+ 00016965  0x00001ad4 branch  0x00004196 
+ 00016966  0x00001ad7 branch  0x00003e75 
+ 00016967  0x00001ada jam  0x00000000 , 0x00004709 
+ 00016968  0x00001adb jam  0x00000000 , 0x00004718 
+ 00016969  0x00001adc call  0x00004196 
+ 00016970  0x00001add branch  0x0000419a 
+ 00016971  0x00001ae1 fetch  0x00000001 , 0x00004b01 
+ 00016972  0x00001ae2 branch  0x00004254 , 0x00000034 
+ 00016973  0x00001ae3 arg  0x00000140 , 0x00000002 
+ 00016974  0x00001ae4 imul32  0x00000002 , 0x00000002 
+ 00016975  0x00001ae5 copy  0x00000022 , 0x0000003f 
+ 00016976  0x00001ae6 iadd  0x00000002 , 0x00000002 
+ 00016977  0x00001ae8 copy  0x00000022 , 0x0000003f 
+ 00016978  0x00001ae9 isub  0x00000002 , 0x0000003e 
+ 00016979  0x00001aea nbranch  0x00004251 , 0x00000002 
+ 00016980  0x00001aec fetcht  0x00000001 , 0x00004aef 
+ 00016981  0x00001aed call  0x000064fd 
+ 00016982  0x00001aee enable  0x00000028 
+ 00016983  0x00001aef hfetch  0x00000004 , 0x00008138 
+ 00016984  0x00001af0 setflag  0x00000028 , 0x0000001a , 0x0000003f 
+ 00016985  0x00001af1 hstore  0x00000004 , 0x0000804c 
+ 00016986  0x00001af2 call  0x00003cf4 
+ 00016987  0x00001af4 hjam  0x00000000 , 0x00008083 
+ 00016988  0x00001af5 hjam  0x00000000 , 0x00008084 
+ 00016989  0x00001af6 hfetch  0x00000001 , 0x00008085 
+ 00016990  0x00001af7 and_into  0x000000f0 , 0x0000003f 
+ 00016991  0x00001af8 hstore  0x00000001 , 0x00008085 
+ 00016992  0x00001af9 setarg  0x00000000 
+ 00016993  0x00001afa store  0x00000004 , 0x000000a4 
+ 00016994  0x00001afb setarg  0x000000ff 
+ 00016995  0x00001afc fetcht  0x00000001 , 0x00004715 
+ 00016996  0x00001afd copy  0x00000002 , 0x00000007 
+ 00016997  0x00001afe qset1  0x0000003f 
+ 00016998  0x00001aff store  0x00000004 , 0x000000a0 
+ 00016999  0x00001b00 rtn 
+ 00017000  0x00001b02 call  0x0000425b 
+ 00017001  0x00001b03 fetch  0x00000001 , 0x0000009f 
+ 00017002  0x00001b04 nrtn  0x00000034 
+ 00017003  0x00001b05 jam  0x00000000 , 0x000000a0 
+ 00017004  0x00001b06 rtn 
+ 00017005  0x00001b09 setarg  0x00000002 
+ 00017006  0x00001b0a store  0x00000001 , 0x00004709 
+ 00017007  0x00001b0b call  0x0000419a 
+ 00017008  0x00001b0c branch  0x00004196 
+ 00017009  0x00001b10 set0  0x00000025 , 0x00000000 
+ 00017010  0x00001b11 bpatch  0x000000cf , 0x00004019 
+ 00017011  0x00001b12 call  0x00007d33 
+ 00017012  0x00001b13 jam  0x00000001 , 0x00004283 
+ 00017013  0x00001b14 call  0x0000419a 
+ 00017014  0x00001b15 call  0x00004196 
+ 00017015  0x00001b16 call  0x00003e7f 
+ 00017016  0x00001b17 call  0x00003e7d 
+ 00017017  0x00001b18 setarg  0x00000000 
+ 00017018  0x00001b19 store  0x00000002 , 0x00004707 
+ 00017019  0x00001b1a store  0x00000001 , 0x00004709 
+ 00017020  0x00001b1b branch  0x00003e79 
+ 00017021  0x00001b1f fetch  0x00000001 , 0x00004ae9 
+ 00017022  0x00001b20 and_into  0x00000007 , 0x0000003f 
+ 00017023  0x00001b21 store  0x00000001 , 0x00004b00 
+ 00017024  0x00001b22 arg  0x00000001 , 0x00000002 
+ 00017025  0x00001b23 arg  0x00004b00 , 0x00000011 
+ 00017026  0x00001b24 setarg  0x00001fec 
+ 00017027  0x00001b25 branch  0x000062a8 
+ 00017028  0x00001b29 arg  0x00000001 , 0x00000002 
+ 00017029  0x00001b2a arg  0x00004b00 , 0x00000011 
+ 00017030  0x00001b2b setarg  0x00001fec 
+ 00017031  0x00001b2c byteswap  0x0000003f , 0x0000003f 
+ 00017032  0x00001b2d store  0x00000002 , 0x0000021a 
+ 00017033  0x00001b2e call  0x0000624c 
+ 00017034  0x00001b2f fetch  0x00000001 , 0x00004b00 
+ 00017035  0x00001b30 copy  0x0000003f , 0x00000012 
+ 00017036  0x00001b31 and_into  0x0000000f , 0x0000003f 
+ 00017037  0x00001b32 beq  0x0000000f , 0x000042b9 
+ 00017038  0x00001b33 copy  0x00000012 , 0x0000003f 
+ 00017039  0x00001b34 store  0x00000001 , 0x00004ae9 
+ 00017040  0x00001b35 rtn 
+ 00017041  0x00001b39 add  0x00000006 , 0xffffffff , 0x00000005 
+ 00017042  0x00001b3a call  0x00007ecd 
+ 00017043  0x00001b3b fetch  0x00000001 , 0x00004731 
+ 00017044  0x00001b3c increase  0xffffffff , 0x0000003f 
+ 00017045  0x00001b3d store  0x00000001 , 0x00004731 
+ 00017046  0x00001b3e fetch  0x00000001 , 0x00004b23 
+ 00017047  0x00001b3f beq  0x0000007f , 0x000042bd 
+ 00017048  0x00001b40 branch  0x000042c0 
+ 00017049  0x00001b43 fetch  0x00000008 , 0x00004aca 
+ 00017050  0x00001b44 store  0x00000008 , 0x00004b19 
+ 00017051  0x00001b45 branch  0x000042c0 
+ 00017052  0x00001b48 fetch  0x00000001 , 0x00004731 
+ 00017053  0x00001b49 branch  0x000042ca , 0x00000034 
+ 00017054  0x00001b4a copy  0x0000003f , 0x00000012 
+ 00017055  0x00001b4b fetch  0x00000005 , 0x00004aca 
+ 00017056  0x00001b4c copy  0x0000003f , 0x00000002 
+ 00017057  0x00001b4e copy  0x00000002 , 0x0000003f 
+ 00017058  0x00001b4f compare  0x0000007f , 0x0000003f , 0x000000ff 
+ 00017059  0x00001b50 branch  0x000042b0 , 0x00000001 
+ 00017060  0x00001b51 increase  0xffffffff , 0x00000012 
+ 00017061  0x00001b52 setarg  0x00004b12 
+ 00017062  0x00001b53 iadd  0x00000012 , 0x00000005 
+ 00017063  0x00001b54 copy  0x00000002 , 0x0000003f 
+ 00017064  0x00001b55 istore  0x00000001 , 0x00000005 
+ 00017065  0x00001b56 copy  0x00000002 , 0x0000003f 
+ 00017066  0x00001b57 rshift8  0x0000003f , 0x0000003f 
+ 00017067  0x00001b58 copy  0x0000003f , 0x00000002 
+ 00017068  0x00001b59 nbranch  0x000042a1 , 0x00000034 
+ 00017069  0x00001b5a fetch  0x00000005 , 0x00004b12 
+ 00017070  0x00001b5b call  0x000042cc , 0x00000034 
+ 00017071  0x00001b5c branch  0x000042c0 
+ 00017072  0x00001b5e setarg  0x00000001 
+ 00017073  0x00001b5f store  0x00000001 , 0x00004b17 
+ 00017074  0x00001b60 branch  0x000042a9 
+ 00017075  0x00001b63 fetch  0x00000001 , 0x00004af8 
+ 00017076  0x00001b64 rtn  0x00000034 
+ 00017077  0x00001b65 increase  0xffffffff , 0x0000003f 
+ 00017078  0x00001b66 store  0x00000001 , 0x00004af8 
+ 00017079  0x00001b67 nrtn  0x00000034 
+ 00017080  0x00001b68 branch  0x00007d2f 
+ 00017081  0x00001b6c copy  0x00000012 , 0x0000003f 
+ 00017082  0x00001b6d and_into  0x00000001 , 0x0000003f 
+ 00017083  0x00001b6e store  0x00000001 , 0x00004ae9 
+ 00017084  0x00001b6f rtn 
+ 00017085  0x00001b71 jam  0x00000000 , 0x00004b17 
+ 00017086  0x00001b72 call  0x000042cc 
+ 00017087  0x00001b73 branch  0x000042c0 
+ 00017088  0x00001b77 set0  0x00000025 , 0x00000000 
+ 00017089  0x00001b78 bpatch  0x000000d1 , 0x0000401a 
+ 00017090  0x00001b79 hfetch  0x00000001 , 0x00008119 
+ 00017091  0x00001b7a rtnbit1  0x00000000 
+ 00017092  0x00001b7b hfetch  0x00000001 , 0x0000811b 
+ 00017093  0x00001b7c bbit1  0x00000000 , 0x000042d4 
+ 00017094  0x00001b7d hfetch  0x00000001 , 0x00008119 
+ 00017095  0x00001b7e bbit0  0x00000006 , 0x000042d4 
+ 00017096  0x00001b7f hfetch  0x00000001 , 0x0000811a 
+ 00017097  0x00001b80 branch  0x000042c0 
+ 00017098  0x00001b83 call  0x000042cf 
+ 00017099  0x00001b84 branch  0x000042c0 
+ 00017100  0x00001b87 fetch  0x00000008 , 0x00004aca 
+ 00017101  0x00001b88 store  0x00000008 , 0x00004b19 
+ 00017102  0x00001b89 rtn 
+ 00017103  0x00001b8c setarg  0x00000000 
+ 00017104  0x00001b8d store  0x00000001 , 0x00004b17 
+ 00017105  0x00001b8e store  0x00000005 , 0x00004b12 
+ 00017106  0x00001b8f store  0x00000008 , 0x00004aca 
+ 00017107  0x00001b90 rtn 
+ 00017108  0x00001b93 fetch  0x00000001 , 0x00004aa9 
+ 00017109  0x00001b94 set1  0x00000001 , 0x0000003f 
+ 00017110  0x00001b95 store  0x00000001 , 0x00004aa9 
+ 00017111  0x00001b97 hfetch  0x00000001 , 0x0000811b 
+ 00017112  0x00001b98 isolate1  0x00000000 , 0x0000003f 
+ 00017113  0x00001b99 store  0x00000001 , 0x00004aa6 
+ 00017114  0x00001b9a hfetch  0x00000001 , 0x0000811a 
+ 00017115  0x00001b9b store  0x00000001 , 0x00004aa5 
+ 00017116  0x00001b9c arg  0x000049ff , 0x00000006 
+ 00017117  0x00001b9d iadd  0x00000006 , 0x00000006 
+ 00017118  0x00001b9e ifetch  0x00000001 , 0x00000006 
+ 00017119  0x00001b9f fetcht  0x00000001 , 0x00004731 
+ 00017120  0x00001ba0 sub  0x00000002 , 0x00000004 , 0x0000003e 
+ 00017121  0x00001ba1 nbranch  0x000042c0 , 0x00000002 
+ 00017122  0x00001ba2 iforce  0x00000006 
+ 00017123  0x00001ba3 setarg  0x00004aca 
+ 00017124  0x00001ba4 iadd  0x00000002 , 0x00000005 
+ 00017125  0x00001ba5 deposit  0x00000006 
+ 00017126  0x00001ba6 istore  0x00000001 , 0x00000005 
+ 00017127  0x00001ba7 increase  0x00000001 , 0x00000002 
+ 00017128  0x00001ba8 storet  0x00000001 , 0x00004731 
+ 00017129  0x00001ba9 branch  0x0000429c 
+ 00017130  0x00001bba branch  0x000042ef , 0x0000002b 
+ 00017131  0x00001bbc setarg  0x000043f5 
+ 00017132  0x00001bbd arg  0x000042d6 , 0x00000005 
+ 00017133  0x00001bbe isub  0x00000005 , 0x00000039 
+ 00017134  0x00001bbf call  0x00007e9f 
+ 00017135  0x00001bc1 set0  0x00000025 , 0x00000000 
+ 00017136  0x00001bc2 bpatch  0x000000d2 , 0x0000401a 
+ 00017137  0x00001bc3 setarg  0x00000475 
+ 00017138  0x00001bc4 arg  0x00000440 , 0x00000005 
+ 00017139  0x00001bc5 isub  0x00000005 , 0x00000039 
+ 00017140  0x00001bc6 call  0x00007e9f 
+ 00017141  0x00001bc7 setarg  0x000002f2 
+ 00017142  0x00001bc8 arg  0x00000286 , 0x00000005 
+ 00017143  0x00001bc9 isub  0x00000005 , 0x00000039 
+ 00017144  0x00001bca call  0x00007e9f 
+ 00017145  0x00001bcb branch  0x000048c3 
+ 00017146  0x00001bce set0  0x00000025 , 0x00000000 
+ 00017147  0x00001bcf bpatch  0x000000d3 , 0x0000401a 
+ 00017148  0x00001bd0 copy  0x00000006 , 0x00000002 
+ 00017149  0x00001bd3 copy  0x00000002 , 0x00000006 
+ 00017150  0x00001bd4 ifetch  0x00000002 , 0x00000006 
+ 00017151  0x00001bd5 store  0x00000002 , 0x0000028f 
+ 00017152  0x00001bd6 ifetch  0x00000002 , 0x00000006 
+ 00017153  0x00001bd7 store  0x00000002 , 0x00000291 
+ 00017154  0x00001bd8 deposit  0x00000006 
+ 00017155  0x00001bd9 store  0x00000002 , 0x0000028d 
+ 00017156  0x00001bda fetch  0x00000001 , 0x0000470a 
+ 00017157  0x00001bdb beq  0x00000000 , 0x00004307 
+ 00017158  0x00001bdc branch  0x00004684 
+ 00017159  0x00001bdf fetch  0x00000002 , 0x0000028f 
+ 00017160  0x00001be0 branch  0x00004383 , 0x00000034 
+ 00017161  0x00001be1 set0  0x00000025 , 0x00000000 
+ 00017162  0x00001be2 bpatch  0x000000d4 , 0x0000401a 
+ 00017163  0x00001be3 fetch  0x00000001 , 0x00000291 
+ 00017164  0x00001be4 beq  0x00000001 , 0x00004321 
+ 00017165  0x00001be6 beq  0x00000050 , 0x00004366 
+ 00017166  0x00001be7 beq  0x00000051 , 0x0000437b 
+ 00017167  0x00001be8 beq  0x00000052 , 0x00004379 
+ 00017168  0x00001be9 beq  0x00000053 , 0x00004379 
+ 00017169  0x00001bea branch  0x00004383 
+ 00017170  0x00001bef set0  0x00000025 , 0x00000000 
+ 00017171  0x00001bf0 bpatch  0x000000d5 , 0x0000401a 
+ 00017172  0x00001bf1 call  0x00004821 
+ 00017173  0x00001bf2 fetch  0x00000001 , 0x000042e6 
+ 00017174  0x00001bf3 beq  0x00000000 , 0x0000431f 
+ 00017175  0x00001bf4 beq  0x00000001 , 0x0000431f 
+ 00017176  0x00001bf5 beq  0x00000002 , 0x0000431f 
+ 00017177  0x00001bf6 beq  0x00000003 , 0x0000431f 
+ 00017178  0x00001bf7 beq  0x00000081 , 0x0000431f 
+ 00017179  0x00001bf8 beq  0x000000c0 , 0x0000431f 
+ 00017180  0x00001bf9 beq  0x00000080 , 0x0000431f 
+ 00017181  0x00001bfa beq  0x00000040 , 0x0000431f 
+ 00017182  0x00001bfb rtn 
+ 00017183  0x00001bfe setarg  0x00000000 
+ 00017184  0x00001bff rtn 
+ 00017185  0x00001c03 call  0x00004312 
+ 00017186  0x00001c04 nrtn  0x00000034 
+ 00017187  0x00001c06 call  0x0000485e 
+ 00017188  0x00001c07 call  0x00004388 
+ 00017189  0x00001c08 fetcht  0x00000002 , 0x00000298 
+ 00017190  0x00001c09 branch  0x00004382 , 0x00000034 
+ 00017191  0x00001c0a call  0x00004868 
+ 00017192  0x00001c0b fetch  0x00000002 , 0x00000298 
+ 00017193  0x00001c0c istore  0x00000002 , 0x00000005 
+ 00017194  0x00001c0d force  0x00000001 , 0x0000003f 
+ 00017195  0x00001c0e istore  0x00000002 , 0x00000005 
+ 00017196  0x00001c0f branch  0x00004383 
+ 00017197  0x00001c12 fetch  0x00000001 , 0x000043f4 
+ 00017198  0x00001c13 rtn  0x00000034 
+ 00017199  0x00001c14 copy  0x0000003f , 0x00000011 
+ 00017200  0x00001c15 set0  0x00000025 , 0x00000000 
+ 00017201  0x00001c16 bpatch  0x000000d6 , 0x0000401a 
+ 00017202  0x00001c17 fetch  0x00000004 , 0x000002fe 
+ 00017203  0x00001c18 arg  0x00000100 , 0x00000002 
+ 00017204  0x00001c19 iadd  0x00000002 , 0x00000002 
+ 00017205  0x00001c1a copy  0x00000022 , 0x0000003f 
+ 00017206  0x00001c1b isub  0x00000002 , 0x0000003e 
+ 00017207  0x00001c1c nrtn  0x00000002 
+ 00017208  0x00001c1d jam  0x00000000 , 0x000043f4 
+ 00017209  0x00001c1e copy  0x00000011 , 0x0000003f 
+ 00017210  0x00001c1f beq  0x00000050 , 0x0000433c 
+ 00017211  0x00001c20 branch  0x00003b31 
+ 00017212  0x00001c22 arg  0x00000000 , 0x00000008 
+ 00017213  0x00001c23 call  0x0000485e 
+ 00017214  0x00001c24 call  0x00004404 
+ 00017215  0x00001c25 call  0x0000486a 
+ 00017216  0x00001c26 call  0x00007e70 
+ 00017217  0x00001c27 call  0x00004437 
+ 00017218  0x00001c28 call  0x00004868 
+ 00017219  0x00001c2a setarg  0x0000000c 
+ 00017220  0x00001c2b istore  0x00000002 , 0x00000005 
+ 00017221  0x00001c2c force  0x00000001 , 0x0000003f 
+ 00017222  0x00001c2d istore  0x00000002 , 0x00000005 
+ 00017223  0x00001c2e branch  0x00004383 
+ 00017224  0x00001c33 set0  0x00000025 , 0x00000000 
+ 00017225  0x00001c34 bpatch  0x000000d7 , 0x0000401a 
+ 00017226  0x00001c35 fetch  0x00000002 , 0x0000029e 
+ 00017227  0x00001c36 increase  0x00000004 , 0x0000003f 
+ 00017228  0x00001c37 rshift4  0x0000003f , 0x0000003f 
+ 00017229  0x00001c38 rshift3  0x0000003f , 0x0000003f 
+ 00017230  0x00001c39 add  0x0000003f , 0x00000001 , 0x00000002 
+ 00017231  0x00001c3a arg  0x000042f0 , 0x00000006 
+ 00017232  0x00001c3b ifetch  0x00000003 , 0x00000006 
+ 00017233  0x00001c3c rtn  0x00000034 
+ 00017234  0x00001c3d store  0x00000003 , 0x000009e1 
+ 00017235  0x00001c3e fetch  0x00000001 , 0x000009e1 
+ 00017236  0x00001c3f copy  0x0000003f , 0x00000011 
+ 00017237  0x00001c40 call  0x00004359 
+ 00017238  0x00001c41 copy  0x00000012 , 0x0000003f 
+ 00017239  0x00001c42 store  0x00000001 , 0x000042f0 
+ 00017240  0x00001c43 rtn 
+ 00017241  0x00001c46 arg  0x00000000 , 0x00000007 
+ 00017242  0x00001c47 arg  0x00000000 , 0x00000012 
+ 00017243  0x00001c4a sub  0x00000007 , 0x00000007 , 0x0000003e 
+ 00017244  0x00001c4b nrtn  0x00000002 
+ 00017245  0x00001c4c qisolate1  0x00000011 
+ 00017246  0x00001c4d branch  0x00004360 , 0x00000001 
+ 00017247  0x00001c4e branch  0x00004364 
+ 00017248  0x00001c51 copy  0x00000002 , 0x0000003f 
+ 00017249  0x00001c52 branch  0x00004364 , 0x00000034 
+ 00017250  0x00001c53 qset1  0x00000012 
+ 00017251  0x00001c54 increase  0xffffffff , 0x00000002 
+ 00017252  0x00001c57 increase  0x00000001 , 0x00000007 
+ 00017253  0x00001c58 branch  0x0000435b 
+ 00017254  0x00001c5b call  0x00004816 
+ 00017255  0x00001c5c nrtn  0x00000034 
+ 00017256  0x00001c5d call  0x00004312 
+ 00017257  0x00001c5e nrtn  0x00000034 
+ 00017258  0x00001c5f call  0x0000486c 
+ 00017259  0x00001c60 call  0x00006a3e 
+ 00017260  0x00001c61 call  0x00004348 
+ 00017261  0x00001c62 branch  0x00004372 
+ 00017262  0x00001c66 call  0x00004816 
+ 00017263  0x00001c67 nrtn  0x00000034 
+ 00017264  0x00001c68 call  0x0000486c 
+ 00017265  0x00001c69 call  0x00006a3e 
+ 00017266  0x00001c6b call  0x00004876 
+ 00017267  0x00001c6c fetch  0x00000002 , 0x0000029e 
+ 00017268  0x00001c6d branch  0x00004382 , 0x00000034 
+ 00017269  0x00001c6e istore  0x00000002 , 0x00000005 
+ 00017270  0x00001c6f fetch  0x00000002 , 0x000042d8 
+ 00017271  0x00001c70 istore  0x00000002 , 0x00000005 
+ 00017272  0x00001c71 branch  0x00004383 
+ 00017273  0x00001c74 call  0x00003fca 
+ 00017274  0x00001c75 branch  0x00004383 
+ 00017275  0x00001c78 set0  0x00000025 , 0x00000000 
+ 00017276  0x00001c79 bpatch  0x000000d8 , 0x0000401b 
+ 00017277  0x00001c7a jam  0x00000000 , 0x000002ad 
+ 00017278  0x00001c7b call  0x0000668f 
+ 00017279  0x00001c7c fetch  0x00000001 , 0x000002ad 
+ 00017280  0x00001c7d rtneq  0x00000001 
+ 00017281  0x00001c7e branch  0x00004383 
+ 00017282  0x00001c80 call  0x00004803 
+ 00017283  0x00001c83 setarg  0x00000000 
+ 00017284  0x00001c84 store  0x00000002 , 0x0000028f 
+ 00017285  0x00001c85 store  0x00000002 , 0x00000291 
+ 00017286  0x00001c86 jam  0x00000001 , 0x00000293 
+ 00017287  0x00001c87 rtn 
+ 00017288  0x00001c8a set0  0x00000025 , 0x00000000 
+ 00017289  0x00001c8b bpatch  0x000000d9 , 0x0000401b 
+ 00017290  0x00001c8c call  0x0000486a 
+ 00017291  0x00001c8d force  0x00000000 , 0x00000012 
+ 00017292  0x00001c8e fetch  0x00000002 , 0x0000028f 
+ 00017293  0x00001c8f copy  0x0000003f , 0x00000013 
+ 00017294  0x00001c90 fetch  0x00000002 , 0x0000028d 
+ 00017295  0x00001c91 iforce  0x00000006 
+ 00017296  0x00001c93 call  0x00004398 
+ 00017297  0x00001c94 deposit  0x00000013 
+ 00017298  0x00001c95 increase  0xfffffffc , 0x00000013 
+ 00017299  0x00001c96 increase  0xfffffffc , 0x0000003f 
+ 00017300  0x00001c97 nbranch  0x00004390 , 0x00000034 
+ 00017301  0x00001c98 copy  0x00000012 , 0x0000003f 
+ 00017302  0x00001c99 store  0x00000002 , 0x00000298 
+ 00017303  0x00001c9a rtn 
+ 00017304  0x00001c9d set0  0x00000025 , 0x00000000 
+ 00017305  0x00001c9e bpatch  0x000000da , 0x0000401b 
+ 00017306  0x00001c9f ifetch  0x00000001 , 0x00000006 
+ 00017307  0x00001ca0 beq  0x00000001 , 0x000043d2 
+ 00017308  0x00001ca1 beq  0x00000002 , 0x000043da 
+ 00017309  0x00001ca2 beq  0x00000003 , 0x00004460 
+ 00017310  0x00001ca3 beq  0x00000004 , 0x00004491 
+ 00017311  0x00001ca4 beq  0x00000005 , 0x00004531 
+ 00017312  0x00001ca5 beq  0x00000006 , 0x0000455b 
+ 00017313  0x00001ca6 beq  0x00000007 , 0x000045ac 
+ 00017314  0x00001ca7 beq  0x00000008 , 0x000045e2 
+ 00017315  0x00001ca8 beq  0x00000009 , 0x000045f2 
+ 00017316  0x00001ca9 beq  0x0000000a , 0x000043a8 
+ 00017317  0x00001caa beq  0x0000000b , 0x000045f3 
+ 00017318  0x00001cab call  0x000045f4 
+ 00017319  0x00001cad rtn 
+ 00017320  0x00001cb0 ifetch  0x00000001 , 0x00000006 
+ 00017321  0x00001cb1 copy  0x0000003f , 0x00000007 
+ 00017322  0x00001cb2 ifetch  0x00000002 , 0x00000006 
+ 00017323  0x00001cb3 copy  0x0000003f , 0x00000011 
+ 00017324  0x00001cb4 copy  0x00000013 , 0x0000003f 
+ 00017325  0x00001cb5 isub  0x00000011 , 0x00000013 
+ 00017326  0x00001cb6 setarg  0x0000000b 
+ 00017327  0x00001cb7 istore  0x00000001 , 0x00000005 
+ 00017328  0x00001cb8 copy  0x00000007 , 0x0000003f 
+ 00017329  0x00001cb9 istore  0x00000001 , 0x00000005 
+ 00017330  0x00001cba ifetch  0x00000002 , 0x00000006 
+ 00017331  0x00001cbc beq  0x00000002 , 0x000043b6 
+ 00017332  0x00001cbd beq  0x00000003 , 0x000043bc 
+ 00017333  0x00001cbe rtn 
+ 00017334  0x00001cc0 setarg  0x00020008 
+ 00017335  0x00001cc1 istore  0x00000006 , 0x00000005 
+ 00017336  0x00001cc2 setarg  0x00000280 
+ 00017337  0x00001cc3 istore  0x00000004 , 0x00000005 
+ 00017338  0x00001cc4 force  0x0000000c , 0x0000003f 
+ 00017339  0x00001cc5 branch  0x000043c1 
+ 00017340  0x00001cc7 setarg  0x0003000c 
+ 00017341  0x00001cc8 istore  0x00000006 , 0x00000005 
+ 00017342  0x00001cc9 setarg  0x00000006 
+ 00017343  0x00001cca istore  0x00000008 , 0x00000005 
+ 00017344  0x00001ccb force  0x00000010 , 0x0000003f 
+ 00017345  0x00001ccd iadd  0x00000012 , 0x00000012 
+ 00017346  0x00001cce branch  0x000043a7 
+ 00017347  0x00001cd1 ifetch  0x00000001 , 0x00000006 
+ 00017348  0x00001cd2 copy  0x0000003f , 0x00000007 
+ 00017349  0x00001cd3 ifetch  0x00000002 , 0x00000006 
+ 00017350  0x00001cd4 copy  0x0000003f , 0x00000011 
+ 00017351  0x00001cd5 ifetch  0x00000002 , 0x00000006 
+ 00017352  0x00001cd6 store  0x00000002 , 0x000009c6 
+ 00017353  0x00001cd7 copy  0x00000013 , 0x0000003f 
+ 00017354  0x00001cd8 isub  0x00000011 , 0x00000013 
+ 00017355  0x00001cd9 call  0x0000486a 
+ 00017356  0x00001cda setarg  0x0000000b 
+ 00017357  0x00001cdb istore  0x00000001 , 0x00000005 
+ 00017358  0x00001cdc copy  0x00000007 , 0x0000003f 
+ 00017359  0x00001cdd istore  0x00000001 , 0x00000005 
+ 00017360  0x00001cde fetch  0x00000002 , 0x000009c6 
+ 00017361  0x00001cdf branch  0x000043b3 
+ 00017362  0x00001ce4 ifetch  0x00000001 , 0x00000006 
+ 00017363  0x00001ce5 copy  0x0000003f , 0x00000007 
+ 00017364  0x00001ce6 ifetch  0x00000002 , 0x00000006 
+ 00017365  0x00001ce7 copy  0x0000003f , 0x00000011 
+ 00017366  0x00001ce8 iadd  0x00000006 , 0x00000006 
+ 00017367  0x00001ce9 copy  0x00000013 , 0x0000003f 
+ 00017368  0x00001cea isub  0x00000011 , 0x00000013 
+ 00017369  0x00001cec branch  0x000043a7 
+ 00017370  0x00001cef call  0x00007e70 
+ 00017371  0x00001cf2 call  0x00007e75 
+ 00017372  0x00001cf3 arg  0x00000000 , 0x00000008 
+ 00017373  0x00001cf4 ifetch  0x00000001 , 0x00000006 
+ 00017374  0x00001cf5 copy  0x0000003f , 0x00000007 
+ 00017375  0x00001cf6 ifetch  0x00000002 , 0x00000006 
+ 00017376  0x00001cf7 copy  0x0000003f , 0x00000011 
+ 00017377  0x00001cf8 ifetch  0x00000002 , 0x00000006 
+ 00017378  0x00001cf9 copy  0x0000003f , 0x00000002 
+ 00017379  0x00001cfa ifetch  0x00000002 , 0x00000006 
+ 00017380  0x00001cfb copy  0x0000003f , 0x0000000b 
+ 00017381  0x00001cfc set0  0x00000025 , 0x00000000 
+ 00017382  0x00001cfd bpatch  0x000000db , 0x0000401b 
+ 00017383  0x00001cfe copy  0x00000002 , 0x0000003f 
+ 00017384  0x00001cff beq  0x00000001 , 0x000043ee 
+ 00017385  0x00001d00 beq  0x00000003 , 0x00004410 
+ 00017386  0x00001d01 beq  0x00000011 , 0x0000441c 
+ 00017387  0x00001d02 beq  0x00000013 , 0x00004427 
+ 00017388  0x00001d03 call  0x000045f4 
+ 00017389  0x00001d04 branch  0x0000445f 
+ 00017390  0x00001d07 call  0x00007e70 
+ 00017391  0x00001d08 arg  0x00000050 , 0x00000002 
+ 00017392  0x00001d09 fetch  0x00000002 , 0x000042d8 
+ 00017393  0x00001d0a nbranch  0x00004459 , 0x00000034 
+ 00017394  0x00001d0b copy  0x0000000b , 0x0000003f 
+ 00017395  0x00001d0c store  0x00000002 , 0x000042d8 
+ 00017396  0x00001d0d copy  0x00000022 , 0x0000003f 
+ 00017397  0x00001d0e store  0x00000004 , 0x000002fe 
+ 00017398  0x00001d0f call  0x000043f8 
+ 00017399  0x00001d10 branch  0x00004433 
+ 00017400  0x00001d13 storet  0x00000002 , 0x000002fc 
+ 00017401  0x00001d14 deposit  0x0000000b 
+ 00017402  0x00001d15 store  0x00000002 , 0x000002f2 
+ 00017403  0x00001d16 deposit  0x00000011 
+ 00017404  0x00001d17 store  0x00000002 , 0x000002f4 
+ 00017405  0x00001d18 deposit  0x00000012 
+ 00017406  0x00001d19 store  0x00000002 , 0x000002f6 
+ 00017407  0x00001d1a deposit  0x00000013 
+ 00017408  0x00001d1b store  0x00000002 , 0x000002f8 
+ 00017409  0x00001d1c deposit  0x00000007 
+ 00017410  0x00001d1d store  0x00000002 , 0x000002fa 
+ 00017411  0x00001d1e rtn 
+ 00017412  0x00001d21 fetcht  0x00000002 , 0x000002fc 
+ 00017413  0x00001d22 fetch  0x00000002 , 0x000002f2 
+ 00017414  0x00001d23 copy  0x0000003f , 0x0000000b 
+ 00017415  0x00001d24 fetch  0x00000002 , 0x000002f4 
+ 00017416  0x00001d25 copy  0x0000003f , 0x00000011 
+ 00017417  0x00001d26 fetch  0x00000002 , 0x000002f6 
+ 00017418  0x00001d27 copy  0x0000003f , 0x00000012 
+ 00017419  0x00001d28 fetch  0x00000002 , 0x000002f8 
+ 00017420  0x00001d29 copy  0x0000003f , 0x00000013 
+ 00017421  0x00001d2a fetch  0x00000002 , 0x000002fa 
+ 00017422  0x00001d2b copy  0x0000003f , 0x00000007 
+ 00017423  0x00001d2c rtn 
+ 00017424  0x00001d2f call  0x00007e70 
+ 00017425  0x00001d30 setarg  0x00000051 
+ 00017426  0x00001d31 arg  0x00000051 , 0x00000002 
+ 00017427  0x00001d32 fetch  0x00000002 , 0x000042da 
+ 00017428  0x00001d33 nbranch  0x00004459 , 0x00000034 
+ 00017429  0x00001d34 copy  0x0000000b , 0x0000003f 
+ 00017430  0x00001d35 store  0x00000002 , 0x000042da 
+ 00017431  0x00001d36 fetch  0x00000001 , 0x000042e1 
+ 00017432  0x00001d37 set1  0x00000000 , 0x0000003f 
+ 00017433  0x00001d38 set1  0x00000001 , 0x0000003f 
+ 00017434  0x00001d39 store  0x00000001 , 0x000042e1 
+ 00017435  0x00001d3a branch  0x0000443b 
+ 00017436  0x00001d3c call  0x00007e70 
+ 00017437  0x00001d3d arg  0x00000052 , 0x00000002 
+ 00017438  0x00001d3e fetch  0x00000002 , 0x000042dc 
+ 00017439  0x00001d3f nbranch  0x00004459 , 0x00000034 
+ 00017440  0x00001d40 copy  0x0000000b , 0x0000003f 
+ 00017441  0x00001d41 store  0x00000002 , 0x000042dc 
+ 00017442  0x00001d42 fetch  0x00000001 , 0x000042e2 
+ 00017443  0x00001d43 set1  0x00000000 , 0x0000003f 
+ 00017444  0x00001d44 set1  0x00000001 , 0x0000003f 
+ 00017445  0x00001d45 store  0x00000001 , 0x000042e2 
+ 00017446  0x00001d46 branch  0x0000443b 
+ 00017447  0x00001d48 call  0x00007e70 
+ 00017448  0x00001d49 deposit  0x0000001a 
+ 00017449  0x00001d4a arg  0x00000053 , 0x00000002 
+ 00017450  0x00001d4b fetch  0x00000002 , 0x000042de 
+ 00017451  0x00001d4c nbranch  0x00004459 , 0x00000034 
+ 00017452  0x00001d4d copy  0x0000000b , 0x0000003f 
+ 00017453  0x00001d4e store  0x00000002 , 0x000042de 
+ 00017454  0x00001d4f fetch  0x00000001 , 0x000042e3 
+ 00017455  0x00001d50 set1  0x00000000 , 0x0000003f 
+ 00017456  0x00001d51 set1  0x00000001 , 0x0000003f 
+ 00017457  0x00001d52 store  0x00000001 , 0x000042e3 
+ 00017458  0x00001d53 branch  0x0000443b 
+ 00017459  0x00001d56 setarg  0x00000001 
+ 00017460  0x00001d57 store  0x00000002 , 0x000002a6 
+ 00017461  0x00001d58 jam  0x00000050 , 0x000043f4 
+ 00017462  0x00001d59 branch  0x0000443d 
+ 00017463  0x00001d5b fetch  0x00000001 , 0x000042e0 
+ 00017464  0x00001d5c set1  0x00000000 , 0x0000003f 
+ 00017465  0x00001d5d set1  0x00000001 , 0x0000003f 
+ 00017466  0x00001d5e store  0x00000001 , 0x000042e0 
+ 00017467  0x00001d60 setarg  0x00000000 
+ 00017468  0x00001d61 store  0x00000002 , 0x000002a6 
+ 00017469  0x00001d63 set0  0x00000025 , 0x00000000 
+ 00017470  0x00001d64 bpatch  0x000000dc , 0x0000401b 
+ 00017471  0x00001d65 call  0x00007e75 
+ 00017472  0x00001d66 setarg  0x00000003 
+ 00017473  0x00001d67 istore  0x00000001 , 0x00000005 
+ 00017474  0x00001d68 copy  0x00000007 , 0x0000003f 
+ 00017475  0x00001d69 istore  0x00000001 , 0x00000005 
+ 00017476  0x00001d6a setarg  0x00000008 
+ 00017477  0x00001d6b istore  0x00000002 , 0x00000005 
+ 00017478  0x00001d6c copy  0x00000002 , 0x0000003f 
+ 00017479  0x00001d6d istore  0x00000002 , 0x00000005 
+ 00017480  0x00001d6e copy  0x0000000b , 0x0000003f 
+ 00017481  0x00001d6f istore  0x00000002 , 0x00000005 
+ 00017482  0x00001d70 fetch  0x00000002 , 0x000002a6 
+ 00017483  0x00001d71 beq  0x00000001 , 0x00004454 
+ 00017484  0x00001d72 isolate0  0x00000000 , 0x00000008 
+ 00017485  0x00001d73 branch  0x0000444f , 0x00000001 
+ 00017486  0x00001d74 setarg  0x00000004 
+ 00017487  0x00001d76 istore  0x00000002 , 0x00000005 
+ 00017488  0x00001d77 force  0x00000000 , 0x0000003f 
+ 00017489  0x00001d78 istore  0x00000002 , 0x00000005 
+ 00017490  0x00001d79 setarg  0x0000000c 
+ 00017491  0x00001d7a branch  0x0000445b 
+ 00017492  0x00001d7c istore  0x00000002 , 0x00000005 
+ 00017493  0x00001d7d force  0x00000002 , 0x0000003f 
+ 00017494  0x00001d7e istore  0x00000002 , 0x00000005 
+ 00017495  0x00001d7f setarg  0x0000000c 
+ 00017496  0x00001d80 branch  0x0000445b 
+ 00017497  0x00001d83 set1  0x00000000 , 0x00000008 
+ 00017498  0x00001d84 branch  0x0000443b 
+ 00017499  0x00001d86 iadd  0x00000012 , 0x00000012 
+ 00017500  0x00001d87 copy  0x00000013 , 0x0000003f 
+ 00017501  0x00001d88 isub  0x00000011 , 0x00000013 
+ 00017502  0x00001d89 branch  0x0000445f 
+ 00017503  0x00001d8b branch  0x000043a7 
+ 00017504  0x00001d8e ifetch  0x00000001 , 0x00000006 
+ 00017505  0x00001d8f copy  0x0000003f , 0x00000007 
+ 00017506  0x00001d90 ifetch  0x00000002 , 0x00000006 
+ 00017507  0x00001d91 copy  0x0000003f , 0x00000011 
+ 00017508  0x00001d92 copy  0x00000013 , 0x0000003f 
+ 00017509  0x00001d93 isub  0x00000011 , 0x00000013 
+ 00017510  0x00001d94 ifetch  0x00000002 , 0x00000006 
+ 00017511  0x00001d95 copy  0x0000003f , 0x0000000b 
+ 00017512  0x00001d96 ifetch  0x00000002 , 0x00000006 
+ 00017513  0x00001d97 copy  0x0000003f , 0x00000002 
+ 00017514  0x00001d98 set0  0x00000025 , 0x00000000 
+ 00017515  0x00001d99 bpatch  0x000000dd , 0x0000401b 
+ 00017516  0x00001d9a setarg  0x00000050 
+ 00017517  0x00001d9b isub  0x00000002 , 0x0000003e 
+ 00017518  0x00001d9c branch  0x00004479 , 0x00000005 
+ 00017519  0x00001d9d setarg  0x00000051 
+ 00017520  0x00001d9e isub  0x00000002 , 0x0000003e 
+ 00017521  0x00001d9f branch  0x0000447f , 0x00000005 
+ 00017522  0x00001da0 setarg  0x00000052 
+ 00017523  0x00001da1 isub  0x00000002 , 0x0000003e 
+ 00017524  0x00001da2 branch  0x0000448b , 0x00000005 
+ 00017525  0x00001da3 setarg  0x00000053 
+ 00017526  0x00001da4 isub  0x00000002 , 0x0000003e 
+ 00017527  0x00001da5 branch  0x00004485 , 0x00000005 
+ 00017528  0x00001da6 rtn 
+ 00017529  0x00001da9 copy  0x0000000b , 0x0000003f 
+ 00017530  0x00001daa store  0x00000002 , 0x000042d8 
+ 00017531  0x00001dab fetch  0x00000001 , 0x000042e0 
+ 00017532  0x00001dac set1  0x00000001 , 0x0000003f 
+ 00017533  0x00001dad store  0x00000001 , 0x000042e0 
+ 00017534  0x00001dae branch  0x000043a7 
+ 00017535  0x00001db0 copy  0x0000000b , 0x0000003f 
+ 00017536  0x00001db1 store  0x00000002 , 0x000042da 
+ 00017537  0x00001db2 fetch  0x00000001 , 0x000042e1 
+ 00017538  0x00001db3 set1  0x00000001 , 0x0000003f 
+ 00017539  0x00001db4 store  0x00000001 , 0x000042e1 
+ 00017540  0x00001db5 rtn 
+ 00017541  0x00001db7 copy  0x0000000b , 0x0000003f 
+ 00017542  0x00001db8 store  0x00000002 , 0x000042dc 
+ 00017543  0x00001db9 fetch  0x00000001 , 0x000042e3 
+ 00017544  0x00001dba set1  0x00000001 , 0x0000003f 
+ 00017545  0x00001dbb store  0x00000001 , 0x000042e3 
+ 00017546  0x00001dbc rtn 
+ 00017547  0x00001dbe copy  0x0000000b , 0x0000003f 
+ 00017548  0x00001dbf store  0x00000002 , 0x000042de 
+ 00017549  0x00001dc0 fetch  0x00000001 , 0x000042e2 
+ 00017550  0x00001dc1 set1  0x00000001 , 0x0000003f 
+ 00017551  0x00001dc2 store  0x00000001 , 0x000042e2 
+ 00017552  0x00001dc3 rtn 
+ 00017553  0x00001dc6 ifetch  0x00000001 , 0x00000006 
+ 00017554  0x00001dc7 copy  0x0000003f , 0x00000007 
+ 00017555  0x00001dc8 ifetch  0x00000002 , 0x00000006 
+ 00017556  0x00001dc9 copy  0x0000003f , 0x00000011 
+ 00017557  0x00001dca copy  0x00000013 , 0x0000003f 
+ 00017558  0x00001dcb isub  0x00000011 , 0x00000013 
+ 00017559  0x00001dcc ifetch  0x00000002 , 0x00000006 
+ 00017560  0x00001dcd copy  0x0000003f , 0x00000002 
+ 00017561  0x00001dce copy  0x00000002 , 0x00000011 
+ 00017562  0x00001dcf set0  0x00000025 , 0x00000000 
+ 00017563  0x00001dd0 bpatch  0x000000de , 0x0000401b 
+ 00017564  0x00001dd1 setarg  0x00000050 
+ 00017565  0x00001dd2 isub  0x00000002 , 0x0000003e 
+ 00017566  0x00001dd3 branch  0x000044a9 , 0x00000005 
+ 00017567  0x00001dd4 setarg  0x00000051 
+ 00017568  0x00001dd5 isub  0x00000002 , 0x0000003e 
+ 00017569  0x00001dd6 branch  0x000044c7 , 0x00000005 
+ 00017570  0x00001dd7 setarg  0x00000052 
+ 00017571  0x00001dd8 isub  0x00000002 , 0x0000003e 
+ 00017572  0x00001dd9 branch  0x000044b3 , 0x00000005 
+ 00017573  0x00001dda setarg  0x00000053 
+ 00017574  0x00001ddb isub  0x00000002 , 0x0000003e 
+ 00017575  0x00001ddc branch  0x000044bd , 0x00000005 
+ 00017576  0x00001ddd branch  0x000045f4 
+ 00017577  0x00001de0 copy  0x00000005 , 0x0000000b 
+ 00017578  0x00001de1 fetch  0x00000001 , 0x000042e0 
+ 00017579  0x00001de2 set1  0x00000004 , 0x0000003f 
+ 00017580  0x00001de3 set1  0x00000003 , 0x0000003f 
+ 00017581  0x00001de5 store  0x00000001 , 0x000042e0 
+ 00017582  0x00001de6 copy  0x0000000b , 0x00000005 
+ 00017583  0x00001de7 arg  0x00000050 , 0x0000000b 
+ 00017584  0x00001de8 fetch  0x00000002 , 0x000042d8 
+ 00017585  0x00001de9 copy  0x0000003f , 0x00000002 
+ 00017586  0x00001dea branch  0x000044d0 
+ 00017587  0x00001dec copy  0x00000005 , 0x0000000b 
+ 00017588  0x00001ded fetch  0x00000001 , 0x000042e2 
+ 00017589  0x00001dee set1  0x00000004 , 0x0000003f 
+ 00017590  0x00001def set1  0x00000003 , 0x0000003f 
+ 00017591  0x00001df1 store  0x00000001 , 0x000042e2 
+ 00017592  0x00001df2 copy  0x0000000b , 0x00000005 
+ 00017593  0x00001df3 arg  0x00000052 , 0x0000000b 
+ 00017594  0x00001df4 fetch  0x00000002 , 0x000042dc 
+ 00017595  0x00001df5 copy  0x0000003f , 0x00000002 
+ 00017596  0x00001df6 branch  0x000044d0 
+ 00017597  0x00001df8 copy  0x00000005 , 0x0000000b 
+ 00017598  0x00001df9 fetch  0x00000001 , 0x000042e3 
+ 00017599  0x00001dfa set1  0x00000004 , 0x0000003f 
+ 00017600  0x00001dfb set1  0x00000003 , 0x0000003f 
+ 00017601  0x00001dfd store  0x00000001 , 0x000042e3 
+ 00017602  0x00001dfe copy  0x0000000b , 0x00000005 
+ 00017603  0x00001dff arg  0x00000053 , 0x0000000b 
+ 00017604  0x00001e00 fetch  0x00000002 , 0x000042de 
+ 00017605  0x00001e01 copy  0x0000003f , 0x00000002 
+ 00017606  0x00001e02 branch  0x000044d0 
+ 00017607  0x00001e04 copy  0x00000005 , 0x0000000b 
+ 00017608  0x00001e05 fetch  0x00000001 , 0x000042e1 
+ 00017609  0x00001e06 set1  0x00000004 , 0x0000003f 
+ 00017610  0x00001e07 set1  0x00000003 , 0x0000003f 
+ 00017611  0x00001e09 store  0x00000001 , 0x000042e1 
+ 00017612  0x00001e0b copy  0x0000000b , 0x00000005 
+ 00017613  0x00001e0c arg  0x00000051 , 0x0000000b 
+ 00017614  0x00001e0d fetch  0x00000002 , 0x000042da 
+ 00017615  0x00001e0e copy  0x0000003f , 0x00000002 
+ 00017616  0x00001e10 set0  0x00000025 , 0x00000000 
+ 00017617  0x00001e11 bpatch  0x000000df , 0x0000401b 
+ 00017618  0x00001e12 setarg  0x00000005 
+ 00017619  0x00001e13 istore  0x00000001 , 0x00000005 
+ 00017620  0x00001e14 copy  0x00000007 , 0x0000003f 
+ 00017621  0x00001e15 istore  0x00000001 , 0x00000005 
+ 00017622  0x00001e16 setarg  0x00000006 
+ 00017623  0x00001e17 istore  0x00000002 , 0x00000005 
+ 00017624  0x00001e18 copy  0x00000002 , 0x0000003f 
+ 00017625  0x00001e19 istore  0x00000002 , 0x00000005 
+ 00017626  0x00001e1a force  0x00000000 , 0x0000003f 
+ 00017627  0x00001e1b istore  0x00000002 , 0x00000005 
+ 00017628  0x00001e1c force  0x00000000 , 0x0000003f 
+ 00017629  0x00001e1d istore  0x00000002 , 0x00000005 
+ 00017630  0x00001e1e force  0x0000000a , 0x0000003f 
+ 00017631  0x00001e1f iadd  0x00000012 , 0x00000012 
+ 00017632  0x00001e21 storet  0x00000002 , 0x000002ab 
+ 00017633  0x00001e22 copy  0x00000007 , 0x0000003f 
+ 00017634  0x00001e23 store  0x00000001 , 0x000002aa 
+ 00017635  0x00001e24 force  0x00000050 , 0x0000003f 
+ 00017636  0x00001e25 icompare  0x000000ff , 0x0000000b 
+ 00017637  0x00001e26 branch  0x000044e7 , 0x00000001 
+ 00017638  0x00001e27 increase  0x00000001 , 0x0000003f 
+ 00017639  0x00001e2a rtn 
+ 00017640  0x00001e2c disable  0x00000028 
+ 00017641  0x00001e2d rtnbit1  0x00000002 , 0x0000003f 
+ 00017642  0x00001e2e rtnbit0  0x00000000 , 0x0000003f 
+ 00017643  0x00001e2f rtnbit0  0x00000001 , 0x0000003f 
+ 00017644  0x00001e30 set1  0x00000002 , 0x0000003f 
+ 00017645  0x00001e31 copy  0x00000006 , 0x00000005 
+ 00017646  0x00001e32 increase  0xffffffff , 0x00000005 
+ 00017647  0x00001e33 istore  0x00000001 , 0x00000005 
+ 00017648  0x00001e34 enable  0x00000028 
+ 00017649  0x00001e35 rtn 
+ 00017650  0x00001e38 fetch  0x00000001 , 0x000042e0 
+ 00017651  0x00001e39 call  0x000044e8 
+ 00017652  0x00001e3a nbranch  0x000044f9 , 0x00000028 
+ 00017653  0x00001e3b jam  0x00000050 , 0x000002a9 
+ 00017654  0x00001e3c fetch  0x00000002 , 0x000042d8 
+ 00017655  0x00001e3d store  0x00000002 , 0x000002ab 
+ 00017656  0x00001e3e branch  0x0000450d 
+ 00017657  0x00001e40 fetch  0x00000001 , 0x000042e1 
+ 00017658  0x00001e41 call  0x000044e8 
+ 00017659  0x00001e42 nbranch  0x00004500 , 0x00000028 
+ 00017660  0x00001e43 jam  0x00000051 , 0x000002a9 
+ 00017661  0x00001e44 fetch  0x00000002 , 0x000042da 
+ 00017662  0x00001e45 store  0x00000002 , 0x000002ab 
+ 00017663  0x00001e46 branch  0x0000450d 
+ 00017664  0x00001e48 fetch  0x00000001 , 0x000042e2 
+ 00017665  0x00001e49 call  0x000044e8 
+ 00017666  0x00001e4a nbranch  0x00004507 , 0x00000028 
+ 00017667  0x00001e4b jam  0x00000052 , 0x000002a9 
+ 00017668  0x00001e4c fetch  0x00000002 , 0x000042dc 
+ 00017669  0x00001e4d store  0x00000002 , 0x000002ab 
+ 00017670  0x00001e4e branch  0x0000450d 
+ 00017671  0x00001e50 fetch  0x00000001 , 0x000042e3 
+ 00017672  0x00001e51 call  0x000044e8 
+ 00017673  0x00001e52 nrtn  0x00000028 
+ 00017674  0x00001e53 jam  0x00000053 , 0x000002a9 
+ 00017675  0x00001e54 fetch  0x00000002 , 0x000042de 
+ 00017676  0x00001e55 store  0x00000002 , 0x000002ab 
+ 00017677  0x00001e59 set0  0x00000025 , 0x00000000 
+ 00017678  0x00001e5a bpatch  0x000000e0 , 0x0000401c 
+ 00017679  0x00001e5b call  0x000047d6 
+ 00017680  0x00001e5c call  0x0000485e 
+ 00017681  0x00001e5d force  0x00000000 , 0x00000012 
+ 00017682  0x00001e5e call  0x0000486a 
+ 00017683  0x00001e5f force  0x00000004 , 0x0000003f 
+ 00017684  0x00001e60 istore  0x00000001 , 0x00000005 
+ 00017685  0x00001e61 fetch  0x00000001 , 0x000042e5 
+ 00017686  0x00001e62 istore  0x00000001 , 0x00000005 
+ 00017687  0x00001e63 setarg  0x00000008 
+ 00017688  0x00001e64 istore  0x00000002 , 0x00000005 
+ 00017689  0x00001e65 fetch  0x00000002 , 0x000002ab 
+ 00017690  0x00001e66 istore  0x00000002 , 0x00000005 
+ 00017691  0x00001e67 setarg  0x00000000 
+ 00017692  0x00001e68 istore  0x00000002 , 0x00000005 
+ 00017693  0x00001e69 force  0x00000001 , 0x0000003f 
+ 00017694  0x00001e6a istore  0x00000001 , 0x00000005 
+ 00017695  0x00001e6b force  0x00000002 , 0x0000003f 
+ 00017696  0x00001e6c istore  0x00000001 , 0x00000005 
+ 00017697  0x00001e6d fetch  0x00000001 , 0x000002a9 
+ 00017698  0x00001e6e beq  0x00000051 , 0x00004526 
+ 00017699  0x00001e6f setarg  0x00000030 
+ 00017700  0x00001e70 istore  0x00000002 , 0x00000005 
+ 00017701  0x00001e71 branch  0x00004528 
+ 00017702  0x00001e73 setarg  0x000003e3 
+ 00017703  0x00001e74 istore  0x00000002 , 0x00000005 
+ 00017704  0x00001e76 arg  0x0000000c , 0x00000002 
+ 00017705  0x00001e77 storet  0x00000002 , 0x00000298 
+ 00017706  0x00001e78 call  0x00004868 
+ 00017707  0x00001e79 fetch  0x00000002 , 0x00000298 
+ 00017708  0x00001e7a istore  0x00000002 , 0x00000005 
+ 00017709  0x00001e7b force  0x00000001 , 0x0000003f 
+ 00017710  0x00001e7c istore  0x00000002 , 0x00000005 
+ 00017711  0x00001e7d jam  0x00000000 , 0x000002a9 
+ 00017712  0x00001e7f branch  0x000043a7 
+ 00017713  0x00001e82 increase  0x00000001 , 0x00000006 
+ 00017714  0x00001e83 ifetch  0x00000002 , 0x00000006 
+ 00017715  0x00001e84 copy  0x0000003f , 0x00000011 
+ 00017716  0x00001e85 copy  0x00000013 , 0x0000003f 
+ 00017717  0x00001e86 isub  0x00000011 , 0x00000013 
+ 00017718  0x00001e87 ifetch  0x00000002 , 0x00000006 
+ 00017719  0x00001e88 copy  0x0000003f , 0x00000011 
+ 00017720  0x00001e89 set0  0x00000025 , 0x00000000 
+ 00017721  0x00001e8a bpatch  0x000000e1 , 0x0000401c 
+ 00017722  0x00001e8b setarg  0x00000050 
+ 00017723  0x00001e8c isub  0x00000011 , 0x0000003e 
+ 00017724  0x00001e8d branch  0x0000454a , 0x00000005 
+ 00017725  0x00001e8e setarg  0x00000051 
+ 00017726  0x00001e8f isub  0x00000011 , 0x0000003e 
+ 00017727  0x00001e90 branch  0x0000454e , 0x00000005 
+ 00017728  0x00001e91 setarg  0x00000052 
+ 00017729  0x00001e92 isub  0x00000011 , 0x0000003e 
+ 00017730  0x00001e93 branch  0x00004552 , 0x00000005 
+ 00017731  0x00001e94 setarg  0x00000053 
+ 00017732  0x00001e95 isub  0x00000011 , 0x0000003e 
+ 00017733  0x00001e96 branch  0x00004556 , 0x00000005 
+ 00017734  0x00001e97 increase  0x00000002 , 0x00000006 
+ 00017735  0x00001e98 ifetch  0x00000002 , 0x00000006 
+ 00017736  0x00001e99 iforce  0x0000003e 
+ 00017737  0x00001e9a branch  0x000043a7 
+ 00017738  0x00001e9c fetch  0x00000001 , 0x000042e0 
+ 00017739  0x00001e9d set1  0x00000005 , 0x0000003f 
+ 00017740  0x00001e9e store  0x00000001 , 0x000042e0 
+ 00017741  0x00001e9f branch  0x000043a7 
+ 00017742  0x00001ea1 fetch  0x00000001 , 0x000042e1 
+ 00017743  0x00001ea2 set1  0x00000005 , 0x0000003f 
+ 00017744  0x00001ea3 store  0x00000001 , 0x000042e1 
+ 00017745  0x00001ea4 branch  0x000043a7 
+ 00017746  0x00001ea6 fetch  0x00000001 , 0x000042e2 
+ 00017747  0x00001ea7 set1  0x00000005 , 0x0000003f 
+ 00017748  0x00001ea8 store  0x00000001 , 0x000042e2 
+ 00017749  0x00001ea9 branch  0x000043a7 
+ 00017750  0x00001eab fetch  0x00000001 , 0x000042e3 
+ 00017751  0x00001eac set1  0x00000005 , 0x0000003f 
+ 00017752  0x00001ead store  0x00000001 , 0x000042e3 
+ 00017753  0x00001eae jam  0x00000006 , 0x000009bd 
+ 00017754  0x00001eaf branch  0x00007d86 
+ 00017755  0x00001eb4 ifetch  0x00000001 , 0x00000006 
+ 00017756  0x00001eb5 copy  0x0000003f , 0x00000007 
+ 00017757  0x00001eb6 ifetch  0x00000002 , 0x00000006 
+ 00017758  0x00001eb7 copy  0x0000003f , 0x00000011 
+ 00017759  0x00001eb8 copy  0x00000013 , 0x0000003f 
+ 00017760  0x00001eb9 isub  0x00000011 , 0x00000013 
+ 00017761  0x00001eba ifetch  0x00000002 , 0x00000006 
+ 00017762  0x00001ebb copy  0x0000003f , 0x00000011 
+ 00017763  0x00001ebc ifetch  0x00000002 , 0x00000006 
+ 00017764  0x00001ebd copy  0x0000003f , 0x0000000b 
+ 00017765  0x00001ebe copy  0x00000011 , 0x00000002 
+ 00017766  0x00001ebf call  0x00007e70 
+ 00017767  0x00001ec0 set0  0x00000025 , 0x00000000 
+ 00017768  0x00001ec1 bpatch  0x000000e2 , 0x0000401c 
+ 00017769  0x00001ec2 setarg  0x00000050 
+ 00017770  0x00001ec3 isub  0x00000002 , 0x0000003e 
+ 00017771  0x00001ec4 branch  0x00004583 , 0x00000005 
+ 00017772  0x00001ec5 setarg  0x00000051 
+ 00017773  0x00001ec6 isub  0x00000002 , 0x0000003e 
+ 00017774  0x00001ec7 branch  0x00004593 , 0x00000005 
+ 00017775  0x00001ec8 setarg  0x00000052 
+ 00017776  0x00001ec9 isub  0x00000002 , 0x0000003e 
+ 00017777  0x00001eca branch  0x00004577 , 0x00000005 
+ 00017778  0x00001ecb setarg  0x00000053 
+ 00017779  0x00001ecc isub  0x00000002 , 0x0000003e 
+ 00017780  0x00001ecd branch  0x0000457d , 0x00000005 
+ 00017781  0x00001ece call  0x000045f4 
+ 00017782  0x00001ecf branch  0x000045a8 
+ 00017783  0x00001ed1 copy  0x0000000b , 0x00000002 
+ 00017784  0x00001ed2 fetch  0x00000002 , 0x000042dc 
+ 00017785  0x00001ed3 isub  0x00000002 , 0x0000003e 
+ 00017786  0x00001ed4 branch  0x00004589 , 0x00000005 
+ 00017787  0x00001ed5 call  0x000045f4 
+ 00017788  0x00001ed6 branch  0x000045a8 
+ 00017789  0x00001ed8 copy  0x0000000b , 0x00000002 
+ 00017790  0x00001ed9 fetch  0x00000002 , 0x000042de 
+ 00017791  0x00001eda isub  0x00000002 , 0x0000003e 
+ 00017792  0x00001edb branch  0x0000458b , 0x00000005 
+ 00017793  0x00001edc call  0x000045f4 
+ 00017794  0x00001edd branch  0x000045a8 
+ 00017795  0x00001ee0 copy  0x0000000b , 0x00000002 
+ 00017796  0x00001ee1 fetch  0x00000002 , 0x000042d8 
+ 00017797  0x00001ee2 isub  0x00000002 , 0x0000003e 
+ 00017798  0x00001ee3 branch  0x0000458f , 0x00000005 
+ 00017799  0x00001ee4 call  0x000045f4 
+ 00017800  0x00001ee5 branch  0x000045a8 
+ 00017801  0x00001ee7 call  0x0000460b 
+ 00017802  0x00001ee8 branch  0x0000459b 
+ 00017803  0x00001eea call  0x00004611 
+ 00017804  0x00001eeb fetch  0x00000002 , 0x000042dc 
+ 00017805  0x00001eec branch  0x0000459b , 0x00000034 
+ 00017806  0x00001ef4 branch  0x0000459b 
+ 00017807  0x00001ef7 call  0x00004606 
+ 00017808  0x00001ef8 fetch  0x00000001 , 0x000002b1 
+ 00017809  0x00001ef9 nbranch  0x0000459b , 0x00000034 
+ 00017810  0x00001efc branch  0x0000459b 
+ 00017811  0x00001efe copy  0x0000000b , 0x00000002 
+ 00017812  0x00001eff fetch  0x00000002 , 0x000042da 
+ 00017813  0x00001f00 isub  0x00000002 , 0x0000003e 
+ 00017814  0x00001f01 branch  0x00004599 , 0x00000005 
+ 00017815  0x00001f02 call  0x000045f4 
+ 00017816  0x00001f03 branch  0x000045a8 
+ 00017817  0x00001f05 call  0x00004601 
+ 00017818  0x00001f06 branch  0x0000459b 
+ 00017819  0x00001f08 call  0x00007e75 
+ 00017820  0x00001f09 setarg  0x00000007 
+ 00017821  0x00001f0a istore  0x00000001 , 0x00000005 
+ 00017822  0x00001f0b copy  0x00000007 , 0x0000003f 
+ 00017823  0x00001f0c istore  0x00000001 , 0x00000005 
+ 00017824  0x00001f0d setarg  0x00000004 
+ 00017825  0x00001f0e istore  0x00000002 , 0x00000005 
+ 00017826  0x00001f0f copy  0x00000011 , 0x0000003f 
+ 00017827  0x00001f10 istore  0x00000002 , 0x00000005 
+ 00017828  0x00001f11 copy  0x0000000b , 0x0000003f 
+ 00017829  0x00001f12 istore  0x00000002 , 0x00000005 
+ 00017830  0x00001f13 force  0x00000008 , 0x0000003f 
+ 00017831  0x00001f14 branch  0x000045aa 
+ 00017832  0x00001f16 call  0x00007e75 
+ 00017833  0x00001f17 branch  0x000045aa 
+ 00017834  0x00001f19 iadd  0x00000012 , 0x00000012 
+ 00017835  0x00001f1a branch  0x000043a7 
+ 00017836  0x00001f1c ifetch  0x00000001 , 0x00000006 
+ 00017837  0x00001f1d copy  0x0000003f , 0x00000007 
+ 00017838  0x00001f1e ifetch  0x00000002 , 0x00000006 
+ 00017839  0x00001f1f copy  0x0000003f , 0x00000011 
+ 00017840  0x00001f20 copy  0x00000013 , 0x0000003f 
+ 00017841  0x00001f21 isub  0x00000011 , 0x00000013 
+ 00017842  0x00001f22 ifetch  0x00000002 , 0x00000006 
+ 00017843  0x00001f23 copy  0x0000003f , 0x0000000b 
+ 00017844  0x00001f24 ifetch  0x00000002 , 0x00000006 
+ 00017845  0x00001f25 copy  0x0000003f , 0x00000002 
+ 00017846  0x00001f26 call  0x00007e70 
+ 00017847  0x00001f27 set0  0x00000025 , 0x00000000 
+ 00017848  0x00001f28 bpatch  0x000000e3 , 0x0000401c 
+ 00017849  0x00001f29 setarg  0x00000050 
+ 00017850  0x00001f2a isub  0x00000002 , 0x0000003e 
+ 00017851  0x00001f2b branch  0x000045c7 , 0x00000005 
+ 00017852  0x00001f2c setarg  0x00000051 
+ 00017853  0x00001f2d isub  0x00000002 , 0x0000003e 
+ 00017854  0x00001f2e branch  0x000045cd , 0x00000005 
+ 00017855  0x00001f2f setarg  0x00000052 
+ 00017856  0x00001f30 isub  0x00000002 , 0x0000003e 
+ 00017857  0x00001f31 branch  0x000045d3 , 0x00000005 
+ 00017858  0x00001f32 setarg  0x00000053 
+ 00017859  0x00001f33 isub  0x00000002 , 0x0000003e 
+ 00017860  0x00001f34 branch  0x000045d9 , 0x00000005 
+ 00017861  0x00001f35 call  0x000045f4 
+ 00017862  0x00001f36 branch  0x000045e1 
+ 00017863  0x00001f38 copy  0x00000002 , 0x00000011 
+ 00017864  0x00001f39 copy  0x0000000b , 0x00000002 
+ 00017865  0x00001f3a fetch  0x00000002 , 0x000042d8 
+ 00017866  0x00001f3b isub  0x00000002 , 0x0000003e 
+ 00017867  0x00001f3c call  0x00004606 , 0x00000005 
+ 00017868  0x00001f3d branch  0x000045df 
+ 00017869  0x00001f3f copy  0x00000002 , 0x00000011 
+ 00017870  0x00001f40 copy  0x0000000b , 0x00000002 
+ 00017871  0x00001f41 fetch  0x00000002 , 0x000042da 
+ 00017872  0x00001f42 isub  0x00000002 , 0x0000003e 
+ 00017873  0x00001f43 call  0x00004601 , 0x00000005 
+ 00017874  0x00001f44 branch  0x000045df 
+ 00017875  0x00001f46 copy  0x00000002 , 0x00000011 
+ 00017876  0x00001f47 copy  0x0000000b , 0x00000002 
+ 00017877  0x00001f48 fetch  0x00000002 , 0x000042dc 
+ 00017878  0x00001f49 isub  0x00000002 , 0x0000003e 
+ 00017879  0x00001f4a call  0x0000460b , 0x00000005 
+ 00017880  0x00001f4b branch  0x000045df 
+ 00017881  0x00001f4d copy  0x00000002 , 0x00000011 
+ 00017882  0x00001f4e copy  0x0000000b , 0x00000002 
+ 00017883  0x00001f4f fetch  0x00000002 , 0x000042de 
+ 00017884  0x00001f50 isub  0x00000002 , 0x0000003e 
+ 00017885  0x00001f51 call  0x00004611 , 0x00000005 
+ 00017886  0x00001f52 branch  0x000045df 
+ 00017887  0x00001f54 call  0x00007e75 
+ 00017888  0x00001f55 branch  0x000043a7 
+ 00017889  0x00001f57 branch  0x000043a7 
+ 00017890  0x00001f5b ifetch  0x00000001 , 0x00000006 
+ 00017891  0x00001f5c copy  0x0000003f , 0x00000007 
+ 00017892  0x00001f5d ifetch  0x00000002 , 0x00000006 
+ 00017893  0x00001f5e copy  0x0000003f , 0x00000011 
+ 00017894  0x00001f5f iadd  0x00000006 , 0x00000006 
+ 00017895  0x00001f60 setarg  0x00000009 
+ 00017896  0x00001f61 istore  0x00000001 , 0x00000005 
+ 00017897  0x00001f62 copy  0x00000007 , 0x0000003f 
+ 00017898  0x00001f63 istore  0x00000001 , 0x00000005 
+ 00017899  0x00001f64 force  0x00000000 , 0x0000003f 
+ 00017900  0x00001f65 istore  0x00000002 , 0x00000005 
+ 00017901  0x00001f66 force  0x00000004 , 0x0000003f 
+ 00017902  0x00001f67 iadd  0x00000012 , 0x00000012 
+ 00017903  0x00001f68 copy  0x00000013 , 0x0000003f 
+ 00017904  0x00001f69 isub  0x00000011 , 0x00000013 
+ 00017905  0x00001f6a branch  0x000043a7 
+ 00017906  0x00001f6c branch  0x000043a7 
+ 00017907  0x00001f6f branch  0x000043a7 
+ 00017908  0x00001f71 force  0x00000000 , 0x00000012 
+ 00017909  0x00001f72 call  0x0000486a 
+ 00017910  0x00001f73 setarg  0x00000001 
+ 00017911  0x00001f74 istore  0x00000001 , 0x00000005 
+ 00017912  0x00001f75 copy  0x00000007 , 0x0000003f 
+ 00017913  0x00001f76 istore  0x00000001 , 0x00000005 
+ 00017914  0x00001f77 setarg  0x00000002 
+ 00017915  0x00001f78 istore  0x00000002 , 0x00000005 
+ 00017916  0x00001f79 setarg  0x00000000 
+ 00017917  0x00001f7a istore  0x00000002 , 0x00000005 
+ 00017918  0x00001f7b increase  0x00000006 , 0x00000012 
+ 00017919  0x00001f7c arg  0x00000004 , 0x00000013 
+ 00017920  0x00001f7d branch  0x000043a7 
+ 00017921  0x00001f82 setarg  0x00000000 
+ 00017922  0x00001f83 store  0x00000002 , 0x000002a4 
+ 00017923  0x00001f84 store  0x00000002 , 0x000042da 
+ 00017924  0x00001f85 jam  0x00000000 , 0x000042e1 
+ 00017925  0x00001f86 rtn 
+ 00017926  0x00001f88 setarg  0x00000000 
+ 00017927  0x00001f89 store  0x00000002 , 0x0000029e 
+ 00017928  0x00001f8a store  0x00000002 , 0x000042d8 
+ 00017929  0x00001f8b jam  0x00000000 , 0x000042e0 
+ 00017930  0x00001f8c rtn 
+ 00017931  0x00001f8e setarg  0x00000000 
+ 00017932  0x00001f8f store  0x00000002 , 0x000042dc 
+ 00017933  0x00001f90 jam  0x00000000 , 0x000042e2 
+ 00017934  0x00001f91 fetch  0x00000001 , 0x000042e3 
+ 00017935  0x00001f92 beq  0x00000000 , 0x00004617 
+ 00017936  0x00001f93 rtn 
+ 00017937  0x00001f96 setarg  0x00000000 
+ 00017938  0x00001f97 store  0x00000002 , 0x000042de 
+ 00017939  0x00001f98 jam  0x00000000 , 0x000042e3 
+ 00017940  0x00001f99 fetch  0x00000001 , 0x000042e2 
+ 00017941  0x00001f9a beq  0x00000000 , 0x00004617 
+ 00017942  0x00001f9b rtn 
+ 00017943  0x00001f9e jam  0x00000007 , 0x000009bd 
+ 00017944  0x00001f9f branch  0x00007d86 
+ 00017945  0x00001fa2 fetch  0x00000001 , 0x000002a8 
+ 00017946  0x00001fa3 set0  0x00000000 , 0x0000003f 
+ 00017947  0x00001fa4 store  0x00000001 , 0x000002a8 
+ 00017948  0x00001fa5 fetch  0x00000002 , 0x000042de 
+ 00017949  0x00001fa6 rtn  0x00000034 
+ 00017950  0x00001fa7 call  0x0000485e 
+ 00017951  0x00001fa8 fetch  0x00000002 , 0x000042de 
+ 00017952  0x00001fa9 copy  0x0000003f , 0x00000011 
+ 00017953  0x00001faa force  0x00000053 , 0x00000012 
+ 00017954  0x00001fab branch  0x0000462c 
+ 00017955  0x00001fad fetch  0x00000001 , 0x000002a8 
+ 00017956  0x00001fae set0  0x00000007 , 0x0000003f 
+ 00017957  0x00001faf store  0x00000001 , 0x000002a8 
+ 00017958  0x00001fb0 fetch  0x00000002 , 0x000042dc 
+ 00017959  0x00001fb1 rtn  0x00000034 
+ 00017960  0x00001fb2 call  0x0000485e 
+ 00017961  0x00001fb3 fetch  0x00000002 , 0x000042dc 
+ 00017962  0x00001fb4 copy  0x0000003f , 0x00000011 
+ 00017963  0x00001fb5 force  0x00000052 , 0x00000012 
+ 00017964  0x00001fb7 call  0x000047d6 
+ 00017965  0x00001fb8 call  0x0000486a 
+ 00017966  0x00001fb9 force  0x00000006 , 0x0000003f 
+ 00017967  0x00001fba istore  0x00000001 , 0x00000005 
+ 00017968  0x00001fbb fetch  0x00000001 , 0x000042e5 
+ 00017969  0x00001fbc istore  0x00000001 , 0x00000005 
+ 00017970  0x00001fbd setarg  0x00000004 
+ 00017971  0x00001fbe istore  0x00000002 , 0x00000005 
+ 00017972  0x00001fbf copy  0x00000011 , 0x0000003f 
+ 00017973  0x00001fc0 istore  0x00000002 , 0x00000005 
+ 00017974  0x00001fc1 copy  0x00000012 , 0x0000003f 
+ 00017975  0x00001fc2 istore  0x00000002 , 0x00000005 
+ 00017976  0x00001fc3 force  0x00000008 , 0x00000002 
+ 00017977  0x00001fc4 branch  0x00004673 
+ 00017978  0x00001fc7 set0  0x00000025 , 0x00000000 
+ 00017979  0x00001fc8 bpatch  0x000000e4 , 0x0000401c 
+ 00017980  0x00001fc9 call  0x000047d6 
+ 00017981  0x00001fca call  0x0000486a 
+ 00017982  0x00001fcb setarg  0x00000002 
+ 00017983  0x00001fcc istore  0x00000001 , 0x00000005 
+ 00017984  0x00001fcd fetch  0x00000001 , 0x000042e5 
+ 00017985  0x00001fce istore  0x00000001 , 0x00000005 
+ 00017986  0x00001fcf setarg  0x00000004 
+ 00017987  0x00001fd0 istore  0x00000002 , 0x00000005 
+ 00017988  0x00001fd1 copy  0x00000002 , 0x0000003f 
+ 00017989  0x00001fd2 istore  0x00000002 , 0x00000005 
+ 00017990  0x00001fd3 copy  0x0000000b , 0x0000003f 
+ 00017991  0x00001fd4 istore  0x00000002 , 0x00000005 
+ 00017992  0x00001fd5 arg  0x00000008 , 0x00000002 
+ 00017993  0x00001fd6 branch  0x00004673 
+ 00017994  0x00001fd8 set0  0x00000025 , 0x00000000 
+ 00017995  0x00001fd9 bpatch  0x000000e5 , 0x0000401c 
+ 00017996  0x00001fda call  0x000047d6 
+ 00017997  0x00001fdb call  0x0000486a 
+ 00017998  0x00001fdc setarg  0x00000004 
+ 00017999  0x00001fdd istore  0x00000001 , 0x00000005 
+ 00018000  0x00001fde fetch  0x00000001 , 0x000042e5 
+ 00018001  0x00001fdf istore  0x00000001 , 0x00000005 
+ 00018002  0x00001fe0 setarg  0x00000008 
+ 00018003  0x00001fe1 istore  0x00000002 , 0x00000005 
+ 00018004  0x00001fe3 copy  0x00000002 , 0x0000003f 
+ 00018005  0x00001fe5 istore  0x00000002 , 0x00000005 
+ 00018006  0x00001fe6 setarg  0x00000000 
+ 00018007  0x00001fe7 istore  0x00000002 , 0x00000005 
+ 00018008  0x00001fe8 setarg  0x00000001 
+ 00018009  0x00001fe9 istore  0x00000001 , 0x00000005 
+ 00018010  0x00001fea setarg  0x00000002 
+ 00018011  0x00001feb istore  0x00000001 , 0x00000005 
+ 00018012  0x00001fec setarg  0x000003e3 
+ 00018013  0x00001fed istore  0x00000002 , 0x00000005 
+ 00018014  0x00001fee arg  0x0000000c , 0x00000002 
+ 00018015  0x00001fef branch  0x00004673 
+ 00018016  0x00001ff1 set0  0x00000025 , 0x00000000 
+ 00018017  0x00001ff2 bpatch  0x000000e6 , 0x0000401c 
+ 00018018  0x00001ff3 call  0x000047d6 
+ 00018019  0x00001ff4 call  0x0000486a 
+ 00018020  0x00001ff5 setarg  0x00000006 
+ 00018021  0x00001ff6 istore  0x00000001 , 0x00000005 
+ 00018022  0x00001ff7 fetch  0x00000001 , 0x000042e5 
+ 00018023  0x00001ff8 increase  0x00000001 , 0x0000003f 
+ 00018024  0x00001ff9 copy  0x00000005 , 0x00000011 
+ 00018025  0x00001ffa store  0x00000001 , 0x000042e5 
+ 00018026  0x00001ffb copy  0x00000011 , 0x00000005 
+ 00018027  0x00001ffc istore  0x00000001 , 0x00000005 
+ 00018028  0x00001ffd setarg  0x00000004 
+ 00018029  0x00001ffe istore  0x00000002 , 0x00000005 
+ 00018030  0x00001fff copy  0x00000002 , 0x0000003f 
+ 00018031  0x00002000 istore  0x00000002 , 0x00000005 
+ 00018032  0x00002001 copy  0x0000000b , 0x0000003f 
+ 00018033  0x00002002 istore  0x00000002 , 0x00000005 
+ 00018034  0x00002003 arg  0x00000008 , 0x00000002 
+ 00018035  0x00002007 storet  0x00000002 , 0x00000298 
+ 00018036  0x00002008 copy  0x00000002 , 0x0000003f 
+ 00018037  0x00002009 branch  0x00004803 , 0x00000034 
+ 00018038  0x0000200a call  0x00004868 
+ 00018039  0x0000200b fetch  0x00000002 , 0x00000298 
+ 00018040  0x0000200c istore  0x00000002 , 0x00000005 
+ 00018041  0x0000200d force  0x00000001 , 0x0000003f 
+ 00018042  0x0000200e istore  0x00000002 , 0x00000005 
+ 00018043  0x0000200f rtn 
+ 00018044  0x00002012 fetch  0x00000002 , 0x0000029e 
+ 00018045  0x00002013 branch  0x00003b31 , 0x00000034 
+ 00018046  0x00002014 call  0x00004876 
+ 00018047  0x00002015 fetch  0x00000002 , 0x0000029e 
+ 00018048  0x00002016 istore  0x00000002 , 0x00000005 
+ 00018049  0x00002017 fetch  0x00000002 , 0x000042d8 
+ 00018050  0x00002018 istore  0x00000002 , 0x00000005 
+ 00018051  0x00002019 rtn 
+ 00018052  0x0000201b fetch  0x00000002 , 0x0000028f 
+ 00018053  0x0000201c branch  0x00004383 , 0x00000034 
+ 00018054  0x0000201d set0  0x00000025 , 0x00000000 
+ 00018055  0x0000201e bpatch  0x000000e7 , 0x0000401c 
+ 00018056  0x0000201f fetch  0x00000001 , 0x00000291 
+ 00018057  0x00002020 beq  0x00000001 , 0x0000468f 
+ 00018058  0x00002021 beq  0x00000050 , 0x0000436e 
+ 00018059  0x00002022 beq  0x00000051 , 0x0000437b 
+ 00018060  0x00002023 beq  0x00000052 , 0x00004379 
+ 00018061  0x00002024 beq  0x00000053 , 0x00004379 
+ 00018062  0x00002025 branch  0x00004383 
+ 00018063  0x00002028 set0  0x00000025 , 0x00000000 
+ 00018064  0x00002029 bpatch  0x000000e8 , 0x0000401d 
+ 00018065  0x0000202a call  0x0000485e 
+ 00018066  0x0000202b force  0x00000000 , 0x00000012 
+ 00018067  0x0000202c call  0x0000486a 
+ 00018068  0x0000202d copy  0x0000003f , 0x00000005 
+ 00018069  0x0000202e fetch  0x00000002 , 0x0000028f 
+ 00018070  0x0000202f copy  0x0000003f , 0x00000013 
+ 00018071  0x00002030 fetch  0x00000002 , 0x0000028d 
+ 00018072  0x00002031 iforce  0x00000006 
+ 00018073  0x00002033 call  0x0000469f 
+ 00018074  0x00002034 increase  0xfffffffc , 0x00000013 
+ 00018075  0x00002035 nbranch  0x00004699 , 0x00000005 
+ 00018076  0x00002036 copy  0x00000012 , 0x00000002 
+ 00018077  0x00002037 call  0x00004673 
+ 00018078  0x00002038 branch  0x00004383 
+ 00018079  0x0000203b ifetch  0x00000001 , 0x00000006 
+ 00018080  0x0000203c beq  0x00000002 , 0x000046aa 
+ 00018081  0x0000203d beq  0x00000001 , 0x000046ad 
+ 00018082  0x0000203e beq  0x00000003 , 0x000046b7 
+ 00018083  0x0000203f beq  0x00000005 , 0x000046f4 
+ 00018084  0x00002040 beq  0x00000004 , 0x00004727 
+ 00018085  0x00002041 beq  0x00000007 , 0x000047ae 
+ 00018086  0x00002042 beq  0x00000006 , 0x0000477b 
+ 00018087  0x00002043 beq  0x00000008 , 0x000045e2 
+ 00018088  0x00002044 beq  0x0000000a , 0x000043c3 
+ 00018089  0x00002045 branch  0x000047ca 
+ 00018090  0x00002048 call  0x00007e70 
+ 00018091  0x0000204a call  0x00007e75 
+ 00018092  0x0000204b branch  0x000043da 
+ 00018093  0x0000204d ifetch  0x00000001 , 0x00000006 
+ 00018094  0x0000204e copy  0x0000003f , 0x00000007 
+ 00018095  0x0000204f ifetch  0x00000002 , 0x00000006 
+ 00018096  0x00002050 copy  0x0000003f , 0x00000011 
+ 00018097  0x00002051 copy  0x00000013 , 0x0000003f 
+ 00018098  0x00002052 isub  0x00000011 , 0x00000013 
+ 00018099  0x00002054 ifetch  0x00000001 , 0x00000006 
+ 00018100  0x00002055 increase  0xffffffff , 0x00000011 
+ 00018101  0x00002056 nbranch  0x000046b3 , 0x00000005 
+ 00018102  0x00002057 rtn 
+ 00018103  0x00002059 ifetch  0x00000001 , 0x00000006 
+ 00018104  0x0000205a copy  0x0000003f , 0x00000007 
+ 00018105  0x0000205b ifetch  0x00000002 , 0x00000006 
+ 00018106  0x0000205c copy  0x0000003f , 0x00000011 
+ 00018107  0x0000205d ifetch  0x00000002 , 0x00000006 
+ 00018108  0x0000205e copy  0x0000003f , 0x0000000b 
+ 00018109  0x0000205f ifetch  0x00000002 , 0x00000006 
+ 00018110  0x00002060 copy  0x0000003f , 0x00000002 
+ 00018111  0x00002061 ifetch  0x00000002 , 0x00000006 
+ 00018112  0x00002062 sub  0x0000003f , 0x00000000 , 0x0000003e 
+ 00018113  0x00002063 branch  0x000046c9 , 0x00000005 
+ 00018114  0x00002064 beq  0x00000002 , 0x000046c5 
+ 00018115  0x00002065 beq  0x00000004 , 0x000046c5 
+ 00018116  0x00002066 branch  0x000046c7 
+ 00018117  0x00002068 jam  0x00000016 , 0x000009bd 
+ 00018118  0x00002069 call  0x00007d86 
+ 00018119  0x0000206b ifetch  0x00000002 , 0x00000006 
+ 00018120  0x0000206c branch  0x000046f1 
+ 00018121  0x0000206e call  0x00007e70 
+ 00018122  0x00002072 set0  0x00000025 , 0x00000000 
+ 00018123  0x00002073 bpatch  0x000000e9 , 0x0000401d 
+ 00018124  0x00002074 setarg  0x00000050 
+ 00018125  0x00002075 isub  0x00000002 , 0x0000003e 
+ 00018126  0x00002076 branch  0x000046d9 , 0x00000005 
+ 00018127  0x00002077 setarg  0x00000051 
+ 00018128  0x00002078 isub  0x00000002 , 0x0000003e 
+ 00018129  0x00002079 branch  0x000046df , 0x00000005 
+ 00018130  0x0000207a setarg  0x00000053 
+ 00018131  0x0000207b isub  0x00000002 , 0x0000003e 
+ 00018132  0x0000207c branch  0x000046eb , 0x00000005 
+ 00018133  0x0000207d setarg  0x00000052 
+ 00018134  0x0000207e isub  0x00000002 , 0x0000003e 
+ 00018135  0x0000207f branch  0x000046e5 , 0x00000005 
+ 00018136  0x00002080 branch  0x000046f1 
+ 00018137  0x00002082 copy  0x0000000b , 0x0000003f 
+ 00018138  0x00002083 store  0x00000002 , 0x000042d8 
+ 00018139  0x00002084 fetch  0x00000001 , 0x000042e0 
+ 00018140  0x00002085 set1  0x00000001 
+ 00018141  0x00002086 store  0x00000001 , 0x000042e0 
+ 00018142  0x00002087 branch  0x000046f0 
+ 00018143  0x00002089 copy  0x0000000b , 0x0000003f 
+ 00018144  0x0000208a store  0x00000002 , 0x000042da 
+ 00018145  0x0000208b fetch  0x00000001 , 0x000042e1 
+ 00018146  0x0000208c set1  0x00000001 
+ 00018147  0x0000208d store  0x00000001 , 0x000042e1 
+ 00018148  0x0000208e branch  0x000046f0 
+ 00018149  0x00002090 copy  0x0000000b , 0x0000003f 
+ 00018150  0x00002091 store  0x00000002 , 0x000042dc 
+ 00018151  0x00002092 fetch  0x00000001 , 0x000042e2 
+ 00018152  0x00002093 set1  0x00000001 
+ 00018153  0x00002094 store  0x00000001 , 0x000042e2 
+ 00018154  0x00002095 branch  0x000046f0 
+ 00018155  0x00002097 copy  0x0000000b , 0x0000003f 
+ 00018156  0x00002098 store  0x00000002 , 0x000042de 
+ 00018157  0x00002099 fetch  0x00000001 , 0x000042e3 
+ 00018158  0x0000209a set1  0x00000001 
+ 00018159  0x0000209b store  0x00000001 , 0x000042e3 
+ 00018160  0x0000209f call  0x00007e75 
+ 00018161  0x000020a1 copy  0x00000013 , 0x0000003f 
+ 00018162  0x000020a2 isub  0x00000011 , 0x00000013 
+ 00018163  0x000020a3 rtn 
+ 00018164  0x000020a6 ifetch  0x00000001 , 0x00000006 
+ 00018165  0x000020a7 copy  0x0000003f , 0x00000007 
+ 00018166  0x000020a8 ifetch  0x00000002 , 0x00000006 
+ 00018167  0x000020a9 copy  0x0000003f , 0x00000011 
+ 00018168  0x000020aa copy  0x00000013 , 0x0000003f 
+ 00018169  0x000020ab isub  0x00000011 , 0x00000013 
+ 00018170  0x000020ac ifetch  0x00000002 , 0x00000006 
+ 00018171  0x000020ad copy  0x0000003f , 0x0000000b 
+ 00018172  0x000020ae ifetch  0x00000002 , 0x00000006 
+ 00018173  0x000020af ifetch  0x00000002 , 0x00000006 
+ 00018174  0x000020b0 nbranch  0x00004721 , 0x00000034 
+ 00018175  0x000020b1 call  0x00007e70 
+ 00018176  0x000020b5 copy  0x0000000b , 0x00000002 
+ 00018177  0x000020b6 set0  0x00000025 , 0x00000000 
+ 00018178  0x000020b7 bpatch  0x000000ea , 0x0000401d 
+ 00018179  0x000020b8 setarg  0x00000050 
+ 00018180  0x000020b9 isub  0x00000002 , 0x0000003e 
+ 00018181  0x000020ba branch  0x0000470f , 0x00000005 
+ 00018182  0x000020bb setarg  0x00000051 
+ 00018183  0x000020bc isub  0x00000002 , 0x0000003e 
+ 00018184  0x000020bd branch  0x00004713 , 0x00000005 
+ 00018185  0x000020be setarg  0x00000052 
+ 00018186  0x000020bf isub  0x00000002 , 0x0000003e 
+ 00018187  0x000020c0 branch  0x00004717 , 0x00000005 
+ 00018188  0x000020c1 setarg  0x00000053 
+ 00018189  0x000020c2 isub  0x00000002 , 0x0000003e 
+ 00018190  0x000020c3 branch  0x0000471b , 0x00000005 
+ 00018191  0x000020c5 fetch  0x00000001 , 0x000042e0 
+ 00018192  0x000020c6 set1  0x00000005 
+ 00018193  0x000020c7 store  0x00000001 , 0x000042e0 
+ 00018194  0x000020c8 rtn 
+ 00018195  0x000020ca fetch  0x00000001 , 0x000042e1 
+ 00018196  0x000020cb set1  0x00000005 
+ 00018197  0x000020cc store  0x00000001 , 0x000042e1 
+ 00018198  0x000020cd rtn 
+ 00018199  0x000020cf fetch  0x00000001 , 0x000042e2 
+ 00018200  0x000020d0 set1  0x00000005 
+ 00018201  0x000020d1 store  0x00000001 , 0x000042e2 
+ 00018202  0x000020d2 rtn 
+ 00018203  0x000020d4 fetch  0x00000001 , 0x000042e3 
+ 00018204  0x000020d5 set1  0x00000005 
+ 00018205  0x000020d6 store  0x00000001 , 0x000042e3 
+ 00018206  0x000020d7 jam  0x00000006 , 0x000009bd 
+ 00018207  0x000020d8 branch  0x00007d86 
+ 00018208  0x000020dc call  0x00007e75 
+ 00018209  0x000020de increase  0xfffffffa , 0x00000011 
+ 00018210  0x000020e0 branch  0x00004726 , 0x00000005 
+ 00018211  0x000020e1 increase  0x00000001 , 0x00000006 
+ 00018212  0x000020e2 increase  0xffffffff , 0x00000011 
+ 00018213  0x000020e3 branch  0x00004722 
+ 00018214  0x000020e5 rtn 
+ 00018215  0x000020e7 ifetch  0x00000001 , 0x00000006 
+ 00018216  0x000020e8 copy  0x0000003f , 0x00000007 
+ 00018217  0x000020e9 ifetch  0x00000002 , 0x00000006 
+ 00018218  0x000020ea copy  0x0000003f , 0x00000011 
+ 00018219  0x000020eb copy  0x00000013 , 0x0000003f 
+ 00018220  0x000020ec isub  0x00000011 , 0x00000013 
+ 00018221  0x000020ed ifetch  0x00000002 , 0x00000006 
+ 00018222  0x000020ee increase  0x00000002 , 0x00000006 
+ 00018223  0x000020ef copy  0x0000003f , 0x00000002 
+ 00018224  0x000020f0 setarg  0x00000005 
+ 00018225  0x000020f1 istore  0x00000001 , 0x00000005 
+ 00018226  0x000020f2 copy  0x00000007 , 0x0000003f 
+ 00018227  0x000020f3 istore  0x00000001 , 0x00000005 
+ 00018228  0x000020f4 increase  0x00000002 , 0x00000011 
+ 00018229  0x000020f5 copy  0x00000011 , 0x0000003f 
+ 00018230  0x000020f6 istore  0x00000002 , 0x00000005 
+ 00018231  0x000020f7 call  0x00007e70 
+ 00018232  0x000020f8 set0  0x00000025 , 0x00000000 
+ 00018233  0x000020f9 bpatch  0x000000eb , 0x0000401d 
+ 00018234  0x000020fa setarg  0x00000050 
+ 00018235  0x000020fb isub  0x00000002 , 0x0000003e 
+ 00018236  0x000020fc branch  0x00004747 , 0x00000005 
+ 00018237  0x000020fd setarg  0x00000051 
+ 00018238  0x000020fe isub  0x00000002 , 0x0000003e 
+ 00018239  0x000020ff branch  0x00004758 , 0x00000005 
+ 00018240  0x00002100 setarg  0x00000052 
+ 00018241  0x00002101 isub  0x00000002 , 0x0000003e 
+ 00018242  0x00002102 branch  0x0000475e , 0x00000005 
+ 00018243  0x00002103 setarg  0x00000053 
+ 00018244  0x00002104 isub  0x00000002 , 0x0000003e 
+ 00018245  0x00002105 branch  0x00004764 , 0x00000005 
+ 00018246  0x00002106 branch  0x00004769 
+ 00018247  0x00002108 fetch  0x00000001 , 0x000042e0 
+ 00018248  0x00002109 set1  0x00000004 , 0x0000003f 
+ 00018249  0x0000210a set1  0x00000003 , 0x0000003f 
+ 00018250  0x0000210b store  0x00000001 , 0x000042e0 
+ 00018251  0x0000210c bbit1  0x00000002 , 0x00004755 
+ 00018252  0x0000210d fetcht  0x00000001 , 0x000002a8 
+ 00018253  0x0000210e set1  0x00000006 , 0x00000002 
+ 00018254  0x0000210f storet  0x00000001 , 0x000002a8 
+ 00018255  0x00002110 copy  0x00000007 , 0x0000003f 
+ 00018256  0x00002111 increase  0x00000001 , 0x0000003f 
+ 00018257  0x00002112 store  0x00000001 , 0x000002aa 
+ 00018258  0x00002113 fetch  0x00000001 , 0x000042e0 
+ 00018259  0x00002114 set1  0x00000002 , 0x0000003f 
+ 00018260  0x00002115 store  0x00000001 , 0x000042e0 
+ 00018261  0x00002117 fetch  0x00000002 , 0x000042d8 
+ 00018262  0x00002118 store  0x00000002 , 0x000002ab 
+ 00018263  0x00002119 branch  0x00004769 
+ 00018264  0x0000211b fetch  0x00000001 , 0x000042e1 
+ 00018265  0x0000211c set1  0x00000004 , 0x0000003f 
+ 00018266  0x0000211d set1  0x00000003 , 0x0000003f 
+ 00018267  0x0000211e store  0x00000001 , 0x000042e1 
+ 00018268  0x0000211f fetch  0x00000002 , 0x000042da 
+ 00018269  0x00002120 branch  0x00004769 
+ 00018270  0x00002122 fetch  0x00000001 , 0x000042e2 
+ 00018271  0x00002123 set1  0x00000004 , 0x0000003f 
+ 00018272  0x00002124 set1  0x00000003 , 0x0000003f 
+ 00018273  0x00002125 store  0x00000001 , 0x000042e2 
+ 00018274  0x00002126 fetch  0x00000002 , 0x000042dc 
+ 00018275  0x00002127 branch  0x00004769 
+ 00018276  0x00002129 fetch  0x00000001 , 0x000042e3 
+ 00018277  0x0000212a set1  0x00000004 , 0x0000003f 
+ 00018278  0x0000212b set1  0x00000003 , 0x0000003f 
+ 00018279  0x0000212c store  0x00000001 , 0x000042e3 
+ 00018280  0x0000212d fetch  0x00000002 , 0x000042de 
+ 00018281  0x00002131 copy  0x0000003f , 0x0000000b 
+ 00018282  0x00002132 call  0x00007e75 
+ 00018283  0x00002134 copy  0x0000000b , 0x0000003f 
+ 00018284  0x00002136 istore  0x00000002 , 0x00000005 
+ 00018285  0x00002137 force  0x00000000 , 0x0000003f 
+ 00018286  0x00002138 istore  0x00000002 , 0x00000005 
+ 00018287  0x00002139 force  0x00000000 , 0x0000003f 
+ 00018288  0x0000213a istore  0x00000002 , 0x00000005 
+ 00018289  0x0000213b force  0x0000000a , 0x0000003f 
+ 00018290  0x0000213c iadd  0x00000012 , 0x00000012 
+ 00018291  0x0000213d increase  0xfffffffa , 0x00000011 
+ 00018292  0x0000213f branch  0x0000477a , 0x00000005 
+ 00018293  0x00002140 ifetch  0x00000001 , 0x00000006 
+ 00018294  0x00002141 istore  0x00000001 , 0x00000005 
+ 00018295  0x00002142 increase  0x00000001 , 0x00000012 
+ 00018296  0x00002143 increase  0xffffffff , 0x00000011 
+ 00018297  0x00002144 branch  0x00004774 
+ 00018298  0x00002146 rtn 
+ 00018299  0x00002148 ifetch  0x00000001 , 0x00000006 
+ 00018300  0x00002149 copy  0x0000003f , 0x00000007 
+ 00018301  0x0000214a ifetch  0x00000002 , 0x00000006 
+ 00018302  0x0000214b copy  0x0000003f , 0x00000011 
+ 00018303  0x0000214c copy  0x00000013 , 0x0000003f 
+ 00018304  0x0000214d isub  0x00000011 , 0x00000013 
+ 00018305  0x0000214f ifetch  0x00000002 , 0x00000006 
+ 00018306  0x00002150 copy  0x0000003f , 0x00000011 
+ 00018307  0x00002151 ifetch  0x00000002 , 0x00000006 
+ 00018308  0x00002152 copy  0x0000003f , 0x0000000b 
+ 00018309  0x00002153 call  0x00007e70 
+ 00018310  0x00002154 set0  0x00000025 , 0x00000000 
+ 00018311  0x00002155 bpatch  0x000000ec , 0x0000401d 
+ 00018312  0x00002156 setarg  0x00000050 
+ 00018313  0x00002157 copy  0x00000011 , 0x00000002 
+ 00018314  0x00002158 isub  0x00000002 , 0x0000003e 
+ 00018315  0x00002159 branch  0x00004795 , 0x00000005 
+ 00018316  0x0000215a setarg  0x00000052 
+ 00018317  0x0000215b copy  0x00000011 , 0x00000002 
+ 00018318  0x0000215c isub  0x00000002 , 0x0000003e 
+ 00018319  0x0000215d branch  0x0000479a , 0x00000005 
+ 00018320  0x0000215e setarg  0x00000053 
+ 00018321  0x0000215f copy  0x00000011 , 0x00000002 
+ 00018322  0x00002160 isub  0x00000002 , 0x0000003e 
+ 00018323  0x00002161 branch  0x0000479c , 0x00000005 
+ 00018324  0x00002162 branch  0x0000479e 
+ 00018325  0x00002164 setarg  0x00000000 
+ 00018326  0x00002165 store  0x00000002 , 0x0000029e 
+ 00018327  0x00002166 store  0x00000002 , 0x000042d8 
+ 00018328  0x00002167 store  0x00000001 , 0x000042e0 
+ 00018329  0x00002168 branch  0x000047a0 
+ 00018330  0x0000216a call  0x0000460b 
+ 00018331  0x0000216b branch  0x000047a0 
+ 00018332  0x0000216d call  0x00004611 
+ 00018333  0x00002173 branch  0x000047a0 
+ 00018334  0x00002175 setarg  0x00000000 
+ 00018335  0x00002176 store  0x00000002 , 0x000002a4 
+ 00018336  0x00002178 call  0x00007e75 
+ 00018337  0x00002179 setarg  0x00000007 
+ 00018338  0x0000217a istore  0x00000001 , 0x00000005 
+ 00018339  0x0000217b copy  0x00000007 , 0x0000003f 
+ 00018340  0x0000217c istore  0x00000001 , 0x00000005 
+ 00018341  0x0000217d setarg  0x00000004 
+ 00018342  0x0000217e istore  0x00000002 , 0x00000005 
+ 00018343  0x0000217f copy  0x00000011 , 0x0000003f 
+ 00018344  0x00002180 istore  0x00000002 , 0x00000005 
+ 00018345  0x00002181 copy  0x0000000b , 0x0000003f 
+ 00018346  0x00002182 istore  0x00000002 , 0x00000005 
+ 00018347  0x00002183 force  0x00000008 , 0x0000003f 
+ 00018348  0x00002184 iadd  0x00000012 , 0x00000012 
+ 00018349  0x00002185 rtn 
+ 00018350  0x00002188 ifetch  0x00000001 , 0x00000006 
+ 00018351  0x00002189 copy  0x0000003f , 0x00000007 
+ 00018352  0x0000218a ifetch  0x00000002 , 0x00000006 
+ 00018353  0x0000218b copy  0x0000003f , 0x00000011 
+ 00018354  0x0000218c ifetch  0x00000002 , 0x00000006 
+ 00018355  0x0000218d copy  0x0000003f , 0x0000000b 
+ 00018356  0x0000218e ifetch  0x00000002 , 0x00000006 
+ 00018357  0x0000218f copy  0x0000003f , 0x00000002 
+ 00018358  0x00002190 call  0x00007e70 
+ 00018359  0x00002191 set0  0x00000025 , 0x00000000 
+ 00018360  0x00002192 bpatch  0x000000ed , 0x0000401d 
+ 00018361  0x00002193 fetch  0x00000001 , 0x000042e5 
+ 00018362  0x00002194 icompare  0x000000ff , 0x00000007 
+ 00018363  0x00002195 nbranch  0x000047c6 , 0x00000001 
+ 00018364  0x00002196 setarg  0x00000050 
+ 00018365  0x00002197 isub  0x00000002 , 0x0000003e 
+ 00018366  0x00002198 branch  0x000047c3 , 0x00000005 
+ 00018367  0x00002199 setarg  0x00000051 
+ 00018368  0x0000219a isub  0x00000002 , 0x0000003e 
+ 00018369  0x0000219b branch  0x000047c6 , 0x00000005 
+ 00018370  0x0000219c branch  0x000047c6 
+ 00018371  0x0000219e jam  0x00000000 , 0x000042d8 
+ 00018372  0x0000219f jam  0x00000000 , 0x000042e0 
+ 00018373  0x000021a0 branch  0x000047c6 
+ 00018374  0x000021a5 call  0x00007e75 
+ 00018375  0x000021a6 copy  0x00000013 , 0x0000003f 
+ 00018376  0x000021a7 isub  0x00000011 , 0x00000013 
+ 00018377  0x000021a8 rtn 
+ 00018378  0x000021ab setarg  0x00000001 
+ 00018379  0x000021ac istore  0x00000001 , 0x00000005 
+ 00018380  0x000021ad ifetch  0x00000001 , 0x00000006 
+ 00018381  0x000021ae istore  0x00000001 , 0x00000005 
+ 00018382  0x000021af setarg  0x00000002 
+ 00018383  0x000021b0 istore  0x00000002 , 0x00000005 
+ 00018384  0x000021b1 setarg  0x00000000 
+ 00018385  0x000021b2 istore  0x00000002 , 0x00000005 
+ 00018386  0x000021b3 setarg  0x00000006 
+ 00018387  0x000021b4 iadd  0x00000012 , 0x00000012 
+ 00018388  0x000021b5 force  0x00000004 , 0x00000013 
+ 00018389  0x000021b6 rtn 
+ 00018390  0x000021ba fetch  0x00000001 , 0x000042e5 
+ 00018391  0x000021bb increase  0x00000001 , 0x0000003f 
+ 00018392  0x000021bc bne  0x00000000 , 0x000047da 
+ 00018393  0x000021bd increase  0x00000001 , 0x0000003f 
+ 00018394  0x000021bf store  0x00000001 , 0x000042e5 
+ 00018395  0x000021c0 rtn 
+ 00018396  0x000021cb set0  0x00000025 , 0x00000000 
+ 00018397  0x000021cc bpatch  0x000000ee , 0x0000401d 
+ 00018398  0x000021cd arg  0x00000000 , 0x00000012 
+ 00018399  0x000021ce call  0x0000480e 
+ 00018400  0x000021cf nbranch  0x00003b31 , 0x00000034 
+ 00018401  0x000021d0 call  0x00004821 
+ 00018402  0x000021d1 arg  0x00001800 , 0x00000012 
+ 00018403  0x000021d2 arg  0x00000000 , 0x00000007 
+ 00018404  0x000021d4 fetcht  0x00000001 , 0x000042e6 
+ 00018405  0x000021d5 qisolate1  0x00000002 
+ 00018406  0x000021d6 branch  0x000047ec , 0x00000001 
+ 00018407  0x000021d7 call  0x00004845 
+ 00018408  0x000021d8 sub  0x0000000b , 0x00000000 , 0x0000003e 
+ 00018409  0x000021d9 branch  0x000047ec , 0x00000002 
+ 00018410  0x000021da call  0x0000482c 
+ 00018411  0x000021db branch  0x000047f2 
+ 00018412  0x000021dd increase  0x00000080 , 0x00000012 
+ 00018413  0x000021de increase  0x00000001 , 0x00000007 
+ 00018414  0x000021df setarg  0x00000008 
+ 00018415  0x000021e0 isub  0x00000007 , 0x0000003e 
+ 00018416  0x000021e1 branch  0x000047e4 , 0x00000002 
+ 00018417  0x000021e2 arg  0x00000000 , 0x00000012 
+ 00018418  0x000021e4 copy  0x00000012 , 0x0000003f 
+ 00018419  0x000021e5 branch  0x00003b31 , 0x00000034 
+ 00018420  0x000021e6 rtn 
+ 00018421  0x000021ef set0  0x00000025 , 0x00000000 
+ 00018422  0x000021f0 bpatch  0x000000ef , 0x0000401d 
+ 00018423  0x000021f1 call  0x0000481a 
+ 00018424  0x000021f2 increase  0x00000001 , 0x00000006 
+ 00018425  0x000021f3 ifetch  0x00000002 , 0x00000006 
+ 00018426  0x000021f4 rtn 
+ 00018427  0x000021fb set0  0x00000025 , 0x00000000 
+ 00018428  0x000021fc bpatch  0x000000f0 , 0x0000401e 
+ 00018429  0x000021fd call  0x0000481a 
+ 00018430  0x000021fe copy  0x00000006 , 0x00000005 
+ 00018431  0x000021ff copy  0x00000006 , 0x00000002 
+ 00018432  0x00002200 setarg  0x00000000 
+ 00018433  0x00002201 istore  0x00000003 , 0x00000005 
+ 00018434  0x00002202 rtn 
+ 00018435  0x00002208 set0  0x00000025 , 0x00000000 
+ 00018436  0x00002209 bpatch  0x000000f1 , 0x0000401e 
+ 00018437  0x0000220a call  0x00004816 
+ 00018438  0x0000220b branch  0x00003b31 , 0x00000034 
+ 00018439  0x0000220c fetch  0x00000003 , 0x000042ed 
+ 00018440  0x0000220d store  0x00000003 , 0x000042f0 
+ 00018441  0x0000220e fetch  0x00000003 , 0x000042ea 
+ 00018442  0x0000220f store  0x00000003 , 0x000042ed 
+ 00018443  0x00002210 fetch  0x00000003 , 0x000042e7 
+ 00018444  0x00002211 store  0x00000003 , 0x000042ea 
+ 00018445  0x00002212 rtn 
+ 00018446  0x00002219 set0  0x00000025 , 0x00000000 
+ 00018447  0x0000221a bpatch  0x000000f2 , 0x0000401e 
+ 00018448  0x0000221b fetch  0x00000003 , 0x000042e7 
+ 00018449  0x0000221c rtn 
+ 00018450  0x00002223 set0  0x00000025 , 0x00000000 
+ 00018451  0x00002224 bpatch  0x000000f3 , 0x0000401e 
+ 00018452  0x00002225 fetch  0x00000003 , 0x000042ea 
+ 00018453  0x00002226 rtn 
+ 00018454  0x0000222d set0  0x00000025 , 0x00000000 
+ 00018455  0x0000222e bpatch  0x000000f4 , 0x0000401e 
+ 00018456  0x0000222f fetch  0x00000003 , 0x000042f0 
+ 00018457  0x00002230 rtn 
+ 00018458  0x00002236 call  0x00004816 
+ 00018459  0x00002237 branch  0x00003b31 , 0x00000034 
+ 00018460  0x00002238 arg  0x000042e7 , 0x00000006 
+ 00018461  0x0000223a ifetch  0x00000003 , 0x00000006 
+ 00018462  0x0000223b branch  0x0000481d , 0x00000034 
+ 00018463  0x0000223c increase  0xfffffffd , 0x00000006 
+ 00018464  0x0000223d rtn 
+ 00018465  0x00002245 set0  0x00000025 , 0x00000000 
+ 00018466  0x00002246 bpatch  0x000000f5 , 0x0000401e 
+ 00018467  0x00002247 arg  0x00000004 , 0x00000039 
+ 00018468  0x00002248 arg  0x000042e7 , 0x00000006 
+ 00018469  0x00002249 arg  0x00000000 , 0x00000002 
+ 00018470  0x0000224b ifetch  0x00000003 , 0x00000006 
+ 00018471  0x0000224c and  0x0000003f , 0x000000ff , 0x0000003f 
+ 00018472  0x0000224d ior  0x00000002 , 0x00000002 
+ 00018473  0x0000224e loop  0x00004826 
+ 00018474  0x0000224f storet  0x00000001 , 0x000042e6 
+ 00018475  0x00002250 rtn 
+ 00018476  0x00002259 set0  0x00000025 , 0x00000000 
+ 00018477  0x0000225a bpatch  0x000000f6 , 0x0000401e 
+ 00018478  0x0000225b call  0x0000480e 
+ 00018479  0x0000225c nbranch  0x00003b31 , 0x00000034 
+ 00018480  0x0000225d call  0x00004816 
+ 00018481  0x0000225e branch  0x0000483a , 0x00000034 
+ 00018482  0x0000225f fetch  0x00000003 , 0x000042ea 
+ 00018483  0x00002260 store  0x00000003 , 0x000042e7 
+ 00018484  0x00002261 ifetch  0x00000003 , 0x00000006 
+ 00018485  0x00002262 istore  0x00000003 , 0x00000005 
+ 00018486  0x00002263 ifetch  0x00000003 , 0x00000006 
+ 00018487  0x00002264 istore  0x00000003 , 0x00000005 
+ 00018488  0x00002265 setarg  0x00000000 
+ 00018489  0x00002266 istore  0x00000003 , 0x00000005 
+ 00018490  0x00002268 arg  0x00000000 , 0x00000002 
+ 00018491  0x00002269 copy  0x0000000b , 0x0000003f 
+ 00018492  0x0000226a iadd  0x00000007 , 0x0000003f 
+ 00018493  0x0000226c qset1  0x00000002 
+ 00018494  0x0000226d increase  0x00000001 , 0x00000007 
+ 00018495  0x0000226e isub  0x00000007 , 0x0000003e 
+ 00018496  0x0000226f nbranch  0x0000483d , 0x00000005 
+ 00018497  0x00002271 lshift8  0x00000012 , 0x0000003f 
+ 00018498  0x00002272 ior  0x00000002 , 0x0000003f 
+ 00018499  0x00002273 store  0x00000003 , 0x000042f0 
+ 00018500  0x00002274 rtn 
+ 00018501  0x0000227f set0  0x00000025 , 0x00000000 
+ 00018502  0x00002280 bpatch  0x000000f7 , 0x0000401e 
+ 00018503  0x00002281 call  0x00004821 
+ 00018504  0x00002282 copy  0x00000007 , 0x00000013 
+ 00018505  0x00002283 arg  0x00000000 , 0x00000002 
+ 00018506  0x00002284 arg  0x00000000 , 0x0000000b 
+ 00018507  0x00002287 copy  0x00000007 , 0x0000003f 
+ 00018508  0x00002288 beq  0x00000008 , 0x00004856 
+ 00018509  0x00002289 fetch  0x00000001 , 0x000042e6 
+ 00018510  0x0000228a qisolate1  0x0000003f 
+ 00018511  0x0000228b branch  0x00004856 , 0x00000001 
+ 00018512  0x0000228c increase  0x00000080 , 0x00000002 
+ 00018513  0x0000228d increase  0x00000001 , 0x00000007 
+ 00018514  0x0000228e copy  0x00000011 , 0x0000003f 
+ 00018515  0x0000228f isub  0x00000002 , 0x0000003e 
+ 00018516  0x00002290 branch  0x00004856 , 0x00000005 
+ 00018517  0x00002291 branch  0x0000484b , 0x00000002 
+ 00018518  0x00002293 copy  0x00000002 , 0x0000003f 
+ 00018519  0x00002294 isub  0x00000011 , 0x0000003e 
+ 00018520  0x00002295 nbranch  0x0000485c , 0x00000002 
+ 00018521  0x00002296 copy  0x00000007 , 0x0000003f 
+ 00018522  0x00002297 copy  0x00000013 , 0x00000002 
+ 00018523  0x00002298 isub  0x00000002 , 0x0000000b 
+ 00018524  0x0000229a copy  0x00000013 , 0x00000007 
+ 00018525  0x0000229b rtn 
+ 00018526  0x0000229f set0  0x00000025 , 0x00000000 
+ 00018527  0x000022a0 bpatch  0x000000f8 , 0x0000401f 
+ 00018528  0x000022a1 arg  0x0000007f , 0x00000011 
+ 00018529  0x000022a2 call  0x000047dc 
+ 00018530  0x000022a3 store  0x00000002 , 0x00000294 
+ 00018531  0x000022a4 increase  0x00000004 , 0x0000003f 
+ 00018532  0x000022a5 store  0x00000002 , 0x00000296 
+ 00018533  0x000022a6 setarg  0x00000000 
+ 00018534  0x000022a7 store  0x00000002 , 0x00000298 
+ 00018535  0x000022a8 rtn 
+ 00018536  0x000022ab fetch  0x00000002 , 0x00000294 
+ 00018537  0x000022ac branch  0x0000488b 
+ 00018538  0x000022af fetch  0x00000002 , 0x00000296 
+ 00018539  0x000022b0 branch  0x0000488b 
+ 00018540  0x000022b4 set0  0x00000025 , 0x00000000 
+ 00018541  0x000022b5 bpatch  0x000000f9 , 0x0000401f 
+ 00018542  0x000022b6 arg  0x000002ff , 0x00000011 
+ 00018543  0x000022b7 call  0x000047dc 
+ 00018544  0x000022b8 store  0x00000002 , 0x0000029a 
+ 00018545  0x000022b9 increase  0x00000004 , 0x0000003f 
+ 00018546  0x000022ba store  0x00000002 , 0x0000029c 
+ 00018547  0x000022bb setarg  0x00000000 
+ 00018548  0x000022bc store  0x00000002 , 0x0000029e 
+ 00018549  0x000022bd rtn 
+ 00018550  0x000022c0 fetch  0x00000002 , 0x0000029a 
+ 00018551  0x000022c1 branch  0x0000488b 
+ 00018552  0x000022c4 fetch  0x00000002 , 0x0000029c 
+ 00018553  0x000022c5 branch  0x0000488b 
+ 00018554  0x000022c9 set0  0x00000025 , 0x00000000 
+ 00018555  0x000022ca bpatch  0x000000fa , 0x0000401f 
+ 00018556  0x000022cb call  0x00007e48 
+ 00018557  0x000022cc jam  0x00000001 , 0x000002ad 
+ 00018558  0x000022cd call  0x0000480e 
+ 00018559  0x000022ce nrtn  0x00000034 
+ 00018560  0x000022cf arg  0x0000007f , 0x00000011 
+ 00018561  0x000022d0 call  0x000047dc 
+ 00018562  0x000022d1 store  0x00000002 , 0x000002a0 
+ 00018563  0x000022d2 increase  0x00000004 , 0x0000003f 
+ 00018564  0x000022d3 store  0x00000002 , 0x000002a2 
+ 00018565  0x000022d4 setarg  0x00000000 
+ 00018566  0x000022d5 store  0x00000002 , 0x000002a4 
+ 00018567  0x000022d6 jam  0x00000000 , 0x000002ad 
+ 00018568  0x000022d7 branch  0x00007e56 
+ 00018569  0x000022da fetch  0x00000002 , 0x000002a0 
+ 00018570  0x000022db branch  0x0000488b 
+ 00018571  0x000022de branch  0x00003b31 , 0x00000034 
+ 00018572  0x000022df copy  0x0000003f , 0x00000005 
+ 00018573  0x000022e0 rtn 
+ 00018574  0x000022e4 set0  0x00000025 , 0x00000000 
+ 00018575  0x000022e5 bpatch  0x000000fb , 0x0000401f 
+ 00018576  0x000022e6 arg  0x00000000 , 0x00000012 
+ 00018577  0x000022e7 arg  0x000042e7 , 0x00000011 
+ 00018578  0x000022e8 increase  0xfffffffe , 0x00000011 
+ 00018579  0x000022ea increase  0x00000002 , 0x00000011 
+ 00018580  0x000022eb setarg  0x000042f3 
+ 00018581  0x000022ec isub  0x00000011 , 0x0000003e 
+ 00018582  0x000022ed branch  0x0000489f , 0x00000005 
+ 00018583  0x000022ee ifetch  0x00000001 , 0x00000011 
+ 00018584  0x000022ef increase  0x00000001 , 0x00000011 
+ 00018585  0x000022f0 branch  0x00004893 , 0x00000034 
+ 00018586  0x000022f1 ifetcht  0x00000002 , 0x00000011 
+ 00018587  0x000022f2 ifetch  0x00000002 , 0x00000002 
+ 00018588  0x000022f3 iadd  0x00000012 , 0x00000012 
+ 00018589  0x000022f4 increase  0x00000004 , 0x00000012 
+ 00018590  0x000022f5 branch  0x00004893 
+ 00018591  0x000022f7 copy  0x00000012 , 0x0000003f 
+ 00018592  0x000022f8 rtn 
+ 00018593  0x000022fc arg  0x0000000c , 0x00000007 
+ 00018594  0x000022fd branch  0x00003d06 
+ 00018595  0x00002300 arg  0x0000000c , 0x00000007 
+ 00018596  0x00002301 branch  0x00003d0a 
+ 00018597  0x00002304 set0  0x00000025 , 0x00000000 
+ 00018598  0x00002305 bpatch  0x000000fc , 0x0000401f 
+ 00018599  0x00002306 call  0x00004821 
+ 00018600  0x00002307 fetch  0x00000001 , 0x000042e6 
+ 00018601  0x00002308 rtn  0x00000034 
+ 00018602  0x00002309 call  0x0000488e 
+ 00018603  0x0000230a arg  0x00000100 , 0x00000002 
+ 00018604  0x0000230b isub  0x00000002 , 0x0000003e 
+ 00018605  0x0000230c branch  0x000048a1 , 0x00000002 
+ 00018606  0x0000230d call  0x000048a3 
+ 00018607  0x0000230e arg  0x000042f3 , 0x00000005 
+ 00018608  0x0000230f arg  0x000042e7 , 0x00000011 
+ 00018609  0x00002311 setarg  0x000042f3 
+ 00018610  0x00002312 isub  0x00000011 , 0x0000003e 
+ 00018611  0x00002313 rtn  0x00000005 
+ 00018612  0x00002314 ifetch  0x00000001 , 0x00000011 
+ 00018613  0x00002315 increase  0x00000001 , 0x00000011 
+ 00018614  0x00002316 nbranch  0x000048ba , 0x00000034 
+ 00018615  0x00002317 istore  0x00000002 , 0x00000005 
+ 00018616  0x00002318 increase  0x00000002 , 0x00000011 
+ 00018617  0x00002319 branch  0x000048b1 
+ 00018618  0x0000231b ifetch  0x00000002 , 0x00000011 
+ 00018619  0x0000231c increase  0x00000002 , 0x00000011 
+ 00018620  0x0000231d copy  0x0000003f , 0x00000006 
+ 00018621  0x0000231e ifetch  0x00000002 , 0x00000006 
+ 00018622  0x0000231f istore  0x00000002 , 0x00000005 
+ 00018623  0x00002320 copy  0x0000003f , 0x00000039 
+ 00018624  0x00002321 increase  0x00000002 , 0x00000039 
+ 00018625  0x00002322 call  0x00007ecd 
+ 00018626  0x00002323 branch  0x000048b1 
+ 00018627  0x00002326 set0  0x00000025 , 0x00000000 
+ 00018628  0x00002327 bpatch  0x000000fd , 0x0000401f 
+ 00018629  0x00002328 call  0x00004821 
+ 00018630  0x00002329 fetch  0x00000001 , 0x000042e6 
+ 00018631  0x0000232a rtn  0x00000034 
+ 00018632  0x0000232b arg  0x000042e8 , 0x00000011 
+ 00018633  0x0000232c increase  0xfffffffd , 0x00000011 
+ 00018634  0x0000232d arg  0x000042f3 , 0x00000006 
+ 00018635  0x0000232f increase  0x00000003 , 0x00000011 
+ 00018636  0x00002330 setarg  0x000042f4 
+ 00018637  0x00002331 isub  0x00000011 , 0x0000003e 
+ 00018638  0x00002332 rtn  0x00000005 
+ 00018639  0x00002333 ifetch  0x00000002 , 0x00000006 
+ 00018640  0x00002334 branch  0x000048cb , 0x00000034 
+ 00018641  0x00002335 increase  0x00000004 , 0x0000003f 
+ 00018642  0x00002336 copy  0x0000003f , 0x00000039 
+ 00018643  0x00002337 copy  0x00000006 , 0x00000012 
+ 00018644  0x00002338 ifetch  0x00000002 , 0x00000011 
+ 00018645  0x00002339 copy  0x0000003f , 0x00000005 
+ 00018646  0x0000233a copy  0x00000012 , 0x00000006 
+ 00018647  0x0000233b increase  0xfffffffe , 0x00000006 
+ 00018648  0x0000233c call  0x00007ecd 
+ 00018649  0x0000233d branch  0x000048cb 
+ 00018650  0x00002348 fetch  0x00000001 , 0x000044df 
+ 00018651  0x00002349 set1  0x00000003 , 0x0000003f 
+ 00018652  0x0000234a store  0x00000001 , 0x000044df 
+ 00018653  0x0000234b rtn 
+ 00018654  0x0000234d fetch  0x00000001 , 0x000044df 
+ 00018655  0x0000234e set0  0x00000003 , 0x0000003f 
+ 00018656  0x0000234f store  0x00000001 , 0x000044df 
+ 00018657  0x00002350 rtn 
+ 00018658  0x00002354 set0  0x00000025 , 0x00000000 
+ 00018659  0x00002355 bpatch  0x000000fe , 0x0000401f 
+ 00018660  0x00002356 disable  0x0000002b 
+ 00018661  0x00002357 jam  0x00000001 , 0x00000378 
+ 00018662  0x00002358 jam  0x00000003 , 0x00000362 
+ 00018663  0x00002359 jam  0x00000001 , 0x00000379 
+ 00018664  0x0000235a setarg  0xffffffff 
+ 00018665  0x0000235b store  0x00000002 , 0x0000037c 
+ 00018666  0x0000235c force  0x00000000 , 0x0000003f 
+ 00018667  0x0000235d store  0x00000001 , 0x0000037a 
+ 00018668  0x0000235e store  0x00000001 , 0x00000385 
+ 00018669  0x0000235f store  0x00000003 , 0x00004209 
+ 00018670  0x00002360 store  0x00000003 , 0x0000420c 
+ 00018671  0x00002361 store  0x00000005 , 0x0000448c 
+ 00018672  0x00002362 set1  0x00000027 , 0x0000003f 
+ 00018673  0x00002363 store  0x00000005 , 0x00004491 
+ 00018674  0x00002364 jam  0x00000001 , 0x00004465 
+ 00018675  0x00002365 jam  0x00000000 , 0x00004466 
+ 00018676  0x00002366 branch  0x00005179 
+ 00018677  0x00002369 set0  0x00000025 , 0x00000000 
+ 00018678  0x0000236a bpatch  0x000000ff , 0x0000401f 
+ 00018679  0x0000236b enable  0x00000029 
+ 00018680  0x0000236c jam  0x00000003 , 0x00000363 
+ 00018681  0x0000236d jam  0x00000001 , 0x0000039b 
+ 00018682  0x0000236e jam  0x00000001 , 0x000044e3 
+ 00018683  0x0000236f setarg  0x0000ffff 
+ 00018684  0x00002370 store  0x00000002 , 0x000044e5 
+ 00018685  0x00002371 force  0x00000000 , 0x0000003f 
+ 00018686  0x00002372 store  0x00000005 , 0x00004491 
+ 00018687  0x00002373 set1  0x00000027 , 0x0000003f 
+ 00018688  0x00002374 store  0x00000005 , 0x0000448c 
+ 00018689  0x00002375 branch  0x000048e2 
+ 00018690  0x00002379 set1  0x00000025 , 0x00000000 
+ 00018691  0x0000237a bpatch  0x00000000 , 0x00004020 
+ 00018692  0x0000237b disable  0x00000029 
+ 00018693  0x0000237c jam  0x00000001 , 0x00000363 
+ 00018694  0x0000237d jam  0x00000000 , 0x000043ff 
+ 00018695  0x0000237e jam  0x00000000 , 0x0000009f 
+ 00018696  0x0000237f jam  0x00000000 , 0x0000456a 
+ 00018697  0x00002380 jam  0x00000000 , 0x0000456b 
+ 00018698  0x00002381 fetch  0x00000002 , 0x00000390 
+ 00018699  0x00002382 store  0x00000002 , 0x00004561 
+ 00018700  0x00002383 fetch  0x00000002 , 0x00000364 
+ 00018701  0x00002384 mul32  0x0000003f , 0x00000005 , 0x0000003f 
+ 00018702  0x00002385 rshift4  0x0000003f , 0x0000003f 
+ 00018703  0x00002386 store  0x00000002 , 0x00000390 
+ 00018704  0x00002387 branch  0x000048e2 
+ 00018705  0x0000238e call  0x00004976 
+ 00018706  0x0000238f call  0x00004b91 
+ 00018707  0x00002390 call  0x0000517c 
+ 00018708  0x00002391 branch  0x0000497d 
+ 00018709  0x00002394 set1  0x00000025 , 0x00000000 
+ 00018710  0x00002395 bpatch  0x00000001 , 0x00004020 
+ 00018711  0x00002396 call  0x00004976 
+ 00018712  0x00002397 call  0x00003d67 
+ 00018713  0x00002398 fetch  0x00000001 , 0x00000363 
+ 00018714  0x00002399 beq  0x00000003 , 0x0000491c 
+ 00018715  0x0000239a branch  0x00004932 
+ 00018716  0x000023a1 set1  0x00000025 , 0x00000000 
+ 00018717  0x000023a2 bpatch  0x00000002 , 0x00004020 
+ 00018718  0x000023a3 enable  0x00000029 
+ 00018719  0x000023a4 call  0x00005170 
+ 00018720  0x000023a5 branch  0x0000492f , 0x00000002 
+ 00018721  0x000023a6 call  0x00003d45 
+ 00018722  0x000023a7 call  0x000049c4 
+ 00018723  0x000023a8 call  0x00004bd8 
+ 00018724  0x000023a9 disable  0x0000002d 
+ 00018725  0x000023aa call  0x00004a5a 
+ 00018726  0x000023ab nrtn  0x0000002d 
+ 00018727  0x000023ac set1  0x00000025 , 0x00000000 
+ 00018728  0x000023ad bpatch  0x00000003 , 0x00004020 
+ 00018729  0x000023ae fetch  0x00000001 , 0x00000005 
+ 00018730  0x000023af increase  0x00000001 , 0x0000003f 
+ 00018731  0x000023b0 store  0x00000001 , 0x00000005 
+ 00018732  0x000023b1 call  0x00004b51 
+ 00018733  0x000023b2 disable  0x00000029 
+ 00018734  0x000023b3 rtn 
+ 00018735  0x000023b6 call  0x0000495b 
+ 00018736  0x000023b7 disable  0x00000029 
+ 00018737  0x000023b8 rtn 
+ 00018738  0x000023be set1  0x00000025 , 0x00000000 
+ 00018739  0x000023bf bpatch  0x00000004 , 0x00004020 
+ 00018740  0x000023c0 call  0x00007acf 
+ 00018741  0x000023c1 call  0x000052a9 
+ 00018742  0x000023c2 disable  0x0000002e 
+ 00018743  0x000023c3 call  0x00005170 
+ 00018744  0x000023c4 branch  0x0000495b , 0x00000002 
+ 00018745  0x000023c5 call  0x00003d45 
+ 00018746  0x000023c6 call  0x000049c4 
+ 00018747  0x000023c7 call  0x00004a20 
+ 00018748  0x000023c8 nbranch  0x0000494f , 0x00000018 
+ 00018749  0x000023c9 call  0x00004968 
+ 00018750  0x000023ca branch  0x00004940 , 0x0000002d 
+ 00018751  0x000023cb branch  0x00004949 
+ 00018752  0x000023cf set1  0x00000025 , 0x00000000 
+ 00018753  0x000023d0 bpatch  0x00000005 , 0x00004020 
+ 00018754  0x000023d1 call  0x00004968 
+ 00018755  0x000023d2 call  0x00004b51 
+ 00018756  0x000023d3 call  0x00004bd8 
+ 00018757  0x000023d4 fetch  0x00000001 , 0x00000302 
+ 00018758  0x000023d5 bbit1  0x00000004 , 0x00004955 
+ 00018759  0x000023d6 call  0x00004bd0 
+ 00018760  0x000023d7 nbranch  0x00004955 , 0x00000034 
+ 00018761  0x000023d9 set1  0x00000025 , 0x00000000 
+ 00018762  0x000023da bpatch  0x00000006 , 0x00004020 
+ 00018763  0x000023db call  0x00004a63 
+ 00018764  0x000023dd call  0x00007d9e 
+ 00018765  0x000023de fetch  0x00000001 , 0x00000385 
+ 00018766  0x000023df bbit1  0x00000003 , 0x0000495b 
+ 00018767  0x000023e1 set1  0x00000025 , 0x00000000 
+ 00018768  0x000023e2 bpatch  0x00000007 , 0x00004020 
+ 00018769  0x000023e3 call  0x00005287 
+ 00018770  0x000023e4 call  0x00004b43 
+ 00018771  0x000023e5 call  0x00004b22 
+ 00018772  0x000023e6 branch  0x000038d1 
+ 00018773  0x000023e9 set1  0x00000025 , 0x00000000 
+ 00018774  0x000023ea bpatch  0x00000008 , 0x00004021 
+ 00018775  0x000023eb enable  0x0000002e 
+ 00018776  0x000023ec call  0x00004a5a 
+ 00018777  0x000023ed branch  0x00004940 , 0x0000002d 
+ 00018778  0x000023ee branch  0x0000494c 
+ 00018779  0x000023f4 set1  0x00000025 , 0x00000000 
+ 00018780  0x000023f5 bpatch  0x00000009 , 0x00004021 
+ 00018781  0x000023f7 call  0x00004962 
+ 00018782  0x000023f8 call  0x00003e17 
+ 00018783  0x000023f9 call  0x00007a96 
+ 00018784  0x000023fa jam  0x00000015 , 0x000009bd 
+ 00018785  0x000023fb branch  0x00007d86 
+ 00018786  0x000023fe jam  0x00000000 , 0x00000378 
+ 00018787  0x000023ff jam  0x00000000 , 0x00000363 
+ 00018788  0x00002400 jam  0x00000000 , 0x00000362 
+ 00018789  0x00002401 jam  0x00000000 , 0x0000456b 
+ 00018790  0x00002402 jam  0x00000000 , 0x0000456a 
+ 00018791  0x00002403 rtn 
+ 00018792  0x00002406 set1  0x00000025 , 0x00000000 
+ 00018793  0x00002407 bpatch  0x0000000a , 0x00004021 
+ 00018794  0x00002408 fetch  0x00000001 , 0x00000005 
+ 00018795  0x00002409 increase  0x00000001 , 0x0000003f 
+ 00018796  0x0000240a store  0x00000001 , 0x00000005 
+ 00018797  0x0000240b fetch  0x00000001 , 0x00000362 
+ 00018798  0x0000240c rtnbit1  0x00000003 
+ 00018799  0x0000240d set1  0x00000003 
+ 00018800  0x0000240e store  0x00000001 , 0x00000362 
+ 00018801  0x0000240f fetch  0x00000002 , 0x00004561 
+ 00018802  0x00002410 store  0x00000002 , 0x00000390 
+ 00018803  0x00002411 setarg  0x00000000 
+ 00018804  0x00002412 store  0x00000004 , 0x00004596 
+ 00018805  0x00002413 rtn 
+ 00018806  0x00002419 set1  0x00000025 , 0x00000000 
+ 00018807  0x0000241a bpatch  0x0000000b , 0x00004021 
+ 00018808  0x0000241b hjam  0x00000036 , 0x0000090f 
+ 00018809  0x0000241c hjam  0x0000005f , 0x0000090b 
+ 00018810  0x0000241d enable  0x00000036 
+ 00018811  0x0000241e hjam  0x00000007 , 0x00008914 
+ 00018812  0x0000241f branch  0x00003d45 
+ 00018813  0x00002422 set1  0x00000025 , 0x00000000 
+ 00018814  0x00002423 bpatch  0x0000000c , 0x00004021 
+ 00018815  0x00002424 hjam  0x0000002e , 0x0000090f 
+ 00018816  0x00002425 hjam  0x000000ff , 0x0000090b 
+ 00018817  0x00002426 disable  0x00000036 
+ 00018818  0x00002427 hjam  0x00000003 , 0x00008914 
+ 00018819  0x00002428 arg  0x00000000 , 0x0000001b 
+ 00018820  0x00002429 rtn 
+ 00018821  0x0000242c disable  0x00000009 
+ 00018822  0x0000242d disable  0x00000007 
+ 00018823  0x0000242e fetch  0x00000003 , 0x0000038a 
+ 00018824  0x0000242f iforce  0x0000000f 
+ 00018825  0x00002430 fetch  0x00000001 , 0x00000016 
+ 00018826  0x00002431 reverse  0x0000003f , 0x00000002 
+ 00018827  0x00002432 set1  0x00000001 , 0x00000002 
+ 00018828  0x00002433 rshift  0x00000002 , 0x0000000e 
+ 00018829  0x00002434 rtn 
+ 00018830  0x00002438 call  0x00004996 
+ 00018831  0x00002439 call  0x000039b9 
+ 00018832  0x0000243a setarg  0x00000500 
+ 00018833  0x0000243b call  0x00003b35 
+ 00018834  0x0000243c branch  0x000039bf 
+ 00018835  0x0000243f branch  0x000039d0 , 0x0000002d 
+ 00018836  0x00002441 call  0x00004996 
+ 00018837  0x00002442 branch  0x000039c9 
+ 00018838  0x00002444 set1  0x00000025 , 0x00000000 
+ 00018839  0x00002445 bpatch  0x0000000d , 0x00004021 
+ 00018840  0x00002446 call  0x000039b1 
+ 00018841  0x00002447 fetch  0x00000001 , 0x000003b0 
+ 00018842  0x00002448 nbranch  0x000049aa , 0x00000034 
+ 00018843  0x00002449 fetch  0x00000001 , 0x00000016 
+ 00018844  0x0000244a sub  0x0000003f , 0x00000024 , 0x0000003e 
+ 00018845  0x0000244b branch  0x000049a4 , 0x00000002 
+ 00018846  0x0000244c force  0x00000000 , 0x00000002 
+ 00018847  0x0000244d rtneq  0x00000025 
+ 00018848  0x0000244e force  0x00000018 , 0x00000002 
+ 00018849  0x0000244f rtneq  0x00000026 
+ 00018850  0x00002450 force  0x0000004e , 0x00000002 
+ 00018851  0x00002451 rtn 
+ 00018852  0x00002454 sub  0x0000003f , 0x0000000a , 0x0000003e 
+ 00018853  0x00002455 branch  0x000049a7 , 0x00000002 
+ 00018854  0x00002456 increase  0x00000001 , 0x0000003f 
+ 00018855  0x00002459 lshift  0x0000003f , 0x0000003f 
+ 00018856  0x0000245a add  0x0000003f , 0x00000002 , 0x00000002 
+ 00018857  0x0000245b rtn 
+ 00018858  0x0000245e fetch  0x00000001 , 0x00000016 
+ 00018859  0x0000245f lshift  0x0000003f , 0x00000002 
+ 00018860  0x00002460 rtn 
+ 00018861  0x00002463 arg  0x000001f4 , 0x00000002 
+ 00018862  0x00002464 rtn  0x00000034 
+ 00018863  0x00002465 arg  0x000000fa , 0x00000002 
+ 00018864  0x00002466 rtneq  0x00000001 
+ 00018865  0x00002467 arg  0x00000096 , 0x00000002 
+ 00018866  0x00002468 rtneq  0x00000002 
+ 00018867  0x00002469 arg  0x00000064 , 0x00000002 
+ 00018868  0x0000246a rtneq  0x00000003 
+ 00018869  0x0000246b arg  0x0000004b , 0x00000002 
+ 00018870  0x0000246c rtneq  0x00000004 
+ 00018871  0x0000246d arg  0x00000032 , 0x00000002 
+ 00018872  0x0000246e rtneq  0x00000005 
+ 00018873  0x0000246f arg  0x00000028 , 0x00000002 
+ 00018874  0x00002470 rtneq  0x00000006 
+ 00018875  0x00002471 arg  0x00000014 , 0x00000002 
+ 00018876  0x00002472 rtn 
+ 00018877  0x00002477 setarg  0x008e89be 
+ 00018878  0x00002478 lshift8  0x0000003f , 0x0000003f 
+ 00018879  0x00002479 or_into  0x000000d6 , 0x0000003f 
+ 00018880  0x0000247a iforce  0x00000009 
+ 00018881  0x0000247b setarg  0x00555555 
+ 00018882  0x0000247c store  0x00000003 , 0x0000038a 
+ 00018883  0x0000247d rtn 
+ 00018884  0x00002480 set1  0x00000025 , 0x00000000 
+ 00018885  0x00002481 bpatch  0x0000000e , 0x00004021 
+ 00018886  0x00002482 enable  0x00000010 
+ 00018887  0x00002483 fetch  0x00000004 , 0x00000386 
+ 00018888  0x00002484 iforce  0x00000009 
+ 00018889  0x00002485 call  0x000049fb 
+ 00018890  0x00002486 setarg  0x00000200 
+ 00018891  0x00002487 branch  0x000049ce , 0x00000029 
+ 00018892  0x00002488 fetch  0x00000002 , 0x00000370 
+ 00018893  0x00002489 rshift  0x0000003f , 0x0000003f 
+ 00018894  0x0000248b arg  0x00000500 , 0x00000002 
+ 00018895  0x0000248c iadd  0x00000002 , 0x0000003f 
+ 00018896  0x0000248d call  0x00003abd 
+ 00018897  0x0000248e deposit  0x0000001a 
+ 00018898  0x0000248f store  0x00000006 , 0x000003b5 
+ 00018899  0x00002490 rtn 
+ 00018900  0x00002493 set1  0x00000025 , 0x00000000 
+ 00018901  0x00002494 bpatch  0x0000000f , 0x00004021 
+ 00018902  0x00002495 fetch  0x00000001 , 0x00000016 
+ 00018903  0x00002496 increase  0x00000001 , 0x0000003f 
+ 00018904  0x00002497 store  0x00000001 , 0x00000016 
+ 00018905  0x00002498 rtnne  0x00000028 
+ 00018906  0x00002499 jam  0x00000025 , 0x00000016 
+ 00018907  0x0000249a rtn 
+ 00018908  0x0000249d set1  0x00000025 , 0x00000000 
+ 00018909  0x0000249e bpatch  0x00000010 , 0x00004022 
+ 00018910  0x0000249f add  0x00000011 , 0x00000001 , 0x00000006 
+ 00018911  0x000024a0 ifetch  0x00000001 , 0x00000006 
+ 00018912  0x000024a1 rtnbit0  0x00000000 
+ 00018913  0x000024a2 add  0x00000011 , 0x0000001a , 0x00000005 
+ 00018914  0x000024a3 ifetch  0x00000002 , 0x00000005 
+ 00018915  0x000024a4 increase  0x00000001 , 0x0000003f 
+ 00018916  0x000024a5 istore  0x00000002 , 0x00000005 
+ 00018917  0x000024a6 add  0x00000011 , 0x00000019 , 0x00000006 
+ 00018918  0x000024a7 ifetch  0x00000001 , 0x00000006 
+ 00018919  0x000024a8 add  0x00000011 , 0x00000018 , 0x00000005 
+ 00018920  0x000024a9 ifetcht  0x00000001 , 0x00000005 
+ 00018921  0x000024aa iadd  0x00000002 , 0x0000003f 
+ 00018922  0x000024ab sub  0x0000003f , 0x00000024 , 0x0000003e 
+ 00018923  0x000024ac branch  0x000049ed , 0x00000002 
+ 00018924  0x000024ad increase  0xffffffdb , 0x0000003f 
+ 00018925  0x000024af istore  0x00000001 , 0x00000005 
+ 00018926  0x000024b0 rtn 
+ 00018927  0x000024b4 set1  0x00000025 , 0x00000000 
+ 00018928  0x000024b5 bpatch  0x00000011 , 0x00004022 
+ 00018929  0x000024b6 fetch  0x00000005 , 0x00000392 
+ 00018930  0x000024b7 force  0x00000000 , 0x00000002 
+ 00018931  0x000024b8 force  0x00000025 , 0x00000039 
+ 00018932  0x000024ba bbit0  0x00000000 , 0x000049f6 
+ 00018933  0x000024bb increase  0x00000001 , 0x00000002 
+ 00018934  0x000024bd rshift  0x0000003f , 0x0000003f 
+ 00018935  0x000024be loop  0x000049f4 
+ 00018936  0x000024bf add  0x00000002 , 0xffffffff , 0x0000003f 
+ 00018937  0x000024c0 store  0x00000001 , 0x00000384 
+ 00018938  0x000024c1 rtn 
+ 00018939  0x000024c4 set1  0x00000025 , 0x00000000 
+ 00018940  0x000024c5 bpatch  0x00000012 , 0x00004022 
+ 00018941  0x000024c6 fetch  0x00000001 , 0x0000037a 
+ 00018942  0x000024c7 iforce  0x00000007 
+ 00018943  0x000024c8 fetcht  0x00000005 , 0x00000392 
+ 00018944  0x000024c9 qisolate1  0x00000002 
+ 00018945  0x000024ca branch  0x00004a13 , 0x00000001 
+ 00018946  0x000024cc set1  0x00000025 , 0x00000000 
+ 00018947  0x000024cd bpatch  0x00000013 , 0x00004022 
+ 00018948  0x000024ce fetch  0x00000001 , 0x00000384 
+ 00018949  0x000024cf isub  0x00000007 , 0x0000003f 
+ 00018950  0x000024d0 branch  0x00004a09 , 0x00000002 
+ 00018951  0x000024d1 sub  0x0000003f , 0xffffffff , 0x00000007 
+ 00018952  0x000024d2 branch  0x00004a02 
+ 00018953  0x000024d4 copy  0x00000007 , 0x00000039 
+ 00018954  0x000024d5 force  0x00000000 , 0x00000007 
+ 00018955  0x000024d7 qisolate1  0x00000002 
+ 00018956  0x000024d8 branch  0x00004a0e , 0x00000001 
+ 00018957  0x000024d9 increase  0x00000001 , 0x00000039 
+ 00018958  0x000024db deposit  0x00000039 
+ 00018959  0x000024dc branch  0x00004a13 , 0x00000034 
+ 00018960  0x000024dd increase  0x00000001 , 0x00000007 
+ 00018961  0x000024de increase  0xffffffff , 0x00000039 
+ 00018962  0x000024df branch  0x00004a0b 
+ 00018963  0x000024e1 deposit  0x00000007 
+ 00018964  0x000024e2 store  0x00000001 , 0x00000016 
+ 00018965  0x000024e3 rtn 
+ 00018966  0x000024e7 branch  0x00004a19 , 0x00000029 
+ 00018967  0x000024e8 until  0x0000003e , 0x00000003 
+ 00018968  0x000024e9 rtn 
+ 00018969  0x000024ec arg  0x00000ea0 , 0x0000000b 
+ 00018970  0x000024ed until  0x00000023 , 0x00000026 
+ 00018971  0x000024ee rtn 
+ 00018972  0x000024f1 disable  0x00000010 
+ 00018973  0x000024f2 fetch  0x00000002 , 0x000043fc 
+ 00018974  0x000024f3 copy  0x0000003f , 0x0000000b 
+ 00018975  0x000024f4 branch  0x00004a26 
+ 00018976  0x000024f8 set1  0x00000025 , 0x00000000 
+ 00018977  0x000024f9 bpatch  0x00000014 , 0x00004022 
+ 00018978  0x000024fa enable  0x00000010 
+ 00018979  0x000024fb fetch  0x00000002 , 0x00000370 
+ 00018980  0x000024fc fetcht  0x00000004 , 0x00004596 
+ 00018981  0x000024fd iadd  0x00000002 , 0x0000000b 
+ 00018982  0x000024ff call  0x0000498e 
+ 00018983  0x00002501 set1  0x00000025 , 0x00000000 
+ 00018984  0x00002502 bpatch  0x00000015 , 0x00004022 
+ 00018985  0x00002503 call  0x00004985 
+ 00018986  0x00002504 disable  0x0000002d 
+ 00018987  0x00002505 enable  0x0000000d 
+ 00018988  0x00002506 enable  0x00000021 
+ 00018989  0x00002507 disable  0x00000020 
+ 00018990  0x00002508 copy  0x0000000b , 0x0000001b 
+ 00018991  0x00002509 correlate  0x0000003e , 0x00000003 
+ 00018992  0x0000250a branch  0x00004a33 , 0x0000002e 
+ 00018993  0x0000250b copy  0x0000001a , 0x00000002 
+ 00018994  0x0000250c storet  0x00000006 , 0x00000099 
+ 00018995  0x0000250e nbranch  0x000036c6 , 0x00000018 
+ 00018996  0x0000250f branch  0x00004a3a , 0x0000002e 
+ 00018997  0x00002510 arg  0x000001e0 , 0x00000029 
+ 00018998  0x00002511 copy  0x00000021 , 0x00000028 
+ 00018999  0x00002512 fetch  0x00000001 , 0x00000362 
+ 00019000  0x00002513 bbit0  0x00000003 , 0x00004a3a 
+ 00019001  0x00002514 call  0x00003bed , 0x0000002b 
+ 00019002  0x00002516 set1  0x00000025 , 0x00000000 
+ 00019003  0x00002517 bpatch  0x00000016 , 0x00004022 
+ 00019004  0x00002518 call  0x00003a50 
+ 00019005  0x00002519 enable  0x00000007 
+ 00019006  0x0000251a enable  0x00000009 
+ 00019007  0x0000251b parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00019008  0x0000251c rshift3  0x0000000c , 0x0000003f 
+ 00019009  0x0000251d store  0x00000001 , 0x00000302 
+ 00019010  0x0000251e parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00019011  0x0000251f rshift3  0x0000000c , 0x0000003f 
+ 00019012  0x00002520 istore  0x00000001 , 0x00000005 
+ 00019013  0x00002521 and  0x0000003f , 0x0000003f , 0x00000039 
+ 00019014  0x00002522 branch  0x00004a4b , 0x00000005 
+ 00019015  0x00002525 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00019016  0x00002526 rshift3  0x0000000c , 0x0000003f 
+ 00019017  0x00002527 istore  0x00000001 , 0x00000005 
+ 00019018  0x00002528 loop  0x00004a47 
+ 00019019  0x0000252b set1  0x00000025 , 0x00000000 
+ 00019020  0x0000252c bpatch  0x00000017 , 0x00004022 
+ 00019021  0x0000252d parse  0x00000003 , 0x00000000 , 0x00000018 
+ 00019022  0x0000252e enable  0x00000010 
+ 00019023  0x0000252f arg  0x00000664 , 0x0000001b 
+ 00019024  0x00002530 rshift32  0x0000003f , 0x0000003f 
+ 00019025  0x00002531 rshift16  0x0000003f , 0x0000003f 
+ 00019026  0x00002532 istore  0x00000003 , 0x00000005 
+ 00019027  0x00002533 branch  0x000036c6 , 0x00000006 
+ 00019028  0x00002534 enable  0x0000002d 
+ 00019029  0x00002535 fetch  0x00000001 , 0x00000017 
+ 00019030  0x00002536 add  0x0000003f , 0x00000000 , 0x00000011 
+ 00019031  0x00002537 call  0x00003a13 
+ 00019032  0x00002538 disable  0x0000000d 
+ 00019033  0x00002539 branch  0x000039b1 
+ 00019034  0x0000253c set1  0x00000025 , 0x00000000 
+ 00019035  0x0000253d bpatch  0x00000018 , 0x00004023 
+ 00019036  0x0000253e call  0x00004a65 
+ 00019037  0x0000253f fetcht  0x00000001 , 0x00000017 
+ 00019038  0x00002540 call  0x000039b9 
+ 00019039  0x00002541 call  0x000039bf 
+ 00019040  0x00002542 enable  0x00000010 
+ 00019041  0x00002543 arg  0x0000157c , 0x0000000b 
+ 00019042  0x00002544 branch  0x00004a27 
+ 00019043  0x00002547 call  0x00004a65 
+ 00019044  0x00002548 branch  0x000036c6 
+ 00019045  0x0000254b set1  0x00000025 , 0x00000000 
+ 00019046  0x0000254c bpatch  0x00000019 , 0x00004023 
+ 00019047  0x0000254d call  0x00004985 
+ 00019048  0x0000254e call  0x00004993 
+ 00019049  0x0000254f call  0x00004a6d 
+ 00019050  0x00002550 fetch  0x00000001 , 0x00004132 
+ 00019051  0x00002551 beq  0x0000000a , 0x00005d8e 
+ 00019052  0x00002552 rtn 
+ 00019053  0x00002554 set1  0x00000000 , 0x00000015 
+ 00019054  0x00002555 enable  0x0000001d 
+ 00019055  0x00002556 enable  0x00000020 
+ 00019056  0x00002557 disable  0x00000021 
+ 00019057  0x00002558 call  0x00004a16 
+ 00019058  0x00002559 rshift16  0x00000009 , 0x0000003f 
+ 00019059  0x0000255a rshift8  0x0000003f , 0x0000003f 
+ 00019060  0x0000255b rshift4  0x0000003f , 0x0000003f 
+ 00019061  0x0000255c inject  0x00000003 , 0x00000028 
+ 00019062  0x0000255d enable  0x00000007 
+ 00019063  0x0000255e enable  0x00000009 
+ 00019064  0x0000255f set1  0x00000025 , 0x00000000 
+ 00019065  0x00002560 bpatch  0x0000001a , 0x00004023 
+ 00019066  0x00002561 fetch  0x00000001 , 0x00004465 
+ 00019067  0x00002562 inject  0x00000003 , 0x00000008 
+ 00019068  0x00002563 ifetch  0x00000001 , 0x00000006 
+ 00019069  0x00002564 and  0x0000003f , 0x0000003f , 0x00000039 
+ 00019070  0x00002565 inject  0x00000003 , 0x00000008 
+ 00019071  0x00002566 branch  0x00004a83 , 0x00000005 
+ 00019072  0x00002568 ifetch  0x00000001 , 0x00000006 
+ 00019073  0x00002569 inject  0x00000003 , 0x00000008 
+ 00019074  0x0000256a loop  0x00004a80 
+ 00019075  0x0000256d enable  0x00000008 
+ 00019076  0x0000256e inject  0x00000003 , 0x00000018 
+ 00019077  0x0000256f disable  0x00000008 
+ 00019078  0x00002570 until  0x0000003e , 0x00000027 
+ 00019079  0x00002571 nop  0x00000064 
+ 00019080  0x00002572 disable  0x0000001d 
+ 00019081  0x00002573 rtn 
+ 00019082  0x00002576 set1  0x00000025 , 0x00000000 
+ 00019083  0x00002577 bpatch  0x0000001b , 0x00004023 
+ 00019084  0x00002578 fetch  0x00000001 , 0x00004520 
+ 00019085  0x00002579 beq  0x00000001 , 0x00004a9b 
+ 00019086  0x0000257a fetch  0x00000001 , 0x00004521 
+ 00019087  0x0000257b lshift4  0x0000003f , 0x0000003f 
+ 00019088  0x0000257c lshift2  0x0000003f , 0x0000003f 
+ 00019089  0x0000257d store  0x00000001 , 0x00004465 
+ 00019090  0x0000257e fetcht  0x00000001 , 0x00004400 
+ 00019091  0x0000257f add  0x00000002 , 0x00000006 , 0x0000003f 
+ 00019092  0x00002580 store  0x00000001 , 0x00004466 
+ 00019093  0x00002581 fetch  0x00000006 , 0x0000453e 
+ 00019094  0x00002582 store  0x00000006 , 0x00004467 
+ 00019095  0x00002583 copy  0x00000002 , 0x00000039 
+ 00019096  0x00002584 arg  0x00004401 , 0x00000006 
+ 00019097  0x00002585 call  0x00007ec0 
+ 00019098  0x00002586 branch  0x00004aab 
+ 00019099  0x00002588 fetcht  0x00000002 , 0x000044f8 
+ 00019100  0x00002589 call  0x00004f6a 
+ 00019101  0x0000258a copy  0x00000011 , 0x00000005 
+ 00019102  0x0000258b setarg  0x00000001 
+ 00019103  0x0000258c istore  0x00000001 , 0x00000005 
+ 00019104  0x0000258d fetch  0x00000001 , 0x00004522 
+ 00019105  0x0000258e lshift4  0x0000003f , 0x0000003f 
+ 00019106  0x0000258f lshift2  0x0000003f , 0x0000003f 
+ 00019107  0x00002590 increase  0x00000001 , 0x0000003f 
+ 00019108  0x00002591 store  0x00000001 , 0x00004465 
+ 00019109  0x00002592 setarg  0x0000000c 
+ 00019110  0x00002593 store  0x00000001 , 0x00004466 
+ 00019111  0x00002594 fetch  0x00000006 , 0x0000453e 
+ 00019112  0x00002595 store  0x00000006 , 0x00004467 
+ 00019113  0x00002596 fetch  0x00000006 , 0x00004273 
+ 00019114  0x00002597 istore  0x00000006 , 0x00000005 
+ 00019115  0x00002599 set1  0x00000025 , 0x00000000 
+ 00019116  0x0000259a bpatch  0x0000001c , 0x00004023 
+ 00019117  0x0000259b fetch  0x00000001 , 0x00000000 
+ 00019118  0x0000259c increase  0x00000001 , 0x0000003f 
+ 00019119  0x0000259d store  0x00000001 , 0x00000000 
+ 00019120  0x0000259e arg  0x00000708 , 0x0000001b 
+ 00019121  0x0000259f disable  0x0000002d 
+ 00019122  0x000025a0 branch  0x00004a5a 
+ 00019123  0x000025a3 set1  0x00000025 , 0x00000000 
+ 00019124  0x000025a4 bpatch  0x0000001d , 0x00004023 
+ 00019125  0x000025a5 fetch  0x00000001 , 0x0000453b 
+ 00019126  0x000025a6 rtnne  0x00000001 , 0x0000003f 
+ 00019127  0x000025a7 fetch  0x00000001 , 0x00000000 
+ 00019128  0x000025a8 increase  0x00000001 , 0x0000003f 
+ 00019129  0x000025a9 store  0x00000001 , 0x00000000 
+ 00019130  0x000025aa arg  0x00000c03 , 0x00000002 
+ 00019131  0x000025ab fetch  0x00000001 , 0x0000453c 
+ 00019132  0x000025ac nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00019133  0x000025ad copy  0x00000011 , 0x0000003f 
+ 00019134  0x000025ae nsetflag  0x00000034 , 0x00000007 , 0x00000002 
+ 00019135  0x000025af storet  0x00000002 , 0x00004465 
+ 00019136  0x000025b0 fetch  0x00000006 , 0x0000453e 
+ 00019137  0x000025b1 istore  0x00000006 , 0x00000005 
+ 00019138  0x000025b2 fetch  0x00000006 , 0x00000372 
+ 00019139  0x000025b3 istore  0x00000006 , 0x00000005 
+ 00019140  0x000025b4 branch  0x00004a5a 
+ 00019141  0x000025b8 set1  0x00000025 , 0x00000000 
+ 00019142  0x000025b9 bpatch  0x0000001e , 0x00004023 
+ 00019143  0x000025ba arg  0x00000004 , 0x00000002 
+ 00019144  0x000025bb fetch  0x00000001 , 0x00004521 
+ 00019145  0x000025bc nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00019146  0x000025bd storet  0x00000001 , 0x00004465 
+ 00019147  0x000025be fetcht  0x00000001 , 0x00004420 
+ 00019148  0x000025bf add  0x00000002 , 0x00000006 , 0x0000003f 
+ 00019149  0x000025c0 store  0x00000001 , 0x00004466 
+ 00019150  0x000025c1 fetch  0x00000006 , 0x0000453e 
+ 00019151  0x000025c2 store  0x00000006 , 0x00004467 
+ 00019152  0x000025c3 arg  0x00004421 , 0x00000006 
+ 00019153  0x000025c4 copy  0x00000002 , 0x00000039 
+ 00019154  0x000025c5 call  0x00007ec0 
+ 00019155  0x000025c6 branch  0x00004a63 
+ 00019156  0x000025ca set1  0x00000025 , 0x00000000 
+ 00019157  0x000025cb bpatch  0x0000001f , 0x00004023 
+ 00019158  0x000025cc force  0xffffffff , 0x0000003f 
+ 00019159  0x000025cd setsect  0x00000002 , 0x00000001 
+ 00019160  0x000025ce store  0x00000005 , 0x00000392 
+ 00019161  0x000025cf call  0x000049ef 
+ 00019162  0x000025d0 force  0x00000004 , 0x00000039 
+ 00019163  0x000025d1 arg  0x00000386 , 0x00000005 
+ 00019164  0x000025d2 call  0x00005918 
+ 00019165  0x000025d3 fetch  0x00000002 , 0x00004539 
+ 00019166  0x000025d4 store  0x00000002 , 0x00000390 
+ 00019167  0x000025d6 random  0x0000003f 
+ 00019168  0x000025d7 and_into  0x0000000f , 0x0000003f 
+ 00019169  0x000025d8 sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00019170  0x000025d9 branch  0x00004adf , 0x00000002 
+ 00019171  0x000025da store  0x00000001 , 0x0000037b 
+ 00019172  0x000025db store  0x00000001 , 0x0000060a 
+ 00019173  0x000025dc set1  0x00000025 , 0x00000000 
+ 00019174  0x000025dd bpatch  0x00000020 , 0x00004024 
+ 00019175  0x000025de fetcht  0x00000002 , 0x000043f7 
+ 00019176  0x000025df storet  0x00000002 , 0x00000364 
+ 00019177  0x000025e0 copy  0x00000002 , 0x00000013 
+ 00019178  0x000025e1 add  0x00000022 , 0x00000007 , 0x0000003f 
+ 00019179  0x000025e2 idiv  0x00000013 
+ 00019180  0x000025e3 call  0x00007f53 
+ 00019181  0x000025e4 remainder  0x00000011 
+ 00019182  0x000025e5 isub  0x00000011 , 0x0000003f 
+ 00019183  0x000025e6 iadd  0x00000013 , 0x0000003f 
+ 00019184  0x000025e7 fetcht  0x00000002 , 0x000043f5 
+ 00019185  0x000025e8 iadd  0x00000002 , 0x0000003f 
+ 00019186  0x000025e9 store  0x00000004 , 0x00000366 
+ 00019187  0x000025ea isub  0x00000022 , 0x00000011 
+ 00019188  0x000025eb increase  0xfffffffa , 0x00000011 
+ 00019189  0x000025ec arg  0x00002205 , 0x00000012 
+ 00019190  0x000025ed fetch  0x00000001 , 0x00004532 
+ 00019191  0x000025ee nsetflag  0x00000034 , 0x00000006 , 0x00000012 
+ 00019192  0x000025ef fetch  0x00000001 , 0x0000452b 
+ 00019193  0x000025f0 nsetflag  0x00000034 , 0x00000007 , 0x00000012 
+ 00019194  0x000025f1 copy  0x00000012 , 0x0000003f 
+ 00019195  0x000025f2 store  0x00000002 , 0x00004465 
+ 00019196  0x000025f3 fetch  0x00000006 , 0x0000453e 
+ 00019197  0x000025f4 istore  0x00000006 , 0x00000005 
+ 00019198  0x000025f5 fetch  0x00000006 , 0x00000372 
+ 00019199  0x000025f6 istore  0x00000006 , 0x00000005 
+ 00019200  0x000025f7 fetch  0x00000004 , 0x00000386 
+ 00019201  0x000025f8 istore  0x00000004 , 0x00000005 
+ 00019202  0x000025f9 random  0x0000003f 
+ 00019203  0x000025fa istore  0x00000002 , 0x00000005 
+ 00019204  0x000025fb random  0x0000003f 
+ 00019205  0x000025fc istore  0x00000001 , 0x00000005 
+ 00019206  0x000025fd force  0x00000002 , 0x0000003f 
+ 00019207  0x000025fe istore  0x00000001 , 0x00000005 
+ 00019208  0x000025ff rshift2  0x00000011 , 0x0000003f 
+ 00019209  0x00002600 istore  0x00000002 , 0x00000005 
+ 00019210  0x00002601 rshift2  0x00000013 , 0x0000003f 
+ 00019211  0x00002602 istore  0x00000002 , 0x00000005 
+ 00019212  0x00002603 set1  0x00000025 , 0x00000000 
+ 00019213  0x00002604 bpatch  0x00000021 , 0x00004024 
+ 00019214  0x00002605 fetch  0x00000002 , 0x00004537 
+ 00019215  0x00002606 istore  0x00000002 , 0x00000005 
+ 00019216  0x00002607 fetch  0x00000002 , 0x00004539 
+ 00019217  0x00002608 istore  0x00000002 , 0x00000005 
+ 00019218  0x00002609 fetch  0x00000005 , 0x00000392 
+ 00019219  0x0000260a istore  0x00000005 , 0x00000005 
+ 00019220  0x0000260b fetch  0x00000001 , 0x0000037b 
+ 00019221  0x0000260c arg  0x000000a0 , 0x00000002 
+ 00019222  0x0000260d ior  0x00000002 , 0x0000003f 
+ 00019223  0x0000260e istore  0x00000001 , 0x00000005 
+ 00019224  0x0000260f call  0x00004a63 
+ 00019225  0x00002610 setarg  0x00004465 
+ 00019226  0x00002611 add  0x0000003f , 0x00000012 , 0x00000006 
+ 00019227  0x00002612 ifetch  0x00000003 , 0x00000006 
+ 00019228  0x00002613 store  0x00000003 , 0x0000038a 
+ 00019229  0x00002614 rtn 
+ 00019230  0x00002617 set1  0x00000025 , 0x00000000 
+ 00019231  0x00002618 bpatch  0x00000022 , 0x00004024 
+ 00019232  0x00002619 disable  0x00000029 
+ 00019233  0x0000261a branch  0x000049bd 
+ 00019234  0x0000261f fetch  0x00000001 , 0x00000362 
+ 00019235  0x00002620 rtnbit0  0x00000005 
+ 00019236  0x00002621 fetch  0x00000002 , 0x0000037c 
+ 00019237  0x00002622 fetcht  0x00000002 , 0x00000382 
+ 00019238  0x00002623 isub  0x00000002 , 0x0000003f 
+ 00019239  0x00002624 nrtn  0x00000002 
+ 00019240  0x00002625 set1  0x00000025 , 0x00000000 
+ 00019241  0x00002626 bpatch  0x00000023 , 0x00004024 
+ 00019242  0x00002627 fetch  0x00000001 , 0x00004132 
+ 00019243  0x00002628 bne  0x00000009 , 0x00004b2d 
+ 00019244  0x00002629 jam  0x00000001 , 0x00004131 
+ 00019245  0x0000262b fetch  0x00000001 , 0x00000362 
+ 00019246  0x0000262c set0  0x00000005 , 0x0000003f 
+ 00019247  0x0000262d set0  0x00000003 , 0x0000003f 
+ 00019248  0x0000262e store  0x00000001 , 0x00000362 
+ 00019249  0x0000262f fetch  0x00000004 , 0x00000366 
+ 00019250  0x00002630 fetcht  0x00000002 , 0x00000364 
+ 00019251  0x00002631 isub  0x00000002 , 0x00000011 
+ 00019252  0x00002632 set1  0x00000025 , 0x00000000 
+ 00019253  0x00002633 bpatch  0x00000024 , 0x00004024 
+ 00019254  0x00002634 fetch  0x00000001 , 0x0000445b 
+ 00019255  0x00002635 store  0x00000001 , 0x0000038d 
+ 00019256  0x00002636 ifetcht  0x00000002 , 0x00000006 
+ 00019257  0x00002637 ifetch  0x00000002 , 0x00000006 
+ 00019258  0x00002638 lshift2  0x0000003f , 0x0000003f 
+ 00019259  0x00002639 store  0x00000002 , 0x00000364 
+ 00019260  0x0000263a lshift2  0x00000002 , 0x00000002 
+ 00019261  0x0000263b iadd  0x00000002 , 0x0000003f 
+ 00019262  0x0000263c ifetcht  0x00000004 , 0x00000006 
+ 00019263  0x0000263d storet  0x00000004 , 0x0000038e 
+ 00019264  0x0000263e iadd  0x00000011 , 0x0000003f 
+ 00019265  0x0000263f store  0x00000004 , 0x00000366 
+ 00019266  0x00002640 branch  0x00005199 
+ 00019267  0x00002643 set1  0x00000025 , 0x00000000 
+ 00019268  0x00002644 bpatch  0x00000025 , 0x00004024 
+ 00019269  0x00002645 fetch  0x00000001 , 0x00000362 
+ 00019270  0x00002646 rtnbit0  0x00000006 
+ 00019271  0x00002647 fetch  0x00000002 , 0x0000037c 
+ 00019272  0x00002648 fetcht  0x00000002 , 0x00000382 
+ 00019273  0x00002649 isub  0x00000002 , 0x0000003f 
+ 00019274  0x0000264a nrtn  0x00000002 
+ 00019275  0x0000264b fetch  0x00000001 , 0x00000362 
+ 00019276  0x0000264c set0  0x00000006 , 0x0000003f 
+ 00019277  0x0000264d store  0x00000001 , 0x00000362 
+ 00019278  0x0000264e fetch  0x00000005 , 0x00004456 
+ 00019279  0x0000264f store  0x00000005 , 0x00000392 
+ 00019280  0x00002650 branch  0x000049ef 
+ 00019281  0x00002654 set1  0x00000025 , 0x00000000 
+ 00019282  0x00002655 bpatch  0x00000026 , 0x00004024 
+ 00019283  0x00002656 call  0x00005179 
+ 00019284  0x00002657 call  0x00004b66 
+ 00019285  0x00002658 fetch  0x00000001 , 0x00000302 
+ 00019286  0x00002659 rshift  0x0000003f , 0x0000003f 
+ 00019287  0x0000265a ixor  0x00000002 , 0x0000003f 
+ 00019288  0x0000265b isolate1  0x00000002 , 0x0000003f 
+ 00019289  0x0000265c setflag  0x00000001 , 0x0000000f , 0x00000000 
+ 00019290  0x0000265d fetch  0x00000001 , 0x00000303 
+ 00019291  0x0000265e branch  0x00004b61 , 0x00000034 
+ 00019292  0x0000265f fetch  0x00000001 , 0x00000362 
+ 00019293  0x00002660 bbit0  0x00000004 , 0x00004b61 
+ 00019294  0x00002661 call  0x000071b6 
+ 00019295  0x00002662 call  0x00007122 
+ 00019296  0x00002663 nrtn  0x00000034 
+ 00019297  0x00002665 rtnmark1  0x0000000f 
+ 00019298  0x00002666 fetcht  0x00000001 , 0x00000379 
+ 00019299  0x00002667 setflip  0x00000002 , 0x00000002 
+ 00019300  0x00002668 storet  0x00000001 , 0x00000379 
+ 00019301  0x00002669 branch  0x00004fa5 
+ 00019302  0x0000266c set1  0x00000025 , 0x00000000 
+ 00019303  0x0000266d bpatch  0x00000027 , 0x00004024 
+ 00019304  0x0000266e fetcht  0x00000001 , 0x00000379 
+ 00019305  0x0000266f isolate0  0x00000005 , 0x00000002 
+ 00019306  0x00002670 rtn  0x00000001 
+ 00019307  0x00002671 fetch  0x00000001 , 0x00000302 
+ 00019308  0x00002672 lshift  0x0000003f , 0x0000003f 
+ 00019309  0x00002673 ixor  0x00000002 , 0x0000003f 
+ 00019310  0x00002674 rtnbit0  0x00000003 
+ 00019311  0x00002675 set0  0x00000005 , 0x00000002 
+ 00019312  0x00002676 setflip  0x00000003 , 0x00000002 
+ 00019313  0x00002677 storet  0x00000001 , 0x00000379 
+ 00019314  0x00002678 compare  0x00000003 , 0x00000002 , 0x00000003 
+ 00019315  0x00002679 nrtn  0x00000001 
+ 00019316  0x0000267a fetch  0x00000001 , 0x00004467 
+ 00019317  0x0000267b beq  0x00000005 , 0x00004b79 
+ 00019318  0x0000267c fetch  0x00000001 , 0x0000456b 
+ 00019319  0x0000267d beq  0x00000002 , 0x00004b7d 
+ 00019320  0x0000267e rtn 
+ 00019321  0x00002682 fetch  0x00000001 , 0x00000362 
+ 00019322  0x00002683 set1  0x00000004 , 0x0000003f 
+ 00019323  0x00002684 store  0x00000001 , 0x00000362 
+ 00019324  0x00002685 rtn 
+ 00019325  0x00002688 set1  0x00000025 , 0x00000000 
+ 00019326  0x00002689 bpatch  0x00000028 , 0x00004025 
+ 00019327  0x0000268a jam  0x00000000 , 0x0000456b 
+ 00019328  0x0000268b arg  0x00000000 , 0x0000003f 
+ 00019329  0x0000268c store  0x00000004 , 0x00004496 
+ 00019330  0x0000268d store  0x00000005 , 0x0000448c 
+ 00019331  0x0000268e set1  0x00000027 , 0x0000003f 
+ 00019332  0x0000268f store  0x00000005 , 0x00004491 
+ 00019333  0x00002690 fetch  0x00000001 , 0x00000362 
+ 00019334  0x00002691 set0  0x00000004 , 0x0000003f 
+ 00019335  0x00002692 store  0x00000001 , 0x00000362 
+ 00019336  0x00002693 rtn 
+ 00019337  0x00002698 set1  0x00000025 , 0x00000000 
+ 00019338  0x00002699 bpatch  0x00000029 , 0x00004025 
+ 00019339  0x0000269a call  0x000049d4 
+ 00019340  0x0000269b call  0x00004a1c 
+ 00019341  0x0000269c fetch  0x00000001 , 0x00000001 
+ 00019342  0x0000269d increase  0x00000001 , 0x0000003f 
+ 00019343  0x0000269e store  0x00000001 , 0x00000001 
+ 00019344  0x0000269f rtn 
+ 00019345  0x000026a2 set1  0x00000025 , 0x00000000 
+ 00019346  0x000026a3 bpatch  0x0000002a , 0x00004025 
+ 00019347  0x000026a4 fetch  0x00000001 , 0x000043f9 
+ 00019348  0x000026a5 rtnne  0x00000001 
+ 00019349  0x000026a6 arg  0x00000003 , 0x00000007 
+ 00019350  0x000026a7 call  0x00007ee2 
+ 00019351  0x000026a8 nrtn  0x00000034 
+ 00019352  0x000026a9 fetch  0x00000002 , 0x000043fa 
+ 00019353  0x000026aa fetcht  0x00000002 , 0x000043fc 
+ 00019354  0x000026ab isub  0x00000002 , 0x0000003f 
+ 00019355  0x000026ac arg  0x00000003 , 0x00000007 
+ 00019356  0x000026ad call  0x00007ed4 
+ 00019357  0x000026ae disable  0x00000029 
+ 00019358  0x000026af call  0x00004b1e 
+ 00019359  0x000026b0 call  0x00004b89 
+ 00019360  0x000026b1 nrtn  0x0000002d 
+ 00019361  0x000026b2 set1  0x00000025 , 0x00000000 
+ 00019362  0x000026b3 bpatch  0x0000002b , 0x00004025 
+ 00019363  0x000026b4 fetch  0x00000006 , 0x00000304 
+ 00019364  0x000026b5 store  0x00000006 , 0x00000372 
+ 00019365  0x000026b8 fetch  0x00000001 , 0x00000002 
+ 00019366  0x000026b9 increase  0x00000001 , 0x0000003f 
+ 00019367  0x000026ba store  0x00000001 , 0x00000002 
+ 00019368  0x000026bb call  0x00004bb4 
+ 00019369  0x000026bc rtn  0x00000029 
+ 00019370  0x000026bd call  0x00004ab3 
+ 00019371  0x000026be nrtn  0x0000002d 
+ 00019372  0x000026bf set1  0x00000025 , 0x00000000 
+ 00019373  0x000026c0 bpatch  0x0000002c , 0x00004025 
+ 00019374  0x000026c1 fetch  0x00000001 , 0x00000004 
+ 00019375  0x000026c2 increase  0x00000001 , 0x0000003f 
+ 00019376  0x000026c3 store  0x00000001 , 0x00000004 
+ 00019377  0x000026c4 fetch  0x00000009 , 0x0000030a 
+ 00019378  0x000026c5 store  0x00000009 , 0x00000100 
+ 00019379  0x000026c6 rtn 
+ 00019380  0x000026c9 set1  0x00000025 , 0x00000000 
+ 00019381  0x000026ca bpatch  0x0000002d , 0x00004025 
+ 00019382  0x000026cb fetch  0x00000001 , 0x000003bf 
+ 00019383  0x000026cc rtnne  0x0000001b , 0x0000003f 
+ 00019384  0x000026cd fetch  0x00000006 , 0x00000372 
+ 00019385  0x000026ce fetcht  0x00000006 , 0x0000452c 
+ 00019386  0x000026cf isub  0x00000002 , 0x0000003e 
+ 00019387  0x000026d0 nrtn  0x00000005 
+ 00019388  0x000026d1 call  0x0000327a 
+ 00019389  0x000026d2 nrtn  0x00000005 
+ 00019390  0x000026d3 call  0x00004ad4 
+ 00019391  0x000026d4 call  0x000048f5 
+ 00019392  0x000026d5 set1  0x00000025 , 0x00000000 
+ 00019393  0x000026d6 bpatch  0x0000002e , 0x00004025 
+ 00019394  0x000026d7 jam  0x00000000 , 0x00004271 
+ 00019395  0x000026d8 jam  0x00000000 , 0x00000399 
+ 00019396  0x000026d9 jam  0x00000000 , 0x000043f9 
+ 00019397  0x000026da jam  0x00000000 , 0x000003bf 
+ 00019398  0x000026db jam  0x0000002c , 0x000009bd 
+ 00019399  0x000026dc call  0x00004bd6 
+ 00019400  0x000026dd branch  0x00003260 
+ 00019401  0x000026e0 arg  0x00000001 , 0x00000011 
+ 00019402  0x000026e1 fetch  0x00000001 , 0x00000302 
+ 00019403  0x000026e2 rtnbit1  0x00000006 
+ 00019404  0x000026e3 arg  0x00000000 , 0x00000011 
+ 00019405  0x000026e4 rtn 
+ 00019406  0x000026e7 arg  0x00004544 , 0x00000006 
+ 00019407  0x000026e8 branch  0x00007fa8 
+ 00019408  0x000026eb arg  0x00004544 , 0x00000011 
+ 00019409  0x000026ec branch  0x00007fa2 
+ 00019410  0x000026ef arg  0x00004544 , 0x00000011 
+ 00019411  0x000026f0 branch  0x00007fa4 
+ 00019412  0x000026f3 arg  0x00004544 , 0x00000011 
+ 00019413  0x000026f4 branch  0x00007fa6 
+ 00019414  0x000026f7 arg  0x00004544 , 0x00000011 
+ 00019415  0x000026f8 branch  0x00007f88 
+ 00019416  0x000026fb set1  0x00000025 , 0x00000000 
+ 00019417  0x000026fc bpatch  0x0000002f , 0x00004025 
+ 00019418  0x000026fd fetch  0x00000001 , 0x00000379 
+ 00019419  0x000026fe rtnbit1  0x00000005 
+ 00019420  0x000026ff fetch  0x00000001 , 0x00004132 
+ 00019421  0x00002700 beq  0x00000009 , 0x00004be2 
+ 00019422  0x00002702 arg  0x00004544 , 0x00000011 
+ 00019423  0x00002703 call  0x00007f95 
+ 00019424  0x00002704 nbranch  0x00004bf1 , 0x00000034 
+ 00019425  0x00002705 branch  0x00004f87 
+ 00019426  0x00002708 fetch  0x00000001 , 0x000048c8 
+ 00019427  0x00002709 nbranch  0x00004be9 , 0x00000034 
+ 00019428  0x0000270a fetch  0x00000001 , 0x00000362 
+ 00019429  0x0000270b bbit0  0x00000004 , 0x00004bed 
+ 00019430  0x0000270c fetch  0x00000001 , 0x00000303 
+ 00019431  0x0000270d branch  0x00004bed , 0x00000034 
+ 00019432  0x0000270e branch  0x00004f87 
+ 00019433  0x00002710 fetch  0x00000001 , 0x000048c8 
+ 00019434  0x00002711 increase  0xffffffff , 0x0000003f 
+ 00019435  0x00002712 store  0x00000001 , 0x000048c8 
+ 00019436  0x00002713 branch  0x00004f87 
+ 00019437  0x00002715 fetch  0x00000001 , 0x0000456a 
+ 00019438  0x00002716 bne  0x00000002 , 0x00004bf0 
+ 00019439  0x00002717 jam  0x00000003 , 0x000048c8 
+ 00019440  0x00002719 branch  0x00004bde 
+ 00019441  0x0000271c copy  0x0000003f , 0x00000002 
+ 00019442  0x0000271d set1  0x00000025 , 0x00000000 
+ 00019443  0x0000271e bpatch  0x00000030 , 0x00004026 
+ 00019444  0x0000271f copy  0x00000002 , 0x0000003f 
+ 00019445  0x00002720 bbit0  0x00000005 , 0x00004c0d 
+ 00019446  0x00002721 force  0x00000003 , 0x00000001 
+ 00019447  0x00002722 set0  0x00000005 , 0x0000003f 
+ 00019448  0x00002723 store  0x00000001 , 0x00004467 
+ 00019449  0x00002724 set1  0x00000025 , 0x00000000 
+ 00019450  0x00002725 bpatch  0x00000031 , 0x00004026 
+ 00019451  0x00002727 fetch  0x00000001 , 0x00004467 
+ 00019452  0x00002728 beq  0x00000000 , 0x00004c54 
+ 00019453  0x00002729 beq  0x00000001 , 0x00004c56 
+ 00019454  0x0000272a beq  0x00000002 , 0x00004c58 
+ 00019455  0x0000272b beq  0x00000003 , 0x00004c5a 
+ 00019456  0x0000272c beq  0x00000004 , 0x00004c6b 
+ 00019457  0x0000272d beq  0x00000005 , 0x00004c84 
+ 00019458  0x0000272e beq  0x00000006 , 0x00004c86 
+ 00019459  0x0000272f beq  0x00000007 , 0x00004c9c 
+ 00019460  0x00002730 beq  0x00000008 , 0x00004ca0 
+ 00019461  0x00002731 beq  0x00000009 , 0x00004ca0 
+ 00019462  0x00002732 beq  0x0000000a , 0x00004ca4 
+ 00019463  0x00002733 beq  0x0000000b , 0x00004ca4 
+ 00019464  0x00002734 beq  0x0000000c , 0x00004ca6 
+ 00019465  0x00002735 beq  0x0000000d , 0x00004caa 
+ 00019466  0x00002736 beq  0x0000000f , 0x00004cae 
+ 00019467  0x00002737 beq  0x00000013 , 0x00004ca4 
+ 00019468  0x00002738 branch  0x00003b31 
+ 00019469  0x0000273b jam  0x00000000 , 0x0000446a 
+ 00019470  0x0000273c force  0x00000002 , 0x00000001 
+ 00019471  0x0000273d bbit0  0x00000006 , 0x00004c26 
+ 00019472  0x0000273e beq  0x00000052 , 0x00004c26 
+ 00019473  0x0000273f beq  0x000000d2 , 0x00004c26 
+ 00019474  0x00002740 jam  0x00000006 , 0x00004469 
+ 00019475  0x00002741 set0  0x00000006 , 0x0000003f 
+ 00019476  0x00002742 store  0x00000001 , 0x0000446b 
+ 00019477  0x00002743 set1  0x00000025 , 0x00000000 
+ 00019478  0x00002744 bpatch  0x00000032 , 0x00004026 
+ 00019479  0x00002745 fetch  0x00000001 , 0x0000446b 
+ 00019480  0x00002747 beq  0x00000001 , 0x00004cbb 
+ 00019481  0x00002748 beq  0x00000002 , 0x00004cc3 
+ 00019482  0x00002749 beq  0x00000003 , 0x00004cda 
+ 00019483  0x0000274a beq  0x00000004 , 0x00004ce8 
+ 00019484  0x0000274b beq  0x00000005 , 0x00004ced 
+ 00019485  0x0000274c beq  0x00000006 , 0x00004cf2 
+ 00019486  0x0000274d beq  0x00000007 , 0x00004d10 
+ 00019487  0x0000274e beq  0x00000008 , 0x00004d27 
+ 00019488  0x0000274f beq  0x00000009 , 0x00004d2d 
+ 00019489  0x00002750 beq  0x0000000a , 0x00004d32 
+ 00019490  0x00002751 beq  0x0000000b , 0x00004d35 
+ 00019491  0x00002752 beq  0x0000000c , 0x00004d39 
+ 00019492  0x00002753 beq  0x0000000d , 0x00004d64 
+ 00019493  0x00002754 branch  0x00003b31 
+ 00019494  0x00002757 jam  0x00000004 , 0x00004469 
+ 00019495  0x00002758 store  0x00000001 , 0x0000446b 
+ 00019496  0x00002759 set1  0x00000025 , 0x00000000 
+ 00019497  0x0000275a bpatch  0x00000033 , 0x00004026 
+ 00019498  0x0000275b fetch  0x00000001 , 0x0000446b 
+ 00019499  0x0000275c beq  0x00000001 , 0x00004d6f 
+ 00019500  0x0000275d beq  0x00000002 , 0x00004d75 
+ 00019501  0x0000275e beq  0x00000003 , 0x00004d75 
+ 00019502  0x0000275f beq  0x00000004 , 0x00004d78 
+ 00019503  0x00002760 beq  0x00000005 , 0x00004d7d 
+ 00019504  0x00002761 beq  0x00000006 , 0x00004d93 
+ 00019505  0x00002762 beq  0x00000007 , 0x00004da7 
+ 00019506  0x00002763 beq  0x00000008 , 0x00004dec 
+ 00019507  0x00002764 beq  0x00000009 , 0x00004df4 
+ 00019508  0x00002765 beq  0x0000000a , 0x00004e58 
+ 00019509  0x00002766 beq  0x0000000b , 0x00004e60 
+ 00019510  0x00002767 beq  0x0000000c , 0x00004e77 
+ 00019511  0x00002768 beq  0x0000000d , 0x00004e7c 
+ 00019512  0x00002769 beq  0x0000000e , 0x00004e8b 
+ 00019513  0x0000276a beq  0x0000000f , 0x00004e92 
+ 00019514  0x0000276b beq  0x00000010 , 0x00004eb8 
+ 00019515  0x0000276c beq  0x00000011 , 0x00004ec0 
+ 00019516  0x0000276d beq  0x00000012 , 0x00004f1e 
+ 00019517  0x0000276e beq  0x00000013 , 0x00004f25 
+ 00019518  0x0000276f beq  0x00000016 , 0x00004f27 
+ 00019519  0x00002770 beq  0x00000017 , 0x00004f46 
+ 00019520  0x00002771 beq  0x00000018 , 0x00004f66 
+ 00019521  0x00002772 beq  0x00000019 , 0x00004f68 
+ 00019522  0x00002773 beq  0x0000001b , 0x00004f77 
+ 00019523  0x00002774 beq  0x0000001d , 0x00004f79 
+ 00019524  0x00002775 beq  0x0000001e , 0x00004f7b 
+ 00019525  0x00002776 beq  0x00000052 , 0x00004f7d 
+ 00019526  0x00002777 beq  0x000000d2 , 0x00004f7f 
+ 00019527  0x00002778 beq  0x0000009e , 0x00004c4b 
+ 00019528  0x00002779 beq  0x0000009f , 0x00004c4d 
+ 00019529  0x0000277a beq  0x0000001f , 0x00004f29 
+ 00019530  0x0000277b branch  0x00003b31 
+ 00019531  0x0000277e jam  0x00000010 , 0x000009bd 
+ 00019532  0x0000277f call  0x00004bd6 
+ 00019533  0x00002782 setarg  0x00000011 
+ 00019534  0x00002783 store  0x00000002 , 0x00004465 
+ 00019535  0x00002784 fetch  0x00000001 , 0x00000379 
+ 00019536  0x00002785 set1  0x00000005 , 0x0000003f 
+ 00019537  0x00002786 store  0x00000001 , 0x00000379 
+ 00019538  0x00002787 jam  0x00000012 , 0x000009bd 
+ 00019539  0x00002788 branch  0x00004bd6 
+ 00019540  0x0000278b force  0x0000000c , 0x00000002 
+ 00019541  0x0000278c branch  0x00004f89 
+ 00019542  0x0000278f force  0x00000008 , 0x00000002 
+ 00019543  0x00002790 branch  0x00004f89 
+ 00019544  0x00002793 force  0x00000002 , 0x00000002 
+ 00019545  0x00002794 branch  0x00004f89 
+ 00019546  0x00002797 force  0x00000000 , 0x0000003f 
+ 00019547  0x00002798 istore  0x00000008 , 0x00000005 
+ 00019548  0x00002799 istore  0x00000002 , 0x00000005 
+ 00019549  0x0000279a copy  0x00000005 , 0x00000002 
+ 00019550  0x0000279b arg  0x00004551 , 0x00000005 
+ 00019551  0x0000279c force  0x00000008 , 0x00000039 
+ 00019552  0x0000279d call  0x00005918 
+ 00019553  0x0000279e fetch  0x00000008 , 0x00004551 
+ 00019554  0x0000279f istore  0x00000008 , 0x00000002 
+ 00019555  0x000027a0 copy  0x00000005 , 0x00000002 
+ 00019556  0x000027a1 arg  0x0000449a , 0x00000005 
+ 00019557  0x000027a2 force  0x00000004 , 0x00000039 
+ 00019558  0x000027a3 call  0x00005918 
+ 00019559  0x000027a4 fetch  0x00000004 , 0x0000449a 
+ 00019560  0x000027a5 istore  0x00000004 , 0x00000002 
+ 00019561  0x000027a6 force  0x00000017 , 0x00000002 
+ 00019562  0x000027a7 branch  0x00004f89 
+ 00019563  0x000027aa copy  0x00000005 , 0x00000002 
+ 00019564  0x000027ab arg  0x00004559 , 0x00000005 
+ 00019565  0x000027ac force  0x00000008 , 0x00000039 
+ 00019566  0x000027ad call  0x00005918 
+ 00019567  0x000027ae fetch  0x00000008 , 0x00004559 
+ 00019568  0x000027af istore  0x00000008 , 0x00000002 
+ 00019569  0x000027b0 copy  0x00000005 , 0x00000002 
+ 00019570  0x000027b1 arg  0x0000449e , 0x00000005 
+ 00019571  0x000027b2 force  0x00000004 , 0x00000039 
+ 00019572  0x000027b3 call  0x00005918 
+ 00019573  0x000027b4 fetch  0x00000004 , 0x0000449e 
+ 00019574  0x000027b5 istore  0x00000004 , 0x00000002 
+ 00019575  0x000027b6 call  0x000070c8 
+ 00019576  0x000027b7 fetch  0x00000001 , 0x000044b2 
+ 00019577  0x000027b8 beq  0x00000000 , 0x00004c7e 
+ 00019578  0x000027b9 jam  0x00000025 , 0x000009bd 
+ 00019579  0x000027ba call  0x00004bd6 
+ 00019580  0x000027bb force  0x0000000d , 0x00000002 
+ 00019581  0x000027bc branch  0x00004f89 
+ 00019582  0x000027bf jam  0x00000000 , 0x0000456b 
+ 00019583  0x000027c0 jam  0x0000002d , 0x000009bd 
+ 00019584  0x000027c1 call  0x00004bd6 
+ 00019585  0x000027c2 call  0x00007e29 
+ 00019586  0x000027c3 force  0x0000000d , 0x00000002 
+ 00019587  0x000027c4 branch  0x00004f89 
+ 00019588  0x000027c8 force  0x00000001 , 0x00000002 
+ 00019589  0x000027c9 branch  0x00004f89 
+ 00019590  0x000027cc force  0x00000001 , 0x00000002 
+ 00019591  0x000027cd branch  0x00004f89 , 0x00000029 
+ 00019592  0x000027ce fetch  0x00000001 , 0x00004132 
+ 00019593  0x000027cf beq  0x00000009 , 0x00004c92 
+ 00019594  0x000027d0 fetch  0x00000001 , 0x0000456a 
+ 00019595  0x000027d1 bne  0x00000002 , 0x00004c8f 
+ 00019596  0x000027d2 jam  0x00000046 , 0x000009bd 
+ 00019597  0x000027d3 call  0x00004bd6 
+ 00019598  0x000027d4 branch  0x00004c90 
+ 00019599  0x000027d6 jam  0x00000003 , 0x0000456b 
+ 00019600  0x000027d8 force  0x00000001 , 0x00000002 
+ 00019601  0x000027d9 branch  0x00004f89 
+ 00019602  0x000027db jam  0x00000001 , 0x00004131 
+ 00019603  0x000027dc fetch  0x00000001 , 0x0000456a 
+ 00019604  0x000027dd bne  0x00000002 , 0x00004c97 
+ 00019605  0x000027de jam  0x00000046 , 0x000009bd 
+ 00019606  0x000027df call  0x00004bd6 
+ 00019607  0x000027e1 jam  0x00000003 , 0x0000456b 
+ 00019608  0x000027e2 force  0x00000001 , 0x00000002 
+ 00019609  0x000027e3 call  0x00004f89 
+ 00019610  0x000027e4 jam  0x00000001 , 0x000048c2 
+ 00019611  0x000027e5 rtn 
+ 00019612  0x000027e7 fetch  0x00000001 , 0x00004550 
+ 00019613  0x000027e8 istore  0x00000001 , 0x00000005 
+ 00019614  0x000027e9 force  0x00000002 , 0x00000002 
+ 00019615  0x000027ea branch  0x00004f89 
+ 00019616  0x000027ed setarg  0x00000001 
+ 00019617  0x000027ee istore  0x00000008 , 0x00000005 
+ 00019618  0x000027ef force  0x00000009 , 0x00000002 
+ 00019619  0x000027f0 branch  0x00004f89 
+ 00019620  0x000027f7 force  0x00000001 , 0x00000002 
+ 00019621  0x000027f8 branch  0x00004f89 
+ 00019622  0x000027fb fetch  0x00000005 , 0x000045a9 
+ 00019623  0x000027fc istore  0x00000005 , 0x00000005 
+ 00019624  0x00002801 force  0x00000006 , 0x00000002 
+ 00019625  0x00002802 branch  0x00004f89 
+ 00019626  0x00002805 setarg  0x00000006 
+ 00019627  0x00002806 istore  0x00000001 , 0x00000005 
+ 00019628  0x00002807 force  0x00000002 , 0x00000002 
+ 00019629  0x00002808 branch  0x00004f89 
+ 00019630  0x0000280b increase  0xffffffff , 0x00000005 
+ 00019631  0x0000280c setarg  0x0000000c 
+ 00019632  0x0000280d istore  0x00000002 , 0x00000005 
+ 00019633  0x0000280e setarg  0x00000005 
+ 00019634  0x0000280f istore  0x00000002 , 0x00000005 
+ 00019635  0x00002810 setarg  0x0000b412 
+ 00019636  0x00002811 istore  0x00000002 , 0x00000005 
+ 00019637  0x00002812 setarg  0x00000008 
+ 00019638  0x00002813 istore  0x00000002 , 0x00000005 
+ 00019639  0x00002814 fetch  0x00000008 , 0x0000458d 
+ 00019640  0x00002815 istore  0x00000008 , 0x00000005 
+ 00019641  0x00002816 force  0x00000002 , 0x00000001 
+ 00019642  0x00002817 branch  0x00004f81 
+ 00019643  0x0000281a setarg  0x01000401 
+ 00019644  0x0000281b store  0x00000004 , 0x000044d5 
+ 00019645  0x0000281c setarg  0x00070710 
+ 00019646  0x0000281d istore  0x00000003 , 0x00000005 
+ 00019647  0x0000281e fetch  0x00000006 , 0x000044d6 
+ 00019648  0x0000281f store  0x00000006 , 0x0000446c 
+ 00019649  0x00002820 force  0x0000000b , 0x00000002 
+ 00019650  0x00002821 branch  0x00004f89 
+ 00019651  0x00002824 fetch  0x00000001 , 0x00004132 
+ 00019652  0x00002825 sub  0x0000003f , 0x0000000a , 0x0000003e 
+ 00019653  0x00002826 call  0x00004cd1 , 0x00000005 
+ 00019654  0x00002828 fetch  0x00000001 , 0x00004132 
+ 00019655  0x00002829 bne  0x00000009 , 0x00004ccd 
+ 00019656  0x0000282a jam  0x00000001 , 0x00004746 
+ 00019657  0x0000282b fetch  0x00000001 , 0x000044da 
+ 00019658  0x0000282c bbit1  0x00000001 , 0x00004ccd 
+ 00019659  0x0000282d setarg  0x00010010 
+ 00019660  0x0000282e istore  0x00000003 , 0x00000005 
+ 00019661  0x00002830 fetch  0x00000006 , 0x000044dd 
+ 00019662  0x00002831 store  0x00000006 , 0x0000446c 
+ 00019663  0x00002832 force  0x0000000b , 0x00000002 
+ 00019664  0x00002833 branch  0x00004f89 
+ 00019665  0x00002836 fetcht  0x00000001 , 0x000044e1 
+ 00019666  0x00002837 fetch  0x00000001 , 0x000044da 
+ 00019667  0x00002838 isolate1  0x00000001 , 0x0000003f 
+ 00019668  0x00002839 setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00019669  0x0000283a storet  0x00000001 , 0x000044e1 
+ 00019670  0x0000283b fetcht  0x00000001 , 0x000044e2 
+ 00019671  0x0000283c setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00019672  0x0000283d storet  0x00000001 , 0x000044e2 
+ 00019673  0x0000283e rtn 
+ 00019674  0x00002842 fetch  0x00000001 , 0x00004563 
+ 00019675  0x00002843 beq  0x00000001 , 0x00004ce1 
+ 00019676  0x00002844 call  0x000070c2 
+ 00019677  0x00002845 arg  0x0000446c , 0x00000005 
+ 00019678  0x00002846 call  0x000071c0 
+ 00019679  0x00002847 force  0x00000015 , 0x00000002 
+ 00019680  0x00002848 branch  0x00004f89 
+ 00019681  0x0000284a arg  0x000044c3 , 0x00000005 
+ 00019682  0x0000284b call  0x00005917 
+ 00019683  0x0000284c call  0x00006ee7 
+ 00019684  0x0000284d arg  0x0000446c , 0x00000005 
+ 00019685  0x0000284e call  0x00006f24 
+ 00019686  0x0000284f force  0x00000015 , 0x00000002 
+ 00019687  0x00002850 branch  0x00004f89 
+ 00019688  0x00002853 fetch  0x00000008 , 0x00000352 
+ 00019689  0x00002854 branch  0x00004ceb , 0x00000029 
+ 00019690  0x00002855 fetch  0x00000008 , 0x000044c3 
+ 00019691  0x00002858 call  0x00004d69 
+ 00019692  0x00002859 branch  0x00004f89 
+ 00019693  0x0000285c jam  0x00000000 , 0x0000456a 
+ 00019694  0x0000285d arg  0x00000008 , 0x0000003f 
+ 00019695  0x0000285e istore  0x00000001 , 0x00000005 
+ 00019696  0x0000285f force  0x00000006 , 0x00000002 
+ 00019697  0x00002860 branch  0x00004f89 
+ 00019698  0x00002863 jam  0x00000029 , 0x000009bd 
+ 00019699  0x00002864 call  0x00007d86 
+ 00019700  0x00002865 jam  0x00000047 , 0x000009bd 
+ 00019701  0x00002866 call  0x00004bd6 
+ 00019702  0x00002867 fetch  0x00000001 , 0x00004132 
+ 00019703  0x00002868 beq  0x00000009 , 0x00004d01 
+ 00019704  0x00002869 fetch  0x00000008 , 0x000044a2 
+ 00019705  0x0000286a call  0x00004d69 
+ 00019706  0x0000286b call  0x00004f89 
+ 00019707  0x0000286c fetch  0x00000001 , 0x0000452b 
+ 00019708  0x0000286d beq  0x00000000 , 0x00003e7b 
+ 00019709  0x0000286e fetch  0x00000001 , 0x00000377 
+ 00019710  0x0000286f compare  0x000000c0 , 0x0000003f , 0x000000c0 
+ 00019711  0x00002870 branch  0x00003e7b , 0x00000001 
+ 00019712  0x00002871 rtn 
+ 00019713  0x00002874 setarg  0x00112233 
+ 00019714  0x00002875 store  0x00000003 , 0x000044a2 
+ 00019715  0x00002876 setarg  0x00445566 
+ 00019716  0x00002877 istore  0x00000003 , 0x00000005 
+ 00019717  0x00002878 setarg  0x00778899 
+ 00019718  0x00002879 istore  0x00000003 , 0x00000005 
+ 00019719  0x0000287a setarg  0x00001122 
+ 00019720  0x0000287b istore  0x00000003 , 0x00000005 
+ 00019721  0x0000287c setarg  0x00334455 
+ 00019722  0x0000287d istore  0x00000003 , 0x00000005 
+ 00019723  0x0000287e setarg  0x00000066 
+ 00019724  0x0000287f istore  0x00000001 , 0x00000005 
+ 00019725  0x00002881 fetch  0x00000008 , 0x000044a2 
+ 00019726  0x00002882 call  0x00004d69 
+ 00019727  0x00002883 branch  0x00004f89 
+ 00019728  0x00002887 fetch  0x00000001 , 0x00004132 
+ 00019729  0x00002888 beq  0x00000009 , 0x00004d22 
+ 00019730  0x0000288a fetch  0x00000001 , 0x000044da 
+ 00019731  0x0000288b bbit0  0x00000001 , 0x00004d17 
+ 00019732  0x0000288c jam  0x00000048 , 0x000009bd 
+ 00019733  0x0000288d call  0x00004bd6 
+ 00019734  0x0000288e branch  0x00004d19 
+ 00019735  0x00002891 jam  0x00000003 , 0x0000456b 
+ 00019736  0x00002892 jam  0x00000003 , 0x0000456a 
+ 00019737  0x00002894 arg  0x00004571 , 0x00000005 
+ 00019738  0x00002895 force  0x0000000a , 0x00000039 
+ 00019739  0x00002896 call  0x00005918 
+ 00019740  0x00002897 fetch  0x00000002 , 0x00004571 
+ 00019741  0x00002898 store  0x00000002 , 0x0000446c 
+ 00019742  0x00002899 fetch  0x00000008 , 0x00004573 
+ 00019743  0x0000289a istore  0x00000008 , 0x00000005 
+ 00019744  0x0000289b force  0x0000000f , 0x00000002 
+ 00019745  0x0000289c branch  0x00004f89 
+ 00019746  0x0000289f arg  0x0000446c , 0x00000005 
+ 00019747  0x000028a0 force  0x00000008 , 0x00000039 
+ 00019748  0x000028a1 call  0x00005918 
+ 00019749  0x000028a2 force  0x0000000f , 0x00000002 
+ 00019750  0x000028a3 branch  0x00004f89 
+ 00019751  0x000028a6 jam  0x00000049 , 0x000009bd 
+ 00019752  0x000028a7 call  0x00004bd6 
+ 00019753  0x000028a8 setarg  0x00000000 
+ 00019754  0x000028a9 store  0x00000008 , 0x0000446c 
+ 00019755  0x000028aa istore  0x00000008 , 0x00000005 
+ 00019756  0x000028ab branch  0x00004f81 
+ 00019757  0x000028b0 fetch  0x00000001 , 0x00004532 
+ 00019758  0x000028b1 store  0x00000001 , 0x0000446c 
+ 00019759  0x000028b2 fetch  0x00000006 , 0x0000453e 
+ 00019760  0x000028b3 istore  0x00000006 , 0x00000005 
+ 00019761  0x000028b4 branch  0x00004f81 
+ 00019762  0x000028b7 arg  0x0000446c , 0x00000005 
+ 00019763  0x000028b8 call  0x00005917 
+ 00019764  0x000028b9 branch  0x00004f81 
+ 00019765  0x000028bc fetch  0x00000001 , 0x000044df 
+ 00019766  0x000028bd store  0x00000001 , 0x0000446c 
+ 00019767  0x000028be force  0x00000006 , 0x00000002 
+ 00019768  0x000028bf branch  0x00004f89 
+ 00019769  0x000028c3 fetch  0x00000001 , 0x000003da 
+ 00019770  0x000028c4 beq  0x00000003 , 0x00004d4e 
+ 00019771  0x000028c7 arg  0x00000041 , 0x00000002 
+ 00019772  0x000028c8 storet  0x00000002 , 0x00004467 
+ 00019773  0x000028c9 set1  0x00000025 , 0x00000000 
+ 00019774  0x000028ca bpatch  0x00000034 , 0x00004026 
+ 00019775  0x000028cb arg  0x00000002 , 0x00000001 
+ 00019776  0x000028cc setarg  0x00000006 
+ 00019777  0x000028cd store  0x00000002 , 0x00004469 
+ 00019778  0x000028cf arg  0x0000446c , 0x00000005 
+ 00019779  0x000028d0 arg  0x00000016 , 0x00000039 
+ 00019780  0x000028d1 arg  0x0000465a , 0x00000006 
+ 00019781  0x000028d2 call  0x00007ec0 
+ 00019782  0x000028d3 jam  0x00000016 , 0x000003db 
+ 00019783  0x000028d5 jam  0x0000001b , 0x00004466 
+ 00019784  0x000028d7 fetcht  0x00000001 , 0x00000379 
+ 00019785  0x000028d8 set1  0x00000004 , 0x00000002 
+ 00019786  0x000028d9 storet  0x00000001 , 0x00000379 
+ 00019787  0x000028de jam  0x00000003 , 0x000003da 
+ 00019788  0x000028df fetcht  0x00000001 , 0x00000379 
+ 00019789  0x000028e0 branch  0x00004f93 
+ 00019790  0x000028e4 jam  0x00000000 , 0x000003da 
+ 00019791  0x000028e6 fetch  0x00000001 , 0x000003db 
+ 00019792  0x000028e7 beq  0x00000016 , 0x00004d5e 
+ 00019793  0x000028e9 arg  0x0000000f , 0x00000039 
+ 00019794  0x000028ea jam  0x0000000f , 0x00004466 
+ 00019795  0x000028eb call  0x00004d58 
+ 00019796  0x000028ec jam  0x00000002 , 0x00004564 
+ 00019797  0x000028ed jam  0x00000003 , 0x00004566 
+ 00019798  0x000028ee jam  0x00000000 , 0x000003db 
+ 00019799  0x000028ef rtn 
+ 00019800  0x000028f1 arg  0x0000465a , 0x00000006 
+ 00019801  0x000028f2 iadd  0x00000006 , 0x00000006 
+ 00019802  0x000028f3 arg  0x00004467 , 0x00000005 
+ 00019803  0x000028f4 call  0x00007ec0 
+ 00019804  0x000028f5 arg  0x00000001 , 0x00000001 
+ 00019805  0x000028f6 branch  0x00004f90 
+ 00019806  0x000028fa jam  0x00000031 , 0x000003db 
+ 00019807  0x000028fb arg  0x0000001b , 0x00000039 
+ 00019808  0x000028fc jam  0x0000001b , 0x00004466 
+ 00019809  0x000028fd call  0x00004d58 
+ 00019810  0x000028ff jam  0x00000003 , 0x000003da 
+ 00019811  0x00002903 rtn 
+ 00019812  0x00002906 call  0x00006e86 
+ 00019813  0x00002907 arg  0x0000446c , 0x00000005 
+ 00019814  0x00002908 call  0x00006f24 
+ 00019815  0x00002909 force  0x00000015 , 0x00000002 
+ 00019816  0x0000290a branch  0x00004f89 
+ 00019817  0x0000290d store  0x00000008 , 0x0000446c 
+ 00019818  0x0000290e ifetch  0x00000008 , 0x00000006 
+ 00019819  0x0000290f istore  0x00000008 , 0x00000005 
+ 00019820  0x00002910 force  0x00000015 , 0x00000002 
+ 00019821  0x00002911 rtn 
+ 00019822  0x00002914 jam  0x0000000a , 0x0000039d 
+ 00019823  0x00002916 jam  0x00000001 , 0x0000446b 
+ 00019824  0x00002917 fetch  0x00000003 , 0x0000039a 
+ 00019825  0x00002918 store  0x00000003 , 0x0000446c 
+ 00019826  0x00002919 fetch  0x00000001 , 0x0000039d 
+ 00019827  0x0000291a istore  0x00000001 , 0x00000005 
+ 00019828  0x0000291b branch  0x00004f81 
+ 00019829  0x0000291f fetch  0x00000002 , 0x0000454c 
+ 00019830  0x00002920 istore  0x00000002 , 0x00000005 
+ 00019831  0x00002921 branch  0x00004f81 
+ 00019832  0x00002924 fetch  0x00000002 , 0x000044e3 
+ 00019833  0x00002925 store  0x00000002 , 0x0000446c 
+ 00019834  0x00002926 fetch  0x00000002 , 0x000044e5 
+ 00019835  0x00002927 istore  0x00000002 , 0x00000005 
+ 00019836  0x00002928 branch  0x00004f81 
+ 00019837  0x0000292d arg  0x00000002 , 0x0000000b 
+ 00019838  0x0000292e force  0x00000001 , 0x0000003f 
+ 00019839  0x0000292f store  0x00000001 , 0x0000446c 
+ 00019840  0x00002930 call  0x000051e0 
+ 00019841  0x00002932 call  0x000051ea 
+ 00019842  0x00002933 branch  0x00004d91 , 0x00000034 
+ 00019843  0x00002934 nbranch  0x00004d8e , 0x00000002 
+ 00019844  0x00002935 disable  0x00000028 
+ 00019845  0x00002936 istore  0x00000002 , 0x00000005 
+ 00019846  0x00002937 ifetch  0x00000001 , 0x00000006 
+ 00019847  0x00002938 copy  0x0000003f , 0x00000039 
+ 00019848  0x00002939 call  0x00007ec0 
+ 00019849  0x0000293a increase  0xffffffff , 0x0000000b 
+ 00019850  0x0000293b branch  0x00004d91 , 0x00000005 
+ 00019851  0x0000293d ifetch  0x00000001 , 0x00000006 
+ 00019852  0x0000293e iadd  0x00000006 , 0x00000006 
+ 00019853  0x0000293f branch  0x00004d81 
+ 00019854  0x00002941 ifetch  0x00000001 , 0x00000006 
+ 00019855  0x00002942 iadd  0x00000006 , 0x00000006 
+ 00019856  0x00002943 branch  0x00004d8b 
+ 00019857  0x00002945 branch  0x00004d6e , 0x00000028 
+ 00019858  0x00002946 branch  0x00004f81 
+ 00019859  0x0000294a fetch  0x00000002 , 0x000044e3 
+ 00019860  0x0000294b branch  0x00004c4d , 0x00000034 
+ 00019861  0x0000294c store  0x00000002 , 0x0000446c 
+ 00019862  0x0000294d fetch  0x00000002 , 0x000044e5 
+ 00019863  0x0000294f istore  0x00000002 , 0x00000005 
+ 00019864  0x00002950 fetch  0x00000002 , 0x000044fb 
+ 00019865  0x00002952 istore  0x00000002 , 0x00000005 
+ 00019866  0x00002953 fetch  0x00000002 , 0x000044e8 
+ 00019867  0x00002955 istore  0x00000002 , 0x00000005 
+ 00019868  0x00002956 branch  0x00004f81 
+ 00019869  0x0000295a disable  0x00000028 
+ 00019870  0x0000295b fetcht  0x00000002 , 0x000044e3 
+ 00019871  0x0000295c fetch  0x00000002 , 0x000044e5 
+ 00019872  0x0000295d isub  0x00000002 , 0x0000003e 
+ 00019873  0x0000295e nbranch  0x00004da4 , 0x00000002 
+ 00019874  0x0000295f deposit  0x00000002 
+ 00019875  0x00002960 rtnne  0x00000000 
+ 00019876  0x00002962 enable  0x00000028 
+ 00019877  0x00002963 jam  0x00000001 , 0x0000039d 
+ 00019878  0x00002964 branch  0x00004d6f 
+ 00019879  0x00002967 call  0x00004d9d 
+ 00019880  0x00002968 rtn  0x00000028 
+ 00019881  0x00002969 fetcht  0x00000002 , 0x000044fb 
+ 00019882  0x0000296a setarg  0x00002800 
+ 00019883  0x0000296b isub  0x00000002 , 0x0000003e 
+ 00019884  0x0000296c branch  0x00004db7 , 0x00000005 
+ 00019885  0x0000296d setarg  0x00002801 
+ 00019886  0x0000296e isub  0x00000002 , 0x0000003e 
+ 00019887  0x0000296f branch  0x00004d6e , 0x00000005 
+ 00019888  0x00002970 setarg  0x00002802 
+ 00019889  0x00002971 isub  0x00000002 , 0x0000003e 
+ 00019890  0x00002972 branch  0x00004d6e , 0x00000005 
+ 00019891  0x00002973 setarg  0x00002803 
+ 00019892  0x00002974 isub  0x00000002 , 0x0000003e 
+ 00019893  0x00002975 branch  0x00004d6e , 0x00000005 
+ 00019894  0x00002976 branch  0x00004d6e 
+ 00019895  0x00002979 jam  0x00000000 , 0x000003d9 
+ 00019896  0x0000297a fetcht  0x00000002 , 0x000044e3 
+ 00019897  0x0000297b storet  0x00000002 , 0x000009c6 
+ 00019898  0x0000297c call  0x0000521a 
+ 00019899  0x0000297d nbranch  0x00004d6e , 0x00000034 
+ 00019900  0x0000297f fetcht  0x00000002 , 0x000009c6 
+ 00019901  0x00002980 call  0x0000521a 
+ 00019902  0x00002981 nbranch  0x00004dd0 , 0x00000034 
+ 00019903  0x00002982 copy  0x00000006 , 0x00000011 
+ 00019904  0x00002983 fetch  0x00000001 , 0x000003d8 
+ 00019905  0x00002984 copy  0x0000003f , 0x00000039 
+ 00019906  0x00002985 fetcht  0x00000001 , 0x000044e7 
+ 00019907  0x00002986 isub  0x00000002 , 0x0000003e 
+ 00019908  0x00002987 nbranch  0x00004dcc , 0x00000005 
+ 00019909  0x00002988 arg  0x000044e8 , 0x00000012 
+ 00019910  0x00002989 call  0x00007f55 
+ 00019911  0x0000298b branch  0x00004dd3 , 0x00000005 
+ 00019912  0x0000298d fetch  0x00000002 , 0x000003c8 
+ 00019913  0x0000298e fetcht  0x00000002 , 0x000044fb 
+ 00019914  0x0000298f isub  0x00000002 , 0x0000003e 
+ 00019915  0x00002990 branch  0x00004ddb , 0x00000005 
+ 00019916  0x00002992 fetch  0x00000002 , 0x000009c6 
+ 00019917  0x00002993 increase  0x00000001 , 0x0000003f 
+ 00019918  0x00002994 store  0x00000002 , 0x000009c6 
+ 00019919  0x00002995 branch  0x00004dbc 
+ 00019920  0x00002998 fetch  0x00000001 , 0x000003d9 
+ 00019921  0x00002999 beq  0x00000001 , 0x00004ddb 
+ 00019922  0x0000299a branch  0x00004d6e 
+ 00019923  0x0000299e fetch  0x00000002 , 0x000003c8 
+ 00019924  0x0000299f fetcht  0x00000002 , 0x000044fb 
+ 00019925  0x000029a0 isub  0x00000002 , 0x0000003e 
+ 00019926  0x000029a1 nbranch  0x00004dcc , 0x00000005 
+ 00019927  0x000029a2 jam  0x00000001 , 0x000003d9 
+ 00019928  0x000029a4 fetcht  0x00000002 , 0x000009c6 
+ 00019929  0x000029a5 storet  0x00000002 , 0x000003c3 
+ 00019930  0x000029a6 branch  0x00004dcc 
+ 00019931  0x000029a9 fetch  0x00000001 , 0x000003d9 
+ 00019932  0x000029aa beq  0x00000000 , 0x00004dcc 
+ 00019933  0x000029ab jam  0x00000002 , 0x000003d9 
+ 00019934  0x000029ac fetcht  0x00000002 , 0x000009c6 
+ 00019935  0x000029ad increase  0xffffffff , 0x00000002 
+ 00019936  0x000029ae storet  0x00000002 , 0x000003c5 
+ 00019937  0x000029b0 fetch  0x00000002 , 0x000003c3 
+ 00019938  0x000029b1 icopy  0x00000011 
+ 00019939  0x000029b2 fetch  0x00000002 , 0x000003c5 
+ 00019940  0x000029b3 icopy  0x00000012 
+ 00019941  0x000029b4 jam  0x00000007 , 0x0000446b 
+ 00019942  0x000029b5 deposit  0x00000011 
+ 00019943  0x000029b6 store  0x00000002 , 0x0000446c 
+ 00019944  0x000029b7 deposit  0x00000012 
+ 00019945  0x000029b8 istore  0x00000002 , 0x00000005 
+ 00019946  0x000029b9 force  0x00000009 , 0x00000002 
+ 00019947  0x000029ba branch  0x00004f89 
+ 00019948  0x000029be fetch  0x00000002 , 0x000044e3 
+ 00019949  0x000029c0 istore  0x00000002 , 0x00000005 
+ 00019950  0x000029c1 fetch  0x00000002 , 0x000044e5 
+ 00019951  0x000029c3 istore  0x00000002 , 0x00000005 
+ 00019952  0x000029c4 fetch  0x00000002 , 0x000044e8 
+ 00019953  0x000029c5 istore  0x00000002 , 0x00000005 
+ 00019954  0x000029c6 force  0x0000000b , 0x00000002 
+ 00019955  0x000029c7 branch  0x00004f89 
+ 00019956  0x000029cc fetcht  0x00000002 , 0x000044e3 
+ 00019957  0x000029cd storet  0x00000002 , 0x000009c6 
+ 00019958  0x000029ce call  0x000051e0 
+ 00019959  0x000029cf call  0x000051f8 
+ 00019960  0x000029d0 increase  0xfffffffe , 0x00000006 
+ 00019961  0x000029d1 copy  0x00000006 , 0x0000003f 
+ 00019962  0x000029d2 store  0x00000002 , 0x000003c1 
+ 00019963  0x000029d4 fetcht  0x00000002 , 0x000044fb 
+ 00019964  0x000029d5 setarg  0x00002803 
+ 00019965  0x000029d6 isub  0x00000002 , 0x0000003e 
+ 00019966  0x000029d7 nbranch  0x00004e3d , 0x00000005 
+ 00019967  0x000029d8 arg  0x00000002 , 0x0000000b 
+ 00019968  0x000029d9 set1  0x00000025 , 0x00000000 
+ 00019969  0x000029da bpatch  0x00000035 , 0x00004026 
+ 00019970  0x000029dc call  0x00004eff 
+ 00019971  0x000029dd nbranch  0x00004e13 , 0x00000002 
+ 00019972  0x000029de fetcht  0x00000002 , 0x000009c6 
+ 00019973  0x000029df call  0x00005217 
+ 00019974  0x000029e0 beq  0x00000001 , 0x00004e13 
+ 00019975  0x000029e1 call  0x00004f0b 
+ 00019976  0x000029e2 nbranch  0x00004e11 , 0x00000005 
+ 00019977  0x000029e3 nbranch  0x00004e15 , 0x00000028 
+ 00019978  0x000029e4 disable  0x00000028 
+ 00019979  0x000029e6 call  0x00004e28 
+ 00019980  0x000029e7 call  0x00004efb 
+ 00019981  0x000029e8 call  0x00005217 
+ 00019982  0x000029e9 call  0x00004e2f 
+ 00019983  0x000029ea increase  0xffffffff , 0x0000000b 
+ 00019984  0x000029eb branch  0x00004e13 , 0x00000005 
+ 00019985  0x000029ed call  0x00004efb 
+ 00019986  0x000029ee branch  0x00004e02 
+ 00019987  0x000029f0 branch  0x00004d6e , 0x00000028 
+ 00019988  0x000029f1 branch  0x00004f13 
+ 00019989  0x000029f4 call  0x00004f0e 
+ 00019990  0x000029f5 call  0x00004efb 
+ 00019991  0x000029f6 call  0x00005217 
+ 00019992  0x000029f7 fetch  0x00000001 , 0x0000446c 
+ 00019993  0x000029f8 beq  0x00000015 , 0x00004e13 
+ 00019994  0x000029f9 fetch  0x00000001 , 0x000003c7 
+ 00019995  0x000029fa increase  0x00000005 , 0x0000003f 
+ 00019996  0x000029fb fetcht  0x00000001 , 0x0000446c 
+ 00019997  0x000029fc isub  0x00000002 , 0x0000003e 
+ 00019998  0x000029fd nbranch  0x00004e13 , 0x00000005 
+ 00019999  0x000029ff call  0x00007e64 
+ 00020000  0x00002a00 fetch  0x00000002 , 0x000009c6 
+ 00020001  0x00002a01 increase  0xffffffff , 0x0000003f 
+ 00020002  0x00002a02 istore  0x00000002 , 0x00000005 
+ 00020003  0x00002a03 call  0x00004f1a 
+ 00020004  0x00002a04 call  0x00004e2f 
+ 00020005  0x00002a05 increase  0xffffffff , 0x0000000b 
+ 00020006  0x00002a06 branch  0x00004e13 , 0x00000005 
+ 00020007  0x00002a07 branch  0x00004e11 
+ 00020008  0x00002a09 fetch  0x00000002 , 0x000009c6 
+ 00020009  0x00002a0a store  0x00000002 , 0x0000446d 
+ 00020010  0x00002a0c fetch  0x00000001 , 0x000003d8 
+ 00020011  0x00002a0d copy  0x0000003f , 0x00000039 
+ 00020012  0x00002a0e call  0x00007e67 
+ 00020013  0x00002a0f call  0x00007ec0 
+ 00020014  0x00002a10 branch  0x00007e6a 
+ 00020015  0x00002a12 call  0x00007e64 
+ 00020016  0x00002a13 fetch  0x00000002 , 0x000009c6 
+ 00020017  0x00002a14 istore  0x00000002 , 0x00000005 
+ 00020018  0x00002a15 call  0x00007e6a 
+ 00020019  0x00002a16 fetch  0x00000001 , 0x000003c7 
+ 00020020  0x00002a17 copy  0x0000003f , 0x00000039 
+ 00020021  0x00002a18 increase  0x00000005 , 0x0000003f 
+ 00020022  0x00002a19 store  0x00000001 , 0x0000446c 
+ 00020023  0x00002a1a call  0x00007e64 
+ 00020024  0x00002a1b call  0x00007e67 
+ 00020025  0x00002a1c isub  0x00000039 , 0x00000006 
+ 00020026  0x00002a1d increase  0xffffffff , 0x00000006 
+ 00020027  0x00002a1e call  0x00007ec0 
+ 00020028  0x00002a1f branch  0x00007e6a 
+ 00020029  0x00002a24 fetcht  0x00000002 , 0x000044e3 
+ 00020030  0x00002a25 storet  0x00000002 , 0x000009c6 
+ 00020031  0x00002a27 call  0x00004eff 
+ 00020032  0x00002a28 nbranch  0x00004d6e , 0x00000002 
+ 00020033  0x00002a29 call  0x00005217 
+ 00020034  0x00002a2a beq  0x00000001 , 0x00004d6e 
+ 00020035  0x00002a2b call  0x00004f0b 
+ 00020036  0x00002a2c nbranch  0x00004e56 , 0x00000005 
+ 00020037  0x00002a2e fetch  0x00000001 , 0x000044fa 
+ 00020038  0x00002a2f bne  0x00000002 , 0x00004e4d 
+ 00020039  0x00002a30 fetch  0x00000002 , 0x000044fb 
+ 00020040  0x00002a31 arg  0x00002a00 , 0x00000002 
+ 00020041  0x00002a32 isub  0x00000002 , 0x0000003e 
+ 00020042  0x00002a33 nbranch  0x00004e4d , 0x00000005 
+ 00020043  0x00002a34 fetch  0x00000001 , 0x00004440 
+ 00020044  0x00002a35 branch  0x00004e4e 
+ 00020045  0x00002a37 fetch  0x00000001 , 0x000003d8 
+ 00020046  0x00002a39 copy  0x0000003f , 0x00000039 
+ 00020047  0x00002a3a increase  0x00000002 , 0x0000003f 
+ 00020048  0x00002a3b store  0x00000001 , 0x0000446c 
+ 00020049  0x00002a3c fetch  0x00000002 , 0x000009c6 
+ 00020050  0x00002a3d istore  0x00000002 , 0x00000005 
+ 00020051  0x00002a3e call  0x00007e67 
+ 00020052  0x00002a3f call  0x00007ec0 
+ 00020053  0x00002a40 branch  0x00004f81 
+ 00020054  0x00002a42 call  0x00004efb 
+ 00020055  0x00002a43 branch  0x00004e3f 
+ 00020056  0x00002a47 fetch  0x00000001 , 0x00004464 
+ 00020057  0x00002a49 increase  0xffffffff , 0x0000003f 
+ 00020058  0x00002a4a store  0x00000001 , 0x00004464 
+ 00020059  0x00002a4b lshift  0x0000003f , 0x0000003f 
+ 00020060  0x00002a4d iadd  0x00000006 , 0x00000006 
+ 00020061  0x00002a4e ifetcht  0x00000002 , 0x00000006 
+ 00020062  0x00002a4f storet  0x00000002 , 0x0000446c 
+ 00020063  0x00002a50 branch  0x00004f81 
+ 00020064  0x00002a53 fetch  0x00000001 , 0x000045a8 
+ 00020065  0x00002a54 bbit0  0x00000000 , 0x00004e66 
+ 00020066  0x00002a55 fetch  0x00000002 , 0x0000039b 
+ 00020067  0x00002a56 fetcht  0x00000002 , 0x0000458b 
+ 00020068  0x00002a57 isub  0x00000002 , 0x0000003e 
+ 00020069  0x00002a58 branch  0x00004e71 , 0x00000005 
+ 00020070  0x00002a5a fetcht  0x00000002 , 0x0000039b 
+ 00020071  0x00002a5b call  0x000051f5 
+ 00020072  0x00002a5c branch  0x00004d6e , 0x00000034 
+ 00020073  0x00002a5d ifetch  0x00000001 , 0x00000006 
+ 00020074  0x00002a5e branch  0x00004f81 , 0x00000034 
+ 00020075  0x00002a5f sub  0x0000003f , 0x00000016 , 0x0000003e 
+ 00020076  0x00002a60 branch  0x00004e6e , 0x00000002 
+ 00020077  0x00002a61 force  0x00000016 , 0x0000003f 
+ 00020078  0x00002a63 icopy  0x00000039 
+ 00020079  0x00002a64 call  0x00007ec0 
+ 00020080  0x00002a65 branch  0x00004f81 
+ 00020081  0x00002a68 fetch  0x00000001 , 0x0000456c 
+ 00020082  0x00002a69 branch  0x00004e66 , 0x00000034 
+ 00020083  0x00002a6a fetch  0x00000001 , 0x00000362 
+ 00020084  0x00002a6b bbit1  0x00000004 , 0x00004e66 
+ 00020085  0x00002a6c jam  0x00000005 , 0x0000039d 
+ 00020086  0x00002a6d branch  0x00004d6f 
+ 00020087  0x00002a70 setarg  0x00000003 
+ 00020088  0x00002a71 store  0x00000002 , 0x0000446c 
+ 00020089  0x00002a72 setarg  0x00000008 
+ 00020090  0x00002a73 istore  0x00000002 , 0x00000005 
+ 00020091  0x00002a74 branch  0x00004f81 
+ 00020092  0x00002a77 fetch  0x00000002 , 0x000044e7 
+ 00020093  0x00002a78 iforce  0x00000011 
+ 00020094  0x00002a79 fetcht  0x00000002 , 0x0000039b 
+ 00020095  0x00002a7a call  0x000051f5 
+ 00020096  0x00002a7b branch  0x00004d6e , 0x00000034 
+ 00020097  0x00002a7c ifetch  0x00000001 , 0x00000006 
+ 00020098  0x00002a7d isub  0x00000011 , 0x00000039 
+ 00020099  0x00002a7e nbranch  0x00004d6e , 0x00000002 
+ 00020100  0x00002a7f sub  0x00000039 , 0x00000016 , 0x0000003e 
+ 00020101  0x00002a80 branch  0x00004e87 , 0x00000002 
+ 00020102  0x00002a81 force  0x00000016 , 0x00000039 
+ 00020103  0x00002a83 deposit  0x00000011 
+ 00020104  0x00002a84 iadd  0x00000006 , 0x00000006 
+ 00020105  0x00002a85 call  0x00007ec0 
+ 00020106  0x00002a86 branch  0x00004f81 
+ 00020107  0x00002a89 setarg  0x00000003 
+ 00020108  0x00002a8a istore  0x00000002 , 0x00000005 
+ 00020109  0x00002a8b setarg  0x00000007 
+ 00020110  0x00002a8c istore  0x00000002 , 0x00000005 
+ 00020111  0x00002a8d setarg  0x00000009 
+ 00020112  0x00002a8e istore  0x00000002 , 0x00000005 
+ 00020113  0x00002a8f branch  0x00004f81 
+ 00020114  0x00002a92 fetch  0x00000001 , 0x00004464 
+ 00020115  0x00002a93 icopy  0x00000013 
+ 00020116  0x00002a95 arg  0x00000309 , 0x00000011 
+ 00020117  0x00002a96 arg  0x0000446c , 0x00000012 
+ 00020118  0x00002a97 arg  0x00000000 , 0x0000000b 
+ 00020119  0x00002a98 disable  0x00000031 
+ 00020120  0x00002a9b copy  0x00000011 , 0x00000006 
+ 00020121  0x00002a9c ifetcht  0x00000002 , 0x00000006 
+ 00020122  0x00002a9d copy  0x00000006 , 0x00000011 
+ 00020123  0x00002a9e call  0x000051f5 
+ 00020124  0x00002a9f branch  0x00004eab , 0x00000034 
+ 00020125  0x00002aa0 ifetch  0x00000001 , 0x00000006 
+ 00020126  0x00002aa1 icopy  0x00000039 
+ 00020127  0x00002aa2 iadd  0x0000000b , 0x0000000b 
+ 00020128  0x00002aa6 sub  0x0000000b , 0x00000018 , 0x0000003e 
+ 00020129  0x00002aa7 nbranch  0x00004eb0 , 0x00000002 
+ 00020130  0x00002aa8 copy  0x00000012 , 0x00000005 
+ 00020131  0x00002aab ifetch  0x00000001 , 0x00000006 
+ 00020132  0x00002aac istore  0x00000001 , 0x00000005 
+ 00020133  0x00002aad loop  0x00004ea3 
+ 00020134  0x00002aae copy  0x00000005 , 0x00000012 
+ 00020135  0x00002aaf enable  0x00000031 
+ 00020136  0x00002ab0 increase  0xffffffff , 0x00000013 
+ 00020137  0x00002ab1 branch  0x00004eab , 0x00000005 
+ 00020138  0x00002ab2 branch  0x00004e98 
+ 00020139  0x00002ab5 nbranch  0x00004eb6 , 0x00000031 
+ 00020140  0x00002ab6 disable  0x00000031 
+ 00020141  0x00002ab7 copy  0x0000000b , 0x00000002 
+ 00020142  0x00002ab8 increase  0x00000005 , 0x00000002 
+ 00020143  0x00002ab9 branch  0x00004f89 
+ 00020144  0x00002abc nbranch  0x00004eb6 , 0x00000031 
+ 00020145  0x00002abd disable  0x00000031 
+ 00020146  0x00002abe deposit  0x0000000b 
+ 00020147  0x00002abf isub  0x00000039 , 0x00000002 
+ 00020148  0x00002ac0 increase  0x00000005 , 0x00000002 
+ 00020149  0x00002ac1 branch  0x00004f89 
+ 00020150  0x00002ac4 jam  0x00000010 , 0x0000039d 
+ 00020151  0x00002ac5 branch  0x00004d6f 
+ 00020152  0x00002ac9 fetch  0x00000002 , 0x0000039b 
+ 00020153  0x00002aca branch  0x00004c4d , 0x00000034 
+ 00020154  0x00002acb istore  0x00000002 , 0x00000005 
+ 00020155  0x00002acc setarg  0x0000ffff 
+ 00020156  0x00002acd istore  0x00000002 , 0x00000005 
+ 00020157  0x00002ace setarg  0x00002800 
+ 00020158  0x00002acf istore  0x00000002 , 0x00000005 
+ 00020159  0x00002ad0 branch  0x00004f81 
+ 00020160  0x00002ad7 arg  0x00000002 , 0x0000000b 
+ 00020161  0x00002ad8 fetch  0x00000002 , 0x000044e3 
+ 00020162  0x00002ad9 store  0x00000002 , 0x000009c6 
+ 00020163  0x00002ada jam  0x00000000 , 0x000003d9 
+ 00020164  0x00002adc fetcht  0x00000002 , 0x000044e3 
+ 00020165  0x00002add storet  0x00000002 , 0x000009c6 
+ 00020166  0x00002ade call  0x000051e0 
+ 00020167  0x00002adf call  0x000051f8 
+ 00020168  0x00002ae0 increase  0xfffffffe , 0x00000006 
+ 00020169  0x00002ae1 copy  0x00000006 , 0x0000003f 
+ 00020170  0x00002ae2 store  0x00000002 , 0x000003c1 
+ 00020171  0x00002ae3 set1  0x00000025 , 0x00000000 
+ 00020172  0x00002ae4 bpatch  0x00000036 , 0x00004026 
+ 00020173  0x00002ae6 call  0x00004eff 
+ 00020174  0x00002ae7 nbranch  0x00004ef1 , 0x00000002 
+ 00020175  0x00002ae8 fetcht  0x00000002 , 0x000009c6 
+ 00020176  0x00002ae9 call  0x00005217 
+ 00020177  0x00002aea beq  0x00000001 , 0x00004ef4 
+ 00020178  0x00002aec call  0x00004f03 
+ 00020179  0x00002aed nbranch  0x00004eed , 0x00000005 
+ 00020180  0x00002aee fetch  0x00000001 , 0x000003d9 
+ 00020181  0x00002aef beq  0x00000001 , 0x00004ef4 
+ 00020182  0x00002af0 nbranch  0x00004edd , 0x00000028 
+ 00020183  0x00002af1 disable  0x00000028 
+ 00020184  0x00002af2 fetch  0x00000001 , 0x000003d8 
+ 00020185  0x00002af3 increase  0x00000004 , 0x0000003f 
+ 00020186  0x00002af4 store  0x00000001 , 0x0000446c 
+ 00020187  0x00002af5 call  0x00007e6a 
+ 00020188  0x00002af6 branch  0x00004ee8 
+ 00020189  0x00002af8 fetch  0x00000001 , 0x0000446c 
+ 00020190  0x00002af9 beq  0x00000014 , 0x00004ef4 
+ 00020191  0x00002afa fetch  0x00000001 , 0x000003d8 
+ 00020192  0x00002afb increase  0x00000004 , 0x0000003f 
+ 00020193  0x00002afc fetcht  0x00000001 , 0x0000446c 
+ 00020194  0x00002afd isub  0x00000002 , 0x0000003e 
+ 00020195  0x00002afe nbranch  0x00004ef4 , 0x00000005 
+ 00020196  0x00002b02 fetch  0x00000002 , 0x000009c6 
+ 00020197  0x00002b03 increase  0xffffffff , 0x0000003f 
+ 00020198  0x00002b04 store  0x00000002 , 0x000003c5 
+ 00020199  0x00002b05 call  0x00004f15 
+ 00020200  0x00002b07 fetch  0x00000002 , 0x000009c6 
+ 00020201  0x00002b08 store  0x00000002 , 0x000003c3 
+ 00020202  0x00002b09 call  0x00004f0e 
+ 00020203  0x00002b0a increase  0xffffffff , 0x0000000b 
+ 00020204  0x00002b0b branch  0x00004eef , 0x00000005 
+ 00020205  0x00002b0d call  0x00004efb 
+ 00020206  0x00002b0e branch  0x00004ecd 
+ 00020207  0x00002b10 jam  0x00000001 , 0x000003d9 
+ 00020208  0x00002b11 branch  0x00004eed 
+ 00020209  0x00002b13 fetch  0x00000002 , 0x000009c6 
+ 00020210  0x00002b14 store  0x00000002 , 0x000003c5 
+ 00020211  0x00002b15 branch  0x00004ef8 
+ 00020212  0x00002b17 fetch  0x00000002 , 0x000009c6 
+ 00020213  0x00002b18 increase  0xffffffff , 0x0000003f 
+ 00020214  0x00002b19 store  0x00000002 , 0x000003c5 
+ 00020215  0x00002b1a branch  0x00004ef8 
+ 00020216  0x00002b1c branch  0x00004d6e , 0x00000028 
+ 00020217  0x00002b1d call  0x00004f15 
+ 00020218  0x00002b1e branch  0x00004f13 
+ 00020219  0x00002b22 fetcht  0x00000002 , 0x000009c6 
+ 00020220  0x00002b23 increase  0x00000001 , 0x00000002 
+ 00020221  0x00002b24 storet  0x00000002 , 0x000009c6 
+ 00020222  0x00002b25 rtn 
+ 00020223  0x00002b28 fetcht  0x00000002 , 0x000009c6 
+ 00020224  0x00002b29 fetch  0x00000002 , 0x000044e5 
+ 00020225  0x00002b2a isub  0x00000002 , 0x0000003e 
+ 00020226  0x00002b2b rtn 
+ 00020227  0x00002b2e fetcht  0x00000001 , 0x000044e7 
+ 00020228  0x00002b2f arg  0x000044e8 , 0x00000011 
+ 00020229  0x00002b31 fetch  0x00000001 , 0x000003c7 
+ 00020230  0x00002b32 copy  0x0000003f , 0x00000039 
+ 00020231  0x00002b33 isub  0x00000002 , 0x0000003e 
+ 00020232  0x00002b34 nrtn  0x00000005 
+ 00020233  0x00002b35 arg  0x000003c8 , 0x00000012 
+ 00020234  0x00002b36 branch  0x00007f55 
+ 00020235  0x00002b39 fetcht  0x00000001 , 0x000044fa 
+ 00020236  0x00002b3a arg  0x000044fb , 0x00000011 
+ 00020237  0x00002b3b branch  0x00004f05 
+ 00020238  0x00002b3f fetch  0x00000001 , 0x000003d8 
+ 00020239  0x00002b40 store  0x00000001 , 0x00000100 
+ 00020240  0x00002b41 copy  0x0000003f , 0x00000039 
+ 00020241  0x00002b42 call  0x00007e67 
+ 00020242  0x00002b43 branch  0x00007ec0 
+ 00020243  0x00002b46 call  0x00007e64 
+ 00020244  0x00002b47 branch  0x00004f81 
+ 00020245  0x00002b4a call  0x00007e64 
+ 00020246  0x00002b4b fetch  0x00000002 , 0x000003c3 
+ 00020247  0x00002b4c istore  0x00000002 , 0x00000005 
+ 00020248  0x00002b4d fetch  0x00000002 , 0x000003c5 
+ 00020249  0x00002b4e istore  0x00000002 , 0x00000005 
+ 00020250  0x00002b50 fetch  0x00000001 , 0x00000100 
+ 00020251  0x00002b51 copy  0x0000003f , 0x00000039 
+ 00020252  0x00002b52 call  0x00007ec0 
+ 00020253  0x00002b53 branch  0x00007e6a 
+ 00020254  0x00002b56 fetch  0x00000002 , 0x000044f8 
+ 00020255  0x00002b57 store  0x00000002 , 0x0000446c 
+ 00020256  0x00002b58 fetch  0x00000001 , 0x0000450b 
+ 00020257  0x00002b59 copy  0x0000003f , 0x00000039 
+ 00020258  0x00002b5a arg  0x0000450c , 0x00000006 
+ 00020259  0x00002b5b call  0x00007ec0 
+ 00020260  0x00002b5c branch  0x00004f81 
+ 00020261  0x00002b60 force  0x00000005 , 0x00000002 
+ 00020262  0x00002b61 branch  0x00004f89 
+ 00020263  0x00002b64 force  0x00000006 , 0x00000002 
+ 00020264  0x00002b65 branch  0x00004f89 
+ 00020265  0x00002b68 fetch  0x00000001 , 0x000003da 
+ 00020266  0x00002b69 beq  0x00000001 , 0x00004f2e 
+ 00020267  0x00002b6a beq  0x00000002 , 0x00004f30 
+ 00020268  0x00002b6b jam  0x00000000 , 0x000003da 
+ 00020269  0x00002b6c rtn 
+ 00020270  0x00002b6f fetch  0x00000002 , 0x0000429e 
+ 00020271  0x00002b70 branch  0x00007f69 
+ 00020272  0x00002b73 fetch  0x00000002 , 0x000045a0 
+ 00020273  0x00002b74 branch  0x00003b31 , 0x00000034 
+ 00020274  0x00002b75 fetcht  0x00000002 , 0x000045a6 
+ 00020275  0x00002b76 branch  0x00003b31 , 0x00000034 
+ 00020276  0x00002b77 isub  0x00000002 , 0x0000003f 
+ 00020277  0x00002b78 arg  0x0000001b , 0x00000002 
+ 00020278  0x00002b79 call  0x00007faf 
+ 00020279  0x00002b7a copy  0x0000003f , 0x00000039 
+ 00020280  0x00002b7f arg  0x00000a41 , 0x00000011 
+ 00020281  0x00002b80 fetch  0x00000002 , 0x000045a6 
+ 00020282  0x00002b81 iadd  0x00000011 , 0x00000011 
+ 00020283  0x00002b82 iadd  0x00000039 , 0x0000003f 
+ 00020284  0x00002b83 store  0x00000002 , 0x000045a6 
+ 00020285  0x00002b84 fetcht  0x00000002 , 0x000045a0 
+ 00020286  0x00002b85 isub  0x00000002 , 0x00000002 
+ 00020287  0x00002b86 ncall  0x00004f5e , 0x00000005 
+ 00020288  0x00002b87 jam  0x00000002 , 0x000003da 
+ 00020289  0x00002b88 arg  0x00004467 , 0x00000005 
+ 00020290  0x00002b89 copy  0x00000011 , 0x00000006 
+ 00020291  0x00002b8a call  0x00007ec0 
+ 00020292  0x00002b8b arg  0x00000001 , 0x00000001 
+ 00020293  0x00002b8c branch  0x00004f59 
+ 00020294  0x00002b90 fetch  0x00000002 , 0x000045a0 
+ 00020295  0x00002b91 branch  0x00003b31 , 0x00000034 
+ 00020296  0x00002b92 add  0x0000003f , 0x00000005 , 0x00000002 
+ 00020297  0x00002b93 storet  0x00000002 , 0x00004467 
+ 00020298  0x00002b94 arg  0x00000012 , 0x00000002 
+ 00020299  0x00002b95 call  0x00007faf 
+ 00020300  0x00002b96 copy  0x0000003f , 0x00000039 
+ 00020301  0x00002b97 store  0x00000002 , 0x000045a6 
+ 00020302  0x00002b9a fetcht  0x00000002 , 0x000045a0 
+ 00020303  0x00002b9b isub  0x00000002 , 0x00000002 
+ 00020304  0x00002b9c ncall  0x00004f5e , 0x00000005 
+ 00020305  0x00002b9d jam  0x00000002 , 0x000003da 
+ 00020306  0x00002b9e arg  0x00000002 , 0x00000001 
+ 00020307  0x00002ba2 fetch  0x00000002 , 0x000045a4 
+ 00020308  0x00002ba3 store  0x00000002 , 0x0000446c 
+ 00020309  0x00002ba4 fetch  0x00000002 , 0x000045a2 
+ 00020310  0x00002ba5 istore  0x00000002 , 0x00000005 
+ 00020311  0x00002baa arg  0x00000a41 , 0x00000006 
+ 00020312  0x00002bab call  0x00007ec0 
+ 00020313  0x00002bad setarg  0x00004467 
+ 00020314  0x00002bae isub  0x00000005 , 0x0000003f 
+ 00020315  0x00002baf sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00020316  0x00002bb0 storet  0x00000001 , 0x00004466 
+ 00020317  0x00002bb1 branch  0x00004f90 
+ 00020318  0x00002bb5 fetch  0x00000003 , 0x00004544 
+ 00020319  0x00002bb6 nbranch  0x00004f62 , 0x00000034 
+ 00020320  0x00002bb7 jam  0x0000001f , 0x00004546 
+ 00020321  0x00002bb8 rtn 
+ 00020322  0x00002bba call  0x00004bd4 
+ 00020323  0x00002bbb nbranch  0x00003b31 , 0x00000034 
+ 00020324  0x00002bbc jam  0x0000001f , 0x00004545 
+ 00020325  0x00002bbd rtn 
+ 00020326  0x00002bc2 force  0x00000006 , 0x00000002 
+ 00020327  0x00002bc3 branch  0x00004f89 
+ 00020328  0x00002bc6 force  0x00000005 , 0x00000002 
+ 00020329  0x00002bc7 branch  0x00004f89 
+ 00020330  0x00002bca set1  0x00000025 , 0x00000000 
+ 00020331  0x00002bcb bpatch  0x00000037 , 0x00004026 
+ 00020332  0x00002bcc increase  0x00000001 , 0x00000002 
+ 00020333  0x00002bcd call  0x000051f5 
+ 00020334  0x00002bce increase  0xfffffffe , 0x00000006 
+ 00020335  0x00002bcf ifetch  0x00000002 , 0x00000006 
+ 00020336  0x00002bd0 arg  0x00002902 , 0x00000002 
+ 00020337  0x00002bd1 isub  0x00000002 , 0x0000003e 
+ 00020338  0x00002bd2 nrtn  0x00000005 
+ 00020339  0x00002bd3 increase  0x00000001 , 0x00000006 
+ 00020340  0x00002bd4 copy  0x00000006 , 0x00000011 
+ 00020341  0x00002bd5 ifetch  0x00000001 , 0x00000006 
+ 00020342  0x00002bd6 rtn 
+ 00020343  0x00002bd9 fetch  0x00000002 , 0x0000429c 
+ 00020344  0x00002bda branch  0x00007f69 
+ 00020345  0x00002bdd force  0x00000006 , 0x00000002 
+ 00020346  0x00002bde branch  0x00004f89 
+ 00020347  0x00002be1 force  0x00000006 , 0x00000002 
+ 00020348  0x00002be2 branch  0x00004f89 
+ 00020349  0x00002be5 force  0x00000006 , 0x00000002 
+ 00020350  0x00002be6 branch  0x00004f89 
+ 00020351  0x00002be9 force  0x00000006 , 0x00000002 
+ 00020352  0x00002bea branch  0x00004f89 
+ 00020353  0x00002bee set1  0x00000025 , 0x00000000 
+ 00020354  0x00002bef bpatch  0x00000038 , 0x00004027 
+ 00020355  0x00002bf0 setarg  0x00004467 
+ 00020356  0x00002bf1 isub  0x00000005 , 0x0000003f 
+ 00020357  0x00002bf2 sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00020358  0x00002bf3 branch  0x00004f89 
+ 00020359  0x00002bf7 force  0x00000000 , 0x00000002 
+ 00020360  0x00002bf8 force  0x00000001 , 0x00000001 
+ 00020361  0x00002bfb set1  0x00000025 , 0x00000000 
+ 00020362  0x00002bfc bpatch  0x00000039 , 0x00004027 
+ 00020363  0x00002bfd storet  0x00000001 , 0x00004466 
+ 00020364  0x00002bfe compare  0x00000002 , 0x00000001 , 0x00000003 
+ 00020365  0x00002bff nbranch  0x00004f90 , 0x00000001 
+ 00020366  0x00002c00 add  0x00000002 , 0xfffffffc , 0x0000003f 
+ 00020367  0x00002c01 store  0x00000002 , 0x00004467 
+ 00020368  0x00002c04 fetcht  0x00000001 , 0x00000379 
+ 00020369  0x00002c05 call  0x00004bd0 
+ 00020370  0x00002c07 nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00020371  0x00002c09 set1  0x00000005 , 0x00000002 
+ 00020372  0x00002c0a and  0x00000002 , 0x000000fc , 0x0000003f 
+ 00020373  0x00002c0b ior  0x00000001 , 0x0000003f 
+ 00020374  0x00002c0c store  0x00000001 , 0x00000379 
+ 00020375  0x00002c0d and_into  0x0000001f , 0x0000003f 
+ 00020376  0x00002c0e store  0x00000001 , 0x00004465 
+ 00020377  0x00002c0f set1  0x00000025 , 0x00000000 
+ 00020378  0x00002c10 bpatch  0x0000003a , 0x00004027 
+ 00020379  0x00002c11 fetch  0x00000001 , 0x00004465 
+ 00020380  0x00002c12 compare  0x00000001 , 0x00000001 , 0x00000003 
+ 00020381  0x00002c13 nbranch  0x00004fa0 , 0x00000001 
+ 00020382  0x00002c14 fetch  0x00000001 , 0x00004466 
+ 00020383  0x00002c15 rtn  0x00000034 
+ 00020384  0x00002c17 fetch  0x00000007 , 0x00004466 
+ 00020385  0x00002c18 fetch  0x00000001 , 0x00000362 
+ 00020386  0x00002c19 rtnbit0  0x00000004 
+ 00020387  0x00002c1a call  0x000071b6 
+ 00020388  0x00002c1b branch  0x00007109 
+ 00020389  0x00002c1e set1  0x00000025 , 0x00000000 
+ 00020390  0x00002c1f bpatch  0x0000003b , 0x00004027 
+ 00020391  0x00002c20 call  0x00004bd2 
+ 00020392  0x00002c21 nbranch  0x00003b31 , 0x00000034 
+ 00020393  0x00002c22 nrtn  0x00000034 
+ 00020394  0x00002c23 fetch  0x00000001 , 0x00000303 
+ 00020395  0x00002c24 rtn  0x00000034 
+ 00020396  0x00002c25 fetch  0x00000001 , 0x00000302 
+ 00020397  0x00002c26 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00020398  0x00002c27 branch  0x00005307 , 0x00000001 
+ 00020399  0x00002c28 fetch  0x00000007 , 0x00000303 
+ 00020400  0x00002c29 fetch  0x00000001 , 0x00000302 
+ 00020401  0x00002c2a compare  0x00000002 , 0x0000003f , 0x00000003 
+ 00020402  0x00002c2b branch  0x00004fcb , 0x00000001 
+ 00020403  0x00002c2d fetch  0x00000001 , 0x00000304 
+ 00020404  0x00002c2e store  0x00000001 , 0x000003bb 
+ 00020405  0x00002c2f copy  0x0000003f , 0x00000013 
+ 00020406  0x00002c30 set1  0x00000025 , 0x00000000 
+ 00020407  0x00002c31 bpatch  0x0000003c , 0x00004027 
+ 00020408  0x00002c32 copy  0x00000013 , 0x0000003f 
+ 00020409  0x00002c33 beq  0x00000000 , 0x0000501f 
+ 00020410  0x00002c34 beq  0x00000001 , 0x0000502b 
+ 00020411  0x00002c35 beq  0x00000002 , 0x00005033 
+ 00020412  0x00002c36 beq  0x00000003 , 0x00005039 
+ 00020413  0x00002c37 beq  0x00000004 , 0x0000504a 
+ 00020414  0x00002c38 beq  0x00000005 , 0x0000504f 
+ 00020415  0x00002c39 beq  0x00000006 , 0x00005054 
+ 00020416  0x00002c3a beq  0x00000007 , 0x00005059 
+ 00020417  0x00002c3b beq  0x00000008 , 0x0000505a 
+ 00020418  0x00002c3c beq  0x00000009 , 0x0000505c 
+ 00020419  0x00002c3d beq  0x0000000a , 0x0000505d 
+ 00020420  0x00002c3e beq  0x0000000b , 0x00005062 
+ 00020421  0x00002c3f beq  0x0000000c , 0x00005065 
+ 00020422  0x00002c40 beq  0x0000000d , 0x00005068 
+ 00020423  0x00002c41 beq  0x00000012 , 0x00005063 
+ 00020424  0x00002c42 store  0x00000001 , 0x00004550 
+ 00020425  0x00002c43 jam  0x00000027 , 0x000009bd 
+ 00020426  0x00002c44 branch  0x00004bd6 
+ 00020427  0x00002c47 fetch  0x00000001 , 0x00000303 
+ 00020428  0x00002c48 and  0x0000003f , 0x0000001f , 0x0000003f 
+ 00020429  0x00002c49 rtn  0x00000034 
+ 00020430  0x00002c4a fetch  0x00000002 , 0x00000304 
+ 00020431  0x00002c4b store  0x00000002 , 0x0000039e 
+ 00020432  0x00002c4c fetch  0x00000002 , 0x00000306 
+ 00020433  0x00002c4d beq  0x00000004 , 0x0000500d 
+ 00020434  0x00002c4e beq  0x00000006 , 0x00004ffb 
+ 00020435  0x00002c4f rtn 
+ 00020436  0x00002c52 jam  0x00000001 , 0x00004569 
+ 00020437  0x00002c53 fetch  0x00000001 , 0x0000039a 
+ 00020438  0x00002c54 beq  0x00000012 , 0x00004fea 
+ 00020439  0x00002c55 beq  0x00000016 , 0x00004fee 
+ 00020440  0x00002c56 beq  0x00000052 , 0x00004fe6 
+ 00020441  0x00002c57 jam  0x00000000 , 0x00004569 
+ 00020442  0x00002c58 rtn 
+ 00020443  0x00002c5c fetch  0x00000001 , 0x00000303 
+ 00020444  0x00002c5d icopy  0x00000012 
+ 00020445  0x00002c5e arg  0x00000304 , 0x00000011 
+ 00020446  0x00002c5f call  0x0000516d 
+ 00020447  0x00002c61 fetch  0x00000001 , 0x00000303 
+ 00020448  0x00002c62 fetcht  0x00000002 , 0x0000459a 
+ 00020449  0x00002c63 iadd  0x00000002 , 0x0000003f 
+ 00020450  0x00002c65 store  0x00000002 , 0x0000459a 
+ 00020451  0x00002c66 fetcht  0x00000002 , 0x0000459c 
+ 00020452  0x00002c67 isub  0x00000002 , 0x0000003e 
+ 00020453  0x00002c68 rtn 
+ 00020454  0x00002c6b call  0x00004fdb 
+ 00020455  0x00002c6c nrtn  0x00000005 
+ 00020456  0x00002c6d jam  0x00000000 , 0x00004569 
+ 00020457  0x00002c6e rtn 
+ 00020458  0x00002c71 call  0x00004fdb 
+ 00020459  0x00002c72 nrtn  0x00000005 
+ 00020460  0x00002c73 jam  0x00000000 , 0x00004569 
+ 00020461  0x00002c74 branch  0x00005123 
+ 00020462  0x00002c77 fetcht  0x00000002 , 0x000045a0 
+ 00020463  0x00002c78 fetch  0x00000001 , 0x00000303 
+ 00020464  0x00002c79 icopy  0x00000039 
+ 00020465  0x00002c7a iadd  0x00000002 , 0x0000003f 
+ 00020466  0x00002c7b store  0x00000002 , 0x000045a0 
+ 00020467  0x00002c7d arg  0x00000a41 , 0x0000003f 
+ 00020468  0x00002c7e iadd  0x00000002 , 0x00000005 
+ 00020469  0x00002c7f arg  0x00000304 , 0x00000006 
+ 00020470  0x00002c80 call  0x00007ec0 
+ 00020471  0x00002c82 call  0x00004fdb 
+ 00020472  0x00002c83 nrtn  0x00000005 
+ 00020473  0x00002c84 jam  0x00000000 , 0x00004569 
+ 00020474  0x00002c85 branch  0x00005169 
+ 00020475  0x00002c8c set1  0x00000025 , 0x00000000 
+ 00020476  0x00002c8d bpatch  0x0000003d , 0x00004027 
+ 00020477  0x00002c8e ifetch  0x00000001 , 0x00000006 
+ 00020478  0x00002c8f beq  0x00000001 , 0x00005069 
+ 00020479  0x00002c90 beq  0x00000002 , 0x0000508b 
+ 00020480  0x00002c91 beq  0x00000003 , 0x00005090 
+ 00020481  0x00002c92 beq  0x00000004 , 0x000050a0 
+ 00020482  0x00002c93 beq  0x00000005 , 0x000050a8 
+ 00020483  0x00002c94 beq  0x00000006 , 0x000050d5 
+ 00020484  0x00002c95 beq  0x00000007 , 0x000050d7 
+ 00020485  0x00002c96 beq  0x00000008 , 0x000050d8 
+ 00020486  0x00002c97 beq  0x00000009 , 0x000050e0 
+ 00020487  0x00002c98 beq  0x0000000a , 0x000050e3 
+ 00020488  0x00002c99 beq  0x0000000b , 0x000050e4 
+ 00020489  0x00002c9a beq  0x0000000c , 0x000050c9 
+ 00020490  0x00002c9b beq  0x0000000d , 0x000050d0 
+ 00020491  0x00002c9c jam  0x00000045 , 0x000009bd 
+ 00020492  0x00002c9d branch  0x00004bd6 
+ 00020493  0x00002ca0 set1  0x00000025 , 0x00000000 
+ 00020494  0x00002ca1 bpatch  0x0000003e , 0x00004027 
+ 00020495  0x00002ca2 ifetch  0x00000003 , 0x00000006 
+ 00020496  0x00002ca3 store  0x00000003 , 0x0000039a 
+ 00020497  0x00002ca5 beq  0x00000002 , 0x000050e8 
+ 00020498  0x00002ca6 beq  0x00000003 , 0x000050e5 
+ 00020499  0x00002ca7 beq  0x00000004 , 0x000050eb 
+ 00020500  0x00002ca9 beq  0x00000006 , 0x000050ee 
+ 00020501  0x00002cab beq  0x00000008 , 0x000050f8 
+ 00020502  0x00002cad beq  0x0000000a , 0x0000510c 
+ 00020503  0x00002caf beq  0x0000000c , 0x00005110 
+ 00020504  0x00002cb1 beq  0x0000000e , 0x00005114 
+ 00020505  0x00002cb3 beq  0x00000010 , 0x0000511a 
+ 00020506  0x00002cb5 beq  0x00000012 , 0x00005120 
+ 00020507  0x00002cb7 beq  0x00000016 , 0x00005142 
+ 00020508  0x00002cb9 beq  0x00000018 , 0x0000516b 
+ 00020509  0x00002cbe beq  0x00000052 , 0x0000511e 
+ 00020510  0x00002cc0 rtn 
+ 00020511  0x00002cc4 ifetch  0x00000009 , 0x00000006 
+ 00020512  0x00002cc5 store  0x00000009 , 0x0000445b 
+ 00020513  0x00002cc6 ifetch  0x00000002 , 0x00000006 
+ 00020514  0x00002cc7 store  0x00000002 , 0x00000382 
+ 00020515  0x00002cc8 fetch  0x00000001 , 0x00000362 
+ 00020516  0x00002cc9 set1  0x00000005 , 0x0000003f 
+ 00020517  0x00002cca store  0x00000001 , 0x00000362 
+ 00020518  0x00002ccb fetch  0x00000001 , 0x00004132 
+ 00020519  0x00002ccc rtnne  0x00000009 
+ 00020520  0x00002ccd jam  0x00000000 , 0x00004131 
+ 00020521  0x00002cce jam  0x0000001e , 0x000048c7 
+ 00020522  0x00002ccf rtn 
+ 00020523  0x00002cd2 ifetch  0x00000005 , 0x00000006 
+ 00020524  0x00002cd3 store  0x00000005 , 0x00004456 
+ 00020525  0x00002cd4 ifetch  0x00000002 , 0x00000006 
+ 00020526  0x00002cd5 store  0x00000002 , 0x00000382 
+ 00020527  0x00002cd6 fetch  0x00000001 , 0x00000362 
+ 00020528  0x00002cd7 set1  0x00000006 , 0x0000003f 
+ 00020529  0x00002cd8 store  0x00000001 , 0x00000362 
+ 00020530  0x00002cd9 rtn 
+ 00020531  0x00002cdc fetch  0x00000001 , 0x00004132 
+ 00020532  0x00002cdd bne  0x00000009 , 0x00005036 
+ 00020533  0x00002cde jam  0x00000001 , 0x000048bb 
+ 00020534  0x00002ce0 setarg  0x00000014 
+ 00020535  0x00002ce1 store  0x00000002 , 0x00000390 
+ 00020536  0x00002ce2 rtn 
+ 00020537  0x00002ce5 ifetch  0x00000008 , 0x00000006 
+ 00020538  0x00002ce6 store  0x00000008 , 0x00004573 
+ 00020539  0x00002ce7 ifetch  0x00000002 , 0x00000006 
+ 00020540  0x00002ce8 store  0x00000002 , 0x00004571 
+ 00020541  0x00002ce9 ifetch  0x00000008 , 0x00000006 
+ 00020542  0x00002cea store  0x00000008 , 0x00004551 
+ 00020543  0x00002ceb ifetch  0x00000004 , 0x00000006 
+ 00020544  0x00002cec store  0x00000004 , 0x0000449a 
+ 00020545  0x00002ced jam  0x00000024 , 0x000009bd 
+ 00020546  0x00002cee call  0x00004bd6 
+ 00020547  0x00002cef jam  0x00000001 , 0x0000456b 
+ 00020548  0x00002cf0 fetch  0x00000001 , 0x0000456a 
+ 00020549  0x00002cf1 rtneq  0x00000002 
+ 00020550  0x00002cf2 fetch  0x00000001 , 0x00004132 
+ 00020551  0x00002cf3 beq  0x00000009 , 0x00006418 
+ 00020552  0x00002cf4 rtnne  0x0000000a 
+ 00020553  0x00002cf5 branch  0x0000640c 
+ 00020554  0x00002cf8 ifetch  0x00000008 , 0x00000006 
+ 00020555  0x00002cf9 store  0x00000008 , 0x00004559 
+ 00020556  0x00002cfa ifetch  0x00000004 , 0x00000006 
+ 00020557  0x00002cfb store  0x00000004 , 0x0000449e 
+ 00020558  0x00002cfc branch  0x000070c8 
+ 00020559  0x00002cff fetch  0x00000001 , 0x00000362 
+ 00020560  0x00002d00 set1  0x00000004 , 0x0000003f 
+ 00020561  0x00002d01 store  0x00000001 , 0x00000362 
+ 00020562  0x00002d02 jam  0x00000026 , 0x000009bd 
+ 00020563  0x00002d03 branch  0x00004bd6 
+ 00020564  0x00002d06 rtn  0x00000029 
+ 00020565  0x00002d07 jam  0x00000026 , 0x000009bd 
+ 00020566  0x00002d08 call  0x00004bd6 
+ 00020567  0x00002d09 jam  0x00000032 , 0x000009bd 
+ 00020568  0x00002d0a branch  0x00007d86 
+ 00020569  0x00002d0d rtn 
+ 00020570  0x00002d10 jam  0x00000029 , 0x000009bd 
+ 00020571  0x00002d11 branch  0x00004bd6 
+ 00020572  0x00002d14 rtn 
+ 00020573  0x00002d17 jam  0x00000002 , 0x0000456b 
+ 00020574  0x00002d18 jam  0x0000002b , 0x000009bd 
+ 00020575  0x00002d19 call  0x00004bd6 
+ 00020576  0x00002d1a jam  0x00000033 , 0x000009bd 
+ 00020577  0x00002d1b branch  0x00007d86 
+ 00020578  0x00002d1f rtn 
+ 00020579  0x00002d22 jam  0x00000033 , 0x000009bd 
+ 00020580  0x00002d23 branch  0x00004bd6 
+ 00020581  0x00002d26 rtn  0x00000029 
+ 00020582  0x00002d27 jam  0x0000002c , 0x000009bd 
+ 00020583  0x00002d28 branch  0x00004bd6 
+ 00020584  0x00002d2b rtn 
+ 00020585  0x00002d2f store  0x00000001 , 0x000044d5 
+ 00020586  0x00002d30 ifetch  0x00000006 , 0x00000006 
+ 00020587  0x00002d31 istore  0x00000006 , 0x00000005 
+ 00020588  0x00002d32 jam  0x00000042 , 0x000009bd 
+ 00020589  0x00002d33 call  0x00004bd6 
+ 00020590  0x00002d34 fetch  0x00000001 , 0x00004132 
+ 00020591  0x00002d35 beq  0x00000009 , 0x0000507b 
+ 00020592  0x00002d36 call  0x00005086 
+ 00020593  0x00002d37 jam  0x00000001 , 0x0000456a 
+ 00020594  0x00002d38 fetch  0x00000001 , 0x000044d6 
+ 00020595  0x00002d39 beq  0x00000000 , 0x00005078 
+ 00020596  0x00002d3a beq  0x00000001 , 0x00005078 
+ 00020597  0x00002d3b beq  0x00000003 , 0x00005078 
+ 00020598  0x00002d3c fetch  0x00000001 , 0x0000456c 
+ 00020599  0x00002d3d beq  0x00000002 , 0x0000507d 
+ 00020600  0x00002d3f arg  0x00000000 , 0x0000003f 
+ 00020601  0x00002d40 store  0x00000004 , 0x0000456d 
+ 00020602  0x00002d41 rtn 
+ 00020603  0x00002d43 jam  0x00000001 , 0x000048ba 
+ 00020604  0x00002d44 rtn 
+ 00020605  0x00002d47 arg  0x0000456d , 0x00000011 
+ 00020606  0x00002d48 copy  0x00000011 , 0x00000005 
+ 00020607  0x00002d49 arg  0x00000003 , 0x00000039 
+ 00020608  0x00002d4a call  0x00005918 
+ 00020609  0x00002d4b fetch  0x00000002 , 0x0000456f 
+ 00020610  0x00002d4c and_into  0x00000007 , 0x0000003f 
+ 00020611  0x00002d4d store  0x00000002 , 0x0000456f 
+ 00020612  0x00002d4e jam  0x00000034 , 0x000009bd 
+ 00020613  0x00002d4f branch  0x00007d86 
+ 00020614  0x00002d52 fetch  0x00000001 , 0x000044d8 
+ 00020615  0x00002d53 rtnbit1  0x00000003 
+ 00020616  0x00002d54 fetch  0x00000001 , 0x0000456c 
+ 00020617  0x00002d55 rtnbit0  0x00000007 
+ 00020618  0x00002d56 branch  0x00003e6b 
+ 00020619  0x00002d5a store  0x00000001 , 0x000044dc 
+ 00020620  0x00002d5b ifetch  0x00000006 , 0x00000006 
+ 00020621  0x00002d5c istore  0x00000006 , 0x00000005 
+ 00020622  0x00002d5d jam  0x00000043 , 0x000009bd 
+ 00020623  0x00002d5e branch  0x00004bd6 
+ 00020624  0x00002d61 copy  0x00000006 , 0x00000011 
+ 00020625  0x00002d62 fetch  0x00000001 , 0x0000456c 
+ 00020626  0x00002d63 beq  0x00000083 , 0x0000509a 
+ 00020627  0x00002d64 copy  0x00000011 , 0x00000006 
+ 00020628  0x00002d65 arg  0x000044b3 , 0x00000005 
+ 00020629  0x00002d66 call  0x00007e87 
+ 00020630  0x00002d67 jam  0x00000044 , 0x000009bd 
+ 00020631  0x00002d68 branch  0x00004bd6 , 0x00000029 
+ 00020632  0x00002d69 jam  0x00000043 , 0x000009bd 
+ 00020633  0x00002d6a branch  0x00004bd6 
+ 00020634  0x00002d6c copy  0x00000011 , 0x00000006 
+ 00020635  0x00002d6d arg  0x000044b3 , 0x00000005 
+ 00020636  0x00002d6e call  0x00007e87 
+ 00020637  0x00002d6f jam  0x00000002 , 0x00004564 
+ 00020638  0x00002d70 jam  0x00000008 , 0x00004566 
+ 00020639  0x00002d71 rtn 
+ 00020640  0x00002d74 copy  0x00000006 , 0x00000011 
+ 00020641  0x00002d75 fetch  0x00000001 , 0x00004563 
+ 00020642  0x00002d76 beq  0x00000001 , 0x000050ab 
+ 00020643  0x00002d77 copy  0x00000011 , 0x00000006 
+ 00020644  0x00002d78 call  0x000070ba 
+ 00020645  0x00002d79 branch  0x000050c0 , 0x00000005 
+ 00020646  0x00002d7b jam  0x00000045 , 0x000009bd 
+ 00020647  0x00002d7c call  0x00004bd6 
+ 00020648  0x00002d7e jam  0x00000000 , 0x0000456a 
+ 00020649  0x00002d7f jam  0x00000030 , 0x000009bd 
+ 00020650  0x00002d80 branch  0x00007d86 
+ 00020651  0x00002d83 arg  0x00000352 , 0x00000005 
+ 00020652  0x00002d84 copy  0x00000011 , 0x00000006 
+ 00020653  0x00002d85 call  0x00007e87 
+ 00020654  0x00002d86 fetch  0x00000001 , 0x0000456c 
+ 00020655  0x00002d87 beq  0x00000083 , 0x000050b6 
+ 00020656  0x00002d88 call  0x00006e6e 
+ 00020657  0x00002d8b jam  0x00000044 , 0x000009bd 
+ 00020658  0x00002d8c call  0x00004bd6 
+ 00020659  0x00002d8d fetch  0x00000001 , 0x0000456c 
+ 00020660  0x00002d8e beq  0x00000082 , 0x00005d60 
+ 00020661  0x00002d8f rtn 
+ 00020662  0x00002d92 call  0x00006edc 
+ 00020663  0x00002d93 arg  0x00000a11 , 0x00000005 
+ 00020664  0x00002d94 call  0x00006f24 
+ 00020665  0x00002d95 arg  0x00000a11 , 0x00000011 
+ 00020666  0x00002d96 arg  0x000044b3 , 0x00000012 
+ 00020667  0x00002d97 arg  0x00000010 , 0x00000039 
+ 00020668  0x00002d98 call  0x00007f55 
+ 00020669  0x00002d99 nbranch  0x000052d8 , 0x00000005 
+ 00020670  0x00002d9a jam  0x00000044 , 0x000009bd 
+ 00020671  0x00002d9b branch  0x00004bd6 
+ 00020672  0x00002d9e call  0x000070b5 
+ 00020673  0x00002d9f jam  0x00000031 , 0x000009bd 
+ 00020674  0x00002da0 call  0x00007d86 
+ 00020675  0x00002da1 jam  0x00000001 , 0x000044b2 
+ 00020676  0x00002da2 jam  0x00000002 , 0x0000456a 
+ 00020677  0x00002da3 jam  0x00000023 , 0x000009bd 
+ 00020678  0x00002da4 branch  0x00004bd6 , 0x00000029 
+ 00020679  0x00002da5 jam  0x00000044 , 0x000009bd 
+ 00020680  0x00002da6 branch  0x00004bd6 
+ 00020681  0x00002dab fetch  0x00000001 , 0x00000303 
+ 00020682  0x00002dac increase  0xfffffffb , 0x0000003f 
+ 00020683  0x00002dad store  0x00000001 , 0x000003db 
+ 00020684  0x00002dae copy  0x0000003f , 0x00000039 
+ 00020685  0x00002daf arg  0x000008e2 , 0x00000005 
+ 00020686  0x00002db0 increase  0x00000005 , 0x00000006 
+ 00020687  0x00002db1 branch  0x00007ec0 
+ 00020688  0x00002db4 arg  0x00000992 , 0x00000005 
+ 00020689  0x00002db5 call  0x00007e87 
+ 00020690  0x00002db6 jam  0x00000006 , 0x00004566 
+ 00020691  0x00002db7 jam  0x00000002 , 0x00004564 
+ 00020692  0x00002db8 rtn 
+ 00020693  0x00002dba arg  0x00000342 , 0x00000005 
+ 00020694  0x00002dbb branch  0x00007e87 
+ 00020695  0x00002dbe rtn 
+ 00020696  0x00002dc1 arg  0x0000457b , 0x00000005 
+ 00020697  0x00002dc2 call  0x00007e87 
+ 00020698  0x00002dc3 fetch  0x00000001 , 0x0000452b 
+ 00020699  0x00002dc4 rtneq  0x00000000 
+ 00020700  0x00002dc5 fetch  0x00000001 , 0x00000377 
+ 00020701  0x00002dc6 compare  0x000000c0 , 0x0000003f , 0x000000c0 
+ 00020702  0x00002dc7 rtn  0x00000001 
+ 00020703  0x00002dc8 branch  0x00003e7b 
+ 00020704  0x00002dcb jam  0x00000003 , 0x0000456b 
+ 00020705  0x00002dcc jam  0x00000003 , 0x0000456a 
+ 00020706  0x00002dcd rtn 
+ 00020707  0x00002dd0 rtn 
+ 00020708  0x00002dd3 rtn 
+ 00020709  0x00002dd7 fetch  0x00000002 , 0x00000309 
+ 00020710  0x00002dd8 store  0x00000002 , 0x0000454e 
+ 00020711  0x00002dd9 rtn 
+ 00020712  0x00002ddc call  0x000050e5 
+ 00020713  0x00002ddd jam  0x00000003 , 0x000009bd 
+ 00020714  0x00002dde branch  0x00004bd6 
+ 00020715  0x00002de1 call  0x000050fc 
+ 00020716  0x00002de2 jam  0x00000005 , 0x000009bd 
+ 00020717  0x00002de3 branch  0x00004bd6 
+ 00020718  0x00002de8 call  0x000050fc 
+ 00020719  0x00002de9 ifetch  0x00000002 , 0x00000006 
+ 00020720  0x00002dea store  0x00000002 , 0x000044fb 
+ 00020721  0x00002deb call  0x00007e6d 
+ 00020722  0x00002dec arg  0x000044e7 , 0x00000005 
+ 00020723  0x00002ded fetch  0x00000002 , 0x0000039e 
+ 00020724  0x00002dee increase  0xfffffff9 , 0x0000003f 
+ 00020725  0x00002def call  0x00005105 
+ 00020726  0x00002df0 jam  0x00000007 , 0x000009bd 
+ 00020727  0x00002df1 branch  0x00004bd6 
+ 00020728  0x00002df6 call  0x000050fc 
+ 00020729  0x00002df7 call  0x00005109 
+ 00020730  0x00002df8 jam  0x00000009 , 0x000009bd 
+ 00020731  0x00002df9 branch  0x00004bd6 
+ 00020732  0x00002dfd rshift8  0x0000003f , 0x0000003f 
+ 00020733  0x00002dfe store  0x00000002 , 0x000044e3 
+ 00020734  0x00002dff ifetch  0x00000002 , 0x00000006 
+ 00020735  0x00002e00 store  0x00000002 , 0x000044e5 
+ 00020736  0x00002e01 rtn 
+ 00020737  0x00002e04 call  0x00007e6d 
+ 00020738  0x00002e05 arg  0x000044e7 , 0x00000005 
+ 00020739  0x00002e07 fetch  0x00000002 , 0x0000039e 
+ 00020740  0x00002e08 increase  0xfffffffb , 0x0000003f 
+ 00020741  0x00002e0a istore  0x00000001 , 0x00000005 
+ 00020742  0x00002e0b copy  0x0000003f , 0x00000039 
+ 00020743  0x00002e0c call  0x00007e67 
+ 00020744  0x00002e0d branch  0x00007ec0 
+ 00020745  0x00002e10 call  0x00007e6d 
+ 00020746  0x00002e11 arg  0x000044fa , 0x00000005 
+ 00020747  0x00002e12 branch  0x00005103 
+ 00020748  0x00002e18 fetch  0x00000002 , 0x00000309 
+ 00020749  0x00002e19 store  0x00000002 , 0x0000039b 
+ 00020750  0x00002e1a jam  0x0000000b , 0x000009bd 
+ 00020751  0x00002e1b branch  0x00004bd6 
+ 00020752  0x00002e20 ifetch  0x00000002 , 0x00000006 
+ 00020753  0x00002e21 store  0x00000002 , 0x000044e7 
+ 00020754  0x00002e22 jam  0x0000000d , 0x000009bd 
+ 00020755  0x00002e23 branch  0x00004bd6 
+ 00020756  0x00002e27 fetch  0x00000001 , 0x00000303 
+ 00020757  0x00002e28 increase  0xfffffffb , 0x0000003f 
+ 00020758  0x00002e29 rshift  0x0000003f , 0x0000003f 
+ 00020759  0x00002e2a store  0x00000001 , 0x00004464 
+ 00020760  0x00002e2b jam  0x0000000f , 0x000009bd 
+ 00020761  0x00002e2c branch  0x00004bd6 
+ 00020762  0x00002e30 call  0x000050fc 
+ 00020763  0x00002e31 call  0x00005101 
+ 00020764  0x00002e33 jam  0x00000011 , 0x000009bd 
+ 00020765  0x00002e34 branch  0x00004bd6 
+ 00020766  0x00002e37 call  0x0000512f 
+ 00020767  0x00002e38 branch  0x00005125 
+ 00020768  0x00002e3b call  0x0000512f 
+ 00020769  0x00002e3c call  0x00005125 
+ 00020770  0x00002e3d nrtn  0x00000005 
+ 00020771  0x00002e3f jam  0x00000013 , 0x000009bd 
+ 00020772  0x00002e40 branch  0x00004bd6 
+ 00020773  0x00002e43 fetch  0x00000001 , 0x00000303 
+ 00020774  0x00002e44 increase  0xfffffffc , 0x0000003f 
+ 00020775  0x00002e45 store  0x00000002 , 0x0000459a 
+ 00020776  0x00002e46 increase  0xfffffffd , 0x0000003f 
+ 00020777  0x00002e48 ifetcht  0x00000002 , 0x00000006 
+ 00020778  0x00002e49 storet  0x00000002 , 0x0000459c 
+ 00020779  0x00002e4a storet  0x00000002 , 0x0000459e 
+ 00020780  0x00002e4b increase  0xfffffffd , 0x00000002 
+ 00020781  0x00002e4c isub  0x00000002 , 0x0000003e 
+ 00020782  0x00002e4d rtn 
+ 00020783  0x00002e50 fetch  0x00000001 , 0x00000303 
+ 00020784  0x00002e51 increase  0xfffffff9 , 0x0000003f 
+ 00020785  0x00002e52 icopy  0x00000039 
+ 00020786  0x00002e53 copy  0x00000039 , 0x00000012 
+ 00020787  0x00002e54 fetch  0x00000001 , 0x000045a8 
+ 00020788  0x00002e55 bbit0  0x00000001 , 0x00005140 
+ 00020789  0x00002e56 fetcht  0x00000002 , 0x0000039b 
+ 00020790  0x00002e57 call  0x000051f5 
+ 00020791  0x00002e58 rtn  0x00000034 
+ 00020792  0x00002e59 ifetch  0x00000001 , 0x00000006 
+ 00020793  0x00002e5a isub  0x00000039 , 0x0000003e 
+ 00020794  0x00002e5b branch  0x0000513c , 0x00000002 
+ 00020795  0x00002e5c copy  0x0000003f , 0x00000039 
+ 00020796  0x00002e5e copy  0x00000006 , 0x00000005 
+ 00020797  0x00002e5f copy  0x00000039 , 0x00000012 
+ 00020798  0x00002e60 arg  0x0000030b , 0x00000006 
+ 00020799  0x00002e61 call  0x00007ec0 
+ 00020800  0x00002e63 arg  0x0000030b , 0x00000011 
+ 00020801  0x00002e64 branch  0x0000516d 
+ 00020802  0x00002e68 fetch  0x00000001 , 0x00000303 
+ 00020803  0x00002e69 increase  0xfffffffc , 0x0000003f 
+ 00020804  0x00002e6a store  0x00000002 , 0x0000459a 
+ 00020805  0x00002e6b ifetcht  0x00000002 , 0x00000006 
+ 00020806  0x00002e6c storet  0x00000002 , 0x0000459c 
+ 00020807  0x00002e6d increase  0xfffffffe , 0x00000002 
+ 00020808  0x00002e6e storet  0x00000002 , 0x0000459e 
+ 00020809  0x00002e70 fetch  0x00000001 , 0x00000303 
+ 00020810  0x00002e71 increase  0xfffffff7 , 0x0000003f 
+ 00020811  0x00002e72 store  0x00000002 , 0x000045a0 
+ 00020812  0x00002e74 icopy  0x00000039 
+ 00020813  0x00002e75 copy  0x00000039 , 0x00000012 
+ 00020814  0x00002e76 fetch  0x00000001 , 0x000045a8 
+ 00020815  0x00002e77 bbit0  0x00000001 , 0x0000515b 
+ 00020816  0x00002e78 fetcht  0x00000002 , 0x0000039b 
+ 00020817  0x00002e79 call  0x000051f5 
+ 00020818  0x00002e7a branch  0x00005169 , 0x00000034 
+ 00020819  0x00002e7b ifetch  0x00000001 , 0x00000006 
+ 00020820  0x00002e7c isub  0x00000039 , 0x0000003e 
+ 00020821  0x00002e7d branch  0x00005157 , 0x00000002 
+ 00020822  0x00002e7e copy  0x0000003f , 0x00000039 
+ 00020823  0x00002e80 copy  0x00000006 , 0x00000005 
+ 00020824  0x00002e81 copy  0x00000039 , 0x00000012 
+ 00020825  0x00002e82 arg  0x0000030d , 0x00000006 
+ 00020826  0x00002e83 call  0x00007ec0 
+ 00020827  0x00002e86 copy  0x00000012 , 0x00000039 
+ 00020828  0x00002e87 arg  0x00000a41 , 0x00000005 
+ 00020829  0x00002e88 arg  0x0000030d , 0x00000006 
+ 00020830  0x00002e89 call  0x00007ec0 
+ 00020831  0x00002e8b arg  0x0000030d , 0x00000011 
+ 00020832  0x00002e8c fetch  0x00000002 , 0x0000030b 
+ 00020833  0x00002e8d store  0x00000002 , 0x000045a2 
+ 00020834  0x00002e8e fetcht  0x00000002 , 0x0000039b 
+ 00020835  0x00002e8f storet  0x00000002 , 0x000045a4 
+ 00020836  0x00002e91 call  0x0000516d 
+ 00020837  0x00002e93 fetch  0x00000002 , 0x0000459a 
+ 00020838  0x00002e94 fetcht  0x00000002 , 0x0000459c 
+ 00020839  0x00002e95 isub  0x00000002 , 0x0000003e 
+ 00020840  0x00002e96 nrtn  0x00000005 
+ 00020841  0x00002e98 jam  0x00000017 , 0x000009bd 
+ 00020842  0x00002e99 branch  0x00004bd6 
+ 00020843  0x00002e9e jam  0x00000019 , 0x000009bd 
+ 00020844  0x00002e9f branch  0x00004bd6 
+ 00020845  0x00002ea3 fetch  0x00000002 , 0x0000429a 
+ 00020846  0x00002ea4 rtn  0x00000034 
+ 00020847  0x00002ea5 iforce  0x0000003d 
+ 00020848  0x00002ea8 fetcht  0x00000004 , 0x0000037e 
+ 00020849  0x00002ea9 call  0x00003b1e 
+ 00020850  0x00002eaa isub  0x00000002 , 0x0000000b 
+ 00020851  0x00002eab deposit  0x0000000b 
+ 00020852  0x00002eac fetcht  0x00000002 , 0x00000390 
+ 00020853  0x00002ead lshift4  0x00000002 , 0x00000002 
+ 00020854  0x00002eae lshift  0x00000002 , 0x00000002 
+ 00020855  0x00002eaf isub  0x00000002 , 0x0000003f 
+ 00020856  0x00002eb0 rtn 
+ 00020857  0x00002eb3 call  0x00003b1e 
+ 00020858  0x00002eb4 store  0x00000004 , 0x0000037e 
+ 00020859  0x00002eb5 rtn 
+ 00020860  0x00002eba jam  0x00000024 , 0x00000016 
+ 00020861  0x00002ebc set1  0x00000025 , 0x00000000 
+ 00020862  0x00002ebd bpatch  0x0000003f , 0x00004027 
+ 00020863  0x00002ebe fetch  0x00000001 , 0x000043ff 
+ 00020864  0x00002ebf rtn  0x00000034 
+ 00020865  0x00002ec0 arg  0x00000001 , 0x00000007 
+ 00020866  0x00002ec1 call  0x00007ee2 
+ 00020867  0x00002ec2 nrtn  0x00000034 
+ 00020868  0x00002ec3 disable  0x00000029 
+ 00020869  0x00002ec4 enable  0x00000010 
+ 00020870  0x00002ec5 call  0x00004b1e 
+ 00020871  0x00002ec6 call  0x000049d4 
+ 00020872  0x00002ec7 call  0x00004a8a 
+ 00020873  0x00002ec8 nbranch  0x00005193 , 0x0000002d 
+ 00020874  0x00002ec9 fetch  0x00000001 , 0x00000003 
+ 00020875  0x00002eca increase  0x00000001 , 0x0000003f 
+ 00020876  0x00002ecb store  0x00000001 , 0x00000003 
+ 00020877  0x00002ecc set1  0x00000025 , 0x00000000 
+ 00020878  0x00002ecd bpatch  0x00000040 , 0x00004028 
+ 00020879  0x00002ece fetch  0x00000001 , 0x00000302 
+ 00020880  0x00002ecf and  0x0000003f , 0x0000000f , 0x0000003f 
+ 00020881  0x00002ed0 beq  0x00000003 , 0x00004ac5 
+ 00020882  0x00002ed1 beq  0x00000005 , 0x000051af 
+ 00020883  0x00002ed3 nop  0x00002710 
+ 00020884  0x00002ed4 fetch  0x00000001 , 0x00000016 
+ 00020885  0x00002ed5 bne  0x00000027 , 0x0000517d 
+ 00020886  0x00002ed6 arg  0x00000001 , 0x00000007 
+ 00020887  0x00002ed7 fetch  0x00000002 , 0x0000451e 
+ 00020888  0x00002ed8 branch  0x00007ed4 
+ 00020889  0x00002edc set1  0x00000025 , 0x00000000 
+ 00020890  0x00002edd bpatch  0x00000041 , 0x00004028 
+ 00020891  0x00002ede fetch  0x00000001 , 0x00000399 
+ 00020892  0x00002edf call  0x000049ad 
+ 00020893  0x00002ee0 fetch  0x00000002 , 0x00000364 
+ 00020894  0x00002ee1 imul32  0x00000002 , 0x0000003f 
+ 00020895  0x00002ee2 arg  0x00000177 , 0x00000002 
+ 00020896  0x00002ee3 imul32  0x00000002 , 0x0000003f 
+ 00020897  0x00002ee4 arg  0x000186a0 , 0x00000002 
+ 00020898  0x00002ee5 idiv  0x00000002 
+ 00020899  0x00002ee6 fetch  0x00000001 , 0x0000038d 
+ 00020900  0x00002ee7 arg  0x00004e20 , 0x00000002 
+ 00020901  0x00002ee8 imul32  0x00000002 , 0x0000003f 
+ 00020902  0x00002ee9 store  0x00000004 , 0x00004596 
+ 00020903  0x00002eea set1  0x00000025 , 0x00000000 
+ 00020904  0x00002eeb bpatch  0x00000042 , 0x00004028 
+ 00020905  0x00002eec fetch  0x00000002 , 0x00004161 
+ 00020906  0x00002eed call  0x00007f53 
+ 00020907  0x00002eee quotient  0x00000002 
+ 00020908  0x00002eef iadd  0x00000002 , 0x0000003f 
+ 00020909  0x00002ef0 store  0x00000002 , 0x00000370 
+ 00020910  0x00002ef1 rtn 
+ 00020911  0x00002ef4 set1  0x00000025 , 0x00000000 
+ 00020912  0x00002ef5 bpatch  0x00000043 , 0x00004028 
+ 00020913  0x00002ef6 fetch  0x00000006 , 0x0000030a 
+ 00020914  0x00002ef7 fetcht  0x00000006 , 0x0000453e 
+ 00020915  0x00002ef8 isub  0x00000002 , 0x0000003e 
+ 00020916  0x00002ef9 nrtn  0x00000005 
+ 00020917  0x00002efa call  0x00004bc9 
+ 00020918  0x00002efb copy  0x00000011 , 0x0000003f 
+ 00020919  0x00002efc store  0x00000001 , 0x0000452b 
+ 00020920  0x00002efd fetch  0x00000007 , 0x00000317 
+ 00020921  0x00002efe store  0x00000007 , 0x00000100 
+ 00020922  0x00002eff ifetch  0x00000008 , 0x00000006 
+ 00020923  0x00002f00 istore  0x00000008 , 0x00000005 
+ 00020924  0x00002f01 fetch  0x00000006 , 0x00000304 
+ 00020925  0x00002f02 store  0x00000006 , 0x00000372 
+ 00020926  0x00002f03 set1  0x00000025 , 0x00000000 
+ 00020927  0x00002f04 bpatch  0x00000044 , 0x00004028 
+ 00020928  0x00002f05 increase  0x00000006 , 0x00000006 
+ 00020929  0x00002f06 ifetch  0x00000008 , 0x00000006 
+ 00020930  0x00002f07 store  0x00000008 , 0x00000386 
+ 00020931  0x00002f08 ifetcht  0x00000002 , 0x00000006 
+ 00020932  0x00002f09 lshift2  0x00000002 , 0x00000002 
+ 00020933  0x00002f0a ifetch  0x00000002 , 0x00000006 
+ 00020934  0x00002f0b lshift2  0x0000003f , 0x0000003f 
+ 00020935  0x00002f0c store  0x00000002 , 0x00000364 
+ 00020936  0x00002f0d store  0x00000004 , 0x00000366 
+ 00020937  0x00002f0e isub  0x00000002 , 0x0000003f 
+ 00020938  0x00002f0f add  0x0000003f , 0xfffffffe , 0x00000028 
+ 00020939  0x00002f10 ifetch  0x00000009 , 0x00000006 
+ 00020940  0x00002f11 store  0x00000009 , 0x0000038e 
+ 00020941  0x00002f12 set1  0x00000025 , 0x00000000 
+ 00020942  0x00002f13 bpatch  0x00000045 , 0x00004028 
+ 00020943  0x00002f14 ifetch  0x00000001 , 0x00000006 
+ 00020944  0x00002f15 rshift4  0x0000003f , 0x00000002 
+ 00020945  0x00002f16 rshift  0x00000002 , 0x00000002 
+ 00020946  0x00002f17 storet  0x00000001 , 0x00000399 
+ 00020947  0x00002f18 and_into  0x0000001f , 0x0000003f 
+ 00020948  0x00002f19 store  0x00000001 , 0x0000037b 
+ 00020949  0x00002f1a call  0x00005199 
+ 00020950  0x00002f1b call  0x000049ef 
+ 00020951  0x00002f1c call  0x00004902 
+ 00020952  0x00002f1d call  0x0000327a 
+ 00020953  0x00002f1e nrtn  0x00000005 
+ 00020954  0x00002f1f set1  0x00000025 , 0x00000000 
+ 00020955  0x00002f20 bpatch  0x00000046 , 0x00004028 
+ 00020956  0x00002f21 call  0x000038d1 
+ 00020957  0x00002f22 jam  0x00000014 , 0x000009bd 
+ 00020958  0x00002f23 call  0x00007d86 
+ 00020959  0x00002f25 branch  0x00003260 
+ 00020960  0x00002f29 set1  0x00000025 , 0x00000000 
+ 00020961  0x00002f2a bpatch  0x00000047 , 0x00004028 
+ 00020962  0x00002f2b fetch  0x00000002 , 0x000044e3 
+ 00020963  0x00002f2c iforce  0x00000012 
+ 00020964  0x00002f2d fetch  0x00000002 , 0x000044e5 
+ 00020965  0x00002f2e iforce  0x00000013 
+ 00020966  0x00002f2f fetch  0x00000002 , 0x00004637 
+ 00020967  0x00002f30 iforce  0x00000006 
+ 00020968  0x00002f31 enable  0x00000028 
+ 00020969  0x00002f32 rtn 
+ 00020970  0x00002f36 ifetch  0x00000002 , 0x00000006 
+ 00020971  0x00002f37 rtn  0x00000034 
+ 00020972  0x00002f38 isub  0x00000012 , 0x0000003e 
+ 00020973  0x00002f39 nrtn  0x00000002 
+ 00020974  0x00002f3a isub  0x00000013 , 0x0000003e 
+ 00020975  0x00002f3b rtn  0x00000005 
+ 00020976  0x00002f3c branch  0x000051f3 , 0x00000002 
+ 00020977  0x00002f3d force  0x00000001 , 0x0000003e 
+ 00020978  0x00002f3e rtn 
+ 00020979  0x00002f40 force  0x00000000 , 0x0000003f 
+ 00020980  0x00002f41 rtn 
+ 00020981  0x00002f46 call  0x000051f8 
+ 00020982  0x00002f47 branch  0x00005205 , 0x00000005 
+ 00020983  0x00002f48 rtn 
+ 00020984  0x00002f4b set1  0x00000025 , 0x00000000 
+ 00020985  0x00002f4c bpatch  0x00000048 , 0x00004029 
+ 00020986  0x00002f4d fetch  0x00000002 , 0x00004637 
+ 00020987  0x00002f4e iforce  0x00000006 
+ 00020988  0x00002f50 ifetch  0x00000002 , 0x00000006 
+ 00020989  0x00002f51 rtn  0x00000034 
+ 00020990  0x00002f52 isub  0x00000002 , 0x0000003e 
+ 00020991  0x00002f53 rtn  0x00000005 
+ 00020992  0x00002f54 ifetch  0x00000001 , 0x00000006 
+ 00020993  0x00002f55 iadd  0x00000006 , 0x00000006 
+ 00020994  0x00002f56 ifetch  0x00000001 , 0x00000006 
+ 00020995  0x00002f57 iadd  0x00000006 , 0x00000006 
+ 00020996  0x00002f58 branch  0x000051fc 
+ 00020997  0x00002f5a ifetch  0x00000001 , 0x00000006 
+ 00020998  0x00002f5b iadd  0x00000006 , 0x00000006 
+ 00020999  0x00002f5c rtn 
+ 00021000  0x00002f61 set1  0x00000025 , 0x00000000 
+ 00021001  0x00002f62 bpatch  0x00000049 , 0x00004029 
+ 00021002  0x00002f63 fetch  0x00000002 , 0x00004637 
+ 00021003  0x00002f64 iforce  0x00000006 
+ 00021004  0x00002f66 ifetch  0x00000002 , 0x00000006 
+ 00021005  0x00002f67 rtn  0x00000034 
+ 00021006  0x00002f68 ifetch  0x00000001 , 0x00000006 
+ 00021007  0x00002f69 iadd  0x00000006 , 0x00000006 
+ 00021008  0x00002f6a increase  0xfffffffe , 0x00000006 
+ 00021009  0x00002f6b ifetch  0x00000002 , 0x00000006 
+ 00021010  0x00002f6c isub  0x00000002 , 0x0000003e 
+ 00021011  0x00002f6d rtn  0x00000005 
+ 00021012  0x00002f6e ifetch  0x00000001 , 0x00000006 
+ 00021013  0x00002f6f iadd  0x00000006 , 0x00000006 
+ 00021014  0x00002f70 branch  0x0000520c 
+ 00021015  0x00002f75 fetch  0x00000002 , 0x000003c1 
+ 00021016  0x00002f76 copy  0x0000003f , 0x00000006 
+ 00021017  0x00002f77 branch  0x0000521b 
+ 00021018  0x00002f7a set1  0x00000025 , 0x00000000 
+ 00021019  0x00002f7b bpatch  0x0000004a , 0x00004029 
+ 00021020  0x00002f7c fetch  0x00000002 , 0x00004637 
+ 00021021  0x00002f7d iforce  0x00000006 
+ 00021022  0x00002f7e copy  0x00000002 , 0x00000011 
+ 00021023  0x00002f80 ifetch  0x00000002 , 0x00000006 
+ 00021024  0x00002f81 branch  0x00005228 , 0x00000034 
+ 00021025  0x00002f82 isub  0x00000011 , 0x0000003e 
+ 00021026  0x00002f83 branch  0x0000522a , 0x00000005 
+ 00021027  0x00002f84 ifetch  0x00000001 , 0x00000006 
+ 00021028  0x00002f85 iadd  0x00000006 , 0x00000006 
+ 00021029  0x00002f86 ifetch  0x00000001 , 0x00000006 
+ 00021030  0x00002f87 iadd  0x00000006 , 0x00000006 
+ 00021031  0x00002f88 branch  0x0000521f 
+ 00021032  0x00002f8a setarg  0x00000001 
+ 00021033  0x00002f8b rtn 
+ 00021034  0x00002f8d ifetch  0x00000001 , 0x00000006 
+ 00021035  0x00002f8e store  0x00000001 , 0x000003c7 
+ 00021036  0x00002f8f copy  0x0000003f , 0x00000039 
+ 00021037  0x00002f90 arg  0x000003c8 , 0x00000005 
+ 00021038  0x00002f91 call  0x00007ec0 
+ 00021039  0x00002f92 ifetch  0x00000001 , 0x00000006 
+ 00021040  0x00002f93 store  0x00000001 , 0x000003d8 
+ 00021041  0x00002f94 call  0x00007e6d 
+ 00021042  0x00002f95 setarg  0x00000000 
+ 00021043  0x00002f96 rtn 
+ 00021044  0x00002f9b set1  0x00000025 , 0x00000000 
+ 00021045  0x00002f9c bpatch  0x0000004b , 0x00004029 
+ 00021046  0x00002f9d call  0x00005238 
+ 00021047  0x00002f9e branch  0x0000524a 
+ 00021048  0x00002fa1 arg  0x00002a00 , 0x00000002 
+ 00021049  0x00002fa2 call  0x00005208 
+ 00021050  0x00002fa3 rtn  0x00000034 
+ 00021051  0x00002fa4 ifetch  0x00000001 , 0x00000006 
+ 00021052  0x00002fa5 copy  0x00000006 , 0x00000005 
+ 00021053  0x00002fa6 fetcht  0x00000001 , 0x00004440 
+ 00021054  0x00002fa7 copy  0x00000002 , 0x00000039 
+ 00021055  0x00002fa8 isub  0x00000002 , 0x0000003e 
+ 00021056  0x00002fa9 nbranch  0x00005247 , 0x00000002 
+ 00021057  0x00002faa isub  0x00000002 , 0x00000002 
+ 00021058  0x00002fab arg  0x00004441 , 0x00000006 
+ 00021059  0x00002fac call  0x00007ecd 
+ 00021060  0x00002fad copy  0x00000002 , 0x00000039 
+ 00021061  0x00002fae ncall  0x00005283 , 0x00000005 
+ 00021062  0x00002faf rtn 
+ 00021063  0x00002fb1 copy  0x0000003f , 0x00000039 
+ 00021064  0x00002fb2 arg  0x00004441 , 0x00000006 
+ 00021065  0x00002fb3 branch  0x00007ec0 
+ 00021066  0x00002fb7 arg  0x00004420 , 0x00000013 
+ 00021067  0x00002fb8 arg  0x00004401 , 0x00000011 
+ 00021068  0x00002fb9 call  0x00005257 
+ 00021069  0x00002fba setarg  0x00000000 
+ 00021070  0x00002fbb setflag  0x00000028 , 0x00000000 , 0x0000003f 
+ 00021071  0x00002fbc store  0x00000001 , 0x000009be 
+ 00021072  0x00002fbd arg  0x00004440 , 0x00000013 
+ 00021073  0x00002fbe arg  0x00004421 , 0x00000011 
+ 00021074  0x00002fbf call  0x00005257 
+ 00021075  0x00002fc0 rtn  0x00000028 
+ 00021076  0x00002fc1 fetch  0x00000001 , 0x000009be 
+ 00021077  0x00002fc2 branch  0x00003b31 , 0x00000034 
+ 00021078  0x00002fc3 rtn 
+ 00021079  0x00002fc7 set1  0x00000025 , 0x00000000 
+ 00021080  0x00002fc8 bpatch  0x0000004c , 0x00004029 
+ 00021081  0x00002fc9 call  0x000064c0 
+ 00021082  0x00002fca call  0x00007ea5 
+ 00021083  0x00002fcb arg  0x00000000 , 0x00000012 
+ 00021084  0x00002fcc arg  0x000009e2 , 0x00000005 
+ 00021085  0x00002fcd call  0x00005272 
+ 00021086  0x00002fce fetch  0x00000001 , 0x00004440 
+ 00021087  0x00002fcf add  0x0000003f , 0x00000001 , 0x00000002 
+ 00021088  0x00002fd0 iadd  0x00000012 , 0x00000011 
+ 00021089  0x00002fd1 increase  0x00000002 , 0x00000011 
+ 00021090  0x00002fd2 sub  0x00000011 , 0x0000001f , 0x0000003e 
+ 00021091  0x00002fd3 nbranch  0x00005270 , 0x00000002 
+ 00021092  0x00002fd4 istoret  0x00000001 , 0x00000005 
+ 00021093  0x00002fd5 arg  0x00000009 , 0x00000002 
+ 00021094  0x00002fd6 istoret  0x00000001 , 0x00000005 
+ 00021095  0x00002fd7 iforce  0x00000039 
+ 00021096  0x00002fd8 call  0x00007ec0 
+ 00021097  0x00002fd9 copy  0x00000011 , 0x00000012 
+ 00021098  0x00002fdb deposit  0x00000012 
+ 00021099  0x00002fdc store  0x00000001 , 0x000009e1 
+ 00021100  0x00002fdd arg  0x000009e1 , 0x00000006 
+ 00021101  0x00002fde setarg  0xffffffe0 
+ 00021102  0x00002fdf iadd  0x00000013 , 0x00000005 
+ 00021103  0x00002fe0 branch  0x00007e85 
+ 00021104  0x00002fe3 call  0x000031d4 
+ 00021105  0x00002fe4 branch  0x0000526a 
+ 00021106  0x00002fe7 ifetch  0x00000001 , 0x00000011 
+ 00021107  0x00002fe8 rtn  0x00000034 
+ 00021108  0x00002fe9 pincrease  0x00000001 
+ 00021109  0x00002fea ifetcht  0x00000001 , 0x00000006 
+ 00021110  0x00002feb sub  0x00000002 , 0x00000009 , 0x0000003e 
+ 00021111  0x00002fec branch  0x00005281 , 0x00000005 
+ 00021112  0x00002fed iadd  0x00000012 , 0x00000012 
+ 00021113  0x00002fee copy  0x00000011 , 0x00000006 
+ 00021114  0x00002fef iforce  0x00000039 
+ 00021115  0x00002ff0 call  0x00007ec0 
+ 00021116  0x00002ff1 copy  0x00000006 , 0x00000011 
+ 00021117  0x00002ff3 deposit  0x00000011 
+ 00021118  0x00002ff4 isub  0x00000013 , 0x0000003e 
+ 00021119  0x00002ff5 rtn  0x00000002 
+ 00021120  0x00002ff6 branch  0x00005272 
+ 00021121  0x00002ff9 iadd  0x00000011 , 0x00000011 
+ 00021122  0x00002ffa branch  0x0000527d 
+ 00021123  0x00002ffe setarg  0x00000020 
+ 00021124  0x00002fff istore  0x00000001 , 0x00000005 
+ 00021125  0x00003000 loop  0x00005283 
+ 00021126  0x00003001 rtn 
+ 00021127  0x00003005 set1  0x00000025 , 0x00000000 
+ 00021128  0x00003006 bpatch  0x0000004d , 0x00004029 
+ 00021129  0x00003007 disable  0x0000002b 
+ 00021130  0x00003008 branch  0x0000528c , 0x0000002e 
+ 00021131  0x00003009 nbranch  0x0000529a , 0x0000002d 
+ 00021132  0x0000300b call  0x00003cb7 
+ 00021133  0x0000300c fetch  0x00000002 , 0x00004161 
+ 00021134  0x0000300d store  0x00000002 , 0x00000370 
+ 00021135  0x0000300e fetch  0x00000001 , 0x00000302 
+ 00021136  0x0000300f compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00021137  0x00003010 nbranch  0x00003ccb , 0x00000001 
+ 00021138  0x00003011 fetch  0x00000001 , 0x00004465 
+ 00021139  0x00003012 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00021140  0x00003013 nbranch  0x00003ccb , 0x00000001 
+ 00021141  0x00003014 fetch  0x00000002 , 0x000042a2 
+ 00021142  0x00003015 call  0x00007f69 
+ 00021143  0x00003016 fetch  0x00000001 , 0x00000362 
+ 00021144  0x00003017 bbit1  0x00000005 , 0x00003ccb 
+ 00021145  0x00003018 branch  0x00003cb0 
+ 00021146  0x0000301b fetcht  0x00000002 , 0x00004161 
+ 00021147  0x0000301c rshift  0x00000002 , 0x00000002 
+ 00021148  0x0000301d fetch  0x00000002 , 0x00000370 
+ 00021149  0x0000301e iadd  0x00000002 , 0x0000003f 
+ 00021150  0x0000301f store  0x00000002 , 0x00000370 
+ 00021151  0x00003020 branch  0x00003cc3 
+ 00021152  0x00003023 set1  0x00000025 , 0x00000000 
+ 00021153  0x00003024 bpatch  0x0000004e , 0x00004029 
+ 00021154  0x00003025 jam  0x00000000 , 0x00004595 
+ 00021155  0x00003026 fetcht  0x00000002 , 0x000044f8 
+ 00021156  0x00003027 call  0x00004f6a 
+ 00021157  0x00003028 copy  0x00000011 , 0x00000005 
+ 00021158  0x00003029 setarg  0x00000000 
+ 00021159  0x0000302a istore  0x00000001 , 0x00000005 
+ 00021160  0x0000302b rtn 
+ 00021161  0x00003031 fetch  0x00000001 , 0x00004563 
+ 00021162  0x00003032 rtneq  0x00000000 
+ 00021163  0x00003033 fetch  0x00000001 , 0x00004564 
+ 00021164  0x00003034 rtnne  0x00000002 
+ 00021165  0x00003035 set1  0x00000025 , 0x00000000 
+ 00021166  0x00003036 bpatch  0x00000050 , 0x0000402a 
+ 00021167  0x00003037 jam  0x00000000 , 0x00004564 
+ 00021168  0x00003038 fetch  0x00000001 , 0x00004566 
+ 00021169  0x00003039 beq  0x00000001 , 0x000052e8 
+ 00021170  0x0000303a beq  0x00000002 , 0x000052f0 
+ 00021171  0x0000303b beq  0x00000003 , 0x000052e1 
+ 00021172  0x0000303c beq  0x00000006 , 0x000052ca 
+ 00021173  0x0000303d beq  0x00000007 , 0x000052c2 
+ 00021174  0x0000303e beq  0x00000008 , 0x000052b8 
+ 00021175  0x0000303f rtn 
+ 00021176  0x00003043 fetch  0x00000001 , 0x000046eb 
+ 00021177  0x00003044 copy  0x0000003f , 0x00000007 
+ 00021178  0x00003045 increase  0x00000001 , 0x0000003f 
+ 00021179  0x00003046 store  0x00000001 , 0x000046eb 
+ 00021180  0x00003047 fetch  0x00000004 , 0x0000456d 
+ 00021181  0x00003048 qisolate1  0x0000003f 
+ 00021182  0x00003049 setarg  0x00000080 
+ 00021183  0x0000304a setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00021184  0x0000304b store  0x00000001 , 0x000046ec 
+ 00021185  0x0000304c branch  0x000052e4 
+ 00021186  0x0000304f fetch  0x00000001 , 0x00004567 
+ 00021187  0x00003050 jam  0x00000000 , 0x00004567 
+ 00021188  0x00003051 beq  0x00000001 , 0x000052c7 
+ 00021189  0x00003052 jam  0x00000002 , 0x00004564 
+ 00021190  0x00003053 rtn 
+ 00021191  0x00003056 jam  0x00000002 , 0x0000456a 
+ 00021192  0x00003057 jam  0x0000004d , 0x000009bd 
+ 00021193  0x00003058 branch  0x00004bd6 
+ 00021194  0x0000305b fetch  0x00000001 , 0x000008dd 
+ 00021195  0x0000305c beq  0x00000003 , 0x000052ce 
+ 00021196  0x0000305d jam  0x00000002 , 0x00004564 
+ 00021197  0x0000305e rtn 
+ 00021198  0x00003061 call  0x00006eae 
+ 00021199  0x00003065 fetch  0x00000001 , 0x0000456c 
+ 00021200  0x00003066 beq  0x00000083 , 0x000052d9 
+ 00021201  0x00003067 call  0x00005078 
+ 00021202  0x00003069 call  0x00006e9a 
+ 00021203  0x0000306a arg  0x00000a11 , 0x00000011 
+ 00021204  0x0000306b arg  0x00000992 , 0x00000012 
+ 00021205  0x0000306c arg  0x00000010 , 0x00000039 
+ 00021206  0x0000306d call  0x00007f55 
+ 00021207  0x0000306e branch  0x000052da , 0x00000005 
+ 00021208  0x00003070 branch  0x000050a6 
+ 00021209  0x00003074 branch  0x000052d2 
+ 00021210  0x00003077 jam  0x00000001 , 0x000044b2 
+ 00021211  0x00003078 fetch  0x00000001 , 0x0000456c 
+ 00021212  0x00003079 beq  0x00000081 , 0x000052c7 
+ 00021213  0x0000307a beq  0x00000083 , 0x000052c7 
+ 00021214  0x0000307b jam  0x00000002 , 0x00004564 
+ 00021215  0x0000307c jam  0x00000007 , 0x00004566 
+ 00021216  0x0000307d rtn 
+ 00021217  0x00003080 fetch  0x00000001 , 0x0000456c 
+ 00021218  0x00003081 beq  0x00000083 , 0x000052e6 
+ 00021219  0x00003082 jam  0x00000000 , 0x000046ec 
+ 00021220  0x00003084 jam  0x00000043 , 0x000009bd 
+ 00021221  0x00003085 branch  0x00004bd6 
+ 00021222  0x0000308b jam  0x00000000 , 0x000046eb 
+ 00021223  0x0000308d branch  0x0000507d 
+ 00021224  0x00003091 jam  0x00000002 , 0x00004564 
+ 00021225  0x00003092 fetch  0x00000001 , 0x00004568 
+ 00021226  0x00003093 beq  0x00000003 , 0x000052ec 
+ 00021227  0x00003095 rtn 
+ 00021228  0x00003098 jam  0x00000000 , 0x000008dd 
+ 00021229  0x00003099 call  0x00007ab9 
+ 00021230  0x0000309a jam  0x00000002 , 0x00004566 
+ 00021231  0x0000309b rtn 
+ 00021232  0x000030a0 call  0x00004bd0 
+ 00021233  0x000030a1 branch  0x000052f4 , 0x00000034 
+ 00021234  0x000030a2 jam  0x00000002 , 0x00004564 
+ 00021235  0x000030a3 rtn 
+ 00021236  0x000030a5 jam  0x0000004c , 0x000009bd 
+ 00021237  0x000030a6 call  0x00004bd6 
+ 00021238  0x000030a7 jam  0x0000004c , 0x000009bd 
+ 00021239  0x000030a8 call  0x00004bd6 
+ 00021240  0x000030a9 jam  0x0000004c , 0x000009bd 
+ 00021241  0x000030aa branch  0x00004bd6 
+ 00021242  0x000030b1 arg  0x000008e2 , 0x0000003f 
+ 00021243  0x000030b2 fetcht  0x00000001 , 0x000003db 
+ 00021244  0x000030b3 iadd  0x00000002 , 0x00000005 
+ 00021245  0x000030b5 fetch  0x00000001 , 0x00000303 
+ 00021246  0x000030b6 copy  0x0000003f , 0x00000039 
+ 00021247  0x000030b7 iadd  0x00000002 , 0x00000002 
+ 00021248  0x000030b8 call  0x00007ec0 
+ 00021249  0x000030b9 storet  0x00000001 , 0x000003db 
+ 00021250  0x000030ba copy  0x00000002 , 0x0000003f 
+ 00021251  0x000030bc rtnne  0x00000040 
+ 00021252  0x000030bd jam  0x00000002 , 0x00004564 
+ 00021253  0x000030be jam  0x00000001 , 0x00004566 
+ 00021254  0x000030bf rtn 
+ 00021255  0x000030c1 set1  0x00000025 , 0x00000000 
+ 00021256  0x000030c2 bpatch  0x00000051 , 0x0000402a 
+ 00021257  0x000030c3 fetch  0x00000001 , 0x000003db 
+ 00021258  0x000030c4 bne  0x00000000 , 0x000052fa 
+ 00021259  0x000030c5 branch  0x00004fd4 
+ 00021260  0x000030cc rtn  0x0000002b 
+ 00021261  0x000030ce set1  0x00000025 , 0x00000000 
+ 00021262  0x000030cf bpatch  0x00000052 , 0x0000402a 
+ 00021263  0x000030d0 setarg  0x00000000 
+ 00021264  0x000030d1 store  0x00000001 , 0x00000048 
+ 00021265  0x000030d2 store  0x00000001 , 0x00000055 
+ 00021266  0x000030d3 store  0x00000001 , 0x00000078 
+ 00021267  0x000030d4 store  0x00000001 , 0x0000007c 
+ 00021268  0x000030d5 store  0x00000001 , 0x000041f8 
+ 00021269  0x000030d6 store  0x00000001 , 0x000003fd 
+ 00021270  0x000030d7 store  0x00000001 , 0x0000016c 
+ 00021271  0x000030d8 store  0x00000001 , 0x000008d9 
+ 00021272  0x000030d9 jam  0x00000000 , 0x000045f4 
+ 00021273  0x000030da jam  0x00000000 , 0x0000024d 
+ 00021274  0x000030db jam  0x00000000 , 0x000003fe 
+ 00021275  0x000030dd jam  0x00000000 , 0x000008d9 
+ 00021276  0x000030de jam  0x00000000 , 0x000008d8 
+ 00021277  0x000030df jam  0x00000000 , 0x000003f7 
+ 00021278  0x000030e2 rtn 
+ 00021279  0x000030e5 set1  0x00000025 , 0x00000000 
+ 00021280  0x000030e6 bpatch  0x00000053 , 0x0000402a 
+ 00021281  0x000030e7 call  0x0000590a , 0x00000029 
+ 00021282  0x000030e8 ncall  0x0000590e , 0x00000029 
+ 00021283  0x000030e9 call  0x000058c5 
+ 00021284  0x000030ea nrtn  0x00000034 
+ 00021285  0x000030eb fetch  0x00000001 , 0x0000004c 
+ 00021286  0x000030ec rtnbit0  0x00000006 
+ 00021287  0x000030ed set0  0x00000006 , 0x0000003f 
+ 00021288  0x000030ee set0  0x00000001 , 0x00000000 
+ 00021289  0x000030ef store  0x00000001 , 0x0000004c 
+ 00021290  0x000030f0 fetch  0x00000001 , 0x00000475 
+ 00021291  0x000030f1 fetcht  0x00000001 , 0x0000004c 
+ 00021292  0x000030f2 isolate1  0x00000000 , 0x0000003f 
+ 00021293  0x000030f3 setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00021294  0x000030f4 storet  0x00000001 , 0x0000004c 
+ 00021295  0x000030f5 and_into  0x00000002 , 0x00000002 
+ 00021296  0x000030f6 storet  0x00000001 , 0x0000007f 
+ 00021297  0x000030f7 fetcht  0x00000001 , 0x0000004c 
+ 00021298  0x000030f8 rshift  0x0000003f , 0x0000003f 
+ 00021299  0x000030f9 store  0x00000001 , 0x0000007d 
+ 00021300  0x000030fa set1  0x00000025 , 0x00000000 
+ 00021301  0x000030fb bpatch  0x00000054 , 0x0000402a 
+ 00021302  0x000030fc fetch  0x00000001 , 0x0000007d 
+ 00021303  0x000030fd beq  0x0000007f , 0x0000537f 
+ 00021304  0x000030fe beq  0x00000003 , 0x000053cb 
+ 00021305  0x000030ff beq  0x00000004 , 0x000053dd 
+ 00021306  0x00003100 beq  0x0000003c , 0x00005372 
+ 00021307  0x00003101 beq  0x00000005 , 0x0000536e 
+ 00021308  0x00003102 beq  0x0000000f , 0x000055bf 
+ 00021309  0x00003103 beq  0x00000010 , 0x00005440 
+ 00021310  0x00003104 beq  0x00000023 , 0x0000545e 
+ 00021311  0x00003105 beq  0x00000039 , 0x000055d8 
+ 00021312  0x00003106 beq  0x00000038 , 0x000055d3 
+ 00021313  0x00003107 beq  0x00000031 , 0x00005443 
+ 00021314  0x00003108 beq  0x00000037 , 0x000054cc 
+ 00021315  0x00003109 beq  0x00000027 , 0x000054c8 
+ 00021316  0x0000310a beq  0x00000033 , 0x000054c5 
+ 00021317  0x0000310b beq  0x00000025 , 0x000054ca 
+ 00021318  0x0000310c beq  0x00000026 , 0x0000545a 
+ 00021319  0x0000310d beq  0x00000007 , 0x00005452 
+ 00021320  0x0000310e beq  0x0000002d , 0x00005449 
+ 00021321  0x0000310f beq  0x0000002e , 0x0000544a 
+ 00021322  0x00003110 beq  0x00000001 , 0x000054c1 
+ 00021323  0x00003111 beq  0x00000002 , 0x000054ac 
+ 00021324  0x00003112 beq  0x00000028 , 0x000055ca 
+ 00021325  0x00003113 beq  0x00000009 , 0x000054a2 
+ 00021326  0x00003114 beq  0x0000000b , 0x0000547b 
+ 00021327  0x00003115 beq  0x00000008 , 0x0000545f 
+ 00021328  0x00003116 beq  0x0000000c , 0x00005486 
+ 00021329  0x00003117 beq  0x0000001f , 0x00005456 
+ 00021330  0x00003118 beq  0x00000020 , 0x00005458 
+ 00021331  0x00003119 beq  0x00000021 , 0x000054e6 
+ 00021332  0x0000311a beq  0x00000022 , 0x000054e6 
+ 00021333  0x0000311b beq  0x00000035 , 0x000054e7 
+ 00021334  0x0000311c beq  0x00000036 , 0x000054e8 
+ 00021335  0x0000311d beq  0x00000024 , 0x000054e6 
+ 00021336  0x0000311e beq  0x00000034 , 0x000054e9 
+ 00021337  0x0000311f beq  0x00000017 , 0x000054f2 
+ 00021338  0x00003120 beq  0x00000011 , 0x00005509 
+ 00021339  0x00003121 beq  0x00000012 , 0x0000550d 
+ 00021340  0x00003122 beq  0x00000013 , 0x0000550f 
+ 00021341  0x00003123 beq  0x0000000d , 0x00005521 
+ 00021342  0x00003124 beq  0x0000000e , 0x00005521 
+ 00021343  0x00003125 beq  0x0000002f , 0x000054c6 
+ 00021344  0x00003126 beq  0x00000030 , 0x00005521 
+ 00021345  0x00003127 beq  0x0000000a , 0x00005521 
+ 00021346  0x00003128 beq  0x00000018 , 0x00005522 
+ 00021347  0x00003129 beq  0x00000032 , 0x00005521 
+ 00021348  0x0000312a beq  0x0000003d , 0x00005527 
+ 00021349  0x0000312b beq  0x0000003e , 0x00005568 
+ 00021350  0x0000312c beq  0x0000003f , 0x00005562 
+ 00021351  0x0000312d beq  0x00000040 , 0x0000558f 
+ 00021352  0x0000312e beq  0x00000041 , 0x000055a1 
+ 00021353  0x0000312f beq  0x00000006 , 0x000055be 
+ 00021354  0x00003130 beq  0x0000003a , 0x00005370 
+ 00021355  0x00003134 jam  0x00000019 , 0x0000007e 
+ 00021356  0x00003136 jam  0x00000004 , 0x0000007c 
+ 00021357  0x00003137 rtn 
+ 00021358  0x0000313a jam  0x00000006 , 0x0000007c 
+ 00021359  0x0000313b rtn 
+ 00021360  0x0000313e jam  0x0000003b , 0x0000007c 
+ 00021361  0x0000313f rtn 
+ 00021362  0x00003142 fetch  0x00000004 , 0x00000476 
+ 00021363  0x00003143 lshift  0x0000003f , 0x0000003f 
+ 00021364  0x00003144 store  0x00000004 , 0x00004172 
+ 00021365  0x00003145 fetch  0x00000001 , 0x0000047a 
+ 00021366  0x00003146 store  0x00000001 , 0x00004179 
+ 00021367  0x00003147 fetch  0x00000005 , 0x0000047b 
+ 00021368  0x00003148 store  0x00000005 , 0x00004187 
+ 00021369  0x00003149 fetch  0x00000005 , 0x00000480 
+ 00021370  0x0000314a istore  0x00000005 , 0x00000005 
+ 00021371  0x0000314b fetch  0x00000001 , 0x00000031 
+ 00021372  0x0000314c set1  0x00000003 , 0x0000003f 
+ 00021373  0x0000314d store  0x00000001 , 0x00000031 
+ 00021374  0x0000314e rtn 
+ 00021375  0x00003150 set1  0x00000025 , 0x00000000 
+ 00021376  0x00003151 bpatch  0x00000055 , 0x0000402a 
+ 00021377  0x00003152 fetch  0x00000001 , 0x00000476 
+ 00021378  0x00003153 set1  0x00000007 , 0x0000003f 
+ 00021379  0x00003154 store  0x00000001 , 0x0000007d 
+ 00021380  0x00003155 beq  0x00000081 , 0x000053a2 
+ 00021381  0x00003156 beq  0x00000082 , 0x000053a7 
+ 00021382  0x00003157 beq  0x00000095 , 0x000054cd 
+ 00021383  0x00003158 beq  0x00000096 , 0x000054e6 
+ 00021384  0x00003159 beq  0x0000008b , 0x000054db 
+ 00021385  0x0000315a beq  0x00000083 , 0x000053bf 
+ 00021386  0x0000315b beq  0x00000084 , 0x000053c1 
+ 00021387  0x0000315c beq  0x00000090 , 0x00005394 
+ 00021388  0x0000315d beq  0x00000097 , 0x000053b8 
+ 00021389  0x0000315e beq  0x00000098 , 0x000053bd 
+ 00021390  0x0000315f beq  0x00000099 , 0x00005397 
+ 00021391  0x00003160 beq  0x0000009a , 0x0000539a 
+ 00021392  0x00003161 rtneq  0x00000084 
+ 00021393  0x00003165 jam  0x00000082 , 0x0000007c 
+ 00021394  0x00003166 jam  0x00000019 , 0x0000007e 
+ 00021395  0x00003168 rtn 
+ 00021396  0x0000316a jam  0x00000082 , 0x0000007c 
+ 00021397  0x0000316b jam  0x0000002e , 0x0000007e 
+ 00021398  0x0000316c rtn 
+ 00021399  0x0000316f call  0x0000539c 
+ 00021400  0x00003170 jam  0x0000009a , 0x0000007c 
+ 00021401  0x00003171 rtn 
+ 00021402  0x00003174 call  0x0000539c 
+ 00021403  0x00003175 branch  0x000053a0 
+ 00021404  0x00003178 arg  0x000046e6 , 0x00000005 
+ 00021405  0x00003179 fetch  0x00000003 , 0x00000477 
+ 00021406  0x0000317a istore  0x00000003 , 0x00000005 
+ 00021407  0x0000317b rtn 
+ 00021408  0x0000317e branch  0x000076f3 , 0x00000001 
+ 00021409  0x0000317f rtn 
+ 00021410  0x00003181 fetch  0x00000001 , 0x00000478 
+ 00021411  0x00003182 set1  0x00000007 , 0x0000003f 
+ 00021412  0x00003183 store  0x00000001 , 0x000003ef 
+ 00021413  0x00003184 beq  0x0000008b , 0x000053ac 
+ 00021414  0x00003185 rtn 
+ 00021415  0x00003189 fetch  0x00000001 , 0x00000478 
+ 00021416  0x0000318a set1  0x00000007 , 0x0000003f 
+ 00021417  0x0000318b store  0x00000001 , 0x000003ef 
+ 00021418  0x0000318c beq  0x0000008b , 0x000053b0 
+ 00021419  0x0000318d rtn 
+ 00021420  0x00003190 fetch  0x00000001 , 0x000041fa 
+ 00021421  0x00003191 fetcht  0x00000001 , 0x0000004c 
+ 00021422  0x00003192 nsetflag  0x00000034 , 0x00000005 , 0x00000002 
+ 00021423  0x00003193 storet  0x00000001 , 0x0000004c 
+ 00021424  0x00003195 fetch  0x00000001 , 0x00000030 
+ 00021425  0x00003196 rtnbit0  0x00000005 
+ 00021426  0x00003197 set0  0x00000005 , 0x0000003f 
+ 00021427  0x00003198 store  0x00000001 , 0x00000030 
+ 00021428  0x00003199 fetch  0x00000001 , 0x000003fd 
+ 00021429  0x0000319a nrtn  0x00000034 
+ 00021430  0x0000319b jam  0x00000031 , 0x0000007c 
+ 00021431  0x0000319c rtn 
+ 00021432  0x0000319f nbranch  0x000053bb , 0x00000029 
+ 00021433  0x000031a0 jam  0x00000012 , 0x0000007c 
+ 00021434  0x000031a1 branch  0x000058f6 
+ 00021435  0x000031a4 jam  0x00000097 , 0x0000007c 
+ 00021436  0x000031a5 rtn 
+ 00021437  0x000031aa call  0x000058f6 
+ 00021438  0x000031ab branch  0x00005615 
+ 00021439  0x000031ae jam  0x00000084 , 0x0000007c 
+ 00021440  0x000031af rtn 
+ 00021441  0x000031b2 fetcht  0x00000001 , 0x00000479 
+ 00021442  0x000031b3 and  0x00000002 , 0x00000001 , 0x00000002 
+ 00021443  0x000031b4 storet  0x00000001 , 0x000003f6 
+ 00021444  0x000031b5 fetch  0x00000001 , 0x00004271 
+ 00021445  0x000031b6 bne  0x00000051 , 0x000053c7 
+ 00021446  0x000031b7 jam  0x00000000 , 0x00004271 
+ 00021447  0x000031b9 fetch  0x00000001 , 0x00000055 
+ 00021448  0x000031ba rtnne  0x00000015 
+ 00021449  0x000031bb jam  0x00000004 , 0x00000055 
+ 00021450  0x000031bc branch  0x00005926 
+ 00021451  0x000031bf set1  0x00000025 , 0x00000000 
+ 00021452  0x000031c0 bpatch  0x00000056 , 0x0000402a 
+ 00021453  0x000031c1 fetch  0x00000001 , 0x00000476 
+ 00021454  0x000031c2 store  0x00000001 , 0x000003ef 
+ 00021455  0x000031c3 beq  0x00000033 , 0x000053f4 
+ 00021456  0x000031c4 beq  0x00000008 , 0x00005403 
+ 00021457  0x000031c5 beq  0x0000000f , 0x0000540a 
+ 00021458  0x000031c6 beq  0x00000010 , 0x00005410 
+ 00021459  0x000031c7 beq  0x00000011 , 0x00005411 
+ 00021460  0x000031c8 beq  0x00000012 , 0x00005419 
+ 00021461  0x000031c9 beq  0x00000018 , 0x0000542f 
+ 00021462  0x000031ca beq  0x00000017 , 0x00005432 
+ 00021463  0x000031cb beq  0x00000013 , 0x000053eb 
+ 00021464  0x000031cd beq  0x0000003d , 0x00005535 
+ 00021465  0x000031ce beq  0x0000003e , 0x00005581 
+ 00021466  0x000031cf beq  0x00000040 , 0x00005537 
+ 00021467  0x000031d0 beq  0x00000041 , 0x00005554 
+ 00021468  0x000031d1 rtn 
+ 00021469  0x000031d4 set1  0x00000025 , 0x00000000 
+ 00021470  0x000031d5 bpatch  0x00000057 , 0x0000402a 
+ 00021471  0x000031d6 fetch  0x00000001 , 0x00000476 
+ 00021472  0x000031d7 store  0x00000001 , 0x000003ef 
+ 00021473  0x000031d8 beq  0x00000001 , 0x00005426 
+ 00021474  0x000031d9 beq  0x00000033 , 0x000053fe 
+ 00021475  0x000031da beq  0x0000000b , 0x0000541a 
+ 00021476  0x000031db beq  0x00000008 , 0x0000541d 
+ 00021477  0x000031dc beq  0x00000013 , 0x000053ee 
+ 00021478  0x000031de beq  0x00000040 , 0x00005427 
+ 00021479  0x000031df beq  0x00000041 , 0x0000542a 
+ 00021480  0x000031e0 beq  0x00000018 , 0x0000542d 
+ 00021481  0x000031e1 beq  0x00000017 , 0x0000543e 
+ 00021482  0x000031e2 rtn 
+ 00021483  0x000031e5 jam  0x00000020 , 0x000009bd 
+ 00021484  0x000031e6 call  0x00007d86 
+ 00021485  0x000031e7 branch  0x0000320a 
+ 00021486  0x000031e9 jam  0x00000019 , 0x000009bd 
+ 00021487  0x000031ea call  0x00007d86 
+ 00021488  0x000031eb jam  0x00000002 , 0x000045f4 
+ 00021489  0x000031ec setarg  0x00000050 
+ 00021490  0x000031ed arg  0x0000000a , 0x00000007 
+ 00021491  0x000031ee branch  0x00007ed4 
+ 00021492  0x000031f4 fetch  0x00000001 , 0x000003f7 
+ 00021493  0x000031f5 set1  0x00000000 , 0x0000003f 
+ 00021494  0x000031f6 store  0x00000001 , 0x000003f7 
+ 00021495  0x000031f7 jam  0x00000001 , 0x000009bd 
+ 00021496  0x000031f8 call  0x00007d86 
+ 00021497  0x000031f9 jam  0x0000008b , 0x0000007c 
+ 00021498  0x000031fd fetch  0x00000001 , 0x00000055 
+ 00021499  0x000031fe bne  0x00000005 , 0x0000531e 
+ 00021500  0x00003201 jam  0x00000006 , 0x00000055 
+ 00021501  0x00003202 rtn 
+ 00021502  0x0000320b jam  0x0000000b , 0x000003f0 
+ 00021503  0x0000320c jam  0x00000007 , 0x0000007c 
+ 00021504  0x0000320e jam  0x00000000 , 0x00000055 
+ 00021505  0x00003210 branch  0x0000531e , 0x00000001 
+ 00021506  0x00003211 rtn 
+ 00021507  0x00003214 fetch  0x00000001 , 0x0000425d 
+ 00021508  0x00003215 nrtn  0x00000034 
+ 00021509  0x00003216 call  0x000034a9 
+ 00021510  0x00003217 call  0x00005613 
+ 00021511  0x00003218 rtn  0x00000029 
+ 00021512  0x00003219 set1  0x00000021 , 0x00000000 
+ 00021513  0x0000321a rtn 
+ 00021514  0x0000321d nrtn  0x00000029 
+ 00021515  0x0000321e jam  0x00000010 , 0x0000007c 
+ 00021516  0x0000321f fetch  0x00000001 , 0x0000004c 
+ 00021517  0x00003220 rtnbit0  0x00000002 
+ 00021518  0x00003221 jam  0x00000012 , 0x0000007c 
+ 00021519  0x00003222 rtn 
+ 00021520  0x00003225 branch  0x00005615 
+ 00021521  0x00003228 call  0x00005672 
+ 00021522  0x00003229 fetch  0x00000001 , 0x00000030 
+ 00021523  0x0000322a rtnbit1  0x00000004 
+ 00021524  0x0000322b jam  0x00000031 , 0x0000007c 
+ 00021525  0x0000322c fetch  0x00000001 , 0x00000055 
+ 00021526  0x0000322d rtnne  0x0000000a 
+ 00021527  0x0000322e jam  0x0000000b , 0x00000055 
+ 00021528  0x0000322f rtn 
+ 00021529  0x00003239 rtn 
+ 00021530  0x0000323d jam  0x00000007 , 0x0000007c 
+ 00021531  0x0000323e jam  0x00000013 , 0x000003f0 
+ 00021532  0x0000323f rtn 
+ 00021533  0x00003242 fetch  0x00000001 , 0x00000477 
+ 00021534  0x00003243 beq  0x00000006 , 0x00005423 
+ 00021535  0x00003244 rtnne  0x00000018 
+ 00021536  0x00003245 jam  0x00000018 , 0x000003f0 
+ 00021537  0x00003246 jam  0x00000007 , 0x0000007c 
+ 00021538  0x00003247 rtn 
+ 00021539  0x00003249 jam  0x00000006 , 0x000003f0 
+ 00021540  0x0000324a jam  0x00000007 , 0x0000007c 
+ 00021541  0x0000324b rtn 
+ 00021542  0x0000324e rtn 
+ 00021543  0x00003251 jam  0x00000000 , 0x000008d2 
+ 00021544  0x00003252 jam  0x00000007 , 0x0000007c 
+ 00021545  0x00003253 branch  0x0000531e 
+ 00021546  0x00003256 jam  0x00000000 , 0x000008d2 
+ 00021547  0x00003257 jam  0x00000007 , 0x0000007c 
+ 00021548  0x00003258 branch  0x0000531e 
+ 00021549  0x0000325a jam  0x00000024 , 0x000009bd 
+ 00021550  0x0000325b branch  0x00007d86 
+ 00021551  0x0000325e jam  0x00000023 , 0x000009bd 
+ 00021552  0x0000325f call  0x00007d86 
+ 00021553  0x00003260 branch  0x0000376a 
+ 00021554  0x00003263 jam  0x00000022 , 0x000009bd 
+ 00021555  0x00003264 call  0x00007d86 
+ 00021556  0x00003265 setarg  0x00000000 
+ 00021557  0x00003266 store  0x00000002 , 0x00000075 
+ 00021558  0x00003267 fetch  0x00000002 , 0x00004284 
+ 00021559  0x00003268 lshift  0x0000003f , 0x0000003f 
+ 00021560  0x00003269 store  0x00000002 , 0x00000032 
+ 00021561  0x0000326a fetch  0x00000001 , 0x00004286 
+ 00021562  0x0000326b store  0x00000001 , 0x00000073 
+ 00021563  0x0000326c fetch  0x00000001 , 0x00004288 
+ 00021564  0x0000326d store  0x00000001 , 0x00000074 
+ 00021565  0x0000326e branch  0x00003746 
+ 00021566  0x00003271 jam  0x00000021 , 0x000009bd 
+ 00021567  0x00003272 branch  0x00007d86 
+ 00021568  0x00003275 fetcht  0x00000001 , 0x00000476 
+ 00021569  0x00003276 storet  0x00000001 , 0x00000054 
+ 00021570  0x00003277 branch  0x00005454 
+ 00021571  0x0000327a fetch  0x00000001 , 0x000003f7 
+ 00021572  0x0000327b set1  0x00000002 , 0x0000003f 
+ 00021573  0x0000327c store  0x00000001 , 0x000003f7 
+ 00021574  0x0000327d rtnbit1  0x00000003 
+ 00021575  0x0000327e jam  0x00000031 , 0x0000007c 
+ 00021576  0x0000327f branch  0x0000531e 
+ 00021577  0x00003284 rtn 
+ 00021578  0x00003287 fetch  0x00000001 , 0x00004170 
+ 00021579  0x00003288 fetcht  0x00000001 , 0x00000476 
+ 00021580  0x00003289 isub  0x00000002 , 0x0000003e 
+ 00021581  0x0000328b branch  0x00005454 , 0x00000002 
+ 00021582  0x0000328c jam  0x00000004 , 0x0000007c 
+ 00021583  0x0000328d jam  0x0000001f , 0x0000007e 
+ 00021584  0x0000328e jam  0x0000002e , 0x0000007d 
+ 00021585  0x0000328f rtn 
+ 00021586  0x00003292 call  0x00005764 
+ 00021587  0x00003293 branch  0x00005454 
+ 00021588  0x00003296 jam  0x00000003 , 0x0000007c 
+ 00021589  0x00003297 rtn 
+ 00021590  0x0000329a jam  0x00000021 , 0x0000007c 
+ 00021591  0x0000329b rtn 
+ 00021592  0x0000329e jam  0x00000022 , 0x0000007c 
+ 00021593  0x0000329f rtn 
+ 00021594  0x000032a2 fetch  0x00000001 , 0x00000055 
+ 00021595  0x000032a3 rtneq  0x00000013 
+ 00021596  0x000032a5 jam  0x00000002 , 0x00000055 
+ 00021597  0x000032a7 rtn 
+ 00021598  0x000032ab rtn 
+ 00021599  0x000032ae call  0x00005610 
+ 00021600  0x000032af jam  0x00000001 , 0x000003fa 
+ 00021601  0x000032b0 jam  0x0000000a , 0x000009bd 
+ 00021602  0x000032b1 call  0x00007d86 
+ 00021603  0x000032b3 call  0x000058fe 
+ 00021604  0x000032b4 nbranch  0x00005618 , 0x00000001 
+ 00021605  0x000032b6 nbranch  0x0000546a , 0x00000029 
+ 00021606  0x000032b7 jam  0x00000004 , 0x0000007c 
+ 00021607  0x000032b8 jam  0x00000008 , 0x0000007d 
+ 00021608  0x000032b9 jam  0x00000023 , 0x0000007e 
+ 00021609  0x000032ba rtn 
+ 00021610  0x000032bc fetch  0x00000001 , 0x0000004b 
+ 00021611  0x000032bd set1  0x00000002 , 0x0000003f 
+ 00021612  0x000032be store  0x00000001 , 0x0000004b 
+ 00021613  0x000032bf rtn 
+ 00021614  0x000032c3 fetcht  0x00000001 , 0x0000004c 
+ 00021615  0x000032c4 nsetflag  0x00000034 , 0x00000001 , 0x00000002 
+ 00021616  0x000032c5 storet  0x00000001 , 0x0000004c 
+ 00021617  0x000032c6 rtn 
+ 00021618  0x000032ca fetch  0x00000001 , 0x0000007f 
+ 00021619  0x000032cb rshift  0x0000003f , 0x0000003f 
+ 00021620  0x000032cc and_into  0x00000001 , 0x0000003f 
+ 00021621  0x000032cd rtn 
+ 00021622  0x000032d0 fetch  0x00000001 , 0x00004132 
+ 00021623  0x000032d1 rtnne  0x0000000a 
+ 00021624  0x000032d2 fetch  0x00000001 , 0x000008d9 
+ 00021625  0x000032d3 call  0x00006402 , 0x00000034 
+ 00021626  0x000032d4 rtn 
+ 00021627  0x000032d7 call  0x00005476 
+ 00021628  0x000032d8 call  0x00005472 
+ 00021629  0x000032d9 store  0x00000001 , 0x000003fb 
+ 00021630  0x000032da call  0x00005610 
+ 00021631  0x000032db jam  0x0000000c , 0x0000007c 
+ 00021632  0x000032dc fetch  0x00000001 , 0x0000425d 
+ 00021633  0x000032dd nrtn  0x00000034 
+ 00021634  0x000032de fetch  0x00000001 , 0x00000030 
+ 00021635  0x000032df rtnbit1  0x00000006 
+ 00021636  0x000032e0 jam  0x00000006 , 0x0000007e 
+ 00021637  0x000032e1 branch  0x0000536c 
+ 00021638  0x000032e4 arg  0x00000040 , 0x00000011 
+ 00021639  0x000032e5 call  0x00006fad 
+ 00021640  0x000032e6 fetch  0x00000004 , 0x00000476 
+ 00021641  0x000032e7 fetcht  0x00000004 , 0x000004b6 
+ 00021642  0x000032e8 isub  0x00000002 , 0x0000003e 
+ 00021643  0x000032e9 branch  0x0000548f , 0x00000005 
+ 00021644  0x000032ea jam  0x00000007 , 0x0000007c 
+ 00021645  0x000032eb jam  0x00000005 , 0x000003f0 
+ 00021646  0x000032ec rtn 
+ 00021647  0x000032ee call  0x00005493 
+ 00021648  0x000032ef fetch  0x00000001 , 0x000046e2 
+ 00021649  0x000032f0 branch  0x00005555 , 0x00000034 
+ 00021650  0x000032f1 rtn 
+ 00021651  0x000032f5 call  0x000070ab 
+ 00021652  0x000032f6 call  0x000031da 
+ 00021653  0x000032f7 fetch  0x00000001 , 0x0000004b 
+ 00021654  0x000032f8 isolate1  0x00000001 , 0x0000003f 
+ 00021655  0x000032f9 set0  0x00000001 , 0x0000003f 
+ 00021656  0x000032fa store  0x00000001 , 0x0000004b 
+ 00021657  0x000032fb fetch  0x00000001 , 0x00000055 
+ 00021658  0x000032fc beq  0x00000019 , 0x0000549d 
+ 00021659  0x000032fd beq  0x00000018 , 0x0000549d 
+ 00021660  0x000032fe rtn 
+ 00021661  0x00003300 fetch  0x00000001 , 0x000008d9 
+ 00021662  0x00003301 rtnne  0x00000000 
+ 00021663  0x00003302 fetch  0x00000001 , 0x0000004c 
+ 00021664  0x00003303 rtnbit1  0x00000002 
+ 00021665  0x00003304 branch  0x000059bd 
+ 00021666  0x00003307 arg  0x00000476 , 0x00000011 
+ 00021667  0x00003308 arg  0x000004a6 , 0x00000012 
+ 00021668  0x00003309 arg  0x00000486 , 0x00000005 
+ 00021669  0x0000330a call  0x00007077 
+ 00021670  0x0000330b arg  0x00000040 , 0x00000011 
+ 00021671  0x0000330c call  0x0000591c 
+ 00021672  0x0000330d jam  0x0000000b , 0x0000007c 
+ 00021673  0x0000330e fetch  0x00000001 , 0x00000030 
+ 00021674  0x0000330f bbit0  0x00000006 , 0x00005613 
+ 00021675  0x00003310 rtn 
+ 00021676  0x00003313 fetch  0x00000002 , 0x0000015e 
+ 00021677  0x00003314 add  0x0000003f , 0xfffffffd , 0x00000039 
+ 00021678  0x00003315 fetcht  0x00000001 , 0x00000476 
+ 00021679  0x00003316 setarg  0x00000100 
+ 00021680  0x00003317 iadd  0x00000002 , 0x00000005 
+ 00021681  0x00003318 arg  0x00000478 , 0x00000006 
+ 00021682  0x00003319 call  0x00007ecd 
+ 00021683  0x0000331a fetcht  0x00000001 , 0x00000053 
+ 00021684  0x0000331b fetch  0x00000001 , 0x00000477 
+ 00021685  0x0000331c isub  0x00000002 , 0x0000003f 
+ 00021686  0x0000331d sub  0x0000003f , 0x0000000e , 0x0000003e 
+ 00021687  0x0000331e branch  0x000054bc , 0x00000002 
+ 00021688  0x0000331f add  0x00000002 , 0x0000000e , 0x0000003f 
+ 00021689  0x00003320 store  0x00000001 , 0x00000053 
+ 00021690  0x00003321 jam  0x00000001 , 0x0000007c 
+ 00021691  0x00003322 rtn 
+ 00021692  0x00003324 fetch  0x00000001 , 0x0000004c 
+ 00021693  0x00003325 set1  0x00000003 , 0x0000003f 
+ 00021694  0x00003326 store  0x00000001 , 0x0000004c 
+ 00021695  0x00003327 bbit1  0x00000004 , 0x0000561d 
+ 00021696  0x00003328 rtn 
+ 00021697  0x0000332a fetch  0x00000001 , 0x00000476 
+ 00021698  0x0000332b store  0x00000001 , 0x0000007d 
+ 00021699  0x0000332c jam  0x00000002 , 0x0000007c 
+ 00021700  0x0000332d rtn 
+ 00021701  0x00003330 branch  0x00005454 
+ 00021702  0x00003333 jam  0x00000030 , 0x0000007c 
+ 00021703  0x00003334 rtn 
+ 00021704  0x00003337 jam  0x00000028 , 0x0000007c 
+ 00021705  0x00003338 rtn 
+ 00021706  0x0000333b jam  0x00000026 , 0x0000007c 
+ 00021707  0x0000333c rtn 
+ 00021708  0x00003341 rtn 
+ 00021709  0x00003346 fetch  0x00000002 , 0x00000032 
+ 00021710  0x00003347 iforce  0x00000002 
+ 00021711  0x00003348 fetch  0x00000001 , 0x00000477 
+ 00021712  0x00003349 store  0x00000001 , 0x00000094 
+ 00021713  0x0000334a imul32  0x00000002 , 0x00000002 
+ 00021714  0x0000334b fetch  0x00000002 , 0x00000478 
+ 00021715  0x0000334c lshift  0x0000003f , 0x0000003f 
+ 00021716  0x0000334d store  0x00000002 , 0x00000095 
+ 00021717  0x0000334e fetch  0x00000004 , 0x0000047a 
+ 00021718  0x0000334f lshift  0x0000003f , 0x0000003f 
+ 00021719  0x00003350 store  0x00000004 , 0x00000090 
+ 00021720  0x00003352 deposit  0x00000002 
+ 00021721  0x00003353 store  0x00000002 , 0x00000097 
+ 00021722  0x00003354 rtn 
+ 00021723  0x00003356 fetcht  0x00000001 , 0x000041fa 
+ 00021724  0x00003357 fetch  0x00000001 , 0x00000477 
+ 00021725  0x00003358 ixor  0x00000002 , 0x0000003e 
+ 00021726  0x00003359 nbranch  0x00005391 , 0x00000005 
+ 00021727  0x0000335a isolate1  0x00000000 , 0x0000003f 
+ 00021728  0x0000335b fetch  0x00000001 , 0x0000004c 
+ 00021729  0x0000335c setflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00021730  0x0000335d store  0x00000001 , 0x0000004c 
+ 00021731  0x0000335e jam  0x00000081 , 0x0000007c 
+ 00021732  0x0000335f jam  0x0000008b , 0x0000007d 
+ 00021733  0x00003360 rtn 
+ 00021734  0x00003367 rtn 
+ 00021735  0x0000336a branch  0x00005454 
+ 00021736  0x0000336e branch  0x00005454 
+ 00021737  0x00003373 fetch  0x00000002 , 0x00000476 
+ 00021738  0x00003374 store  0x00000002 , 0x00000170 
+ 00021739  0x00003375 rtn 
+ 00021740  0x00003378 fetch  0x00000002 , 0x00000479 
+ 00021741  0x00003379 fetcht  0x00000001 , 0x00004212 
+ 00021742  0x0000337a imul32  0x00000002 , 0x0000003f 
+ 00021743  0x0000337b arg  0x00000640 , 0x00000002 
+ 00021744  0x0000337c isub  0x00000002 , 0x0000003e 
+ 00021745  0x0000337e rtn 
+ 00021746  0x00003381 call  0x000054ec 
+ 00021747  0x00003382 branch  0x00005507 , 0x00000002 
+ 00021748  0x00003383 fetch  0x00000001 , 0x00000030 
+ 00021749  0x00003384 bbit1  0x00000001 , 0x00005507 
+ 00021750  0x00003385 fetch  0x00000002 , 0x00000477 
+ 00021751  0x00003386 lshift  0x0000003f , 0x0000003f 
+ 00021752  0x00003387 store  0x00000002 , 0x00000075 
+ 00021753  0x00003388 fetch  0x00000002 , 0x00000479 
+ 00021754  0x00003389 lshift  0x0000003f , 0x0000003f 
+ 00021755  0x0000338a store  0x00000002 , 0x00000032 
+ 00021756  0x0000338b fetch  0x00000002 , 0x0000047b 
+ 00021757  0x0000338c store  0x00000001 , 0x00000073 
+ 00021758  0x0000338d iforce  0x00000002 
+ 00021759  0x0000338e fetch  0x00000002 , 0x0000047d 
+ 00021760  0x0000338f store  0x00000001 , 0x00000074 
+ 00021761  0x00003390 isub  0x00000002 , 0x0000003e 
+ 00021762  0x00003391 nbranch  0x00005504 , 0x00000002 
+ 00021763  0x00003392 store  0x00000001 , 0x00000073 
+ 00021764  0x00003395 jam  0x00000003 , 0x0000007c 
+ 00021765  0x00003396 jam  0x00000017 , 0x0000007d 
+ 00021766  0x00003397 rtn 
+ 00021767  0x0000339a jam  0x00000024 , 0x0000007e 
+ 00021768  0x0000339b branch  0x0000536c 
+ 00021769  0x0000339e call  0x00005454 
+ 00021770  0x0000339f call  0x00005610 
+ 00021771  0x000033a0 call  0x00006fb0 
+ 00021772  0x000033a1 branch  0x00003736 
+ 00021773  0x000033a4 call  0x00005454 
+ 00021774  0x000033a5 branch  0x0000373f 
+ 00021775  0x000033a9 fetch  0x00000004 , 0x00000476 
+ 00021776  0x000033aa lshift  0x0000003f , 0x0000003f 
+ 00021777  0x000033ac branch  0x0000551b , 0x00000029 
+ 00021778  0x000033ad fetcht  0x00000001 , 0x0000425d 
+ 00021779  0x000033ae nbranch  0x00005518 , 0x00000034 
+ 00021780  0x000033b0 jam  0x00000004 , 0x0000007c 
+ 00021781  0x000033b1 jam  0x00000013 , 0x0000007d 
+ 00021782  0x000033b2 jam  0x00000024 , 0x0000007e 
+ 00021783  0x000033b3 rtn 
+ 00021784  0x000033b5 jam  0x00000034 , 0x0000007c 
+ 00021785  0x000033b6 jam  0x00000000 , 0x00000055 
+ 00021786  0x000033b7 branch  0x00003206 
+ 00021787  0x000033ba call  0x00003206 
+ 00021788  0x000033bb set1  0x00000022 , 0x00000000 
+ 00021789  0x000033bc fetch  0x00000001 , 0x0000016c 
+ 00021790  0x000033bd set0  0x00000002 , 0x0000003f 
+ 00021791  0x000033be store  0x00000001 , 0x0000016c 
+ 00021792  0x000033bf branch  0x00005454 
+ 00021793  0x000033c8 rtn 
+ 00021794  0x000033cc jam  0x00000003 , 0x0000007c 
+ 00021795  0x000033cd jam  0x00000018 , 0x0000007d 
+ 00021796  0x000033ce jam  0x0000002e , 0x000009bd 
+ 00021797  0x000033cf call  0x00007d86 
+ 00021798  0x000033d0 branch  0x0000376a 
+ 00021799  0x000033d3 fetch  0x00000001 , 0x00000476 
+ 00021800  0x000033d4 bne  0x00000001 , 0x00005533 
+ 00021801  0x000033d5 fetch  0x00000001 , 0x00000477 
+ 00021802  0x000033d6 bne  0x00000001 , 0x00005533 
+ 00021803  0x000033d7 fetch  0x00000001 , 0x00000478 
+ 00021804  0x000033d8 bne  0x00000030 , 0x00005533 
+ 00021805  0x000033d9 call  0x00005907 
+ 00021806  0x000033da branch  0x00005530 , 0x00000001 
+ 00021807  0x000033db jam  0x00000001 , 0x000008d2 
+ 00021808  0x000033dd jam  0x00000003 , 0x0000007c 
+ 00021809  0x000033de jam  0x0000003d , 0x0000007d 
+ 00021810  0x000033df branch  0x0000531e 
+ 00021811  0x000033e2 jam  0x00000024 , 0x0000007e 
+ 00021812  0x000033e3 branch  0x0000536c 
+ 00021813  0x000033e8 jam  0x0000003e , 0x0000007c 
+ 00021814  0x000033ea rtn 
+ 00021815  0x000033ec fetch  0x00000001 , 0x000046ea 
+ 00021816  0x000033ed beq  0x00000001 , 0x0000553e 
+ 00021817  0x000033ee beq  0x00000002 , 0x00005542 
+ 00021818  0x000033f0 call  0x00005907 
+ 00021819  0x000033f1 rtn  0x00000001 
+ 00021820  0x000033f2 jam  0x00000008 , 0x000008d2 
+ 00021821  0x000033f3 rtn 
+ 00021822  0x000033f6 call  0x0000797f 
+ 00021823  0x000033f7 jam  0x00000035 , 0x000009bd 
+ 00021824  0x000033f8 call  0x00007d86 
+ 00021825  0x000033f9 branch  0x0000553a 
+ 00021826  0x000033fd call  0x00005907 
+ 00021827  0x000033fe rtn  0x00000001 
+ 00021828  0x000033ff fetch  0x00000001 , 0x000046eb 
+ 00021829  0x00003400 beq  0x00000013 , 0x00005552 
+ 00021830  0x00003401 increase  0x00000001 , 0x0000003f 
+ 00021831  0x00003402 store  0x00000001 , 0x000046eb 
+ 00021832  0x00003406 jam  0x00000001 , 0x000008d4 
+ 00021833  0x00003407 jam  0x00000004 , 0x000008d2 
+ 00021834  0x00003408 fetch  0x00000001 , 0x000046eb 
+ 00021835  0x00003409 copy  0x0000003f , 0x00000007 
+ 00021836  0x0000340a fetch  0x00000006 , 0x00004719 
+ 00021837  0x0000340b qisolate1  0x0000003f 
+ 00021838  0x0000340c setarg  0x00000080 
+ 00021839  0x0000340d setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00021840  0x0000340e store  0x00000001 , 0x000046ec 
+ 00021841  0x0000340f rtn 
+ 00021842  0x00003412 jam  0x00000008 , 0x000008d2 
+ 00021843  0x00003413 rtn 
+ 00021844  0x00003416 call  0x0000555a 
+ 00021845  0x00003418 fetch  0x00000001 , 0x000046ed 
+ 00021846  0x00003419 rtn  0x00000034 
+ 00021847  0x0000341a jam  0x00000000 , 0x000046ed 
+ 00021848  0x0000341b jam  0x00000038 , 0x000009bd 
+ 00021849  0x0000341c branch  0x00007d86 
+ 00021850  0x00003421 call  0x00005907 
+ 00021851  0x00003422 ncall  0x00007982 , 0x00000001 
+ 00021852  0x00003423 call  0x00007992 , 0x00000001 
+ 00021853  0x00003424 call  0x00005907 
+ 00021854  0x00003425 rtn  0x00000001 
+ 00021855  0x00003426 jam  0x0000000c , 0x000008d2 
+ 00021856  0x00003427 jam  0x00000001 , 0x000008d4 
+ 00021857  0x00003428 rtn 
+ 00021858  0x0000342b arg  0x00000992 , 0x00000005 
+ 00021859  0x0000342c arg  0x00000476 , 0x00000006 
+ 00021860  0x0000342d call  0x00007e87 
+ 00021861  0x0000342e fetch  0x00000001 , 0x000046ea 
+ 00021862  0x0000342f rtneq  0x00000002 
+ 00021863  0x00003430 branch  0x000076f3 
+ 00021864  0x00003433 fetch  0x00000001 , 0x000008d3 
+ 00021865  0x00003434 beq  0x00000007 , 0x0000556c 
+ 00021866  0x00003435 fetch  0x00000001 , 0x000008d2 
+ 00021867  0x00003436 bne  0x00000001 , 0x0000557f 
+ 00021868  0x00003438 fetch  0x00000001 , 0x000008db 
+ 00021869  0x00003439 sub  0x0000003f , 0x00000020 , 0x00000005 
+ 00021870  0x0000343a nbranch  0x0000557f , 0x00000002 
+ 00021871  0x0000343b arg  0x000008ea , 0x00000005 
+ 00021872  0x0000343c iadd  0x00000005 , 0x00000005 
+ 00021873  0x0000343d fetch  0x00000008 , 0x00000476 
+ 00021874  0x0000343e istore  0x00000008 , 0x00000005 
+ 00021875  0x0000343f fetch  0x00000008 , 0x0000047e 
+ 00021876  0x00003440 istore  0x00000008 , 0x00000005 
+ 00021877  0x00003441 fetch  0x00000001 , 0x000008db 
+ 00021878  0x00003442 increase  0x00000010 , 0x0000003f 
+ 00021879  0x00003443 store  0x00000001 , 0x000008db 
+ 00021880  0x00003444 bne  0x00000030 , 0x00005454 
+ 00021881  0x00003446 call  0x00005907 
+ 00021882  0x00003447 branch  0x00005454 , 0x00000001 
+ 00021883  0x00003448 jam  0x00000001 , 0x000008dc 
+ 00021884  0x00003449 jam  0x00000002 , 0x000008d2 
+ 00021885  0x0000344a jam  0x00000001 , 0x000008d4 
+ 00021886  0x0000344b branch  0x00005454 
+ 00021887  0x0000344d jam  0x00000024 , 0x0000007e 
+ 00021888  0x0000344e branch  0x0000536c 
+ 00021889  0x00003450 fetch  0x00000001 , 0x000008da 
+ 00021890  0x00003451 beq  0x00000030 , 0x00005585 
+ 00021891  0x00003452 jam  0x0000003e , 0x0000007c 
+ 00021892  0x00003453 branch  0x0000531e 
+ 00021893  0x00003456 call  0x00005907 
+ 00021894  0x00003457 branch  0x0000558e , 0x00000001 
+ 00021895  0x00003458 fetch  0x00000001 , 0x000046ea 
+ 00021896  0x00003459 beq  0x00000002 , 0x0000558c 
+ 00021897  0x0000345a jam  0x00000001 , 0x000008d4 
+ 00021898  0x0000345b jam  0x00000004 , 0x000008d2 
+ 00021899  0x0000345c branch  0x0000531e 
+ 00021900  0x0000345f jam  0x00000036 , 0x000009bd 
+ 00021901  0x00003460 branch  0x00007d86 
+ 00021902  0x00003465 branch  0x0000531e 
+ 00021903  0x00003468 fetch  0x00000001 , 0x000008d3 
+ 00021904  0x00003469 beq  0x00000007 , 0x00005593 
+ 00021905  0x0000346a fetch  0x00000001 , 0x000008d2 
+ 00021906  0x0000346b bne  0x00000006 , 0x0000559f 
+ 00021907  0x0000346d arg  0x00000952 , 0x00000005 
+ 00021908  0x0000346e fetch  0x00000008 , 0x00000476 
+ 00021909  0x0000346f istore  0x00000008 , 0x00000005 
+ 00021910  0x00003470 fetch  0x00000008 , 0x0000047e 
+ 00021911  0x00003471 istore  0x00000008 , 0x00000005 
+ 00021912  0x00003472 call  0x00005907 
+ 00021913  0x00003473 branch  0x0000559d , 0x00000001 
+ 00021914  0x00003474 jam  0x00000007 , 0x000008d2 
+ 00021915  0x00003475 jam  0x00000001 , 0x000008d4 
+ 00021916  0x00003476 branch  0x00005454 
+ 00021917  0x00003478 jam  0x00000004 , 0x000008d3 
+ 00021918  0x00003479 branch  0x000076f3 
+ 00021919  0x0000347d jam  0x00000024 , 0x0000007e 
+ 00021920  0x0000347e branch  0x0000536c 
+ 00021921  0x00003481 fetch  0x00000001 , 0x000008d3 
+ 00021922  0x00003482 beq  0x0000000b , 0x000055a5 
+ 00021923  0x00003483 fetch  0x00000001 , 0x000008d2 
+ 00021924  0x00003484 bne  0x00000008 , 0x000055b4 
+ 00021925  0x00003486 arg  0x00000982 , 0x00000005 
+ 00021926  0x00003487 arg  0x00000476 , 0x00000006 
+ 00021927  0x00003488 call  0x00007e87 
+ 00021928  0x00003489 call  0x00005907 
+ 00021929  0x0000348a branch  0x000055b1 , 0x00000001 
+ 00021930  0x0000348b fetch  0x00000001 , 0x000046ea 
+ 00021931  0x0000348c beq  0x00000001 , 0x000055b6 
+ 00021932  0x0000348e jam  0x00000000 , 0x000046e9 
+ 00021933  0x0000348f jam  0x00000009 , 0x000008d2 
+ 00021934  0x00003490 jam  0x00000001 , 0x000008d4 
+ 00021935  0x00003491 jam  0x00000041 , 0x0000007d 
+ 00021936  0x00003492 branch  0x0000531e 
+ 00021937  0x00003495 jam  0x00000009 , 0x000008d3 
+ 00021938  0x00003496 jam  0x00000001 , 0x000008d5 
+ 00021939  0x00003497 branch  0x0000531e 
+ 00021940  0x00003499 jam  0x00000024 , 0x0000007e 
+ 00021941  0x0000349a branch  0x0000536c 
+ 00021942  0x0000349d fetch  0x00000001 , 0x000046e9 
+ 00021943  0x0000349e bbit1  0x00000007 , 0x000055bb 
+ 00021944  0x0000349f set1  0x00000006 , 0x0000003f 
+ 00021945  0x000034a0 store  0x00000001 , 0x000046e9 
+ 00021946  0x000034a1 rtn 
+ 00021947  0x000034a4 bbit1  0x00000000 , 0x000055ac 
+ 00021948  0x000034a5 jam  0x00000000 , 0x000046e9 
+ 00021949  0x000034a6 branch  0x000055b4 
+ 00021950  0x000034aa branch  0x0000531e 
+ 00021951  0x000034ad fetch  0x00000001 , 0x0000016c 
+ 00021952  0x000034ae set0  0x00000001 
+ 00021953  0x000034af store  0x00000001 , 0x0000016c 
+ 00021954  0x000034b0 call  0x00005454 
+ 00021955  0x000034b1 nrtn  0x00000029 
+ 00021956  0x000034b2 fetch  0x00000001 , 0x00000476 
+ 00021957  0x000034b3 fetcht  0x00000001 , 0x0000004b 
+ 00021958  0x000034b4 setflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00021959  0x000034b5 nsetflag  0x00000034 , 0x00000005 , 0x00000002 
+ 00021960  0x000034b6 storet  0x00000001 , 0x0000004b 
+ 00021961  0x000034b7 rtn 
+ 00021962  0x000034ba fetcht  0x00000008 , 0x00000476 
+ 00021963  0x000034bc fetch  0x00000001 , 0x00000055 
+ 00021964  0x000034bd rtnne  0x00000003 
+ 00021965  0x000034bf fetch  0x00000001 , 0x0000016c 
+ 00021966  0x000034c0 bbit0  0x00000004 , 0x000055d1 
+ 00021967  0x000034c2 jam  0x00000014 , 0x00000055 
+ 00021968  0x000034c3 rtn 
+ 00021969  0x000034c5 jam  0x00000004 , 0x00000055 
+ 00021970  0x000034c6 rtn 
+ 00021971  0x000034c8 fetch  0x00000001 , 0x0000017e 
+ 00021972  0x000034c9 store  0x00000001 , 0x0000015a 
+ 00021973  0x000034ca jam  0x00000003 , 0x0000007c 
+ 00021974  0x000034cb jam  0x00000038 , 0x0000007d 
+ 00021975  0x000034cc rtn 
+ 00021976  0x000034d0 jam  0x00000003 , 0x0000007c 
+ 00021977  0x000034d1 jam  0x00000039 , 0x0000007d 
+ 00021978  0x000034d2 force  0x00000009 , 0x00000039 
+ 00021979  0x000034d3 arg  0x00000476 , 0x00000006 
+ 00021980  0x000034d4 arg  0x00000151 , 0x00000005 
+ 00021981  0x000034d6 ifetch  0x00000001 , 0x00000006 
+ 00021982  0x000034d7 xor_into  0x00000055 , 0x0000003f 
+ 00021983  0x000034d8 istore  0x00000001 , 0x00000005 
+ 00021984  0x000034d9 loop  0x000055dd 
+ 00021985  0x000034da fetch  0x00000001 , 0x00000151 
+ 00021986  0x000034db fetcht  0x00000001 , 0x00000150 
+ 00021987  0x000034dc set0  0x00000007 , 0x00000002 
+ 00021988  0x000034dd set0  0x00000004 , 0x00000002 
+ 00021989  0x000034de beq  0x000000ff , 0x000055f1 
+ 00021990  0x000034df beq  0x00000000 , 0x0000560a 
+ 00021991  0x000034e0 beq  0x00000005 , 0x000055fe 
+ 00021992  0x000034e1 beq  0x00000007 , 0x000055fd 
+ 00021993  0x000034e2 beq  0x00000006 , 0x000055fe 
+ 00021994  0x000034e3 beq  0x00000008 , 0x000055fd 
+ 00021995  0x000034e4 beq  0x00000001 , 0x000055f6 
+ 00021996  0x000034e5 beq  0x00000002 , 0x000055f6 
+ 00021997  0x000034e6 beq  0x00000003 , 0x000055f6 
+ 00021998  0x000034e7 beq  0x00000009 , 0x000055f6 
+ 00021999  0x000034e8 beq  0x00000004 , 0x000055f6 
+ 00022000  0x000034e9 rtn 
+ 00022001  0x000034ec fetch  0x00000001 , 0x00000150 
+ 00022002  0x000034ed set1  0x00000003 , 0x0000003f 
+ 00022003  0x000034ee set1  0x00000002 , 0x0000003f 
+ 00022004  0x000034ef store  0x00000001 , 0x00000150 
+ 00022005  0x000034f0 rtn 
+ 00022006  0x000034f2 set1  0x00000004 , 0x00000002 
+ 00022007  0x000034f3 jam  0x00000005 , 0x0000017f 
+ 00022008  0x000034f4 fetch  0x00000002 , 0x00000158 
+ 00022009  0x000034f5 iforce  0x00000039 
+ 00022010  0x000034f6 store  0x00000002 , 0x0000015e 
+ 00022011  0x000034f7 arg  0x00000475 , 0x00000005 
+ 00022012  0x000034f8 call  0x00007f40 
+ 00022013  0x000034fa set1  0x00000007 , 0x00000002 
+ 00022014  0x000034fc set1  0x00000002 , 0x00000002 
+ 00022015  0x000034fd force  0x00000000 , 0x0000003f 
+ 00022016  0x000034fe store  0x00000001 , 0x0000000b 
+ 00022017  0x000034ff store  0x00000002 , 0x000000f9 
+ 00022018  0x00003500 store  0x00000002 , 0x000000fb 
+ 00022019  0x00003501 store  0x00000002 , 0x000000f7 
+ 00022020  0x00003502 store  0x00000002 , 0x000000f5 
+ 00022021  0x00003503 fetch  0x00000001 , 0x00000152 
+ 00022022  0x00003504 compare  0x00000000 , 0x0000003f , 0x000000ff 
+ 00022023  0x00003505 setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00022024  0x00003506 storet  0x00000001 , 0x00000150 
+ 00022025  0x00003507 rtn 
+ 00022026  0x0000350a set0  0x00000011 , 0x00000000 
+ 00022027  0x0000350b jam  0x00000000 , 0x00000150 
+ 00022028  0x0000350c fetch  0x00000001 , 0x0000017e 
+ 00022029  0x0000350d set0  0x00000006 , 0x0000003f 
+ 00022030  0x0000350e store  0x00000001 , 0x0000017e 
+ 00022031  0x0000350f rtn 
+ 00022032  0x00003516 arg  0x00000476 , 0x00000006 
+ 00022033  0x00003517 arg  0x00000486 , 0x00000005 
+ 00022034  0x00003518 branch  0x00007e87 
+ 00022035  0x0000351b jam  0x00000009 , 0x0000007c 
+ 00022036  0x0000351c rtn 
+ 00022037  0x0000351f nrtn  0x00000029 
+ 00022038  0x00003520 jam  0x00000011 , 0x0000007c 
+ 00022039  0x00003521 rtn 
+ 00022040  0x00003524 arg  0x00004140 , 0x00000011 
+ 00022041  0x00003525 call  0x00006f7a 
+ 00022042  0x00003526 jam  0x00000003 , 0x0000007c 
+ 00022043  0x00003527 jam  0x00000008 , 0x0000007d 
+ 00022044  0x00003528 rtn 
+ 00022045  0x0000352b jam  0x0000000a , 0x00000072 
+ 00022046  0x0000352c jam  0x00000007 , 0x0000007c 
+ 00022047  0x0000352d jam  0x00000016 , 0x000003f0 
+ 00022048  0x0000352e rtn 
+ 00022049  0x00003535 set1  0x00000025 , 0x00000000 
+ 00022050  0x00003536 bpatch  0x00000058 , 0x0000402b 
+ 00022051  0x00003537 disable  0x00000028 
+ 00022052  0x00003538 call  0x000058ca 
+ 00022053  0x00003539 fetch  0x00000001 , 0x00000048 
+ 00022054  0x0000353a rtn  0x00000034 
+ 00022055  0x0000353f bbit1  0x00000007 , 0x00005657 
+ 00022056  0x00003541 beq  0x00000001 , 0x0000577c 
+ 00022057  0x00003542 beq  0x00000002 , 0x000056ef 
+ 00022058  0x00003543 beq  0x00000003 , 0x00005662 
+ 00022059  0x00003544 beq  0x00000004 , 0x00005679 
+ 00022060  0x00003545 beq  0x00000027 , 0x000057e4 
+ 00022061  0x00003546 beq  0x00000028 , 0x00005713 
+ 00022062  0x00003547 beq  0x00000030 , 0x000056ff 
+ 00022063  0x00003548 beq  0x00000025 , 0x000057df 
+ 00022064  0x00003549 beq  0x00000026 , 0x0000570e 
+ 00022065  0x0000354a beq  0x00000031 , 0x000057ce 
+ 00022066  0x0000354b beq  0x00000037 , 0x00005777 
+ 00022067  0x0000354c beq  0x00000033 , 0x00005769 
+ 00022068  0x0000354d beq  0x00000008 , 0x00005862 
+ 00022069  0x0000354e beq  0x00000009 , 0x00005858 
+ 00022070  0x0000354f beq  0x0000000b , 0x0000586d 
+ 00022071  0x00003550 beq  0x0000000c , 0x00005876 
+ 00022072  0x00003551 beq  0x0000000f , 0x0000576f 
+ 00022073  0x00003552 beq  0x00000010 , 0x0000589b 
+ 00022074  0x00003553 beq  0x00000011 , 0x00005891 
+ 00022075  0x00003554 beq  0x00000007 , 0x0000575f 
+ 00022076  0x00003555 beq  0x0000002a , 0x0000578b 
+ 00022077  0x00003556 beq  0x0000000a , 0x0000578c 
+ 00022078  0x00003558 beq  0x0000001f , 0x000057c9 
+ 00022079  0x00003559 beq  0x00000006 , 0x00005704 
+ 00022080  0x0000355a beq  0x00000021 , 0x0000576c 
+ 00022081  0x0000355b beq  0x0000002d , 0x000057bf 
+ 00022082  0x0000355c beq  0x0000002e , 0x000057c4 
+ 00022083  0x0000355d beq  0x00000022 , 0x0000576c 
+ 00022084  0x0000355e beq  0x00000034 , 0x0000578d 
+ 00022085  0x0000355f beq  0x00000013 , 0x000057a2 
+ 00022086  0x00003560 beq  0x00000017 , 0x000057b1 
+ 00022087  0x00003561 beq  0x00000012 , 0x00005898 
+ 00022088  0x00003562 beq  0x0000002f , 0x000057b7 
+ 00022089  0x00003563 beq  0x00000018 , 0x000057bc 
+ 00022090  0x00003564 beq  0x0000003d , 0x00005808 
+ 00022091  0x00003565 beq  0x0000003e , 0x00005814 
+ 00022092  0x00003566 beq  0x0000003f , 0x00005826 
+ 00022093  0x00003567 beq  0x00000040 , 0x00005830 
+ 00022094  0x00003568 beq  0x00000041 , 0x00005845 
+ 00022095  0x00003569 beq  0x00000023 , 0x00005854 
+ 00022096  0x0000356a beq  0x0000003b , 0x0000584f 
+ 00022097  0x0000356c beq  0x00000005 , 0x00005855 
+ 00022098  0x0000356d beq  0x00000029 , 0x00005856 
+ 00022099  0x0000356e beq  0x00000038 , 0x00005857 
+ 00022100  0x0000356f beq  0x00000039 , 0x00005782 
+ 00022101  0x00003571 branch  0x00003b31 
+ 00022102  0x00003572 rtn 
+ 00022103  0x00003574 beq  0x00000081 , 0x00005686 
+ 00022104  0x00003575 beq  0x00000084 , 0x000056b2 
+ 00022105  0x00003576 beq  0x00000082 , 0x0000568f 
+ 00022106  0x00003577 beq  0x00000083 , 0x00005718 
+ 00022107  0x00003578 beq  0x0000008b , 0x00005723 
+ 00022108  0x00003579 beq  0x00000097 , 0x0000575b 
+ 00022109  0x0000357a beq  0x00000099 , 0x000056e0 
+ 00022110  0x0000357b beq  0x0000009a , 0x000056bd 
+ 00022111  0x0000357c beq  0x00000095 , 0x000056e5 
+ 00022112  0x0000357d beq  0x00000096 , 0x000056e6 
+ 00022113  0x0000357e branch  0x00003b31 
+ 00022114  0x00003585 force  0x00000002 , 0x0000003f 
+ 00022115  0x00003586 call  0x000058a1 
+ 00022116  0x00003587 fetch  0x00000001 , 0x00000049 
+ 00022117  0x00003588 istore  0x00000001 , 0x00000005 
+ 00022118  0x00003589 call  0x000058b0 
+ 00022119  0x0000358a set1  0x00000025 , 0x00000000 
+ 00022120  0x0000358b bpatch  0x00000059 , 0x0000402b 
+ 00022121  0x0000358c fetch  0x00000001 , 0x00000049 
+ 00022122  0x0000358d beq  0x00000008 , 0x00005699 
+ 00022123  0x0000358e beq  0x0000000f , 0x0000569d 
+ 00022124  0x0000358f beq  0x00000010 , 0x000056a8 
+ 00022125  0x00003590 beq  0x00000017 , 0x00005678 
+ 00022126  0x00003591 beq  0x00000033 , 0x000056ab 
+ 00022127  0x00003592 beq  0x00000041 , 0x000056b1 
+ 00022128  0x00003593 beq  0x00000011 , 0x00005672 
+ 00022129  0x00003594 rtn 
+ 00022130  0x00003597 fetch  0x00000001 , 0x00000055 
+ 00022131  0x00003598 rtn  0x00000034 
+ 00022132  0x00003599 jam  0x0000001b , 0x00000055 
+ 00022133  0x0000359a setarg  0x0000000c 
+ 00022134  0x0000359b arg  0x0000000b , 0x00000007 
+ 00022135  0x0000359c branch  0x00007ed4 
+ 00022136  0x0000359f branch  0x00003746 
+ 00022137  0x000035a1 force  0x00000003 , 0x0000003f 
+ 00022138  0x000035a2 call  0x000058a1 
+ 00022139  0x000035a3 fetch  0x00000001 , 0x00000049 
+ 00022140  0x000035a4 beq  0x0000000b , 0x00005681 
+ 00022141  0x000035a5 istore  0x00000001 , 0x00000005 
+ 00022142  0x000035a6 fetch  0x00000001 , 0x0000004a 
+ 00022143  0x000035a7 istore  0x00000001 , 0x00000005 
+ 00022144  0x000035a8 branch  0x000058b0 
+ 00022145  0x000035ab istore  0x00000001 , 0x00000005 
+ 00022146  0x000035ac fetch  0x00000001 , 0x0000004a 
+ 00022147  0x000035ad istore  0x00000001 , 0x00000005 
+ 00022148  0x000035ae arg  0x000003fb , 0x00000002 
+ 00022149  0x000035af branch  0x000058ec 
+ 00022150  0x000035b2 force  0x00000004 , 0x00000007 
+ 00022151  0x000035b3 call  0x000058a9 
+ 00022152  0x000035b4 setarg  0x0000007f 
+ 00022153  0x000035b5 istore  0x00000001 , 0x00000005 
+ 00022154  0x000035b6 fetch  0x00000001 , 0x00000049 
+ 00022155  0x000035b7 set0  0x00000007 , 0x0000003f 
+ 00022156  0x000035b8 istore  0x00000001 , 0x00000005 
+ 00022157  0x000035b9 fetch  0x00000001 , 0x00000049 
+ 00022158  0x000035ba branch  0x000058b0 
+ 00022159  0x000035bd force  0x00000005 , 0x00000007 
+ 00022160  0x000035be call  0x000058a9 
+ 00022161  0x000035bf setarg  0x0000007f 
+ 00022162  0x000035c0 istore  0x00000001 , 0x00000005 
+ 00022163  0x000035c1 fetch  0x00000001 , 0x00000049 
+ 00022164  0x000035c2 set0  0x00000007 , 0x0000003f 
+ 00022165  0x000035c3 istore  0x00000001 , 0x00000005 
+ 00022166  0x000035c4 fetch  0x00000001 , 0x0000004a 
+ 00022167  0x000035c5 istore  0x00000001 , 0x00000005 
+ 00022168  0x000035c6 branch  0x000058b0 
+ 00022169  0x000035ca call  0x000034a9 
+ 00022170  0x000035cb call  0x000058fe 
+ 00022171  0x000035cc rtn  0x00000001 
+ 00022172  0x000035cd branch  0x00005613 
+ 00022173  0x000035d0 fetch  0x00000001 , 0x0000004b 
+ 00022174  0x000035d1 bbit1  0x00000005 , 0x000056a4 
+ 00022175  0x000035d2 rtnbit0  0x00000004 
+ 00022176  0x000035d3 jam  0x00000012 , 0x0000007c 
+ 00022177  0x000035d4 set0  0x00000004 , 0x0000003f 
+ 00022178  0x000035d5 call  0x000058f6 
+ 00022179  0x000035d6 branch  0x000056a6 
+ 00022180  0x000035d8 jam  0x00000010 , 0x0000007c 
+ 00022181  0x000035d9 set0  0x00000005 , 0x0000003f 
+ 00022182  0x000035db store  0x00000001 , 0x0000004b 
+ 00022183  0x000035dc rtn 
+ 00022184  0x000035df call  0x00005907 
+ 00022185  0x000035e0 branch  0x00005615 , 0x00000001 
+ 00022186  0x000035e1 rtn 
+ 00022187  0x000035e4 jam  0x0000008b , 0x0000007c 
+ 00022188  0x000035e6 fetch  0x00000001 , 0x000003f7 
+ 00022189  0x000035e7 set1  0x00000000 , 0x0000003f 
+ 00022190  0x000035e8 store  0x00000001 , 0x000003f7 
+ 00022191  0x000035e9 jam  0x00000001 , 0x000009bd 
+ 00022192  0x000035ea branch  0x00007d86 
+ 00022193  0x000035ee rtn 
+ 00022194  0x000035f3 force  0x0000000c , 0x00000007 
+ 00022195  0x000035f4 call  0x000058a9 
+ 00022196  0x000035f5 setarg  0x00000001 
+ 00022197  0x000035f6 istore  0x00000001 , 0x00000005 
+ 00022198  0x000035f7 fetch  0x00000002 , 0x000003f4 
+ 00022199  0x000035f8 istore  0x00000002 , 0x00000005 
+ 00022200  0x000035f9 setarg  0x00000000 
+ 00022201  0x000035fa istore  0x00000003 , 0x00000005 
+ 00022202  0x000035fb setarg  0x00000000 
+ 00022203  0x000035fc istore  0x00000004 , 0x00000005 
+ 00022204  0x000035fd branch  0x000058b9 
+ 00022205  0x000035ff force  0x00000005 , 0x00000007 
+ 00022206  0x00003600 call  0x000058a9 
+ 00022207  0x00003601 fetch  0x00000003 , 0x000046e3 
+ 00022208  0x00003602 istore  0x00000003 , 0x00000005 
+ 00022209  0x00003603 call  0x000058b9 
+ 00022210  0x00003604 jam  0x00000001 , 0x000046ed 
+ 00022211  0x00003605 fetch  0x00000001 , 0x000046e3 
+ 00022212  0x00003606 beq  0x00000001 , 0x000056ce 
+ 00022213  0x00003607 beq  0x00000002 , 0x000056c8 
+ 00022214  0x00003608 beq  0x00000003 , 0x000056d4 
+ 00022215  0x00003609 rtn 
+ 00022216  0x0000360c fetch  0x00000001 , 0x000046e6 
+ 00022217  0x0000360d beq  0x00000000 , 0x000056de 
+ 00022218  0x0000360e beq  0x00000001 , 0x000056de 
+ 00022219  0x0000360f beq  0x00000002 , 0x000056de 
+ 00022220  0x00003610 beq  0x00000003 , 0x000056da 
+ 00022221  0x00003611 rtn 
+ 00022222  0x00003615 fetch  0x00000001 , 0x000046e6 
+ 00022223  0x00003616 beq  0x00000000 , 0x000056da 
+ 00022224  0x00003617 beq  0x00000001 , 0x000056dc 
+ 00022225  0x00003618 beq  0x00000002 , 0x000056de 
+ 00022226  0x00003619 beq  0x00000003 , 0x000056da 
+ 00022227  0x0000361a rtn 
+ 00022228  0x0000361e fetch  0x00000001 , 0x000046e6 
+ 00022229  0x0000361f beq  0x00000000 , 0x000056da 
+ 00022230  0x00003620 beq  0x00000001 , 0x000056da 
+ 00022231  0x00003621 beq  0x00000002 , 0x000056da 
+ 00022232  0x00003622 beq  0x00000003 , 0x000056da 
+ 00022233  0x00003623 rtn 
+ 00022234  0x0000362d jam  0x00000003 , 0x000046ea 
+ 00022235  0x0000362e rtn 
+ 00022236  0x00003632 jam  0x00000001 , 0x000046ea 
+ 00022237  0x00003633 rtn 
+ 00022238  0x0000363a jam  0x00000002 , 0x000046ea 
+ 00022239  0x0000363b rtn 
+ 00022240  0x00003641 force  0x00000005 , 0x00000007 
+ 00022241  0x00003642 call  0x000058a9 
+ 00022242  0x00003643 fetch  0x00000003 , 0x000046e3 
+ 00022243  0x00003644 istore  0x00000003 , 0x00000005 
+ 00022244  0x00003645 branch  0x000058bb 
+ 00022245  0x0000364a rtn 
+ 00022246  0x0000364c force  0x00000009 , 0x00000007 
+ 00022247  0x0000364d call  0x000058a9 
+ 00022248  0x0000364e fetch  0x00000001 , 0x00000094 
+ 00022249  0x0000364f istore  0x00000001 , 0x00000005 
+ 00022250  0x00003650 fetch  0x00000002 , 0x00000095 
+ 00022251  0x00003651 istore  0x00000002 , 0x00000005 
+ 00022252  0x00003652 fetch  0x00000004 , 0x00000090 
+ 00022253  0x00003653 istore  0x00000004 , 0x00000005 
+ 00022254  0x00003654 branch  0x000058b9 
+ 00022255  0x00003657 force  0x00000011 , 0x0000003f 
+ 00022256  0x00003658 call  0x000058a1 
+ 00022257  0x00003659 fetch  0x00000001 , 0x00000049 
+ 00022258  0x0000365a copy  0x0000003f , 0x00000002 
+ 00022259  0x0000365b beq  0x00000000 , 0x000056f7 
+ 00022260  0x0000365c beq  0x0000000e , 0x000056f7 
+ 00022261  0x0000365d beq  0x0000001c , 0x000056f7 
+ 00022262  0x0000365e rtn 
+ 00022263  0x00003660 istore  0x00000001 , 0x00000005 
+ 00022264  0x00003661 fetch  0x00000001 , 0x000045ae 
+ 00022265  0x00003662 istore  0x00000001 , 0x00000005 
+ 00022266  0x00003663 arg  0x0000000e , 0x00000039 
+ 00022267  0x00003664 setarg  0x000045af 
+ 00022268  0x00003665 iadd  0x00000002 , 0x00000006 
+ 00022269  0x00003666 call  0x00007ecd 
+ 00022270  0x00003667 branch  0x000058b9 
+ 00022271  0x0000366b force  0x00000003 , 0x0000003f 
+ 00022272  0x0000366c call  0x000058a1 
+ 00022273  0x0000366d setarg  0x00000114 
+ 00022274  0x0000366e istore  0x00000002 , 0x00000005 
+ 00022275  0x0000366f branch  0x000058b9 
+ 00022276  0x00003673 force  0x00000003 , 0x0000003f 
+ 00022277  0x00003674 call  0x000058a1 
+ 00022278  0x00003675 fetch  0x00000004 , 0x00000164 
+ 00022279  0x00003676 isub  0x00000022 , 0x0000003f 
+ 00022280  0x00003677 branch  0x0000570a , 0x00000029 
+ 00022281  0x00003678 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00022282  0x0000367b rshift2  0x0000003f , 0x0000003f 
+ 00022283  0x0000367c set0  0x0000000f , 0x0000003f 
+ 00022284  0x0000367d istore  0x00000002 , 0x00000005 
+ 00022285  0x0000367e branch  0x000058b9 
+ 00022286  0x00003681 force  0x00000006 , 0x0000003f 
+ 00022287  0x00003682 call  0x000058a1 
+ 00022288  0x00003683 fetch  0x00000005 , 0x000045a9 
+ 00022289  0x00003684 istore  0x00000005 , 0x00000005 
+ 00022290  0x00003685 branch  0x000058b9 
+ 00022291  0x00003688 force  0x00000009 , 0x0000003f 
+ 00022292  0x00003689 call  0x000058a1 
+ 00022293  0x0000368a fetch  0x00000008 , 0x00004138 
+ 00022294  0x0000368b istore  0x00000008 , 0x00000005 
+ 00022295  0x0000368c branch  0x000058b9 
+ 00022296  0x00003694 force  0x0000000c , 0x00000007 
+ 00022297  0x00003695 call  0x000058a9 
+ 00022298  0x00003696 setarg  0x00000001 
+ 00022299  0x00003697 istore  0x00000001 , 0x00000005 
+ 00022300  0x00003698 fetch  0x00000002 , 0x000003f4 
+ 00022301  0x00003699 istore  0x00000002 , 0x00000005 
+ 00022302  0x0000369a setarg  0x00000000 
+ 00022303  0x0000369b istore  0x00000003 , 0x00000005 
+ 00022304  0x0000369c setarg  0x00000000 
+ 00022305  0x0000369d istore  0x00000004 , 0x00000005 
+ 00022306  0x0000369e branch  0x000058bb 
+ 00022307  0x000036a1 force  0x00000003 , 0x00000007 
+ 00022308  0x000036a2 call  0x000058a9 
+ 00022309  0x000036a3 fetch  0x00000001 , 0x000041fa 
+ 00022310  0x000036a4 istore  0x00000001 , 0x00000005 
+ 00022311  0x000036a5 disable  0x00000028 
+ 00022312  0x000036a6 call  0x000058bb 
+ 00022313  0x000036a7 nrtn  0x00000028 
+ 00022314  0x000036a8 nrtn  0x00000029 
+ 00022315  0x000036a9 fetch  0x00000001 , 0x00004178 
+ 00022316  0x000036aa rtnbit0  0x00000000 
+ 00022317  0x000036ab call  0x0000573f 
+ 00022318  0x000036ac branch  0x00005749 
+ 00022319  0x000036b0 set1  0x00000025 , 0x00000000 
+ 00022320  0x000036b1 bpatch  0x0000005a , 0x0000402b 
+ 00022321  0x000036b2 fetch  0x00000001 , 0x0000413e 
+ 00022322  0x000036b3 set1  0x00000003 , 0x0000003f 
+ 00022323  0x000036b4 store  0x00000001 , 0x0000413e 
+ 00022324  0x000036b5 setarg  0x00000101 
+ 00022325  0x000036b6 store  0x00000002 , 0x000003f4 
+ 00022326  0x000036b7 rtn 
+ 00022327  0x000036ba set1  0x00000025 , 0x00000000 
+ 00022328  0x000036bb bpatch  0x0000005b , 0x0000402b 
+ 00022329  0x000036bc fetch  0x00000001 , 0x0000413e 
+ 00022330  0x000036bd set0  0x00000003 , 0x0000003f 
+ 00022331  0x000036be store  0x00000001 , 0x0000413e 
+ 00022332  0x000036bf setarg  0x00000000 
+ 00022333  0x000036c0 store  0x00000002 , 0x000003f4 
+ 00022334  0x000036c1 rtn 
+ 00022335  0x000036c4 jam  0x00000003 , 0x00004178 
+ 00022336  0x000036c5 setarg  0x00000000 
+ 00022337  0x000036c6 store  0x00000004 , 0x000041e2 
+ 00022338  0x000036c7 arg  0x0000417a , 0x00000005 
+ 00022339  0x000036c8 call  0x0000574d 
+ 00022340  0x000036c9 arg  0x00004187 , 0x00000005 
+ 00022341  0x000036ca call  0x0000574d 
+ 00022342  0x000036cb arg  0x000041e6 , 0x00000005 
+ 00022343  0x000036cc call  0x0000574d 
+ 00022344  0x000036cd branch  0x00005754 
+ 00022345  0x000036cf arg  0x00004187 , 0x00000005 
+ 00022346  0x000036d0 call  0x0000574d 
+ 00022347  0x000036d1 call  0x00005754 
+ 00022348  0x000036d2 branch  0x00005757 
+ 00022349  0x000036d6 setarg  0x00ffffff 
+ 00022350  0x000036d7 istore  0x00000003 , 0x00000005 
+ 00022351  0x000036d8 istore  0x00000003 , 0x00000005 
+ 00022352  0x000036d9 istore  0x00000003 , 0x00000005 
+ 00022353  0x000036da setarg  0x0000007f 
+ 00022354  0x000036db istore  0x00000001 , 0x00000005 
+ 00022355  0x000036dc rtn 
+ 00022356  0x000036de setarg  0x00000000 
+ 00022357  0x000036df store  0x00000002 , 0x00004176 
+ 00022358  0x000036e0 rtn 
+ 00022359  0x000036e2 fetch  0x00000001 , 0x00004178 
+ 00022360  0x000036e3 set1  0x00000002 , 0x0000003f 
+ 00022361  0x000036e4 store  0x00000001 , 0x00004178 
+ 00022362  0x000036e5 rtn 
+ 00022363  0x000036e9 force  0x00000002 , 0x00000007 
+ 00022364  0x000036ea call  0x000058a9 
+ 00022365  0x000036eb nbranch  0x000058b9 , 0x00000029 
+ 00022366  0x000036ed branch  0x000058bb 
+ 00022367  0x000036f2 force  0x00000002 , 0x0000003f 
+ 00022368  0x000036f3 call  0x000058a1 
+ 00022369  0x000036f4 fetch  0x00000001 , 0x000003f0 
+ 00022370  0x000036f5 istore  0x00000001 , 0x00000005 
+ 00022371  0x000036f6 call  0x000058bb 
+ 00022372  0x000036f8 fetch  0x00000001 , 0x0000004b 
+ 00022373  0x000036f9 set1  0x00000003 , 0x0000003f 
+ 00022374  0x000036fa store  0x00000001 , 0x0000004b 
+ 00022375  0x000036fb jam  0x00000032 , 0x00000072 
+ 00022376  0x000036fc rtn 
+ 00022377  0x00003700 force  0x00000001 , 0x0000003f 
+ 00022378  0x00003701 call  0x000058a1 
+ 00022379  0x00003702 branch  0x000058bb 
+ 00022380  0x00003704 force  0x00000001 , 0x0000003f 
+ 00022381  0x00003705 call  0x000058a1 
+ 00022382  0x00003706 branch  0x000058b9 
+ 00022383  0x0000370a force  0x00000002 , 0x0000003f 
+ 00022384  0x0000370b call  0x000058a1 
+ 00022385  0x0000370c fetch  0x00000001 , 0x0000004c 
+ 00022386  0x0000370d isolate0  0x00000002 , 0x0000003f 
+ 00022387  0x0000370e setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00022388  0x0000370f and_into  0x00000001 , 0x0000003f 
+ 00022389  0x00003710 istore  0x00000001 , 0x00000005 
+ 00022390  0x00003711 branch  0x000058bb 
+ 00022391  0x00003715 force  0x00000003 , 0x0000003f 
+ 00022392  0x00003716 call  0x000058a1 
+ 00022393  0x00003717 fetch  0x00000002 , 0x00000051 
+ 00022394  0x00003718 istore  0x00000002 , 0x00000005 
+ 00022395  0x00003719 branch  0x000058bb 
+ 00022396  0x0000371c jam  0x000000fa , 0x00000072 
+ 00022397  0x0000371d force  0x00000002 , 0x0000003f 
+ 00022398  0x0000371e call  0x000058a1 
+ 00022399  0x0000371f fetch  0x00000001 , 0x00000053 
+ 00022400  0x00003720 istore  0x00000001 , 0x00000005 
+ 00022401  0x00003721 branch  0x000058bb 
+ 00022402  0x00003724 force  0x0000000a , 0x0000003f 
+ 00022403  0x00003725 call  0x000058a1 
+ 00022404  0x00003726 arg  0x00000151 , 0x00000006 
+ 00022405  0x00003727 force  0x00000009 , 0x00000039 
+ 00022406  0x00003729 ifetch  0x00000001 , 0x00000006 
+ 00022407  0x0000372a xor_into  0x00000055 , 0x0000003f 
+ 00022408  0x0000372b istore  0x00000001 , 0x00000005 
+ 00022409  0x0000372c loop  0x00005786 
+ 00022410  0x0000372d branch  0x000058bb 
+ 00022411  0x00003730 branch  0x000058bb 
+ 00022412  0x00003732 branch  0x000058bb 
+ 00022413  0x00003735 rtn  0x00000029 
+ 00022414  0x00003736 call  0x000038bc 
+ 00022415  0x00003737 force  0x00000009 , 0x0000003f 
+ 00022416  0x00003738 call  0x000058a1 
+ 00022417  0x00003739 fetch  0x00000002 , 0x00000170 
+ 00022418  0x0000373a istore  0x00000002 , 0x00000005 
+ 00022419  0x0000373b fetch  0x00000003 , 0x00004140 
+ 00022420  0x0000373c istore  0x00000003 , 0x00000005 
+ 00022421  0x0000373d fetch  0x00000001 , 0x00004143 
+ 00022422  0x0000373e istore  0x00000001 , 0x00000005 
+ 00022423  0x0000373f fetch  0x00000002 , 0x00004144 
+ 00022424  0x00003740 istore  0x00000002 , 0x00000005 
+ 00022425  0x00003741 bmark0  0x00000003 , 0x0000579e 
+ 00022426  0x00003742 set0  0x00000003 , 0x00000000 
+ 00022427  0x00003743 call  0x000058bb 
+ 00022428  0x00003744 jam  0x00000013 , 0x0000007c 
+ 00022429  0x00003745 rtn 
+ 00022430  0x00003747 call  0x000058b9 
+ 00022431  0x00003748 jam  0x00000003 , 0x0000007c 
+ 00022432  0x00003749 jam  0x00000013 , 0x0000007d 
+ 00022433  0x0000374a rtn 
+ 00022434  0x0000374d arg  0x00000200 , 0x00000002 
+ 00022435  0x0000374e branch  0x000057a6 , 0x00000029 
+ 00022436  0x0000374f deposit  0x00000028 
+ 00022437  0x00003750 branch  0x000057a7 
+ 00022438  0x00003752 deposit  0x00000022 
+ 00022439  0x00003754 deposit  0x00000021 
+ 00022440  0x00003755 iadd  0x00000002 , 0x0000003f 
+ 00022441  0x00003756 and_into  0x000001fc , 0x0000003f 
+ 00022442  0x00003757 store  0x00000004 , 0x00000034 
+ 00022443  0x00003758 force  0x00000005 , 0x0000003f 
+ 00022444  0x00003759 call  0x000058a1 
+ 00022445  0x0000375a fetch  0x00000004 , 0x00000034 
+ 00022446  0x0000375b rshift  0x0000003f , 0x0000003f 
+ 00022447  0x0000375c istore  0x00000004 , 0x00000005 
+ 00022448  0x0000375d branch  0x000058bb 
+ 00022449  0x00003760 force  0x0000000a , 0x0000003f 
+ 00022450  0x00003761 call  0x000058a1 
+ 00022451  0x00003762 arg  0x000003ff , 0x00000006 
+ 00022452  0x00003763 ifetch  0x00000009 , 0x00000006 
+ 00022453  0x00003764 istore  0x00000009 , 0x00000005 
+ 00022454  0x00003765 branch  0x000058bb 
+ 00022455  0x0000376a force  0x00000003 , 0x0000003f 
+ 00022456  0x0000376b call  0x000058a1 
+ 00022457  0x0000376c setarg  0x00000114 
+ 00022458  0x0000376d istore  0x00000002 , 0x00000005 
+ 00022459  0x0000376e branch  0x000058bb 
+ 00022460  0x00003772 force  0x00000001 , 0x0000003f 
+ 00022461  0x00003773 call  0x000058a1 
+ 00022462  0x0000377c branch  0x000058bb 
+ 00022463  0x00003780 force  0x00000002 , 0x0000003f 
+ 00022464  0x00003781 call  0x000058a1 
+ 00022465  0x00003782 fetch  0x00000001 , 0x00004170 
+ 00022466  0x00003783 istore  0x00000001 , 0x00000005 
+ 00022467  0x00003784 branch  0x000058bb 
+ 00022468  0x00003788 force  0x00000002 , 0x0000003f 
+ 00022469  0x00003789 call  0x000058a1 
+ 00022470  0x0000378a setarg  0x00000005 
+ 00022471  0x0000378b istore  0x00000001 , 0x00000005 
+ 00022472  0x0000378c branch  0x000058bb 
+ 00022473  0x00003790 force  0x00000002 , 0x0000003f 
+ 00022474  0x00003791 call  0x000058a1 
+ 00022475  0x00003792 setarg  0x00000000 
+ 00022476  0x00003793 istore  0x00000001 , 0x00000005 
+ 00022477  0x00003794 branch  0x000058bb 
+ 00022478  0x00003799 jam  0x0000002e , 0x0000007c 
+ 00022479  0x0000379a fetch  0x00000001 , 0x00000030 
+ 00022480  0x0000379b set1  0x00000004 , 0x0000003f 
+ 00022481  0x0000379c store  0x00000001 , 0x00000030 
+ 00022482  0x0000379d copy  0x00000022 , 0x0000003f 
+ 00022483  0x0000379e store  0x00000004 , 0x0000040f 
+ 00022484  0x0000379f fetch  0x00000001 , 0x000003f7 
+ 00022485  0x000037a0 bbit1  0x00000003 , 0x000057dd 
+ 00022486  0x000037a1 set1  0x00000003 , 0x0000003f 
+ 00022487  0x000037a2 store  0x00000001 , 0x000003f7 
+ 00022488  0x000037a3 jam  0x00000005 , 0x000009bd 
+ 00022489  0x000037a4 call  0x00007d86 
+ 00022490  0x000037a5 force  0x00000001 , 0x0000003f 
+ 00022491  0x000037a6 call  0x000058a1 
+ 00022492  0x000037a7 branch  0x000058bb 
+ 00022493  0x000037a9 jam  0x00000000 , 0x00000048 
+ 00022494  0x000037aa rtn 
+ 00022495  0x000037ad force  0x00000006 , 0x0000003f 
+ 00022496  0x000037ae call  0x000058a1 
+ 00022497  0x000037af fetch  0x00000005 , 0x000045a9 
+ 00022498  0x000037b0 istore  0x00000005 , 0x00000005 
+ 00022499  0x000037b1 branch  0x000058bb 
+ 00022500  0x000037b4 force  0x00000009 , 0x0000003f 
+ 00022501  0x000037b5 call  0x000058a1 
+ 00022502  0x000037b6 fetch  0x00000008 , 0x00004138 
+ 00022503  0x000037b7 istore  0x00000008 , 0x00000005 
+ 00022504  0x000037b8 branch  0x000058bb 
+ 00022505  0x000037bb jam  0x00000001 , 0x000008d5 
+ 00022506  0x000037bc fetch  0x00000001 , 0x00004639 
+ 00022507  0x000037bd rtnne  0x00000001 
+ 00022508  0x000037be jam  0x00000013 , 0x000008d3 
+ 00022509  0x000037bf rtn 
+ 00022510  0x000037c2 call  0x000058fa 
+ 00022511  0x000037c3 jam  0x00000099 , 0x0000007c 
+ 00022512  0x000037c4 jam  0x00000003 , 0x000008d3 
+ 00022513  0x000037c5 rtn 
+ 00022514  0x000037c9 call  0x000058fa 
+ 00022515  0x000037ca jam  0x0000003d , 0x0000007c 
+ 00022516  0x000037cb jam  0x00000007 , 0x000008d3 
+ 00022517  0x000037cc rtn 
+ 00022518  0x000037cf arg  0x00000972 , 0x00000011 
+ 00022519  0x000037d0 arg  0x00000992 , 0x00000012 
+ 00022520  0x000037d1 arg  0x00000010 , 0x00000039 
+ 00022521  0x000037d2 call  0x00007f55 
+ 00022522  0x000037d3 branch  0x00005800 , 0x00000005 
+ 00022523  0x000037d4 jam  0x00000000 , 0x000008d3 
+ 00022524  0x000037d5 call  0x000076f5 
+ 00022525  0x000037d6 jam  0x00000024 , 0x0000007e 
+ 00022526  0x000037d7 jam  0x00000040 , 0x0000007d 
+ 00022527  0x000037d8 branch  0x0000536c 
+ 00022528  0x000037da jam  0x0000000a , 0x000008d3 
+ 00022529  0x000037db call  0x000076f3 
+ 00022530  0x000037dc jam  0x00000040 , 0x0000007d 
+ 00022531  0x000037dd branch  0x00005454 
+ 00022532  0x000037e2 jam  0x00000040 , 0x0000007c 
+ 00022533  0x000037e3 rtn 
+ 00022534  0x000037ea jam  0x0000003d , 0x0000007c 
+ 00022535  0x000037ec rtn 
+ 00022536  0x000037f3 jam  0x00000000 , 0x000008da 
+ 00022537  0x000037f4 force  0x00000004 , 0x0000003f 
+ 00022538  0x000037f5 call  0x000058a1 
+ 00022539  0x000037f6 force  0x00000001 , 0x0000003f 
+ 00022540  0x000037f7 istore  0x00000001 , 0x00000005 
+ 00022541  0x000037f8 force  0x00000001 , 0x0000003f 
+ 00022542  0x000037f9 istore  0x00000001 , 0x00000005 
+ 00022543  0x000037fa force  0x00000030 , 0x0000003f 
+ 00022544  0x000037fb istore  0x00000001 , 0x00000005 
+ 00022545  0x000037fc call  0x00005907 
+ 00022546  0x000037fd branch  0x000058bb , 0x00000001 
+ 00022547  0x000037fe branch  0x000058b9 
+ 00022548  0x00003802 force  0x00000011 , 0x0000003f 
+ 00022549  0x00003803 call  0x000058a1 
+ 00022550  0x00003804 fetch  0x00000001 , 0x000008da 
+ 00022551  0x00003805 arg  0x000046b2 , 0x00000006 
+ 00022552  0x00003806 iadd  0x00000006 , 0x00000006 
+ 00022553  0x00003807 ifetch  0x00000008 , 0x00000006 
+ 00022554  0x00003808 istore  0x00000008 , 0x00000005 
+ 00022555  0x00003809 ifetch  0x00000008 , 0x00000006 
+ 00022556  0x0000380a istore  0x00000008 , 0x00000005 
+ 00022557  0x0000380b fetch  0x00000001 , 0x000008da 
+ 00022558  0x0000380c increase  0x00000010 , 0x0000003f 
+ 00022559  0x0000380d store  0x00000001 , 0x000008da 
+ 00022560  0x0000380e call  0x00005907 
+ 00022561  0x0000380f branch  0x000058bb , 0x00000001 
+ 00022562  0x00003810 branch  0x000058b9 
+ 00022563  0x00003814 jam  0x00000006 , 0x000008d2 
+ 00022564  0x00003815 jam  0x0000003f , 0x0000007c 
+ 00022565  0x00003816 rtn 
+ 00022566  0x0000381a force  0x00000011 , 0x0000003f 
+ 00022567  0x0000381b call  0x000058a1 
+ 00022568  0x0000381c arg  0x00000972 , 0x00000006 
+ 00022569  0x0000381d ifetch  0x00000008 , 0x00000006 
+ 00022570  0x0000381e istore  0x00000008 , 0x00000005 
+ 00022571  0x0000381f ifetch  0x00000008 , 0x00000006 
+ 00022572  0x00003820 istore  0x00000008 , 0x00000005 
+ 00022573  0x00003821 branch  0x000058b9 
+ 00022574  0x00003824 jam  0x00000040 , 0x0000007c 
+ 00022575  0x00003825 rtn 
+ 00022576  0x00003829 call  0x00005907 
+ 00022577  0x0000382a call  0x00007628 , 0x00000001 
+ 00022578  0x0000382b force  0x00000011 , 0x0000003f 
+ 00022579  0x0000382c call  0x000058a1 
+ 00022580  0x0000382d arg  0x00000942 , 0x00000006 
+ 00022581  0x0000382e ifetch  0x00000008 , 0x00000006 
+ 00022582  0x0000382f istore  0x00000008 , 0x00000005 
+ 00022583  0x00003830 ifetch  0x00000008 , 0x00000006 
+ 00022584  0x00003831 istore  0x00000008 , 0x00000005 
+ 00022585  0x00003832 call  0x00005907 
+ 00022586  0x00003833 nbranch  0x000058b9 , 0x00000001 
+ 00022587  0x00003834 branch  0x000058bb , 0x00000001 
+ 00022588  0x00003838 jam  0x0000000f , 0x000008d3 
+ 00022589  0x0000383a call  0x000058fa 
+ 00022590  0x0000383b jam  0x0000000b , 0x0000007c 
+ 00022591  0x0000383c call  0x00005912 
+ 00022592  0x0000383d branch  0x00007665 , 0x00000001 
+ 00022593  0x0000383e branch  0x0000766f 
+ 00022594  0x00003840 call  0x000058f6 
+ 00022595  0x00003842 jam  0x00000041 , 0x0000007c 
+ 00022596  0x00003843 rtn 
+ 00022597  0x00003846 force  0x00000011 , 0x0000003f 
+ 00022598  0x00003847 call  0x000058a1 
+ 00022599  0x00003848 arg  0x00000972 , 0x00000006 
+ 00022600  0x00003849 ifetch  0x00000008 , 0x00000006 
+ 00022601  0x0000384a istore  0x00000008 , 0x00000005 
+ 00022602  0x0000384b ifetch  0x00000008 , 0x00000006 
+ 00022603  0x0000384c istore  0x00000008 , 0x00000005 
+ 00022604  0x0000384d call  0x00005907 
+ 00022605  0x0000384e nbranch  0x000058b9 , 0x00000001 
+ 00022606  0x0000384f branch  0x000058bb , 0x00000001 
+ 00022607  0x00003852 force  0x00000003 , 0x0000003f 
+ 00022608  0x00003853 call  0x000058a1 
+ 00022609  0x00003854 setarg  0x0000fffe 
+ 00022610  0x00003855 istore  0x00000002 , 0x00000005 
+ 00022611  0x00003856 branch  0x000058b9 
+ 00022612  0x00003859 branch  0x000058bb 
+ 00022613  0x0000385b branch  0x000058bb 
+ 00022614  0x0000385d branch  0x000058bb 
+ 00022615  0x0000385f branch  0x000058bb 
+ 00022616  0x00003865 call  0x00005916 
+ 00022617  0x00003866 arg  0x00004140 , 0x00000011 
+ 00022618  0x00003867 call  0x0000591c 
+ 00022619  0x00003868 force  0x00000011 , 0x0000003f 
+ 00022620  0x00003869 call  0x000058a1 
+ 00022621  0x0000386a arg  0x000004a6 , 0x00000011 
+ 00022622  0x0000386b arg  0x00000486 , 0x00000012 
+ 00022623  0x0000386c call  0x00007077 
+ 00022624  0x0000386d nbranch  0x000058b0 , 0x00000029 
+ 00022625  0x0000386e branch  0x000058b6 
+ 00022626  0x00003871 call  0x00005916 
+ 00022627  0x00003872 arg  0x00000040 , 0x00000011 
+ 00022628  0x00003873 call  0x00006f7a 
+ 00022629  0x00003875 force  0x00000011 , 0x0000003f 
+ 00022630  0x00003876 call  0x000058a1 
+ 00022631  0x00003877 arg  0x00000486 , 0x00000006 
+ 00022632  0x00003878 call  0x00007e87 
+ 00022633  0x00003879 fetch  0x00000001 , 0x00000055 
+ 00022634  0x0000387a beq  0x00000019 , 0x000058bb 
+ 00022635  0x0000387b beq  0x00000018 , 0x000058bb 
+ 00022636  0x0000387c branch  0x000058b6 
+ 00022637  0x0000387f fetch  0x00000001 , 0x000008d9 
+ 00022638  0x00003880 branch  0x00005873 , 0x00000034 
+ 00022639  0x00003881 call  0x00005907 
+ 00022640  0x00003882 call  0x000058fa , 0x00000001 
+ 00022641  0x00003883 ncall  0x000058f6 , 0x00000001 
+ 00022642  0x00003884 branch  0x00005874 
+ 00022643  0x00003886 call  0x000058fa 
+ 00022644  0x00003888 call  0x00005916 
+ 00022645  0x00003889 branch  0x00005865 
+ 00022646  0x0000388c arg  0x00004140 , 0x00000011 
+ 00022647  0x0000388d call  0x00006fad 
+ 00022648  0x0000388e force  0x00000005 , 0x0000003f 
+ 00022649  0x0000388f call  0x000058a1 
+ 00022650  0x00003890 fetch  0x00000004 , 0x000004b6 
+ 00022651  0x00003891 istore  0x00000004 , 0x00000005 
+ 00022652  0x00003892 arg  0x000003fb , 0x00000002 
+ 00022653  0x00003893 call  0x000058ec 
+ 00022654  0x00003894 call  0x000070ab 
+ 00022655  0x00003895 call  0x00005907 
+ 00022656  0x00003896 branch  0x00005885 , 0x00000001 
+ 00022657  0x00003897 jam  0x00000001 , 0x000003fe 
+ 00022658  0x00003898 fetch  0x00000001 , 0x000008d9 
+ 00022659  0x00003899 rtn  0x00000034 
+ 00022660  0x0000389a jam  0x0000000b , 0x0000007c 
+ 00022661  0x0000389c fetch  0x00000001 , 0x0000425d 
+ 00022662  0x0000389d rtn  0x00000034 
+ 00022663  0x0000389f call  0x00005907 
+ 00022664  0x000038a0 nbranch  0x0000588d , 0x00000001 
+ 00022665  0x000038a1 fetch  0x00000001 , 0x000003fd 
+ 00022666  0x000038a2 rtn  0x00000034 
+ 00022667  0x000038a3 jam  0x0000000f , 0x0000007c 
+ 00022668  0x000038a4 rtn 
+ 00022669  0x000038a6 rtnmark0  0x00000021 
+ 00022670  0x000038a7 set0  0x00000021 , 0x00000000 
+ 00022671  0x000038a8 jam  0x0000000f , 0x0000007c 
+ 00022672  0x000038a9 rtn 
+ 00022673  0x000038ae call  0x00005916 
+ 00022674  0x000038af call  0x00006fb0 
+ 00022675  0x000038b0 force  0x00000011 , 0x0000003f 
+ 00022676  0x000038b1 call  0x000058a1 
+ 00022677  0x000038b2 arg  0x00000486 , 0x00000006 
+ 00022678  0x000038b3 call  0x00007e87 
+ 00022679  0x000038b4 branch  0x000058b6 
+ 00022680  0x000038b7 force  0x00000001 , 0x0000003f 
+ 00022681  0x000038b8 call  0x000058a1 
+ 00022682  0x000038b9 branch  0x000058b6 
+ 00022683  0x000038bc force  0x00000002 , 0x0000003f 
+ 00022684  0x000038bd call  0x000058a1 
+ 00022685  0x000038be force  0x00000010 , 0x0000003f 
+ 00022686  0x000038bf istore  0x00000001 , 0x00000005 
+ 00022687  0x000038c0 store  0x00000001 , 0x00000054 
+ 00022688  0x000038c1 branch  0x000058b6 
+ 00022689  0x000038c5 lshift3  0x0000003f , 0x0000003f 
+ 00022690  0x000038c6 or_into  0x00000007 , 0x0000003f 
+ 00022691  0x000038c7 store  0x00000001 , 0x000003dc 
+ 00022692  0x000038c8 arg  0x00000011 , 0x00000039 
+ 00022693  0x000038c9 arg  0x000003de , 0x00000005 
+ 00022694  0x000038ca call  0x00007e9f 
+ 00022695  0x000038cb arg  0x000003de , 0x00000005 
+ 00022696  0x000038cc rtn 
+ 00022697  0x000038cf and  0x0000003f , 0x0000007f , 0x00000011 
+ 00022698  0x000038d0 jam  0x0000007f , 0x00000048 
+ 00022699  0x000038d1 deposit  0x00000007 
+ 00022700  0x000038d2 call  0x000058a1 
+ 00022701  0x000038d3 deposit  0x00000011 
+ 00022702  0x000038d4 istore  0x00000001 , 0x00000005 
+ 00022703  0x000038d5 rtn 
+ 00022704  0x000038d8 fetch  0x00000001 , 0x00000048 
+ 00022705  0x000038d9 lshift  0x0000003f , 0x0000003f 
+ 00022706  0x000038da fetcht  0x00000001 , 0x0000004c 
+ 00022707  0x000038db isolate1  0x00000001 , 0x00000002 
+ 00022708  0x000038dc setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00022709  0x000038dd branch  0x000058c0 
+ 00022710  0x000038e1 fetcht  0x00000001 , 0x0000004c 
+ 00022711  0x000038e2 and_into  0x00000001 , 0x00000002 
+ 00022712  0x000038e3 branch  0x000058bc 
+ 00022713  0x000038e6 force  0x00000000 , 0x00000002 
+ 00022714  0x000038e7 branch  0x000058bc 
+ 00022715  0x000038ea force  0x00000001 , 0x00000002 
+ 00022716  0x000038ec fetch  0x00000001 , 0x00000048 
+ 00022717  0x000038ed lshift  0x0000003f , 0x0000003f 
+ 00022718  0x000038ee setflag  0x00000029 , 0x00000000 , 0x0000003f 
+ 00022719  0x000038ef ixor  0x00000002 , 0x0000003f 
+ 00022720  0x000038f1 store  0x00000001 , 0x000003dd 
+ 00022721  0x000038f2 jam  0x00000000 , 0x00000048 
+ 00022722  0x000038f3 call  0x000058d1 
+ 00022723  0x000038f4 enable  0x00000028 
+ 00022724  0x000038f5 rtn 
+ 00022725  0x000038f9 fetch  0x00000001 , 0x0000007c 
+ 00022726  0x000038fa rtn  0x00000034 
+ 00022727  0x000038fb call  0x000058ca 
+ 00022728  0x000038fc fetch  0x00000001 , 0x0000007c 
+ 00022729  0x000038fd rtn 
+ 00022730  0x00003900 set1  0x00000025 , 0x00000000 
+ 00022731  0x00003901 bpatch  0x0000005c , 0x0000402b 
+ 00022732  0x00003902 fetch  0x00000001 , 0x00000048 
+ 00022733  0x00003903 branch  0x000058d1 , 0x00000034 
+ 00022734  0x00003904 fetch  0x00000001 , 0x00000078 
+ 00022735  0x00003905 nrtn  0x00000034 
+ 00022736  0x00003906 branch  0x000058db 
+ 00022737  0x00003908 fetch  0x00000001 , 0x00000078 
+ 00022738  0x00003909 branch  0x000058e1 , 0x00000034 
+ 00022739  0x0000390a fetch  0x00000003 , 0x00000078 
+ 00022740  0x0000390b store  0x00000003 , 0x00000048 
+ 00022741  0x0000390c fetcht  0x00000001 , 0x0000007b 
+ 00022742  0x0000390d fetch  0x00000001 , 0x0000004c 
+ 00022743  0x0000390e set0  0x00000001 , 0x0000003f 
+ 00022744  0x0000390f ior  0x00000002 , 0x0000003f 
+ 00022745  0x00003910 store  0x00000001 , 0x0000004c 
+ 00022746  0x00003911 jam  0x00000000 , 0x00000078 
+ 00022747  0x00003913 fetch  0x00000001 , 0x0000007c 
+ 00022748  0x00003914 rtn  0x00000034 
+ 00022749  0x00003915 fetch  0x00000004 , 0x0000007c 
+ 00022750  0x00003916 store  0x00000004 , 0x00000078 
+ 00022751  0x00003917 jam  0x00000000 , 0x0000007c 
+ 00022752  0x00003918 rtn 
+ 00022753  0x0000391a fetch  0x00000001 , 0x0000007c 
+ 00022754  0x0000391b rtn  0x00000034 
+ 00022755  0x0000391c fetch  0x00000003 , 0x0000007c 
+ 00022756  0x0000391d store  0x00000003 , 0x00000048 
+ 00022757  0x0000391e fetcht  0x00000001 , 0x0000007f 
+ 00022758  0x0000391f fetch  0x00000001 , 0x0000004c 
+ 00022759  0x00003920 set0  0x00000001 , 0x0000003f 
+ 00022760  0x00003921 ior  0x00000002 , 0x0000003f 
+ 00022761  0x00003922 store  0x00000001 , 0x0000004c 
+ 00022762  0x00003923 jam  0x00000000 , 0x0000007c 
+ 00022763  0x00003924 rtn 
+ 00022764  0x00003928 set1  0x00000025 , 0x00000000 
+ 00022765  0x00003929 bpatch  0x0000005d , 0x0000402b 
+ 00022766  0x0000392a fetch  0x00000001 , 0x0000004c 
+ 00022767  0x0000392b copy  0x0000003f , 0x00000013 
+ 00022768  0x0000392c ifetch  0x00000001 , 0x00000002 
+ 00022769  0x0000392d call  0x0000546e 
+ 00022770  0x0000392e call  0x000058b0 
+ 00022771  0x0000392f copy  0x00000013 , 0x0000003f 
+ 00022772  0x00003930 store  0x00000001 , 0x0000004c 
+ 00022773  0x00003931 rtn 
+ 00022774  0x00003934 fetcht  0x00000001 , 0x0000004c 
+ 00022775  0x00003935 set0  0x00000000 , 0x00000002 
+ 00022776  0x00003936 storet  0x00000001 , 0x0000004c 
+ 00022777  0x00003937 rtn 
+ 00022778  0x0000393a fetcht  0x00000001 , 0x0000004c 
+ 00022779  0x0000393b set1  0x00000000 , 0x00000002 
+ 00022780  0x0000393c storet  0x00000001 , 0x0000004c 
+ 00022781  0x0000393d rtn 
+ 00022782  0x00003941 nsetflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00022783  0x00003942 fetcht  0x00000001 , 0x0000004c 
+ 00022784  0x00003943 ixor  0x00000002 , 0x0000003f 
+ 00022785  0x00003944 isolate1  0x00000001 , 0x0000003f 
+ 00022786  0x00003945 rtn 
+ 00022787  0x00003949 fetch  0x00000001 , 0x0000004c 
+ 00022788  0x0000394a setflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00022789  0x0000394b store  0x00000001 , 0x0000004c 
+ 00022790  0x0000394c rtn 
+ 00022791  0x00003950 fetch  0x00000001 , 0x000008d8 
+ 00022792  0x00003951 compare  0x00000001 , 0x0000003f , 0x0000007f 
+ 00022793  0x00003952 rtn 
+ 00022794  0x00003954 fetch  0x00000001 , 0x000008d8 
+ 00022795  0x00003955 set1  0x00000007 , 0x0000003f 
+ 00022796  0x00003956 store  0x00000001 , 0x000008d8 
+ 00022797  0x00003957 rtn 
+ 00022798  0x00003959 fetch  0x00000001 , 0x000008d8 
+ 00022799  0x0000395a set0  0x00000007 , 0x0000003f 
+ 00022800  0x0000395b store  0x00000001 , 0x000008d8 
+ 00022801  0x0000395c rtn 
+ 00022802  0x0000395e fetch  0x00000001 , 0x000008d8 
+ 00022803  0x0000395f isolate1  0x00000007 , 0x0000003f 
+ 00022804  0x00003960 store  0x00000001 , 0x000008d8 
+ 00022805  0x00003961 rtn 
+ 00022806  0x00003965 arg  0x00000486 , 0x00000005 
+ 00022807  0x00003967 force  0x00000010 , 0x00000039 
+ 00022808  0x0000396a random  0x0000003f 
+ 00022809  0x0000396b istore  0x00000001 , 0x00000005 
+ 00022810  0x0000396c loop  0x00005918 
+ 00022811  0x0000396d rtn 
+ 00022812  0x00003970 call  0x00006f7e 
+ 00022813  0x00003971 arg  0x00004261 , 0x00000011 
+ 00022814  0x00003972 arg  0x000004b6 , 0x00000012 
+ 00022815  0x00003973 ifetch  0x00000008 , 0x00000011 
+ 00022816  0x00003974 fetcht  0x00000001 , 0x00000030 
+ 00022817  0x00003975 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00022818  0x00003976 storet  0x00000001 , 0x00000030 
+ 00022819  0x00003977 copy  0x00000011 , 0x00000005 
+ 00022820  0x00003978 call  0x00007077 
+ 00022821  0x00003979 branch  0x000031ee 
+ 00022822  0x00003981 set1  0x00000025 , 0x00000000 
+ 00022823  0x00003982 bpatch  0x0000005e , 0x0000402b 
+ 00022824  0x00003984 call  0x000058c5 
+ 00022825  0x00003985 nrtn  0x00000034 
+ 00022826  0x00003987 fetch  0x00000001 , 0x00000055 
+ 00022827  0x00003988 rtn  0x00000034 
+ 00022828  0x0000398c beq  0x00000004 , 0x0000597b 
+ 00022829  0x0000398d beq  0x00000005 , 0x00005980 
+ 00022830  0x0000398e beq  0x00000002 , 0x00005972 
+ 00022831  0x0000398f beq  0x00000003 , 0x00005988 
+ 00022832  0x00003990 beq  0x0000000e , 0x00005975 
+ 00022833  0x00003991 beq  0x00000006 , 0x000059a4 
+ 00022834  0x00003992 beq  0x00000007 , 0x000059bc 
+ 00022835  0x00003993 beq  0x00000009 , 0x000059bd 
+ 00022836  0x00003994 beq  0x0000000a , 0x000059c6 
+ 00022837  0x00003995 beq  0x0000000b , 0x000059ca 
+ 00022838  0x00003996 beq  0x0000000c , 0x00005992 
+ 00022839  0x00003997 beq  0x0000000d , 0x00005995 
+ 00022840  0x00003998 beq  0x0000000f , 0x0000599b 
+ 00022841  0x00003999 beq  0x00000012 , 0x00005965 
+ 00022842  0x0000399a beq  0x00000013 , 0x00005988 
+ 00022843  0x0000399b beq  0x00000010 , 0x00005968 
+ 00022844  0x0000399c beq  0x00000014 , 0x00005962 
+ 00022845  0x0000399d beq  0x00000015 , 0x00005988 
+ 00022846  0x0000399e beq  0x00000016 , 0x0000595c 
+ 00022847  0x0000399f beq  0x00000018 , 0x00005961 
+ 00022848  0x000039a0 beq  0x00000017 , 0x00005955 
+ 00022849  0x000039a1 beq  0x00000019 , 0x0000595b 
+ 00022850  0x000039a2 beq  0x0000001a , 0x00005946 
+ 00022851  0x000039a3 beq  0x0000001b , 0x00005950 
+ 00022852  0x000039a4 jam  0x00000000 , 0x00000055 
+ 00022853  0x000039a6 rtn 
+ 00022854  0x000039a8 fetch  0x00000001 , 0x000003f7 
+ 00022855  0x000039a9 rtnbit0  0x00000002 
+ 00022856  0x000039aa rtnbit0  0x00000003 
+ 00022857  0x000039ab jam  0x00000000 , 0x00000055 
+ 00022858  0x000039ac call  0x0000594c 
+ 00022859  0x000039ad branch  0x0000690d 
+ 00022860  0x000039b0 fetch  0x00000001 , 0x0000016c 
+ 00022861  0x000039b1 rtnbit0  0x00000001 
+ 00022862  0x000039b2 jam  0x0000000a , 0x00000055 
+ 00022863  0x000039b3 rtn 
+ 00022864  0x000039b6 arg  0x0000000b , 0x00000007 
+ 00022865  0x000039b7 call  0x00007ee2 
+ 00022866  0x000039b8 nrtn  0x00000034 
+ 00022867  0x000039b9 jam  0x0000001a , 0x00000055 
+ 00022868  0x000039ba rtn 
+ 00022869  0x000039bd fetch  0x00000001 , 0x0000016c 
+ 00022870  0x000039be set0  0x00000000 , 0x0000003f 
+ 00022871  0x000039bf store  0x00000001 , 0x0000016c 
+ 00022872  0x000039c0 jam  0x00000019 , 0x00000055 
+ 00022873  0x000039c1 jam  0x0000000b , 0x0000007c 
+ 00022874  0x000039c2 rtn 
+ 00022875  0x000039c4 rtn 
+ 00022876  0x000039c6 fetch  0x00000001 , 0x000003fa 
+ 00022877  0x000039c7 rtnne  0x00000002 
+ 00022878  0x000039c8 call  0x000059cc 
+ 00022879  0x000039c9 jam  0x00000018 , 0x00000055 
+ 00022880  0x000039ca rtn 
+ 00022881  0x000039cd rtn 
+ 00022882  0x000039cf jam  0x00000015 , 0x00000055 
+ 00022883  0x000039d0 jam  0x00000083 , 0x0000007c 
+ 00022884  0x000039d1 rtn 
+ 00022885  0x000039d3 jam  0x00000013 , 0x00000055 
+ 00022886  0x000039d4 jam  0x00000025 , 0x0000007c 
+ 00022887  0x000039d5 rtn 
+ 00022888  0x000039d8 fetch  0x00000001 , 0x000045f4 
+ 00022889  0x000039d9 rtneq  0x00000000 
+ 00022890  0x000039da beq  0x00000001 , 0x00005970 
+ 00022891  0x000039db arg  0x0000000a , 0x00000007 
+ 00022892  0x000039dc call  0x00007ee2 
+ 00022893  0x000039dd nrtn  0x00000034 
+ 00022894  0x000039de jam  0x00000000 , 0x000045f4 
+ 00022895  0x000039df branch  0x00005989 
+ 00022896  0x000039e1 rtn  0x00000029 
+ 00022897  0x000039e2 branch  0x000059a4 
+ 00022898  0x000039e5 jam  0x00000003 , 0x00000055 
+ 00022899  0x000039e6 jam  0x00000027 , 0x0000007c 
+ 00022900  0x000039e7 rtn 
+ 00022901  0x000039e9 jam  0x00000013 , 0x0000007c 
+ 00022902  0x000039ea set1  0x00000003 , 0x00000000 
+ 00022903  0x000039eb jam  0x00000005 , 0x00000055 
+ 00022904  0x000039ec setarg  0x000001ff 
+ 00022905  0x000039ed store  0x00000002 , 0x000003f8 
+ 00022906  0x000039ee rtn 
+ 00022907  0x000039f0 jam  0x00000005 , 0x00000055 
+ 00022908  0x000039f1 jam  0x000000ff , 0x000003f8 
+ 00022909  0x000039f2 set0  0x00000022 , 0x00000000 
+ 00022910  0x000039f3 jam  0x00000033 , 0x0000007c 
+ 00022911  0x000039f4 branch  0x0000531b 
+ 00022912  0x000039f6 rtnmark1  0x00000022 
+ 00022913  0x000039f7 fetch  0x00000002 , 0x000003f8 
+ 00022914  0x000039f8 sub  0x0000003f , 0x00000001 , 0x0000003f 
+ 00022915  0x000039f9 branch  0x00005986 , 0x00000005 
+ 00022916  0x000039fa store  0x00000002 , 0x000003f8 
+ 00022917  0x000039fb rtn 
+ 00022918  0x000039fd jam  0x0000000e , 0x00000055 
+ 00022919  0x000039fe rtn 
+ 00022920  0x00003a01 rtn 
+ 00022921  0x00003a04 fetch  0x00000001 , 0x000003f7 
+ 00022922  0x00003a05 rtnbit0  0x00000003 
+ 00022923  0x00003a06 rtnbit0  0x00000002 
+ 00022924  0x00003a07 fetch  0x00000001 , 0x0000016c 
+ 00022925  0x00003a08 set0  0x00000002 , 0x0000003f 
+ 00022926  0x00003a09 store  0x00000001 , 0x0000016c 
+ 00022927  0x00003a0a jam  0x00000013 , 0x0000007c 
+ 00022928  0x00003a0b jam  0x00000010 , 0x00000055 
+ 00022929  0x00003a0c rtn 
+ 00022930  0x00003a0f jam  0x0000000d , 0x00000055 
+ 00022931  0x00003a10 jam  0x00000031 , 0x0000007c 
+ 00022932  0x00003a11 rtn 
+ 00022933  0x00003a14 fetch  0x00000001 , 0x000003f7 
+ 00022934  0x00003a15 rtnbit0  0x00000002 
+ 00022935  0x00003a16 jam  0x00000000 , 0x00000055 
+ 00022936  0x00003a18 rtn 
+ 00022937  0x00003a1a jam  0x00000006 , 0x00000055 
+ 00022938  0x00003a1b rtn 
+ 00022939  0x00003a1e fetch  0x00000001 , 0x000003f8 
+ 00022940  0x00003a1f increase  0xffffffff , 0x0000003f 
+ 00022941  0x00003a20 branch  0x000059a0 , 0x00000034 
+ 00022942  0x00003a21 store  0x00000001 , 0x000003f8 
+ 00022943  0x00003a22 rtn 
+ 00022944  0x00003a24 jam  0x00000007 , 0x0000007c 
+ 00022945  0x00003a25 jam  0x00000016 , 0x000003f0 
+ 00022946  0x00003a26 jam  0x00000000 , 0x00000055 
+ 00022947  0x00003a27 rtn 
+ 00022948  0x00003a2a fetch  0x00000001 , 0x0000016c 
+ 00022949  0x00003a2b bbit1  0x00000002 , 0x00005989 
+ 00022950  0x00003a2c bbit1  0x00000000 , 0x000059a9 
+ 00022951  0x00003a2e jam  0x0000001a , 0x00000055 
+ 00022952  0x00003a2f rtn 
+ 00022953  0x00003a31 fetch  0x00000001 , 0x0000425d 
+ 00022954  0x00003a32 branch  0x000059b5 , 0x00000034 
+ 00022955  0x00003a33 fetch  0x00000001 , 0x000003f7 
+ 00022956  0x00003a34 rtnbit0  0x00000003 
+ 00022957  0x00003a35 rtnbit0  0x00000002 
+ 00022958  0x00003a36 fetch  0x00000004 , 0x0000040f 
+ 00022959  0x00003a37 arg  0x00000064 , 0x00000002 
+ 00022960  0x00003a38 iadd  0x00000002 , 0x00000002 
+ 00022961  0x00003a39 copy  0x00000022 , 0x0000003f 
+ 00022962  0x00003a3a isub  0x00000002 , 0x0000003e 
+ 00022963  0x00003a3b nrtn  0x00000002 
+ 00022964  0x00003a3c branch  0x00005955 
+ 00022965  0x00003a41 jam  0x00000016 , 0x00000055 
+ 00022966  0x00003a42 jam  0x00000004 , 0x00004718 
+ 00022967  0x00003a43 setarg  0x00003030 
+ 00022968  0x00003a44 store  0x00000002 , 0x00004719 
+ 00022969  0x00003a45 istore  0x00000002 , 0x00000005 
+ 00022970  0x00003a46 jam  0x00000002 , 0x000003fa 
+ 00022971  0x00003a47 branch  0x0000595c 
+ 00022972  0x00003a4a rtn 
+ 00022973  0x00003a4c fetch  0x00000001 , 0x0000016c 
+ 00022974  0x00003a4d bbit1  0x00000001 , 0x000059c1 
+ 00022975  0x00003a4e jam  0x0000001a , 0x00000055 
+ 00022976  0x00003a4f rtn 
+ 00022977  0x00003a52 fetch  0x00000001 , 0x0000016c 
+ 00022978  0x00003a53 set0  0x00000001 , 0x0000003f 
+ 00022979  0x00003a54 store  0x00000001 , 0x0000016c 
+ 00022980  0x00003a55 jam  0x0000000f , 0x0000007c 
+ 00022981  0x00003a56 rtn 
+ 00022982  0x00003a59 fetch  0x00000001 , 0x000003fe 
+ 00022983  0x00003a5a rtn  0x00000034 
+ 00022984  0x00003a5b jam  0x00000000 , 0x00000055 
+ 00022985  0x00003a5c branch  0x000059c1 
+ 00022986  0x00003a5f jam  0x0000000c , 0x00000055 
+ 00022987  0x00003a60 rtn 
+ 00022988  0x00003a63 fetch  0x00000001 , 0x0000004b 
+ 00022989  0x00003a64 bbit1  0x00000002 , 0x000059d1 
+ 00022990  0x00003a65 call  0x000058fa 
+ 00022991  0x00003a66 jam  0x00000008 , 0x0000007c 
+ 00022992  0x00003a67 branch  0x00003f9b 
+ 00022993  0x00003a69 fetch  0x00000001 , 0x0000004b 
+ 00022994  0x00003a6a set0  0x00000002 , 0x0000003f 
+ 00022995  0x00003a6b store  0x00000001 , 0x0000004b 
+ 00022996  0x00003a6c call  0x00005618 
+ 00022997  0x00003a6d call  0x00005903 
+ 00022998  0x00003a6e branch  0x00003f9b 
+ 00022999  0x00003a71 setarg  0x00000004 
+ 00023000  0x00003a72 store  0x00000001 , 0x00004718 
+ 00023001  0x00003a73 setarg  0x00003030 
+ 00023002  0x00003a74 istore  0x00000002 , 0x00000005 
+ 00023003  0x00003a75 istore  0x00000002 , 0x00000005 
+ 00023004  0x00003a76 rtn 
+ 00023005  0x00003a7f rtn  0x0000002b 
+ 00023006  0x00003a80 jam  0x00000000 , 0x0000472f 
+ 00023007  0x00003a81 call  0x00005234 
+ 00023008  0x00003a82 call  0x00006577 
+ 00023009  0x00003a83 setarg  0x00005a1c 
+ 00023010  0x00003a84 store  0x00000002 , 0x00004294 
+ 00023011  0x00003a85 setarg  0x00005a1c 
+ 00023012  0x00003a86 store  0x00000002 , 0x00004292 
+ 00023013  0x00003a87 setarg  0x00005a22 
+ 00023014  0x00003a88 store  0x00000002 , 0x00004296 
+ 00023015  0x00003a89 setarg  0x00005a1c 
+ 00023016  0x00003a8a store  0x00000002 , 0x00004290 
+ 00023017  0x00003a8b setarg  0x00005a18 
+ 00023018  0x00003a8c store  0x00000002 , 0x0000428a 
+ 00023019  0x00003a8d setarg  0x00005b60 
+ 00023020  0x00003a8e store  0x00000002 , 0x0000429c 
+ 00023021  0x00003a8f setarg  0x00005ba2 
+ 00023022  0x00003a90 store  0x00000002 , 0x0000429e 
+ 00023023  0x00003a91 setarg  0x00005cf9 
+ 00023024  0x00003a92 store  0x00000002 , 0x00004607 
+ 00023025  0x00003a93 setarg  0x00005d81 
+ 00023026  0x00003a94 store  0x00000002 , 0x0000429a 
+ 00023027  0x00003a95 set1  0x00000025 , 0x00000000 
+ 00023028  0x00003a96 bpatch  0x0000005f , 0x0000402b 
+ 00023029  0x00003a97 call  0x000059fa 
+ 00023030  0x00003a98 call  0x00005a13 
+ 00023031  0x00003a99 call  0x00003d48 
+ 00023032  0x00003a9a call  0x00006441 
+ 00023033  0x00003a9b branch  0x00005d0e 
+ 00023034  0x00003a9f fetch  0x00000004 , 0x0000473e 
+ 00023035  0x00003aa0 hstore  0x00000004 , 0x00008054 
+ 00023036  0x00003aa2 fetch  0x00000004 , 0x00004742 
+ 00023037  0x00003aa3 hstore  0x00000004 , 0x0000805a 
+ 00023038  0x00003aa5 hfetch  0x00000001 , 0x00008081 
+ 00023039  0x00003aa6 or_into  0x00000004 , 0x0000003f 
+ 00023040  0x00003aa7 hstore  0x00000001 , 0x00008081 
+ 00023041  0x00003aa8 jam  0x000000ff , 0x0000027c 
+ 00023042  0x00003aa9 hjam  0x00000000 , 0x00008062 
+ 00023043  0x00003aab fetch  0x00000002 , 0x0000473e 
+ 00023044  0x00003aac hstore  0x00000002 , 0x00008058 
+ 00023045  0x00003aad fetch  0x00000002 , 0x00004742 
+ 00023046  0x00003aae hstore  0x00000002 , 0x0000805e 
+ 00023047  0x00003aaf hstore  0x00000002 , 0x00008060 
+ 00023048  0x00003ab1 hfetch  0x00000004 , 0x00008078 
+ 00023049  0x00003ab2 set1  0x00000007 , 0x0000003f 
+ 00023050  0x00003ab3 hstore  0x00000004 , 0x00008078 
+ 00023051  0x00003ab5 call  0x00003ee4 
+ 00023052  0x00003ab6 fetch  0x00000001 , 0x0000475a 
+ 00023053  0x00003ab7 isolate1  0x00000000 , 0x0000003f 
+ 00023054  0x00003ab8 hfetcht  0x00000001 , 0x00008062 
+ 00023055  0x00003ab9 setflag  0x00000001 , 0x00000004 , 0x00000002 
+ 00023056  0x00003aba hstoret  0x00000001 , 0x00008062 
+ 00023057  0x00003abb rtn 
+ 00023058  0x00003ac0 call  0x000059fa 
+ 00023059  0x00003ac8 fetcht  0x00000001 , 0x0000472b 
+ 00023060  0x00003ac9 call  0x000064e8 
+ 00023061  0x00003aca call  0x00005a76 
+ 00023062  0x00003acc fetcht  0x00000001 , 0x00004729 
+ 00023063  0x00003acd branch  0x000064df 
+ 00023064  0x00003ad0 fetcht  0x00000001 , 0x00004729 
+ 00023065  0x00003ad1 call  0x000064f5 
+ 00023066  0x00003ad2 nbranch  0x00003e37 , 0x00000001 
+ 00023067  0x00003ad3 branch  0x00003e35 
+ 00023068  0x00003ada set1  0x00000025 , 0x00000000 
+ 00023069  0x00003adb bpatch  0x00000060 , 0x0000402c 
+ 00023070  0x00003adc call  0x00005dc5 
+ 00023071  0x00003add call  0x0000480e 
+ 00023072  0x00003ade nrtn  0x00000034 
+ 00023073  0x00003adf branch  0x00005a7b 
+ 00023074  0x00003ae1 copy  0x00000013 , 0x0000003f 
+ 00023075  0x00003ae2 beq  0x00000001 , 0x00005a67 
+ 00023076  0x00003ae3 beq  0x00000002 , 0x00005a3e 
+ 00023077  0x00003ae4 beq  0x00000004 , 0x00005a69 
+ 00023078  0x00003ae5 beq  0x00000005 , 0x00005a5b 
+ 00023079  0x00003ae6 beq  0x00000008 , 0x00005a44 
+ 00023080  0x00003ae7 beq  0x00000009 , 0x00005a4b 
+ 00023081  0x00003ae8 beq  0x0000000a , 0x00005a5e 
+ 00023082  0x00003ae9 beq  0x0000000b , 0x00005a4f 
+ 00023083  0x00003aea beq  0x0000000c , 0x00005a5a 
+ 00023084  0x00003aeb beq  0x00000013 , 0x00005a69 
+ 00023085  0x00003aec beq  0x00000014 , 0x00005a63 
+ 00023086  0x00003aed beq  0x00000015 , 0x00005a5c 
+ 00023087  0x00003aee beq  0x00000023 , 0x00005a5f 
+ 00023088  0x00003aef beq  0x00000024 , 0x00005a62 
+ 00023089  0x00003af0 beq  0x00000030 , 0x00005d49 
+ 00023090  0x00003af1 beq  0x00000031 , 0x00005d4b 
+ 00023091  0x00003af2 beq  0x00000032 , 0x00005d59 
+ 00023092  0x00003af3 beq  0x00000033 , 0x00005d57 
+ 00023093  0x00003af4 beq  0x00000034 , 0x00005d43 
+ 00023094  0x00003af5 beq  0x00000035 , 0x00005d39 
+ 00023095  0x00003af6 beq  0x00000036 , 0x00005d41 
+ 00023096  0x00003af7 beq  0x00000037 , 0x00005d4d 
+ 00023097  0x00003af8 beq  0x00000038 , 0x00005d4f 
+ 00023098  0x00003af9 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00023099  0x00003afa and_into  0x000000f0 , 0x0000003f 
+ 00023100  0x00003afb beq  0x00000050 , 0x00005da3 
+ 00023101  0x00003afc rtn 
+ 00023102  0x00003b00 fetch  0x00000001 , 0x000046ed 
+ 00023103  0x00003b01 ncall  0x00005d4d , 0x00000034 
+ 00023104  0x00003b02 call  0x00005a69 
+ 00023105  0x00003b03 fetch  0x00000002 , 0x0000470b 
+ 00023106  0x00003b04 rtnbit0  0x00000004 
+ 00023107  0x00003b05 branch  0x00005a4b 
+ 00023108  0x00003b08 fetch  0x00000002 , 0x0000470b 
+ 00023109  0x00003b09 set1  0x00000004 , 0x0000003f 
+ 00023110  0x00003b0b store  0x00000002 , 0x0000470b 
+ 00023111  0x00003b0c fetch  0x00000001 , 0x0000473b 
+ 00023112  0x00003b0d store  0x00000001 , 0x00004212 
+ 00023113  0x00003b0e call  0x00005a76 
+ 00023114  0x00003b0f branch  0x00005ce4 
+ 00023115  0x00003b14 fetch  0x00000002 , 0x0000470b 
+ 00023116  0x00003b15 set0  0x00000004 , 0x0000003f 
+ 00023117  0x00003b16 store  0x00000002 , 0x0000470b 
+ 00023118  0x00003b17 branch  0x00005ce8 
+ 00023119  0x00003b1f fetch  0x00000002 , 0x00004042 
+ 00023120  0x00003b20 rshift  0x0000003f , 0x0000003f 
+ 00023121  0x00003b21 fetcht  0x00000002 , 0x00004284 
+ 00023122  0x00003b22 isub  0x00000002 , 0x0000003e 
+ 00023123  0x00003b23 nbranch  0x00005a55 , 0x00000005 
+ 00023124  0x00003b24 branch  0x00003e7f 
+ 00023125  0x00003b26 fetch  0x00000001 , 0x0000472f 
+ 00023126  0x00003b27 rtnbit1  0x00000000 
+ 00023127  0x00003b28 hfetch  0x00000002 , 0x00008112 
+ 00023128  0x00003b29 ncall  0x00005dbd , 0x00000034 
+ 00023129  0x00003b2a branch  0x00003e77 
+ 00023130  0x00003b2d branch  0x00003e81 
+ 00023131  0x00003b30 branch  0x00005a6d 
+ 00023132  0x00003b33 call  0x00005a69 
+ 00023133  0x00003b34 branch  0x00005cea 
+ 00023134  0x00003b37 branch  0x00003e45 
+ 00023135  0x00003b3c fetch  0x00000001 , 0x0000472f 
+ 00023136  0x00003b3d bbit0  0x00000000 , 0x00003e79 
+ 00023137  0x00003b3e branch  0x00005dc1 
+ 00023138  0x00003b41 branch  0x00005dc1 
+ 00023139  0x00003b45 call  0x00005a6d 
+ 00023140  0x00003b46 fetch  0x00000001 , 0x0000473c 
+ 00023141  0x00003b47 store  0x00000001 , 0x00004212 
+ 00023142  0x00003b48 branch  0x00005ce6 
+ 00023143  0x00003b4c jam  0x00000000 , 0x000046e9 
+ 00023144  0x00003b4d rtn 
+ 00023145  0x00003b52 call  0x00005adf 
+ 00023146  0x00003b53 branch  0x00005a6b 
+ 00023147  0x00003b57 fetcht  0x00000001 , 0x0000472b 
+ 00023148  0x00003b58 branch  0x000064ff 
+ 00023149  0x00003b5b call  0x00005a6f 
+ 00023150  0x00003b5c branch  0x00005a76 
+ 00023151  0x00003b5f fetch  0x00000001 , 0x0000472e 
+ 00023152  0x00003b60 isolate1  0x00000000 , 0x0000003f 
+ 00023153  0x00003b61 call  0x00003e59 , 0x00000001 
+ 00023154  0x00003b62 fetch  0x00000001 , 0x0000472e 
+ 00023155  0x00003b63 isolate1  0x00000001 , 0x0000003f 
+ 00023156  0x00003b64 call  0x00003e61 , 0x00000001 
+ 00023157  0x00003b65 rtn 
+ 00023158  0x00003b67 fetcht  0x00000001 , 0x0000472b 
+ 00023159  0x00003b68 branch  0x000064fd 
+ 00023160  0x00003b6b fetch  0x00000001 , 0x00004603 
+ 00023161  0x00003b6c rtneq  0x00000000 
+ 00023162  0x00003b6d branch  0x00006838 
+ 00023163  0x00003b70 set1  0x00000025 , 0x00000000 
+ 00023164  0x00003b71 bpatch  0x00000061 , 0x0000402c 
+ 00023165  0x00003b72 hfetch  0x00000001 , 0x0000810c 
+ 00023166  0x00003b73 bbit1  0x00000003 , 0x00005a78 
+ 00023167  0x00003b74 call  0x00007f6e 
+ 00023168  0x00003b75 ifetch  0x00000001 , 0x00000003 
+ 00023169  0x00003b76 bne  0x00000001 , 0x00005a93 
+ 00023170  0x00003b77 hfetch  0x00000002 , 0x00008112 
+ 00023171  0x00003b78 sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00023172  0x00003b79 rtn  0x00000002 
+ 00023173  0x00003b7a ifetch  0x00000001 , 0x00000003 
+ 00023174  0x00003b7b store  0x00000001 , 0x00000416 
+ 00023175  0x00003b7c ifetcht  0x00000001 , 0x00000003 
+ 00023176  0x00003b7d copy  0x00000003 , 0x00000011 
+ 00023177  0x00003b7e storet  0x00000001 , 0x00000417 
+ 00023178  0x00003b7f add  0x00000002 , 0x00000003 , 0x00000002 
+ 00023179  0x00003b80 hfetch  0x00000002 , 0x00008112 
+ 00023180  0x00003b81 isub  0x00000002 , 0x00000002 
+ 00023181  0x00003b82 nrtn  0x00000002 
+ 00023182  0x00003b83 jam  0x00000001 , 0x00000418 
+ 00023183  0x00003b84 call  0x00005aaa 
+ 00023184  0x00003b85 fetch  0x00000001 , 0x00000418 
+ 00023185  0x00003b86 rtneq  0x00000000 
+ 00023186  0x00003b87 branch  0x00005aa5 
+ 00023187  0x00003b8a call  0x00005d3f 
+ 00023188  0x00003b8b call  0x00007f6b 
+ 00023189  0x00003b8c branch  0x00005a96 
+ 00023190  0x00003b90 set1  0x00000025 , 0x00000000 
+ 00023191  0x00003b91 bpatch  0x00000062 , 0x0000402c 
+ 00023192  0x00003b92 hfetch  0x00000002 , 0x00008112 
+ 00023193  0x00003b93 rtn  0x00000034 
+ 00023194  0x00003b94 call  0x00007f6e 
+ 00023195  0x00003b95 ifetch  0x00000001 , 0x00000003 
+ 00023196  0x00003b96 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00023197  0x00003b97 ncall  0x00005aa9 , 0x00000005 
+ 00023198  0x00003b98 nbranch  0x00005a96 , 0x00000005 
+ 00023199  0x00003b99 ifetch  0x00000001 , 0x00000003 
+ 00023200  0x00003b9a rtneq  0x00000005 
+ 00023201  0x00003b9b rtneq  0x00000029 
+ 00023202  0x00003b9c increase  0xffffffff , 0x00000003 
+ 00023203  0x00003b9d call  0x00005aa9 
+ 00023204  0x00003b9e branch  0x00005a96 
+ 00023205  0x00003ba1 call  0x00007f6e 
+ 00023206  0x00003ba2 increase  0x00000002 , 0x00000003 
+ 00023207  0x00003ba3 ifetch  0x00000001 , 0x00000003 
+ 00023208  0x00003ba4 iadd  0x00000003 , 0x00000003 
+ 00023209  0x00003ba6 branch  0x00006322 
+ 00023210  0x00003bab set1  0x00000025 , 0x00000000 
+ 00023211  0x00003bac bpatch  0x00000063 , 0x0000402c 
+ 00023212  0x00003bad fetch  0x00000001 , 0x00000416 
+ 00023213  0x00003bae beq  0x00000000 , 0x00005acc 
+ 00023214  0x00003baf beq  0x00000001 , 0x00005ad1 
+ 00023215  0x00003bb0 beq  0x00000002 , 0x00005ad6 
+ 00023216  0x00003bb1 beq  0x00000003 , 0x00005aec 
+ 00023217  0x00003bb2 beq  0x00000004 , 0x00005af5 
+ 00023218  0x00003bb3 beq  0x00000005 , 0x00005aff 
+ 00023219  0x00003bb4 beq  0x00000009 , 0x00005b23 
+ 00023220  0x00003bb5 beq  0x0000000b , 0x00005bd3 
+ 00023221  0x00003bb6 beq  0x0000000c , 0x00005bd4 
+ 00023222  0x00003bb7 beq  0x0000000d , 0x00005be8 
+ 00023223  0x00003bb8 beq  0x0000000e , 0x00005bf0 
+ 00023224  0x00003bb9 beq  0x0000000f , 0x00005bf6 
+ 00023225  0x00003bba beq  0x00000010 , 0x00005c02 
+ 00023226  0x00003bbb beq  0x00000011 , 0x00005c0a 
+ 00023227  0x00003bbc beq  0x00000012 , 0x00005c0e 
+ 00023228  0x00003bbd beq  0x00000026 , 0x00005c12 
+ 00023229  0x00003bbe beq  0x00000028 , 0x00005c19 
+ 00023230  0x00003bbf beq  0x00000029 , 0x00005c29 
+ 00023231  0x00003bc0 beq  0x0000002a , 0x00005c32 
+ 00023232  0x00003bc1 beq  0x0000002b , 0x00005c67 
+ 00023233  0x00003bc2 beq  0x0000002c , 0x00005c6d 
+ 00023234  0x00003bc3 beq  0x00000030 , 0x00005c74 
+ 00023235  0x00003bc4 beq  0x00000031 , 0x00005c7a 
+ 00023236  0x00003bc5 beq  0x00000032 , 0x00005c8b 
+ 00023237  0x00003bc6 beq  0x00000033 , 0x00005c93 
+ 00023238  0x00003bc7 beq  0x00000034 , 0x00005cb1 
+ 00023239  0x00003bc8 beq  0x00000035 , 0x00005cb9 
+ 00023240  0x00003bc9 beq  0x00000036 , 0x00005cc1 
+ 00023241  0x00003bca beq  0x00000038 , 0x00005ccb 
+ 00023242  0x00003bcb beq  0x00000048 , 0x00005cd3 
+ 00023243  0x00003bcc branch  0x00005cde 
+ 00023244  0x00003bd2 fetch  0x00000001 , 0x00000417 
+ 00023245  0x00003bd3 bne  0x00000006 , 0x00005cde 
+ 00023246  0x00003bd4 ifetch  0x00000006 , 0x00000003 
+ 00023247  0x00003bd5 store  0x00000006 , 0x00004140 
+ 00023248  0x00003bd6 branch  0x00005ce1 
+ 00023249  0x00003bda fetch  0x00000001 , 0x00000417 
+ 00023250  0x00003bdb bne  0x00000006 , 0x00005cde 
+ 00023251  0x00003bdc ifetch  0x00000006 , 0x00000003 
+ 00023252  0x00003bdd store  0x00000006 , 0x0000453e 
+ 00023253  0x00003bde branch  0x00005ce1 
+ 00023254  0x00003be3 fetch  0x00000001 , 0x00000417 
+ 00023255  0x00003be4 bne  0x00000001 , 0x00005cde 
+ 00023256  0x00003be5 copy  0x00000011 , 0x00000003 
+ 00023257  0x00003be6 call  0x00005ce1 
+ 00023258  0x00003be7 ifetcht  0x00000001 , 0x00000003 
+ 00023259  0x00003be8 storet  0x00000001 , 0x0000473d 
+ 00023260  0x00003be9 fetch  0x00000002 , 0x0000470b 
+ 00023261  0x00003bea rtnbit1  0x00000009 
+ 00023262  0x00003beb rtnbit1  0x00000000 
+ 00023263  0x00003bed fetch  0x00000001 , 0x0000472e 
+ 00023264  0x00003bee isolate1  0x00000000 , 0x0000003f 
+ 00023265  0x00003bef nbranch  0x00005ae5 , 0x00000001 
+ 00023266  0x00003bf0 fetcht  0x00000001 , 0x0000473d 
+ 00023267  0x00003bf1 and  0x00000002 , 0x00000003 , 0x0000003f 
+ 00023268  0x00003bf2 store  0x00000001 , 0x00004133 
+ 00023269  0x00003bf4 fetch  0x00000001 , 0x0000472e 
+ 00023270  0x00003bf5 isolate1  0x00000001 , 0x0000003f 
+ 00023271  0x00003bf6 nrtn  0x00000001 
+ 00023272  0x00003bf7 fetcht  0x00000001 , 0x0000473d 
+ 00023273  0x00003bf8 isolate1  0x00000002 , 0x00000002 
+ 00023274  0x00003bf9 branch  0x00003e63 , 0x00000001 
+ 00023275  0x00003bfa branch  0x00003e61 
+ 00023276  0x00003bfe fetch  0x00000001 , 0x00000417 
+ 00023277  0x00003bff sub  0x0000003f , 0x00000020 , 0x0000003e 
+ 00023278  0x00003c00 nbranch  0x00005cde , 0x00000002 
+ 00023279  0x00003c01 store  0x00000001 , 0x000045ae 
+ 00023280  0x00003c02 copy  0x0000003f , 0x00000039 
+ 00023281  0x00003c03 copy  0x00000011 , 0x00000003 
+ 00023282  0x00003c04 arg  0x000045af , 0x00000005 
+ 00023283  0x00003c05 call  0x00006341 
+ 00023284  0x00003c06 branch  0x00005ce1 
+ 00023285  0x00003c0b fetch  0x00000001 , 0x00000417 
+ 00023286  0x00003c0c sub  0x0000003f , 0x00000013 , 0x0000003e 
+ 00023287  0x00003c0d nbranch  0x00005cde , 0x00000002 
+ 00023288  0x00003c0e store  0x00000001 , 0x00004440 
+ 00023289  0x00003c0f copy  0x0000003f , 0x00000039 
+ 00023290  0x00003c10 copy  0x00000011 , 0x00000003 
+ 00023291  0x00003c11 arg  0x00004441 , 0x00000005 
+ 00023292  0x00003c12 call  0x00006341 
+ 00023293  0x00003c13 call  0x00005234 
+ 00023294  0x00003c14 branch  0x00005ce1 
+ 00023295  0x00003c19 fetch  0x00000001 , 0x0000470b 
+ 00023296  0x00003c1a bbit0  0x00000004 , 0x00005cde 
+ 00023297  0x00003c1b call  0x00003e1d 
+ 00023298  0x00003c1c branch  0x00005b0f , 0x00000001 
+ 00023299  0x00003c1d jam  0x00000000 , 0x00000418 
+ 00023300  0x00003c1f fetch  0x00000001 , 0x00004600 
+ 00023301  0x00003c20 rtn  0x00000034 
+ 00023302  0x00003c21 fetch  0x00000002 , 0x0000460b 
+ 00023303  0x00003c22 bne  0x00000000 , 0x00005b0d 
+ 00023304  0x00003c23 fetch  0x00000001 , 0x00000417 
+ 00023305  0x00003c24 store  0x00000002 , 0x0000460b 
+ 00023306  0x00003c26 copy  0x00000011 , 0x00000003 
+ 00023307  0x00003c29 copy  0x00000003 , 0x0000003f 
+ 00023308  0x00003c2a store  0x00000002 , 0x00004609 
+ 00023309  0x00003c2c call  0x00005b11 
+ 00023310  0x00003c2d branch  0x0000685f 
+ 00023311  0x00003c2f jam  0x00000000 , 0x00000418 
+ 00023312  0x00003c30 branch  0x00005d9f 
+ 00023313  0x00003c33 call  0x00005b17 
+ 00023314  0x00003c34 fetch  0x00000002 , 0x0000460b 
+ 00023315  0x00003c35 fetcht  0x00000002 , 0x0000472c 
+ 00023316  0x00003c36 isub  0x00000002 , 0x0000003f 
+ 00023317  0x00003c37 store  0x00000002 , 0x0000460b 
+ 00023318  0x00003c38 rtn 
+ 00023319  0x00003c3b fetch  0x00000002 , 0x0000460b 
+ 00023320  0x00003c3c arg  0x0000006e , 0x00000002 
+ 00023321  0x00003c3d call  0x00007faf 
+ 00023322  0x00003c3e fetcht  0x00000002 , 0x00004604 
+ 00023323  0x00003c3f call  0x00007faf 
+ 00023324  0x00003c40 fetcht  0x00000002 , 0x000045f6 
+ 00023325  0x00003c41 call  0x00007faf 
+ 00023326  0x00003c42 store  0x00000002 , 0x0000472c 
+ 00023327  0x00003c43 rtn 
+ 00023328  0x00003c47 jam  0x00000001 , 0x00000418 
+ 00023329  0x00003c48 jam  0x00000005 , 0x00000416 
+ 00023330  0x00003c49 branch  0x00005ce1 
+ 00023331  0x00003c4d fetch  0x00000002 , 0x0000470b 
+ 00023332  0x00003c4e rtnbit0  0x00000009 
+ 00023333  0x00003c50 jam  0x00000000 , 0x00000418 
+ 00023334  0x00003c51 fetch  0x00000001 , 0x00004569 
+ 00023335  0x00003c52 nrtn  0x00000034 
+ 00023336  0x00003c53 fetch  0x00000002 , 0x00004760 
+ 00023337  0x00003c54 branch  0x00005b4a , 0x00000034 
+ 00023338  0x00003c55 fetcht  0x00000002 , 0x0000475e 
+ 00023339  0x00003c56 isub  0x00000002 , 0x0000003e 
+ 00023340  0x00003c57 nrtn  0x00000005 
+ 00023341  0x00003c58 set1  0x00000025 , 0x00000000 
+ 00023342  0x00003c59 bpatch  0x00000064 , 0x0000402c 
+ 00023343  0x00003c5a jam  0x00000000 , 0x00000418 
+ 00023344  0x00003c5b fetch  0x00000002 , 0x00004764 
+ 00023345  0x00003c5c fetcht  0x00000002 , 0x00004760 
+ 00023346  0x00003c5d isub  0x00000002 , 0x00000012 
+ 00023347  0x00003c5e nbranch  0x00003b31 , 0x00000002 
+ 00023348  0x00003c5f nbranch  0x00005b38 , 0x00000005 
+ 00023349  0x00003c60 call  0x00005b47 
+ 00023350  0x00003c61 jam  0x00000001 , 0x00000418 
+ 00023351  0x00003c62 branch  0x00005b8e 
+ 00023352  0x00003c67 fetch  0x00000001 , 0x0000475a 
+ 00023353  0x00003c68 rtnbit1  0x00000002 
+ 00023354  0x00003c69 hfetch  0x00000002 , 0x00008058 
+ 00023355  0x00003c6a iforce  0x00000003 
+ 00023356  0x00003c6b fetch  0x00000002 , 0x00004760 
+ 00023357  0x00003c6c iadd  0x00000003 , 0x00000003 
+ 00023358  0x00003c6d copy  0x00000003 , 0x00000011 
+ 00023359  0x00003c6e setarg  0x00000901 
+ 00023360  0x00003c6f istore  0x00000002 , 0x00000003 
+ 00023361  0x00003c70 add  0x00000012 , 0x00000002 , 0x0000003f 
+ 00023362  0x00003c71 istore  0x00000001 , 0x00000003 
+ 00023363  0x00003c72 fetch  0x00000002 , 0x00004762 
+ 00023364  0x00003c73 istore  0x00000002 , 0x00000003 
+ 00023365  0x00003c74 copy  0x00000011 , 0x0000003f 
+ 00023366  0x00003c75 hstore  0x00000002 , 0x00008058 
+ 00023367  0x00003c77 setarg  0x00000000 
+ 00023368  0x00003c78 store  0x00000002 , 0x00004760 
+ 00023369  0x00003c79 rtn 
+ 00023370  0x00003c7c copy  0x00000011 , 0x00000003 
+ 00023371  0x00003c7d ifetch  0x00000002 , 0x00000003 
+ 00023372  0x00003c7e store  0x00000002 , 0x00004762 
+ 00023373  0x00003c7f fetch  0x00000001 , 0x00000417 
+ 00023374  0x00003c80 increase  0xfffffffe , 0x0000003f 
+ 00023375  0x00003c82 nbranch  0x00005cde , 0x00000002 
+ 00023376  0x00003c83 branch  0x00005cde , 0x00000034 
+ 00023377  0x00003c84 store  0x00000002 , 0x00004764 
+ 00023378  0x00003c86 fetch  0x00000001 , 0x0000475a 
+ 00023379  0x00003c87 bbit1  0x00000002 , 0x00005b5e 
+ 00023380  0x00003c89 fetcht  0x00000002 , 0x0000454e 
+ 00023381  0x00003c8b fetch  0x00000002 , 0x00004764 
+ 00023382  0x00003c8c call  0x00007faf 
+ 00023383  0x00003c8e store  0x00000002 , 0x00004760 
+ 00023384  0x00003c8f copy  0x00000003 , 0x0000003f 
+ 00023385  0x00003c90 store  0x00000002 , 0x0000475c 
+ 00023386  0x00003c91 setarg  0x00000000 
+ 00023387  0x00003c92 store  0x00000002 , 0x0000475e 
+ 00023388  0x00003c93 jam  0x0000001b , 0x000009bd 
+ 00023389  0x00003c94 branch  0x00004bd6 
+ 00023390  0x00003c97 arg  0x00000014 , 0x00000002 
+ 00023391  0x00003c98 branch  0x00005b55 
+ 00023392  0x00003c9c fetch  0x00000001 , 0x0000475b 
+ 00023393  0x00003c9d jam  0x00000000 , 0x0000475b 
+ 00023394  0x00003c9e nbranch  0x00005bbe , 0x00000034 
+ 00023395  0x00003ca0 fetch  0x00000002 , 0x00004760 
+ 00023396  0x00003ca1 branch  0x00003b31 , 0x00000034 
+ 00023397  0x00003ca2 add  0x0000003f , 0x00000003 , 0x00000002 
+ 00023398  0x00003ca3 storet  0x00000002 , 0x00004467 
+ 00023399  0x00003ca4 arg  0x00000014 , 0x00000002 
+ 00023400  0x00003ca5 call  0x00007faf 
+ 00023401  0x00003ca6 copy  0x0000003f , 0x00000039 
+ 00023402  0x00003ca7 store  0x00000002 , 0x0000475e 
+ 00023403  0x00003caa fetcht  0x00000002 , 0x00004760 
+ 00023404  0x00003cab isub  0x00000002 , 0x00000002 
+ 00023405  0x00003cac fetch  0x00000001 , 0x0000475a 
+ 00023406  0x00003cad bbit1  0x00000002 , 0x00005b71 
+ 00023407  0x00003cae ncall  0x00005b9a , 0x00000005 
+ 00023408  0x00003caf jam  0x00000001 , 0x000003da 
+ 00023409  0x00003cb1 set1  0x00000025 , 0x00000000 
+ 00023410  0x00003cb2 bpatch  0x00000065 , 0x0000402c 
+ 00023411  0x00003cb3 arg  0x00000002 , 0x00000001 
+ 00023412  0x00003cb4 fetch  0x00000002 , 0x00004762 
+ 00023413  0x00003cb5 store  0x00000002 , 0x0000446c 
+ 00023414  0x00003cb6 fetch  0x00000002 , 0x0000475c 
+ 00023415  0x00003cb7 copy  0x0000003f , 0x00000003 
+ 00023416  0x00003cbb call  0x00006341 
+ 00023417  0x00003cbc fetch  0x00000001 , 0x0000475a 
+ 00023418  0x00003cbd bbit0  0x00000002 , 0x00005bb9 
+ 00023419  0x00003cbe setarg  0x00004467 
+ 00023420  0x00003cbf isub  0x00000005 , 0x0000003f 
+ 00023421  0x00003cc0 sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00023422  0x00003cc1 storet  0x00000001 , 0x00004466 
+ 00023423  0x00003cc2 fetch  0x00000002 , 0x00004764 
+ 00023424  0x00003cc3 fetcht  0x00000002 , 0x00004760 
+ 00023425  0x00003cc4 call  0x00005b94 
+ 00023426  0x00003cc5 fetcht  0x00000001 , 0x00000379 
+ 00023427  0x00003cc6 fetch  0x00000001 , 0x00000419 
+ 00023428  0x00003cc7 branch  0x00005b8c , 0x00000034 
+ 00023429  0x00003cc8 nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00023430  0x00003cc9 storet  0x00000001 , 0x00000379 
+ 00023431  0x00003cca jam  0x0000001b , 0x000009bd 
+ 00023432  0x00003ccb call  0x00004bd6 
+ 00023433  0x00003ccc jam  0x00000001 , 0x0000475b 
+ 00023434  0x00003ccd fetcht  0x00000001 , 0x00000379 
+ 00023435  0x00003cce branch  0x00004f92 
+ 00023436  0x00003cd1 call  0x00005b8e 
+ 00023437  0x00003cd2 branch  0x00004f90 
+ 00023438  0x00003cd5 fetch  0x00000001 , 0x0000475a 
+ 00023439  0x00003cd6 set1  0x00000003 , 0x0000003f 
+ 00023440  0x00003cd7 branch  0x00005d9a 
+ 00023441  0x00003cda fetch  0x00000001 , 0x0000475a 
+ 00023442  0x00003cdb set0  0x00000003 , 0x0000003f 
+ 00023443  0x00003cdc branch  0x00005d9a 
+ 00023444  0x00003cdf jam  0x00000000 , 0x00000419 
+ 00023445  0x00003ce0 isub  0x00000002 , 0x0000003e 
+ 00023446  0x00003ce1 rtn  0x00000005 
+ 00023447  0x00003ce2 nrtn  0x00000002 
+ 00023448  0x00003ce3 jam  0x00000001 , 0x00000419 
+ 00023449  0x00003ce4 rtn 
+ 00023450  0x00003ce7 fetch  0x00000003 , 0x00004544 
+ 00023451  0x00003ce8 nbranch  0x00005b9e , 0x00000034 
+ 00023452  0x00003ce9 jam  0x0000001f , 0x00004546 
+ 00023453  0x00003cea rtn 
+ 00023454  0x00003cec call  0x00004bd4 
+ 00023455  0x00003ced nbranch  0x00003b31 , 0x00000034 
+ 00023456  0x00003cee jam  0x0000001f , 0x00004545 
+ 00023457  0x00003cef rtn 
+ 00023458  0x00003cf3 set1  0x00000025 , 0x00000000 
+ 00023459  0x00003cf4 bpatch  0x00000066 , 0x0000402c 
+ 00023460  0x00003cf5 fetch  0x00000002 , 0x00004760 
+ 00023461  0x00003cf6 branch  0x00003b31 , 0x00000034 
+ 00023462  0x00003cf7 fetcht  0x00000002 , 0x0000475e 
+ 00023463  0x00003cf8 branch  0x00003b31 , 0x00000034 
+ 00023464  0x00003cf9 isub  0x00000002 , 0x0000003f 
+ 00023465  0x00003cfa arg  0x0000001b , 0x00000002 
+ 00023466  0x00003cfb call  0x00007faf 
+ 00023467  0x00003cfc copy  0x0000003f , 0x00000039 
+ 00023468  0x00003cfd fetch  0x00000002 , 0x0000475c 
+ 00023469  0x00003cfe copy  0x0000003f , 0x00000003 
+ 00023470  0x00003cff fetch  0x00000002 , 0x0000475e 
+ 00023471  0x00003d00 iadd  0x00000003 , 0x00000003 
+ 00023472  0x00003d01 iadd  0x00000039 , 0x0000003f 
+ 00023473  0x00003d02 store  0x00000002 , 0x0000475e 
+ 00023474  0x00003d03 fetcht  0x00000002 , 0x00004760 
+ 00023475  0x00003d04 isub  0x00000002 , 0x00000002 
+ 00023476  0x00003d05 ncall  0x00005b9a , 0x00000005 
+ 00023477  0x00003d06 jam  0x00000001 , 0x000003da 
+ 00023478  0x00003d07 arg  0x00004467 , 0x00000005 
+ 00023479  0x00003d08 call  0x00006341 
+ 00023480  0x00003d09 arg  0x00000001 , 0x00000001 
+ 00023481  0x00003d0b setarg  0x00004467 
+ 00023482  0x00003d0c isub  0x00000005 , 0x0000003f 
+ 00023483  0x00003d0d sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00023484  0x00003d0e storet  0x00000001 , 0x00004466 
+ 00023485  0x00003d0f branch  0x00004f90 
+ 00023486  0x00003d13 fetch  0x00000002 , 0x00004764 
+ 00023487  0x00003d14 fetcht  0x00000002 , 0x00004760 
+ 00023488  0x00003d15 isub  0x00000002 , 0x0000003f 
+ 00023489  0x00003d16 arg  0x00000014 , 0x00000002 
+ 00023490  0x00003d17 call  0x00007faf 
+ 00023491  0x00003d18 copy  0x0000003f , 0x00000039 
+ 00023492  0x00003d19 add  0x0000003f , 0x00000003 , 0x00000002 
+ 00023493  0x00003d1a storet  0x00000002 , 0x00004467 
+ 00023494  0x00003d1c fetcht  0x00000002 , 0x00004760 
+ 00023495  0x00003d1d iadd  0x00000002 , 0x0000003f 
+ 00023496  0x00003d1e store  0x00000002 , 0x00004760 
+ 00023497  0x00003d20 fetch  0x00000002 , 0x0000475c 
+ 00023498  0x00003d21 copy  0x0000003f , 0x00000003 
+ 00023499  0x00003d22 fetch  0x00000002 , 0x0000475e 
+ 00023500  0x00003d23 iadd  0x00000003 , 0x00000003 
+ 00023501  0x00003d24 iadd  0x00000039 , 0x0000003f 
+ 00023502  0x00003d25 store  0x00000002 , 0x0000475e 
+ 00023503  0x00003d26 arg  0x00000002 , 0x00000001 
+ 00023504  0x00003d27 fetch  0x00000002 , 0x00004762 
+ 00023505  0x00003d28 store  0x00000002 , 0x0000446c 
+ 00023506  0x00003d29 branch  0x00005b78 
+ 00023507  0x00003d2d branch  0x00005d12 
+ 00023508  0x00003d32 copy  0x00000011 , 0x00000003 
+ 00023509  0x00003d33 ifetch  0x00000001 , 0x00000003 
+ 00023510  0x00003d34 beq  0x00000000 , 0x00005bdb 
+ 00023511  0x00003d35 beq  0x00000001 , 0x00005bde 
+ 00023512  0x00003d36 beq  0x00000002 , 0x00005be4 
+ 00023513  0x00003d37 beq  0x00000003 , 0x00005be6 
+ 00023514  0x00003d38 branch  0x00005cde 
+ 00023515  0x00003d3a call  0x00005737 
+ 00023516  0x00003d3b jam  0x00000000 , 0x000046e2 
+ 00023517  0x00003d3c branch  0x00005ce1 
+ 00023518  0x00003d3e setarg  0x00040003 
+ 00023519  0x00003d40 store  0x00000003 , 0x000046e3 
+ 00023520  0x00003d41 store  0x00000001 , 0x000046ea 
+ 00023521  0x00003d42 call  0x0000572f 
+ 00023522  0x00003d43 jam  0x00000001 , 0x000046e2 
+ 00023523  0x00003d44 branch  0x00005ce1 
+ 00023524  0x00003d46 setarg  0x00040002 
+ 00023525  0x00003d47 branch  0x00005bdf 
+ 00023526  0x00003d4a setarg  0x00040001 
+ 00023527  0x00003d4b branch  0x00005bdf 
+ 00023528  0x00003d4f fetch  0x00000001 , 0x00000417 
+ 00023529  0x00003d50 sub  0x0000003f , 0x00000010 , 0x0000003e 
+ 00023530  0x00003d51 nbranch  0x00005cde , 0x00000002 
+ 00023531  0x00003d52 store  0x00000001 , 0x00004718 
+ 00023532  0x00003d53 copy  0x0000003f , 0x00000039 
+ 00023533  0x00003d54 arg  0x00004719 , 0x00000005 
+ 00023534  0x00003d55 call  0x00006354 
+ 00023535  0x00003d56 branch  0x00005ce1 
+ 00023536  0x00003d5b copy  0x00000011 , 0x00000003 
+ 00023537  0x00003d5c ifetch  0x00000001 , 0x00000003 
+ 00023538  0x00003d5d hfetcht  0x00000001 , 0x00008062 
+ 00023539  0x00003d5e nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00023540  0x00003d5f hstoret  0x00000001 , 0x00008062 
+ 00023541  0x00003d60 branch  0x00005ce1 
+ 00023542  0x00003d65 fetch  0x00000001 , 0x00000417 
+ 00023543  0x00003d66 copy  0x0000003f , 0x00000039 
+ 00023544  0x00003d67 copy  0x00000011 , 0x00000003 
+ 00023545  0x00003d68 call  0x00007f25 
+ 00023546  0x00003d69 setarg  0x02dc6c00 
+ 00023547  0x00003d6a idiv  0x00000002 
+ 00023548  0x00003d6b call  0x00007f53 
+ 00023549  0x00003d6c quotient  0x0000003f 
+ 00023550  0x00003d6e store  0x00000002 , 0x000042d3 
+ 00023551  0x00003d6f call  0x00005ce1 
+ 00023552  0x00003d70 call  0x00007f6b 
+ 00023553  0x00003d71 branch  0x00006325 
+ 00023554  0x00003d76 arg  0x00000002 , 0x00000011 
+ 00023555  0x00003d77 arg  0x000042a6 , 0x00000012 
+ 00023556  0x00003d78 arg  0x00000000 , 0x00000002 
+ 00023557  0x00003d79 branch  0x00005cec 
+ 00023558  0x00003d7b store  0x00000002 , 0x000009e1 
+ 00023559  0x00003d7c arg  0x000009e1 , 0x00000012 
+ 00023560  0x00003d7d arg  0x00000000 , 0x00000002 
+ 00023561  0x00003d7e branch  0x00005cec 
+ 00023562  0x00003d83 fetch  0x00000002 , 0x0000470b 
+ 00023563  0x00003d84 bbit0  0x00000000 , 0x00005cde 
+ 00023564  0x00003d86 call  0x00005ce1 
+ 00023565  0x00003d87 branch  0x00003e52 
+ 00023566  0x00003d8c fetch  0x00000002 , 0x0000470b 
+ 00023567  0x00003d8d bbit0  0x00000009 , 0x00005cde 
+ 00023568  0x00003d8f call  0x00005ce1 
+ 00023569  0x00003d90 branch  0x00003e6b 
+ 00023570  0x00003d97 fetch  0x00000001 , 0x00000417 
+ 00023571  0x00003d98 copy  0x0000003f , 0x00000039 
+ 00023572  0x00003d99 copy  0x00000011 , 0x00000003 
+ 00023573  0x00003d9a fetch  0x00000002 , 0x000042bc 
+ 00023574  0x00003d9b icopy  0x00000005 
+ 00023575  0x00003d9c call  0x00006341 
+ 00023576  0x00003d9d branch  0x00005ce1 
+ 00023577  0x00003da2 fetch  0x00000001 , 0x0000470b 
+ 00023578  0x00003da3 bbit0  0x00000000 , 0x00005cde 
+ 00023579  0x00003da4 ifetch  0x00000001 , 0x00000003 
+ 00023580  0x00003da5 fetcht  0x00000001 , 0x000046e9 
+ 00023581  0x00003da6 setflag  0x00000034 , 0x00000000 , 0x00000002 
+ 00023582  0x00003da7 set1  0x00000007 , 0x00000002 
+ 00023583  0x00003da8 storet  0x00000001 , 0x000046e9 
+ 00023584  0x00003daa call  0x00005ce1 
+ 00023585  0x00003dac fetch  0x00000001 , 0x000046e9 
+ 00023586  0x00003dad bbit1  0x00000006 , 0x00005c27 
+ 00023587  0x00003dae rtn 
+ 00023588  0x00003db1 jam  0x00000000 , 0x000046e9 
+ 00023589  0x00003db2 jam  0x00000021 , 0x000009bd 
+ 00023590  0x00003db3 branch  0x00007d90 
+ 00023591  0x00003db7 bbit1  0x00000000 , 0x000055ac 
+ 00023592  0x00003db8 branch  0x00005c24 
+ 00023593  0x00003dbd fetch  0x00000001 , 0x0000470b 
+ 00023594  0x00003dbe rtnbit0  0x00000004 
+ 00023595  0x00003dbf fetch  0x00000001 , 0x00004603 
+ 00023596  0x00003dc0 rtneq  0x00000000 
+ 00023597  0x00003dc1 ifetch  0x00000001 , 0x00000003 
+ 00023598  0x00003dc2 fetcht  0x00000001 , 0x00004601 
+ 00023599  0x00003dc3 iadd  0x00000002 , 0x00000002 
+ 00023600  0x00003dc4 storet  0x00000001 , 0x00004601 
+ 00023601  0x00003dc5 rtn 
+ 00023602  0x00003dca arg  0x00000040 , 0x00000039 
+ 00023603  0x00003dcb arg  0x00004400 , 0x00000005 
+ 00023604  0x00003dcc call  0x00007e9f 
+ 00023605  0x00003dcd setarg  0x00000000 
+ 00023606  0x00003dce store  0x00000001 , 0x000009d6 
+ 00023607  0x00003dcf copy  0x00000011 , 0x00000003 
+ 00023608  0x00003dd1 copy  0x00000003 , 0x0000003f 
+ 00023609  0x00003dd2 store  0x00000002 , 0x000009da 
+ 00023610  0x00003dd3 call  0x00005c62 
+ 00023611  0x00003dd5 fetch  0x00000001 , 0x000009d6 
+ 00023612  0x00003dd6 fetcht  0x00000001 , 0x000009c6 
+ 00023613  0x00003dd7 increase  0x00000001 , 0x00000002 
+ 00023614  0x00003dd8 iadd  0x00000002 , 0x0000003f 
+ 00023615  0x00003dd9 store  0x00000001 , 0x000009d6 
+ 00023616  0x00003ddb sub  0x0000003f , 0x00000020 , 0x0000003e 
+ 00023617  0x00003ddc nbranch  0x00005c4c , 0x00000002 
+ 00023618  0x00003dde fetcht  0x00000001 , 0x00004400 
+ 00023619  0x00003ddf setarg  0x00004401 
+ 00023620  0x00003de0 iadd  0x00000002 , 0x0000003f 
+ 00023621  0x00003de1 store  0x00000002 , 0x000009df 
+ 00023622  0x00003de2 fetcht  0x00000001 , 0x000009c6 
+ 00023623  0x00003de3 increase  0x00000001 , 0x00000002 
+ 00023624  0x00003de4 fetch  0x00000001 , 0x00004400 
+ 00023625  0x00003de5 iadd  0x00000002 , 0x0000003f 
+ 00023626  0x00003de6 store  0x00000001 , 0x00004400 
+ 00023627  0x00003de7 branch  0x00005c55 
+ 00023628  0x00003de9 fetcht  0x00000001 , 0x00004420 
+ 00023629  0x00003dea setarg  0x00004421 
+ 00023630  0x00003deb iadd  0x00000002 , 0x0000003f 
+ 00023631  0x00003dec store  0x00000002 , 0x000009df 
+ 00023632  0x00003ded fetcht  0x00000001 , 0x000009c6 
+ 00023633  0x00003dee increase  0x00000001 , 0x00000002 
+ 00023634  0x00003def fetch  0x00000001 , 0x00004420 
+ 00023635  0x00003df0 iadd  0x00000002 , 0x0000003f 
+ 00023636  0x00003df1 store  0x00000001 , 0x00004420 
+ 00023637  0x00003df3 fetch  0x00000002 , 0x000009df 
+ 00023638  0x00003df4 copy  0x0000003f , 0x00000005 
+ 00023639  0x00003df5 fetch  0x00000002 , 0x000009da 
+ 00023640  0x00003df6 copy  0x0000003f , 0x00000003 
+ 00023641  0x00003df8 copy  0x00000002 , 0x00000039 
+ 00023642  0x00003df9 call  0x00006341 
+ 00023643  0x00003dfb fetch  0x00000001 , 0x00000417 
+ 00023644  0x00003dfc fetcht  0x00000001 , 0x000009d6 
+ 00023645  0x00003dfd isub  0x00000002 , 0x0000003e 
+ 00023646  0x00003dfe nbranch  0x00005c38 , 0x00000005 
+ 00023647  0x00003dff jam  0x0000001f , 0x00004400 
+ 00023648  0x00003e00 jam  0x0000001f , 0x00004420 
+ 00023649  0x00003e01 branch  0x00005ce1 
+ 00023650  0x00003e05 ifetch  0x00000001 , 0x00000003 
+ 00023651  0x00003e06 store  0x00000001 , 0x000009c6 
+ 00023652  0x00003e07 ifetch  0x00000001 , 0x00000003 
+ 00023653  0x00003e08 store  0x00000001 , 0x000009d2 
+ 00023654  0x00003e09 rtn 
+ 00023655  0x00003e0e arg  0x00000000 , 0x00000002 
+ 00023656  0x00003e0f arg  0x00000002 , 0x00000011 
+ 00023657  0x00003e10 fetch  0x00000002 , 0x00004748 
+ 00023658  0x00003e11 store  0x00000002 , 0x000009e1 
+ 00023659  0x00003e12 arg  0x000009e1 , 0x00000012 
+ 00023660  0x00003e13 branch  0x00005cec 
+ 00023661  0x00003e18 fetch  0x00000001 , 0x00000417 
+ 00023662  0x00003e19 bne  0x00000001 , 0x00005cde 
+ 00023663  0x00003e1a ifetch  0x00000001 , 0x00000003 
+ 00023664  0x00003e1b store  0x00000001 , 0x00004746 
+ 00023665  0x00003e1c setarg  0x00000000 
+ 00023666  0x00003e1d store  0x00000002 , 0x00004748 
+ 00023667  0x00003e1e branch  0x00005ce1 
+ 00023668  0x00003e23 ifetch  0x00000004 , 0x00000003 
+ 00023669  0x00003e24 store  0x00000004 , 0x00004719 
+ 00023670  0x00003e25 jam  0x00000004 , 0x00004718 
+ 00023671  0x00003e26 jam  0x00000000 , 0x000046eb 
+ 00023672  0x00003e27 call  0x00005ce1 
+ 00023673  0x00003e28 branch  0x00005548 
+ 00023674  0x00003e2d fetch  0x00000001 , 0x00000417 
+ 00023675  0x00003e2e bne  0x00000003 , 0x00005cde 
+ 00023676  0x00003e2f ifetch  0x00000001 , 0x00000003 
+ 00023677  0x00003e30 beq  0x00000000 , 0x00005c80 
+ 00023678  0x00003e31 beq  0x00000001 , 0x00005c85 
+ 00023679  0x00003e32 branch  0x00005cde 
+ 00023680  0x00003e34 ifetcht  0x00000001 , 0x00000003 
+ 00023681  0x00003e35 ifetch  0x00000001 , 0x00000003 
+ 00023682  0x00003e36 nsetflag  0x00000034 , 0x00000007 , 0x00000002 
+ 00023683  0x00003e37 call  0x000064df 
+ 00023684  0x00003e38 branch  0x00005ce1 
+ 00023685  0x00003e3b ifetcht  0x00000001 , 0x00000003 
+ 00023686  0x00003e3c call  0x000064ea 
+ 00023687  0x00003e3d ifetch  0x00000001 , 0x00000003 
+ 00023688  0x00003e3e isolate1  0x00000000 , 0x0000003f 
+ 00023689  0x00003e3f call  0x00006500 
+ 00023690  0x00003e40 branch  0x00005ce1 
+ 00023691  0x00003e45 fetch  0x00000001 , 0x00000417 
+ 00023692  0x00003e46 bne  0x00000001 , 0x00005cde 
+ 00023693  0x00003e47 ifetcht  0x00000001 , 0x00000003 
+ 00023694  0x00003e48 call  0x000064f5 
+ 00023695  0x00003e49 setarg  0x00000000 
+ 00023696  0x00003e4a nsetflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00023697  0x00003e4b arg  0x00000001 , 0x00000011 
+ 00023698  0x00003e4c branch  0x00005c06 
+ 00023699  0x00003e51 copy  0x00000011 , 0x00000003 
+ 00023700  0x00003e52 ifetch  0x00000001 , 0x00000003 
+ 00023701  0x00003e53 store  0x00000001 , 0x0000456c 
+ 00023702  0x00003e54 arg  0x00000000 , 0x00000002 
+ 00023703  0x00003e55 isolate1  0x00000007 , 0x0000003f 
+ 00023704  0x00003e56 setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00023705  0x00003e57 storet  0x00000001 , 0x00004563 
+ 00023706  0x00003e58 beq  0x00000000 , 0x00005ca9 
+ 00023707  0x00003e59 beq  0x00000001 , 0x00005cac 
+ 00023708  0x00003e5a beq  0x00000002 , 0x00005cae 
+ 00023709  0x00003e5b beq  0x00000081 , 0x00005ca2 
+ 00023710  0x00003e5c beq  0x00000082 , 0x00005ca4 
+ 00023711  0x00003e5d beq  0x00000083 , 0x00005ca7 
+ 00023712  0x00003e5e jam  0x00000000 , 0x00004563 
+ 00023713  0x00003e5f branch  0x00005cde 
+ 00023714  0x00003e62 jam  0x0000000d , 0x000044df 
+ 00023715  0x00003e63 branch  0x00005caa 
+ 00023716  0x00003e65 jam  0x0000000d , 0x000044df 
+ 00023717  0x00003e66 jam  0x00000001 , 0x000044dd 
+ 00023718  0x00003e67 branch  0x00005ce1 
+ 00023719  0x00003e69 jam  0x0000000d , 0x000044df 
+ 00023720  0x00003e6a branch  0x00005caf 
+ 00023721  0x00003e6c jam  0x00000000 , 0x000044df 
+ 00023722  0x00003e6e jam  0x00000003 , 0x000044dd 
+ 00023723  0x00003e6f branch  0x00005ce1 
+ 00023724  0x00003e71 jam  0x00000005 , 0x000044df 
+ 00023725  0x00003e72 branch  0x00005caa 
+ 00023726  0x00003e74 jam  0x00000005 , 0x000044df 
+ 00023727  0x00003e76 jam  0x00000000 , 0x000044dd 
+ 00023728  0x00003e77 branch  0x00005ce1 
+ 00023729  0x00003e7c fetch  0x00000001 , 0x00000417 
+ 00023730  0x00003e7d sub  0x0000003f , 0x0000001f , 0x0000003e 
+ 00023731  0x00003e7e nbranch  0x00005cde , 0x00000002 
+ 00023732  0x00003e7f copy  0x0000003f , 0x00000039 
+ 00023733  0x00003e80 copy  0x00000011 , 0x00000003 
+ 00023734  0x00003e81 arg  0x00004401 , 0x00000005 
+ 00023735  0x00003e82 call  0x00006341 
+ 00023736  0x00003e83 branch  0x00005ce1 
+ 00023737  0x00003e88 fetch  0x00000001 , 0x00000417 
+ 00023738  0x00003e89 sub  0x0000003f , 0x0000001f , 0x0000003e 
+ 00023739  0x00003e8a nbranch  0x00005cde , 0x00000002 
+ 00023740  0x00003e8b copy  0x0000003f , 0x00000039 
+ 00023741  0x00003e8c copy  0x00000011 , 0x00000003 
+ 00023742  0x00003e8d arg  0x00004421 , 0x00000005 
+ 00023743  0x00003e8e call  0x00006341 
+ 00023744  0x00003e8f branch  0x00005ce1 
+ 00023745  0x00003e94 fetch  0x00000002 , 0x0000470b 
+ 00023746  0x00003e95 bbit0  0x00000009 , 0x00005cde 
+ 00023747  0x00003e96 fetch  0x00000001 , 0x00000417 
+ 00023748  0x00003e97 bne  0x00000008 , 0x00005cde 
+ 00023749  0x00003e98 copy  0x00000011 , 0x00000003 
+ 00023750  0x00003e99 ifetch  0x00000008 , 0x00000003 
+ 00023751  0x00003e9a store  0x00000008 , 0x0000458d 
+ 00023752  0x00003e9b jam  0x00000012 , 0x000009bd 
+ 00023753  0x00003e9c call  0x00007d90 
+ 00023754  0x00003e9d branch  0x00005ce1 
+ 00023755  0x00003ea2 fetch  0x00000001 , 0x0000456c 
+ 00023756  0x00003ea3 branch  0x00005cde , 0x00000034 
+ 00023757  0x00003ea4 fetch  0x00000001 , 0x0000456a 
+ 00023758  0x00003ea5 bne  0x00000000 , 0x00005cde 
+ 00023759  0x00003ea6 fetch  0x00000001 , 0x0000456b 
+ 00023760  0x00003ea7 bne  0x00000000 , 0x00005cde 
+ 00023761  0x00003ea8 call  0x00007e29 
+ 00023762  0x00003ea9 branch  0x00005ce1 
+ 00023763  0x00003eae ifetch  0x00000001 , 0x00000003 
+ 00023764  0x00003eaf beq  0x00000001 , 0x00005cdc 
+ 00023765  0x00003eb0 fetch  0x00000001 , 0x00004566 
+ 00023766  0x00003eb1 beq  0x00000003 , 0x00005cda 
+ 00023767  0x00003eb2 beq  0x00000006 , 0x00005cda 
+ 00023768  0x00003eb3 beq  0x00000007 , 0x00005cda 
+ 00023769  0x00003eb4 branch  0x00005cde 
+ 00023770  0x00003eb6 jam  0x00000001 , 0x00004567 
+ 00023771  0x00003eb7 branch  0x00005ce1 
+ 00023772  0x00003eba call  0x000050a6 
+ 00023773  0x00003ebb branch  0x00005ce1 
+ 00023774  0x00003ebf arg  0x00000001 , 0x00000002 
+ 00023775  0x00003ec0 arg  0x00000000 , 0x00000011 
+ 00023776  0x00003ec1 branch  0x00005cec 
+ 00023777  0x00003ec4 arg  0x00000000 , 0x00000002 
+ 00023778  0x00003ec5 arg  0x00000000 , 0x00000011 
+ 00023779  0x00003ec6 branch  0x00005cec 
+ 00023780  0x00003ecb jam  0x00000000 , 0x00000416 
+ 00023781  0x00003ecc branch  0x00005d0f 
+ 00023782  0x00003ed0 jam  0x00000002 , 0x00000416 
+ 00023783  0x00003ed1 branch  0x00005d0f 
+ 00023784  0x00003ed5 jam  0x00000003 , 0x00000416 
+ 00023785  0x00003ed6 branch  0x00005d0f 
+ 00023786  0x00003ed9 jam  0x00000005 , 0x00000416 
+ 00023787  0x00003eda branch  0x00005d0f 
+ 00023788  0x00003ee5 fetch  0x00000001 , 0x00000416 
+ 00023789  0x00003ee6 copy  0x0000003f , 0x00000013 
+ 00023790  0x00003ee7 jam  0x00000006 , 0x00000416 
+ 00023791  0x00003ee8 setarg  0x00000002 
+ 00023792  0x00003ee9 iadd  0x00000011 , 0x0000003f 
+ 00023793  0x00003eea call  0x00005d66 
+ 00023794  0x00003eeb copy  0x00000013 , 0x0000003f 
+ 00023795  0x00003eec istore  0x00000001 , 0x0000000a 
+ 00023796  0x00003eed istoret  0x00000001 , 0x0000000a 
+ 00023797  0x00003eee copy  0x00000011 , 0x00000039 
+ 00023798  0x00003eef copy  0x00000012 , 0x00000006 
+ 00023799  0x00003ef0 call  0x0000633b 
+ 00023800  0x00003ef1 branch  0x0000631f 
+ 00023801  0x00003ef6 jam  0x00000007 , 0x00000416 
+ 00023802  0x00003ef7 fetch  0x00000001 , 0x0000042e 
+ 00023803  0x00003ef8 rtn  0x00000034 
+ 00023804  0x00003ef9 call  0x00005d66 
+ 00023805  0x00003efa fetch  0x00000001 , 0x0000042e 
+ 00023806  0x00003efb copy  0x0000003f , 0x00000039 
+ 00023807  0x00003efc fetch  0x00000002 , 0x00000430 
+ 00023808  0x00003efd copy  0x0000003f , 0x00000006 
+ 00023809  0x00003efe call  0x00006328 
+ 00023810  0x00003eff branch  0x0000631f 
+ 00023811  0x00003f04 jam  0x00000008 , 0x00000416 
+ 00023812  0x00003f05 fetch  0x00000001 , 0x00004751 
+ 00023813  0x00003f06 icopy  0x00000039 
+ 00023814  0x00003f07 increase  0x00000002 , 0x0000003f 
+ 00023815  0x00003f08 call  0x00005d66 
+ 00023816  0x00003f09 fetch  0x00000002 , 0x00004754 
+ 00023817  0x00003f0a istore  0x00000002 , 0x0000000a 
+ 00023818  0x00003f0b fetch  0x00000002 , 0x00004752 
+ 00023819  0x00003f0c icopy  0x00000006 
+ 00023820  0x00003f0d call  0x00006328 
+ 00023821  0x00003f0e branch  0x0000631f 
+ 00023822  0x00003f13 jam  0x00000009 , 0x00000416 
+ 00023823  0x00003f15 setarg  0x00000000 
+ 00023824  0x00003f16 call  0x00005d66 
+ 00023825  0x00003f17 branch  0x0000631f 
+ 00023826  0x00003f1c jam  0x0000000a , 0x00000416 
+ 00023827  0x00003f1d setarg  0x00000001 
+ 00023828  0x00003f1e call  0x00005d66 
+ 00023829  0x00003f20 call  0x00005d23 
+ 00023830  0x00003f22 fetch  0x00000002 , 0x0000470b 
+ 00023831  0x00003f23 arg  0x00000002 , 0x00000007 
+ 00023832  0x00003f24 qisolate1  0x0000003f 
+ 00023833  0x00003f25 setflag  0x00000001 , 0x00000003 , 0x00000002 
+ 00023834  0x00003f27 arg  0x00000009 , 0x00000007 
+ 00023835  0x00003f28 qisolate1  0x0000003f 
+ 00023836  0x00003f29 setflag  0x00000001 , 0x00000005 , 0x00000002 
+ 00023837  0x00003f2b fetch  0x00000001 , 0x0000470b 
+ 00023838  0x00003f2c arg  0x00000004 , 0x00000007 
+ 00023839  0x00003f2d qisolate1  0x0000003f 
+ 00023840  0x00003f2e setflag  0x00000001 , 0x00000004 , 0x00000002 
+ 00023841  0x00003f30 istoret  0x00000001 , 0x0000000a 
+ 00023842  0x00003f31 branch  0x0000631f 
+ 00023843  0x00003f36 arg  0x00000000 , 0x00000002 
+ 00023844  0x00003f37 fetch  0x00000001 , 0x00004133 
+ 00023845  0x00003f38 arg  0x00000000 , 0x00000007 
+ 00023846  0x00003f39 qisolate1  0x0000003f 
+ 00023847  0x00003f3a setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00023848  0x00003f3b arg  0x00000001 , 0x00000007 
+ 00023849  0x00003f3c qisolate1  0x0000003f 
+ 00023850  0x00003f3d setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00023851  0x00003f3f fetch  0x00000001 , 0x000043ff 
+ 00023852  0x00003f40 arg  0x00000000 , 0x00000007 
+ 00023853  0x00003f41 qisolate1  0x0000003f 
+ 00023854  0x00003f42 setflag  0x00000001 , 0x00000002 , 0x00000002 
+ 00023855  0x00003f43 rtn 
+ 00023856  0x00003f49 jam  0x0000000d , 0x00000416 
+ 00023857  0x00003f4a fetch  0x00000001 , 0x000042be 
+ 00023858  0x00003f4b mul32  0x0000003f , 0x00000022 , 0x0000003f 
+ 00023859  0x00003f4c icopy  0x00000039 
+ 00023860  0x00003f4d call  0x00005d66 
+ 00023861  0x00003f4e fetch  0x00000002 , 0x000042bc 
+ 00023862  0x00003f4f icopy  0x00000006 
+ 00023863  0x00003f50 call  0x00006328 
+ 00023864  0x00003f51 branch  0x0000631f 
+ 00023865  0x00003f57 jam  0x0000000e , 0x00000416 
+ 00023866  0x00003f58 setarg  0x00000004 
+ 00023867  0x00003f59 call  0x00005d66 
+ 00023868  0x00003f5a fetch  0x00000004 , 0x000008de 
+ 00023869  0x00003f5b istore  0x00000004 , 0x0000000a 
+ 00023870  0x00003f5c branch  0x0000631f 
+ 00023871  0x00003f60 jam  0x0000000f , 0x00000416 
+ 00023872  0x00003f61 branch  0x00005d0f 
+ 00023873  0x00003f66 jam  0x00000010 , 0x00000416 
+ 00023874  0x00003f67 branch  0x00005d0f 
+ 00023875  0x00003f6b jam  0x00000011 , 0x00000416 
+ 00023876  0x00003f6c setarg  0x00000004 
+ 00023877  0x00003f6d call  0x00005d66 
+ 00023878  0x00003f6e fetch  0x00000004 , 0x0000456d 
+ 00023879  0x00003f6f istore  0x00000004 , 0x0000000a 
+ 00023880  0x00003f70 branch  0x0000631f 
+ 00023881  0x00003f74 arg  0x00000180 , 0x00000011 
+ 00023882  0x00003f75 branch  0x00005d50 
+ 00023883  0x00003f77 arg  0x00000080 , 0x00000011 
+ 00023884  0x00003f78 branch  0x00005d50 
+ 00023885  0x00003f7a arg  0x00000101 , 0x00000011 
+ 00023886  0x00003f7b branch  0x00005d50 
+ 00023887  0x00003f7d arg  0x00000001 , 0x00000011 
+ 00023888  0x00003f7f jam  0x00000000 , 0x000046e9 
+ 00023889  0x00003f80 jam  0x00000014 , 0x00000416 
+ 00023890  0x00003f81 setarg  0x00000002 
+ 00023891  0x00003f82 call  0x00005d66 
+ 00023892  0x00003f83 copy  0x00000011 , 0x0000003f 
+ 00023893  0x00003f84 istore  0x00000002 , 0x0000000a 
+ 00023894  0x00003f85 branch  0x0000631f 
+ 00023895  0x00003f89 arg  0x00000000 , 0x00000013 
+ 00023896  0x00003f8a branch  0x00005d5a 
+ 00023897  0x00003f8c arg  0x00000001 , 0x00000013 
+ 00023898  0x00003f8e jam  0x00000015 , 0x00000416 
+ 00023899  0x00003f8f setarg  0x00000001 
+ 00023900  0x00003f90 call  0x00005d66 
+ 00023901  0x00003f91 copy  0x00000013 , 0x0000003f 
+ 00023902  0x00003f92 istore  0x00000001 , 0x0000000a 
+ 00023903  0x00003f93 branch  0x0000631f 
+ 00023904  0x00003f97 jam  0x0000001d , 0x00000416 
+ 00023905  0x00003f98 setarg  0x00000004 
+ 00023906  0x00003f99 call  0x00005d66 
+ 00023907  0x00003f9a fetch  0x00000004 , 0x000008de 
+ 00023908  0x00003f9b istore  0x00000004 , 0x0000000a 
+ 00023909  0x00003f9c branch  0x0000631f 
+ 00023910  0x00003fa8 jam  0x00000002 , 0x00000415 
+ 00023911  0x00003fa9 store  0x00000001 , 0x00000417 
+ 00023912  0x00003faa storet  0x00000008 , 0x000009c6 
+ 00023913  0x00003fab set1  0x00000025 , 0x00000000 
+ 00023914  0x00003fac bpatch  0x00000067 , 0x0000402c 
+ 00023915  0x00003fad call  0x00005d71 
+ 00023916  0x00003fae fetcht  0x00000008 , 0x000009c6 
+ 00023917  0x00003faf call  0x0000631c 
+ 00023918  0x00003fb0 fetch  0x00000003 , 0x00000415 
+ 00023919  0x00003fb1 istore  0x00000003 , 0x0000000a 
+ 00023920  0x00003fb2 rtn 
+ 00023921  0x00003fb7 call  0x00005d7a 
+ 00023922  0x00003fb8 rtn  0x00000001 
+ 00023923  0x00003fba call  0x00005d78 
+ 00023924  0x00003fbb fetch  0x00000004 , 0x00004737 
+ 00023925  0x00003fbc rshift2  0x0000003f , 0x0000003f 
+ 00023926  0x00003fbd rtn  0x00000034 
+ 00023927  0x00003fbe branch  0x00005d7e 
+ 00023928  0x00003fc1 fetcht  0x00000001 , 0x00004736 
+ 00023929  0x00003fc2 branch  0x000064ff 
+ 00023930  0x00003fc4 fetcht  0x00000001 , 0x00004736 
+ 00023931  0x00003fc5 branch  0x000064f3 
+ 00023932  0x00003fc7 fetcht  0x00000001 , 0x00004736 
+ 00023933  0x00003fc8 branch  0x000064fd 
+ 00023934  0x00003fcc increase  0xffffffff , 0x0000003f 
+ 00023935  0x00003fcd nbranch  0x00005d7e , 0x00000034 
+ 00023936  0x00003fce rtn 
+ 00023937  0x00003fd9 copy  0x00000011 , 0x0000003f 
+ 00023938  0x00003fda store  0x00000002 , 0x00004752 
+ 00023939  0x00003fdb copy  0x00000012 , 0x0000003f 
+ 00023940  0x00003fdc store  0x00000001 , 0x00004751 
+ 00023941  0x00003fdd fetch  0x00000002 , 0x0000039b 
+ 00023942  0x00003fde fetcht  0x00000002 , 0x00004756 
+ 00023943  0x00003fdf isub  0x00000002 , 0x0000003e 
+ 00023944  0x00003fe0 branch  0x00005d8c , 0x00000005 
+ 00023945  0x00003fe1 fetcht  0x00000002 , 0x00004758 
+ 00023946  0x00003fe2 isub  0x00000002 , 0x0000003e 
+ 00023947  0x00003fe3 nrtn  0x00000005 
+ 00023948  0x00003fe5 store  0x00000002 , 0x00004754 
+ 00023949  0x00003fe6 branch  0x00005d98 
+ 00023950  0x00003fea fetch  0x00000001 , 0x0000475a 
+ 00023951  0x00003feb bbit1  0x00000003 , 0x00005d94 
+ 00023952  0x00003fed fetch  0x00000001 , 0x0000475a 
+ 00023953  0x00003fee rtnbit0  0x00000001 
+ 00023954  0x00003fef call  0x00005d03 
+ 00023955  0x00003ff0 branch  0x00005d9c 
+ 00023956  0x00003ff3 jam  0x00000009 , 0x00000416 
+ 00023957  0x00003ff4 call  0x00005ce1 
+ 00023958  0x00003ff5 call  0x00005b91 
+ 00023959  0x00003ff6 branch  0x00005d90 
+ 00023960  0x00003ffa fetch  0x00000001 , 0x0000475a 
+ 00023961  0x00003ffb set1  0x00000001 , 0x0000003f 
+ 00023962  0x00003ffd store  0x00000001 , 0x0000475a 
+ 00023963  0x00003ffe rtn 
+ 00023964  0x00004001 fetch  0x00000001 , 0x0000475a 
+ 00023965  0x00004002 set0  0x00000001 , 0x0000003f 
+ 00023966  0x00004003 branch  0x00005d9a 
+ 00023967  0x00004009 fetch  0x00000001 , 0x0000472f 
+ 00023968  0x0000400a rtnbit1  0x00000000 
+ 00023969  0x0000400b call  0x00005dbd 
+ 00023970  0x0000400c branch  0x00003e77 
+ 00023971  0x00004012 storet  0x00000001 , 0x0000024e 
+ 00023972  0x00004014 fetch  0x00000001 , 0x0000024e 
+ 00023973  0x00004015 rtn  0x00000034 
+ 00023974  0x00004016 increase  0xffffffff , 0x0000003f 
+ 00023975  0x00004017 store  0x00000001 , 0x0000024e 
+ 00023976  0x00004018 set1  0x00000025 , 0x00000000 
+ 00023977  0x00004019 bpatch  0x00000068 , 0x0000402d 
+ 00023978  0x0000401a call  0x00005dac 
+ 00023979  0x0000401b branch  0x00005da4 
+ 00023980  0x0000401e fetch  0x00000001 , 0x00004746 
+ 00023981  0x0000401f rtn  0x00000034 
+ 00023982  0x00004020 fetch  0x00000001 , 0x00004747 
+ 00023983  0x00004021 rtn  0x00000034 
+ 00023984  0x00004022 increase  0xffffffff , 0x0000003f 
+ 00023985  0x00004023 store  0x00000001 , 0x00004747 
+ 00023986  0x00004024 nrtn  0x00000034 
+ 00023987  0x00004025 jam  0x0000000a , 0x00004747 
+ 00023988  0x00004026 call  0x000065c0 
+ 00023989  0x00004027 call  0x000065de 
+ 00023990  0x00004028 div  0x0000003f , 0x00000064 
+ 00023991  0x00004029 call  0x00007f53 
+ 00023992  0x0000402a quotient  0x0000003f 
+ 00023993  0x0000402b remainder  0x00000002 
+ 00023994  0x0000402c store  0x00000001 , 0x00004748 
+ 00023995  0x0000402d storet  0x00000001 , 0x00004749 
+ 00023996  0x0000402e rtn 
+ 00023997  0x00004033 fetch  0x00000001 , 0x0000472f 
+ 00023998  0x00004034 set1  0x00000000 , 0x0000003f 
+ 00023999  0x00004035 store  0x00000001 , 0x0000472f 
+ 00024000  0x00004036 rtn 
+ 00024001  0x00004039 fetch  0x00000001 , 0x0000472f 
+ 00024002  0x0000403a set0  0x00000000 , 0x0000003f 
+ 00024003  0x0000403b store  0x00000001 , 0x0000472f 
+ 00024004  0x0000403c rtn 
+ 00024005  0x0000403f set1  0x00000025 , 0x00000000 
+ 00024006  0x00004040 bpatch  0x00000069 , 0x0000402d 
+ 00024007  0x00004041 call  0x00007f84 
+ 00024008  0x00004042 branch  0x00003e41 , 0x00000002 
+ 00024009  0x00004043 branch  0x00003e43 
+ 00024010  0x0000404b set1  0x00000025 , 0x00000000 
+ 00024011  0x0000404c bpatch  0x0000006a , 0x0000402d 
+ 00024012  0x0000404d setarg  0x00005fc3 
+ 00024013  0x0000404e store  0x00000002 , 0x00004290 
+ 00024014  0x0000404f setarg  0x00005ee2 
+ 00024015  0x00004050 store  0x00000002 , 0x00004292 
+ 00024016  0x00004051 setarg  0x00005e27 
+ 00024017  0x00004052 store  0x00000002 , 0x0000428e 
+ 00024018  0x00004053 setarg  0x00005fd4 
+ 00024019  0x00004054 store  0x00000002 , 0x00004296 
+ 00024020  0x00004055 setarg  0x00005def 
+ 00024021  0x00004056 store  0x00000002 , 0x00004294 
+ 00024022  0x00004057 setarg  0x00005efd 
+ 00024023  0x00004058 store  0x00000002 , 0x0000429c 
+ 00024024  0x00004059 jam  0x00000000 , 0x000008d4 
+ 00024025  0x0000405a jam  0x00000000 , 0x000008d5 
+ 00024026  0x0000405b set1  0x00000025 , 0x00000000 
+ 00024027  0x0000405c bpatch  0x0000006b , 0x0000402d 
+ 00024028  0x0000405d call  0x00005e0a 
+ 00024029  0x0000405e rtn  0x0000002b 
+ 00024030  0x0000405f call  0x00005de5 
+ 00024031  0x00004060 call  0x00005ded 
+ 00024032  0x00004061 setarg  0x00005e24 
+ 00024033  0x00004062 store  0x00000002 , 0x0000428c 
+ 00024034  0x00004063 fetch  0x00000002 , 0x0000470b 
+ 00024035  0x00004064 bbit1  0x0000000c , 0x00006074 
+ 00024036  0x00004065 branch  0x00006070 
+ 00024037  0x00004068 call  0x00003e28 
+ 00024038  0x00004069 branch  0x00005dea , 0x00000005 
+ 00024039  0x0000406a call  0x00006472 
+ 00024040  0x0000406b call  0x00006098 
+ 00024041  0x0000406c branch  0x00003e20 
+ 00024042  0x0000406e call  0x00006441 
+ 00024043  0x0000406f call  0x00006476 
+ 00024044  0x00004070 branch  0x0000609e 
+ 00024045  0x00004073 jam  0x00000001 , 0x00004747 
+ 00024046  0x00004074 branch  0x00005e01 
+ 00024047  0x00004077 call  0x00007e3f 
+ 00024048  0x00004078 call  0x00005df2 
+ 00024049  0x00004079 branch  0x00005e3e 
+ 00024050  0x0000407c fetcht  0x00000001 , 0x00004752 
+ 00024051  0x0000407d call  0x000064f5 
+ 00024052  0x0000407e nbranch  0x00005df9 , 0x00000001 
+ 00024053  0x00004080 fetch  0x00000001 , 0x00004747 
+ 00024054  0x00004081 rtneq  0x00000000 
+ 00024055  0x00004082 jam  0x00000000 , 0x00004747 
+ 00024056  0x00004083 rtn 
+ 00024057  0x00004085 fetch  0x00000001 , 0x00004747 
+ 00024058  0x00004086 rtneq  0x00000001 
+ 00024059  0x00004087 jam  0x00000001 , 0x00004747 
+ 00024060  0x00004088 fetch  0x00000001 , 0x00004746 
+ 00024061  0x00004089 increase  0x00000001 , 0x0000003f 
+ 00024062  0x0000408a and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00024063  0x0000408b store  0x00000001 , 0x00004746 
+ 00024064  0x0000408c branch  0x00005e01 
+ 00024065  0x0000408e setarg  0x00000006 
+ 00024066  0x0000408f call  0x000060ec 
+ 00024067  0x00004090 and  0x0000003f , 0x000000fc , 0x00000002 
+ 00024068  0x00004091 fetch  0x00000001 , 0x00004746 
+ 00024069  0x00004092 iadd  0x00000002 , 0x0000003f 
+ 00024070  0x00004093 lshift8  0x0000003f , 0x0000003f 
+ 00024071  0x00004094 add  0x0000003f , 0x00000006 , 0x0000003f 
+ 00024072  0x00004095 call  0x000060eb 
+ 00024073  0x00004096 branch  0x00006098 
+ 00024074  0x00004099 call  0x00005f8e 
+ 00024075  0x0000409a call  0x00005e10 
+ 00024076  0x0000409b hfetch  0x00000002 , 0x00008050 
+ 00024077  0x0000409c set0  0x0000000b , 0x0000003f 
+ 00024078  0x0000409d hstore  0x00000002 , 0x00008050 
+ 00024079  0x0000409e rtn 
+ 00024080  0x000040a1 rtn  0x0000002b 
+ 00024081  0x000040a2 call  0x00003d3e 
+ 00024082  0x000040a3 fetcht  0x00000001 , 0x00004763 
+ 00024083  0x000040a4 call  0x000064df 
+ 00024084  0x000040a5 fetcht  0x00000001 , 0x00004764 
+ 00024085  0x000040a6 call  0x000064df 
+ 00024086  0x000040a7 fetcht  0x00000001 , 0x0000474d 
+ 00024087  0x000040a8 call  0x000064df 
+ 00024088  0x000040a9 fetcht  0x00000001 , 0x0000474e 
+ 00024089  0x000040aa call  0x000064df 
+ 00024090  0x000040ab fetcht  0x00000001 , 0x0000474f 
+ 00024091  0x000040ac call  0x000064df 
+ 00024092  0x000040ad fetcht  0x00000001 , 0x00004750 
+ 00024093  0x000040ae call  0x000064df 
+ 00024094  0x000040af fetcht  0x00000001 , 0x00004751 
+ 00024095  0x000040b0 call  0x000064df 
+ 00024096  0x000040b1 fetcht  0x00000001 , 0x00004753 
+ 00024097  0x000040b2 call  0x000064df 
+ 00024098  0x000040b3 fetcht  0x00000001 , 0x00004752 
+ 00024099  0x000040b4 branch  0x000064df 
+ 00024100  0x000040b8 setarg  0x0000bc05 
+ 00024101  0x000040b9 call  0x000060eb 
+ 00024102  0x000040ba jam  0x00000001 , 0x0000009f 
+ 00024103  0x000040bd call  0x00005e3e 
+ 00024104  0x000040be arg  0x00000019 , 0x00000002 
+ 00024105  0x000040bf call  0x000064e8 
+ 00024106  0x000040c0 hjam  0x00000000 , 0x00008081 
+ 00024107  0x000040c1 fetcht  0x00000001 , 0x00004763 
+ 00024108  0x000040c2 call  0x000064c2 
+ 00024109  0x000040c3 fetcht  0x00000001 , 0x00004764 
+ 00024110  0x000040c4 call  0x000064c2 
+ 00024111  0x000040c5 fetcht  0x00000001 , 0x0000474d 
+ 00024112  0x000040c6 call  0x000064c2 
+ 00024113  0x000040c7 fetcht  0x00000001 , 0x0000474e 
+ 00024114  0x000040c8 call  0x000064c2 
+ 00024115  0x000040c9 fetcht  0x00000001 , 0x0000474f 
+ 00024116  0x000040ca call  0x000064c2 
+ 00024117  0x000040cb fetcht  0x00000001 , 0x00004750 
+ 00024118  0x000040cc call  0x000064c2 
+ 00024119  0x000040cd fetcht  0x00000001 , 0x00004751 
+ 00024120  0x000040ce call  0x000064c2 
+ 00024121  0x000040cf fetcht  0x00000001 , 0x00004753 
+ 00024122  0x000040d0 call  0x000064c7 
+ 00024123  0x000040d1 fetch  0x00000001 , 0x0000009f 
+ 00024124  0x000040d2 nrtn  0x00000034 
+ 00024125  0x000040d3 branch  0x000064d2 
+ 00024126  0x000040d6 set1  0x00000025 , 0x00000000 
+ 00024127  0x000040d7 bpatch  0x0000006c , 0x0000402d 
+ 00024128  0x000040d8 call  0x00005e4d 
+ 00024129  0x000040d9 call  0x00005e94 
+ 00024130  0x000040da fetch  0x00000001 , 0x0000475e 
+ 00024131  0x000040db fetcht  0x00000001 , 0x0000475d 
+ 00024132  0x000040dc store  0x00000001 , 0x0000475d 
+ 00024133  0x000040dd isub  0x00000002 , 0x0000003e 
+ 00024134  0x000040de nbranch  0x00003e39 , 0x00000005 
+ 00024135  0x000040df fetch  0x00000001 , 0x00004766 
+ 00024136  0x000040e0 fetcht  0x00000001 , 0x00004765 
+ 00024137  0x000040e1 store  0x00000001 , 0x00004765 
+ 00024138  0x000040e2 isub  0x00000002 , 0x0000003e 
+ 00024139  0x000040e3 nbranch  0x00003e39 , 0x00000005 
+ 00024140  0x000040e4 rtn 
+ 00024141  0x000040e6 arg  0x00000000 , 0x00000011 
+ 00024142  0x000040e7 fetcht  0x00000001 , 0x0000475b 
+ 00024143  0x000040e8 call  0x000064f5 
+ 00024144  0x000040e9 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00024145  0x000040ea fetcht  0x00000001 , 0x0000475c 
+ 00024146  0x000040eb call  0x000064f5 
+ 00024147  0x000040ec setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00024148  0x000040ed copy  0x00000011 , 0x0000003f 
+ 00024149  0x000040ee store  0x00000001 , 0x0000475e 
+ 00024150  0x000040ef beq  0x00000001 , 0x00005e5b 
+ 00024151  0x000040f0 beq  0x00000002 , 0x00005e5f 
+ 00024152  0x000040f1 fetch  0x00000001 , 0x0000475f 
+ 00024153  0x000040f2 bbit1  0x00000007 , 0x00005e6b 
+ 00024154  0x000040f3 rtn 
+ 00024155  0x000040f6 fetch  0x00000001 , 0x0000475d 
+ 00024156  0x000040f7 beq  0x00000000 , 0x00005e63 
+ 00024157  0x000040f8 beq  0x00000003 , 0x00005e65 
+ 00024158  0x000040f9 rtn 
+ 00024159  0x000040fb fetch  0x00000001 , 0x0000475d 
+ 00024160  0x000040fc beq  0x00000000 , 0x00005e67 
+ 00024161  0x000040fd beq  0x00000003 , 0x00005e69 
+ 00024162  0x000040fe rtn 
+ 00024163  0x00004100 jam  0x00000082 , 0x0000475f 
+ 00024164  0x00004101 rtn 
+ 00024165  0x00004103 jam  0x00000081 , 0x0000475f 
+ 00024166  0x00004104 rtn 
+ 00024167  0x00004106 jam  0x00000080 , 0x0000475f 
+ 00024168  0x00004107 rtn 
+ 00024169  0x00004109 jam  0x00000083 , 0x0000475f 
+ 00024170  0x0000410a rtn 
+ 00024171  0x0000410c fetch  0x00000001 , 0x0000475f 
+ 00024172  0x0000410d set0  0x00000007 , 0x0000003f 
+ 00024173  0x0000410e store  0x00000001 , 0x0000475f 
+ 00024174  0x0000410f fetch  0x00000001 , 0x0000475f 
+ 00024175  0x00004110 beq  0x00000000 , 0x00005e74 
+ 00024176  0x00004111 beq  0x00000001 , 0x00005e77 
+ 00024177  0x00004112 beq  0x00000002 , 0x00005e7a 
+ 00024178  0x00004113 beq  0x00000003 , 0x00005e7d 
+ 00024179  0x00004114 rtn 
+ 00024180  0x00004116 fetch  0x00000001 , 0x0000475e 
+ 00024181  0x00004117 beq  0x00000003 , 0x00005e80 
+ 00024182  0x00004118 rtn 
+ 00024183  0x0000411a fetch  0x00000001 , 0x0000475e 
+ 00024184  0x0000411b beq  0x00000000 , 0x00005e80 
+ 00024185  0x0000411c rtn 
+ 00024186  0x0000411e fetch  0x00000001 , 0x0000475e 
+ 00024187  0x0000411f beq  0x00000003 , 0x00005e8a 
+ 00024188  0x00004120 rtn 
+ 00024189  0x00004122 fetch  0x00000001 , 0x0000475e 
+ 00024190  0x00004123 beq  0x00000000 , 0x00005e8a 
+ 00024191  0x00004124 rtn 
+ 00024192  0x00004126 fetch  0x00000001 , 0x00004762 
+ 00024193  0x00004127 increase  0x00000001 , 0x0000003f 
+ 00024194  0x00004128 store  0x00000001 , 0x00004762 
+ 00024195  0x00004129 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024196  0x0000412a rtn  0x00000002 
+ 00024197  0x0000412b jam  0x00000000 , 0x00004762 
+ 00024198  0x0000412c fetch  0x00000001 , 0x00004760 
+ 00024199  0x0000412d increase  0x00000001 , 0x0000003f 
+ 00024200  0x0000412e store  0x00000001 , 0x00004760 
+ 00024201  0x0000412f rtn 
+ 00024202  0x00004131 fetch  0x00000001 , 0x00004761 
+ 00024203  0x00004132 increase  0x00000001 , 0x0000003f 
+ 00024204  0x00004133 store  0x00000001 , 0x00004761 
+ 00024205  0x00004134 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024206  0x00004135 rtn  0x00000002 
+ 00024207  0x00004136 jam  0x00000000 , 0x00004761 
+ 00024208  0x00004137 fetch  0x00000001 , 0x00004760 
+ 00024209  0x00004138 increase  0xffffffff , 0x0000003f 
+ 00024210  0x00004139 store  0x00000001 , 0x00004760 
+ 00024211  0x0000413a rtn 
+ 00024212  0x0000413e arg  0x00000000 , 0x00000011 
+ 00024213  0x0000413f fetcht  0x00000001 , 0x00004763 
+ 00024214  0x00004140 call  0x000064f5 
+ 00024215  0x00004141 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00024216  0x00004142 fetcht  0x00000001 , 0x00004764 
+ 00024217  0x00004143 call  0x000064f5 
+ 00024218  0x00004144 setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00024219  0x00004145 copy  0x00000011 , 0x0000003f 
+ 00024220  0x00004146 store  0x00000001 , 0x00004766 
+ 00024221  0x00004147 beq  0x00000001 , 0x00005ea2 
+ 00024222  0x00004148 beq  0x00000002 , 0x00005ea6 
+ 00024223  0x00004149 fetch  0x00000001 , 0x00004767 
+ 00024224  0x0000414a bbit1  0x00000007 , 0x00005eb2 
+ 00024225  0x0000414b rtn 
+ 00024226  0x0000414e fetch  0x00000001 , 0x00004765 
+ 00024227  0x0000414f beq  0x00000000 , 0x00005eaa 
+ 00024228  0x00004150 beq  0x00000003 , 0x00005eac 
+ 00024229  0x00004151 rtn 
+ 00024230  0x00004153 fetch  0x00000001 , 0x00004765 
+ 00024231  0x00004154 beq  0x00000000 , 0x00005eae 
+ 00024232  0x00004155 beq  0x00000003 , 0x00005eb0 
+ 00024233  0x00004156 rtn 
+ 00024234  0x00004158 jam  0x00000082 , 0x00004767 
+ 00024235  0x00004159 rtn 
+ 00024236  0x0000415b jam  0x00000081 , 0x00004767 
+ 00024237  0x0000415c rtn 
+ 00024238  0x0000415e jam  0x00000080 , 0x00004767 
+ 00024239  0x0000415f rtn 
+ 00024240  0x00004161 jam  0x00000083 , 0x00004767 
+ 00024241  0x00004162 rtn 
+ 00024242  0x00004164 fetch  0x00000001 , 0x00004767 
+ 00024243  0x00004165 set0  0x00000007 , 0x0000003f 
+ 00024244  0x00004166 store  0x00000001 , 0x00004767 
+ 00024245  0x00004167 fetch  0x00000001 , 0x00004767 
+ 00024246  0x00004168 beq  0x00000000 , 0x00005ebb 
+ 00024247  0x00004169 beq  0x00000001 , 0x00005ebe 
+ 00024248  0x0000416a beq  0x00000002 , 0x00005ec1 
+ 00024249  0x0000416b beq  0x00000003 , 0x00005ec4 
+ 00024250  0x0000416c rtn 
+ 00024251  0x0000416e fetch  0x00000001 , 0x00004766 
+ 00024252  0x0000416f beq  0x00000003 , 0x00005ec7 
+ 00024253  0x00004170 rtn 
+ 00024254  0x00004172 fetch  0x00000001 , 0x00004766 
+ 00024255  0x00004173 beq  0x00000000 , 0x00005ec7 
+ 00024256  0x00004174 rtn 
+ 00024257  0x00004176 fetch  0x00000001 , 0x00004766 
+ 00024258  0x00004177 beq  0x00000003 , 0x00005ed1 
+ 00024259  0x00004178 rtn 
+ 00024260  0x0000417a fetch  0x00000001 , 0x00004766 
+ 00024261  0x0000417b beq  0x00000000 , 0x00005ed1 
+ 00024262  0x0000417c rtn 
+ 00024263  0x0000417e fetch  0x00000001 , 0x0000476a 
+ 00024264  0x0000417f increase  0x00000001 , 0x0000003f 
+ 00024265  0x00004180 store  0x00000001 , 0x0000476a 
+ 00024266  0x00004181 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024267  0x00004182 rtn  0x00000002 
+ 00024268  0x00004183 jam  0x00000000 , 0x0000476a 
+ 00024269  0x00004184 fetch  0x00000001 , 0x00004768 
+ 00024270  0x00004185 increase  0x00000001 , 0x0000003f 
+ 00024271  0x00004186 store  0x00000001 , 0x00004768 
+ 00024272  0x00004187 rtn 
+ 00024273  0x00004189 fetch  0x00000001 , 0x00004769 
+ 00024274  0x0000418a increase  0x00000001 , 0x0000003f 
+ 00024275  0x0000418b store  0x00000001 , 0x00004769 
+ 00024276  0x0000418c sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00024277  0x0000418d rtn  0x00000002 
+ 00024278  0x0000418e jam  0x00000000 , 0x00004769 
+ 00024279  0x0000418f fetch  0x00000001 , 0x00004768 
+ 00024280  0x00004190 increase  0xffffffff , 0x0000003f 
+ 00024281  0x00004191 store  0x00000001 , 0x00004768 
+ 00024282  0x00004192 rtn 
+ 00024283  0x00004196 call  0x00003e7b 
+ 00024284  0x00004197 jam  0x00000002 , 0x0000474b 
+ 00024285  0x00004198 call  0x00003e7f 
+ 00024286  0x0000419a branch  0x00003e6d 
+ 00024287  0x0000419e setarg  0x00000002 
+ 00024288  0x0000419f store  0x00000001 , 0x00004709 
+ 00024289  0x000041a0 rtn 
+ 00024290  0x000041a3 fetch  0x00000001 , 0x00004283 
+ 00024291  0x000041a4 rtn  0x00000034 
+ 00024292  0x000041a5 call  0x00004812 
+ 00024293  0x000041a6 nrtn  0x00000034 
+ 00024294  0x000041a7 call  0x00005f14 
+ 00024295  0x000041a8 nrtn  0x00000028 
+ 00024296  0x000041a9 call  0x00005efa 
+ 00024297  0x000041ab arg  0x00000009 , 0x00000011 
+ 00024298  0x000041ac call  0x00004005 
+ 00024299  0x000041ad fetch  0x00000002 , 0x000042de 
+ 00024300  0x000041ae istore  0x00000002 , 0x00000005 
+ 00024301  0x000041af setarg  0x000002a1 
+ 00024302  0x000041b0 istore  0x00000002 , 0x00000005 
+ 00024303  0x000041b1 fetch  0x00000007 , 0x00004729 
+ 00024304  0x000041b2 istore  0x00000007 , 0x00000005 
+ 00024305  0x000041b3 rtn 
+ 00024306  0x000041b5 setarg  0x00000000 
+ 00024307  0x000041b6 store  0x00000006 , 0x0000472a 
+ 00024308  0x000041b7 store  0x00000001 , 0x0000472f 
+ 00024309  0x000041b8 branch  0x00005ee9 
+ 00024310  0x000041ba setarg  0x00000000 
+ 00024311  0x000041bb store  0x00000006 , 0x0000472a 
+ 00024312  0x000041bc store  0x00000001 , 0x0000472f 
+ 00024313  0x000041bd branch  0x00005f0c 
+ 00024314  0x000041c0 fetch  0x00000002 , 0x00004739 
+ 00024315  0x000041c1 store  0x00000002 , 0x00004741 
+ 00024316  0x000041c2 rtn 
+ 00024317  0x000041c6 fetcht  0x00000002 , 0x000044f8 
+ 00024318  0x000041c7 call  0x000051f5 
+ 00024319  0x000041c8 ifetch  0x00000001 , 0x00000006 
+ 00024320  0x000041c9 store  0x00000001 , 0x000003be 
+ 00024321  0x000041ca arg  0x0000446b , 0x00000005 
+ 00024322  0x000041cb increase  0x00000001 , 0x00000005 
+ 00024323  0x000041cc fetcht  0x00000002 , 0x000044f8 
+ 00024324  0x000041cd istoret  0x00000002 , 0x00000005 
+ 00024325  0x000041ce call  0x000051f5 
+ 00024326  0x000041cf ifetch  0x00000001 , 0x00000006 
+ 00024327  0x000041d0 icopy  0x00000039 
+ 00024328  0x000041d1 call  0x00007ecd 
+ 00024329  0x000041d2 fetcht  0x00000001 , 0x000003be 
+ 00024330  0x000041d3 increase  0x00000007 , 0x00000002 
+ 00024331  0x000041d4 branch  0x00004f89 
+ 00024332  0x000041d8 set1  0x00000025 , 0x00000000 
+ 00024333  0x000041d9 bpatch  0x0000006d , 0x0000402d 
+ 00024334  0x000041da fetcht  0x00000002 , 0x000044f8 
+ 00024335  0x000041db call  0x000051f5 
+ 00024336  0x000041dc add  0x00000006 , 0x00000001 , 0x00000005 
+ 00024337  0x000041de fetch  0x00000007 , 0x00004729 
+ 00024338  0x000041df istore  0x00000007 , 0x00000005 
+ 00024339  0x000041e0 rtn 
+ 00024340  0x000041e3 set1  0x00000025 , 0x00000000 
+ 00024341  0x000041e4 bpatch  0x0000006e , 0x0000402d 
+ 00024342  0x000041e5 disable  0x00000028 
+ 00024343  0x000041e6 setarg  0x00000000 
+ 00024344  0x000041e7 store  0x00000006 , 0x0000472a 
+ 00024345  0x000041e8 call  0x00005f1e 
+ 00024346  0x000041e9 call  0x00005f87 
+ 00024347  0x000041ea call  0x00005f61 
+ 00024348  0x000041eb call  0x00005f67 
+ 00024349  0x000041ec branch  0x00005f7f 
+ 00024350  0x000041ef fetch  0x00000001 , 0x00004735 
+ 00024351  0x000041f0 call  0x00005f5a , 0x00000034 
+ 00024352  0x000041f1 jam  0x00000001 , 0x00004735 
+ 00024353  0x000041f2 disable  0x00000028 
+ 00024354  0x000041f3 fetcht  0x00000001 , 0x00004753 
+ 00024355  0x000041f4 call  0x000064f5 
+ 00024356  0x000041f5 nrtn  0x00000001 
+ 00024357  0x000041f6 setarg  0x00000000 
+ 00024358  0x000041f7 call  0x000060ec 
+ 00024359  0x000041f9 setarg  0x00000002 
+ 00024360  0x000041fa call  0x000060ec 
+ 00024361  0x000041fb rtnbit0  0x00000007 
+ 00024362  0x000041fc setarg  0x00000003 
+ 00024363  0x000041fd call  0x000060ec 
+ 00024364  0x000041fe call  0x00005fbb 
+ 00024365  0x000041ff store  0x00000002 , 0x0000472a 
+ 00024366  0x00004200 setarg  0x00000004 
+ 00024367  0x00004201 call  0x000060ec 
+ 00024368  0x00004202 call  0x00005fbb 
+ 00024369  0x00004203 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00024370  0x00004204 store  0x00000002 , 0x0000472c 
+ 00024371  0x00004205 fetch  0x00000004 , 0x0000472a 
+ 00024372  0x00004206 enable  0x00000028 
+ 00024373  0x00004207 rtn 
+ 00024374  0x0000420a call  0x000060e7 
+ 00024375  0x0000420b call  0x00005f5a 
+ 00024376  0x0000420c arg  0x00000005 , 0x0000003f 
+ 00024377  0x0000420d call  0x000060ec 
+ 00024378  0x0000420e store  0x00000001 , 0x00004730 
+ 00024379  0x0000420f arg  0x00000007 , 0x0000003f 
+ 00024380  0x00004210 call  0x000060ec 
+ 00024381  0x00004211 store  0x00000001 , 0x00004731 
+ 00024382  0x00004212 arg  0x00000008 , 0x0000003f 
+ 00024383  0x00004213 call  0x000060ec 
+ 00024384  0x00004214 store  0x00000001 , 0x00004732 
+ 00024385  0x00004215 branch  0x000060e9 
+ 00024386  0x00004219 fetch  0x00000001 , 0x00004731 
+ 00024387  0x0000421a rtnne  0x00000000 
+ 00024388  0x0000421b fetch  0x00000001 , 0x00004732 
+ 00024389  0x0000421c sub  0x0000003f , 0x0000002d , 0x0000003e 
+ 00024390  0x0000421d rtn  0x00000002 
+ 00024391  0x0000421e jam  0x00000000 , 0x00004733 
+ 00024392  0x0000421f setarg  0x0000ba41 
+ 00024393  0x00004220 call  0x000060db 
+ 00024394  0x00004221 setarg  0x00000032 
+ 00024395  0x00004222 call  0x000060db 
+ 00024396  0x00004223 setarg  0x0000b541 
+ 00024397  0x00004224 branch  0x000060db 
+ 00024398  0x00004226 fetch  0x00000001 , 0x00004731 
+ 00024399  0x00004227 rtnne  0x00000000 
+ 00024400  0x00004228 fetch  0x00000001 , 0x00004732 
+ 00024401  0x00004229 sub  0x0000003f , 0x0000002d , 0x0000003e 
+ 00024402  0x0000422a nrtn  0x00000002 
+ 00024403  0x0000422b jam  0x00000001 , 0x00004733 
+ 00024404  0x0000422c setarg  0x0000ba41 
+ 00024405  0x0000422d call  0x000060db 
+ 00024406  0x0000422e setarg  0x00008032 
+ 00024407  0x0000422f call  0x000060db 
+ 00024408  0x00004230 setarg  0x0000b541 
+ 00024409  0x00004231 branch  0x000060db 
+ 00024410  0x00004236 arg  0x00000003 , 0x0000003f 
+ 00024411  0x00004237 call  0x000060ec 
+ 00024412  0x00004238 store  0x00000002 , 0x0000472a 
+ 00024413  0x00004239 arg  0x00000004 , 0x0000003f 
+ 00024414  0x0000423a call  0x000060ec 
+ 00024415  0x0000423b store  0x00000002 , 0x0000472c 
+ 00024416  0x0000423c rtn 
+ 00024417  0x0000423f fetch  0x00000001 , 0x00004768 
+ 00024418  0x00004240 rtn  0x00000034 
+ 00024419  0x00004241 store  0x00000001 , 0x0000472e 
+ 00024420  0x00004242 jam  0x00000000 , 0x00004768 
+ 00024421  0x00004243 enable  0x00000028 
+ 00024422  0x00004244 rtn 
+ 00024423  0x00004246 fetch  0x00000001 , 0x00004760 
+ 00024424  0x00004247 rtn  0x00000034 
+ 00024425  0x00004248 store  0x00000001 , 0x0000472f 
+ 00024426  0x00004249 jam  0x00000000 , 0x00004760 
+ 00024427  0x0000424a enable  0x00000028 
+ 00024428  0x0000424b rtn 
+ 00024429  0x0000424d arg  0x00000000 , 0x00000011 
+ 00024430  0x0000424e fetcht  0x00000001 , 0x0000474d 
+ 00024431  0x0000424f call  0x000064f5 
+ 00024432  0x00004250 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00024433  0x00004251 fetcht  0x00000001 , 0x0000474e 
+ 00024434  0x00004252 call  0x000064f5 
+ 00024435  0x00004253 setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00024436  0x00004254 fetcht  0x00000001 , 0x0000474f 
+ 00024437  0x00004255 call  0x000064f5 
+ 00024438  0x00004256 setflag  0x00000001 , 0x00000002 , 0x00000011 
+ 00024439  0x00004257 fetcht  0x00000001 , 0x00004750 
+ 00024440  0x00004258 call  0x000064f5 
+ 00024441  0x00004259 setflag  0x00000001 , 0x00000003 , 0x00000011 
+ 00024442  0x0000425a fetcht  0x00000001 , 0x00004751 
+ 00024443  0x0000425b call  0x000064f5 
+ 00024444  0x0000425c setflag  0x00000001 , 0x00000004 , 0x00000011 
+ 00024445  0x0000425d copy  0x00000011 , 0x0000003f 
+ 00024446  0x0000425e rtn 
+ 00024447  0x00004260 call  0x00005f6d 
+ 00024448  0x00004261 fetcht  0x00000001 , 0x00004729 
+ 00024449  0x00004262 store  0x00000001 , 0x00004729 
+ 00024450  0x00004263 ixor  0x00000002 , 0x0000003f 
+ 00024451  0x00004264 sub  0x0000003f , 0x00000000 , 0x0000003e 
+ 00024452  0x00004265 rtn  0x00000005 
+ 00024453  0x00004266 enable  0x00000028 
+ 00024454  0x00004267 rtn 
+ 00024455  0x0000426d arg  0x0000001a , 0x00000002 
+ 00024456  0x0000426e call  0x000064f5 
+ 00024457  0x0000426f rtn  0x00000001 
+ 00024458  0x00004270 setarg  0x0000000a 
+ 00024459  0x00004271 call  0x000060ec 
+ 00024460  0x00004272 nop  0x000003e8 
+ 00024461  0x00004273 branch  0x00005f87 
+ 00024462  0x00004276 call  0x000061ac 
+ 00024463  0x00004277 rtn  0x0000002b 
+ 00024464  0x00004279 setarg  0x00000000 
+ 00024465  0x0000427a call  0x000060ec 
+ 00024466  0x0000427b store  0x00000001 , 0x0000024b 
+ 00024467  0x0000427c beq  0x00000030 , 0x00005f98 
+ 00024468  0x0000427e beq  0x00000031 , 0x00005f98 
+ 00024469  0x0000427f call  0x000060c0 
+ 00024470  0x00004280 nop  0x000003e8 
+ 00024471  0x00004281 branch  0x00005f90 
+ 00024472  0x00004283 setarg  0x00008006 
+ 00024473  0x00004284 call  0x000060eb 
+ 00024474  0x00004285 nop  0x000003e8 
+ 00024475  0x00004286 rtn 
+ 00024476  0x00004289 fetcht  0x00000001 , 0x00004756 
+ 00024477  0x0000428a call  0x000064ff 
+ 00024478  0x0000428b call  0x00007e89 
+ 00024479  0x0000428c fetcht  0x00000001 , 0x00004756 
+ 00024480  0x0000428d call  0x000064fd 
+ 00024481  0x0000428e branch  0x00007e89 
+ 00024482  0x00004291 setarg  0x0000ba41 
+ 00024483  0x00004292 call  0x000060db 
+ 00024484  0x00004293 setarg  0x00000d11 
+ 00024485  0x00004294 call  0x000060db 
+ 00024486  0x00004295 setarg  0x0000041b 
+ 00024487  0x00004296 call  0x000060db 
+ 00024488  0x00004297 setarg  0x0000041c 
+ 00024489  0x00004298 call  0x000060db 
+ 00024490  0x00004299 setarg  0x00000f1d 
+ 00024491  0x0000429a call  0x000060db 
+ 00024492  0x0000429b setarg  0x00000032 
+ 00024493  0x0000429c call  0x000060db 
+ 00024494  0x0000429d setarg  0x0000b541 
+ 00024495  0x0000429e branch  0x000060db 
+ 00024496  0x000042a3 setarg  0x0000ba41 
+ 00024497  0x000042a4 call  0x000060db 
+ 00024498  0x000042a5 nop  0x00000fa0 
+ 00024499  0x000042a6 setarg  0x0000ff7f 
+ 00024500  0x000042a7 call  0x000060db 
+ 00024501  0x000042a8 copy  0x00000011 , 0x0000003f 
+ 00024502  0x000042a9 call  0x000060db 
+ 00024503  0x000042aa setarg  0x0000007f 
+ 00024504  0x000042ab call  0x000060db 
+ 00024505  0x000042ac setarg  0x0000b541 
+ 00024506  0x000042ad branch  0x000060db 
+ 00024507  0x000042b0 rtnbit0  0x00000007 
+ 00024508  0x000042b1 arg  0x0000ff00 , 0x00000002 
+ 00024509  0x000042b2 ior  0x00000002 , 0x0000003f 
+ 00024510  0x000042b3 rtn 
+ 00024511  0x000042b6 rtnbit0  0x00000003 
+ 00024512  0x000042b7 arg  0x000000f0 , 0x00000002 
+ 00024513  0x000042b8 ior  0x00000002 , 0x0000003f 
+ 00024514  0x000042b9 rtn 
+ 00024515  0x000042bc call  0x00004bd4 
+ 00024516  0x000042bd nrtn  0x00000034 
+ 00024517  0x000042be fetch  0x00000001 , 0x0000474c 
+ 00024518  0x000042bf store  0x00000001 , 0x000044f8 
+ 00024519  0x000042c0 fetcht  0x00000002 , 0x000044f8 
+ 00024520  0x000042c1 call  0x00004f6a 
+ 00024521  0x000042c2 rtnbit0  0x00000000 
+ 00024522  0x000042c3 fetch  0x00000001 , 0x00004595 
+ 00024523  0x000042c4 rtnbit0  0x00000000 
+ 00024524  0x000042c5 call  0x00005f14 
+ 00024525  0x000042c6 nrtn  0x00000028 
+ 00024526  0x000042c7 call  0x00005efa 
+ 00024527  0x000042c8 fetch  0x00000001 , 0x0000474c 
+ 00024528  0x000042c9 store  0x00000001 , 0x000044f8 
+ 00024529  0x000042ca jam  0x0000001b , 0x000009bd 
+ 00024530  0x000042cb call  0x00004bd6 
+ 00024531  0x000042cc branch  0x00005f0c 
+ 00024532  0x000042cf copy  0x00000013 , 0x0000003f 
+ 00024533  0x000042d0 beq  0x00000014 , 0x00005fe7 
+ 00024534  0x000042d1 beq  0x00000001 , 0x00006084 
+ 00024535  0x000042d2 beq  0x00000015 , 0x00005ff6 
+ 00024536  0x000042d3 beq  0x00000002 , 0x00005ff6 
+ 00024537  0x000042d4 beq  0x00000005 , 0x00005ff5 
+ 00024538  0x000042d5 beq  0x00000010 , 0x00006048 
+ 00024539  0x000042d6 beq  0x00000012 , 0x00006068 
+ 00024540  0x000042d7 beq  0x00000006 , 0x00005ff3 
+ 00024541  0x000042d8 beq  0x00000028 , 0x00005edb 
+ 00024542  0x000042d9 beq  0x00000029 , 0x00005ede 
+ 00024543  0x000042da beq  0x00000004 , 0x00005ff0 
+ 00024544  0x000042db beq  0x00000013 , 0x00005ff0 
+ 00024545  0x000042dc beq  0x0000000a , 0x00005fee 
+ 00024546  0x000042dd beq  0x0000002e , 0x00003e32 
+ 00024547  0x000042de and  0x0000003f , 0x0000000f , 0x00000002 
+ 00024548  0x000042df and_into  0x000000f0 , 0x0000003f 
+ 00024549  0x000042e0 beq  0x00000050 , 0x00006014 
+ 00024550  0x000042e1 rtn 
+ 00024551  0x000042e4 fetch  0x00000002 , 0x000042af 
+ 00024552  0x000042e5 set0  0x00000000 , 0x0000003f 
+ 00024553  0x000042e6 store  0x00000002 , 0x000042af 
+ 00024554  0x000042e7 setarg  0x00000000 
+ 00024555  0x000042e8 store  0x00000002 , 0x0000473f 
+ 00024556  0x000042e9 call  0x00005efa 
+ 00024557  0x000042ea branch  0x00006084 
+ 00024558  0x000042ed call  0x000059d7 
+ 00024559  0x000042ee branch  0x00003e45 
+ 00024560  0x000042f1 fetch  0x00000002 , 0x0000470b 
+ 00024561  0x000042f2 bbit1  0x0000000c , 0x00006074 
+ 00024562  0x000042f3 branch  0x00003e0a 
+ 00024563  0x000042f7 call  0x00005edf 
+ 00024564  0x000042f8 rtn 
+ 00024565  0x000042fa rtn 
+ 00024566  0x000042fd set1  0x00000025 , 0x00000000 
+ 00024567  0x000042fe bpatch  0x0000006f , 0x0000402d 
+ 00024568  0x000042ff call  0x00006000 
+ 00024569  0x00004300 fetch  0x00000002 , 0x000042ad 
+ 00024570  0x00004301 bbit1  0x00000007 , 0x00006010 
+ 00024571  0x00004302 bbit1  0x00000000 , 0x00003e0c 
+ 00024572  0x00004303 bbit1  0x00000001 , 0x0000600a 
+ 00024573  0x00004304 bbit1  0x00000002 , 0x0000600d 
+ 00024574  0x00004305 bbit1  0x00000003 , 0x0000600d 
+ 00024575  0x00004306 branch  0x00006074 
+ 00024576  0x00004308 setarg  0x00000000 
+ 00024577  0x00004309 store  0x00000008 , 0x0000475b 
+ 00024578  0x0000430a istore  0x00000008 , 0x00000005 
+ 00024579  0x0000430b jam  0x00000000 , 0x00004745 
+ 00024580  0x0000430c jam  0x00000000 , 0x00004735 
+ 00024581  0x0000430d jam  0x00000000 , 0x00004283 
+ 00024582  0x0000430e jam  0x00000000 , 0x000044b2 
+ 00024583  0x0000430f jam  0x00000000 , 0x0000474b 
+ 00024584  0x00004310 jam  0x00000000 , 0x00004736 
+ 00024585  0x00004311 rtn 
+ 00024586  0x00004314 bbit1  0x00000005 , 0x0000600d 
+ 00024587  0x00004315 bbit1  0x00000003 , 0x0000600d 
+ 00024588  0x00004316 branch  0x00006074 
+ 00024589  0x00004318 fetch  0x00000002 , 0x0000470b 
+ 00024590  0x00004319 bbit1  0x0000000c , 0x00006074 
+ 00024591  0x0000431a branch  0x00003e0a 
+ 00024592  0x0000431d call  0x000052a0 
+ 00024593  0x0000431e fetch  0x00000002 , 0x000042ad 
+ 00024594  0x0000431f bbit1  0x00000000 , 0x00003e0c 
+ 00024595  0x00004320 branch  0x00003e0a 
+ 00024596  0x00004323 set1  0x00000025 , 0x00000000 
+ 00024597  0x00004324 bpatch  0x00000070 , 0x0000402e 
+ 00024598  0x00004325 storet  0x00000001 , 0x0000024e 
+ 00024599  0x00004327 fetch  0x00000001 , 0x0000024e 
+ 00024600  0x00004328 rtn  0x00000034 
+ 00024601  0x00004329 increase  0xffffffff , 0x0000003f 
+ 00024602  0x0000432a store  0x00000001 , 0x0000024e 
+ 00024603  0x0000432b call  0x00006027 
+ 00024604  0x0000432c call  0x0000602d 
+ 00024605  0x0000432d call  0x00006034 
+ 00024606  0x0000432e call  0x00006042 
+ 00024607  0x0000432f call  0x00006021 
+ 00024608  0x00004330 branch  0x00006017 
+ 00024609  0x00004333 fetch  0x00000001 , 0x0000476c 
+ 00024610  0x00004334 rtn  0x00000034 
+ 00024611  0x00004335 pincrease  0xffffffff 
+ 00024612  0x00004336 store  0x00000001 , 0x0000476c 
+ 00024613  0x00004337 nrtn  0x00000034 
+ 00024614  0x00004338 branch  0x000060aa 
+ 00024615  0x0000433c fetch  0x00000001 , 0x00004709 
+ 00024616  0x0000433d rtn  0x00000034 
+ 00024617  0x0000433e increase  0xffffffff , 0x0000003f 
+ 00024618  0x0000433f store  0x00000001 , 0x00004709 
+ 00024619  0x00004340 nrtn  0x00000034 
+ 00024620  0x00004341 branch  0x00006068 
+ 00024621  0x00004344 fetch  0x00000002 , 0x0000473d 
+ 00024622  0x00004345 rtn  0x00000034 
+ 00024623  0x00004346 increase  0xffffffff , 0x0000003f 
+ 00024624  0x00004347 store  0x00000002 , 0x0000473d 
+ 00024625  0x00004348 nrtn  0x00000034 
+ 00024626  0x00004349 call  0x00006084 
+ 00024627  0x0000434a branch  0x00003e75 
+ 00024628  0x0000434d fetch  0x00000002 , 0x0000473f 
+ 00024629  0x0000434e rtn  0x00000034 
+ 00024630  0x0000434f increase  0xffffffff , 0x0000003f 
+ 00024631  0x00004350 store  0x00000002 , 0x0000473f 
+ 00024632  0x00004351 nrtn  0x00000034 
+ 00024633  0x00004352 call  0x00003e5f 
+ 00024634  0x00004353 branch  0x00003e75 
+ 00024635  0x00004356 fetch  0x00000002 , 0x00004743 
+ 00024636  0x00004357 rtn  0x00000034 
+ 00024637  0x00004358 increase  0xffffffff , 0x0000003f 
+ 00024638  0x00004359 store  0x00000002 , 0x00004743 
+ 00024639  0x0000435a nrtn  0x00000034 
+ 00024640  0x0000435b jam  0x00000000 , 0x00004745 
+ 00024641  0x0000435c rtn 
+ 00024642  0x0000435f fetch  0x00000002 , 0x00004741 
+ 00024643  0x00004360 rtn  0x00000034 
+ 00024644  0x00004361 increase  0xffffffff , 0x0000003f 
+ 00024645  0x00004362 store  0x00000002 , 0x00004741 
+ 00024646  0x00004363 nrtn  0x00000034 
+ 00024647  0x00004364 branch  0x0000608f 
+ 00024648  0x00004367 set1  0x00000025 , 0x00000000 
+ 00024649  0x00004368 bpatch  0x00000071 , 0x0000402e 
+ 00024650  0x00004369 jam  0x00000000 , 0x00004745 
+ 00024651  0x0000436a jam  0x00000001 , 0x00004736 
+ 00024652  0x0000436b setarg  0x00000000 
+ 00024653  0x0000436c store  0x00000002 , 0x0000473f 
+ 00024654  0x0000436d call  0x0000608f 
+ 00024655  0x0000436e fetch  0x00000001 , 0x00004132 
+ 00024656  0x0000436f isolate1  0x00000001 , 0x0000003f 
+ 00024657  0x00004370 call  0x00006066 , 0x00000001 
+ 00024658  0x00004371 fetch  0x00000001 , 0x00004132 
+ 00024659  0x00004372 isolate1  0x00000000 , 0x0000003f 
+ 00024660  0x00004373 call  0x00006062 , 0x00000001 
+ 00024661  0x00004374 call  0x00003e81 
+ 00024662  0x00004375 branch  0x00006074 
+ 00024663  0x0000437a fetch  0x00000006 , 0x00004273 
+ 00024664  0x0000437b branch  0x00003e54 , 0x00000034 
+ 00024665  0x0000437c branch  0x00003e49 
+ 00024666  0x0000437f fetch  0x00000006 , 0x00004273 
+ 00024667  0x00004380 branch  0x00006060 , 0x00000034 
+ 00024668  0x00004381 fetch  0x00000002 , 0x00004737 
+ 00024669  0x00004382 store  0x00000002 , 0x0000473f 
+ 00024670  0x00004383 call  0x00003e7f 
+ 00024671  0x00004384 branch  0x00003e5d 
+ 00024672  0x00004386 call  0x00003e6f 
+ 00024673  0x00004387 branch  0x00003e63 
+ 00024674  0x0000438a fetch  0x00000002 , 0x0000470b 
+ 00024675  0x0000438b isolate1  0x00000007 , 0x0000003f 
+ 00024676  0x0000438c call  0x00003e50 , 0x00000001 
+ 00024677  0x0000438d rtn 
+ 00024678  0x0000438f call  0x000052a0 
+ 00024679  0x00004390 rtn 
+ 00024680  0x00004393 jam  0x00000001 , 0x00004283 
+ 00024681  0x00004394 call  0x00003e7f 
+ 00024682  0x00004395 call  0x00003e7d 
+ 00024683  0x00004396 jam  0x00000001 , 0x0000474b 
+ 00024684  0x00004397 setarg  0x00000000 
+ 00024685  0x00004398 store  0x00000002 , 0x00004707 
+ 00024686  0x00004399 store  0x00000001 , 0x00004709 
+ 00024687  0x0000439a branch  0x00003e79 
+ 00024688  0x0000439d fetch  0x00000001 , 0x000042b5 
+ 00024689  0x0000439e beq  0x00000033 , 0x00006057 
+ 00024690  0x0000439f beq  0x00000034 , 0x0000605a 
+ 00024691  0x000043a0 branch  0x00006074 
+ 00024692  0x000043a3 set1  0x00000025 , 0x00000000 
+ 00024693  0x000043a4 bpatch  0x00000072 , 0x0000402e 
+ 00024694  0x000043a5 fetch  0x00000002 , 0x0000470b 
+ 00024695  0x000043a6 bbit1  0x0000000b , 0x0000607a 
+ 00024696  0x000043a7 random  0x0000003f 
+ 00024697  0x000043a8 store  0x00000001 , 0x0000453f 
+ 00024698  0x000043aa call  0x00003e81 
+ 00024699  0x000043ab fetch  0x00000002 , 0x00004716 
+ 00024700  0x000043ac store  0x00000002 , 0x0000473d 
+ 00024701  0x000043ad fetch  0x00000001 , 0x00004132 
+ 00024702  0x000043ae isolate1  0x00000001 , 0x0000003f 
+ 00024703  0x000043af call  0x00003e63 , 0x00000001 
+ 00024704  0x000043b0 fetch  0x00000001 , 0x00004132 
+ 00024705  0x000043b1 isolate1  0x00000000 , 0x0000003f 
+ 00024706  0x000043b2 call  0x00003e57 , 0x00000001 
+ 00024707  0x000043b3 branch  0x00003e6f 
+ 00024708  0x000043b6 set1  0x00000025 , 0x00000000 
+ 00024709  0x000043b7 bpatch  0x00000073 , 0x0000402e 
+ 00024710  0x000043b8 setarg  0x00000000 
+ 00024711  0x000043b9 store  0x00000002 , 0x0000473d 
+ 00024712  0x000043ba fetch  0x00000001 , 0x00004132 
+ 00024713  0x000043bb isolate1  0x00000001 , 0x0000003f 
+ 00024714  0x000043bc call  0x00003e61 , 0x00000001 
+ 00024715  0x000043bd fetch  0x00000001 , 0x00004132 
+ 00024716  0x000043be isolate1  0x00000000 , 0x0000003f 
+ 00024717  0x000043bf call  0x00003e59 , 0x00000001 
+ 00024718  0x000043c0 branch  0x00003e73 
+ 00024719  0x000043c3 set1  0x00000025 , 0x00000000 
+ 00024720  0x000043c4 bpatch  0x00000074 , 0x0000402e 
+ 00024721  0x000043c5 setarg  0x00000000 
+ 00024722  0x000043c6 store  0x00000002 , 0x00004741 
+ 00024723  0x000043c7 fetch  0x00000002 , 0x0000470b 
+ 00024724  0x000043c8 bbit1  0x00000009 , 0x00003e6b 
+ 00024725  0x000043c9 fetch  0x00000002 , 0x0000470b 
+ 00024726  0x000043ca bbit1  0x00000000 , 0x00003e52 
+ 00024727  0x000043cb rtn 
+ 00024728  0x000043ce set1  0x00000025 , 0x00000000 
+ 00024729  0x000043cf bpatch  0x00000075 , 0x0000402e 
+ 00024730  0x000043d0 arg  0x00000001 , 0x00000002 
+ 00024731  0x000043d1 arg  0x00004746 , 0x00000011 
+ 00024732  0x000043d2 arg  0x000000c6 , 0x00000012 
+ 00024733  0x000043d3 branch  0x0000626f 
+ 00024734  0x000043d6 set1  0x00000025 , 0x00000000 
+ 00024735  0x000043d7 bpatch  0x00000076 , 0x0000402e 
+ 00024736  0x000043d8 arg  0x00000001 , 0x00000002 
+ 00024737  0x000043d9 arg  0x00004746 , 0x00000011 
+ 00024738  0x000043da arg  0x000000c6 , 0x00000012 
+ 00024739  0x000043db branch  0x00006245 
+ 00024740  0x000043e0 set1  0x00000025 , 0x00000000 
+ 00024741  0x000043e1 bpatch  0x00000077 , 0x0000402e 
+ 00024742  0x000043e2 fetch  0x00000001 , 0x00004734 
+ 00024743  0x000043e3 call  0x000060d1 
+ 00024744  0x000043e4 beq  0x00000000 , 0x000060b0 
+ 00024745  0x000043e5 rtn 
+ 00024746  0x000043e8 fetcht  0x00000001 , 0x00004757 
+ 00024747  0x000043e9 call  0x000064fd 
+ 00024748  0x000043ea fetcht  0x00000001 , 0x00004758 
+ 00024749  0x000043eb call  0x000064fd 
+ 00024750  0x000043ec fetcht  0x00000001 , 0x00004759 
+ 00024751  0x000043ed branch  0x000064fd 
+ 00024752  0x000043ef fetch  0x00000001 , 0x0000476b 
+ 00024753  0x000043f0 rtn  0x00000034 
+ 00024754  0x000043f1 jam  0x00000000 , 0x0000476b 
+ 00024755  0x000043f2 jam  0x0000003c , 0x0000476c 
+ 00024756  0x000043f3 call  0x000060aa 
+ 00024757  0x000043f4 fetch  0x00000001 , 0x0000476d 
+ 00024758  0x000043f5 beq  0x00000001 , 0x000060ba 
+ 00024759  0x000043f6 beq  0x00000002 , 0x000060bc 
+ 00024760  0x000043f7 beq  0x00000003 , 0x000060be 
+ 00024761  0x000043f8 rtn 
+ 00024762  0x000043fa fetcht  0x00000001 , 0x00004757 
+ 00024763  0x000043fb branch  0x000064ff 
+ 00024764  0x000043fd fetcht  0x00000001 , 0x00004758 
+ 00024765  0x000043fe branch  0x000064ff 
+ 00024766  0x00004400 fetcht  0x00000001 , 0x00004759 
+ 00024767  0x00004401 branch  0x000064ff 
+ 00024768  0x0000440c set1  0x00000025 , 0x00000000 
+ 00024769  0x0000440d bpatch  0x00000078 , 0x0000402f 
+ 00024770  0x0000440e hfetch  0x00000001 , 0x00008073 
+ 00024771  0x0000440f arg  0x00000006 , 0x00000002 
+ 00024772  0x00004410 ior  0x00000002 , 0x0000003f 
+ 00024773  0x00004411 hstore  0x00000001 , 0x00008073 
+ 00024774  0x00004412 hfetch  0x00000001 , 0x00008077 
+ 00024775  0x00004413 ior  0x00000002 , 0x0000003f 
+ 00024776  0x00004414 hstore  0x00000001 , 0x00008077 
+ 00024777  0x00004415 hjam  0x00000000 , 0x00008081 
+ 00024778  0x00004416 hfetch  0x00000001 , 0x00008077 
+ 00024779  0x00004417 set0  0x00000001 , 0x0000003f 
+ 00024780  0x00004418 set0  0x00000002 , 0x0000003f 
+ 00024781  0x00004419 hstore  0x00000001 , 0x00008077 
+ 00024782  0x0000441a nop  0x0000001e 
+ 00024783  0x0000441b hjam  0x00000001 , 0x00008081 
+ 00024784  0x0000441c rtn 
+ 00024785  0x00004421 copy  0x0000003f , 0x00000012 
+ 00024786  0x00004422 call  0x000060e7 
+ 00024787  0x00004423 nop  0x00000064 
+ 00024788  0x00004424 copy  0x00000012 , 0x0000003f 
+ 00024789  0x00004425 call  0x000060ec 
+ 00024790  0x00004426 copy  0x0000003f , 0x00000012 
+ 00024791  0x00004427 call  0x000060e9 
+ 00024792  0x00004428 nop  0x00000064 
+ 00024793  0x00004429 copy  0x00000012 , 0x0000003f 
+ 00024794  0x0000442a rtn 
+ 00024795  0x0000442d copy  0x0000003f , 0x00000012 
+ 00024796  0x0000442e call  0x000060e7 
+ 00024797  0x0000442f nop  0x00000064 
+ 00024798  0x00004430 copy  0x00000012 , 0x0000003f 
+ 00024799  0x00004431 call  0x000060eb 
+ 00024800  0x00004432 call  0x000060e9 
+ 00024801  0x00004433 nop  0x00000064 
+ 00024802  0x00004434 rtn 
+ 00024803  0x00004438 fetch  0x00000001 , 0x000042bb 
+ 00024804  0x00004439 rtneq  0x000000ff 
+ 00024805  0x0000443a fetcht  0x00000001 , 0x000042bb 
+ 00024806  0x0000443b branch  0x000064e8 
+ 00024807  0x0000443f fetcht  0x00000001 , 0x000042bb 
+ 00024808  0x00004440 branch  0x000064ff 
+ 00024809  0x00004444 fetcht  0x00000001 , 0x000042bb 
+ 00024810  0x00004445 branch  0x000064fd 
+ 00024811  0x00004449 branch  0x000061c1 
+ 00024812  0x0000444e branch  0x000061c9 
+ 00024813  0x00004456 nbranch  0x000060f1 , 0x00000028 
+ 00024814  0x00004457 hfetch  0x00000001 , 0x00008085 
+ 00024815  0x00004458 or_into  0x00000020 , 0x0000003f 
+ 00024816  0x00004459 hstore  0x00000001 , 0x00008085 
+ 00024817  0x0000445b copy  0x00000002 , 0x0000003e 
+ 00024818  0x0000445c branch  0x000060f4 , 0x00000005 
+ 00024819  0x0000445d copy  0x00000013 , 0x0000003d 
+ 00024820  0x0000445f isolate0  0x00000000 , 0x0000003e 
+ 00024821  0x00004460 branch  0x0000618e 
+ 00024822  0x00004464 force  0x00000004 , 0x00000002 
+ 00024823  0x00004466 arg  0x00000221 , 0x00000011 
+ 00024824  0x00004467 hfetch  0x00000001 , 0x00008085 
+ 00024825  0x00004468 and_into  0x000000df , 0x0000003f 
+ 00024826  0x00004469 hstore  0x00000001 , 0x00008085 
+ 00024827  0x0000446a call  0x000060f1 
+ 00024828  0x0000446b arg  0x000055aa , 0x00000011 
+ 00024829  0x0000446c fetch  0x00000002 , 0x00000221 
+ 00024830  0x0000446d ifetcht  0x00000002 , 0x00000006 
+ 00024831  0x0000446e isub  0x00000011 , 0x0000003e 
+ 00024832  0x0000446f rtn 
+ 00024833  0x00004472 arg  0x00000002 , 0x00000002 
+ 00024834  0x00004473 arg  0x00000227 , 0x00000011 
+ 00024835  0x00004474 call  0x000060f1 
+ 00024836  0x00004475 fetch  0x00000002 , 0x00000227 
+ 00024837  0x00004476 store  0x00000002 , 0x0000021a 
+ 00024838  0x00004477 call  0x00006108 , 0x00000028 
+ 00024839  0x00004478 rtn 
+ 00024840  0x0000447b arg  0x00000010 , 0x00000002 
+ 00024841  0x0000447c arg  0x00000229 , 0x00000011 
+ 00024842  0x0000447d hfetch  0x00000001 , 0x00008085 
+ 00024843  0x0000447e and_into  0x000000df , 0x0000003f 
+ 00024844  0x0000447f hstore  0x00000001 , 0x00008085 
+ 00024845  0x00004480 call  0x000060f1 
+ 00024846  0x00004481 arg  0x00000229 , 0x00000006 
+ 00024847  0x00004482 arg  0x00000010 , 0x00000039 
+ 00024848  0x00004483 call  0x000071a1 
+ 00024849  0x00004484 call  0x00007150 
+ 00024850  0x00004485 call  0x000071ba 
+ 00024851  0x00004486 branch  0x0000714a 
+ 00024852  0x00004489 disable  0x0000002d 
+ 00024853  0x0000448a call  0x000060f6 
+ 00024854  0x0000448b nrtn  0x00000005 
+ 00024855  0x0000448c enable  0x0000002d 
+ 00024856  0x0000448d hjam  0x00000080 , 0x00008023 
+ 00024857  0x0000448e hjam  0x00000000 , 0x00008022 
+ 00024858  0x0000448f hjam  0x00000000 , 0x00008024 
+ 00024859  0x00004490 arg  0x00008025 , 0x00000011 
+ 00024860  0x00004491 call  0x000060ed 
+ 00024861  0x00004492 hjam  0x00000000 , 0x00008023 
+ 00024862  0x00004493 call  0x000060f6 
+ 00024863  0x00004494 nrtn  0x00000005 
+ 00024864  0x00004495 force  0x00000000 , 0x0000003f 
+ 00024865  0x00004496 hstore  0x00000002 , 0x00008288 
+ 00024866  0x00004497 arg  0x0000828a , 0x00000011 
+ 00024867  0x00004498 call  0x000060ed 
+ 00024868  0x0000449a arg  0x00000006 , 0x00000002 
+ 00024869  0x0000449b call  0x000060f7 
+ 00024870  0x0000449c nrtn  0x00000005 
+ 00024871  0x0000449d ifetch  0x00000002 , 0x00000006 
+ 00024872  0x0000449e iforce  0x00000011 
+ 00024873  0x0000449f call  0x000060f1 
+ 00024874  0x000044a0 branch  0x00006124 
+ 00024875  0x000044a7 set1  0x00000025 , 0x00000000 
+ 00024876  0x000044a8 bpatch  0x00000079 , 0x0000402f 
+ 00024877  0x000044a9 call  0x00007f66 
+ 00024878  0x000044aa setarg  0x00001000 
+ 00024879  0x000044ab store  0x00000002 , 0x0000021a 
+ 00024880  0x000044ac arg  0x0000624c , 0x00000013 
+ 00024881  0x000044ad arg  0x00000002 , 0x00000039 
+ 00024882  0x000044af call  0x000060f6 
+ 00024883  0x000044b0 nrtn  0x00000005 
+ 00024884  0x000044b1 fetch  0x00000002 , 0x0000021a 
+ 00024885  0x000044b2 byteswap  0x0000003f , 0x0000003f 
+ 00024886  0x000044b3 iadd  0x00000002 , 0x0000003f 
+ 00024887  0x000044b4 byteswap  0x0000003f , 0x0000003f 
+ 00024888  0x000044b5 store  0x00000002 , 0x0000021a 
+ 00024889  0x000044b6 loop  0x00006132 
+ 00024890  0x000044b7 branch  0x00006124 
+ 00024891  0x000044ba hjam  0x00000025 , 0x00008050 
+ 00024892  0x000044bb hjam  0x00000005 , 0x00008280 
+ 00024893  0x000044bc call  0x00007f66 
+ 00024894  0x000044bd set1  0x00000025 , 0x00000000 
+ 00024895  0x000044be bpatch  0x0000007a , 0x0000402f 
+ 00024896  0x000044c0 disable  0x00000028 
+ 00024897  0x000044c1 call  0x000062c4 
+ 00024898  0x000044c2 setarg  0x00000000 
+ 00024899  0x000044c3 arg  0x00000216 , 0x00000011 
+ 00024900  0x000044c4 arg  0x00000002 , 0x00000002 
+ 00024901  0x000044c5 call  0x0000630d 
+ 00024902  0x000044c6 fetch  0x00000002 , 0x00000216 
+ 00024903  0x000044c7 bbit0  0x00000007 , 0x00006150 
+ 00024904  0x000044c8 setarg  0x000007f0 
+ 00024905  0x000044c9 arg  0x00000229 , 0x00000011 
+ 00024906  0x000044ca arg  0x00000010 , 0x00000002 
+ 00024907  0x000044cb call  0x0000630d 
+ 00024908  0x000044cc hjam  0x00000008 , 0x00008006 
+ 00024909  0x000044cd arg  0x00000229 , 0x00000006 
+ 00024910  0x000044ce call  0x000071ad 
+ 00024911  0x000044cf enable  0x00000028 
+ 00024912  0x000044d1 set1  0x00000025 , 0x00000000 
+ 00024913  0x000044d2 bpatch  0x0000007b , 0x0000402f 
+ 00024914  0x000044d3 fetch  0x00000002 , 0x00000216 
+ 00024915  0x000044d4 byteswap  0x0000003f , 0x0000003f 
+ 00024916  0x000044d5 arg  0x000007ff , 0x00000002 
+ 00024917  0x000044d6 iand  0x00000002 , 0x0000003f 
+ 00024918  0x000044d7 branch  0x0000615e , 0x00000005 
+ 00024919  0x000044d8 call  0x000062c9 
+ 00024920  0x000044d9 arg  0x00006312 , 0x00000013 
+ 00024921  0x000044da call  0x00006108 , 0x00000028 
+ 00024922  0x000044db call  0x00006114 
+ 00024923  0x000044dc fetch  0x00000001 , 0x00000215 
+ 00024924  0x000044dd compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024925  0x000044de nbranch  0x00006150 , 0x00000001 
+ 00024926  0x000044e0 set1  0x00000025 , 0x00000000 
+ 00024927  0x000044e1 bpatch  0x0000007c , 0x0000402f 
+ 00024928  0x000044e2 call  0x000062c7 
+ 00024929  0x000044e3 fetch  0x00000001 , 0x00000216 
+ 00024930  0x000044e4 bbit1  0x00000005 , 0x0000616d 
+ 00024931  0x000044e5 setarg  0x00000000 
+ 00024932  0x000044e6 store  0x00000003 , 0x00000219 
+ 00024933  0x000044e7 call  0x000061d9 
+ 00024934  0x000044e8 arg  0x000061fb , 0x00000013 
+ 00024935  0x000044e9 call  0x00006101 
+ 00024936  0x000044ea call  0x00006114 
+ 00024937  0x000044eb nbranch  0x0000616d , 0x0000002d 
+ 00024938  0x000044ec fetch  0x00000001 , 0x00000215 
+ 00024939  0x000044ed compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024940  0x000044ee nbranch  0x0000615e , 0x00000001 
+ 00024941  0x000044f0 set1  0x00000025 , 0x00000000 
+ 00024942  0x000044f1 bpatch  0x0000007d , 0x0000402f 
+ 00024943  0x000044f2 call  0x00006236 
+ 00024944  0x000044f3 fetch  0x00000001 , 0x00000216 
+ 00024945  0x000044f4 bbit1  0x00000006 , 0x00006180 
+ 00024946  0x000044f5 call  0x00006188 
+ 00024947  0x000044f6 nbranch  0x00006178 , 0x0000002d 
+ 00024948  0x000044f7 fetch  0x00000001 , 0x00000215 
+ 00024949  0x000044f8 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024950  0x000044f9 nbranch  0x0000616d , 0x00000001 
+ 00024951  0x000044fa branch  0x00006180 
+ 00024952  0x000044fc call  0x00006233 
+ 00024953  0x000044fd fetch  0x00000001 , 0x00000216 
+ 00024954  0x000044fe bbit1  0x00000006 , 0x00006180 
+ 00024955  0x000044ff call  0x00006188 
+ 00024956  0x00004500 nbranch  0x00006180 , 0x0000002d 
+ 00024957  0x00004501 fetch  0x00000001 , 0x00000215 
+ 00024958  0x00004502 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00024959  0x00004503 nbranch  0x00006178 , 0x00000001 
+ 00024960  0x00004505 force  0x00000004 , 0x00000038 
+ 00024961  0x00004506 call  0x000071bb 
+ 00024962  0x00004507 hjam  0x00000021 , 0x00008050 
+ 00024963  0x00004508 fetch  0x00000001 , 0x00000216 
+ 00024964  0x00004509 rtnbit0  0x00000004 
+ 00024965  0x0000450a call  0x00003ecd 
+ 00024966  0x0000450c call  0x00003ef4 
+ 00024967  0x0000450d branch  0x00006186 
+ 00024968  0x00004511 setarg  0x00000000 
+ 00024969  0x00004512 store  0x00000002 , 0x0000021a 
+ 00024970  0x00004513 arg  0x0000624c , 0x00000013 
+ 00024971  0x00004514 call  0x0000621d 
+ 00024972  0x00004515 call  0x00006101 
+ 00024973  0x00004516 branch  0x00006114 
+ 00024974  0x0000451c fetch  0x00000001 , 0x00000215 
+ 00024975  0x0000451d lshift  0x0000003f , 0x0000003f 
+ 00024976  0x0000451e setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00024977  0x0000451f isolate0  0x0000000f , 0x00000011 
+ 00024978  0x00004520 rtn  0x00000001 
+ 00024979  0x00004521 store  0x00000001 , 0x00000215 
+ 00024980  0x00004522 rtn 
+ 00024981  0x00004526 hfetch  0x00000001 , 0x00008085 
+ 00024982  0x00004527 rtnbit0  0x00000005 
+ 00024983  0x00004528 branch  0x0000619b 
+ 00024984  0x0000452a hfetch  0x00000001 , 0x0000812c 
+ 00024985  0x0000452b qisolate1  0x0000003f 
+ 00024986  0x0000452c rtn  0x00000001 
+ 00024987  0x0000452e hfetch  0x00000001 , 0x00008108 
+ 00024988  0x0000452f bbit0  0x00000001 , 0x00006198 
+ 00024989  0x00004530 call  0x0000714a 
+ 00024990  0x00004531 branch  0x00006198 
+ 00024991  0x00004536 fetch  0x00000002 , 0x00004239 
+ 00024992  0x00004537 rtn  0x00000034 
+ 00024993  0x00004538 hjam  0x00000080 , 0x00008023 
+ 00024994  0x00004539 hjam  0x00000000 , 0x00008022 
+ 00024995  0x0000453a hjam  0x00000000 , 0x00008024 
+ 00024996  0x0000453b fetcht  0x00000002 , 0x0000423b 
+ 00024997  0x0000453c lshift2  0x00000002 , 0x00000039 
+ 00024998  0x0000453d iforce  0x00000006 
+ 00024999  0x0000453f ifetch  0x00000001 , 0x00000006 
+ 00025000  0x00004540 hstore  0x00000001 , 0x00008025 
+ 00025001  0x00004541 loop  0x000061a7 
+ 00025002  0x00004542 hjam  0x00000000 , 0x00008023 
+ 00025003  0x00004543 rtn 
+ 00025004  0x00004549 set1  0x00000025 , 0x00000000 
+ 00025005  0x0000454a bpatch  0x0000007e , 0x0000402f 
+ 00025006  0x0000454b fetch  0x00000001 , 0x000042b9 
+ 00025007  0x0000454c hstore  0x00000001 , 0x00008086 
+ 00025008  0x0000454d fetch  0x00000001 , 0x000042ba 
+ 00025009  0x0000454e hstore  0x00000001 , 0x00008087 
+ 00025010  0x0000454f setarg  0x00000218 
+ 00025011  0x00004550 hstore  0x00000002 , 0x0000808a 
+ 00025012  0x00004551 setarg  0x0000021d 
+ 00025013  0x00004552 hstore  0x00000002 , 0x0000808c 
+ 00025014  0x00004553 hfetch  0x00000001 , 0x00008081 
+ 00025015  0x00004554 set1  0x00000000 , 0x0000003f 
+ 00025016  0x00004555 set0  0x00000001 , 0x0000003f 
+ 00025017  0x00004556 hstore  0x00000001 , 0x00008081 
+ 00025018  0x00004557 rtn 
+ 00025019  0x0000455a hfetch  0x00000001 , 0x00008086 
+ 00025020  0x0000455b set1  0x00000007 , 0x0000003f 
+ 00025021  0x0000455c hstore  0x00000001 , 0x00008086 
+ 00025022  0x0000455d set0  0x00000007 , 0x0000003f 
+ 00025023  0x0000455e hstore  0x00000001 , 0x00008086 
+ 00025024  0x0000455f rtn 
+ 00025025  0x00004564 set1  0x00000007 , 0x0000003f 
+ 00025026  0x00004565 store  0x00000002 , 0x00000218 
+ 00025027  0x00004566 set1  0x00000025 , 0x00000000 
+ 00025028  0x00004567 bpatch  0x0000007f , 0x0000402f 
+ 00025029  0x00004568 hjam  0x00000002 , 0x00008088 
+ 00025030  0x00004569 hjam  0x00000000 , 0x0000808e 
+ 00025031  0x0000456a hjam  0x00000002 , 0x00008006 
+ 00025032  0x0000456b branch  0x000061d3 
+ 00025033  0x0000456f force  0x00000001 , 0x00000002 
+ 00025034  0x00004573 store  0x00000001 , 0x00000218 
+ 00025035  0x00004574 set1  0x00000025 , 0x00000000 
+ 00025036  0x00004575 bpatch  0x00000080 , 0x00004030 
+ 00025037  0x00004576 hjam  0x00000001 , 0x00008088 
+ 00025038  0x00004577 hstoret  0x00000002 , 0x0000808e 
+ 00025039  0x00004578 hjam  0x00000002 , 0x00008006 
+ 00025040  0x00004579 call  0x000061d3 
+ 00025041  0x0000457a fetch  0x00000001 , 0x0000021d 
+ 00025042  0x0000457b rtn 
+ 00025043  0x0000457e fetch  0x00000002 , 0x00004176 
+ 00025044  0x0000457f increase  0x00000001 , 0x0000003f 
+ 00025045  0x00004580 store  0x00000002 , 0x00004176 
+ 00025046  0x00004581 hfetch  0x00000001 , 0x0000812c 
+ 00025047  0x00004582 bbit0  0x00000003 , 0x000061d3 
+ 00025048  0x00004583 rtn 
+ 00025049  0x00004586 hjam  0x00000040 , 0x00008086 
+ 00025050  0x00004587 hjam  0x00000000 , 0x00008087 
+ 00025051  0x00004588 hfetch  0x00000001 , 0x00008081 
+ 00025052  0x00004589 set0  0x00000000 , 0x0000003f 
+ 00025053  0x0000458a set1  0x00000001 , 0x0000003f 
+ 00025054  0x0000458b hstore  0x00000001 , 0x00008081 
+ 00025055  0x0000458c setarg  0x00000000 
+ 00025056  0x0000458d store  0x00000004 , 0x00000218 
+ 00025057  0x0000458e rtn 
+ 00025058  0x00004591 setarg  0x00000000 
+ 00025059  0x00004592 hstore  0x00000002 , 0x0000808e 
+ 00025060  0x00004593 setarg  0x00000001 
+ 00025061  0x00004594 hstore  0x00000001 , 0x00008088 
+ 00025062  0x00004595 setarg  0x00000218 
+ 00025063  0x00004596 hstore  0x00000002 , 0x0000808a 
+ 00025064  0x00004597 jam  0x00000006 , 0x00000218 
+ 00025065  0x00004598 hjam  0x00000002 , 0x00008006 
+ 00025066  0x00004599 branch  0x000061d3 
+ 00025067  0x0000459e increase  0x00000004 , 0x00000002 
+ 00025068  0x0000459f hstoret  0x00000002 , 0x00008088 
+ 00025069  0x000045a0 increase  0xfffffffc , 0x00000011 
+ 00025070  0x000045a1 arg  0x00000002 , 0x00000002 
+ 00025071  0x000045a2 istoret  0x00000001 , 0x00000011 
+ 00025072  0x000045a3 rshift16  0x0000003f , 0x00000002 
+ 00025073  0x000045a4 istoret  0x00000001 , 0x00000005 
+ 00025074  0x000045a5 rshift8  0x0000003f , 0x00000002 
+ 00025075  0x000045a6 istoret  0x00000001 , 0x00000005 
+ 00025076  0x000045a7 istore  0x00000001 , 0x00000005 
+ 00025077  0x000045a8 deposit  0x00000011 
+ 00025078  0x000045a9 hstore  0x00000002 , 0x0000808a 
+ 00025079  0x000045aa setarg  0x00000000 
+ 00025080  0x000045ab hstore  0x00000002 , 0x0000808e 
+ 00025081  0x000045ac hjam  0x00000002 , 0x00008006 
+ 00025082  0x000045ad branch  0x000061d3 
+ 00025083  0x000045b2 hstoret  0x00000002 , 0x0000808e 
+ 00025084  0x000045b3 setarg  0x00000004 
+ 00025085  0x000045b4 hstore  0x00000002 , 0x00008088 
+ 00025086  0x000045b5 jam  0x00000003 , 0x00000218 
+ 00025087  0x000045b6 setarg  0x00000218 
+ 00025088  0x000045b7 hstore  0x00000002 , 0x0000808a 
+ 00025089  0x000045b8 deposit  0x00000011 
+ 00025090  0x000045b9 hstore  0x00000002 , 0x0000808c 
+ 00025091  0x000045ba hfetch  0x00000001 , 0x00008086 
+ 00025092  0x000045bb isolate0  0x0000000f , 0x00000011 
+ 00025093  0x000045bc setflag  0x00000001 , 0x00000006 , 0x0000003f 
+ 00025094  0x000045bd hstore  0x00000001 , 0x00008086 
+ 00025095  0x000045be hjam  0x00000002 , 0x00008006 
+ 00025096  0x000045c0 hfetch  0x00000001 , 0x0000812c 
+ 00025097  0x000045c1 bbit1  0x00000007 , 0x00006208 
+ 00025098  0x000045c2 arg  0x00000003 , 0x00000007 
+ 00025099  0x000045c3 call  0x00006195 
+ 00025100  0x000045c4 call  0x000061d3 
+ 00025101  0x000045c5 isolate1  0x00000002 , 0x0000003f 
+ 00025102  0x000045c6 call  0x0000618e 
+ 00025103  0x000045c7 fetch  0x00000001 , 0x00000219 
+ 00025104  0x000045c8 lshift16  0x0000003f , 0x00000012 
+ 00025105  0x000045c9 fetch  0x00000001 , 0x0000021a 
+ 00025106  0x000045ca lshift8  0x0000003f , 0x0000003f 
+ 00025107  0x000045cb ior  0x00000012 , 0x00000012 
+ 00025108  0x000045cc fetch  0x00000001 , 0x0000021b 
+ 00025109  0x000045cd ior  0x00000012 , 0x0000003f 
+ 00025110  0x000045ce iadd  0x00000002 , 0x0000003f 
+ 00025111  0x000045cf store  0x00000001 , 0x0000021b 
+ 00025112  0x000045d0 rshift8  0x0000003f , 0x0000003f 
+ 00025113  0x000045d1 store  0x00000001 , 0x0000021a 
+ 00025114  0x000045d2 rshift8  0x0000003f , 0x0000003f 
+ 00025115  0x000045d3 store  0x00000001 , 0x00000219 
+ 00025116  0x000045d4 rtn 
+ 00025117  0x000045e4 hjam  0x00000005 , 0x00008091 
+ 00025118  0x000045e5 hjam  0x00000007 , 0x00008092 
+ 00025119  0x000045e6 hjam  0x00000007 , 0x00008093 
+ 00025120  0x000045e7 hjam  0x00000007 , 0x00008094 
+ 00025121  0x000045e8 hjam  0x00000007 , 0x00008095 
+ 00025122  0x000045e9 hjam  0x00000005 , 0x00008096 
+ 00025123  0x000045ea rtn 
+ 00025124  0x000045ef hfetch  0x00000001 , 0x0000812c 
+ 00025125  0x000045f0 bbit0  0x00000005 , 0x00006224 
+ 00025126  0x000045f1 rtn 
+ 00025127  0x000045fa hstore  0x00000002 , 0x00008098 
+ 00025128  0x000045fb deposit  0x00000011 
+ 00025129  0x000045fc hstore  0x00000002 , 0x0000809a 
+ 00025130  0x000045fd deposit  0x00000012 
+ 00025131  0x000045fe hstore  0x00000002 , 0x0000809c 
+ 00025132  0x000045ff deposit  0x00000002 
+ 00025133  0x00004600 hstore  0x00000002 , 0x0000809e 
+ 00025134  0x00004601 arg  0x00000001 , 0x00000002 
+ 00025135  0x00004602 nsetflag  0x00000034 , 0x00000001 , 0x00000002 
+ 00025136  0x00004603 hstore  0x00000001 , 0x00008090 
+ 00025137  0x00004604 hjam  0x00000004 , 0x00008006 
+ 00025138  0x00004605 branch  0x00006224 
+ 00025139  0x00004609 set1  0x0000002a , 0x00000000 
+ 00025140  0x0000460a jam  0x00000008 , 0x000042b6 
+ 00025141  0x0000460b rtn 
+ 00025142  0x0000460e set0  0x0000002a , 0x00000000 
+ 00025143  0x0000460f jam  0x00000020 , 0x000042b6 
+ 00025144  0x00004610 rtn 
+ 00025145  0x00004614 fetch  0x00000001 , 0x000042a8 
+ 00025146  0x00004615 iadd  0x00000012 , 0x0000003f 
+ 00025147  0x00004616 store  0x00000001 , 0x0000021a 
+ 00025148  0x00004617 branch  0x00006240 
+ 00025149  0x0000461a fetch  0x00000002 , 0x0000021a 
+ 00025150  0x0000461b byteswap  0x0000003f , 0x0000003f 
+ 00025151  0x0000461c store  0x00000001 , 0x0000021a 
+ 00025152  0x00004622 setarg  0x00000003 
+ 00025153  0x00004623 hstore  0x00000002 , 0x00008098 
+ 00025154  0x00004624 jam  0x000000a0 , 0x00000219 
+ 00025155  0x00004625 jam  0x000000a1 , 0x0000021b 
+ 00025156  0x00004626 branch  0x00006254 
+ 00025157  0x0000462c set1  0x00000025 , 0x00000000 
+ 00025158  0x0000462d bpatch  0x00000081 , 0x00004030 
+ 00025159  0x0000462e bmark1  0x0000002a , 0x00006239 
+ 00025160  0x0000462f fetch  0x00000002 , 0x000042a8 
+ 00025161  0x00004630 iadd  0x00000012 , 0x0000003f 
+ 00025162  0x00004631 byteswap  0x0000003f , 0x0000003f 
+ 00025163  0x00004632 store  0x00000002 , 0x0000021a 
+ 00025164  0x00004636 set1  0x00000025 , 0x00000000 
+ 00025165  0x00004637 bpatch  0x00000082 , 0x00004030 
+ 00025166  0x00004638 bmark1  0x0000002a , 0x0000623d 
+ 00025167  0x00004639 nop  0x00007530 
+ 00025168  0x0000463a setarg  0x00000004 
+ 00025169  0x0000463b hstore  0x00000002 , 0x00008098 
+ 00025170  0x0000463c jam  0x000000a0 , 0x00000219 
+ 00025171  0x0000463d jam  0x000000a1 , 0x0000021c 
+ 00025172  0x0000463f setarg  0x00000219 
+ 00025173  0x00004640 hstore  0x00000002 , 0x0000809a 
+ 00025174  0x00004641 hstoret  0x00000002 , 0x0000809e 
+ 00025175  0x00004642 deposit  0x00000011 
+ 00025176  0x00004643 hstore  0x00000002 , 0x0000809c 
+ 00025177  0x00004644 setarg  0x00000002 
+ 00025178  0x00004645 isolate0  0x0000000f , 0x00000011 
+ 00025179  0x00004646 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00025180  0x00004647 hstore  0x00000001 , 0x00008090 
+ 00025181  0x00004648 hjam  0x00000004 , 0x00008006 
+ 00025182  0x00004649 arg  0x00000005 , 0x00000007 
+ 00025183  0x0000464a call  0x00006195 
+ 00025184  0x0000464b call  0x00006224 
+ 00025185  0x0000464c isolate1  0x00000004 , 0x0000003f 
+ 00025186  0x0000464d call  0x0000618e 
+ 00025187  0x0000464e bmark1  0x0000002a , 0x0000626a 
+ 00025188  0x0000464f fetch  0x00000002 , 0x0000021a 
+ 00025189  0x00004650 byteswap  0x0000003f , 0x0000003f 
+ 00025190  0x00004651 iadd  0x00000002 , 0x0000003f 
+ 00025191  0x00004652 byteswap  0x0000003f , 0x0000003f 
+ 00025192  0x00004653 store  0x00000002 , 0x0000021a 
+ 00025193  0x00004654 rtn 
+ 00025194  0x00004657 fetch  0x00000001 , 0x0000021a 
+ 00025195  0x00004658 iadd  0x00000002 , 0x0000003f 
+ 00025196  0x00004659 byteswap  0x0000003f , 0x0000003f 
+ 00025197  0x0000465a store  0x00000002 , 0x0000021a 
+ 00025198  0x0000465b rtn 
+ 00025199  0x00004663 fetch  0x00000002 , 0x000042a8 
+ 00025200  0x00004664 iadd  0x00000012 , 0x0000003f 
+ 00025201  0x00004668 store  0x00000002 , 0x000009be 
+ 00025202  0x00004669 set1  0x00000025 , 0x00000000 
+ 00025203  0x0000466a bpatch  0x00000083 , 0x00004030 
+ 00025204  0x0000466b storet  0x00000002 , 0x000009c6 
+ 00025205  0x0000466c copy  0x00000011 , 0x0000003f 
+ 00025206  0x0000466d store  0x00000002 , 0x000009dd 
+ 00025207  0x0000466f call  0x00006287 
+ 00025208  0x00004671 fetcht  0x00000002 , 0x000009d6 
+ 00025209  0x00004672 fetch  0x00000002 , 0x000009dd 
+ 00025210  0x00004673 copy  0x0000003f , 0x00000011 
+ 00025211  0x00004674 fetch  0x00000002 , 0x000009be 
+ 00025212  0x00004676 call  0x000062a8 
+ 00025213  0x0000467a fetch  0x00000002 , 0x000009d6 
+ 00025214  0x0000467b fetcht  0x00000002 , 0x000009dd 
+ 00025215  0x0000467c iadd  0x00000002 , 0x00000002 
+ 00025216  0x0000467d storet  0x00000002 , 0x000009dd 
+ 00025217  0x0000467e fetcht  0x00000002 , 0x000009be 
+ 00025218  0x0000467f iadd  0x00000002 , 0x00000002 
+ 00025219  0x00004680 storet  0x00000002 , 0x000009be 
+ 00025220  0x00004681 fetch  0x00000002 , 0x000009c6 
+ 00025221  0x00004682 nbranch  0x00006277 , 0x00000034 
+ 00025222  0x00004683 rtn 
+ 00025223  0x0000468c set1  0x00000025 , 0x00000000 
+ 00025224  0x0000468d bpatch  0x00000084 , 0x00004030 
+ 00025225  0x0000468e fetch  0x00000002 , 0x000042b6 
+ 00025226  0x0000468f increase  0xffffffff , 0x0000003f 
+ 00025227  0x00004690 fetcht  0x00000002 , 0x000009be 
+ 00025228  0x00004691 ior  0x00000002 , 0x0000003f 
+ 00025229  0x00004692 increase  0x00000001 , 0x0000003f 
+ 00025230  0x00004693 store  0x00000003 , 0x000009da 
+ 00025231  0x00004695 fetch  0x00000002 , 0x000009c6 
+ 00025232  0x00004696 iadd  0x00000002 , 0x0000003f 
+ 00025233  0x00004698 fetcht  0x00000003 , 0x000009da 
+ 00025234  0x00004699 isub  0x00000002 , 0x0000003f 
+ 00025235  0x0000469a nbranch  0x0000629a , 0x00000002 
+ 00025236  0x0000469b store  0x00000002 , 0x000009c6 
+ 00025237  0x0000469c fetch  0x00000003 , 0x000009da 
+ 00025238  0x0000469d fetcht  0x00000002 , 0x000009be 
+ 00025239  0x0000469e isub  0x00000002 , 0x0000003f 
+ 00025240  0x0000469f store  0x00000002 , 0x000009d6 
+ 00025241  0x000046a0 rtn 
+ 00025242  0x000046a2 fetch  0x00000002 , 0x000009c6 
+ 00025243  0x000046a3 store  0x00000002 , 0x000009d6 
+ 00025244  0x000046a4 setarg  0x00000000 
+ 00025245  0x000046a5 store  0x00000002 , 0x000009c6 
+ 00025246  0x000046a6 rtn 
+ 00025247  0x000046a9 increase  0x00000002 , 0x00000002 
+ 00025248  0x000046aa hstoret  0x00000002 , 0x00008098 
+ 00025249  0x000046ab increase  0xfffffffe , 0x00000011 
+ 00025250  0x000046ac ifetcht  0x00000003 , 0x00000011 
+ 00025251  0x000046ad copy  0x00000002 , 0x00000012 
+ 00025252  0x000046ae arg  0x000000a0 , 0x00000002 
+ 00025253  0x000046af istoret  0x00000001 , 0x00000011 
+ 00025254  0x000046b1 istore  0x00000001 , 0x00000005 
+ 00025255  0x000046b2 branch  0x000062b7 
+ 00025256  0x000046b6 copy  0x0000003f , 0x00000012 
+ 00025257  0x000046b7 set1  0x00000025 , 0x00000000 
+ 00025258  0x000046b8 bpatch  0x00000085 , 0x00004030 
+ 00025259  0x000046b9 nop  0x00007530 
+ 00025260  0x000046ba bmark1  0x0000002a , 0x0000629f 
+ 00025261  0x000046bb copy  0x00000012 , 0x0000003f 
+ 00025262  0x000046bc increase  0x00000003 , 0x00000002 
+ 00025263  0x000046bd hstoret  0x00000002 , 0x00008098 
+ 00025264  0x000046be increase  0xfffffffd , 0x00000011 
+ 00025265  0x000046bf ifetcht  0x00000003 , 0x00000011 
+ 00025266  0x000046c0 copy  0x00000002 , 0x00000012 
+ 00025267  0x000046c1 arg  0x000000a0 , 0x00000002 
+ 00025268  0x000046c2 istoret  0x00000001 , 0x00000011 
+ 00025269  0x000046c3 byteswap  0x0000003f , 0x0000003f 
+ 00025270  0x000046c4 istore  0x00000002 , 0x00000005 
+ 00025271  0x000046c6 deposit  0x00000011 
+ 00025272  0x000046c7 hstore  0x00000002 , 0x0000809a 
+ 00025273  0x000046c8 setarg  0x00000000 
+ 00025274  0x000046c9 hstore  0x00000002 , 0x0000809e 
+ 00025275  0x000046ca hjam  0x00000001 , 0x00008090 
+ 00025276  0x000046cb hjam  0x00000004 , 0x00008006 
+ 00025277  0x000046cc call  0x00006224 
+ 00025278  0x000046cd copy  0x00000012 , 0x0000003f 
+ 00025279  0x000046ce istore  0x00000003 , 0x00000011 
+ 00025280  0x000046cf nop  0x00002710 
+ 00025281  0x000046d0 nop  0x00002710 
+ 00025282  0x000046d1 nop  0x00002710 
+ 00025283  0x000046d2 rtn 
+ 00025284  0x000046d7 hjam  0x00000070 , 0x00008973 
+ 00025285  0x000046d8 nop  0x00000bb8 
+ 00025286  0x000046d9 rtn 
+ 00025287  0x000046dc hjam  0x00000030 , 0x00008973 
+ 00025288  0x000046dd rtn 
+ 00025289  0x000046e0 lshift3  0x0000003f , 0x0000003f 
+ 00025290  0x000046e1 hstore  0x00000002 , 0x00008045 
+ 00025291  0x000046e2 hjam  0x00000000 , 0x0000804b 
+ 00025292  0x000046e3 rtn 
+ 00025293  0x000046e7 call  0x000062c9 
+ 00025294  0x000046e8 call  0x000062fa 
+ 00025295  0x000046ea ifetcht  0x00000001 , 0x00000011 
+ 00025296  0x000046eb increase  0x00000001 , 0x00000011 
+ 00025297  0x000046ec force  0x00000000 , 0x00000007 
+ 00025298  0x000046ee qisolate0  0x00000002 
+ 00025299  0x000046ef branch  0x000062f1 , 0x00000001 
+ 00025300  0x000046f0 hfetch  0x00000001 , 0x00008046 
+ 00025301  0x000046f1 set1  0x00000006 , 0x0000003f 
+ 00025302  0x000046f2 set1  0x00000007 , 0x0000003f 
+ 00025303  0x000046f3 hstore  0x00000001 , 0x00008046 
+ 00025304  0x000046f4 hjam  0x00000002 , 0x00008047 
+ 00025305  0x000046f5 hjam  0x00000082 , 0x00008047 
+ 00025306  0x000046f6 set0  0x00000007 , 0x0000003f 
+ 00025307  0x000046f7 hstore  0x00000001 , 0x00008046 
+ 00025308  0x000046f8 hjam  0x0000008a , 0x00008047 
+ 00025309  0x000046f9 nop  0x0000000b 
+ 00025310  0x000046fa hjam  0x000000ca , 0x00008047 
+ 00025311  0x000046fb nop  0x00000021 
+ 00025312  0x000046fc hjam  0x0000004a , 0x00008047 
+ 00025313  0x000046fd nop  0x0000002c 
+ 00025314  0x000046fe hjam  0x000000ca , 0x00008047 
+ 00025315  0x000046ff nop  0x00000016 
+ 00025316  0x00004700 hjam  0x0000008a , 0x00008047 
+ 00025317  0x00004701 nop  0x00000021 
+ 00025318  0x00004702 hjam  0x00000082 , 0x00008047 
+ 00025319  0x00004703 nop  0x00000001 
+ 00025320  0x00004704 hjam  0x00000092 , 0x00008047 
+ 00025321  0x00004705 nop  0x0000000a 
+ 00025322  0x00004706 hjam  0x000000b2 , 0x00008047 
+ 00025323  0x00004707 hfetch  0x00000001 , 0x00008007 
+ 00025324  0x00004708 hjam  0x00000092 , 0x00008047 
+ 00025325  0x00004709 nop  0x00000001 
+ 00025326  0x0000470a hjam  0x00000082 , 0x00008047 
+ 00025327  0x0000470b qisolate0  0x0000003f 
+ 00025328  0x0000470c branch  0x000062d2 , 0x00000001 
+ 00025329  0x0000470e hfetch  0x00000002 , 0x00008045 
+ 00025330  0x0000470f increase  0x00000001 , 0x0000003f 
+ 00025331  0x00004710 hstore  0x00000002 , 0x00008045 
+ 00025332  0x00004711 increase  0x00000001 , 0x00000007 
+ 00025333  0x00004712 compare  0x00000008 , 0x00000007 , 0x0000000f 
+ 00025334  0x00004713 nbranch  0x000062d2 , 0x00000001 
+ 00025335  0x00004714 loop  0x000062cf 
+ 00025336  0x00004715 hjam  0x00000083 , 0x00008047 
+ 00025337  0x00004716 rtn 
+ 00025338  0x00004719 hjam  0x00000082 , 0x00008047 
+ 00025339  0x0000471a nop  0x0000000c 
+ 00025340  0x0000471b hjam  0x00000080 , 0x00008047 
+ 00025341  0x0000471c hjam  0x00000082 , 0x00008047 
+ 00025342  0x0000471d nop  0x00000096 
+ 00025343  0x0000471e rtn 
+ 00025344  0x00004722 call  0x000062fa 
+ 00025345  0x00004723 hjam  0x000000a2 , 0x00008047 
+ 00025346  0x00004724 deposit  0x00000011 
+ 00025347  0x00004725 hstore  0x00000002 , 0x00008048 
+ 00025348  0x00004726 set1  0x0000000b , 0x00000002 
+ 00025349  0x00004727 isolate0  0x0000000f , 0x0000003f 
+ 00025350  0x00004728 setflag  0x00000001 , 0x0000000f , 0x00000002 
+ 00025351  0x00004729 hstoret  0x00000002 , 0x0000804a 
+ 00025352  0x0000472a hjam  0x00000001 , 0x00008006 
+ 00025353  0x0000472b rtn 
+ 00025354  0x0000472e hfetch  0x00000001 , 0x0000812c 
+ 00025355  0x0000472f bbit0  0x00000001 , 0x0000630a 
+ 00025356  0x00004730 rtn 
+ 00025357  0x00004734 call  0x000062c9 
+ 00025358  0x00004735 call  0x00006300 
+ 00025359  0x00004736 call  0x0000630a 
+ 00025360  0x00004737 hjam  0x00000083 , 0x00008047 
+ 00025361  0x00004738 rtn 
+ 00025362  0x0000473e hfetch  0x00000002 , 0x00008124 
+ 00025363  0x0000473f hstore  0x00000002 , 0x00008045 
+ 00025364  0x00004740 call  0x00006300 
+ 00025365  0x00004741 arg  0x00000001 , 0x00000007 
+ 00025366  0x00004742 call  0x00006195 
+ 00025367  0x00004743 call  0x0000630a 
+ 00025368  0x00004744 isolate1  0x00000000 , 0x0000003f 
+ 00025369  0x00004745 call  0x0000618e 
+ 00025370  0x00004746 hjam  0x00000083 , 0x00008047 
+ 00025371  0x00004747 rtn 
+ 00025372  0x0000474b hfetch  0x00000002 , 0x0000805e 
+ 00025373  0x0000474c iforce  0x0000000a 
+ 00025374  0x0000474d rtn 
+ 00025375  0x00004750 deposit  0x0000000a 
+ 00025376  0x00004751 hstore  0x00000002 , 0x0000805e 
+ 00025377  0x00004752 rtn 
+ 00025378  0x00004755 deposit  0x00000003 
+ 00025379  0x00004756 hstore  0x00000002 , 0x00008058 
+ 00025380  0x00004757 rtn 
+ 00025381  0x0000475a fetch  0x00000002 , 0x000042d3 
+ 00025382  0x0000475b hstore  0x00000002 , 0x00008052 
+ 00025383  0x0000475c rtn 
+ 00025384  0x0000475f deposit  0x00000039 
+ 00025385  0x00004760 rtn  0x00000034 
+ 00025386  0x00004762 increase  0xfffffff8 , 0x00000039 
+ 00025387  0x00004763 call  0x00006335 , 0x00000002 
+ 00025388  0x00004764 rtn  0x00000005 
+ 00025389  0x00004765 branch  0x0000632a , 0x00000002 
+ 00025390  0x00004766 increase  0x00000008 , 0x00000039 
+ 00025391  0x00004768 increase  0xfffffffc , 0x00000039 
+ 00025392  0x00004769 call  0x00006338 , 0x00000002 
+ 00025393  0x0000476a rtn  0x00000005 
+ 00025394  0x0000476b branch  0x0000632f , 0x00000002 
+ 00025395  0x0000476c increase  0x00000004 , 0x00000039 
+ 00025396  0x0000476d branch  0x0000633b 
+ 00025397  0x00004770 ifetch  0x00000008 , 0x00000006 
+ 00025398  0x00004771 istore  0x00000008 , 0x0000000a 
+ 00025399  0x00004772 rtn 
+ 00025400  0x00004775 ifetch  0x00000004 , 0x00000006 
+ 00025401  0x00004776 istore  0x00000004 , 0x0000000a 
+ 00025402  0x00004777 rtn 
+ 00025403  0x0000477a deposit  0x00000039 
+ 00025404  0x0000477b rtn  0x00000034 
+ 00025405  0x0000477d ifetch  0x00000001 , 0x00000006 
+ 00025406  0x0000477e istore  0x00000001 , 0x0000000a 
+ 00025407  0x0000477f loop  0x0000633d 
+ 00025408  0x00004780 rtn 
+ 00025409  0x00004783 deposit  0x00000039 
+ 00025410  0x00004784 rtn  0x00000034 
+ 00025411  0x00004786 increase  0xfffffff8 , 0x00000039 
+ 00025412  0x00004787 call  0x0000634e , 0x00000002 
+ 00025413  0x00004788 rtn  0x00000005 
+ 00025414  0x00004789 branch  0x00006343 , 0x00000002 
+ 00025415  0x0000478a increase  0x00000008 , 0x00000039 
+ 00025416  0x0000478c increase  0xfffffffc , 0x00000039 
+ 00025417  0x0000478d call  0x00006351 , 0x00000002 
+ 00025418  0x0000478e rtn  0x00000005 
+ 00025419  0x0000478f branch  0x00006348 , 0x00000002 
+ 00025420  0x00004790 increase  0x00000004 , 0x00000039 
+ 00025421  0x00004791 branch  0x00006354 
+ 00025422  0x00004794 ifetch  0x00000008 , 0x00000003 
+ 00025423  0x00004795 istore  0x00000008 , 0x00000005 
+ 00025424  0x00004796 rtn 
+ 00025425  0x00004799 ifetch  0x00000004 , 0x00000003 
+ 00025426  0x0000479a istore  0x00000004 , 0x00000005 
+ 00025427  0x0000479b rtn 
+ 00025428  0x0000479f deposit  0x00000039 
+ 00025429  0x000047a0 rtn  0x00000034 
+ 00025430  0x000047a2 ifetch  0x00000001 , 0x00000003 
+ 00025431  0x000047a3 istore  0x00000001 , 0x00000005 
+ 00025432  0x000047a4 loop  0x00006356 
+ 00025433  0x000047a5 rtn 
+ 00025434  0x000047ab set1  0x00000025 , 0x00000000 
+ 00025435  0x000047ac bpatch  0x00000086 , 0x00004030 
+ 00025436  0x000047ad fetch  0x00000001 , 0x000042be 
+ 00025437  0x000047ae rtn  0x00000034 
+ 00025438  0x000047af call  0x000063f3 
+ 00025439  0x000047b0 call  0x000063f9 , 0x00000005 
+ 00025440  0x000047b1 call  0x0000638e 
+ 00025441  0x000047b3 fetch  0x00000001 , 0x000042be 
+ 00025442  0x000047b4 icopy  0x00000013 
+ 00025443  0x000047b5 fetcht  0x00000002 , 0x000042bc 
+ 00025444  0x000047b6 storet  0x00000002 , 0x000001af 
+ 00025445  0x000047b8 copy  0x00000013 , 0x0000003f 
+ 00025446  0x000047b9 branch  0x00005d30 , 0x00000034 
+ 00025447  0x000047ba increase  0xffffffff , 0x00000013 
+ 00025448  0x000047bb copy  0x00000002 , 0x00000011 
+ 00025449  0x000047bc ifetch  0x00000001 , 0x00000011 
+ 00025450  0x000047bd fetcht  0x00000001 , 0x000001a7 
+ 00025451  0x000047be isub  0x00000002 , 0x0000003e 
+ 00025452  0x000047bf call  0x00006375 , 0x00000005 
+ 00025453  0x000047c0 branch  0x00006371 , 0x00000002 
+ 00025454  0x000047c1 ifetch  0x00000001 , 0x00000011 
+ 00025455  0x000047c2 increase  0x00000001 , 0x0000003f 
+ 00025456  0x000047c3 istore  0x00000001 , 0x00000011 
+ 00025457  0x000047c5 fetcht  0x00000002 , 0x000001af 
+ 00025458  0x000047c6 increase  0x00000022 , 0x00000002 
+ 00025459  0x000047c7 storet  0x00000002 , 0x000001af 
+ 00025460  0x000047c8 branch  0x00006365 
+ 00025461  0x000047cb setarg  0x00000000 
+ 00025462  0x000047cc istore  0x00000001 , 0x00000011 
+ 00025463  0x000047cd fetch  0x00000001 , 0x000001a8 
+ 00025464  0x000047ce istore  0x00000001 , 0x00000005 
+ 00025465  0x000047cf bne  0x00000033 , 0x00006383 
+ 00025466  0x000047d0 arg  0x00004261 , 0x00000012 
+ 00025467  0x000047d2 ifetch  0x00000006 , 0x00000006 
+ 00025468  0x000047d3 istore  0x00000008 , 0x00000005 
+ 00025469  0x000047d4 setarg  0x00000000 
+ 00025470  0x000047d5 istore  0x00000008 , 0x00000005 
+ 00025471  0x000047d6 copy  0x00000012 , 0x00000006 
+ 00025472  0x000047d8 call  0x00007e87 
+ 00025473  0x000047d9 force  0x00000001 , 0x0000003e 
+ 00025474  0x000047da rtn 
+ 00025475  0x000047dd beq  0x00000036 , 0x00006387 
+ 00025476  0x000047de beq  0x00000037 , 0x0000638b 
+ 00025477  0x000047df arg  0x000044a2 , 0x00000012 
+ 00025478  0x000047e0 branch  0x0000637b 
+ 00025479  0x000047e3 arg  0x0000457b , 0x00000006 
+ 00025480  0x000047e4 call  0x00007e87 
+ 00025481  0x000047e6 arg  0x000044a2 , 0x00000006 
+ 00025482  0x000047e7 branch  0x00006380 
+ 00025483  0x000047ea arg  0x00004573 , 0x00000006 
+ 00025484  0x000047eb call  0x00007e87 
+ 00025485  0x000047ec branch  0x00006389 
+ 00025486  0x000047f0 call  0x000031d4 
+ 00025487  0x000047f1 fetch  0x00000001 , 0x000042be 
+ 00025488  0x000047f2 rtn  0x00000034 
+ 00025489  0x000047f3 fetch  0x00000002 , 0x0000470b 
+ 00025490  0x000047f4 bbit1  0x00000000 , 0x000063a3 
+ 00025491  0x000047f7 fetch  0x00000001 , 0x0000452b 
+ 00025492  0x000047f8 beq  0x00000000 , 0x0000639c 
+ 00025493  0x000047f9 fetch  0x00000001 , 0x00000377 
+ 00025494  0x000047fa compare  0x000000c0 , 0x0000003f , 0x000000c0 
+ 00025495  0x000047fb branch  0x0000639c , 0x00000001 
+ 00025496  0x000047fc compare  0x00000040 , 0x0000003f , 0x000000c0 
+ 00025497  0x000047fd branch  0x000063a1 , 0x00000001 
+ 00025498  0x000047fe compare  0x00000000 , 0x0000003f , 0x000000c0 
+ 00025499  0x000047ff branch  0x0000639f , 0x00000001 
+ 00025500  0x00004801 jam  0x00000035 , 0x000001a8 
+ 00025501  0x00004802 fetch  0x00000006 , 0x00000372 
+ 00025502  0x00004803 branch  0x000063a7 
+ 00025503  0x00004806 jam  0x00000037 , 0x000001a8 
+ 00025504  0x00004807 branch  0x000063a7 
+ 00025505  0x0000480b jam  0x00000036 , 0x000001a8 
+ 00025506  0x0000480c branch  0x000063a7 
+ 00025507  0x00004810 set1  0x00000025 , 0x00000000 
+ 00025508  0x00004811 bpatch  0x00000087 , 0x00004030 
+ 00025509  0x00004812 jam  0x00000033 , 0x000001a8 
+ 00025510  0x00004813 fetch  0x00000006 , 0x00000040 
+ 00025511  0x00004815 store  0x00000006 , 0x000001a9 
+ 00025512  0x00004816 fetch  0x00000002 , 0x000042bc 
+ 00025513  0x00004817 ifetcht  0x00000001 , 0x0000003f 
+ 00025514  0x00004818 pincrease  0x00000001 
+ 00025515  0x00004819 store  0x00000002 , 0x000001af 
+ 00025516  0x0000481a storet  0x00000001 , 0x000001a7 
+ 00025517  0x0000481b fetch  0x00000001 , 0x000042be 
+ 00025518  0x0000481c icopy  0x00000013 
+ 00025519  0x0000481e fetch  0x00000002 , 0x000001af 
+ 00025520  0x0000481f copy  0x0000003f , 0x00000011 
+ 00025521  0x00004820 call  0x000063bf 
+ 00025522  0x00004821 rtn  0x00000028 
+ 00025523  0x00004822 fetcht  0x00000002 , 0x000001af 
+ 00025524  0x00004823 increase  0x00000022 , 0x00000002 
+ 00025525  0x00004824 storet  0x00000002 , 0x000001af 
+ 00025526  0x00004825 increase  0xffffffff , 0x00000002 
+ 00025527  0x00004826 ifetch  0x00000001 , 0x00000002 
+ 00025528  0x00004827 store  0x00000001 , 0x000001a7 
+ 00025529  0x00004828 increase  0xffffffff , 0x00000013 
+ 00025530  0x00004829 nbranch  0x000063af , 0x00000005 
+ 00025531  0x0000482a fetch  0x00000001 , 0x000042be 
+ 00025532  0x0000482b pincrease  0xffffffff 
+ 00025533  0x0000482c store  0x00000001 , 0x000001a7 
+ 00025534  0x0000482d rtn 
+ 00025535  0x0000482f fetch  0x00000001 , 0x000001a8 
+ 00025536  0x00004830 bne  0x00000033 , 0x000063c6 
+ 00025537  0x00004832 arg  0x000001a8 , 0x00000012 
+ 00025538  0x00004833 arg  0x00000007 , 0x00000039 
+ 00025539  0x00004834 call  0x00007f55 
+ 00025540  0x00004835 branch  0x000064c0 , 0x00000005 
+ 00025541  0x00004836 rtn 
+ 00025542  0x00004839 beq  0x00000036 , 0x000063c9 
+ 00025543  0x0000483a beq  0x00000037 , 0x000063e4 
+ 00025544  0x0000483b branch  0x000063c1 
+ 00025545  0x0000483e ifetcht  0x00000001 , 0x00000011 
+ 00025546  0x0000483f isub  0x00000002 , 0x0000003e 
+ 00025547  0x00004840 nrtn  0x00000005 
+ 00025548  0x00004841 arg  0x000009e1 , 0x00000005 
+ 00025549  0x00004842 arg  0x00000010 , 0x00000039 
+ 00025550  0x00004843 call  0x00007e9f 
+ 00025551  0x00004844 fetch  0x00000003 , 0x00000375 
+ 00025552  0x00004845 store  0x00000003 , 0x000009e1 
+ 00025553  0x00004846 call  0x000063db 
+ 00025554  0x00004847 fetch  0x00000002 , 0x000009fe 
+ 00025555  0x00004848 byteswap  0x0000003f , 0x0000003f 
+ 00025556  0x00004849 lshift8  0x0000003f , 0x00000002 
+ 00025557  0x0000484a ifetch  0x00000001 , 0x00000006 
+ 00025558  0x0000484b iadd  0x00000002 , 0x0000003f 
+ 00025559  0x0000484c fetcht  0x00000003 , 0x00000372 
+ 00025560  0x0000484d isub  0x00000002 , 0x0000003e 
+ 00025561  0x0000484e branch  0x000064c0 , 0x00000005 
+ 00025562  0x0000484f rtn 
+ 00025563  0x00004853 arg  0x000009e1 , 0x00000006 
+ 00025564  0x00004854 call  0x000071af 
+ 00025565  0x00004856 ifetch  0x00000001 , 0x00000011 
+ 00025566  0x00004857 call  0x000071b0 
+ 00025567  0x00004858 force  0x00000038 , 0x00000036 
+ 00025568  0x00004859 force  0x00000000 , 0x00000036 
+ 00025569  0x0000485a call  0x00007145 
+ 00025570  0x0000485b arg  0x000009f1 , 0x00000005 
+ 00025571  0x0000485c branch  0x000071c0 
+ 00025572  0x0000485f ifetcht  0x00000001 , 0x00000011 
+ 00025573  0x00004860 isub  0x00000002 , 0x0000003e 
+ 00025574  0x00004861 nrtn  0x00000005 
+ 00025575  0x00004862 copy  0x00000006 , 0x00000011 
+ 00025576  0x00004863 add  0x00000006 , 0x00000008 , 0x00000013 
+ 00025577  0x00004864 arg  0x00004573 , 0x00000012 
+ 00025578  0x00004865 arg  0x00000008 , 0x00000039 
+ 00025579  0x00004866 call  0x00007f55 
+ 00025580  0x00004867 branch  0x000064c0 , 0x00000005 
+ 00025581  0x00004868 copy  0x00000013 , 0x00000011 
+ 00025582  0x00004869 arg  0x0000457b , 0x00000012 
+ 00025583  0x0000486a arg  0x00000008 , 0x00000039 
+ 00025584  0x0000486b call  0x00007f55 
+ 00025585  0x0000486c branch  0x000064c0 , 0x00000005 
+ 00025586  0x0000486d rtn 
+ 00025587  0x00004870 fetch  0x00000002 , 0x000042bc 
+ 00025588  0x00004871 ifetcht  0x00000001 , 0x0000003f 
+ 00025589  0x00004872 pincrease  0x00000022 
+ 00025590  0x00004873 ifetch  0x00000001 , 0x0000003f 
+ 00025591  0x00004874 isub  0x00000002 , 0x0000003e 
+ 00025592  0x00004875 rtn 
+ 00025593  0x00004878 fetch  0x00000001 , 0x000042be 
+ 00025594  0x00004879 icopy  0x00000039 
+ 00025595  0x0000487a fetcht  0x00000002 , 0x000042bc 
+ 00025596  0x0000487b setarg  0x00000000 
+ 00025597  0x0000487d istore  0x00000001 , 0x00000002 
+ 00025598  0x0000487e increase  0x00000022 , 0x00000002 
+ 00025599  0x0000487f pincrease  0x00000001 
+ 00025600  0x00004880 loop  0x000063fd 
+ 00025601  0x00004881 rtn 
+ 00025602  0x00004884 set1  0x00000025 , 0x00000000 
+ 00025603  0x00004885 bpatch  0x00000088 , 0x00004031 
+ 00025604  0x00004886 call  0x0000638e 
+ 00025605  0x00004887 nbranch  0x0000640a , 0x00000028 
+ 00025606  0x00004888 add  0x00000011 , 0x0000000a , 0x00000006 
+ 00025607  0x0000488a arg  0x00004261 , 0x00000005 
+ 00025608  0x0000488b call  0x00007e87 
+ 00025609  0x0000488c branch  0x000064b1 
+ 00025610  0x0000488e jam  0x00000000 , 0x0000425d 
+ 00025611  0x0000488f rtn 
+ 00025612  0x00004892 fetch  0x00000009 , 0x00004571 
+ 00025613  0x00004893 branch  0x0000642c , 0x00000034 
+ 00025614  0x00004894 call  0x0000638e 
+ 00025615  0x00004895 nbranch  0x0000642c , 0x00000028 
+ 00025616  0x00004896 fetch  0x00000002 , 0x000001af 
+ 00025617  0x00004897 add  0x0000003f , 0x00000001 , 0x00000006 
+ 00025618  0x00004898 arg  0x0000457b , 0x00000005 
+ 00025619  0x00004899 call  0x00007e87 
+ 00025620  0x0000489a arg  0x000044a2 , 0x00000005 
+ 00025621  0x0000489b call  0x00007e87 
+ 00025622  0x0000489c jam  0x00000001 , 0x000044b2 
+ 00025623  0x0000489d rtn 
+ 00025624  0x000048a0 fetch  0x00000002 , 0x00004571 
+ 00025625  0x000048a1 nbranch  0x0000641c , 0x00000034 
+ 00025626  0x000048a2 fetch  0x00000006 , 0x00004573 
+ 00025627  0x000048a3 branch  0x0000642b , 0x00000034 
+ 00025628  0x000048a5 jam  0x00000003 , 0x000048c6 
+ 00025629  0x000048a6 setarg  0x00112233 
+ 00025630  0x000048a7 store  0x00000003 , 0x000044a2 
+ 00025631  0x000048a8 setarg  0x00445566 
+ 00025632  0x000048a9 istore  0x00000003 , 0x00000005 
+ 00025633  0x000048aa setarg  0x00778899 
+ 00025634  0x000048ab istore  0x00000003 , 0x00000005 
+ 00025635  0x000048ac setarg  0x00001122 
+ 00025636  0x000048ad istore  0x00000003 , 0x00000005 
+ 00025637  0x000048ae setarg  0x00334455 
+ 00025638  0x000048af istore  0x00000003 , 0x00000005 
+ 00025639  0x000048b0 setarg  0x00000066 
+ 00025640  0x000048b1 istore  0x00000001 , 0x00000005 
+ 00025641  0x000048b2 jam  0x00000001 , 0x000044b2 
+ 00025642  0x000048b3 rtn 
+ 00025643  0x000048b6 jam  0x00000001 , 0x000048c6 
+ 00025644  0x000048b8 jam  0x00000000 , 0x000044b2 
+ 00025645  0x000048b9 rtn 
+ 00025646  0x000048bd fetch  0x00000006 , 0x00000372 
+ 00025647  0x000048be store  0x00000006 , 0x000001a9 
+ 00025648  0x000048bf jam  0x00000034 , 0x000001a8 
+ 00025649  0x000048c0 branch  0x00006435 
+ 00025650  0x000048c2 fetch  0x00000006 , 0x00000040 
+ 00025651  0x000048c3 store  0x00000006 , 0x000001a9 
+ 00025652  0x000048c4 jam  0x00000033 , 0x000001a8 
+ 00025653  0x000048c6 set1  0x00000025 , 0x00000000 
+ 00025654  0x000048c7 bpatch  0x00000089 , 0x00004031 
+ 00025655  0x000048c8 fetch  0x00000001 , 0x00004132 
+ 00025656  0x000048c9 beq  0x0000000a , 0x0000635a 
+ 00025657  0x000048ca call  0x00006463 
+ 00025658  0x000048cb call  0x0000645f 
+ 00025659  0x000048cc fetch  0x00000001 , 0x000001a8 
+ 00025660  0x000048cd beq  0x00000034 , 0x0000643f 
+ 00025661  0x000048ce beq  0x00000033 , 0x0000648b 
+ 00025662  0x000048cf rtn 
+ 00025663  0x000048d1 call  0x00006489 
+ 00025664  0x000048d2 branch  0x00006472 
+ 00025665  0x000048d6 set1  0x00000025 , 0x00000000 
+ 00025666  0x000048d7 bpatch  0x0000008a , 0x00004031 
+ 00025667  0x000048d8 call  0x0000644d 
+ 00025668  0x000048d9 fetch  0x00000001 , 0x000001a7 
+ 00025669  0x000048da rtneq  0x000000ff 
+ 00025670  0x000048db fetch  0x00000006 , 0x000001a9 
+ 00025671  0x000048dc store  0x00000006 , 0x00004273 
+ 00025672  0x000048dd fetch  0x00000001 , 0x000001a8 
+ 00025673  0x000048de store  0x00000001 , 0x000042b5 
+ 00025674  0x000048df beq  0x00000033 , 0x00006451 
+ 00025675  0x000048e0 beq  0x00000034 , 0x00006453 
+ 00025676  0x000048e1 rtn 
+ 00025677  0x000048e3 call  0x0000645b 
+ 00025678  0x000048e4 fetch  0x00000001 , 0x000001a7 
+ 00025679  0x000048e5 rtneq  0x000000ff 
+ 00025680  0x000048e6 branch  0x0000647a 
+ 00025681  0x000048e8 call  0x00006492 
+ 00025682  0x000048e9 branch  0x000064b1 
+ 00025683  0x000048eb call  0x00006490 
+ 00025684  0x000048ec branch  0x000064b7 
+ 00025685  0x000048f1 set1  0x00000025 , 0x00000000 
+ 00025686  0x000048f2 bpatch  0x0000008c , 0x00004031 
+ 00025687  0x000048f3 setarg  0x00000000 
+ 00025688  0x000048f4 store  0x00000003 , 0x00000040 
+ 00025689  0x000048f5 istore  0x00000003 , 0x00000005 
+ 00025690  0x000048f6 branch  0x00006463 
+ 00025691  0x000048f9 arg  0x00000001 , 0x00000002 
+ 00025692  0x000048fa arg  0x000001a7 , 0x00000011 
+ 00025693  0x000048fb arg  0x0000001c , 0x00000012 
+ 00025694  0x000048fc branch  0x00006245 
+ 00025695  0x000048ff arg  0x00000001 , 0x00000002 
+ 00025696  0x00004900 arg  0x000001a7 , 0x00000011 
+ 00025697  0x00004901 arg  0x0000001c , 0x00000012 
+ 00025698  0x00004902 branch  0x0000626f 
+ 00025699  0x00004906 set1  0x00000025 , 0x00000000 
+ 00025700  0x00004907 bpatch  0x0000008d , 0x00004031 
+ 00025701  0x00004908 call  0x00006497 
+ 00025702  0x00004909 disable  0x00000028 
+ 00025703  0x0000490a call  0x0000649b 
+ 00025704  0x0000490b rtn  0x00000028 
+ 00025705  0x0000490d jam  0x00000000 , 0x000001a7 
+ 00025706  0x0000490e fetch  0x00000006 , 0x000001a9 
+ 00025707  0x0000490f store  0x00000006 , 0x00000184 
+ 00025708  0x00004910 fetch  0x00000001 , 0x000001a8 
+ 00025709  0x00004911 store  0x00000001 , 0x00000183 
+ 00025710  0x00004912 arg  0x0000001c , 0x00000002 
+ 00025711  0x00004913 arg  0x00000183 , 0x00000011 
+ 00025712  0x00004914 arg  0x00000000 , 0x00000012 
+ 00025713  0x00004915 branch  0x0000626f 
+ 00025714  0x00004919 arg  0x00000006 , 0x00000002 
+ 00025715  0x0000491a arg  0x0000453e , 0x00000011 
+ 00025716  0x0000491b arg  0x0000001d , 0x00000012 
+ 00025717  0x0000491c branch  0x0000626f 
+ 00025718  0x0000491f arg  0x00000006 , 0x00000002 
+ 00025719  0x00004920 arg  0x0000453e , 0x00000011 
+ 00025720  0x00004921 arg  0x0000001d , 0x00000012 
+ 00025721  0x00004922 branch  0x00006245 
+ 00025722  0x00004926 set1  0x00000025 , 0x00000000 
+ 00025723  0x00004927 bpatch  0x0000008e , 0x00004031 
+ 00025724  0x00004928 arg  0x00000007 , 0x00000002 
+ 00025725  0x00004929 arg  0x000001a8 , 0x00000011 
+ 00025726  0x0000492a arg  0x00000000 , 0x00000012 
+ 00025727  0x0000492b fetch  0x00000001 , 0x000001a7 
+ 00025728  0x0000492c mul32  0x0000003f , 0x00000007 , 0x0000003f 
+ 00025729  0x0000492d iadd  0x00000012 , 0x00000012 
+ 00025730  0x0000492e branch  0x00006245 
+ 00025731  0x00004931 arg  0x00000010 , 0x00000002 
+ 00025732  0x00004932 arg  0x00000023 , 0x00000012 
+ 00025733  0x00004933 fetch  0x00000001 , 0x000001a7 
+ 00025734  0x00004934 lshift4  0x0000003f , 0x0000003f 
+ 00025735  0x00004935 iadd  0x00000012 , 0x00000012 
+ 00025736  0x00004936 rtn 
+ 00025737  0x00004939 arg  0x000044a2 , 0x00000011 
+ 00025738  0x0000493a branch  0x0000648c 
+ 00025739  0x0000493c arg  0x00004261 , 0x00000011 
+ 00025740  0x0000493e set1  0x00000025 , 0x00000000 
+ 00025741  0x0000493f bpatch  0x0000008f , 0x00004031 
+ 00025742  0x00004940 call  0x00006483 
+ 00025743  0x00004941 branch  0x0000626f 
+ 00025744  0x00004944 arg  0x000044a2 , 0x00000011 
+ 00025745  0x00004945 branch  0x00006493 
+ 00025746  0x00004947 arg  0x00004261 , 0x00000011 
+ 00025747  0x00004949 set1  0x00000025 , 0x00000000 
+ 00025748  0x0000494a bpatch  0x00000090 , 0x00004032 
+ 00025749  0x0000494b call  0x00006483 
+ 00025750  0x0000494c branch  0x00006245 
+ 00025751  0x00004951 arg  0x0000001c , 0x00000002 
+ 00025752  0x00004952 arg  0x0000018a , 0x00000011 
+ 00025753  0x00004953 arg  0x00000000 , 0x00000012 
+ 00025754  0x00004954 branch  0x00006245 
+ 00025755  0x00004958 set1  0x00000025 , 0x00000000 
+ 00025756  0x00004959 bpatch  0x00000091 , 0x00004032 
+ 00025757  0x0000495a setarg  0x0000018a 
+ 00025758  0x0000495b store  0x00000002 , 0x000001af 
+ 00025759  0x0000495c jam  0x00000000 , 0x000001a7 
+ 00025760  0x0000495d arg  0x00000004 , 0x00000039 
+ 00025761  0x0000495f copy  0x00000039 , 0x0000003f 
+ 00025762  0x00004960 store  0x00000001 , 0x000009be 
+ 00025763  0x00004961 fetch  0x00000002 , 0x000001af 
+ 00025764  0x00004962 copy  0x0000003f , 0x00000011 
+ 00025765  0x00004963 call  0x000064bb 
+ 00025766  0x00004964 rtn  0x00000028 
+ 00025767  0x00004965 fetch  0x00000002 , 0x000001af 
+ 00025768  0x00004966 increase  0x00000007 , 0x0000003f 
+ 00025769  0x00004967 store  0x00000002 , 0x000001af 
+ 00025770  0x00004968 fetch  0x00000001 , 0x000001a7 
+ 00025771  0x00004969 increase  0x00000001 , 0x0000003f 
+ 00025772  0x0000496a store  0x00000001 , 0x000001a7 
+ 00025773  0x0000496b fetch  0x00000001 , 0x000009be 
+ 00025774  0x0000496c copy  0x0000003f , 0x00000039 
+ 00025775  0x0000496d loop  0x000064a1 
+ 00025776  0x0000496e rtn 
+ 00025777  0x00004972 fetch  0x00000008 , 0x00004261 
+ 00025778  0x00004973 fetcht  0x00000008 , 0x00004269 
+ 00025779  0x00004974 ior  0x00000002 , 0x0000003f 
+ 00025780  0x00004975 rtn  0x00000034 
+ 00025781  0x00004976 jam  0x00000001 , 0x0000425d 
+ 00025782  0x00004977 rtn 
+ 00025783  0x00004979 fetch  0x00000006 , 0x00004273 
+ 00025784  0x0000497a rtn  0x00000034 
+ 00025785  0x0000497b jam  0x00000001 , 0x000044b2 
+ 00025786  0x0000497c rtn 
+ 00025787  0x0000497f arg  0x000001a8 , 0x00000012 
+ 00025788  0x00004980 arg  0x00000007 , 0x00000039 
+ 00025789  0x00004981 call  0x00007f55 
+ 00025790  0x00004982 branch  0x000064c0 , 0x00000005 
+ 00025791  0x00004983 rtn 
+ 00025792  0x00004985 enable  0x00000028 
+ 00025793  0x00004986 rtn 
+ 00025794  0x0000498e set1  0x00000025 , 0x00000000 
+ 00025795  0x0000498f bpatch  0x00000092 , 0x00004032 
+ 00025796  0x00004990 set1  0x00000007 , 0x00000002 
+ 00025797  0x00004991 call  0x000064f5 
+ 00025798  0x00004992 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00025799  0x00004998 set1  0x00000025 , 0x00000000 
+ 00025800  0x00004999 bpatch  0x00000093 , 0x00004032 
+ 00025801  0x0000499a isolate0  0x00000007 , 0x00000002 
+ 00025802  0x0000499b and  0x00000002 , 0x0000001f , 0x00000007 
+ 00025803  0x0000499c fetch  0x00000004 , 0x000000a0 
+ 00025804  0x0000499d qsetflag  0x00000001 , 0x0000003f 
+ 00025805  0x0000499e store  0x00000004 , 0x000000a0 
+ 00025806  0x0000499f fetch  0x00000004 , 0x000000a4 
+ 00025807  0x000049a0 nqsetflag  0x00000001 , 0x0000003f 
+ 00025808  0x000049a1 store  0x00000004 , 0x000000a4 
+ 00025809  0x000049a2 rtn 
+ 00025810  0x000049a6 set1  0x00000025 , 0x00000000 
+ 00025811  0x000049a7 bpatch  0x00000094 , 0x00004032 
+ 00025812  0x000049a8 isolate0  0x00000007 , 0x00000002 
+ 00025813  0x000049a9 and  0x00000002 , 0x0000001f , 0x00000007 
+ 00025814  0x000049aa fetch  0x00000004 , 0x000000a0 
+ 00025815  0x000049ab qset0  0x0000003f 
+ 00025816  0x000049ac store  0x00000004 , 0x000000a0 
+ 00025817  0x000049ad fetch  0x00000004 , 0x000000a4 
+ 00025818  0x000049ae qset0  0x0000003f 
+ 00025819  0x000049af store  0x00000004 , 0x000000a4 
+ 00025820  0x000049b0 rtn 
+ 00025821  0x000049b4 call  0x000064d2 
+ 00025822  0x000049b5 branch  0x000064e0 
+ 00025823  0x000049b9 ncall  0x000064c7 , 0x0000002b 
+ 00025824  0x000049bc arg  0x0000807c , 0x00000005 
+ 00025825  0x000049bd call  0x00006504 
+ 00025826  0x000049be setflip  0x00000007 , 0x00000002 
+ 00025827  0x000049bf arg  0x00008078 , 0x00000005 
+ 00025828  0x000049c0 call  0x00006504 
+ 00025829  0x000049c1 set0  0x00000007 , 0x00000002 
+ 00025830  0x000049c2 arg  0x00008070 , 0x00000005 
+ 00025831  0x000049c3 branch  0x00006504 
+ 00025832  0x000049c7 setflip  0x00000007 , 0x00000002 
+ 00025833  0x000049c8 call  0x00006503 
+ 00025834  0x000049ca set1  0x00000007 , 0x00000002 
+ 00025835  0x000049cb arg  0x00008070 , 0x00000005 
+ 00025836  0x000049cc branch  0x00006504 
+ 00025837  0x000049cf and  0x00000002 , 0x00000007 , 0x00000007 
+ 00025838  0x000049d0 rshift3  0x00000002 , 0x0000003f 
+ 00025839  0x000049d1 and_into  0x00000003 , 0x0000003f 
+ 00025840  0x000049d2 iadd  0x00000005 , 0x00000005 
+ 00025841  0x000049d3 ifetch  0x00000001 , 0x00000005 
+ 00025842  0x000049d4 rtn 
+ 00025843  0x000049d7 arg  0x00008074 , 0x00000005 
+ 00025844  0x000049d8 branch  0x000064f6 
+ 00025845  0x000049dd arg  0x0000811c , 0x00000005 
+ 00025846  0x000049df call  0x000064ed 
+ 00025847  0x000049e0 isolate1  0x00000007 , 0x00000002 
+ 00025848  0x000049e1 branch  0x000064fb , 0x00000001 
+ 00025849  0x000049e2 qisolate0  0x0000003f 
+ 00025850  0x000049e3 rtn 
+ 00025851  0x000049e5 qisolate1  0x0000003f 
+ 00025852  0x000049e6 rtn 
+ 00025853  0x000049e9 isolate1  0x00000007 , 0x0000003e 
+ 00025854  0x000049ea branch  0x00006500 
+ 00025855  0x000049ed isolate0  0x00000007 , 0x0000003e 
+ 00025856  0x000049f1 setarg  0x00000000 
+ 00025857  0x000049f2 nsetflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00025858  0x000049f3 ixor  0x00000002 , 0x00000002 
+ 00025859  0x000049f7 arg  0x00008074 , 0x00000005 
+ 00025860  0x000049fb call  0x000064ed 
+ 00025861  0x000049fc isolate1  0x00000007 , 0x00000002 
+ 00025862  0x000049fd qsetflag  0x00000001 , 0x0000003f 
+ 00025863  0x000049fe istore  0x00000001 , 0x00000005 
+ 00025864  0x000049ff rtn 
+ 00025865  0x00004a02 arg  0xffffffff , 0x00000011 
+ 00025866  0x00004a03 hfetch  0x00000001 , 0x00008081 
+ 00025867  0x00004a04 isolate1  0x00000001 , 0x0000003f 
+ 00025868  0x00004a05 call  0x0000654d , 0x00000001 
+ 00025869  0x00004a07 and  0x0000003f , 0x00000003 , 0x00000012 
+ 00025870  0x00004a08 sub  0x00000012 , 0x00000001 , 0x0000003e 
+ 00025871  0x00004a09 call  0x0000654f , 0x00000005 
+ 00025872  0x00004a0b isolate1  0x00000002 , 0x0000003f 
+ 00025873  0x00004a0c call  0x00006549 , 0x00000001 
+ 00025874  0x00004a0e isolate1  0x00000003 , 0x0000003f 
+ 00025875  0x00004a0f call  0x0000654b , 0x00000001 
+ 00025876  0x00004a11 isolate1  0x00000005 , 0x0000003f 
+ 00025877  0x00004a12 call  0x00006551 , 0x00000001 
+ 00025878  0x00004a14 isolate1  0x00000006 , 0x0000003f 
+ 00025879  0x00004a15 arg  0x00000004 , 0x00000007 
+ 00025880  0x00004a16 call  0x00006555 , 0x00000001 
+ 00025881  0x00004a17 nsetflag  0x00000001 , 0x00000004 , 0x00000011 
+ 00025882  0x00004a19 isolate1  0x00000007 , 0x0000003f 
+ 00025883  0x00004a1a arg  0x00000005 , 0x00000007 
+ 00025884  0x00004a1b call  0x00006555 , 0x00000001 
+ 00025885  0x00004a1d hfetch  0x00000001 , 0x00008082 
+ 00025886  0x00004a1e isolate1  0x00000000 , 0x0000003f 
+ 00025887  0x00004a1f arg  0x00000003 , 0x00000007 
+ 00025888  0x00004a20 call  0x00006555 , 0x00000001 
+ 00025889  0x00004a22 hfetcht  0x00000001 , 0x00008080 
+ 00025890  0x00004a23 isolate1  0x00000000 , 0x00000002 
+ 00025891  0x00004a24 arg  0x00000005 , 0x00000007 
+ 00025892  0x00004a25 call  0x00006555 , 0x00000001 
+ 00025893  0x00004a27 ior  0x00000002 , 0x0000003f 
+ 00025894  0x00004a29 isolate1  0x00000001 , 0x0000003f 
+ 00025895  0x00004a2a arg  0x00000006 , 0x00000007 
+ 00025896  0x00004a2b call  0x00006555 , 0x00000001 
+ 00025897  0x00004a2d isolate1  0x00000002 , 0x0000003f 
+ 00025898  0x00004a2e arg  0x00000007 , 0x00000007 
+ 00025899  0x00004a2f call  0x00006555 , 0x00000001 
+ 00025900  0x00004a31 isolate1  0x00000003 , 0x0000003f 
+ 00025901  0x00004a32 arg  0x00000012 , 0x00000007 
+ 00025902  0x00004a33 call  0x00006555 , 0x00000001 
+ 00025903  0x00004a35 isolate1  0x00000004 , 0x0000003f 
+ 00025904  0x00004a36 arg  0x00000013 , 0x00000007 
+ 00025905  0x00004a37 call  0x00006555 , 0x00000001 
+ 00025906  0x00004a39 isolate1  0x00000005 , 0x0000003f 
+ 00025907  0x00004a3a arg  0x00000014 , 0x00000007 
+ 00025908  0x00004a3b call  0x00006555 , 0x00000001 
+ 00025909  0x00004a3d isolate1  0x00000006 , 0x0000003f 
+ 00025910  0x00004a3e arg  0x00000015 , 0x00000007 
+ 00025911  0x00004a3f call  0x00006555 , 0x00000001 
+ 00025912  0x00004a41 isolate1  0x00000007 , 0x0000003f 
+ 00025913  0x00004a42 arg  0x00000016 , 0x00000007 
+ 00025914  0x00004a43 call  0x00006555 , 0x00000001 
+ 00025915  0x00004a45 hfetch  0x00000001 , 0x00008062 
+ 00025916  0x00004a46 isolate1  0x00000004 , 0x0000003f 
+ 00025917  0x00004a47 call  0x00006553 , 0x00000001 
+ 00025918  0x00004a48 set1  0x00000025 , 0x00000000 
+ 00025919  0x00004a49 bpatch  0x00000095 , 0x00004032 
+ 00025920  0x00004a4b hfetch  0x00000004 , 0x00008078 
+ 00025921  0x00004a4c hfetcht  0x00000004 , 0x0000807c 
+ 00025922  0x00004a4d ior  0x00000002 , 0x0000003f 
+ 00025923  0x00004a4e invert  0x0000003f , 0x0000003f 
+ 00025924  0x00004a4f iand  0x00000011 , 0x0000003f 
+ 00025925  0x00004a51 hfetcht  0x00000004 , 0x0000807c 
+ 00025926  0x00004a52 ior  0x00000002 , 0x0000003f 
+ 00025927  0x00004a53 hstore  0x00000004 , 0x0000807c 
+ 00025928  0x00004a54 rtn 
+ 00025929  0x00004a56 arg  0x00000006 , 0x00000007 
+ 00025930  0x00004a57 branch  0x00006559 
+ 00025931  0x00004a59 arg  0x00000009 , 0x00000007 
+ 00025932  0x00004a5a branch  0x00006557 
+ 00025933  0x00004a5c arg  0x00000017 , 0x00000007 
+ 00025934  0x00004a5d branch  0x00006557 
+ 00025935  0x00004a5f arg  0x00000019 , 0x00000007 
+ 00025936  0x00004a60 branch  0x00006559 
+ 00025937  0x00004a62 arg  0x0000001b , 0x00000007 
+ 00025938  0x00004a63 branch  0x00006559 
+ 00025939  0x00004a65 arg  0x00000002 , 0x00000007 
+ 00025940  0x00004a66 branch  0x00006559 
+ 00025941  0x00004a68 arg  0x00000001 , 0x00000039 
+ 00025942  0x00004a69 branch  0x0000655a 
+ 00025943  0x00004a6b arg  0x00000004 , 0x00000039 
+ 00025944  0x00004a6c branch  0x0000655a 
+ 00025945  0x00004a6e arg  0x00000002 , 0x00000039 
+ 00025946  0x00004a70 qset0  0x00000011 
+ 00025947  0x00004a71 increase  0x00000001 , 0x00000007 
+ 00025948  0x00004a72 loop  0x0000655a 
+ 00025949  0x00004a73 rtn 
+ 00025950  0x00004a7c call  0x0000656a 
+ 00025951  0x00004a7d arg  0x00000006 , 0x00000002 
+ 00025952  0x00004a7e branch  0x000064e8 
+ 00025953  0x00004a81 call  0x0000655e 
+ 00025954  0x00004a82 arg  0x00000006 , 0x00000002 
+ 00025955  0x00004a83 branch  0x000064fd 
+ 00025956  0x00004a88 call  0x0000656a 
+ 00025957  0x00004a89 hfetch  0x00000001 , 0x00008078 
+ 00025958  0x00004a8a set1  0x00000007 , 0x0000003f 
+ 00025959  0x00004a8b hstore  0x00000001 , 0x00008078 
+ 00025960  0x00004a8c arg  0x00000007 , 0x00000002 
+ 00025961  0x00004a8d branch  0x000064df 
+ 00025962  0x00004a90 hfetch  0x00000001 , 0x00008081 
+ 00025963  0x00004a91 and_into  0x000000fb , 0x0000003f 
+ 00025964  0x00004a92 hstore  0x00000001 , 0x00008081 
+ 00025965  0x00004a93 rtn 
+ 00025966  0x00004a96 hfetch  0x00000001 , 0x00008081 
+ 00025967  0x00004a97 isolate1  0x00000002 , 0x0000003f 
+ 00025968  0x00004a98 rtn 
+ 00025969  0x00004a9b call  0x000062c4 
+ 00025970  0x00004a9c setarg  0x000007e0 
+ 00025971  0x00004a9d arg  0x000041f0 , 0x00000011 
+ 00025972  0x00004a9e arg  0x00000002 , 0x00000002 
+ 00025973  0x00004a9f call  0x0000630d 
+ 00025974  0x00004aa0 branch  0x000062c7 
+ 00025975  0x00004aa5 set1  0x00000025 , 0x00000000 
+ 00025976  0x00004aa6 bpatch  0x00000096 , 0x00004032 
+ 00025977  0x00004aa8 call  0x000062c4 
+ 00025978  0x00004aa9 setarg  0x000007e2 
+ 00025979  0x00004aaa arg  0x000042bf , 0x00000011 
+ 00025980  0x00004aab arg  0x0000000e , 0x00000002 
+ 00025981  0x00004aac call  0x0000630d 
+ 00025982  0x00004aad call  0x000062c7 
+ 00025983  0x00004aaf fetch  0x00000001 , 0x000042cf 
+ 00025984  0x00004ab0 bbit1  0x00000000 , 0x00006584 
+ 00025985  0x00004ab1 bbit1  0x00000001 , 0x00006598 
+ 00025986  0x00004ab2 bbit1  0x00000002 , 0x000065ac 
+ 00025987  0x00004ab3 rtn 
+ 00025988  0x00004ab6 fetcht  0x00000002 , 0x000042cb 
+ 00025989  0x00004ab7 setarg  0x0000aa55 
+ 00025990  0x00004ab8 isub  0x00000002 , 0x0000003e 
+ 00025991  0x00004ab9 branch  0x0000658d , 0x00000005 
+ 00025992  0x00004aba setarg  0x00004dfa 
+ 00025993  0x00004abb store  0x00000002 , 0x000042c9 
+ 00025994  0x00004abc setarg  0x00004894 
+ 00025995  0x00004abd store  0x00000002 , 0x000042c3 
+ 00025996  0x00004abe branch  0x00006595 
+ 00025997  0x00004ac1 fetch  0x00000002 , 0x000042c9 
+ 00025998  0x00004ac2 nbranch  0x00006591 , 0x00000034 
+ 00025999  0x00004ac3 setarg  0x00004dfa 
+ 00026000  0x00004ac4 store  0x00000002 , 0x000042c9 
+ 00026001  0x00004ac6 fetch  0x00000002 , 0x000042c3 
+ 00026002  0x00004ac7 nbranch  0x00006595 , 0x00000034 
+ 00026003  0x00004ac8 setarg  0x00004894 
+ 00026004  0x00004ac9 store  0x00000002 , 0x000042c3 
+ 00026005  0x00004acb setarg  0x00000064 
+ 00026006  0x00004acc store  0x00000002 , 0x000042cd 
+ 00026007  0x00004acd rtn 
+ 00026008  0x00004ad0 fetcht  0x00000002 , 0x000042cb 
+ 00026009  0x00004ad1 setarg  0x0000aa55 
+ 00026010  0x00004ad2 isub  0x00000002 , 0x0000003e 
+ 00026011  0x00004ad3 branch  0x000065a1 , 0x00000005 
+ 00026012  0x00004ad4 setarg  0x00005932 
+ 00026013  0x00004ad5 store  0x00000002 , 0x000042c7 
+ 00026014  0x00004ad6 setarg  0x00004323 
+ 00026015  0x00004ad7 store  0x00000002 , 0x000042c1 
+ 00026016  0x00004ad8 branch  0x000065a9 
+ 00026017  0x00004adb fetch  0x00000002 , 0x000042c7 
+ 00026018  0x00004adc nbranch  0x000065a5 , 0x00000034 
+ 00026019  0x00004add setarg  0x00005932 
+ 00026020  0x00004ade store  0x00000002 , 0x000042c7 
+ 00026021  0x00004ae0 fetch  0x00000002 , 0x000042c1 
+ 00026022  0x00004ae1 nbranch  0x000065a9 , 0x00000034 
+ 00026023  0x00004ae2 setarg  0x00004323 
+ 00026024  0x00004ae3 store  0x00000002 , 0x000042c1 
+ 00026025  0x00004ae5 setarg  0x00000190 
+ 00026026  0x00004ae6 store  0x00000002 , 0x000042cd 
+ 00026027  0x00004ae7 rtn 
+ 00026028  0x00004aea fetcht  0x00000002 , 0x000042cb 
+ 00026029  0x00004aeb setarg  0x0000aa55 
+ 00026030  0x00004aec isub  0x00000002 , 0x0000003e 
+ 00026031  0x00004aed branch  0x000065b5 , 0x00000005 
+ 00026032  0x00004aee setarg  0x00006946 
+ 00026033  0x00004aef store  0x00000002 , 0x000042c5 
+ 00026034  0x00004af0 setarg  0x00005377 
+ 00026035  0x00004af1 store  0x00000002 , 0x000042bf 
+ 00026036  0x00004af2 branch  0x000065bd 
+ 00026037  0x00004af5 fetch  0x00000002 , 0x000042c5 
+ 00026038  0x00004af6 nbranch  0x000065b9 , 0x00000034 
+ 00026039  0x00004af7 setarg  0x00006946 
+ 00026040  0x00004af8 store  0x00000002 , 0x000042c5 
+ 00026041  0x00004afa fetch  0x00000002 , 0x000042bf 
+ 00026042  0x00004afb nbranch  0x000065bd , 0x00000034 
+ 00026043  0x00004afc setarg  0x00005377 
+ 00026044  0x00004afd store  0x00000002 , 0x000042bf 
+ 00026045  0x00004aff setarg  0x00000032 
+ 00026046  0x00004b00 store  0x00000002 , 0x000042cd 
+ 00026047  0x00004b01 rtn 
+ 00026048  0x00004b05 fetch  0x00000001 , 0x000042cf 
+ 00026049  0x00004b06 bbit1  0x00000000 , 0x000065c5 
+ 00026050  0x00004b07 bbit1  0x00000001 , 0x000065c7 
+ 00026051  0x00004b08 bbit1  0x00000002 , 0x000065c9 
+ 00026052  0x00004b09 rtn 
+ 00026053  0x00004b0b hjam  0x000000bf , 0x00008971 
+ 00026054  0x00004b0c branch  0x000065cd 
+ 00026055  0x00004b0e hjam  0x000000af , 0x00008971 
+ 00026056  0x00004b0f branch  0x000065cd 
+ 00026057  0x00004b11 hjam  0x0000008f , 0x00008971 
+ 00026058  0x00004b12 fetch  0x00000001 , 0x000042d0 
+ 00026059  0x00004b13 hstore  0x00000001 , 0x00008973 
+ 00026060  0x00004b14 branch  0x000065cd 
+ 00026061  0x00004b16 set1  0x00000025 , 0x00000000 
+ 00026062  0x00004b17 bpatch  0x00000097 , 0x00004032 
+ 00026063  0x00004b18 hfetch  0x00000001 , 0x00008053 
+ 00026064  0x00004b19 set1  0x00000007 , 0x0000003f 
+ 00026065  0x00004b1a hstore  0x00000001 , 0x00008053 
+ 00026066  0x00004b1b hfetch  0x00000001 , 0x00008973 
+ 00026067  0x00004b1c or_into  0x00000030 , 0x0000003f 
+ 00026068  0x00004b1d hstore  0x00000001 , 0x00008973 
+ 00026069  0x00004b1e hjam  0x0000007c , 0x00008906 
+ 00026070  0x00004b1f hjam  0x000000aa , 0x00008972 
+ 00026071  0x00004b20 nop  0x00001388 
+ 00026072  0x00004b21 hfetcht  0x00000002 , 0x00008150 
+ 00026073  0x00004b22 hfetch  0x00000001 , 0x00008053 
+ 00026074  0x00004b23 set0  0x00000007 , 0x0000003f 
+ 00026075  0x00004b24 hstore  0x00000001 , 0x00008053 
+ 00026076  0x00004b25 storet  0x00000002 , 0x000042d1 
+ 00026077  0x00004b26 rtn 
+ 00026078  0x00004b29 set1  0x00000025 , 0x00000000 
+ 00026079  0x00004b2a bpatch  0x00000098 , 0x00004033 
+ 00026080  0x00004b2b fetch  0x00000001 , 0x000042cf 
+ 00026081  0x00004b2c bbit1  0x00000000 , 0x000065e5 
+ 00026082  0x00004b2d bbit1  0x00000001 , 0x000065e9 
+ 00026083  0x00004b2e bbit1  0x00000002 , 0x000065ed 
+ 00026084  0x00004b2f rtn 
+ 00026085  0x00004b32 fetch  0x00000002 , 0x000042c9 
+ 00026086  0x00004b33 fetcht  0x00000002 , 0x000042c3 
+ 00026087  0x00004b34 arg  0x000000c8 , 0x00000013 
+ 00026088  0x00004b35 branch  0x000065f1 
+ 00026089  0x00004b38 fetch  0x00000002 , 0x000042c7 
+ 00026090  0x00004b39 fetcht  0x00000002 , 0x000042c1 
+ 00026091  0x00004b3a arg  0x00000064 , 0x00000013 
+ 00026092  0x00004b3b branch  0x000065f1 
+ 00026093  0x00004b3e fetch  0x00000002 , 0x000042c5 
+ 00026094  0x00004b3f fetcht  0x00000002 , 0x000042bf 
+ 00026095  0x00004b40 arg  0x00000032 , 0x00000013 
+ 00026096  0x00004b41 branch  0x000065f1 
+ 00026097  0x00004b44 isub  0x00000002 , 0x00000011 
+ 00026098  0x00004b45 fetch  0x00000002 , 0x000042d1 
+ 00026099  0x00004b46 isub  0x00000002 , 0x0000003f 
+ 00026100  0x00004b47 nbranch  0x000065fe , 0x00000002 
+ 00026101  0x00004b48 fetcht  0x00000002 , 0x000042cd 
+ 00026102  0x00004b49 imul32  0x00000002 , 0x00000012 
+ 00026103  0x00004b4a copy  0x00000013 , 0x0000003f 
+ 00026104  0x00004b4b imul32  0x00000011 , 0x0000003f 
+ 00026105  0x00004b4c iadd  0x00000012 , 0x0000003f 
+ 00026106  0x00004b4e idiv  0x00000011 
+ 00026107  0x00004b4f call  0x00007f53 
+ 00026108  0x00004b50 quotient  0x0000003f 
+ 00026109  0x00004b51 rtn 
+ 00026110  0x00004b54 copy  0x00000002 , 0x0000003f 
+ 00026111  0x00004b55 fetcht  0x00000002 , 0x000042d1 
+ 00026112  0x00004b56 isub  0x00000002 , 0x0000003f 
+ 00026113  0x00004b57 fetcht  0x00000002 , 0x000042cd 
+ 00026114  0x00004b58 imul32  0x00000002 , 0x00000012 
+ 00026115  0x00004b59 copy  0x00000013 , 0x0000003f 
+ 00026116  0x00004b5a imul32  0x00000011 , 0x0000003f 
+ 00026117  0x00004b5b isub  0x00000012 , 0x0000003f 
+ 00026118  0x00004b5c branch  0x000065fa 
+ 00026119  0x00004b62 rtn  0x0000002b 
+ 00026120  0x00004b63 jam  0x00000000 , 0x000045ff 
+ 00026121  0x00004b64 jam  0x00000003 , 0x0000041c 
+ 00026122  0x00004b65 jam  0x00000003 , 0x0000041d 
+ 00026123  0x00004b66 jam  0x00000011 , 0x00000421 
+ 00026124  0x00004b67 jam  0x00000013 , 0x00000422 
+ 00026125  0x00004b68 setarg  0x00000000 
+ 00026126  0x00004b69 store  0x00000003 , 0x0000041e 
+ 00026127  0x00004b6a store  0x00000001 , 0x000042e4 
+ 00026128  0x00004b6b jam  0x00000000 , 0x0000470a 
+ 00026129  0x00004b6e set1  0x00000025 , 0x00000000 
+ 00026130  0x00004b6f bpatch  0x00000099 , 0x00004033 
+ 00026131  0x00004b70 setarg  0x00000000 
+ 00026132  0x00004b71 store  0x00000001 , 0x000042e4 
+ 00026133  0x00004b72 store  0x00000001 , 0x000045fc 
+ 00026134  0x00004b73 store  0x00000001 , 0x000045f5 
+ 00026135  0x00004b74 fetch  0x00000001 , 0x00004603 
+ 00026136  0x00004b75 beq  0x00000001 , 0x0000661b 
+ 00026137  0x00004b76 jam  0x00000050 , 0x00004601 
+ 00026138  0x00004b77 rtn 
+ 00026139  0x00004b7a jam  0x00000000 , 0x00004601 
+ 00026140  0x00004b7b rtn 
+ 00026141  0x00004b7e or_into  0x00000002 , 0x00000002 
+ 00026142  0x00004b7f rtn 
+ 00026143  0x00004b8c copy  0x00000002 , 0x0000003f 
+ 00026144  0x00004b8d reverse  0x0000003f , 0x0000003f 
+ 00026145  0x00004b8e store  0x00000001 , 0x000045fa 
+ 00026146  0x00004b8f force  0x0000003f , 0x0000003f 
+ 00026147  0x00004b90 reverse  0x0000003f , 0x0000003f 
+ 00026148  0x00004b91 store  0x00000001 , 0x000045f9 
+ 00026149  0x00004b92 force  0x00000001 , 0x0000003f 
+ 00026150  0x00004b93 reverse  0x0000003f , 0x0000003f 
+ 00026151  0x00004b94 store  0x00000001 , 0x000045f8 
+ 00026152  0x00004b95 call  0x00006655 
+ 00026153  0x00004b96 copy  0x00000002 , 0x0000003f 
+ 00026154  0x00004b97 rtn 
+ 00026155  0x00004b99 reverse  0x0000003f , 0x0000003f 
+ 00026156  0x00004b9a store  0x00000001 , 0x000045fa 
+ 00026157  0x00004b9b force  0x00000073 , 0x0000003f 
+ 00026158  0x00004b9c reverse  0x0000003f , 0x0000003f 
+ 00026159  0x00004b9d store  0x00000001 , 0x000045f9 
+ 00026160  0x00004b9e force  0x00000001 , 0x0000003f 
+ 00026161  0x00004b9f reverse  0x0000003f , 0x0000003f 
+ 00026162  0x00004ba0 store  0x00000001 , 0x000045f8 
+ 00026163  0x00004ba1 branch  0x00006655 
+ 00026164  0x00004ba4 fetch  0x00000001 , 0x000045fb 
+ 00026165  0x00004ba5 branch  0x00006638 , 0x00000034 
+ 00026166  0x00004ba6 setarg  0x00000070 
+ 00026167  0x00004ba7 rtn 
+ 00026168  0x00004ba9 setarg  0x000000aa 
+ 00026169  0x00004baa rtn 
+ 00026170  0x00004bad reverse  0x0000003f , 0x0000003f 
+ 00026171  0x00004bae store  0x00000001 , 0x000045fa 
+ 00026172  0x00004baf force  0x000000ef , 0x0000003f 
+ 00026173  0x00004bb0 call  0x00006649 
+ 00026174  0x00004bb1 fetcht  0x00000002 , 0x00000426 
+ 00026175  0x00004bb2 copy  0x00000002 , 0x00000005 
+ 00026176  0x00004bb3 istore  0x00000001 , 0x00000005 
+ 00026177  0x00004bb4 copy  0x00000005 , 0x00000002 
+ 00026178  0x00004bb5 storet  0x00000002 , 0x00000426 
+ 00026179  0x00004bb6 force  0x000000ff , 0x0000003f 
+ 00026180  0x00004bb7 call  0x00006649 
+ 00026181  0x00004bb8 fetcht  0x00000002 , 0x00000426 
+ 00026182  0x00004bb9 copy  0x00000002 , 0x00000005 
+ 00026183  0x00004bba istore  0x00000001 , 0x00000005 
+ 00026184  0x00004bbb rtn 
+ 00026185  0x00004bc5 reverse  0x0000003f , 0x0000003f 
+ 00026186  0x00004bc6 store  0x00000001 , 0x000045f9 
+ 00026187  0x00004bc7 fetch  0x00000002 , 0x000045f9 
+ 00026188  0x00004bc8 lshift8  0x0000003f , 0x0000003f 
+ 00026189  0x00004bc9 store  0x00000003 , 0x00000423 
+ 00026190  0x00004bca arg  0x00000107 , 0x00000011 
+ 00026191  0x00004bcb arg  0x0000000f , 0x00000012 
+ 00026192  0x00004bcc call  0x00006662 
+ 00026193  0x00004bcd xor_into  0x000000d7 , 0x0000003f 
+ 00026194  0x00004bce invert  0x0000003f , 0x0000003f 
+ 00026195  0x00004bcf reverse  0x0000003f , 0x0000003f 
+ 00026196  0x00004bd0 rtn 
+ 00026197  0x00004bdb fetch  0x00000003 , 0x000045f8 
+ 00026198  0x00004bdc store  0x00000003 , 0x00000423 
+ 00026199  0x00004bdd arg  0x00000107 , 0x00000011 
+ 00026200  0x00004bde arg  0x0000000f , 0x00000012 
+ 00026201  0x00004bdf call  0x00006662 
+ 00026202  0x00004be0 lshift8  0x0000003f , 0x0000003f 
+ 00026203  0x00004be1 arg  0x00000007 , 0x00000012 
+ 00026204  0x00004be2 call  0x00006662 
+ 00026205  0x00004be3 xor_into  0x0000002b , 0x0000003f 
+ 00026206  0x00004be4 invert  0x0000003f , 0x0000003f 
+ 00026207  0x00004be5 reverse  0x0000003f , 0x0000003f 
+ 00026208  0x00004be6 copy  0x0000003f , 0x00000002 
+ 00026209  0x00004be7 rtn 
+ 00026210  0x00004bea arg  0x00000000 , 0x00000013 
+ 00026211  0x00004beb copy  0x00000012 , 0x00000039 
+ 00026212  0x00004bec call  0x00007e43 
+ 00026213  0x00004bed icopy  0x00000002 
+ 00026214  0x00004bf3 copy  0x00000002 , 0x0000003f 
+ 00026215  0x00004bf4 lshift  0x00000013 , 0x00000013 
+ 00026216  0x00004bf5 bbit0  0x00000008 , 0x0000666b 
+ 00026217  0x00004bf6 ixor  0x00000011 , 0x00000002 
+ 00026218  0x00004bf7 increase  0x00000001 , 0x00000013 
+ 00026219  0x00004bf9 lshift  0x00000002 , 0x00000002 
+ 00026220  0x00004bfa fetch  0x00000003 , 0x00000423 
+ 00026221  0x00004bfb increase  0xffffffff , 0x00000012 
+ 00026222  0x00004bfc compare  0x000000ff , 0x00000012 , 0x000000ff 
+ 00026223  0x00004bfd branch  0x00006675 , 0x00000001 
+ 00026224  0x00004bfe copy  0x00000012 , 0x00000039 
+ 00026225  0x00004bff call  0x00007e43 
+ 00026226  0x00004c00 isolate1  0x00000000 , 0x0000003f 
+ 00026227  0x00004c01 setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00026228  0x00004c02 branch  0x00006666 
+ 00026229  0x00004c05 rshift  0x00000002 , 0x0000003f 
+ 00026230  0x00004c06 rtn 
+ 00026231  0x00004c09 fetcht  0x00000001 , 0x000045f5 
+ 00026232  0x00004c0c lshift2  0x00000002 , 0x00000002 
+ 00026233  0x00004c0d set1  0x00000000 , 0x00000002 
+ 00026234  0x00004c0e fetch  0x00000001 , 0x000045fb 
+ 00026235  0x00004c0f ncall  0x0000661d , 0x00000034 
+ 00026236  0x00004c10 storet  0x00000001 , 0x0000043c 
+ 00026237  0x00004c11 rtn 
+ 00026238  0x00004c15 lshift  0x00000002 , 0x00000002 
+ 00026239  0x00004c16 fetch  0x00000001 , 0x000045fb 
+ 00026240  0x00004c17 setflag  0x00000034 , 0x00000000 , 0x00000002 
+ 00026241  0x00004c19 rtn 
+ 00026242  0x00004c1b fetcht  0x00000001 , 0x0000042b 
+ 00026243  0x00004c1c jam  0x000000d7 , 0x0000042d 
+ 00026244  0x00004c1d call  0x000067c1 
+ 00026245  0x00004c1e fetch  0x00000001 , 0x000042e1 
+ 00026246  0x00004c1f set1  0x00000006 , 0x0000003f 
+ 00026247  0x00004c20 set1  0x00000007 , 0x0000003f 
+ 00026248  0x00004c21 store  0x00000001 , 0x000042e1 
+ 00026249  0x00004c22 jam  0x00000000 , 0x000045fb 
+ 00026250  0x00004c23 branch  0x000067a1 
+ 00026251  0x00004c25 fetch  0x00000001 , 0x000042e1 
+ 00026252  0x00004c26 set1  0x00000007 , 0x0000003f 
+ 00026253  0x00004c27 store  0x00000001 , 0x000042e1 
+ 00026254  0x00004c28 branch  0x000067a1 
+ 00026255  0x00004c2c set1  0x00000025 , 0x00000000 
+ 00026256  0x00004c2d bpatch  0x0000009a , 0x00004033 
+ 00026257  0x00004c2e fetch  0x00000001 , 0x0000470a 
+ 00026258  0x00004c2f beq  0x00000000 , 0x00006694 
+ 00026259  0x00004c30 branch  0x00006755 
+ 00026260  0x00004c33 fetch  0x00000002 , 0x0000028d 
+ 00026261  0x00004c34 copy  0x0000003f , 0x00000006 
+ 00026262  0x00004c35 call  0x000066bf 
+ 00026263  0x00004c36 fetch  0x00000001 , 0x0000042b 
+ 00026264  0x00004c37 beq  0x00000000 , 0x0000669a 
+ 00026265  0x00004c38 branch  0x00006720 
+ 00026266  0x00004c3a set1  0x00000025 , 0x00000000 
+ 00026267  0x00004c3b bpatch  0x0000009b , 0x00004033 
+ 00026268  0x00004c3c fetch  0x00000001 , 0x0000042c 
+ 00026269  0x00004c3d beq  0x0000003f , 0x00006682 
+ 00026270  0x00004c3e beq  0x00000073 , 0x0000668b 
+ 00026271  0x00004c3f beq  0x000000ef , 0x000066a2 
+ 00026272  0x00004c40 beq  0x00000053 , 0x0000674d 
+ 00026273  0x00004c41 rtn 
+ 00026274  0x00004c45 fetch  0x00000002 , 0x00000430 
+ 00026275  0x00004c46 copy  0x0000003f , 0x00000006 
+ 00026276  0x00004c47 call  0x000066ca 
+ 00026277  0x00004c48 fetch  0x00000001 , 0x00000432 
+ 00026278  0x00004c49 beq  0x00000041 , 0x000066ac 
+ 00026279  0x00004c4a beq  0x00000040 , 0x000066b4 
+ 00026280  0x00004c4b beq  0x00000071 , 0x000066ed 
+ 00026281  0x00004c4c beq  0x00000070 , 0x000066f9 
+ 00026282  0x00004c4d beq  0x00000049 , 0x00006704 
+ 00026283  0x00004c4e branch  0x000067a1 
+ 00026284  0x00004c51 call  0x000066b6 
+ 00026285  0x00004c53 branch  0x000066ae 
+ 00026286  0x00004c56 fetch  0x00000001 , 0x000042e4 
+ 00026287  0x00004c57 set1  0x00000000 , 0x0000003f 
+ 00026288  0x00004c58 set1  0x00000001 , 0x0000003f 
+ 00026289  0x00004c59 store  0x00000001 , 0x000042e4 
+ 00026290  0x00004c5a call  0x000067ed 
+ 00026291  0x00004c5b branch  0x000067a1 
+ 00026292  0x00004c5e call  0x000066b6 
+ 00026293  0x00004c5f branch  0x000067a1 
+ 00026294  0x00004c62 call  0x000066d2 
+ 00026295  0x00004c63 branch  0x000066de 
+ 00026296  0x00004c66 call  0x000066d2 
+ 00026297  0x00004c67 ifetch  0x00000001 , 0x00000006 
+ 00026298  0x00004c68 rshift3  0x0000003f , 0x0000003f 
+ 00026299  0x00004c69 store  0x00000001 , 0x00004602 
+ 00026300  0x00004c6a ifetch  0x00000001 , 0x00000006 
+ 00026301  0x00004c6b store  0x00000001 , 0x00000437 
+ 00026302  0x00004c6c rtn 
+ 00026303  0x00004c70 ifetch  0x00000001 , 0x00000006 
+ 00026304  0x00004c71 store  0x00000001 , 0x0000042a 
+ 00026305  0x00004c72 rshift3  0x0000003f , 0x0000003f 
+ 00026306  0x00004c73 store  0x00000001 , 0x0000042b 
+ 00026307  0x00004c74 ifetch  0x00000001 , 0x00000006 
+ 00026308  0x00004c75 store  0x00000001 , 0x0000042c 
+ 00026309  0x00004c77 call  0x000066d5 
+ 00026310  0x00004c78 storet  0x00000002 , 0x0000042e 
+ 00026311  0x00004c79 copy  0x00000006 , 0x0000003f 
+ 00026312  0x00004c7a store  0x00000002 , 0x00000430 
+ 00026313  0x00004c7b rtn 
+ 00026314  0x00004c7e ifetch  0x00000001 , 0x00000006 
+ 00026315  0x00004c7f rshift  0x0000003f , 0x0000003f 
+ 00026316  0x00004c80 store  0x00000001 , 0x00000432 
+ 00026317  0x00004c81 call  0x000066d5 
+ 00026318  0x00004c82 storet  0x00000002 , 0x00000433 
+ 00026319  0x00004c83 copy  0x00000006 , 0x0000003f 
+ 00026320  0x00004c84 store  0x00000002 , 0x00000435 
+ 00026321  0x00004c85 rtn 
+ 00026322  0x00004c89 fetch  0x00000002 , 0x00000435 
+ 00026323  0x00004c8a copy  0x0000003f , 0x00000006 
+ 00026324  0x00004c8b rtn 
+ 00026325  0x00004c8e ifetch  0x00000001 , 0x00000006 
+ 00026326  0x00004c8f copy  0x0000003f , 0x00000002 
+ 00026327  0x00004c90 rshift  0x00000002 , 0x00000002 
+ 00026328  0x00004c91 rtnbit1  0x00000000 
+ 00026329  0x00004c92 ifetch  0x00000001 , 0x00000006 
+ 00026330  0x00004c93 lshift3  0x0000003f , 0x0000003f 
+ 00026331  0x00004c94 lshift4  0x0000003f , 0x0000003f 
+ 00026332  0x00004c95 iadd  0x00000002 , 0x00000002 
+ 00026333  0x00004c96 rtn 
+ 00026334  0x00004c99 ifetch  0x00000001 , 0x00000006 
+ 00026335  0x00004c9a store  0x00000001 , 0x000045f5 
+ 00026336  0x00004c9b ifetch  0x00000001 , 0x00000006 
+ 00026337  0x00004c9c store  0x00000001 , 0x00000438 
+ 00026338  0x00004c9d ifetch  0x00000001 , 0x00000006 
+ 00026339  0x00004c9e store  0x00000001 , 0x00000439 
+ 00026340  0x00004c9f ifetch  0x00000001 , 0x00000006 
+ 00026341  0x00004ca0 store  0x00000001 , 0x0000043a 
+ 00026342  0x00004ca1 ifetch  0x00000002 , 0x00000006 
+ 00026343  0x00004ca2 store  0x00000002 , 0x000045f6 
+ 00026344  0x00004ca3 ifetch  0x00000001 , 0x00000006 
+ 00026345  0x00004ca4 store  0x00000001 , 0x0000043b 
+ 00026346  0x00004ca5 ifetch  0x00000001 , 0x00000006 
+ 00026347  0x00004ca6 store  0x00000001 , 0x00004600 
+ 00026348  0x00004ca7 rtn 
+ 00026349  0x00004cab call  0x000066b8 
+ 00026350  0x00004cad branch  0x000066ef 
+ 00026351  0x00004cb0 fetch  0x00000001 , 0x000042e4 
+ 00026352  0x00004cb1 set1  0x00000005 , 0x0000003f 
+ 00026353  0x00004cb2 set1  0x00000006 , 0x0000003f 
+ 00026354  0x00004cb3 store  0x00000001 , 0x000042e4 
+ 00026355  0x00004cb4 fetcht  0x00000001 , 0x000045f5 
+ 00026356  0x00004cb5 lshift2  0x00000002 , 0x00000002 
+ 00026357  0x00004cb6 or_into  0x00000003 , 0x00000002 
+ 00026358  0x00004cb7 call  0x00006820 
+ 00026359  0x00004cb8 jam  0x00000003 , 0x000045ff 
+ 00026360  0x00004cb9 branch  0x000067a1 
+ 00026361  0x00004cbc jam  0x00000008 , 0x000009bd 
+ 00026362  0x00004cbd call  0x00007d86 
+ 00026363  0x00004cbe call  0x000066b8 
+ 00026364  0x00004cbf fetch  0x00000001 , 0x00004602 
+ 00026365  0x00004cc0 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00026366  0x00004cc1 branch  0x00006700 , 0x00000005 
+ 00026367  0x00004cc2 branch  0x00003b31 
+ 00026368  0x00004cc4 fetch  0x00000001 , 0x000042e4 
+ 00026369  0x00004cc5 set1  0x00000007 , 0x0000003f 
+ 00026370  0x00004cc6 store  0x00000001 , 0x000042e4 
+ 00026371  0x00004cc7 branch  0x000067a1 
+ 00026372  0x00004cca call  0x000066d2 
+ 00026373  0x00004ccb ifetch  0x00000001 , 0x00000006 
+ 00026374  0x00004ccc store  0x00000001 , 0x000009e1 
+ 00026375  0x00004ccd call  0x0000487a 
+ 00026376  0x00004cce call  0x00004889 
+ 00026377  0x00004ccf setarg  0x0000000e 
+ 00026378  0x00004cd0 istore  0x00000002 , 0x00000005 
+ 00026379  0x00004cd1 fetch  0x00000002 , 0x000042da 
+ 00026380  0x00004cd2 istore  0x00000002 , 0x00000005 
+ 00026381  0x00004cd3 fetch  0x00000001 , 0x000045fb 
+ 00026382  0x00004cd5 lshift  0x0000003f , 0x0000003f 
+ 00026383  0x00004cd6 set1  0x00000000 , 0x0000003f 
+ 00026384  0x00004cd7 istore  0x00000001 , 0x00000005 
+ 00026385  0x00004cd8 set1  0x00000025 , 0x00000000 
+ 00026386  0x00004cd9 bpatch  0x0000009c , 0x00004033 
+ 00026387  0x00004cda setarg  0x000015ef 
+ 00026388  0x00004cdb istore  0x00000002 , 0x00000005 
+ 00026389  0x00004cdc setarg  0x00001191 
+ 00026390  0x00004cdd istore  0x00000002 , 0x00000005 
+ 00026391  0x00004ce0 fetch  0x00000001 , 0x000009e1 
+ 00026392  0x00004ce1 istore  0x00000001 , 0x00000005 
+ 00026393  0x00004ce2 setarg  0x00000007 
+ 00026394  0x00004ce3 istore  0x00000005 , 0x00000005 
+ 00026395  0x00004ce6 setarg  0x00000001 
+ 00026396  0x00004ce7 istore  0x00000002 , 0x00000005 
+ 00026397  0x00004cea call  0x00006634 
+ 00026398  0x00004ceb istore  0x00000001 , 0x00000005 
+ 00026399  0x00004cec rtn 
+ 00026400  0x00004cf1 branch  0x00006721 
+ 00026401  0x00004cf4 set1  0x00000025 , 0x00000000 
+ 00026402  0x00004cf5 bpatch  0x0000009d , 0x00004033 
+ 00026403  0x00004cf6 fetch  0x00000001 , 0x0000042c 
+ 00026404  0x00004cf7 beq  0x00000073 , 0x0000672a 
+ 00026405  0x00004cf8 beq  0x0000003f , 0x0000672e 
+ 00026406  0x00004cf9 beq  0x000000ef , 0x00006748 
+ 00026407  0x00004cfa beq  0x000000ff , 0x00006740 
+ 00026408  0x00004cfb beq  0x00000053 , 0x0000674f 
+ 00026409  0x00004cfc rtn 
+ 00026410  0x00004cfe fetch  0x00000001 , 0x000042e4 
+ 00026411  0x00004cff set1  0x00000003 , 0x0000003f 
+ 00026412  0x00004d00 store  0x00000001 , 0x000042e4 
+ 00026413  0x00004d01 branch  0x000067a1 
+ 00026414  0x00004d03 fetch  0x00000001 , 0x000042e4 
+ 00026415  0x00004d04 set1  0x00000003 , 0x0000003f 
+ 00026416  0x00004d05 set1  0x00000002 , 0x0000003f 
+ 00026417  0x00004d06 store  0x00000001 , 0x000042e4 
+ 00026418  0x00004d07 fetch  0x00000001 , 0x0000042a 
+ 00026419  0x00004d08 call  0x0000662b 
+ 00026420  0x00004d09 store  0x00000001 , 0x0000042d 
+ 00026421  0x00004d0a call  0x000067c1 
+ 00026422  0x00004d0b fetch  0x00000001 , 0x0000042a 
+ 00026423  0x00004d0c rshift2  0x0000003f , 0x0000003f 
+ 00026424  0x00004d0d store  0x00000001 , 0x000045f5 
+ 00026425  0x00004d0e lshift2  0x0000003f , 0x0000003f 
+ 00026426  0x00004d0f set0  0x00000001 , 0x0000003f 
+ 00026427  0x00004d10 set1  0x00000000 , 0x0000003f 
+ 00026428  0x00004d11 arg  0x000045fd , 0x00000002 
+ 00026429  0x00004d12 storet  0x00000002 , 0x00000426 
+ 00026430  0x00004d13 call  0x0000663a 
+ 00026431  0x00004d14 branch  0x000067a1 
+ 00026432  0x00004d17 fetch  0x00000002 , 0x00000430 
+ 00026433  0x00004d18 copy  0x0000003f , 0x00000006 
+ 00026434  0x00004d19 increase  0x00000001 , 0x0000003f 
+ 00026435  0x00004d1a store  0x00000002 , 0x00000430 
+ 00026436  0x00004d1b ifetch  0x00000001 , 0x00000006 
+ 00026437  0x00004d1c fetcht  0x00000001 , 0x00004600 
+ 00026438  0x00004d1d iadd  0x00000002 , 0x0000003f 
+ 00026439  0x00004d1e store  0x00000001 , 0x00004600 
+ 00026440  0x00004d20 call  0x00006853 
+ 00026441  0x00004d22 call  0x00006677 
+ 00026442  0x00004d23 call  0x00006838 
+ 00026443  0x00004d24 call  0x0000685d 
+ 00026444  0x00004d25 branch  0x000067a1 
+ 00026445  0x00004d28 jam  0x00000009 , 0x000009bd 
+ 00026446  0x00004d29 call  0x00007d86 
+ 00026447  0x00004d2b call  0x00006611 
+ 00026448  0x00004d2c fetch  0x00000001 , 0x0000042a 
+ 00026449  0x00004d2d call  0x0000662b 
+ 00026450  0x00004d2e store  0x00000001 , 0x0000042d 
+ 00026451  0x00004d2f call  0x000067c1 
+ 00026452  0x00004d30 branch  0x000067a1 
+ 00026453  0x00004d36 fetch  0x00000002 , 0x0000028d 
+ 00026454  0x00004d37 copy  0x0000003f , 0x00000006 
+ 00026455  0x00004d38 call  0x000066bf 
+ 00026456  0x00004d39 fetch  0x00000001 , 0x0000042b 
+ 00026457  0x00004d3a beq  0x00000000 , 0x0000675b 
+ 00026458  0x00004d3b branch  0x00006790 
+ 00026459  0x00004d3e set1  0x00000025 , 0x00000000 
+ 00026460  0x00004d3f bpatch  0x0000009e , 0x00004033 
+ 00026461  0x00004d40 fetch  0x00000001 , 0x0000042c 
+ 00026462  0x00004d41 beq  0x0000003f , 0x00006682 
+ 00026463  0x00004d42 beq  0x00000073 , 0x0000668b 
+ 00026464  0x00004d43 beq  0x000000ef , 0x00006762 
+ 00026465  0x00004d44 branch  0x000067a1 
+ 00026466  0x00004d46 fetch  0x00000002 , 0x00000430 
+ 00026467  0x00004d47 copy  0x0000003f , 0x00000006 
+ 00026468  0x00004d48 call  0x000066ca 
+ 00026469  0x00004d49 fetch  0x00000001 , 0x00000432 
+ 00026470  0x00004d4a beq  0x00000041 , 0x0000676b 
+ 00026471  0x00004d4b beq  0x00000040 , 0x0000676b 
+ 00026472  0x00004d4c beq  0x00000071 , 0x00006776 
+ 00026473  0x00004d4d beq  0x00000070 , 0x00006786 
+ 00026474  0x00004d4e branch  0x000067a1 
+ 00026475  0x00004d51 call  0x000066b6 
+ 00026476  0x00004d52 fetch  0x00000001 , 0x000045f5 
+ 00026477  0x00004d53 rshift  0x0000003f , 0x0000003f 
+ 00026478  0x00004d54 fetcht  0x00000001 , 0x000045fc 
+ 00026479  0x00004d55 isub  0x00000002 , 0x0000003e 
+ 00026480  0x00004d56 branch  0x00006772 , 0x00000005 
+ 00026481  0x00004d57 branch  0x00003b31 
+ 00026482  0x00004d59 fetch  0x00000001 , 0x000042e4 
+ 00026483  0x00004d5a set1  0x00000001 , 0x0000003f 
+ 00026484  0x00004d5b store  0x00000001 , 0x000042e4 
+ 00026485  0x00004d5c branch  0x000067a1 
+ 00026486  0x00004d5f call  0x000066b8 
+ 00026487  0x00004d60 fetch  0x00000001 , 0x00004602 
+ 00026488  0x00004d61 fetcht  0x00000001 , 0x000045fc 
+ 00026489  0x00004d62 isub  0x00000002 , 0x0000003e 
+ 00026490  0x00004d63 branch  0x0000677d , 0x00000005 
+ 00026491  0x00004d64 branch  0x00003b31 
+ 00026492  0x00004d65 branch  0x000067a1 
+ 00026493  0x00004d67 fetch  0x00000001 , 0x000042e4 
+ 00026494  0x00004d68 set1  0x00000005 , 0x0000003f 
+ 00026495  0x00004d69 set1  0x00000006 , 0x0000003f 
+ 00026496  0x00004d6a store  0x00000001 , 0x000042e4 
+ 00026497  0x00004d6b fetcht  0x00000001 , 0x000045f5 
+ 00026498  0x00004d6c lshift2  0x00000002 , 0x00000002 
+ 00026499  0x00004d6d or_into  0x00000003 , 0x00000002 
+ 00026500  0x00004d6e call  0x00006820 
+ 00026501  0x00004d6f branch  0x000067a1 
+ 00026502  0x00004d72 call  0x000066b8 
+ 00026503  0x00004d73 fetch  0x00000001 , 0x00004602 
+ 00026504  0x00004d74 fetcht  0x00000001 , 0x000045fc 
+ 00026505  0x00004d75 isub  0x00000002 , 0x0000003e 
+ 00026506  0x00004d76 branch  0x0000678c , 0x00000005 
+ 00026507  0x00004d77 branch  0x00003b31 
+ 00026508  0x00004d79 fetch  0x00000001 , 0x000042e4 
+ 00026509  0x00004d7a set1  0x00000007 , 0x0000003f 
+ 00026510  0x00004d7b store  0x00000001 , 0x000042e4 
+ 00026511  0x00004d7c branch  0x000067a1 
+ 00026512  0x00004d7f fetch  0x00000001 , 0x0000042b 
+ 00026513  0x00004d80 fetcht  0x00000001 , 0x000045fc 
+ 00026514  0x00004d81 isub  0x00000002 , 0x0000003e 
+ 00026515  0x00004d82 branch  0x00006796 , 0x00000005 
+ 00026516  0x00004d83 branch  0x00003b31 
+ 00026517  0x00004d84 branch  0x000067a1 
+ 00026518  0x00004d87 fetch  0x00000001 , 0x0000042c 
+ 00026519  0x00004d88 beq  0x00000073 , 0x0000679b 
+ 00026520  0x00004d89 beq  0x000000ef , 0x00006748 
+ 00026521  0x00004d8a beq  0x000000ff , 0x00006740 
+ 00026522  0x00004d8b beq  0x00000053 , 0x000067a0 
+ 00026523  0x00004d8d fetch  0x00000001 , 0x000042e4 
+ 00026524  0x00004d8e set1  0x00000003 , 0x0000003f 
+ 00026525  0x00004d8f store  0x00000001 , 0x000042e4 
+ 00026526  0x00004d90 branch  0x000067a1 
+ 00026527  0x00004d92 branch  0x0000679f 
+ 00026528  0x00004d94 branch  0x0000674f 
+ 00026529  0x00004d96 rtn 
+ 00026530  0x00004d99 fetch  0x00000001 , 0x000045ff 
+ 00026531  0x00004d9a rtn  0x00000034 
+ 00026532  0x00004d9b beq  0x00000003 , 0x000067a6 
+ 00026533  0x00004d9c branch  0x00003b31 
+ 00026534  0x00004d9f jam  0x00000000 , 0x000045ff 
+ 00026535  0x00004da0 call  0x0000487a 
+ 00026536  0x00004da1 arg  0x00000001 , 0x00000002 
+ 00026537  0x00004da2 fetcht  0x00000001 , 0x000045f5 
+ 00026538  0x00004da3 lshift2  0x00000002 , 0x00000002 
+ 00026539  0x00004da5 or_into  0x00000003 , 0x00000002 
+ 00026540  0x00004da6 arg  0x000000aa , 0x00000011 
+ 00026541  0x00004da7 call  0x0000680a 
+ 00026542  0x00004da8 call  0x00004889 
+ 00026543  0x00004da9 copy  0x00000005 , 0x00000006 
+ 00026544  0x00004daa ifetch  0x00000002 , 0x00000006 
+ 00026545  0x00004dab branch  0x00003b31 , 0x00000034 
+ 00026546  0x00004dac rtn 
+ 00026547  0x00004daf call  0x00004889 
+ 00026548  0x00004db0 setarg  0x00000004 
+ 00026549  0x00004db1 istore  0x00000002 , 0x00000005 
+ 00026550  0x00004db2 fetch  0x00000002 , 0x000042da 
+ 00026551  0x00004db3 istore  0x00000002 , 0x00000005 
+ 00026552  0x00004db4 fetch  0x00000001 , 0x0000042a 
+ 00026553  0x00004db5 istore  0x00000001 , 0x00000005 
+ 00026554  0x00004db6 set1  0x00000025 , 0x00000000 
+ 00026555  0x00004db7 bpatch  0x0000009f , 0x00004033 
+ 00026556  0x00004db8 setarg  0x0000013f 
+ 00026557  0x00004db9 istore  0x00000002 , 0x00000005 
+ 00026558  0x00004dba fetch  0x00000001 , 0x0000042d 
+ 00026559  0x00004dbb istore  0x00000001 , 0x00000005 
+ 00026560  0x00004dbc rtn 
+ 00026561  0x00004dbe call  0x0000487a 
+ 00026562  0x00004dbf call  0x00004889 
+ 00026563  0x00004dc0 setarg  0x00000004 
+ 00026564  0x00004dc1 istore  0x00000002 , 0x00000005 
+ 00026565  0x00004dc2 fetch  0x00000002 , 0x000042da 
+ 00026566  0x00004dc3 istore  0x00000002 , 0x00000005 
+ 00026567  0x00004dc4 fetch  0x00000001 , 0x0000042a 
+ 00026568  0x00004dc5 istore  0x00000001 , 0x00000005 
+ 00026569  0x00004dc6 set1  0x00000025 , 0x00000000 
+ 00026570  0x00004dc7 bpatch  0x000000a0 , 0x00004034 
+ 00026571  0x00004dc8 setarg  0x00000173 
+ 00026572  0x00004dc9 istore  0x00000002 , 0x00000005 
+ 00026573  0x00004dca fetch  0x00000001 , 0x0000042d 
+ 00026574  0x00004dcb istore  0x00000001 , 0x00000005 
+ 00026575  0x00004dcc rtn 
+ 00026576  0x00004dce call  0x00004889 
+ 00026577  0x00004dcf setarg  0x0000000e 
+ 00026578  0x00004dd0 istore  0x00000002 , 0x00000005 
+ 00026579  0x00004dd1 fetch  0x00000002 , 0x000042da 
+ 00026580  0x00004dd2 istore  0x00000002 , 0x00000005 
+ 00026581  0x00004dd3 fetch  0x00000001 , 0x000045fb 
+ 00026582  0x00004dd4 lshift  0x0000003f , 0x0000003f 
+ 00026583  0x00004dd5 set1  0x00000000 , 0x0000003f 
+ 00026584  0x00004dd6 istore  0x00000001 , 0x00000005 
+ 00026585  0x00004dd7 set1  0x00000025 , 0x00000000 
+ 00026586  0x00004dd8 bpatch  0x000000a1 , 0x00004034 
+ 00026587  0x00004dd9 setarg  0x000015ef 
+ 00026588  0x00004dda istore  0x00000002 , 0x00000005 
+ 00026589  0x00004ddb setarg  0x00001183 
+ 00026590  0x00004ddc istore  0x00000002 , 0x00000005 
+ 00026591  0x00004ddd copy  0x00000002 , 0x0000003f 
+ 00026592  0x00004dde istore  0x00000001 , 0x00000005 
+ 00026593  0x00004ddf setarg  0x000000f0 
+ 00026594  0x00004de0 istore  0x00000003 , 0x00000005 
+ 00026595  0x00004de1 setarg  0x0000007f 
+ 00026596  0x00004de2 istore  0x00000002 , 0x00000005 
+ 00026597  0x00004de3 setarg  0x00000000 
+ 00026598  0x00004de4 istore  0x00000001 , 0x00000005 
+ 00026599  0x00004de5 setarg  0x00000001 
+ 00026600  0x00004de6 istore  0x00000001 , 0x00000005 
+ 00026601  0x00004de7 call  0x00006634 
+ 00026602  0x00004de8 istore  0x00000001 , 0x00000005 
+ 00026603  0x00004de9 jam  0x00000010 , 0x00004601 
+ 00026604  0x00004dea rtn 
+ 00026605  0x00004dec call  0x0000487a 
+ 00026606  0x00004ded call  0x00004889 
+ 00026607  0x00004dee setarg  0x0000000e 
+ 00026608  0x00004def istore  0x00000002 , 0x00000005 
+ 00026609  0x00004df0 fetch  0x00000002 , 0x000042da 
+ 00026610  0x00004df1 istore  0x00000002 , 0x00000005 
+ 00026611  0x00004df2 fetch  0x00000001 , 0x000045fb 
+ 00026612  0x00004df3 lshift  0x0000003f , 0x0000003f 
+ 00026613  0x00004df4 set1  0x00000000 , 0x0000003f 
+ 00026614  0x00004df5 istore  0x00000001 , 0x00000005 
+ 00026615  0x00004df6 set1  0x00000025 , 0x00000000 
+ 00026616  0x00004df7 bpatch  0x000000a2 , 0x00004034 
+ 00026617  0x00004df8 setarg  0x000015ef 
+ 00026618  0x00004df9 istore  0x00000002 , 0x00000005 
+ 00026619  0x00004dfa setarg  0x00001181 
+ 00026620  0x00004dfb istore  0x00000002 , 0x00000005 
+ 00026621  0x00004dfc fetch  0x00000001 , 0x000045f5 
+ 00026622  0x00004dfd istore  0x00000001 , 0x00000005 
+ 00026623  0x00004dfe setarg  0x000000e0 
+ 00026624  0x00004dff istore  0x00000003 , 0x00000005 
+ 00026625  0x00004e00 fetch  0x00000002 , 0x00004604 
+ 00026626  0x00004e01 istore  0x00000002 , 0x00000005 
+ 00026627  0x00004e02 setarg  0x00000000 
+ 00026628  0x00004e03 istore  0x00000001 , 0x00000005 
+ 00026629  0x00004e04 fetch  0x00000001 , 0x00004606 
+ 00026630  0x00004e05 istore  0x00000001 , 0x00000005 
+ 00026631  0x00004e06 call  0x00006634 
+ 00026632  0x00004e07 istore  0x00000001 , 0x00000005 
+ 00026633  0x00004e08 rtn 
+ 00026634  0x00004e0a call  0x00004889 
+ 00026635  0x00004e0b setarg  0x00000008 
+ 00026636  0x00004e0c istore  0x00000002 , 0x00000005 
+ 00026637  0x00004e0d fetch  0x00000002 , 0x000042da 
+ 00026638  0x00004e0e istore  0x00000002 , 0x00000005 
+ 00026639  0x00004e0f fetch  0x00000001 , 0x000045fb 
+ 00026640  0x00004e10 lshift  0x0000003f , 0x0000003f 
+ 00026641  0x00004e11 set1  0x00000000 , 0x0000003f 
+ 00026642  0x00004e12 istore  0x00000001 , 0x00000005 
+ 00026643  0x00004e13 set1  0x00000025 , 0x00000000 
+ 00026644  0x00004e14 bpatch  0x000000a3 , 0x00004034 
+ 00026645  0x00004e15 setarg  0x000009ef 
+ 00026646  0x00004e16 istore  0x00000002 , 0x00000005 
+ 00026647  0x00004e17 setarg  0x000005e3 
+ 00026648  0x00004e18 istore  0x00000002 , 0x00000005 
+ 00026649  0x00004e19 copy  0x00000002 , 0x0000003f 
+ 00026650  0x00004e1a istore  0x00000001 , 0x00000005 
+ 00026651  0x00004e1b setarg  0x0000008d 
+ 00026652  0x00004e1c istore  0x00000001 , 0x00000005 
+ 00026653  0x00004e1d call  0x00006634 
+ 00026654  0x00004e1e istore  0x00000001 , 0x00000005 
+ 00026655  0x00004e1f rtn 
+ 00026656  0x00004e22 call  0x0000487a 
+ 00026657  0x00004e23 call  0x00004889 
+ 00026658  0x00004e24 setarg  0x00000008 
+ 00026659  0x00004e25 istore  0x00000002 , 0x00000005 
+ 00026660  0x00004e26 fetch  0x00000002 , 0x000042da 
+ 00026661  0x00004e27 istore  0x00000002 , 0x00000005 
+ 00026662  0x00004e28 copy  0x00000002 , 0x0000000b 
+ 00026663  0x00004e29 fetch  0x00000001 , 0x000045fb 
+ 00026664  0x00004e2a lshift  0x0000003f , 0x0000003f 
+ 00026665  0x00004e2b set1  0x00000000 , 0x0000003f 
+ 00026666  0x00004e2c istore  0x00000001 , 0x00000005 
+ 00026667  0x00004e2d set1  0x00000025 , 0x00000000 
+ 00026668  0x00004e2e bpatch  0x000000a4 , 0x00004034 
+ 00026669  0x00004e2f setarg  0x000009ef 
+ 00026670  0x00004e30 istore  0x00000002 , 0x00000005 
+ 00026671  0x00004e31 setarg  0x000005e1 
+ 00026672  0x00004e32 istore  0x00000002 , 0x00000005 
+ 00026673  0x00004e33 copy  0x0000000b , 0x0000003f 
+ 00026674  0x00004e34 istore  0x00000001 , 0x00000005 
+ 00026675  0x00004e35 setarg  0x0000008d 
+ 00026676  0x00004e36 istore  0x00000001 , 0x00000005 
+ 00026677  0x00004e37 call  0x00006634 
+ 00026678  0x00004e38 istore  0x00000001 , 0x00000005 
+ 00026679  0x00004e39 rtn 
+ 00026680  0x00004e3c set1  0x00000025 , 0x00000000 
+ 00026681  0x00004e3d bpatch  0x000000a5 , 0x00004034 
+ 00026682  0x00004e3e fetch  0x00000001 , 0x00004601 
+ 00026683  0x00004e3f rtn  0x00000034 
+ 00026684  0x00004e40 hfetch  0x00000002 , 0x00008112 
+ 00026685  0x00004e41 nrtn  0x00000034 
+ 00026686  0x00004e42 copy  0x00000011 , 0x0000003f 
+ 00026687  0x00004e43 store  0x00000001 , 0x000009bf 
+ 00026688  0x00004e44 storet  0x00000001 , 0x000009be 
+ 00026689  0x00004e45 call  0x0000480e 
+ 00026690  0x00004e46 nrtn  0x00000034 
+ 00026691  0x00004e47 call  0x0000487a 
+ 00026692  0x00004e48 call  0x00004889 
+ 00026693  0x00004e49 setarg  0x00000005 
+ 00026694  0x00004e4a istore  0x00000002 , 0x00000005 
+ 00026695  0x00004e4b fetch  0x00000002 , 0x000042da 
+ 00026696  0x00004e4c istore  0x00000002 , 0x00000005 
+ 00026697  0x00004e4d fetch  0x00000001 , 0x0000043c 
+ 00026698  0x00004e4e istore  0x00000001 , 0x00000005 
+ 00026699  0x00004e4f setarg  0x000001ff 
+ 00026700  0x00004e50 istore  0x00000002 , 0x00000005 
+ 00026701  0x00004e51 fetch  0x00000001 , 0x00004601 
+ 00026702  0x00004e52 istore  0x00000001 , 0x00000005 
+ 00026703  0x00004e53 fetch  0x00000001 , 0x000045fe 
+ 00026704  0x00004e54 istore  0x00000001 , 0x00000005 
+ 00026705  0x00004e55 jam  0x00000000 , 0x00004601 
+ 00026706  0x00004e56 rtn 
+ 00026707  0x00004e59 set1  0x00000025 , 0x00000000 
+ 00026708  0x00004e5a bpatch  0x000000a6 , 0x00004034 
+ 00026709  0x00004e5b fetch  0x00000001 , 0x00004603 
+ 00026710  0x00004e5c rtneq  0x00000001 
+ 00026711  0x00004e5d fetch  0x00000002 , 0x0000042e 
+ 00026712  0x00004e5e rtn  0x00000034 
+ 00026713  0x00004e5f fetch  0x00000001 , 0x00004601 
+ 00026714  0x00004e60 increase  0x00000001 , 0x0000003f 
+ 00026715  0x00004e61 store  0x00000001 , 0x00004601 
+ 00026716  0x00004e62 rtn 
+ 00026717  0x00004e65 fetch  0x00000002 , 0x00004607 
+ 00026718  0x00004e66 branch  0x00007f69 
+ 00026719  0x00004e69 set1  0x00000025 , 0x00000000 
+ 00026720  0x00004e6a bpatch  0x000000a7 , 0x00004034 
+ 00026721  0x00004e6c fetch  0x00000001 , 0x00004600 
+ 00026722  0x00004e6d rtn  0x00000034 
+ 00026723  0x00004e6e increase  0xffffffff , 0x0000003f 
+ 00026724  0x00004e6f store  0x00000001 , 0x00004600 
+ 00026725  0x00004e70 fetch  0x00000002 , 0x000045f6 
+ 00026726  0x00004e71 fetcht  0x00000002 , 0x0000472c 
+ 00026727  0x00004e72 isub  0x00000002 , 0x0000003e 
+ 00026728  0x00004e73 branch  0x0000686a , 0x00000002 
+ 00026729  0x00004e74 store  0x00000002 , 0x0000472c 
+ 00026730  0x00004e76 fetch  0x00000001 , 0x00004601 
+ 00026731  0x00004e77 branch  0x00006872 , 0x00000034 
+ 00026732  0x00004e78 jam  0x00000001 , 0x0000043f 
+ 00026733  0x00004e79 fetch  0x00000001 , 0x000045fe 
+ 00026734  0x00004e7a store  0x00000001 , 0x0000043e 
+ 00026735  0x00004e7b setarg  0x000000ff 
+ 00026736  0x00004e7c store  0x00000001 , 0x0000043d 
+ 00026737  0x00004e7d branch  0x00006877 
+ 00026738  0x00004e7f jam  0x00000000 , 0x0000043f 
+ 00026739  0x00004e80 fetch  0x00000001 , 0x000045fd 
+ 00026740  0x00004e81 store  0x00000001 , 0x0000043e 
+ 00026741  0x00004e82 setarg  0x000000ef 
+ 00026742  0x00004e83 store  0x00000001 , 0x0000043d 
+ 00026743  0x00004e85 set1  0x00000025 , 0x00000000 
+ 00026744  0x00004e86 bpatch  0x000000a8 , 0x00004035 
+ 00026745  0x00004e87 fetch  0x00000002 , 0x0000472c 
+ 00026746  0x00004e88 sub  0x0000003f , 0x0000007f , 0x0000003e 
+ 00026747  0x00004e89 branch  0x0000687f , 0x00000002 
+ 00026748  0x00004e8a fetch  0x00000001 , 0x0000043f 
+ 00026749  0x00004e8b increase  0x00000001 , 0x0000003f 
+ 00026750  0x00004e8c store  0x00000001 , 0x0000043f 
+ 00026751  0x00004e8e call  0x00006677 
+ 00026752  0x00004e8f fetch  0x00000002 , 0x0000472c 
+ 00026753  0x00004e90 increase  0x00000008 , 0x0000003f 
+ 00026754  0x00004e91 fetcht  0x00000001 , 0x0000043f 
+ 00026755  0x00004e92 iadd  0x00000002 , 0x00000011 
+ 00026756  0x00004e94 call  0x000047dc 
+ 00026757  0x00004e95 store  0x00000002 , 0x000002a0 
+ 00026758  0x00004e96 increase  0x00000004 , 0x0000003f 
+ 00026759  0x00004e97 store  0x00000002 , 0x000002a2 
+ 00026760  0x00004e98 copy  0x0000003f , 0x00000005 
+ 00026761  0x00004e99 fetch  0x00000001 , 0x0000043c 
+ 00026762  0x00004e9a istore  0x00000001 , 0x00000005 
+ 00026763  0x00004e9b fetch  0x00000001 , 0x0000043d 
+ 00026764  0x00004e9c istore  0x00000001 , 0x00000005 
+ 00026765  0x00004e9d call  0x000068aa 
+ 00026766  0x00004e9e call  0x000068bc 
+ 00026767  0x00004e9f set1  0x00000025 , 0x00000000 
+ 00026768  0x00004ea0 bpatch  0x000000a9 , 0x00004035 
+ 00026769  0x00004ea1 fetch  0x00000002 , 0x00004609 
+ 00026770  0x00004ea2 copy  0x0000003f , 0x00000003 
+ 00026771  0x00004ea3 fetch  0x00000002 , 0x0000472c 
+ 00026772  0x00004ea4 copy  0x0000003f , 0x00000039 
+ 00026773  0x00004ea5 call  0x00006341 
+ 00026774  0x00004ea6 copy  0x00000005 , 0x00000002 
+ 00026775  0x00004ea7 copy  0x00000003 , 0x0000003f 
+ 00026776  0x00004ea8 store  0x00000002 , 0x00004609 
+ 00026777  0x00004ea9 copy  0x00000002 , 0x00000005 
+ 00026778  0x00004eaa fetch  0x00000001 , 0x0000043e 
+ 00026779  0x00004eab istore  0x00000001 , 0x00000005 
+ 00026780  0x00004eac fetch  0x00000002 , 0x000002a0 
+ 00026781  0x00004ead copy  0x0000003f , 0x00000005 
+ 00026782  0x00004eae fetch  0x00000002 , 0x0000472c 
+ 00026783  0x00004eaf fetcht  0x00000001 , 0x0000043f 
+ 00026784  0x00004eb0 iadd  0x00000002 , 0x0000003f 
+ 00026785  0x00004eb1 increase  0x00000004 , 0x0000003f 
+ 00026786  0x00004eb2 istore  0x00000002 , 0x00000005 
+ 00026787  0x00004eb3 fetch  0x00000002 , 0x000042da 
+ 00026788  0x00004eb4 istore  0x00000002 , 0x00000005 
+ 00026789  0x00004eb5 jam  0x00000000 , 0x00004601 
+ 00026790  0x00004eb6 fetch  0x00000002 , 0x0000460b 
+ 00026791  0x00004eb7 beq  0x00000000 , 0x00005b20 
+ 00026792  0x00004eb8 jam  0x00000000 , 0x00000418 
+ 00026793  0x00004eb9 rtn 
+ 00026794  0x00004ebc set1  0x00000025 , 0x00000000 
+ 00026795  0x00004ebd bpatch  0x000000aa , 0x00004035 
+ 00026796  0x00004ebe fetch  0x00000002 , 0x0000472c 
+ 00026797  0x00004ebf sub  0x0000003f , 0x0000007f , 0x0000003e 
+ 00026798  0x00004ec0 nbranch  0x000068b3 , 0x00000002 
+ 00026799  0x00004ec1 lshift  0x0000003f , 0x0000003f 
+ 00026800  0x00004ec2 set1  0x00000000 , 0x0000003f 
+ 00026801  0x00004ec3 istore  0x00000001 , 0x00000005 
+ 00026802  0x00004ec4 rtn 
+ 00026803  0x00004ec6 fetch  0x00000002 , 0x0000472c 
+ 00026804  0x00004ec7 rshift3  0x0000003f , 0x0000003f 
+ 00026805  0x00004ec8 rshift4  0x0000003f , 0x00000002 
+ 00026806  0x00004ec9 and_into  0x0000007f , 0x0000003f 
+ 00026807  0x00004eca lshift  0x0000003f , 0x0000003f 
+ 00026808  0x00004ecb set0  0x00000000 , 0x0000003f 
+ 00026809  0x00004ecc istore  0x00000001 , 0x00000005 
+ 00026810  0x00004ecd istoret  0x00000001 , 0x00000005 
+ 00026811  0x00004ece rtn 
+ 00026812  0x00004ed0 fetch  0x00000001 , 0x00004601 
+ 00026813  0x00004ed1 rtn  0x00000034 
+ 00026814  0x00004ed2 istore  0x00000001 , 0x00000005 
+ 00026815  0x00004ed3 rtn 
+ 00026816  0x00004ed9 set1  0x00000025 , 0x00000000 
+ 00026817  0x00004eda bpatch  0x000000ab , 0x00004035 
+ 00026818  0x00004edb call  0x00007d9e 
+ 00026819  0x00004edc call  0x00003d69 
+ 00026820  0x00004edd call  0x00005926 
+ 00026821  0x00004edf set1  0x00000025 , 0x00000000 
+ 00026822  0x00004ee0 bpatch  0x000000ac , 0x00004035 
+ 00026823  0x00004ee1 call  0x000076f7 
+ 00026824  0x00004ee2 call  0x000076ce 
+ 00026825  0x00004ee3 call  0x000076e0 
+ 00026826  0x00004ee6 call  0x0000480e 
+ 00026827  0x00004ee7 nrtn  0x00000034 
+ 00026828  0x00004ee9 call  0x0000432d 
+ 00026829  0x00004eea call  0x0000480e 
+ 00026830  0x00004eeb nrtn  0x00000034 
+ 00026831  0x00004eec set1  0x00000025 , 0x00000000 
+ 00026832  0x00004eed bpatch  0x000000ad , 0x00004035 
+ 00026833  0x00004eef call  0x00006913 
+ 00026834  0x00004ef0 call  0x000044f2 
+ 00026835  0x00004ef1 call  0x000067a2 
+ 00026836  0x00004ef3 call  0x000068d8 
+ 00026837  0x00004ef4 set1  0x00000025 , 0x00000000 
+ 00026838  0x00004ef5 bpatch  0x000000ae , 0x00004035 
+ 00026839  0x00004ef8 branch  0x00003d65 
+ 00026840  0x00004efb fetch  0x00000001 , 0x000002a8 
+ 00026841  0x00004efc bbit1  0x00000000 , 0x00004619 
+ 00026842  0x00004efd bbit1  0x00000007 , 0x00004623 
+ 00026843  0x00004efe rtn 
+ 00026844  0x00004f01 set1  0x00000025 , 0x00000000 
+ 00026845  0x00004f02 bpatch  0x000000af , 0x00004035 
+ 00026846  0x00004f03 call  0x00004816 
+ 00026847  0x00004f04 rtn  0x00000034 
+ 00026848  0x00004f05 fetch  0x00000001 , 0x0000004b 
+ 00026849  0x00004f06 rtnbit1  0x00000006 
+ 00026850  0x00004f07 call  0x000047f5 
+ 00026851  0x00004f08 store  0x00000002 , 0x0000016e 
+ 00026852  0x00004f09 copy  0x0000003f , 0x00000006 
+ 00026853  0x00004f0a ifetch  0x00000002 , 0x00000006 
+ 00026854  0x00004f0b increase  0x00000004 , 0x0000003f 
+ 00026855  0x00004f0c store  0x00000002 , 0x0000427e 
+ 00026856  0x00004f0d jam  0x00000006 , 0x0000427d 
+ 00026857  0x00004f0e set1  0x00000025 , 0x00000000 
+ 00026858  0x00004f0f bpatch  0x000000b0 , 0x00004036 
+ 00026859  0x00004f10 fetch  0x00000002 , 0x000042d6 
+ 00026860  0x00004f11 branch  0x000068f9 , 0x00000034 
+ 00026861  0x00004f12 fetch  0x00000001 , 0x0000004b 
+ 00026862  0x00004f13 rtnbit0  0x00000007 
+ 00026863  0x00004f14 set0  0x00000007 , 0x0000003f 
+ 00026864  0x00004f15 store  0x00000001 , 0x0000004b 
+ 00026865  0x00004f16 jam  0x00000005 , 0x0000427d 
+ 00026866  0x00004f17 fetcht  0x00000002 , 0x000042d6 
+ 00026867  0x00004f18 fetch  0x00000002 , 0x0000016e 
+ 00026868  0x00004f19 iadd  0x00000002 , 0x0000003f 
+ 00026869  0x00004f1a store  0x00000002 , 0x0000016e 
+ 00026870  0x00004f1b fetch  0x00000002 , 0x0000427e 
+ 00026871  0x00004f1c isub  0x00000002 , 0x0000003f 
+ 00026872  0x00004f1d store  0x00000002 , 0x0000427e 
+ 00026873  0x00004f1f set1  0x00000025 , 0x00000000 
+ 00026874  0x00004f20 bpatch  0x000000b1 , 0x00004036 
+ 00026875  0x00004f21 fetch  0x00000002 , 0x0000427e 
+ 00026876  0x00004f22 branch  0x00003b31 , 0x00000034 
+ 00026877  0x00004f23 arg  0x00000104 , 0x00000002 
+ 00026878  0x00004f24 isub  0x00000002 , 0x0000003f 
+ 00026879  0x00004f25 nbranch  0x00006907 , 0x00000002 
+ 00026880  0x00004f26 set1  0x00000025 , 0x00000000 
+ 00026881  0x00004f27 bpatch  0x000000b2 , 0x00004036 
+ 00026882  0x00004f28 storet  0x00000002 , 0x0000427e 
+ 00026883  0x00004f29 fetch  0x00000002 , 0x000042d6 
+ 00026884  0x00004f2a iadd  0x00000002 , 0x0000003f 
+ 00026885  0x00004f2b store  0x00000002 , 0x000042d6 
+ 00026886  0x00004f2c branch  0x00006909 
+ 00026887  0x00004f2e setarg  0x00000000 
+ 00026888  0x00004f2f store  0x00000002 , 0x000042d6 
+ 00026889  0x00004f31 fetch  0x00000001 , 0x0000004b 
+ 00026890  0x00004f32 set1  0x00000006 , 0x0000003f 
+ 00026891  0x00004f33 store  0x00000001 , 0x0000004b 
+ 00026892  0x00004f34 rtn 
+ 00026893  0x00004f37 fetch  0x00000001 , 0x0000470d 
+ 00026894  0x00004f38 bbit1  0x00000000 , 0x00006911 
+ 00026895  0x00004f39 jam  0x00000001 , 0x000002b0 
+ 00026896  0x00004f3a rtn 
+ 00026897  0x00004f3c jam  0x0000000f , 0x000002b0 
+ 00026898  0x00004f3d rtn 
+ 00026899  0x00004f40 fetch  0x00000001 , 0x0000470a 
+ 00026900  0x00004f41 nbranch  0x00006919 , 0x00000034 
+ 00026901  0x00004f43 fetch  0x00000001 , 0x000002af 
+ 00026902  0x00004f45 rtn  0x00000034 
+ 00026903  0x00004f47 jam  0x00000000 , 0x000002af 
+ 00026904  0x00004f49 rtn 
+ 00026905  0x00004f4d set1  0x00000025 , 0x00000000 
+ 00026906  0x00004f4e bpatch  0x000000b3 , 0x00004036 
+ 00026907  0x00004f4f fetch  0x00000001 , 0x000002b0 
+ 00026908  0x00004f50 rtn  0x00000034 
+ 00026909  0x00004f51 beq  0x00000001 , 0x0000693a 
+ 00026910  0x00004f52 beq  0x00000002 , 0x00006993 
+ 00026911  0x00004f53 beq  0x00000003 , 0x00006940 
+ 00026912  0x00004f54 beq  0x00000004 , 0x00006997 
+ 00026913  0x00004f55 beq  0x0000003b , 0x0000694a 
+ 00026914  0x00004f56 beq  0x0000003c , 0x0000699a 
+ 00026915  0x00004f57 beq  0x0000000d , 0x0000694f 
+ 00026916  0x00004f58 beq  0x0000000e , 0x0000699f 
+ 00026917  0x00004f59 beq  0x0000000f , 0x00006952 
+ 00026918  0x00004f5a beq  0x00000010 , 0x000069a5 
+ 00026919  0x00004f5b beq  0x00000011 , 0x00006958 
+ 00026920  0x00004f5c beq  0x00000012 , 0x000069a9 
+ 00026921  0x00004f5d beq  0x00000013 , 0x0000695e 
+ 00026922  0x00004f5e beq  0x00000014 , 0x000069ad 
+ 00026923  0x00004f5f beq  0x00000015 , 0x00006964 
+ 00026924  0x00004f60 beq  0x00000016 , 0x000069b1 
+ 00026925  0x00004f61 beq  0x00000017 , 0x0000696a 
+ 00026926  0x00004f62 beq  0x00000018 , 0x000069b6 
+ 00026927  0x00004f63 beq  0x00000019 , 0x00006970 
+ 00026928  0x00004f64 beq  0x0000001a , 0x000069ba 
+ 00026929  0x00004f65 beq  0x0000001b , 0x00006976 
+ 00026930  0x00004f66 beq  0x0000001c , 0x000069be 
+ 00026931  0x00004f67 beq  0x0000001d , 0x0000697c 
+ 00026932  0x00004f68 beq  0x0000001e , 0x000069c3 
+ 00026933  0x00004f69 beq  0x0000001f , 0x00006982 
+ 00026934  0x00004f6a beq  0x00000020 , 0x000069c7 
+ 00026935  0x00004f6b beq  0x00000021 , 0x0000698d 
+ 00026936  0x00004f6c beq  0x00000022 , 0x000069cb 
+ 00026937  0x00004f6e rtn 
+ 00026938  0x00004f70 call  0x000069d6 
+ 00026939  0x00004f71 jam  0x00000002 , 0x000002b0 
+ 00026940  0x00004f72 fetch  0x00000001 , 0x000042e0 
+ 00026941  0x00004f73 set1  0x00000000 , 0x0000003f 
+ 00026942  0x00004f74 store  0x00000001 , 0x000042e0 
+ 00026943  0x00004f75 rtn 
+ 00026944  0x00004f77 jam  0x00000004 , 0x000002b0 
+ 00026945  0x00004f78 fetch  0x00000001 , 0x000042e0 
+ 00026946  0x00004f79 rtnbit1  0x00000002 
+ 00026947  0x00004f7a jam  0x00000003 , 0x000002b0 
+ 00026948  0x00004f7b call  0x000069de 
+ 00026949  0x00004f7c jam  0x00000004 , 0x000002b0 
+ 00026950  0x00004f7d fetch  0x00000001 , 0x000042e0 
+ 00026951  0x00004f7e set1  0x00000002 , 0x0000003f 
+ 00026952  0x00004f7f store  0x00000001 , 0x000042e0 
+ 00026953  0x00004f80 rtn 
+ 00026954  0x00004f82 call  0x00004816 
+ 00026955  0x00004f83 nrtn  0x00000034 
+ 00026956  0x00004f84 call  0x000069ef 
+ 00026957  0x00004f85 jam  0x0000003c , 0x000002b0 
+ 00026958  0x00004f86 rtn 
+ 00026959  0x00004f88 call  0x000069e4 
+ 00026960  0x00004f89 jam  0x0000000e , 0x000002b0 
+ 00026961  0x00004f8a rtn 
+ 00026962  0x00004f8c call  0x00006a02 
+ 00026963  0x00004f8d jam  0x00000010 , 0x000002b0 
+ 00026964  0x00004f8e fetch  0x00000001 , 0x000042e2 
+ 00026965  0x00004f8f set1  0x00000000 , 0x0000003f 
+ 00026966  0x00004f90 store  0x00000001 , 0x000042e2 
+ 00026967  0x00004f91 rtn 
+ 00026968  0x00004f93 call  0x00006a0a 
+ 00026969  0x00004f94 jam  0x00000012 , 0x000002b0 
+ 00026970  0x00004f95 fetch  0x00000001 , 0x000042e2 
+ 00026971  0x00004f96 set1  0x00000002 , 0x0000003f 
+ 00026972  0x00004f97 store  0x00000001 , 0x000042e2 
+ 00026973  0x00004f98 rtn 
+ 00026974  0x00004f9a call  0x00006a10 
+ 00026975  0x00004f9b jam  0x00000014 , 0x000002b0 
+ 00026976  0x00004f9c fetch  0x00000001 , 0x000042e3 
+ 00026977  0x00004f9d set1  0x00000000 , 0x0000003f 
+ 00026978  0x00004f9e store  0x00000001 , 0x000042e3 
+ 00026979  0x00004f9f rtn 
+ 00026980  0x00004fa1 call  0x00006a18 
+ 00026981  0x00004fa2 jam  0x00000016 , 0x000002b0 
+ 00026982  0x00004fa3 fetch  0x00000001 , 0x000042e3 
+ 00026983  0x00004fa4 set1  0x00000002 , 0x0000003f 
+ 00026984  0x00004fa5 store  0x00000001 , 0x000042e3 
+ 00026985  0x00004fa6 rtn 
+ 00026986  0x00004fa8 call  0x000069f4 
+ 00026987  0x00004fa9 jam  0x00000018 , 0x000002b0 
+ 00026988  0x00004faa fetch  0x00000001 , 0x000042e1 
+ 00026989  0x00004fab set1  0x00000000 , 0x0000003f 
+ 00026990  0x00004fac store  0x00000001 , 0x000042e1 
+ 00026991  0x00004fad rtn 
+ 00026992  0x00004faf call  0x000069fc 
+ 00026993  0x00004fb0 jam  0x0000001a , 0x000002b0 
+ 00026994  0x00004fb1 fetch  0x00000001 , 0x000042e1 
+ 00026995  0x00004fb2 set1  0x00000002 , 0x0000003f 
+ 00026996  0x00004fb3 store  0x00000001 , 0x000042e1 
+ 00026997  0x00004fb4 rtn 
+ 00026998  0x00004fb6 call  0x00006a1e 
+ 00026999  0x00004fb7 jam  0x0000001c , 0x000002b0 
+ 00027000  0x00004fb8 fetch  0x00000001 , 0x000042e1 
+ 00027001  0x00004fb9 set1  0x00000006 , 0x0000003f 
+ 00027002  0x00004fba store  0x00000001 , 0x000042e1 
+ 00027003  0x00004fbb rtn 
+ 00027004  0x00004fbd call  0x00006a26 
+ 00027005  0x00004fbe fetch  0x00000001 , 0x000042e4 
+ 00027006  0x00004fbf set1  0x00000000 
+ 00027007  0x00004fc0 store  0x00000001 , 0x000042e4 
+ 00027008  0x00004fc1 jam  0x0000001e , 0x000002b0 
+ 00027009  0x00004fc2 rtn 
+ 00027010  0x00004fc4 call  0x00006a2d 
+ 00027011  0x00004fc5 fetch  0x00000001 , 0x000042e4 
+ 00027012  0x00004fc6 set1  0x00000002 
+ 00027013  0x00004fc7 store  0x00000001 , 0x000042e4 
+ 00027014  0x00004fc8 jam  0x00000020 , 0x000002b0 
+ 00027015  0x00004fc9 fetch  0x00000001 , 0x000045fc 
+ 00027016  0x00004fca lshift3  0x0000003f , 0x0000003f 
+ 00027017  0x00004fcb or_into  0x00000003 , 0x0000003f 
+ 00027018  0x00004fcc arg  0x000045fd , 0x00000002 
+ 00027019  0x00004fcd storet  0x00000002 , 0x00000426 
+ 00027020  0x00004fce branch  0x0000663a 
+ 00027021  0x00004fd0 call  0x00006a38 
+ 00027022  0x00004fd1 fetch  0x00000001 , 0x000042e4 
+ 00027023  0x00004fd2 set1  0x00000004 
+ 00027024  0x00004fd3 store  0x00000001 , 0x000042e4 
+ 00027025  0x00004fd4 jam  0x00000022 , 0x000002b0 
+ 00027026  0x00004fd5 rtn 
+ 00027027  0x00004fd8 fetch  0x00000001 , 0x000042e0 
+ 00027028  0x00004fd9 rtnbit0  0x00000001 
+ 00027029  0x00004fda jam  0x00000003 , 0x000002b0 
+ 00027030  0x00004fdb branch  0x00006919 
+ 00027031  0x00004fdd fetch  0x00000001 , 0x000042e0 
+ 00027032  0x00004fde rtnne  0x0000003f 
+ 00027033  0x00004fdf jam  0x0000003b , 0x000002b0 
+ 00027034  0x00004fe1 fetch  0x00000001 , 0x000002ae 
+ 00027035  0x00004fe2 rtnne  0x00000017 
+ 00027036  0x00004fe3 jam  0x00000000 , 0x000002ae 
+ 00027037  0x00004fe4 jam  0x0000000d , 0x000002b0 
+ 00027038  0x00004fe5 branch  0x00006919 
+ 00027039  0x00004fe7 fetch  0x00000001 , 0x000042e0 
+ 00027040  0x00004fe8 nrtn  0x00000034 
+ 00027041  0x00004fe9 fetch  0x00000001 , 0x0000470d 
+ 00027042  0x00004fea bbit1  0x00000000 , 0x000069ce 
+ 00027043  0x00004feb bbit1  0x00000006 , 0x000069d0 
+ 00027044  0x00004fec branch  0x000069d4 
+ 00027045  0x00004fee fetch  0x00000001 , 0x000042e2 
+ 00027046  0x00004fef rtnbit0  0x00000001 
+ 00027047  0x00004ff0 jam  0x00000011 , 0x000002b0 
+ 00027048  0x00004ff1 branch  0x00006919 
+ 00027049  0x00004ff3 fetch  0x00000001 , 0x000042e2 
+ 00027050  0x00004ff4 rtnne  0x0000003f 
+ 00027051  0x00004ff5 jam  0x00000013 , 0x000002b0 
+ 00027052  0x00004ff6 branch  0x00006919 
+ 00027053  0x00004ff8 fetch  0x00000001 , 0x000042e3 
+ 00027054  0x00004ff9 rtnbit0  0x00000001 
+ 00027055  0x00004ffa jam  0x00000015 , 0x000002b0 
+ 00027056  0x00004ffb branch  0x00006919 
+ 00027057  0x00004ffd fetch  0x00000001 , 0x000042e3 
+ 00027058  0x00004ffe rtnne  0x0000003f 
+ 00027059  0x00004fff fetch  0x00000001 , 0x0000470d 
+ 00027060  0x00005000 bbit1  0x00000006 , 0x000069d0 
+ 00027061  0x00005001 branch  0x000069d4 
+ 00027062  0x00005003 fetch  0x00000001 , 0x000042e1 
+ 00027063  0x00005004 rtnbit0  0x00000001 
+ 00027064  0x00005005 jam  0x00000019 , 0x000002b0 
+ 00027065  0x00005006 branch  0x00006919 
+ 00027066  0x00005008 fetch  0x00000001 , 0x000042e1 
+ 00027067  0x00005009 rtnne  0x0000003f 
+ 00027068  0x0000500a jam  0x0000001b , 0x000002b0 
+ 00027069  0x0000500b branch  0x00006919 
+ 00027070  0x0000500d fetch  0x00000001 , 0x000042e1 
+ 00027071  0x0000500e rtnne  0x000000ff 
+ 00027072  0x0000500f fetch  0x00000001 , 0x0000470d 
+ 00027073  0x00005010 bbit1  0x00000006 , 0x000069d2 
+ 00027074  0x00005011 branch  0x000069d4 
+ 00027075  0x00005013 fetch  0x00000001 , 0x000042e4 
+ 00027076  0x00005014 rtnbit0  0x00000001 
+ 00027077  0x00005015 jam  0x0000001f , 0x000002b0 
+ 00027078  0x00005016 branch  0x00006919 
+ 00027079  0x00005018 fetch  0x00000001 , 0x000042e4 
+ 00027080  0x00005019 rtnbit0  0x00000003 
+ 00027081  0x0000501a jam  0x00000021 , 0x000002b0 
+ 00027082  0x0000501b branch  0x00006919 
+ 00027083  0x0000501d fetch  0x00000001 , 0x000042e4 
+ 00027084  0x0000501e rtnne  0x000000ff 
+ 00027085  0x0000501f branch  0x000069d4 
+ 00027086  0x00005022 jam  0x0000000f , 0x000002b0 
+ 00027087  0x00005023 branch  0x00006919 
+ 00027088  0x00005026 jam  0x00000017 , 0x000002b0 
+ 00027089  0x00005027 branch  0x00006919 
+ 00027090  0x00005029 jam  0x0000001d , 0x000002b0 
+ 00027091  0x0000502a branch  0x00006919 
+ 00027092  0x0000502f jam  0x00000000 , 0x000002b0 
+ 00027093  0x00005030 rtn 
+ 00027094  0x00005032 set1  0x00000025 , 0x00000000 
+ 00027095  0x00005033 bpatch  0x000000b4 , 0x00004036 
+ 00027096  0x00005034 call  0x0000485e 
+ 00027097  0x00005035 setarg  0x00000001 
+ 00027098  0x00005036 copy  0x0000003f , 0x00000002 
+ 00027099  0x00005037 setarg  0x00000050 
+ 00027100  0x00005038 copy  0x0000003f , 0x0000000b 
+ 00027101  0x00005039 branch  0x0000463a 
+ 00027102  0x0000503c set1  0x00000025 , 0x00000000 
+ 00027103  0x0000503d bpatch  0x000000b5 , 0x00004036 
+ 00027104  0x0000503e call  0x0000485e 
+ 00027105  0x0000503f fetch  0x00000002 , 0x000042d8 
+ 00027106  0x00005040 copy  0x0000003f , 0x00000002 
+ 00027107  0x00005041 branch  0x0000464a 
+ 00027108  0x00005044 set1  0x00000025 , 0x00000000 
+ 00027109  0x00005045 bpatch  0x000000b6 , 0x00004036 
+ 00027110  0x00005046 call  0x0000485e 
+ 00027111  0x00005047 fetch  0x00000002 , 0x000042d8 
+ 00027112  0x00005048 copy  0x0000003f , 0x00000002 
+ 00027113  0x00005049 arg  0x00000050 , 0x0000000b 
+ 00027114  0x0000504a call  0x00004660 
+ 00027115  0x0000504b fetch  0x00000001 , 0x000042e0 
+ 00027116  0x0000504c set0  0x00000005 , 0x0000003f 
+ 00027117  0x0000504d store  0x00000001 , 0x000042e0 
+ 00027118  0x0000504e rtn 
+ 00027119  0x00005051 set1  0x00000025 , 0x00000000 
+ 00027120  0x00005052 bpatch  0x000000b7 , 0x00004036 
+ 00027121  0x00005053 call  0x0000486c 
+ 00027122  0x00005054 call  0x00006d01 
+ 00027123  0x00005055 branch  0x0000467c 
+ 00027124  0x00005058 set1  0x00000025 , 0x00000000 
+ 00027125  0x00005059 bpatch  0x000000b8 , 0x00004037 
+ 00027126  0x0000505a call  0x0000485e 
+ 00027127  0x0000505b setarg  0x00000003 
+ 00027128  0x0000505c copy  0x0000003f , 0x00000002 
+ 00027129  0x0000505d setarg  0x00000051 
+ 00027130  0x0000505e copy  0x0000003f , 0x0000000b 
+ 00027131  0x0000505f branch  0x0000463a 
+ 00027132  0x00005062 set1  0x00000025 , 0x00000000 
+ 00027133  0x00005063 bpatch  0x000000b9 , 0x00004037 
+ 00027134  0x00005064 call  0x0000485e 
+ 00027135  0x00005065 fetch  0x00000002 , 0x000042da 
+ 00027136  0x00005066 copy  0x0000003f , 0x00000002 
+ 00027137  0x00005067 branch  0x0000464a 
+ 00027138  0x0000506a set1  0x00000025 , 0x00000000 
+ 00027139  0x0000506b bpatch  0x000000ba , 0x00004037 
+ 00027140  0x0000506c call  0x0000485e 
+ 00027141  0x0000506d setarg  0x00000011 
+ 00027142  0x0000506e copy  0x0000003f , 0x00000002 
+ 00027143  0x0000506f setarg  0x00000052 
+ 00027144  0x00005070 copy  0x0000003f , 0x0000000b 
+ 00027145  0x00005071 branch  0x0000463a 
+ 00027146  0x00005074 set1  0x00000025 , 0x00000000 
+ 00027147  0x00005075 bpatch  0x000000bb , 0x00004037 
+ 00027148  0x00005076 call  0x0000485e 
+ 00027149  0x00005077 fetch  0x00000002 , 0x000042dc 
+ 00027150  0x00005078 copy  0x0000003f , 0x00000002 
+ 00027151  0x00005079 branch  0x0000464a 
+ 00027152  0x0000507c set1  0x00000025 , 0x00000000 
+ 00027153  0x0000507d bpatch  0x000000bc , 0x00004037 
+ 00027154  0x0000507e call  0x0000485e 
+ 00027155  0x0000507f setarg  0x00000013 
+ 00027156  0x00005080 copy  0x0000003f , 0x00000002 
+ 00027157  0x00005081 setarg  0x00000053 
+ 00027158  0x00005082 copy  0x0000003f , 0x0000000b 
+ 00027159  0x00005083 branch  0x0000463a 
+ 00027160  0x00005086 set1  0x00000025 , 0x00000000 
+ 00027161  0x00005087 bpatch  0x000000bd , 0x00004037 
+ 00027162  0x00005088 call  0x0000485e 
+ 00027163  0x00005089 fetch  0x00000002 , 0x000042de 
+ 00027164  0x0000508a copy  0x0000003f , 0x00000002 
+ 00027165  0x0000508b branch  0x0000464a 
+ 00027166  0x0000508e set1  0x00000025 , 0x00000000 
+ 00027167  0x0000508f bpatch  0x000000be , 0x00004037 
+ 00027168  0x00005090 call  0x0000487a 
+ 00027169  0x00005092 jam  0x00000003 , 0x0000042a 
+ 00027170  0x00005093 jam  0x0000001c , 0x0000042d 
+ 00027171  0x00005094 call  0x000067b3 
+ 00027172  0x00005095 jam  0x00000001 , 0x000045fb 
+ 00027173  0x00005096 rtn 
+ 00027174  0x00005099 set1  0x00000025 , 0x00000000 
+ 00027175  0x0000509a bpatch  0x000000bf , 0x00004037 
+ 00027176  0x0000509b call  0x0000487a 
+ 00027177  0x0000509c fetcht  0x00000001 , 0x000045fc 
+ 00027178  0x0000509d call  0x0000667e 
+ 00027179  0x0000509e storet  0x00000001 , 0x000045f5 
+ 00027180  0x0000509f branch  0x000067d0 
+ 00027181  0x000050a2 set1  0x00000025 , 0x00000000 
+ 00027182  0x000050a3 bpatch  0x000000c0 , 0x00004038 
+ 00027183  0x000050a4 call  0x0000487a 
+ 00027184  0x000050a5 fetcht  0x00000001 , 0x000045f5 
+ 00027185  0x000050a6 call  0x00006678 
+ 00027186  0x000050a7 call  0x0000661f 
+ 00027187  0x000050a8 store  0x00000001 , 0x0000042d 
+ 00027188  0x000050a9 fetcht  0x00000001 , 0x000045f5 
+ 00027189  0x000050aa call  0x00006678 
+ 00027190  0x000050ab storet  0x00000001 , 0x0000042a 
+ 00027191  0x000050ac branch  0x000067b3 
+ 00027192  0x000050af set1  0x00000025 , 0x00000000 
+ 00027193  0x000050b0 bpatch  0x000000c1 , 0x00004038 
+ 00027194  0x000050b1 call  0x0000487a 
+ 00027195  0x000050b2 fetcht  0x00000001 , 0x000045f5 
+ 00027196  0x000050b3 call  0x00006678 
+ 00027197  0x000050b4 branch  0x0000680a 
+ 00027198  0x000050c2 set1  0x00000025 , 0x00000000 
+ 00027199  0x000050c3 bpatch  0x000000c2 , 0x00004038 
+ 00027200  0x000050c4 fetch  0x00000002 , 0x0000028d 
+ 00027201  0x000050c5 iforce  0x00000006 
+ 00027202  0x000050c6 ifetch  0x00000001 , 0x00000006 
+ 00027203  0x000050c7 copy  0x0000003f , 0x00000012 
+ 00027204  0x000050c8 store  0x00000001 , 0x00000446 
+ 00027205  0x000050c9 ifetch  0x00000002 , 0x00000006 
+ 00027206  0x000050ca store  0x00000002 , 0x00000447 
+ 00027207  0x000050cb ifetch  0x00000001 , 0x00000006 
+ 00027208  0x000050cc lshift8  0x0000003f , 0x0000000b 
+ 00027209  0x000050cd ifetch  0x00000001 , 0x00000006 
+ 00027210  0x000050ce iadd  0x0000000b , 0x0000000b 
+ 00027211  0x000050cf set1  0x00000025 , 0x00000000 
+ 00027212  0x000050d0 bpatch  0x000000c3 , 0x00004038 
+ 00027213  0x000050d1 deposit  0x00000012 
+ 00027214  0x000050d2 beq  0x00000002 , 0x00006a53 
+ 00027215  0x000050d3 beq  0x00000004 , 0x00006a7c 
+ 00027216  0x000050d4 beq  0x00000006 , 0x00006b5d 
+ 00027217  0x000050d5 beq  0x00000007 , 0x00006d18 
+ 00027218  0x000050d6 branch  0x00006d40 
+ 00027219  0x000050e2 call  0x00006d4f 
+ 00027220  0x000050e3 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00027221  0x000050e4 branch  0x00006dbd , 0x00000001 
+ 00027222  0x000050e5 compare  0x000000ff , 0x00000002 , 0x000000ff 
+ 00027223  0x000050e6 branch  0x00006d43 , 0x00000001 
+ 00027224  0x000050e8 ifetch  0x00000002 , 0x00000006 
+ 00027225  0x000050e9 store  0x00000002 , 0x0000044b 
+ 00027226  0x000050ea increase  0xfffffffe , 0x0000000b 
+ 00027227  0x000050ec increase  0xffffffff , 0x0000000b 
+ 00027228  0x000050ed nbranch  0x00006d3d , 0x00000005 
+ 00027229  0x000050ee arg  0x00000440 , 0x0000000b 
+ 00027230  0x000050ef ifetch  0x00000002 , 0x0000000b 
+ 00027231  0x000050f0 rtn  0x00000034 
+ 00027232  0x000050f1 increase  0x00000002 , 0x0000000b 
+ 00027233  0x000050f2 call  0x00006e09 
+ 00027234  0x000050f3 call  0x00004878 
+ 00027235  0x000050f4 force  0x00000003 , 0x0000003f 
+ 00027236  0x000050f5 istore  0x00000001 , 0x00000005 
+ 00027237  0x000050f6 fetch  0x00000002 , 0x00000447 
+ 00027238  0x000050f7 istore  0x00000002 , 0x00000005 
+ 00027239  0x000050f8 lshift2  0x00000007 , 0x0000003f 
+ 00027240  0x000050f9 add  0x0000003f , 0x00000005 , 0x0000003f 
+ 00027241  0x000050fa add  0x0000003f , 0x00000005 , 0x00000013 
+ 00027242  0x000050fb byteswap  0x0000003f , 0x0000003f 
+ 00027243  0x000050fc istore  0x00000002 , 0x00000005 
+ 00027244  0x000050fd deposit  0x00000007 
+ 00027245  0x000050fe byteswap  0x0000003f , 0x0000003f 
+ 00027246  0x000050ff istore  0x00000002 , 0x00000005 
+ 00027247  0x00005100 istore  0x00000002 , 0x00000005 
+ 00027248  0x00005101 arg  0x0000045c , 0x00000006 
+ 00027249  0x00005102 copy  0x00000007 , 0x00000039 
+ 00027250  0x00005103 branch  0x00006a76 , 0x00000005 
+ 00027251  0x00005105 ifetch  0x00000004 , 0x00000006 
+ 00027252  0x00005106 istore  0x00000004 , 0x00000005 
+ 00027253  0x00005107 loop  0x00006a73 
+ 00027254  0x00005109 force  0x00000000 , 0x0000003f 
+ 00027255  0x0000510a istore  0x00000001 , 0x00000005 
+ 00027256  0x0000510b deposit  0x00000013 
+ 00027257  0x0000510c store  0x00000001 , 0x0000029e 
+ 00027258  0x0000510d branch  0x00003b31 , 0x00000034 
+ 00027259  0x0000510e rtn 
+ 00027260  0x0000511a ifetch  0x00000004 , 0x00000006 
+ 00027261  0x0000511b store  0x00000004 , 0x00000455 
+ 00027262  0x0000511c increase  0xfffffffc , 0x0000000b 
+ 00027263  0x0000511d iforce  0x00000002 
+ 00027264  0x0000511e ifetch  0x00000002 , 0x00000006 
+ 00027265  0x0000511f byteswap  0x0000003f , 0x0000003f 
+ 00027266  0x00005120 increase  0xffffffee , 0x0000003f 
+ 00027267  0x00005121 store  0x00000002 , 0x00000449 
+ 00027268  0x00005122 increase  0xfffffffe , 0x0000000b 
+ 00027269  0x00005123 call  0x00006da6 
+ 00027270  0x00005124 branch  0x00006d43 , 0x00000005 
+ 00027271  0x00005125 compare  0x00000005 , 0x00000011 , 0x000000ff 
+ 00027272  0x00005127 branch  0x00006a8c , 0x00000001 
+ 00027273  0x00005129 arg  0x00000428 , 0x00000005 
+ 00027274  0x0000512a force  0x00000000 , 0x00000007 
+ 00027275  0x0000512b branch  0x00006a9c 
+ 00027276  0x0000512d ifetch  0x00000001 , 0x00000006 
+ 00027277  0x0000512e bne  0x0000000a , 0x00006d43 
+ 00027278  0x0000512f ifetch  0x00000002 , 0x00000006 
+ 00027279  0x00005130 nbranch  0x00006a9a , 0x00000034 
+ 00027280  0x00005131 ifetch  0x00000001 , 0x00000006 
+ 00027281  0x00005132 bne  0x000000ff , 0x00006a98 
+ 00027282  0x00005133 ifetch  0x00000001 , 0x00000006 
+ 00027283  0x00005134 bne  0x000000ff , 0x00006a96 
+ 00027284  0x00005135 increase  0xfffffffb , 0x00000006 
+ 00027285  0x00005136 branch  0x00006af2 
+ 00027286  0x00005138 increase  0xfffffffb , 0x00000006 
+ 00027287  0x00005139 branch  0x00006a89 
+ 00027288  0x0000513b increase  0xfffffffc , 0x00000006 
+ 00027289  0x0000513c branch  0x00006a89 
+ 00027290  0x0000513e increase  0xfffffffd , 0x00000006 
+ 00027291  0x0000513f branch  0x00006a89 
+ 00027292  0x00005141 ifetch  0x00000001 , 0x00000006 
+ 00027293  0x00005142 beq  0x00000009 , 0x00006ab1 
+ 00027294  0x00005143 beq  0x0000000a , 0x00006a9f 
+ 00027295  0x00005145 ifetch  0x00000002 , 0x00000006 
+ 00027296  0x00005146 istore  0x00000002 , 0x00000005 
+ 00027297  0x00005147 increase  0x00000001 , 0x00000007 
+ 00027298  0x00005148 byteswap  0x0000003f , 0x00000012 
+ 00027299  0x00005149 ifetch  0x00000002 , 0x00000006 
+ 00027300  0x0000514a byteswap  0x0000003f , 0x0000003f 
+ 00027301  0x0000514c increase  0x00000001 , 0x00000012 
+ 00027302  0x0000514d isub  0x00000012 , 0x0000003e 
+ 00027303  0x0000514e nbranch  0x00006aae , 0x00000002 
+ 00027304  0x0000514f copy  0x0000003f , 0x00000013 
+ 00027305  0x00005150 byteswap  0x00000012 , 0x0000003f 
+ 00027306  0x00005151 istore  0x00000002 , 0x00000005 
+ 00027307  0x00005152 increase  0x00000001 , 0x00000007 
+ 00027308  0x00005153 copy  0x00000013 , 0x0000003f 
+ 00027309  0x00005154 branch  0x00006aa5 
+ 00027310  0x00005156 increase  0xfffffffb , 0x0000000b 
+ 00027311  0x00005157 increase  0xfffffffb , 0x00000011 
+ 00027312  0x00005158 branch  0x00006ab6 
+ 00027313  0x0000515a ifetch  0x00000002 , 0x00000006 
+ 00027314  0x0000515b istore  0x00000002 , 0x00000005 
+ 00027315  0x0000515c increase  0x00000001 , 0x00000007 
+ 00027316  0x0000515d increase  0xfffffffd , 0x0000000b 
+ 00027317  0x0000515e increase  0xfffffffd , 0x00000011 
+ 00027318  0x00005160 nbranch  0x00006d43 , 0x00000002 
+ 00027319  0x00005161 nbranch  0x00006a9c , 0x00000005 
+ 00027320  0x00005162 increase  0xffffffff , 0x0000000b 
+ 00027321  0x00005163 nbranch  0x00006d43 , 0x00000005 
+ 00027322  0x00005165 call  0x00004878 
+ 00027323  0x00005166 increase  0x0000000a , 0x00000005 
+ 00027324  0x00005167 arg  0x00000428 , 0x00000011 
+ 00027325  0x00005169 set1  0x00000025 , 0x00000000 
+ 00027326  0x0000516a bpatch  0x000000c4 , 0x00004038 
+ 00027327  0x0000516b copy  0x00000007 , 0x0000003f 
+ 00027328  0x0000516c branch  0x00006ad2 , 0x00000034 
+ 00027329  0x0000516d ifetch  0x00000002 , 0x00000011 
+ 00027330  0x0000516e branch  0x00006ad2 , 0x00000034 
+ 00027331  0x0000516f iforce  0x00000012 
+ 00027332  0x00005170 fetch  0x00000004 , 0x00000455 
+ 00027333  0x00005171 iforce  0x00000002 
+ 00027334  0x00005172 call  0x00006e52 
+ 00027335  0x00005173 branch  0x00006acf , 0x00000034 
+ 00027336  0x00005174 increase  0xfffffffd , 0x00000006 
+ 00027337  0x00005175 ifetch  0x00000003 , 0x00000006 
+ 00027338  0x00005176 istore  0x00000003 , 0x00000005 
+ 00027339  0x00005177 call  0x00006cea 
+ 00027340  0x00005178 branch  0x00006acf , 0x00000034 
+ 00027341  0x00005179 iforce  0x00000039 
+ 00027342  0x0000517a call  0x00007ecd 
+ 00027343  0x0000517c increase  0x00000002 , 0x00000011 
+ 00027344  0x0000517d increase  0xffffffff , 0x00000007 
+ 00027345  0x0000517e branch  0x00006abd 
+ 00027346  0x00005181 set1  0x00000025 , 0x00000000 
+ 00027347  0x00005182 bpatch  0x000000c5 , 0x00004038 
+ 00027348  0x00005183 force  0x00000000 , 0x0000003f 
+ 00027349  0x00005184 istore  0x00000001 , 0x00000005 
+ 00027350  0x00005185 increase  0xffffffff , 0x00000005 
+ 00027351  0x00005186 fetcht  0x00000002 , 0x0000029c 
+ 00027352  0x00005187 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00027353  0x00005188 isub  0x00000005 , 0x0000003f 
+ 00027354  0x00005189 sub  0x0000003f , 0x00000000 , 0x00000011 
+ 00027355  0x0000518a byteswap  0x00000011 , 0x0000003f 
+ 00027356  0x0000518b add  0x00000002 , 0x00000008 , 0x00000012 
+ 00027357  0x0000518c istore  0x00000002 , 0x00000012 
+ 00027358  0x0000518d increase  0x00000003 , 0x00000011 
+ 00027359  0x0000518e byteswap  0x00000011 , 0x0000003f 
+ 00027360  0x0000518f add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027361  0x00005190 istore  0x00000002 , 0x00000012 
+ 00027362  0x00005191 increase  0x00000003 , 0x00000011 
+ 00027363  0x00005192 byteswap  0x00000011 , 0x0000003f 
+ 00027364  0x00005193 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027365  0x00005194 istore  0x00000002 , 0x00000012 
+ 00027366  0x00005195 increase  0x00000005 , 0x00000011 
+ 00027367  0x00005196 copy  0x00000011 , 0x0000003f 
+ 00027368  0x00005197 store  0x00000002 , 0x0000029e 
+ 00027369  0x00005198 setarg  0x00000036 
+ 00027370  0x00005199 add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027371  0x0000519a istore  0x00000001 , 0x00000012 
+ 00027372  0x0000519b setarg  0x00000005 
+ 00027373  0x0000519c istore  0x00000001 , 0x00000002 
+ 00027374  0x0000519d fetch  0x00000002 , 0x00000447 
+ 00027375  0x0000519e add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027376  0x0000519f istore  0x00000002 , 0x00000012 
+ 00027377  0x000051a0 rtn 
+ 00027378  0x000051a2 ifetch  0x00000001 , 0x00000006 
+ 00027379  0x000051a3 bne  0x0000000a , 0x00006d43 
+ 00027380  0x000051a4 ifetch  0x00000002 , 0x00000006 
+ 00027381  0x000051a5 nbranch  0x00006d43 , 0x00000034 
+ 00027382  0x000051a6 ifetch  0x00000001 , 0x00000006 
+ 00027383  0x000051a7 bne  0x000000ff , 0x00006d43 
+ 00027384  0x000051a8 ifetch  0x00000001 , 0x00000006 
+ 00027385  0x000051a9 bne  0x000000ff , 0x00006d43 
+ 00027386  0x000051aa increase  0xfffffffb , 0x0000000b 
+ 00027387  0x000051ab ifetch  0x00000001 , 0x00000006 
+ 00027388  0x000051ac beq  0x00000000 , 0x00006aff 
+ 00027389  0x000051ad beq  0x00000001 , 0x00006b02 
+ 00027390  0x000051ae beq  0x00000002 , 0x00006b06 
+ 00027391  0x000051b0 store  0x00000002 , 0x00000444 
+ 00027392  0x000051b1 increase  0xffffffff , 0x0000000b 
+ 00027393  0x000051b2 branch  0x00006b0a 
+ 00027394  0x000051b4 ifetch  0x00000001 , 0x00000006 
+ 00027395  0x000051b5 store  0x00000002 , 0x00000444 
+ 00027396  0x000051b6 increase  0xfffffffe , 0x0000000b 
+ 00027397  0x000051b7 branch  0x00006b0a 
+ 00027398  0x000051b9 ifetch  0x00000002 , 0x00000006 
+ 00027399  0x000051ba byteswap  0x0000003f , 0x0000003f 
+ 00027400  0x000051bb store  0x00000002 , 0x00000444 
+ 00027401  0x000051bc increase  0xfffffffd , 0x0000000b 
+ 00027402  0x000051be nbranch  0x00006d3d , 0x00000005 
+ 00027403  0x000051bf set1  0x00000025 , 0x00000000 
+ 00027404  0x000051c0 bpatch  0x000000c6 , 0x00004038 
+ 00027405  0x000051c1 call  0x00006e20 
+ 00027406  0x000051c2 nbranch  0x00006d3a , 0x00000005 
+ 00027407  0x000051c3 copy  0x00000006 , 0x00000011 
+ 00027408  0x000051c4 call  0x00004878 
+ 00027409  0x000051c5 copy  0x00000011 , 0x00000006 
+ 00027410  0x000051c6 increase  0x00000003 , 0x00000005 
+ 00027411  0x000051c7 copy  0x00000006 , 0x0000000b 
+ 00027412  0x000051c8 call  0x00006dea 
+ 00027413  0x000051c9 copy  0x0000003f , 0x00000011 
+ 00027414  0x000051ca fetch  0x00000002 , 0x00000444 
+ 00027415  0x000051cb copy  0x0000003f , 0x00000012 
+ 00027416  0x000051cc copy  0x00000011 , 0x0000003f 
+ 00027417  0x000051cd isub  0x00000012 , 0x00000012 
+ 00027418  0x000051ce fetch  0x00000002 , 0x00000449 
+ 00027419  0x000051cf isub  0x00000012 , 0x0000003e 
+ 00027420  0x000051d0 nbranch  0x00006b38 , 0x00000002 
+ 00027421  0x000051d2 disable  0x00000028 
+ 00027422  0x000051d3 fetch  0x00000002 , 0x00000444 
+ 00027423  0x000051d4 branch  0x00006b2b , 0x00000034 
+ 00027424  0x000051d5 iadd  0x0000000b , 0x00000006 
+ 00027425  0x000051d6 increase  0x00000003 , 0x00000012 
+ 00027426  0x000051d7 copy  0x00000012 , 0x00000039 
+ 00027427  0x000051d8 copy  0x00000039 , 0x0000003f 
+ 00027428  0x000051d9 increase  0x00000003 , 0x0000003f 
+ 00027429  0x000051da byteswap  0x0000003f , 0x0000003f 
+ 00027430  0x000051db istore  0x00000002 , 0x00000005 
+ 00027431  0x000051dc copy  0x00000039 , 0x0000003f 
+ 00027432  0x000051dd byteswap  0x0000003f , 0x0000003f 
+ 00027433  0x000051de istore  0x00000002 , 0x00000005 
+ 00027434  0x000051df branch  0x00006b46 
+ 00027435  0x000051e1 add  0x00000011 , 0x00000006 , 0x00000039 
+ 00027436  0x000051e2 branch  0x00006b2f , 0x00000028 
+ 00027437  0x000051e3 byteswap  0x00000039 , 0x0000003f 
+ 00027438  0x000051e4 branch  0x00006b32 
+ 00027439  0x000051e6 copy  0x00000039 , 0x0000003f 
+ 00027440  0x000051e7 increase  0x00000002 , 0x0000003f 
+ 00027441  0x000051e8 byteswap  0x0000003f , 0x0000003f 
+ 00027442  0x000051ea istore  0x00000002 , 0x00000005 
+ 00027443  0x000051eb increase  0xfffffffd , 0x00000039 
+ 00027444  0x000051ec byteswap  0x00000039 , 0x0000003f 
+ 00027445  0x000051ed istore  0x00000002 , 0x00000005 
+ 00027446  0x000051ee copy  0x0000000b , 0x00000006 
+ 00027447  0x000051ef branch  0x00006b46 
+ 00027448  0x000051f1 enable  0x00000028 
+ 00027449  0x000051f2 fetch  0x00000002 , 0x00000449 
+ 00027450  0x000051f3 copy  0x0000003f , 0x00000011 
+ 00027451  0x000051f4 copy  0x0000003f , 0x00000039 
+ 00027452  0x000051f5 fetch  0x00000002 , 0x00000444 
+ 00027453  0x000051f6 branch  0x00006b2b , 0x00000034 
+ 00027454  0x000051f7 iadd  0x0000000b , 0x00000006 
+ 00027455  0x000051f8 copy  0x00000011 , 0x0000003f 
+ 00027456  0x000051f9 increase  0x00000005 , 0x0000003f 
+ 00027457  0x000051fa byteswap  0x0000003f , 0x0000003f 
+ 00027458  0x000051fb istore  0x00000002 , 0x00000005 
+ 00027459  0x000051fc copy  0x00000011 , 0x0000003f 
+ 00027460  0x000051fd byteswap  0x0000003f , 0x0000003f 
+ 00027461  0x000051fe istore  0x00000002 , 0x00000005 
+ 00027462  0x00005200 ifetch  0x00000001 , 0x00000006 
+ 00027463  0x00005201 istore  0x00000001 , 0x00000005 
+ 00027464  0x00005202 loop  0x00006b46 
+ 00027465  0x00005203 nbranch  0x00006b51 , 0x00000028 
+ 00027466  0x00005204 force  0x00000002 , 0x0000003f 
+ 00027467  0x00005205 istore  0x00000001 , 0x00000005 
+ 00027468  0x00005206 copy  0x00000006 , 0x0000003f 
+ 00027469  0x00005207 isub  0x0000000b , 0x0000003f 
+ 00027470  0x00005208 byteswap  0x0000003f , 0x0000003f 
+ 00027471  0x00005209 istore  0x00000002 , 0x00000005 
+ 00027472  0x0000520a branch  0x00006b53 
+ 00027473  0x0000520c force  0x00000000 , 0x0000003f 
+ 00027474  0x0000520d istore  0x00000001 , 0x00000005 
+ 00027475  0x0000520f fetch  0x00000002 , 0x0000029c 
+ 00027476  0x00005210 isub  0x00000005 , 0x0000003f 
+ 00027477  0x00005211 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027478  0x00005212 store  0x00000002 , 0x0000029e 
+ 00027479  0x00005213 call  0x00004878 
+ 00027480  0x00005214 setarg  0x00000005 
+ 00027481  0x00005215 istore  0x00000001 , 0x00000005 
+ 00027482  0x00005216 fetch  0x00000002 , 0x00000447 
+ 00027483  0x00005217 istore  0x00000002 , 0x00000005 
+ 00027484  0x00005218 rtn 
+ 00027485  0x00005225 call  0x00006d4f 
+ 00027486  0x00005226 compare  0x000000ff , 0x00000002 , 0x000000ff 
+ 00027487  0x00005227 branch  0x00006b88 , 0x00000001 
+ 00027488  0x00005228 ifetch  0x00000002 , 0x00000006 
+ 00027489  0x00005229 byteswap  0x0000003f , 0x0000003f 
+ 00027490  0x0000522a increase  0xffffffee , 0x0000003f 
+ 00027491  0x0000522b store  0x00000002 , 0x00000449 
+ 00027492  0x0000522c increase  0xfffffffe , 0x0000000b 
+ 00027493  0x0000522d call  0x00006da6 
+ 00027494  0x0000522e arg  0x00000428 , 0x00000005 
+ 00027495  0x0000522f force  0x00000000 , 0x00000007 
+ 00027496  0x00005231 ifetch  0x00000003 , 0x00000006 
+ 00027497  0x00005232 bne  0x00000009 , 0x00006b88 
+ 00027498  0x00005234 rshift8  0x0000003f , 0x0000003f 
+ 00027499  0x00005235 istore  0x00000002 , 0x00000005 
+ 00027500  0x00005236 increase  0x00000001 , 0x00000007 
+ 00027501  0x00005237 increase  0xfffffffd , 0x0000000b 
+ 00027502  0x00005238 increase  0xfffffffd , 0x00000011 
+ 00027503  0x00005239 nbranch  0x00006d43 , 0x00000002 
+ 00027504  0x0000523a nbranch  0x00006b68 , 0x00000005 
+ 00027505  0x0000523b increase  0xffffffff , 0x0000000b 
+ 00027506  0x0000523c nbranch  0x00006d43 , 0x00000005 
+ 00027507  0x0000523e call  0x00004878 
+ 00027508  0x0000523f increase  0x0000000d , 0x00000005 
+ 00027509  0x00005240 fetch  0x00000002 , 0x00000440 
+ 00027510  0x00005241 iforce  0x00000013 
+ 00027511  0x00005242 arg  0x00000428 , 0x00000011 
+ 00027512  0x00005244 ifetch  0x00000004 , 0x00000011 
+ 00027513  0x00005245 branch  0x00006bae , 0x00000034 
+ 00027514  0x00005246 ifetch  0x00000002 , 0x00000011 
+ 00027515  0x00005247 iforce  0x00000012 
+ 00027516  0x00005248 call  0x00006e2e 
+ 00027517  0x00005249 branch  0x00006b86 , 0x00000034 
+ 00027518  0x0000524a increase  0xfffffffd , 0x00000006 
+ 00027519  0x0000524b ifetch  0x00000003 , 0x00000006 
+ 00027520  0x0000524c istore  0x00000003 , 0x00000005 
+ 00027521  0x0000524d call  0x00006cea 
+ 00027522  0x0000524e iforce  0x00000039 
+ 00027523  0x00005250 ifetch  0x00000001 , 0x00000006 
+ 00027524  0x00005251 istore  0x00000001 , 0x00000005 
+ 00027525  0x00005252 loop  0x00006b83 
+ 00027526  0x00005254 increase  0x00000002 , 0x00000011 
+ 00027527  0x00005255 branch  0x00006b78 
+ 00027528  0x00005257 set1  0x00000025 , 0x00000000 
+ 00027529  0x00005258 bpatch  0x000000c7 , 0x00004038 
+ 00027530  0x0000525c ifetch  0x00000001 , 0x00000006 
+ 00027531  0x0000525e ifetch  0x00000001 , 0x00000006 
+ 00027532  0x00005260 increase  0xfffffffb , 0x0000000b 
+ 00027533  0x00005261 increase  0xfffffffb , 0x00000011 
+ 00027534  0x00005262 nbranch  0x00006d43 , 0x00000002 
+ 00027535  0x00005263 ifetch  0x00000001 , 0x00000006 
+ 00027536  0x00005264 increase  0xffffffff , 0x0000000b 
+ 00027537  0x00005265 jam  0x00000000 , 0x00000444 
+ 00027538  0x00005266 jam  0x00000000 , 0x00000445 
+ 00027539  0x00005267 nbranch  0x00006b9f , 0x00000034 
+ 00027540  0x00005268 arg  0x00000440 , 0x0000000b 
+ 00027541  0x00005269 ifetch  0x00000002 , 0x0000000b 
+ 00027542  0x0000526b increase  0x00000002 , 0x0000000b 
+ 00027543  0x0000526c call  0x00006e09 
+ 00027544  0x0000526d deposit  0x00000007 
+ 00027545  0x0000526e store  0x00000001 , 0x00000474 
+ 00027546  0x0000526f branch  0x00006dc0 , 0x00000034 
+ 00027547  0x00005270 arg  0x00000000 , 0x00000007 
+ 00027548  0x00005271 call  0x00004878 
+ 00027549  0x00005272 increase  0x0000000a , 0x00000005 
+ 00027550  0x00005273 branch  0x00006c05 
+ 00027551  0x00005276 ifetch  0x00000002 , 0x00000006 
+ 00027552  0x00005277 increase  0xfffffffe , 0x0000000b 
+ 00027553  0x00005278 byteswap  0x0000003f , 0x0000003f 
+ 00027554  0x00005279 store  0x00000002 , 0x00000444 
+ 00027555  0x0000527a arg  0x00000440 , 0x0000000b 
+ 00027556  0x0000527b ifetch  0x00000002 , 0x0000000b 
+ 00027557  0x0000527d increase  0x00000002 , 0x0000000b 
+ 00027558  0x0000527e call  0x00006e09 
+ 00027559  0x0000527f deposit  0x00000007 
+ 00027560  0x00005280 store  0x00000001 , 0x00000474 
+ 00027561  0x00005281 branch  0x00006dc0 , 0x00000034 
+ 00027562  0x00005282 arg  0x00000000 , 0x00000007 
+ 00027563  0x00005283 call  0x00004878 
+ 00027564  0x00005284 increase  0x00000007 , 0x00000005 
+ 00027565  0x00005285 branch  0x00006c14 
+ 00027566  0x00005288 force  0x00000000 , 0x0000003f 
+ 00027567  0x00005289 istore  0x00000001 , 0x00000005 
+ 00027568  0x0000528a increase  0xffffffff , 0x00000005 
+ 00027569  0x0000528b fetcht  0x00000002 , 0x0000029c 
+ 00027570  0x0000528c add  0x00000002 , 0x0000000d , 0x0000003f 
+ 00027571  0x0000528d isub  0x00000005 , 0x0000003f 
+ 00027572  0x0000528e branch  0x00006bd2 , 0x00000005 
+ 00027573  0x0000528f sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027574  0x00005290 add  0x00000002 , 0x0000000c , 0x00000012 
+ 00027575  0x00005291 istore  0x00000001 , 0x00000012 
+ 00027576  0x00005292 increase  0x00000003 , 0x0000003f 
+ 00027577  0x00005293 add  0x00000002 , 0x00000009 , 0x00000012 
+ 00027578  0x00005294 istore  0x00000001 , 0x00000012 
+ 00027579  0x00005295 increase  0x00000003 , 0x0000003f 
+ 00027580  0x00005296 byteswap  0x0000003f , 0x0000003f 
+ 00027581  0x00005297 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027582  0x00005298 istore  0x00000002 , 0x00000012 
+ 00027583  0x00005299 rshift8  0x0000003f , 0x0000003f 
+ 00027584  0x0000529a increase  0x00000003 , 0x0000003f 
+ 00027585  0x0000529b byteswap  0x0000003f , 0x0000003f 
+ 00027586  0x0000529c add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027587  0x0000529d istore  0x00000002 , 0x00000012 
+ 00027588  0x0000529e rshift8  0x0000003f , 0x0000003f 
+ 00027589  0x0000529f increase  0x00000005 , 0x0000003f 
+ 00027590  0x000052a0 store  0x00000001 , 0x0000029e 
+ 00027591  0x000052a2 fetch  0x00000002 , 0x00000447 
+ 00027592  0x000052a3 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027593  0x000052a4 istore  0x00000002 , 0x00000012 
+ 00027594  0x000052a5 setarg  0x00000007 
+ 00027595  0x000052a6 istore  0x00000001 , 0x00000002 
+ 00027596  0x000052ab setarg  0x00000036 
+ 00027597  0x000052ac add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027598  0x000052ad istore  0x00000002 , 0x00000012 
+ 00027599  0x000052ae add  0x00000002 , 0x0000000a , 0x00000012 
+ 00027600  0x000052af istore  0x00000002 , 0x00000012 
+ 00027601  0x000052b0 rtn 
+ 00027602  0x000052b2 jam  0x0000000a , 0x0000029e 
+ 00027603  0x000052b3 call  0x00004878 
+ 00027604  0x000052b5 setarg  0x00000007 
+ 00027605  0x000052b6 istore  0x00000001 , 0x00000005 
+ 00027606  0x000052b7 fetch  0x00000002 , 0x00000447 
+ 00027607  0x000052b8 istore  0x00000002 , 0x00000005 
+ 00027608  0x000052bc setarg  0x00000500 
+ 00027609  0x000052bd istore  0x00000002 , 0x00000005 
+ 00027610  0x000052c0 setarg  0x00000200 
+ 00027611  0x000052c1 istore  0x00000002 , 0x00000005 
+ 00027612  0x000052c5 setarg  0x00000035 
+ 00027613  0x000052c6 istore  0x00000003 , 0x00000005 
+ 00027614  0x000052c7 rtn 
+ 00027615  0x000052ca ifetch  0x00000001 , 0x00000006 
+ 00027616  0x000052cb istore  0x00000001 , 0x00000005 
+ 00027617  0x000052cc increase  0x00000001 , 0x00000012 
+ 00027618  0x000052cd increase  0xffffffff , 0x00000011 
+ 00027619  0x000052ce branch  0x00006be5 , 0x00000005 
+ 00027620  0x000052cf loop  0x00006bdf 
+ 00027621  0x000052d1 copy  0x00000005 , 0x0000000b 
+ 00027622  0x000052d2 copy  0x00000012 , 0x0000003f 
+ 00027623  0x000052d3 store  0x00000002 , 0x00000444 
+ 00027624  0x000052d4 copy  0x00000011 , 0x0000003f 
+ 00027625  0x000052d5 store  0x00000002 , 0x00000449 
+ 00027626  0x000052d6 branch  0x00006c26 , 0x00000034 
+ 00027627  0x000052d7 branch  0x00006c85 , 0x00000028 
+ 00027628  0x000052d8 copy  0x0000000b , 0x00000005 
+ 00027629  0x000052da increase  0x00000001 , 0x00000007 
+ 00027630  0x000052db fetch  0x00000001 , 0x00000474 
+ 00027631  0x000052dc isub  0x00000007 , 0x0000003e 
+ 00027632  0x000052dd nbranch  0x00006c05 , 0x00000005 
+ 00027633  0x000052de branch  0x00006ca4 
+ 00027634  0x000052e1 ifetch  0x00000001 , 0x00000006 
+ 00027635  0x000052e2 istore  0x00000001 , 0x00000005 
+ 00027636  0x000052e3 increase  0x00000001 , 0x00000012 
+ 00027637  0x000052e4 increase  0xffffffff , 0x00000011 
+ 00027638  0x000052e5 branch  0x00006bf8 , 0x00000005 
+ 00027639  0x000052e6 loop  0x00006bf2 
+ 00027640  0x000052e8 copy  0x00000005 , 0x0000000b 
+ 00027641  0x000052e9 copy  0x00000012 , 0x0000003f 
+ 00027642  0x000052ea store  0x00000002 , 0x00000444 
+ 00027643  0x000052eb copy  0x00000011 , 0x0000003f 
+ 00027644  0x000052ec store  0x00000002 , 0x00000449 
+ 00027645  0x000052ed branch  0x00006c61 , 0x00000034 
+ 00027646  0x000052ee branch  0x00006c85 , 0x00000028 
+ 00027647  0x000052ef copy  0x0000000b , 0x00000005 
+ 00027648  0x000052f1 increase  0x00000001 , 0x00000007 
+ 00027649  0x000052f2 fetch  0x00000001 , 0x00000474 
+ 00027650  0x000052f3 isub  0x00000007 , 0x0000003e 
+ 00027651  0x000052f4 nbranch  0x00006c14 , 0x00000005 
+ 00027652  0x000052f5 branch  0x00006ccc 
+ 00027653  0x000052f8 arg  0x0000045c , 0x00000006 
+ 00027654  0x000052f9 lshift2  0x00000007 , 0x0000003f 
+ 00027655  0x000052fa iadd  0x00000006 , 0x00000006 
+ 00027656  0x000052fb ifetch  0x00000004 , 0x00000006 
+ 00027657  0x000052fc iforce  0x00000002 
+ 00027658  0x000052fd call  0x00006e20 
+ 00027659  0x000052fe copy  0x00000006 , 0x0000000b 
+ 00027660  0x000052ff call  0x00006dea 
+ 00027661  0x00005300 add  0x0000003f , 0x00000003 , 0x00000039 
+ 00027662  0x00005301 fetch  0x00000002 , 0x00000449 
+ 00027663  0x00005302 copy  0x0000003f , 0x00000011 
+ 00027664  0x00005303 fetch  0x00000002 , 0x00000444 
+ 00027665  0x00005304 copy  0x0000003f , 0x00000012 
+ 00027666  0x00005305 copy  0x0000000b , 0x00000006 
+ 00027667  0x00005306 branch  0x00006bdf 
+ 00027668  0x00005309 arg  0x0000045c , 0x00000006 
+ 00027669  0x0000530a lshift2  0x00000007 , 0x0000003f 
+ 00027670  0x0000530b iadd  0x00000006 , 0x00000006 
+ 00027671  0x0000530c ifetch  0x00000004 , 0x00000006 
+ 00027672  0x0000530d iforce  0x00000002 
+ 00027673  0x0000530e call  0x00006e20 
+ 00027674  0x0000530f copy  0x00000006 , 0x0000000b 
+ 00027675  0x00005310 call  0x00006dea 
+ 00027676  0x00005311 add  0x0000003f , 0x00000003 , 0x0000003f 
+ 00027677  0x00005312 fetcht  0x00000002 , 0x00000444 
+ 00027678  0x00005313 isub  0x00000002 , 0x00000039 
+ 00027679  0x00005314 fetch  0x00000002 , 0x00000449 
+ 00027680  0x00005315 copy  0x0000003f , 0x00000011 
+ 00027681  0x00005316 fetch  0x00000002 , 0x00000444 
+ 00027682  0x00005317 copy  0x0000003f , 0x00000012 
+ 00027683  0x00005318 copy  0x0000000b , 0x00000006 
+ 00027684  0x00005319 iadd  0x00000006 , 0x00000006 
+ 00027685  0x0000531a branch  0x00006bf2 
+ 00027686  0x0000531d arg  0x00000000 , 0x00000007 
+ 00027687  0x0000531e arg  0x00000000 , 0x00000012 
+ 00027688  0x00005320 arg  0x0000045c , 0x00000006 
+ 00027689  0x00005321 lshift2  0x00000007 , 0x0000003f 
+ 00027690  0x00005322 iadd  0x00000006 , 0x00000006 
+ 00027691  0x00005323 ifetch  0x00000004 , 0x00000006 
+ 00027692  0x00005324 iforce  0x00000002 
+ 00027693  0x00005325 call  0x00006e20 
+ 00027694  0x00005326 call  0x00006dea 
+ 00027695  0x00005327 add  0x0000003f , 0x00000003 , 0x0000003f 
+ 00027696  0x00005328 iadd  0x00000012 , 0x00000012 
+ 00027697  0x00005329 increase  0x00000001 , 0x00000007 
+ 00027698  0x0000532a fetch  0x00000001 , 0x00000474 
+ 00027699  0x0000532b isub  0x00000007 , 0x0000003e 
+ 00027700  0x0000532c nbranch  0x00006c28 , 0x00000005 
+ 00027701  0x0000532e copy  0x0000000b , 0x00000005 
+ 00027702  0x0000532f force  0x00000002 , 0x0000003f 
+ 00027703  0x00005330 istore  0x00000001 , 0x00000005 
+ 00027704  0x00005331 fetch  0x00000002 , 0x00000444 
+ 00027705  0x00005332 byteswap  0x0000003f , 0x0000003f 
+ 00027706  0x00005333 istore  0x00000002 , 0x00000005 
+ 00027707  0x00005334 increase  0xfffffffd , 0x00000005 
+ 00027708  0x00005335 fetcht  0x00000002 , 0x0000029c 
+ 00027709  0x00005336 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00027710  0x00005337 isub  0x00000005 , 0x0000003f 
+ 00027711  0x00005338 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027712  0x00005339 iforce  0x00000011 
+ 00027713  0x0000533b deposit  0x00000012 
+ 00027714  0x0000533c add  0x00000002 , 0x00000009 , 0x00000012 
+ 00027715  0x0000533d istore  0x00000001 , 0x00000012 
+ 00027716  0x0000533e rshift8  0x0000003f , 0x0000003f 
+ 00027717  0x0000533f add  0x00000002 , 0x00000008 , 0x00000012 
+ 00027718  0x00005340 istore  0x00000001 , 0x00000012 
+ 00027719  0x00005341 increase  0x00000003 , 0x00000011 
+ 00027720  0x00005342 deposit  0x00000011 
+ 00027721  0x00005343 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027722  0x00005344 istore  0x00000001 , 0x00000012 
+ 00027723  0x00005345 rshift8  0x0000003f , 0x0000003f 
+ 00027724  0x00005346 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027725  0x00005347 istore  0x00000001 , 0x00000012 
+ 00027726  0x00005348 increase  0x00000005 , 0x00000011 
+ 00027727  0x00005349 deposit  0x00000011 
+ 00027728  0x0000534a add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027729  0x0000534b istore  0x00000001 , 0x00000012 
+ 00027730  0x0000534c rshift8  0x0000003f , 0x0000003f 
+ 00027731  0x0000534d add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027732  0x0000534e istore  0x00000001 , 0x00000012 
+ 00027733  0x0000534f increase  0x00000005 , 0x00000011 
+ 00027734  0x00005350 deposit  0x00000011 
+ 00027735  0x00005351 store  0x00000002 , 0x0000029e 
+ 00027736  0x00005352 setarg  0x00000007 
+ 00027737  0x00005353 istore  0x00000001 , 0x00000002 
+ 00027738  0x00005354 setarg  0x00000036 
+ 00027739  0x00005355 add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027740  0x00005356 istore  0x00000001 , 0x00000012 
+ 00027741  0x00005357 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027742  0x00005358 fetch  0x00000002 , 0x00000447 
+ 00027743  0x00005359 istore  0x00000002 , 0x00000012 
+ 00027744  0x0000535a rtn 
+ 00027745  0x0000535d arg  0x00000000 , 0x00000007 
+ 00027746  0x0000535e arg  0x00000000 , 0x00000012 
+ 00027747  0x00005360 copy  0x0000000b , 0x00000005 
+ 00027748  0x00005361 force  0x00000002 , 0x0000003f 
+ 00027749  0x00005362 istore  0x00000001 , 0x00000005 
+ 00027750  0x00005363 fetch  0x00000002 , 0x00000444 
+ 00027751  0x00005364 byteswap  0x0000003f , 0x0000003f 
+ 00027752  0x00005365 istore  0x00000002 , 0x00000005 
+ 00027753  0x00005366 increase  0xfffffffd , 0x00000005 
+ 00027754  0x00005367 fetcht  0x00000002 , 0x0000029c 
+ 00027755  0x00005368 add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00027756  0x00005369 isub  0x00000005 , 0x0000003f 
+ 00027757  0x0000536a sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027758  0x0000536b iforce  0x00000011 
+ 00027759  0x0000536d deposit  0x00000011 
+ 00027760  0x0000536e add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027761  0x0000536f istore  0x00000001 , 0x00000012 
+ 00027762  0x00005370 rshift8  0x0000003f , 0x0000003f 
+ 00027763  0x00005371 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027764  0x00005372 istore  0x00000001 , 0x00000012 
+ 00027765  0x00005373 increase  0x00000005 , 0x00000011 
+ 00027766  0x00005374 deposit  0x00000011 
+ 00027767  0x00005375 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027768  0x00005376 istore  0x00000001 , 0x00000012 
+ 00027769  0x00005377 rshift8  0x0000003f , 0x0000003f 
+ 00027770  0x00005378 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027771  0x00005379 istore  0x00000001 , 0x00000012 
+ 00027772  0x0000537a increase  0x00000005 , 0x00000011 
+ 00027773  0x0000537b deposit  0x00000011 
+ 00027774  0x0000537c store  0x00000002 , 0x0000029e 
+ 00027775  0x0000537d setarg  0x00000007 
+ 00027776  0x0000537e istore  0x00000001 , 0x00000002 
+ 00027777  0x0000537f add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027778  0x00005380 fetch  0x00000002 , 0x00000447 
+ 00027779  0x00005381 istore  0x00000002 , 0x00000012 
+ 00027780  0x00005382 rtn 
+ 00027781  0x00005385 copy  0x0000000b , 0x00000005 
+ 00027782  0x00005386 force  0x00000000 , 0x0000003f 
+ 00027783  0x00005387 istore  0x00000001 , 0x00000005 
+ 00027784  0x00005388 increase  0xffffffff , 0x00000005 
+ 00027785  0x00005389 fetcht  0x00000002 , 0x0000029c 
+ 00027786  0x0000538a add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00027787  0x0000538b isub  0x00000005 , 0x0000003f 
+ 00027788  0x0000538c sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027789  0x0000538d iforce  0x00000011 
+ 00027790  0x0000538f deposit  0x00000011 
+ 00027791  0x00005390 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027792  0x00005391 istore  0x00000001 , 0x00000012 
+ 00027793  0x00005392 rshift8  0x0000003f , 0x0000003f 
+ 00027794  0x00005393 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027795  0x00005394 istore  0x00000001 , 0x00000012 
+ 00027796  0x00005395 increase  0x00000003 , 0x00000011 
+ 00027797  0x00005396 deposit  0x00000011 
+ 00027798  0x00005397 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027799  0x00005398 istore  0x00000001 , 0x00000012 
+ 00027800  0x00005399 rshift8  0x0000003f , 0x0000003f 
+ 00027801  0x0000539a add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027802  0x0000539b istore  0x00000001 , 0x00000012 
+ 00027803  0x0000539c increase  0x00000005 , 0x00000011 
+ 00027804  0x0000539d deposit  0x00000011 
+ 00027805  0x0000539e store  0x00000002 , 0x0000029e 
+ 00027806  0x000053a0 setarg  0x00000007 
+ 00027807  0x000053a1 istore  0x00000001 , 0x00000002 
+ 00027808  0x000053a3 fetch  0x00000002 , 0x00000447 
+ 00027809  0x000053a4 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027810  0x000053a5 istore  0x00000002 , 0x00000012 
+ 00027811  0x000053a6 rtn 
+ 00027812  0x000053a9 force  0x00000000 , 0x0000003f 
+ 00027813  0x000053aa istore  0x00000001 , 0x00000005 
+ 00027814  0x000053ab increase  0xffffffff , 0x00000005 
+ 00027815  0x000053ac fetcht  0x00000002 , 0x0000029c 
+ 00027816  0x000053ad add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00027817  0x000053ae isub  0x00000005 , 0x0000003f 
+ 00027818  0x000053af sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027819  0x000053b0 iforce  0x00000011 
+ 00027820  0x000053b2 deposit  0x00000011 
+ 00027821  0x000053b3 add  0x00000002 , 0x00000009 , 0x00000012 
+ 00027822  0x000053b4 istore  0x00000001 , 0x00000012 
+ 00027823  0x000053b5 rshift8  0x0000003f , 0x0000003f 
+ 00027824  0x000053b6 add  0x00000002 , 0x00000008 , 0x00000012 
+ 00027825  0x000053b7 istore  0x00000001 , 0x00000012 
+ 00027826  0x000053b9 increase  0x00000003 , 0x00000011 
+ 00027827  0x000053ba deposit  0x00000011 
+ 00027828  0x000053bb add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027829  0x000053bc istore  0x00000001 , 0x00000012 
+ 00027830  0x000053bd rshift8  0x0000003f , 0x0000003f 
+ 00027831  0x000053be add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027832  0x000053bf istore  0x00000001 , 0x00000012 
+ 00027833  0x000053c0 increase  0x00000003 , 0x00000011 
+ 00027834  0x000053c1 deposit  0x00000011 
+ 00027835  0x000053c2 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027836  0x000053c3 istore  0x00000001 , 0x00000012 
+ 00027837  0x000053c4 rshift8  0x0000003f , 0x0000003f 
+ 00027838  0x000053c5 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027839  0x000053c6 istore  0x00000001 , 0x00000012 
+ 00027840  0x000053c7 increase  0x00000005 , 0x00000011 
+ 00027841  0x000053c8 deposit  0x00000011 
+ 00027842  0x000053c9 store  0x00000002 , 0x0000029e 
+ 00027843  0x000053ca setarg  0x00000036 
+ 00027844  0x000053cb add  0x00000002 , 0x00000007 , 0x00000012 
+ 00027845  0x000053cc istore  0x00000001 , 0x00000012 
+ 00027846  0x000053cd setarg  0x00000007 
+ 00027847  0x000053ce istore  0x00000001 , 0x00000002 
+ 00027848  0x000053cf fetch  0x00000002 , 0x00000447 
+ 00027849  0x000053d0 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027850  0x000053d1 istore  0x00000002 , 0x00000012 
+ 00027851  0x000053d2 rtn 
+ 00027852  0x000053d5 force  0x00000000 , 0x0000003f 
+ 00027853  0x000053d6 istore  0x00000001 , 0x00000005 
+ 00027854  0x000053d7 increase  0xffffffff , 0x00000005 
+ 00027855  0x000053d8 fetcht  0x00000002 , 0x0000029c 
+ 00027856  0x000053d9 add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00027857  0x000053da isub  0x00000005 , 0x0000003f 
+ 00027858  0x000053db sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00027859  0x000053dc iforce  0x00000011 
+ 00027860  0x000053df deposit  0x00000011 
+ 00027861  0x000053e0 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00027862  0x000053e1 istore  0x00000001 , 0x00000012 
+ 00027863  0x000053e2 rshift8  0x0000003f , 0x0000003f 
+ 00027864  0x000053e3 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00027865  0x000053e4 istore  0x00000001 , 0x00000012 
+ 00027866  0x000053e5 increase  0x00000003 , 0x00000011 
+ 00027867  0x000053e6 deposit  0x00000011 
+ 00027868  0x000053e7 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00027869  0x000053e8 istore  0x00000001 , 0x00000012 
+ 00027870  0x000053e9 rshift8  0x0000003f , 0x0000003f 
+ 00027871  0x000053ea add  0x00000002 , 0x00000003 , 0x00000012 
+ 00027872  0x000053eb istore  0x00000001 , 0x00000012 
+ 00027873  0x000053ec increase  0x00000005 , 0x00000011 
+ 00027874  0x000053ed deposit  0x00000011 
+ 00027875  0x000053ee store  0x00000002 , 0x0000029e 
+ 00027876  0x000053f2 setarg  0x00000007 
+ 00027877  0x000053f3 istore  0x00000001 , 0x00000002 
+ 00027878  0x000053f4 fetch  0x00000002 , 0x00000447 
+ 00027879  0x000053f5 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00027880  0x000053f6 istore  0x00000002 , 0x00000012 
+ 00027881  0x000053f7 rtn 
+ 00027882  0x000053fa copy  0x00000006 , 0x0000000b 
+ 00027883  0x000053fb ifetch  0x00000001 , 0x00000006 
+ 00027884  0x000053fc and  0x0000003f , 0x00000007 , 0x00000039 
+ 00027885  0x000053fd rshift3  0x0000003f , 0x0000003f 
+ 00027886  0x000053fe beq  0x00000006 , 0x00006cf3 
+ 00027887  0x000053ff beq  0x00000001 , 0x00006de2 
+ 00027888  0x00005400 beq  0x00000004 , 0x00006de7 
+ 00027889  0x00005401 beq  0x00000005 , 0x00006de5 
+ 00027890  0x00005402 branch  0x00006de0 
+ 00027891  0x00005404 call  0x00006cf5 
+ 00027892  0x00005405 branch  0x00006de0 
+ 00027893  0x00005407 deposit  0x00000039 
+ 00027894  0x00005408 beq  0x00000005 , 0x00006cfa 
+ 00027895  0x00005409 beq  0x00000006 , 0x00006cfd 
+ 00027896  0x0000540a force  0x00000003 , 0x00000039 
+ 00027897  0x0000540b branch  0x00006df1 
+ 00027898  0x0000540d ifetch  0x00000001 , 0x00000006 
+ 00027899  0x0000540e increase  0x00000002 , 0x0000003f 
+ 00027900  0x0000540f rtn 
+ 00027901  0x00005411 ifetch  0x00000002 , 0x00000006 
+ 00027902  0x00005412 byteswap  0x0000003f , 0x0000003f 
+ 00027903  0x00005413 increase  0x00000003 , 0x0000003f 
+ 00027904  0x00005414 rtn 
+ 00027905  0x00005417 call  0x00004878 
+ 00027906  0x00005418 copy  0x0000003f , 0x00000005 
+ 00027907  0x00005419 setarg  0x00000006 
+ 00027908  0x0000541a istore  0x00000001 , 0x00000005 
+ 00027909  0x0000541b setarg  0x0000006e 
+ 00027910  0x0000541c istore  0x00000002 , 0x00000005 
+ 00027911  0x0000541d setarg  0x00000f00 
+ 00027912  0x0000541e istore  0x00000002 , 0x00000005 
+ 00027913  0x0000541f setarg  0x001a0535 
+ 00027914  0x00005420 istore  0x00000003 , 0x00000005 
+ 00027915  0x00005421 setarg  0x00000111 
+ 00027916  0x00005422 lshift16  0x0000003f , 0x0000003f 
+ 00027917  0x00005423 istore  0x00000004 , 0x00000005 
+ 00027918  0x00005424 setarg  0x00002600 
+ 00027919  0x00005425 istore  0x00000002 , 0x00000005 
+ 00027920  0x00005426 setarg  0x00000335 
+ 00027921  0x00005427 istore  0x00000002 , 0x00000005 
+ 00027922  0x00005428 setarg  0x00000009 
+ 00027923  0x00005429 istore  0x00000002 , 0x00000005 
+ 00027924  0x0000542a setarg  0x00000004 
+ 00027925  0x0000542b istore  0x00000002 , 0x00000005 
+ 00027926  0x0000542c jam  0x00000014 , 0x0000029e 
+ 00027927  0x0000542d rtn 
+ 00027928  0x00005438 copy  0x00000006 , 0x00000002 
+ 00027929  0x00005439 fetch  0x00000002 , 0x00000447 
+ 00027930  0x0000543a beq  0x0000006e , 0x00006d1c 
+ 00027931  0x0000543d branch  0x00006d25 
+ 00027932  0x00005440 copy  0x00000002 , 0x00000006 
+ 00027933  0x00005441 increase  0xfffffffd , 0x0000000b 
+ 00027934  0x00005442 copy  0x0000000b , 0x0000003f 
+ 00027935  0x00005443 beq  0x00000002 , 0x00006d25 
+ 00027936  0x00005444 call  0x00006d26 
+ 00027937  0x00005445 rtn  0x00000028 
+ 00027938  0x00005446 store  0x00000001 , 0x000045fc 
+ 00027939  0x00005447 jam  0x00000017 , 0x000002ae 
+ 00027940  0x00005448 rtn 
+ 00027941  0x0000544b rtn 
+ 00027942  0x00005452 enable  0x00000028 
+ 00027943  0x00005453 copy  0x0000003f , 0x00000039 
+ 00027944  0x00005454 arg  0x00000400 , 0x00000002 
+ 00027945  0x00005456 ifetch  0x00000002 , 0x00000006 
+ 00027946  0x00005457 isub  0x00000002 , 0x0000003e 
+ 00027947  0x00005458 branch  0x00006d2f , 0x00000005 
+ 00027948  0x00005459 increase  0xffffffff , 0x00000006 
+ 00027949  0x0000545a loop  0x00006d29 
+ 00027950  0x0000545b rtn 
+ 00027951  0x0000545d arg  0x00000300 , 0x00000002 
+ 00027952  0x0000545f ifetch  0x00000002 , 0x00000006 
+ 00027953  0x00005460 isub  0x00000002 , 0x0000003e 
+ 00027954  0x00005461 branch  0x00006d36 , 0x00000005 
+ 00027955  0x00005462 increase  0xffffffff , 0x00000006 
+ 00027956  0x00005463 loop  0x00006d30 
+ 00027957  0x00005464 rtn 
+ 00027958  0x00005466 ifetch  0x00000001 , 0x00000006 
+ 00027959  0x00005467 ifetch  0x00000001 , 0x00000006 
+ 00027960  0x00005468 disable  0x00000028 
+ 00027961  0x00005469 rtn 
+ 00027962  0x0000546c setarg  0x00000200 
+ 00027963  0x0000546d store  0x00000002 , 0x0000044d 
+ 00027964  0x0000546e branch  0x00006d45 
+ 00027965  0x00005470 setarg  0x00000400 
+ 00027966  0x00005471 store  0x00000002 , 0x0000044d 
+ 00027967  0x00005472 branch  0x00006d45 
+ 00027968  0x00005474 setarg  0x00000600 
+ 00027969  0x00005475 store  0x00000002 , 0x0000044d 
+ 00027970  0x00005476 branch  0x00006d45 
+ 00027971  0x00005478 setarg  0x00000300 
+ 00027972  0x00005479 store  0x00000002 , 0x0000044d 
+ 00027973  0x0000547b call  0x00004878 
+ 00027974  0x0000547c istore  0x00000001 , 0x00000005 
+ 00027975  0x0000547d fetch  0x00000002 , 0x00000447 
+ 00027976  0x0000547e istore  0x00000002 , 0x00000005 
+ 00027977  0x0000547f setarg  0x00000200 
+ 00027978  0x00005480 istore  0x00000002 , 0x00000005 
+ 00027979  0x00005481 fetch  0x00000002 , 0x0000044d 
+ 00027980  0x00005482 istore  0x00000002 , 0x00000005 
+ 00027981  0x00005483 jam  0x00000007 , 0x0000029e 
+ 00027982  0x00005484 rtn 
+ 00027983  0x00005487 set1  0x00000025 , 0x00000000 
+ 00027984  0x00005488 bpatch  0x000000c8 , 0x00004039 
+ 00027985  0x00005489 force  0x00000000 , 0x00000002 
+ 00027986  0x0000548a arg  0x00000440 , 0x00000005 
+ 00027987  0x0000548b call  0x00006da6 
+ 00027988  0x0000548c branch  0x00006da4 , 0x00000005 
+ 00027989  0x0000548e ifetch  0x00000001 , 0x00000006 
+ 00027990  0x0000548f increase  0xffffffff , 0x00000011 
+ 00027991  0x00005490 increase  0xffffffff , 0x0000000b 
+ 00027992  0x00005491 compare  0x00000018 , 0x0000003f , 0x000000f8 
+ 00027993  0x00005492 nbranch  0x00006da4 , 0x00000001 
+ 00027994  0x00005493 compare  0x00000004 , 0x0000003f , 0x00000007 
+ 00027995  0x00005494 nbranch  0x00006d72 , 0x00000001 
+ 00027996  0x00005495 force  0x00000001 , 0x00000002 
+ 00027997  0x00005497 ifetch  0x00000001 , 0x00000006 
+ 00027998  0x00005498 increase  0xffffffff , 0x00000011 
+ 00027999  0x00005499 increase  0xffffffff , 0x0000000b 
+ 00028000  0x0000549a bne  0x00000000 , 0x00006d66 
+ 00028001  0x0000549b ifetch  0x00000001 , 0x00000006 
+ 00028002  0x0000549c increase  0xffffffff , 0x00000011 
+ 00028003  0x0000549d increase  0xffffffff , 0x0000000b 
+ 00028004  0x0000549e beq  0x00000000 , 0x00006d77 
+ 00028005  0x0000549f branch  0x00006d69 
+ 00028006  0x000054a1 increase  0x00000001 , 0x00000006 
+ 00028007  0x000054a2 increase  0xffffffff , 0x00000011 
+ 00028008  0x000054a3 increase  0xffffffff , 0x0000000b 
+ 00028009  0x000054a5 increase  0x00000002 , 0x00000006 
+ 00028010  0x000054a6 increase  0xfffffffe , 0x00000011 
+ 00028011  0x000054a7 increase  0xfffffffe , 0x0000000b 
+ 00028012  0x000054a8 compare  0x00000000 , 0x00000002 , 0x000000ff 
+ 00028013  0x000054a9 branch  0x00006d9f , 0x00000001 
+ 00028014  0x000054aa increase  0x0000000c , 0x00000006 
+ 00028015  0x000054ab increase  0xfffffff4 , 0x00000011 
+ 00028016  0x000054ac increase  0xfffffff4 , 0x0000000b 
+ 00028017  0x000054ad branch  0x00006d9f 
+ 00028018  0x000054af compare  0x00000002 , 0x0000003f , 0x00000007 
+ 00028019  0x000054b0 nbranch  0x00006d75 , 0x00000001 
+ 00028020  0x000054b1 branch  0x00006d5d 
+ 00028021  0x000054b3 compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00028022  0x000054b4 nbranch  0x00006da4 , 0x00000001 
+ 00028023  0x000054b6 ifetch  0x00000002 , 0x00000006 
+ 00028024  0x000054b7 increase  0xfffffffe , 0x00000011 
+ 00028025  0x000054b8 increase  0xfffffffe , 0x0000000b 
+ 00028026  0x000054b9 istore  0x00000002 , 0x00000005 
+ 00028027  0x000054bb compare  0x00000000 , 0x00000002 , 0x000000ff 
+ 00028028  0x000054bc branch  0x00006d9f , 0x00000001 
+ 00028029  0x000054bd copy  0x00000006 , 0x00000002 
+ 00028030  0x000054be set1  0x00000025 , 0x00000000 
+ 00028031  0x000054bf bpatch  0x000000c9 , 0x00004039 
+ 00028032  0x000054c0 ifetch  0x00000001 , 0x00000006 
+ 00028033  0x000054c1 bne  0x00000000 , 0x00006d98 
+ 00028034  0x000054c2 ifetch  0x00000001 , 0x00000006 
+ 00028035  0x000054c3 bne  0x00000000 , 0x00006d98 
+ 00028036  0x000054c4 ifetch  0x00000001 , 0x00000006 
+ 00028037  0x000054c5 bne  0x00000010 , 0x00006d98 
+ 00028038  0x000054c6 ifetch  0x00000001 , 0x00000006 
+ 00028039  0x000054c7 bne  0x00000000 , 0x00006d98 
+ 00028040  0x000054c8 ifetch  0x00000001 , 0x00000006 
+ 00028041  0x000054c9 bne  0x00000080 , 0x00006d98 
+ 00028042  0x000054ca ifetch  0x00000001 , 0x00000006 
+ 00028043  0x000054cb bne  0x00000000 , 0x00006d98 
+ 00028044  0x000054cc ifetch  0x00000001 , 0x00000006 
+ 00028045  0x000054cd bne  0x00000000 , 0x00006d98 
+ 00028046  0x000054ce ifetch  0x00000001 , 0x00000006 
+ 00028047  0x000054cf bne  0x00000080 , 0x00006d98 
+ 00028048  0x000054d0 ifetch  0x00000001 , 0x00000006 
+ 00028049  0x000054d1 bne  0x0000005f , 0x00006d98 
+ 00028050  0x000054d2 ifetch  0x00000001 , 0x00000006 
+ 00028051  0x000054d3 bne  0x0000009b , 0x00006d98 
+ 00028052  0x000054d4 ifetch  0x00000001 , 0x00000006 
+ 00028053  0x000054d5 bne  0x00000034 , 0x00006d98 
+ 00028054  0x000054d6 ifetch  0x00000001 , 0x00000006 
+ 00028055  0x000054d7 beq  0x000000fb , 0x00006d9d 
+ 00028056  0x000054d9 copy  0x00000002 , 0x00000006 
+ 00028057  0x000054db increase  0x0000000c , 0x00000006 
+ 00028058  0x000054dc force  0x00000000 , 0x00000007 
+ 00028059  0x000054dd force  0x00000000 , 0x00000002 
+ 00028060  0x000054de branch  0x00006d9d 
+ 00028061  0x000054e0 increase  0xfffffff4 , 0x0000000b 
+ 00028062  0x000054e1 increase  0xfffffff4 , 0x00000011 
+ 00028063  0x000054e3 compare  0x00000000 , 0x00000011 , 0x000000ff 
+ 00028064  0x000054e4 nbranch  0x00006d55 , 0x00000001 
+ 00028065  0x000054e5 force  0x00000000 , 0x0000003f 
+ 00028066  0x000054e6 istore  0x00000002 , 0x00000005 
+ 00028067  0x000054e7 rtn ,
+ 00028068  0x000054e9 arg  0x000000ff , 0x00000002 
+ 00028069  0x000054ea rtn 
+ 00028070  0x000054f5 ifetch  0x00000001 , 0x00000006 
+ 00028071  0x000054f6 increase  0xffffffff , 0x0000000b 
+ 00028072  0x000054f7 compare  0x00000030 , 0x0000003f , 0x000000f8 
+ 00028073  0x000054f8 nbranch  0x00006dbb , 0x00000001 
+ 00028074  0x000054f9 compare  0x00000007 , 0x0000003f , 0x00000007 
+ 00028075  0x000054fa branch  0x00006db4 , 0x00000001 
+ 00028076  0x000054fb compare  0x00000006 , 0x0000003f , 0x00000007 
+ 00028077  0x000054fc branch  0x00006db6 , 0x00000001 
+ 00028078  0x000054fd compare  0x00000005 , 0x0000003f , 0x00000007 
+ 00028079  0x000054fe nbranch  0x00006dbb , 0x00000001 
+ 00028080  0x000054ff ifetch  0x00000001 , 0x00000006 
+ 00028081  0x00005500 copy  0x0000003f , 0x00000011 
+ 00028082  0x00005501 increase  0xffffffff , 0x0000000b 
+ 00028083  0x00005502 branch  0x00006db9 
+ 00028084  0x00005504 increase  0x00000002 , 0x00000006 
+ 00028085  0x00005505 increase  0xfffffffe , 0x0000000b 
+ 00028086  0x00005507 ifetch  0x00000002 , 0x00000006 
+ 00028087  0x00005508 byteswap  0x0000003f , 0x00000011 
+ 00028088  0x00005509 increase  0xfffffffe , 0x0000000b 
+ 00028089  0x0000550b force  0x00000001 , 0x0000003f 
+ 00028090  0x0000550c rtn 
+ 00028091  0x0000550e force  0x00000000 , 0x0000003f 
+ 00028092  0x0000550f rtn 
+ 00028093  0x0000551a setarg  0x00000003 
+ 00028094  0x0000551b store  0x00000001 , 0x00000446 
+ 00028095  0x0000551c branch  0x00006dc2 
+ 00028096  0x0000551e setarg  0x00000007 
+ 00028097  0x0000551f store  0x00000001 , 0x00000446 
+ 00028098  0x00005521 call  0x00004878 
+ 00028099  0x00005522 fetch  0x00000001 , 0x00000446 
+ 00028100  0x00005523 istore  0x00000001 , 0x00000005 
+ 00028101  0x00005524 copy  0x0000003f , 0x00000012 
+ 00028102  0x00005525 fetch  0x00000002 , 0x00000447 
+ 00028103  0x00005526 istore  0x00000002 , 0x00000005 
+ 00028104  0x00005528 setarg  0x00000500 
+ 00028105  0x00005529 istore  0x00000002 , 0x00000005 
+ 00028106  0x0000552a compare  0x00000005 , 0x00000012 , 0x000000ff 
+ 00028107  0x0000552b branch  0x00006dd2 , 0x00000001 
+ 00028108  0x0000552c compare  0x00000007 , 0x00000012 , 0x000000ff 
+ 00028109  0x0000552d branch  0x00006dd2 , 0x00000001 
+ 00028110  0x0000552e setarg  0x00000000 
+ 00028111  0x0000552f istore  0x00000003 , 0x00000005 
+ 00028112  0x00005530 istore  0x00000002 , 0x00000005 
+ 00028113  0x00005531 branch  0x00006dd6 
+ 00028114  0x0000553a setarg  0x00350200 
+ 00028115  0x0000553b istore  0x00000003 , 0x00000005 
+ 00028116  0x00005540 setarg  0x00000000 
+ 00028117  0x00005541 istore  0x00000002 , 0x00000005 
+ 00028118  0x00005543 jam  0x0000000a , 0x0000029e 
+ 00028119  0x00005544 rtn 
+ 00028120  0x00005547 copy  0x00000006 , 0x0000000b 
+ 00028121  0x00005548 ifetch  0x00000001 , 0x00000006 
+ 00028122  0x00005549 and  0x0000003f , 0x00000007 , 0x00000039 
+ 00028123  0x0000554a rshift3  0x0000003f , 0x0000003f 
+ 00028124  0x0000554b beq  0x00000006 , 0x00006de7 
+ 00028125  0x0000554c beq  0x00000001 , 0x00006de2 
+ 00028126  0x0000554d beq  0x00000004 , 0x00006de7 
+ 00028127  0x0000554e beq  0x00000005 , 0x00006de5 
+ 00028128  0x00005550 copy  0x0000000b , 0x00000006 
+ 00028129  0x00005551 rtn 
+ 00028130  0x00005553 call  0x00006e03 
+ 00028131  0x00005554 increase  0x00000001 , 0x0000003f 
+ 00028132  0x00005555 branch  0x00006de0 
+ 00028133  0x00005557 force  0x00000002 , 0x0000003f 
+ 00028134  0x00005558 branch  0x00006de0 
+ 00028135  0x0000555a call  0x00006df9 
+ 00028136  0x0000555b increase  0x00000002 , 0x0000003f 
+ 00028137  0x0000555c branch  0x00006de0 
+ 00028138  0x0000555f ifetch  0x00000001 , 0x00000006 
+ 00028139  0x00005560 and  0x0000003f , 0x00000007 , 0x00000039 
+ 00028140  0x00005561 rshift3  0x0000003f , 0x0000003f 
+ 00028141  0x00005562 beq  0x00000006 , 0x00006df9 
+ 00028142  0x00005563 beq  0x00000001 , 0x00006df1 
+ 00028143  0x00005564 beq  0x00000005 , 0x00006dfe 
+ 00028144  0x00005565 rtn 
+ 00028145  0x00005567 call  0x00006e03 
+ 00028146  0x00005568 iforce  0x00000039 
+ 00028147  0x00005569 force  0x00000000 , 0x00000002 
+ 00028148  0x0000556b lshift8  0x00000002 , 0x00000002 
+ 00028149  0x0000556c ifetch  0x00000001 , 0x00000006 
+ 00028150  0x0000556d ior  0x00000002 , 0x00000002 
+ 00028151  0x0000556e loop  0x00006df4 
+ 00028152  0x0000556f rtn 
+ 00028153  0x00005571 deposit  0x00000039 
+ 00028154  0x00005572 beq  0x00000005 , 0x00006dfe 
+ 00028155  0x00005573 beq  0x00000006 , 0x00006e00 
+ 00028156  0x00005574 force  0x00000003 , 0x00000039 
+ 00028157  0x00005575 branch  0x00006df1 
+ 00028158  0x00005577 ifetch  0x00000001 , 0x00000006 
+ 00028159  0x00005578 rtn 
+ 00028160  0x0000557a ifetch  0x00000002 , 0x00000006 
+ 00028161  0x0000557b byteswap  0x0000003f , 0x0000003f 
+ 00028162  0x0000557c rtn 
+ 00028163  0x00005580 force  0x00000001 , 0x0000003f 
+ 00028164  0x00005581 copy  0x00000039 , 0x0000003e 
+ 00028165  0x00005582 rtn  0x00000005 
+ 00028166  0x00005584 lshift  0x0000003f , 0x0000003f 
+ 00028167  0x00005585 loop  0x00006e06 
+ 00028168  0x00005586 rtn 
+ 00028169  0x0000558c iforce  0x00000013 
+ 00028170  0x0000558d set1  0x00000025 , 0x00000000 
+ 00028171  0x0000558e bpatch  0x000000ca , 0x00004039 
+ 00028172  0x0000558f force  0x00000000 , 0x00000007 
+ 00028173  0x00005590 fetch  0x00000002 , 0x0000460d 
+ 00028174  0x00005591 iforce  0x00000006 
+ 00028175  0x00005592 arg  0x0000045c , 0x00000005 
+ 00028176  0x00005594 disable  0x00000028 
+ 00028177  0x00005595 ifetch  0x00000001 , 0x00000006 
+ 00028178  0x00005596 rtn  0x00000034 
+ 00028179  0x00005597 iforce  0x00000039 
+ 00028180  0x00005599 ifetch  0x00000002 , 0x00000006 
+ 00028181  0x0000559a isub  0x00000013 , 0x0000003e 
+ 00028182  0x0000559b nbranch  0x00006e18 , 0x00000005 
+ 00028183  0x0000559c enable  0x00000028 
+ 00028184  0x0000559e loop  0x00006e14 
+ 00028185  0x0000559f ifetch  0x00000004 , 0x00000006 
+ 00028186  0x000055a0 nbranch  0x00006e1d , 0x00000028 
+ 00028187  0x000055a1 istore  0x00000004 , 0x00000005 
+ 00028188  0x000055a2 increase  0x00000001 , 0x00000007 
+ 00028189  0x000055a4 call  0x00006dea 
+ 00028190  0x000055a5 iadd  0x00000006 , 0x00000006 
+ 00028191  0x000055a6 branch  0x00006e10 
+ 00028192  0x000055aa set1  0x00000025 , 0x00000000 
+ 00028193  0x000055ab bpatch  0x000000cb , 0x00004039 
+ 00028194  0x000055ac fetch  0x00000002 , 0x0000460d 
+ 00028195  0x000055ad iforce  0x00000006 
+ 00028196  0x000055af ifetch  0x00000001 , 0x00000006 
+ 00028197  0x000055b0 rtn  0x00000034 
+ 00028198  0x000055b1 lshift  0x0000003f , 0x0000003f 
+ 00028199  0x000055b2 iadd  0x00000006 , 0x00000006 
+ 00028200  0x000055b3 ifetch  0x00000004 , 0x00000006 
+ 00028201  0x000055b4 isub  0x00000002 , 0x0000003e 
+ 00028202  0x000055b5 rtn  0x00000005 
+ 00028203  0x000055b6 call  0x00006dea 
+ 00028204  0x000055b7 iadd  0x00000006 , 0x00000006 
+ 00028205  0x000055b8 branch  0x00006e24 
+ 00028206  0x000055c0 set1  0x00000025 , 0x00000000 
+ 00028207  0x000055c1 bpatch  0x000000cc , 0x00004039 
+ 00028208  0x000055c2 fetch  0x00000002 , 0x0000460d 
+ 00028209  0x000055c3 iforce  0x00000006 
+ 00028210  0x000055c5 ifetch  0x00000001 , 0x00000006 
+ 00028211  0x000055c6 branch  0x00006e4f , 0x00000034 
+ 00028212  0x000055c7 iforce  0x00000039 
+ 00028213  0x000055c9 ifetch  0x00000002 , 0x00000006 
+ 00028214  0x000055ca isub  0x00000013 , 0x0000003e 
+ 00028215  0x000055cb branch  0x00006e3d , 0x00000005 
+ 00028216  0x000055cc loop  0x00006e35 
+ 00028217  0x000055cd increase  0x00000004 , 0x00000006 
+ 00028218  0x000055ce call  0x00006dea 
+ 00028219  0x000055cf iadd  0x00000006 , 0x00000006 
+ 00028220  0x000055d0 branch  0x00006e32 
+ 00028221  0x000055d2 increase  0xffffffff , 0x00000039 
+ 00028222  0x000055d3 lshift  0x00000039 , 0x0000003f 
+ 00028223  0x000055d4 iadd  0x00000006 , 0x00000006 
+ 00028224  0x000055d5 increase  0x00000004 , 0x00000006 
+ 00028225  0x000055d6 call  0x00006dea 
+ 00028226  0x000055d7 iadd  0x00000006 , 0x00000002 
+ 00028227  0x000055d9 increase  0x00000001 , 0x00000006 
+ 00028228  0x000055da ifetch  0x00000002 , 0x00000006 
+ 00028229  0x000055db isub  0x00000012 , 0x0000000b 
+ 00028230  0x000055dd setflag  0x00000005 , 0x00000000 , 0x0000003f 
+ 00028231  0x000055de copy  0x0000000b , 0x0000000b 
+ 00028232  0x000055df rtn  0x00000005 
+ 00028233  0x000055e0 call  0x00006dd8 
+ 00028234  0x000055e1 iadd  0x00000006 , 0x00000006 
+ 00028235  0x000055e2 deposit  0x00000002 
+ 00028236  0x000055e3 isub  0x00000006 , 0x0000003e 
+ 00028237  0x000055e4 branch  0x00006e4f , 0x00000005 
+ 00028238  0x000055e5 branch  0x00006e43 
+ 00028239  0x000055e7 force  0x00000000 , 0x00000006 
+ 00028240  0x000055e8 force  0x00000000 , 0x0000003f 
+ 00028241  0x000055e9 rtn 
+ 00028242  0x000055f0 set1  0x00000025 , 0x00000000 
+ 00028243  0x000055f1 bpatch  0x000000cd , 0x00004039 
+ 00028244  0x000055f2 fetch  0x00000002 , 0x0000460d 
+ 00028245  0x000055f3 iforce  0x00000006 
+ 00028246  0x000055f5 ifetch  0x00000001 , 0x00000006 
+ 00028247  0x000055f6 branch  0x00006e6c , 0x00000034 
+ 00028248  0x000055f7 lshift  0x0000003f , 0x0000003f 
+ 00028249  0x000055f8 iadd  0x00000006 , 0x00000006 
+ 00028250  0x000055f9 ifetch  0x00000004 , 0x00000006 
+ 00028251  0x000055fa isub  0x00000002 , 0x0000003e 
+ 00028252  0x000055fb branch  0x00006e60 , 0x00000005 
+ 00028253  0x000055fc call  0x00006dea 
+ 00028254  0x000055fd iadd  0x00000006 , 0x00000006 
+ 00028255  0x000055fe branch  0x00006e56 
+ 00028256  0x00005600 call  0x00006dea 
+ 00028257  0x00005601 iadd  0x00000006 , 0x00000002 
+ 00028258  0x00005603 increase  0x00000001 , 0x00000006 
+ 00028259  0x00005604 ifetch  0x00000002 , 0x00000006 
+ 00028260  0x00005605 isub  0x00000012 , 0x0000003e 
+ 00028261  0x00005606 rtn  0x00000005 
+ 00028262  0x00005607 call  0x00006dd8 
+ 00028263  0x00005608 iadd  0x00000006 , 0x00000006 
+ 00028264  0x00005609 deposit  0x00000002 
+ 00028265  0x0000560a isub  0x00000006 , 0x0000003e 
+ 00028266  0x0000560b branch  0x00006e6c , 0x00000005 
+ 00028267  0x0000560c branch  0x00006e62 
+ 00028268  0x0000560e force  0x00000000 , 0x00000006 
+ 00028269  0x0000560f rtn 
+ 00028270  0x00005615 set1  0x00000025 , 0x00000000 
+ 00028271  0x00005616 bpatch  0x000000ce , 0x00004039 
+ 00028272  0x00005617 jam  0x00000050 , 0x00000509 
+ 00028273  0x00005618 arg  0x0000050a , 0x00000005 
+ 00028274  0x00005619 arg  0x000044c3 , 0x00000006 
+ 00028275  0x0000561a call  0x00007e87 
+ 00028276  0x0000561b arg  0x0000465a , 0x00000006 
+ 00028277  0x0000561c call  0x00007e85 
+ 00028278  0x0000561d arg  0x000008e2 , 0x00000006 
+ 00028279  0x0000561e call  0x00007e85 
+ 00028280  0x0000561f call  0x00006f2d 
+ 00028281  0x00005620 arg  0x00000352 , 0x00000006 
+ 00028282  0x00005621 call  0x00006f28 
+ 00028283  0x00005622 call  0x00006ef2 
+ 00028284  0x00005624 arg  0x00000a11 , 0x00000005 
+ 00028285  0x00005625 call  0x00006f24 
+ 00028286  0x00005626 setarg  0x000f4240 
+ 00028287  0x00005627 copy  0x0000003f , 0x00000011 
+ 00028288  0x00005628 fetch  0x00000004 , 0x00000a11 
+ 00028289  0x00005629 idiv  0x00000011 
+ 00028290  0x0000562a call  0x00007f53 
+ 00028291  0x0000562b remainder  0x0000003f 
+ 00028292  0x0000562c store  0x00000004 , 0x000008de 
+ 00028293  0x0000562e rtn 
+ 00028294  0x00005631 jam  0x00000041 , 0x00000509 
+ 00028295  0x00005632 arg  0x0000050a , 0x00000005 
+ 00028296  0x00005633 call  0x00006ed7 
+ 00028297  0x00005634 call  0x00006ed2 
+ 00028298  0x00005635 fetch  0x00000003 , 0x000044dd 
+ 00028299  0x00005636 istore  0x00000003 , 0x00000005 
+ 00028300  0x00005639 call  0x00006e96 
+ 00028301  0x0000563b arg  0x00000352 , 0x00000006 
+ 00028302  0x0000563c call  0x00007e87 
+ 00028303  0x0000563d arg  0x000044c3 , 0x00000006 
+ 00028304  0x0000563e call  0x00007e87 
+ 00028305  0x0000563f call  0x00006f2d 
+ 00028306  0x00005640 arg  0x00000a31 , 0x00000006 
+ 00028307  0x00005641 arg  0x000009e1 , 0x00000005 
+ 00028308  0x00005642 call  0x00007e87 
+ 00028309  0x00005644 branch  0x00006ef2 
+ 00028310  0x00005649 fetch  0x00000004 , 0x0000456d 
+ 00028311  0x0000564a istore  0x00000004 , 0x00000005 
+ 00028312  0x0000564b call  0x00007e98 
+ 00028313  0x0000564c branch  0x00007e95 
+ 00028314  0x0000564f set1  0x00000025 , 0x00000000 
+ 00028315  0x00005650 bpatch  0x000000cf , 0x00004039 
+ 00028316  0x00005651 jam  0x00000041 , 0x00000509 
+ 00028317  0x00005652 arg  0x0000050a , 0x00000005 
+ 00028318  0x00005653 call  0x00006ed2 
+ 00028319  0x00005654 call  0x00006ed7 
+ 00028320  0x00005655 fetch  0x00000003 , 0x000044d6 
+ 00028321  0x00005656 istore  0x00000003 , 0x00000005 
+ 00028322  0x00005659 call  0x00006e96 
+ 00028323  0x0000565a arg  0x000044c3 , 0x00000006 
+ 00028324  0x0000565b call  0x00007e87 
+ 00028325  0x0000565c arg  0x00000352 , 0x00000006 
+ 00028326  0x0000565d call  0x00007e87 
+ 00028327  0x0000565e call  0x00006f2d 
+ 00028328  0x0000565f arg  0x00000a31 , 0x00000006 
+ 00028329  0x00005660 arg  0x000009e1 , 0x00000005 
+ 00028330  0x00005661 call  0x00007e87 
+ 00028331  0x00005663 call  0x00006ef2 
+ 00028332  0x00005664 arg  0x00000a11 , 0x00000005 
+ 00028333  0x00005665 branch  0x00006f24 
+ 00028334  0x00005668 jam  0x00000020 , 0x00000509 
+ 00028335  0x00005669 arg  0x00000922 , 0x00000006 
+ 00028336  0x0000566a arg  0x0000050a , 0x00000005 
+ 00028337  0x0000566b call  0x00007e85 
+ 00028338  0x0000566c call  0x00006f2d 
+ 00028339  0x0000566d arg  0x000008c2 , 0x00000006 
+ 00028340  0x0000566e call  0x00006f28 
+ 00028341  0x0000566f call  0x00006ef2 
+ 00028342  0x00005670 arg  0x000009e1 , 0x00000005 
+ 00028343  0x00005671 call  0x000071c0 
+ 00028344  0x00005672 arg  0x00000001 , 0x00000002 
+ 00028345  0x00005673 call  0x00006ec0 
+ 00028346  0x00005674 arg  0x000044a2 , 0x00000005 
+ 00028347  0x00005675 call  0x00006f24 
+ 00028348  0x00005676 arg  0x00000000 , 0x00000002 
+ 00028349  0x00005677 call  0x00006ec0 
+ 00028350  0x00005678 arg  0x00000a31 , 0x00000005 
+ 00028351  0x0000567a branch  0x000071c0 
+ 00028352  0x0000567e set1  0x00000025 , 0x00000000 
+ 00028353  0x0000567f bpatch  0x000000d0 , 0x0000403a 
+ 00028354  0x00005680 jam  0x00000035 , 0x00000509 
+ 00028355  0x00005681 setarg  0x00000100 
+ 00028356  0x00005682 store  0x00000002 , 0x0000050a 
+ 00028357  0x00005683 call  0x00006ed2 
+ 00028358  0x00005684 call  0x00006ed7 
+ 00028359  0x00005685 arg  0x000044c3 , 0x00000006 
+ 00028360  0x00005686 call  0x00007e87 
+ 00028361  0x00005687 arg  0x00000352 , 0x00000006 
+ 00028362  0x00005688 call  0x00007e87 
+ 00028363  0x0000568a setarg  0x00006c65 
+ 00028364  0x0000568b istore  0x00000002 , 0x00000005 
+ 00028365  0x0000568c setarg  0x00006274 
+ 00028366  0x0000568d istore  0x00000002 , 0x00000005 
+ 00028367  0x0000568e istoret  0x00000001 , 0x00000005 
+ 00028368  0x0000568f call  0x00006f2d 
+ 00028369  0x00005690 branch  0x00006ef2 
+ 00028370  0x00005693 fetch  0x00000006 , 0x0000453e 
+ 00028371  0x00005694 istore  0x00000006 , 0x00000005 
+ 00028372  0x00005695 fetch  0x00000001 , 0x00004532 
+ 00028373  0x00005696 istore  0x00000001 , 0x00000005 
+ 00028374  0x00005697 rtn 
+ 00028375  0x0000569a fetch  0x00000006 , 0x00000372 
+ 00028376  0x0000569b istore  0x00000006 , 0x00000005 
+ 00028377  0x000056a0 fetch  0x00000001 , 0x0000452b 
+ 00028378  0x000056a1 istore  0x00000001 , 0x00000005 
+ 00028379  0x000056a2 rtn 
+ 00028380  0x000056a5 jam  0x00000041 , 0x00000509 
+ 00028381  0x000056a6 fetch  0x00000001 , 0x000046ec 
+ 00028382  0x000056a7 store  0x00000001 , 0x0000050a 
+ 00028383  0x000056a8 arg  0x0000465a , 0x00000006 
+ 00028384  0x000056a9 call  0x00007e85 
+ 00028385  0x000056aa arg  0x000008e2 , 0x00000006 
+ 00028386  0x000056ab call  0x00007e85 
+ 00028387  0x000056ac call  0x00006f2d 
+ 00028388  0x000056ad arg  0x00000352 , 0x00000006 
+ 00028389  0x000056ae call  0x00006f28 
+ 00028390  0x000056af branch  0x00006ef2 
+ 00028391  0x000056b3 jam  0x00000041 , 0x00000509 
+ 00028392  0x000056b4 fetch  0x00000001 , 0x000046ec 
+ 00028393  0x000056b5 store  0x00000001 , 0x0000050a 
+ 00028394  0x000056b6 arg  0x000008e2 , 0x00000006 
+ 00028395  0x000056b7 call  0x00007e85 
+ 00028396  0x000056b8 arg  0x0000465a , 0x00000006 
+ 00028397  0x000056b9 call  0x00007e85 
+ 00028398  0x000056ba call  0x00006f2d 
+ 00028399  0x000056bb arg  0x000044c3 , 0x00000006 
+ 00028400  0x000056bc call  0x00006f28 
+ 00028401  0x000056bd branch  0x00006ef2 
+ 00028402  0x000056c0 set1  0x00000025 , 0x00000000 
+ 00028403  0x000056c1 bpatch  0x000000d1 , 0x0000403a 
+ 00028404  0x000056c2 call  0x00006f42 
+ 00028405  0x000056c6 fetch  0x00000001 , 0x00000509 
+ 00028406  0x000056c7 copy  0x0000003f , 0x00000002 
+ 00028407  0x000056c9 increase  0x0000000f , 0x0000003f 
+ 00028408  0x000056ca rshift4  0x0000003f , 0x0000003f 
+ 00028409  0x000056cb copy  0x0000003f , 0x00000012 
+ 00028410  0x000056cc branch  0x00006f05 , 0x00000034 
+ 00028411  0x000056cd and  0x00000002 , 0x0000000f , 0x0000003f 
+ 00028412  0x000056ce nbranch  0x00006f08 , 0x00000034 
+ 00028413  0x000056d0 arg  0x000009f1 , 0x00000013 
+ 00028414  0x000056d1 arg  0x0000050a , 0x0000003f 
+ 00028415  0x000056d2 increase  0xfffffff0 , 0x0000003f 
+ 00028416  0x000056d5 iadd  0x00000002 , 0x00000011 
+ 00028417  0x000056d6 arg  0x00000a21 , 0x00000005 
+ 00028418  0x000056d7 arg  0x00000004 , 0x00000039 
+ 00028419  0x000056d8 call  0x00007ea8 
+ 00028420  0x000056dc branch  0x00006f13 
+ 00028421  0x000056df arg  0x00000001 , 0x00000012 
+ 00028422  0x000056e0 arg  0x00000000 , 0x00000011 
+ 00028423  0x000056e2 branch  0x00006f09 
+ 00028424  0x000056e7 and  0x00000002 , 0x0000000f , 0x00000011 
+ 00028425  0x000056e9 arg  0x0000050a , 0x0000003f 
+ 00028426  0x000056ea iadd  0x00000002 , 0x0000003f 
+ 00028427  0x000056eb isub  0x00000011 , 0x00000006 
+ 00028428  0x000056ed arg  0x00000a11 , 0x00000005 
+ 00028429  0x000056ee call  0x00006f69 
+ 00028430  0x000056f0 arg  0x00000a01 , 0x00000013 
+ 00028431  0x000056f1 arg  0x00000a11 , 0x00000011 
+ 00028432  0x000056f2 arg  0x00000a21 , 0x00000005 
+ 00028433  0x000056f3 arg  0x00000004 , 0x00000039 
+ 00028434  0x000056f4 call  0x00007ea8 
+ 00028435  0x00005700 call  0x000071ba 
+ 00028436  0x00005701 call  0x00007150 
+ 00028437  0x00005704 arg  0x0000050a , 0x00000006 
+ 00028438  0x00005707 increase  0xffffffff , 0x00000012 
+ 00028439  0x00005708 deposit  0x00000012 
+ 00028440  0x00005709 branch  0x00006f1c , 0x00000034 
+ 00028441  0x0000570a call  0x000071af 
+ 00028442  0x0000570b call  0x0000714a 
+ 00028443  0x0000570c branch  0x00006f16 
+ 00028444  0x0000570f arg  0x00000a11 , 0x00000005 
+ 00028445  0x00005710 call  0x000071c0 
+ 00028446  0x00005711 arg  0x00000a21 , 0x00000006 
+ 00028447  0x00005712 call  0x000071af 
+ 00028448  0x00005713 call  0x00007150 
+ 00028449  0x00005714 arg  0x00000a11 , 0x00000006 
+ 00028450  0x00005715 call  0x000071af 
+ 00028451  0x00005716 branch  0x0000714a 
+ 00028452  0x0000571c copy  0x00000005 , 0x00000011 
+ 00028453  0x0000571d call  0x000071c0 
+ 00028454  0x0000571f arg  0x00000010 , 0x00000039 
+ 00028455  0x00005720 branch  0x00007eb0 
+ 00028456  0x00005723 arg  0x000009e1 , 0x00000005 
+ 00028457  0x00005724 call  0x00007e87 
+ 00028458  0x00005726 arg  0x00000010 , 0x00000039 
+ 00028459  0x00005727 arg  0x000009e1 , 0x00000011 
+ 00028460  0x00005728 branch  0x00007eb0 
+ 00028461  0x0000572b fetch  0x00000001 , 0x00000509 
+ 00028462  0x0000572c copy  0x0000003f , 0x00000039 
+ 00028463  0x0000572d arg  0x0000050a , 0x00000011 
+ 00028464  0x0000572e branch  0x00007eb0 
+ 00028465  0x00005731 ifetch  0x00000001 , 0x00000011 
+ 00028466  0x00005732 lshift  0x0000003f , 0x0000003f 
+ 00028467  0x00005733 isolate1  0x00000000 , 0x00000013 
+ 00028468  0x00005734 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00028469  0x00005735 isolate1  0x00000008 , 0x0000003f 
+ 00028470  0x00005736 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00028471  0x00005737 istore  0x00000001 , 0x00000011 
+ 00028472  0x00005738 increase  0xffffffff , 0x00000011 
+ 00028473  0x00005739 loop  0x00006f31 
+ 00028474  0x0000573a rtn 
+ 00028475  0x0000573d arg  0x000009f1 , 0x00000011 
+ 00028476  0x0000573f increase  0x0000000f , 0x00000011 
+ 00028477  0x00005740 force  0x00000010 , 0x00000039 
+ 00028478  0x00005741 force  0x00000000 , 0x00000013 
+ 00028479  0x00005742 branch  0x00006f31 
+ 00028480  0x00005745 arg  0x00000a01 , 0x00000011 
+ 00028481  0x00005746 branch  0x00006f3c 
+ 00028482  0x0000574a arg  0x000009e1 , 0x00000006 
+ 00028483  0x0000574b call  0x000071ad 
+ 00028484  0x0000574e force  0x00000008 , 0x00000038 
+ 00028485  0x0000574f call  0x000071bb 
+ 00028486  0x00005750 call  0x000071ba 
+ 00028487  0x00005751 call  0x00007147 
+ 00028488  0x00005756 arg  0x000009f1 , 0x00000005 
+ 00028489  0x00005757 call  0x000071c0 
+ 00028490  0x00005759 set1  0x00000025 , 0x00000000 
+ 00028491  0x0000575a bpatch  0x000000d2 , 0x0000403a 
+ 00028492  0x0000575b fetch  0x00000001 , 0x000009f1 
+ 00028493  0x0000575c isolate1  0x00000007 , 0x0000003f 
+ 00028494  0x0000575d nbranch  0x00006f54 , 0x00000001 
+ 00028495  0x0000575e call  0x00006f3b 
+ 00028496  0x00005761 arg  0x000009f1 , 0x00000013 
+ 00028497  0x00005763 arg  0x000009f1 , 0x00000005 
+ 00028498  0x00005766 call  0x00006f5e 
+ 00028499  0x00005767 branch  0x00006f55 
+ 00028500  0x00005769 call  0x00006f3b 
+ 00028501  0x0000576c arg  0x000009f1 , 0x00000006 
+ 00028502  0x0000576d arg  0x00000a01 , 0x00000005 
+ 00028503  0x0000576e call  0x00007e87 
+ 00028504  0x0000576f fetch  0x00000001 , 0x00000a01 
+ 00028505  0x00005770 isolate1  0x00000007 , 0x0000003f 
+ 00028506  0x00005771 nbranch  0x00006f40 , 0x00000001 
+ 00028507  0x00005772 call  0x00006f40 
+ 00028508  0x00005774 arg  0x00000a01 , 0x00000013 
+ 00028509  0x00005776 arg  0x00000a01 , 0x00000005 
+ 00028510  0x0000577d arg  0x00000003 , 0x00000039 
+ 00028511  0x0000577f arg  0x00000000 , 0x00000002 
+ 00028512  0x00005780 call  0x00006f65 
+ 00028513  0x00005781 increase  0x00000004 , 0x00000013 
+ 00028514  0x00005782 loop  0x00006f5f 
+ 00028515  0x00005783 arg  0x00008700 , 0x00000002 
+ 00028516  0x00005784 lshift16  0x00000002 , 0x00000002 
+ 00028517  0x00005786 ifetch  0x00000004 , 0x00000013 
+ 00028518  0x00005787 ixor  0x00000002 , 0x0000003f 
+ 00028519  0x00005788 istore  0x00000004 , 0x00000005 
+ 00028520  0x00005789 rtn 
+ 00028521  0x00005790 set1  0x00000025 , 0x00000000 
+ 00028522  0x00005791 bpatch  0x000000d3 , 0x0000403a 
+ 00028523  0x00005792 arg  0x00000010 , 0x00000039 
+ 00028524  0x00005793 arg  0x00000000 , 0x0000003f 
+ 00028525  0x00005795 isub  0x00000011 , 0x0000003e 
+ 00028526  0x00005796 branch  0x00006f75 , 0x00000005 
+ 00028527  0x00005797 branch  0x00006f78 , 0x00000002 
+ 00028528  0x00005798 ifetcht  0x00000001 , 0x00000006 
+ 00028529  0x00005799 istoret  0x00000001 , 0x00000005 
+ 00028530  0x0000579b increase  0x00000001 , 0x0000003f 
+ 00028531  0x0000579c loop  0x00006f6d 
+ 00028532  0x0000579d rtn 
+ 00028533  0x0000579f arg  0x00000080 , 0x00000002 
+ 00028534  0x000057a1 istoret  0x00000001 , 0x00000005 
+ 00028535  0x000057a2 branch  0x00006f72 
+ 00028536  0x000057a5 arg  0x00000000 , 0x00000002 
+ 00028537  0x000057a6 branch  0x00006f76 
+ 00028538  0x000057aa call  0x00006f8d 
+ 00028539  0x000057ab arg  0x000004b6 , 0x00000006 
+ 00028540  0x000057ac arg  0x000004a6 , 0x00000005 
+ 00028541  0x000057ad branch  0x00007e87 
+ 00028542  0x000057b1 disable  0x00000028 
+ 00028543  0x000057b2 call  0x00007084 
+ 00028544  0x000057b3 arg  0x00000486 , 0x00000006 
+ 00028545  0x000057b4 arg  0x000004c6 , 0x00000005 
+ 00028546  0x000057b5 force  0x0000000f , 0x00000039 
+ 00028547  0x000057b6 call  0x00007ecd 
+ 00028548  0x000057b7 ifetch  0x00000001 , 0x00000006 
+ 00028549  0x000057b8 xor_into  0x00000006 , 0x0000003f 
+ 00028550  0x000057b9 istore  0x00000001 , 0x00000005 
+ 00028551  0x000057ba setarg  0x000004d6 
+ 00028552  0x000057bb store  0x00000002 , 0x000004fa 
+ 00028553  0x000057bc setarg  0x000004c6 
+ 00028554  0x000057bd store  0x00000002 , 0x000004f8 
+ 00028555  0x000057be set1  0x00000012 , 0x00000000 
+ 00028556  0x000057bf branch  0x00006fcd 
+ 00028557  0x000057c4 fetcht  0x00000001 , 0x00004718 
+ 00028558  0x000057c5 force  0x00000010 , 0x00000012 
+ 00028559  0x000057c6 add  0x00000002 , 0x00000006 , 0x00000013 
+ 00028560  0x000057c7 sub  0x00000013 , 0x00000010 , 0x0000003e 
+ 00028561  0x000057c8 branch  0x00006f93 , 0x00000002 
+ 00028562  0x000057c9 force  0x00000010 , 0x00000013 
+ 00028563  0x000057cb arg  0x000004c6 , 0x00000005 
+ 00028564  0x000057cd arg  0x00004719 , 0x00000006 
+ 00028565  0x000057ce copy  0x00000002 , 0x00000039 
+ 00028566  0x000057cf disable  0x00000028 
+ 00028567  0x000057d1 ifetch  0x00000001 , 0x00000006 
+ 00028568  0x000057d2 istore  0x00000001 , 0x00000005 
+ 00028569  0x000057d3 increase  0xffffffff , 0x00000012 
+ 00028570  0x000057d4 branch  0x00006fa1 , 0x00000005 
+ 00028571  0x000057d5 loop  0x00006f97 
+ 00028572  0x000057d6 branch  0x00006f94 , 0x00000028 
+ 00028573  0x000057d7 enable  0x00000028 
+ 00028574  0x000057d8 force  0x00000006 , 0x00000039 
+ 00028575  0x000057d9 copy  0x00000011 , 0x00000006 
+ 00028576  0x000057da branch  0x00006f97 
+ 00028577  0x000057dc arg  0x00000486 , 0x00000006 
+ 00028578  0x000057dd arg  0x000004d6 , 0x00000005 
+ 00028579  0x000057de call  0x00007e87 
+ 00028580  0x000057df fetch  0x00000001 , 0x000004e5 
+ 00028581  0x000057e0 ixor  0x00000013 , 0x0000003f 
+ 00028582  0x000057e1 store  0x00000001 , 0x000004e5 
+ 00028583  0x000057e2 setarg  0x000004d6 
+ 00028584  0x000057e3 store  0x00000002 , 0x000004fa 
+ 00028585  0x000057e4 setarg  0x000004c6 
+ 00028586  0x000057e5 store  0x00000002 , 0x000004f8 
+ 00028587  0x000057e6 set1  0x00000012 , 0x00000000 
+ 00028588  0x000057e7 branch  0x00006fcd 
+ 00028589  0x000057ed disable  0x00000028 
+ 00028590  0x000057ee call  0x00007084 
+ 00028591  0x000057ef branch  0x00006fb7 
+ 00028592  0x000057f2 arg  0x00000056 , 0x00000011 
+ 00028593  0x000057f3 enable  0x00000028 
+ 00028594  0x000057f4 call  0x00007084 
+ 00028595  0x000057f5 call  0x00006fb7 
+ 00028596  0x000057f6 arg  0x000004b6 , 0x00000006 
+ 00028597  0x000057f7 arg  0x00000062 , 0x00000005 
+ 00028598  0x000057f8 branch  0x00007e87 
+ 00028599  0x000057fc setarg  0x00000486 
+ 00028600  0x000057fd store  0x00000002 , 0x000004fa 
+ 00028601  0x000057fe setarg  0x00004261 
+ 00028602  0x000057ff store  0x00000002 , 0x000004f8 
+ 00028603  0x00005800 set0  0x00000012 , 0x00000000 
+ 00028604  0x00005801 call  0x00006fcd 
+ 00028605  0x00005802 arg  0x000004b6 , 0x00000011 
+ 00028606  0x00005803 arg  0x00000486 , 0x00000012 
+ 00028607  0x00005804 arg  0x000004c6 , 0x00000005 
+ 00028608  0x00005805 call  0x00007077 
+ 00028609  0x00005806 arg  0x000004c6 , 0x00000011 
+ 00028610  0x00005807 arg  0x000004d6 , 0x00000012 
+ 00028611  0x00005808 copy  0x00000012 , 0x00000005 
+ 00028612  0x00005809 enable  0x00000028 
+ 00028613  0x0000580a call  0x00007075 
+ 00028614  0x0000580b call  0x0000708f 
+ 00028615  0x0000580c setarg  0x000004d6 
+ 00028616  0x0000580d store  0x00000002 , 0x000004fa 
+ 00028617  0x0000580e setarg  0x000004c6 
+ 00028618  0x0000580f store  0x00000002 , 0x000004f8 
+ 00028619  0x00005810 set1  0x00000012 , 0x00000000 
+ 00028620  0x00005811 branch  0x00006fcd 
+ 00028621  0x00005816 jam  0x00000000 , 0x000004fc 
+ 00028622  0x00005817 fetch  0x00000002 , 0x000004f8 
+ 00028623  0x00005818 iforce  0x00000006 
+ 00028624  0x00005819 arg  0x000004e6 , 0x00000005 
+ 00028625  0x0000581a call  0x00007e87 
+ 00028626  0x0000581b fetch  0x00000002 , 0x000004fa 
+ 00028627  0x0000581c iforce  0x00000006 
+ 00028628  0x0000581d arg  0x000004b6 , 0x00000005 
+ 00028629  0x0000581e call  0x00007e87 
+ 00028630  0x00005821 call  0x00006ff4 
+ 00028631  0x00005822 disable  0x00000028 
+ 00028632  0x00005823 bmark0  0x00000012 , 0x00006fde 
+ 00028633  0x00005824 fetch  0x00000001 , 0x000004fc 
+ 00028634  0x00005825 bne  0x00000004 , 0x00006fde 
+ 00028635  0x00005826 fetch  0x00000002 , 0x000004fa 
+ 00028636  0x00005827 iforce  0x00000012 
+ 00028637  0x00005828 call  0x00007026 
+ 00028638  0x0000582a call  0x00007025 
+ 00028639  0x0000582b call  0x00007038 
+ 00028640  0x0000582c fetch  0x00000001 , 0x000004fc 
+ 00028641  0x0000582d increase  0x00000001 , 0x0000003f 
+ 00028642  0x0000582e store  0x00000001 , 0x000004fc 
+ 00028643  0x00005830 call  0x00006ff4 
+ 00028644  0x00005831 enable  0x00000028 
+ 00028645  0x00005832 call  0x00007025 
+ 00028646  0x00005833 call  0x00007047 
+ 00028647  0x00005834 call  0x00007056 
+ 00028648  0x00005835 call  0x00007047 
+ 00028649  0x00005836 call  0x00007056 
+ 00028650  0x00005837 call  0x00007047 
+ 00028651  0x00005838 call  0x00007056 
+ 00028652  0x00005839 call  0x00007047 
+ 00028653  0x0000583a fetch  0x00000001 , 0x000004fc 
+ 00028654  0x0000583b increase  0x00000001 , 0x0000003f 
+ 00028655  0x0000583c store  0x00000001 , 0x000004fc 
+ 00028656  0x0000583d bne  0x00000010 , 0x00006fd6 
+ 00028657  0x0000583e call  0x00006ff4 
+ 00028658  0x0000583f disable  0x00000028 
+ 00028659  0x00005840 branch  0x00007025 
+ 00028660  0x00005845 fetch  0x00000001 , 0x000004fc 
+ 00028661  0x00005846 arg  0x000004e6 , 0x00000006 
+ 00028662  0x00005847 branch  0x0000701b , 0x00000034 
+ 00028663  0x00005848 iforce  0x00000012 
+ 00028664  0x00005849 force  0x00000011 , 0x00000039 
+ 00028665  0x0000584a copy  0x00000006 , 0x00000005 
+ 00028666  0x0000584c ifetch  0x00000001 , 0x00000006 
+ 00028667  0x0000584d lshift3  0x0000003f , 0x00000002 
+ 00028668  0x0000584e rshift2  0x0000003f , 0x0000003f 
+ 00028669  0x0000584f rshift3  0x0000003f , 0x0000003f 
+ 00028670  0x00005850 ior  0x00000002 , 0x0000003f 
+ 00028671  0x00005851 istore  0x00000001 , 0x00000005 
+ 00028672  0x00005852 loop  0x00006ffa 
+ 00028673  0x00005853 setarg  0x000004e6 
+ 00028674  0x00005854 iadd  0x00000012 , 0x00000006 
+ 00028675  0x00005855 force  0x00000010 , 0x00000039 
+ 00028676  0x00005856 arg  0x00000496 , 0x00000005 
+ 00028677  0x00005858 ifetch  0x00000001 , 0x00000006 
+ 00028678  0x00005859 istore  0x00000001 , 0x00000005 
+ 00028679  0x0000585a compare  0x000004f7 , 0x00000006 , 0x000000ff 
+ 00028680  0x0000585b nbranch  0x0000700a , 0x00000001 
+ 00028681  0x0000585c increase  0xffffffef , 0x00000006 
+ 00028682  0x0000585e loop  0x00007005 
+ 00028683  0x0000585f force  0x00000000 , 0x00000011 
+ 00028684  0x00005860 add  0x00000012 , 0xffffffff , 0x00000013 
+ 00028685  0x00005861 lshift2  0x00000013 , 0x00000013 
+ 00028686  0x00005862 lshift2  0x00000013 , 0x00000013 
+ 00028687  0x00005863 call  0x000071e2 
+ 00028688  0x00005864 setarg  0x00008400 
+ 00028689  0x00005865 iadd  0x00000013 , 0x00000013 
+ 00028690  0x00005866 arg  0x00000496 , 0x00000005 
+ 00028691  0x00005867 force  0x00000010 , 0x00000039 
+ 00028692  0x00005869 ifetcht  0x00000001 , 0x00000013 
+ 00028693  0x0000586a ifetch  0x00000001 , 0x00000005 
+ 00028694  0x0000586b iadd  0x00000002 , 0x0000003f 
+ 00028695  0x0000586c istore  0x00000001 , 0x00000005 
+ 00028696  0x0000586d increase  0x00000001 , 0x00000013 
+ 00028697  0x0000586e loop  0x00007014 
+ 00028698  0x0000586f branch  0x000071e6 
+ 00028699  0x00005872 force  0x00000010 , 0x00000039 
+ 00028700  0x00005873 force  0x00000000 , 0x00000002 
+ 00028701  0x00005875 ifetch  0x00000001 , 0x00000006 
+ 00028702  0x00005876 ixor  0x00000002 , 0x00000002 
+ 00028703  0x00005877 loop  0x0000701d 
+ 00028704  0x00005878 deposit  0x00000002 
+ 00028705  0x00005879 istore  0x00000001 , 0x00000006 
+ 00028706  0x0000587a arg  0x000004e6 , 0x00000006 
+ 00028707  0x0000587b arg  0x00000496 , 0x00000005 
+ 00028708  0x0000587c branch  0x00007e87 
+ 00028709  0x0000587f arg  0x00000496 , 0x00000012 
+ 00028710  0x00005881 force  0x00000010 , 0x00000039 
+ 00028711  0x00005882 arg  0x000004b6 , 0x00000011 
+ 00028712  0x00005883 copy  0x00000011 , 0x00000005 
+ 00028713  0x00005885 ifetcht  0x00000001 , 0x00000011 
+ 00028714  0x00005886 ifetch  0x00000001 , 0x00000012 
+ 00028715  0x00005887 ixor  0x00000002 , 0x00000030 
+ 00028716  0x00005888 and  0x00000039 , 0x00000003 , 0x00000013 
+ 00028717  0x00005889 nbranch  0x0000702f , 0x00000028 
+ 00028718  0x0000588a xor_into  0x00000003 , 0x00000013 
+ 00028719  0x0000588c sub  0x00000013 , 0x00000001 , 0x00000013 
+ 00028720  0x0000588d branch  0x00007032 , 0x00000002 
+ 00028721  0x0000588e iadd  0x00000002 , 0x00000030 
+ 00028722  0x00005890 deposit  0x00000030 
+ 00028723  0x00005891 istore  0x00000001 , 0x00000005 
+ 00028724  0x00005892 increase  0x00000001 , 0x00000011 
+ 00028725  0x00005893 increase  0x00000001 , 0x00000012 
+ 00028726  0x00005894 loop  0x00007029 
+ 00028727  0x00005895 rtn 
+ 00028728  0x00005898 call  0x000071e2 
+ 00028729  0x00005899 force  0x00000010 , 0x00000039 
+ 00028730  0x0000589a arg  0x000004b6 , 0x00000011 
+ 00028731  0x0000589c ifetch  0x00000001 , 0x00000011 
+ 00028732  0x0000589d arg  0x00008500 , 0x00000006 
+ 00028733  0x0000589e and  0x00000039 , 0x00000003 , 0x00000013 
+ 00028734  0x0000589f sub  0x00000013 , 0x00000001 , 0x0000003e 
+ 00028735  0x000058a0 branch  0x00007041 , 0x00000002 
+ 00028736  0x000058a1 arg  0x00008600 , 0x00000006 
+ 00028737  0x000058a3 iadd  0x00000006 , 0x00000006 
+ 00028738  0x000058a4 ifetch  0x00000001 , 0x00000006 
+ 00028739  0x000058a5 istore  0x00000001 , 0x00000011 
+ 00028740  0x000058a6 increase  0x00000001 , 0x00000011 
+ 00028741  0x000058a7 loop  0x0000703b 
+ 00028742  0x000058a8 branch  0x000071e6 
+ 00028743  0x000058ab force  0x00000008 , 0x00000039 
+ 00028744  0x000058ac arg  0x000004b6 , 0x00000006 
+ 00028745  0x000058ad copy  0x00000006 , 0x00000005 
+ 00028746  0x000058af ifetch  0x00000001 , 0x00000006 
+ 00028747  0x000058b0 iforce  0x00000011 
+ 00028748  0x000058b1 ifetch  0x00000001 , 0x00000006 
+ 00028749  0x000058b2 iforce  0x00000012 
+ 00028750  0x000058b3 lshift  0x00000011 , 0x0000003f 
+ 00028751  0x000058b4 iadd  0x00000012 , 0x0000003f 
+ 00028752  0x000058b5 istore  0x00000001 , 0x00000005 
+ 00028753  0x000058b6 deposit  0x00000011 
+ 00028754  0x000058b7 iadd  0x00000012 , 0x0000003f 
+ 00028755  0x000058b8 istore  0x00000001 , 0x00000005 
+ 00028756  0x000058b9 loop  0x0000704a 
+ 00028757  0x000058ba rtn 
+ 00028758  0x000058be setarg  0x008ae42c 
+ 00028759  0x000058bf iforce  0x00000002 
+ 00028760  0x000058c0 force  0x00000007 , 0x00000039 
+ 00028761  0x000058c1 call  0x00007065 
+ 00028762  0x000058c2 setarg  0x000d751b 
+ 00028763  0x000058c3 iforce  0x00000002 
+ 00028764  0x000058c4 force  0x00000005 , 0x00000039 
+ 00028765  0x000058c5 call  0x00007065 
+ 00028766  0x000058c6 fetch  0x00000001 , 0x000004c5 
+ 00028767  0x000058c7 iforce  0x00000011 
+ 00028768  0x000058c8 fetch  0x00000001 , 0x000004b9 
+ 00028769  0x000058c9 store  0x00000001 , 0x000004c5 
+ 00028770  0x000058ca deposit  0x00000011 
+ 00028771  0x000058cb store  0x00000001 , 0x000004b9 
+ 00028772  0x000058cc rtn 
+ 00028773  0x000058cf and  0x00000002 , 0x0000000f , 0x00000012 
+ 00028774  0x000058d1 and  0x00000002 , 0x0000000f , 0x0000003f 
+ 00028775  0x000058d2 arg  0x000004b6 , 0x00000005 
+ 00028776  0x000058d3 iadd  0x00000005 , 0x00000005 
+ 00028777  0x000058d4 ifetch  0x00000001 , 0x00000005 
+ 00028778  0x000058d5 iforce  0x00000013 
+ 00028779  0x000058d6 deposit  0x00000011 
+ 00028780  0x000058d7 istore  0x00000001 , 0x00000005 
+ 00028781  0x000058d8 copy  0x00000013 , 0x00000011 
+ 00028782  0x000058d9 rshift4  0x00000002 , 0x00000002 
+ 00028783  0x000058da loop  0x00007066 
+ 00028784  0x000058db setarg  0x000004b6 
+ 00028785  0x000058dc iadd  0x00000012 , 0x00000005 
+ 00028786  0x000058dd deposit  0x00000011 
+ 00028787  0x000058de istore  0x00000001 , 0x00000005 
+ 00028788  0x000058df rtn 
+ 00028789  0x000058e2 enable  0x00000028 
+ 00028790  0x000058e3 branch  0x00007078 
+ 00028791  0x000058e6 disable  0x00000028 
+ 00028792  0x000058e8 force  0x00000010 , 0x00000039 
+ 00028793  0x000058ea ifetcht  0x00000001 , 0x00000011 
+ 00028794  0x000058eb ifetch  0x00000001 , 0x00000012 
+ 00028795  0x000058ec branch  0x0000707e , 0x00000028 
+ 00028796  0x000058ed ixor  0x00000002 , 0x0000003f 
+ 00028797  0x000058ee branch  0x0000707f 
+ 00028798  0x000058f0 iadd  0x00000002 , 0x0000003f 
+ 00028799  0x000058f2 istore  0x00000001 , 0x00000005 
+ 00028800  0x000058f3 increase  0x00000001 , 0x00000011 
+ 00028801  0x000058f4 increase  0x00000001 , 0x00000012 
+ 00028802  0x000058f5 loop  0x00007079 
+ 00028803  0x000058f6 rtn 
+ 00028804  0x000058fa arg  0x000004d6 , 0x00000005 
+ 00028805  0x000058fb ifetch  0x00000006 , 0x00000011 
+ 00028806  0x000058fc istore  0x00000006 , 0x00000005 
+ 00028807  0x000058fd branch  0x0000708a , 0x00000028 
+ 00028808  0x000058fe ifetch  0x00000006 , 0x00000011 
+ 00028809  0x000058ff branch  0x0000708b 
+ 00028810  0x00005901 ifetch  0x00000006 , 0x00000006 
+ 00028811  0x00005903 istore  0x00000006 , 0x00000005 
+ 00028812  0x00005904 ifetch  0x00000004 , 0x00000011 
+ 00028813  0x00005905 istore  0x00000004 , 0x00000005 
+ 00028814  0x00005906 rtn 
+ 00028815  0x00005909 arg  0x00004261 , 0x00000006 
+ 00028816  0x0000590a arg  0x000004c6 , 0x00000005 
+ 00028817  0x0000590b arg  0x00000000 , 0x00000002 
+ 00028818  0x0000590c setarg  0x008395a7 
+ 00028819  0x0000590d call  0x000070b0 
+ 00028820  0x0000590e setarg  0x00b3c1df 
+ 00028821  0x0000590f call  0x000070b0 
+ 00028822  0x00005910 setarg  0x0000e5e9 
+ 00028823  0x00005911 call  0x000070b1 
+ 00028824  0x00005912 copy  0x00000002 , 0x00000014 
+ 00028825  0x00005913 disable  0x00000028 
+ 00028826  0x00005914 call  0x0000709e 
+ 00028827  0x00005915 copy  0x00000014 , 0x00000002 
+ 00028828  0x00005916 enable  0x00000028 
+ 00028829  0x00005917 branch  0x0000709e 
+ 00028830  0x0000591a force  0x00000008 , 0x00000039 
+ 00028831  0x0000591c ifetch  0x00000001 , 0x00000006 
+ 00028832  0x0000591d compare  0x00000001 , 0x00000039 , 0x00000001 
+ 00028833  0x0000591e branch  0x000070a5 , 0x00000028 
+ 00028834  0x0000591f branch  0x000070a6 , 0x00000001 
+ 00028835  0x00005921 iadd  0x00000002 , 0x0000003f 
+ 00028836  0x00005922 branch  0x000070a7 
+ 00028837  0x00005924 branch  0x000070a3 , 0x00000001 
+ 00028838  0x00005926 ixor  0x00000002 , 0x0000003f 
+ 00028839  0x00005928 istore  0x00000001 , 0x00000005 
+ 00028840  0x00005929 rshift8  0x00000002 , 0x00000002 
+ 00028841  0x0000592a loop  0x0000709f 
+ 00028842  0x0000592b rtn 
+ 00028843  0x0000592e fetch  0x00000006 , 0x000004ba 
+ 00028844  0x0000592f store  0x00000006 , 0x00000056 
+ 00028845  0x00005930 ifetch  0x00000006 , 0x00000006 
+ 00028846  0x00005931 istore  0x00000006 , 0x00000005 
+ 00028847  0x00005932 rtn 
+ 00028848  0x00005935 lshift8  0x00000002 , 0x00000002 
+ 00028849  0x00005937 lshift16  0x00000002 , 0x00000002 
+ 00028850  0x00005938 ior  0x00000002 , 0x00000002 
+ 00028851  0x00005939 rtn 
+ 00028852  0x0000593d branch  0x000070b4 
+ 00028853  0x00005942 set1  0x00000025 , 0x00000000 
+ 00028854  0x00005943 bpatch  0x000000d4 , 0x0000403a 
+ 00028855  0x00005944 call  0x00007153 
+ 00028856  0x00005945 arg  0x000044a2 , 0x00000005 
+ 00028857  0x00005946 branch  0x000071c0 
+ 00028858  0x0000594a arg  0x000044c3 , 0x00000005 
+ 00028859  0x0000594b branch  0x000070bd , 0x00000029 
+ 00028860  0x0000594c arg  0x00000352 , 0x00000005 
+ 00028861  0x0000594e copy  0x00000006 , 0x00000011 
+ 00028862  0x0000594f call  0x00007e87 
+ 00028863  0x00005950 call  0x00007168 
+ 00028864  0x00005951 arg  0x000044b3 , 0x00000006 
+ 00028865  0x00005952 branch  0x000071d9 
+ 00028866  0x00005955 arg  0x00000352 , 0x00000011 
+ 00028867  0x00005956 branch  0x000070c5 , 0x00000029 
+ 00028868  0x00005957 arg  0x000044c3 , 0x00000011 
+ 00028869  0x00005959 copy  0x00000011 , 0x00000005 
+ 00028870  0x0000595a call  0x00005917 
+ 00028871  0x0000595b branch  0x00007168 
+ 00028872  0x0000595e arg  0x00004551 , 0x00000006 
+ 00028873  0x0000595f call  0x000071af 
+ 00028874  0x00005960 arg  0x000044a2 , 0x00000006 
+ 00028875  0x00005961 call  0x000071b0 
+ 00028876  0x00005962 force  0x00000038 , 0x00000036 
+ 00028877  0x00005963 force  0x00000000 , 0x00000036 
+ 00028878  0x00005964 call  0x00007145 
+ 00028879  0x00005965 arg  0x000003a0 , 0x00000005 
+ 00028880  0x00005966 branch  0x000071c0 
+ 00028881  0x0000596a force  0x00000049 , 0x0000003f 
+ 00028882  0x0000596b branch  0x000070d4 
+ 00028883  0x0000596d force  0x00000001 , 0x0000003f 
+ 00028884  0x0000596f force  0x00000000 , 0x00000038 
+ 00028885  0x00005970 lshift8  0x00000002 , 0x0000002f 
+ 00028886  0x00005971 ior  0x0000002f , 0x0000002f 
+ 00028887  0x00005972 increase  0x00000001 , 0x00000038 
+ 00028888  0x00005973 rshift8  0x00000002 , 0x0000002f 
+ 00028889  0x00005974 rshift16  0x0000002f , 0x0000002f 
+ 00028890  0x00005975 fetch  0x00000002 , 0x0000449a 
+ 00028891  0x00005976 lshift16 , 0x0000003f , 0x0000003f 
+ 00028892  0x00005977 ior  0x0000002f , 0x0000002f 
+ 00028893  0x00005978 increase  0x00000001 , 0x00000038 
+ 00028894  0x00005979 ifetch  0x00000004 , 0x00000006 
+ 00028895  0x0000597a iforce  0x0000002f 
+ 00028896  0x0000597b increase  0x00000001 , 0x00000038 
+ 00028897  0x0000597c ifetch  0x00000002 , 0x00000006 
+ 00028898  0x0000597d byteswap  0x00000011 , 0x0000002f 
+ 00028899  0x0000597e lshift16  0x0000002f , 0x0000002f 
+ 00028900  0x0000597f ior  0x0000002f , 0x0000002f 
+ 00028901  0x00005980 increase  0x00000001 , 0x00000038 
+ 00028902  0x00005981 rtn 
+ 00028903  0x00005986 add  0x00000013 , 0x00000001 , 0x00000006 
+ 00028904  0x00005987 ifetch  0x00000001 , 0x00000006 
+ 00028905  0x00005988 iforce  0x00000011 
+ 00028906  0x00005989 call  0x000070d1 
+ 00028907  0x0000598a call  0x00007147 
+ 00028908  0x0000598c force  0x00000000 , 0x00000038 
+ 00028909  0x0000598d ifetch  0x00000001 , 0x00000013 
+ 00028910  0x0000598e and_into  0x00000003 , 0x0000003f 
+ 00028911  0x0000598f lshift16  0x0000003f , 0x0000002f 
+ 00028912  0x00005990 set1  0x00000008 , 0x0000002f 
+ 00028913  0x00005991 call  0x000071b8 
+ 00028914  0x00005992 call  0x0000714a 
+ 00028915  0x00005994 copy  0x00000011 , 0x00000039 
+ 00028916  0x00005995 add  0x00000013 , 0x00000002 , 0x00000006 
+ 00028917  0x00005996 call  0x00007197 
+ 00028918  0x00005998 call  0x000071a1 
+ 00028919  0x00005999 call  0x0000714a 
+ 00028920  0x0000599a deposit  0x00000039 
+ 00028921  0x0000599b branch  0x000070fb , 0x00000034 
+ 00028922  0x0000599c branch  0x000070f6 
+ 00028923  0x0000599e force  0x0000000c , 0x00000038 
+ 00028924  0x0000599f deposit  0x0000002f 
+ 00028925  0x000059a0 store  0x00000004 , 0x0000033a 
+ 00028926  0x000059a1 rtn 
+ 00028927  0x000059a4 increase  0x00000001 , 0x00000011 
+ 00028928  0x000059a5 call  0x000070d3 
+ 00028929  0x000059a6 copy  0x00000013 , 0x00000006 
+ 00028930  0x000059a7 call  0x000071ab 
+ 00028931  0x000059a8 call  0x0000714d 
+ 00028932  0x000059a9 call  0x000071c7 
+ 00028933  0x000059aa increase  0x00000010 , 0x00000013 
+ 00028934  0x000059ab increase  0xfffffff0 , 0x00000012 
+ 00028935  0x000059ac branch  0x000070ff , 0x00000002 
+ 00028936  0x000059ad rtn 
+ 00028937  0x000059b0 set1  0x00000025 , 0x00000000 
+ 00028938  0x000059b1 bpatch  0x000000d5 , 0x0000403a 
+ 00028939  0x000059b2 arg  0x00004465 , 0x00000013 
+ 00028940  0x000059b3 fetcht  0x00000005 , 0x0000448c 
+ 00028941  0x000059b4 call  0x000070e7 
+ 00028942  0x000059b5 force  0x00000008 , 0x00000038 
+ 00028943  0x000059b6 iforce  0x0000002f 
+ 00028944  0x000059b7 force  0x00000000 , 0x00000011 
+ 00028945  0x000059b8 call  0x000070d3 
+ 00028946  0x000059b9 call  0x0000714d 
+ 00028947  0x000059ba arg  0x00004467 , 0x00000013 
+ 00028948  0x000059bb fetch  0x00000001 , 0x00004466 
+ 00028949  0x000059bc add  0x0000003f , 0xffffffff , 0x00000012 
+ 00028950  0x000059bd iadd  0x00000013 , 0x00000005 
+ 00028951  0x000059be force  0x0000000c , 0x00000038 
+ 00028952  0x000059bf deposit  0x0000002f 
+ 00028953  0x000059c0 istore  0x00000004 , 0x00000005 
+ 00028954  0x000059c1 call  0x000070ff 
+ 00028955  0x000059c2 fetch  0x00000001 , 0x00004466 
+ 00028956  0x000059c3 increase  0x00000004 , 0x0000003f 
+ 00028957  0x000059c4 store  0x00000001 , 0x00004466 
+ 00028958  0x000059c5 fetcht  0x00000005 , 0x0000448c 
+ 00028959  0x000059c6 increase  0x00000001 , 0x00000002 
+ 00028960  0x000059c7 storet  0x00000005 , 0x0000448c 
+ 00028961  0x000059c8 rtn 
+ 00028962  0x000059cb set1  0x00000025 , 0x00000000 
+ 00028963  0x000059cc bpatch  0x000000d6 , 0x0000403a 
+ 00028964  0x000059cd fetch  0x00000001 , 0x00000303 
+ 00028965  0x000059ce sub  0x0000003f , 0x00000014 , 0x0000003e 
+ 00028966  0x000059cf branch  0x00007127 , 0x00000002 
+ 00028967  0x000059d1 arg  0x00000304 , 0x00000013 
+ 00028968  0x000059d2 add  0x0000003f , 0xffffffff , 0x00000012 
+ 00028969  0x000059d3 increase  0xfffffffc , 0x0000003f 
+ 00028970  0x000059d4 store  0x00000001 , 0x00000303 
+ 00028971  0x000059d5 iadd  0x00000013 , 0x00000006 
+ 00028972  0x000059d6 ifetch  0x00000004 , 0x00000006 
+ 00028973  0x000059d7 force  0x00000008 , 0x00000038 
+ 00028974  0x000059d8 iforce  0x0000002f 
+ 00028975  0x000059d9 force  0x00000000 , 0x00000011 
+ 00028976  0x000059da fetcht  0x00000005 , 0x00004491 
+ 00028977  0x000059db call  0x000070d3 
+ 00028978  0x000059dc call  0x0000714d 
+ 00028979  0x000059dd force  0x0000000c , 0x00000038 
+ 00028980  0x000059de deposit  0x0000002f 
+ 00028981  0x000059df store  0x00000004 , 0x0000033e 
+ 00028982  0x000059e0 call  0x000070ff 
+ 00028983  0x000059e1 arg  0x00000302 , 0x00000013 
+ 00028984  0x000059e2 call  0x000070e7 
+ 00028985  0x000059e3 fetcht  0x00000004 , 0x0000033e 
+ 00028986  0x000059e4 isub  0x00000002 , 0x0000003f 
+ 00028987  0x000059e5 nrtn  0x00000034 
+ 00028988  0x000059e6 fetch  0x00000004 , 0x00004496 
+ 00028989  0x000059e7 isub  0x00000002 , 0x0000003f 
+ 00028990  0x000059e8 rtn  0x00000034 
+ 00028991  0x000059e9 storet  0x00000004 , 0x00004496 
+ 00028992  0x000059ea fetch  0x00000005 , 0x00004491 
+ 00028993  0x000059eb increase  0x00000001 , 0x0000003f 
+ 00028994  0x000059ec store  0x00000005 , 0x00004491 
+ 00028995  0x000059ed force  0x00000000 , 0x0000003f 
+ 00028996  0x000059ee rtn 
+ 00028997  0x000059f1 nbranch  0x00007145 , 0x00000037 
+ 00028998  0x000059f2 rtn 
+ 00028999  0x000059f5 force  0x00000030 , 0x00000036 
+ 00029000  0x000059f6 force  0x00000000 , 0x00000036 
+ 00029001  0x000059f7 branch  0x00007145 
+ 00029002  0x000059fa force  0x00000032 , 0x00000036 
+ 00029003  0x000059fb force  0x00000002 , 0x00000036 
+ 00029004  0x000059fc branch  0x00007145 
+ 00029005  0x000059ff force  0x00000034 , 0x00000036 
+ 00029006  0x00005a00 force  0x00000004 , 0x00000036 
+ 00029007  0x00005a01 branch  0x00007145 
+ 00029008  0x00005a05 force  0x00000001 , 0x00000036 
+ 00029009  0x00005a06 force  0x00000000 , 0x00000036 
+ 00029010  0x00005a07 rtn 
+ 00029011  0x00005a09 force  0x00000000 , 0x00000038 
+ 00029012  0x00005a0a fetch  0x00000004 , 0x00000352 
+ 00029013  0x00005a0b iforce  0x0000002f 
+ 00029014  0x00005a0c increase  0x00000001 , 0x00000038 
+ 00029015  0x00005a0d ifetch  0x00000004 , 0x00000006 
+ 00029016  0x00005a0e iforce  0x0000002f 
+ 00029017  0x00005a0f increase  0x00000001 , 0x00000038 
+ 00029018  0x00005a10 fetch  0x00000004 , 0x000044c3 
+ 00029019  0x00005a11 iforce  0x0000002f 
+ 00029020  0x00005a12 increase  0x00000001 , 0x00000038 
+ 00029021  0x00005a13 ifetch  0x00000004 , 0x00000006 
+ 00029022  0x00005a14 iforce  0x0000002f 
+ 00029023  0x00005a15 increase  0x00000001 , 0x00000038 
+ 00029024  0x00005a16 call  0x000071bb 
+ 00029025  0x00005a17 increase  0xfffffffc , 0x00000038 
+ 00029026  0x00005a18 fetch  0x00000004 , 0x0000456d 
+ 00029027  0x00005a19 copy  0x0000003f , 0x0000002f 
+ 00029028  0x00005a1a increase  0x00000004 , 0x00000038 
+ 00029029  0x00005a1b force  0x00000038 , 0x00000036 
+ 00029030  0x00005a1c force  0x00000008 , 0x00000036 
+ 00029031  0x00005a1d branch  0x00007145 
+ 00029032  0x00005a21 set1  0x00000025 , 0x00000000 
+ 00029033  0x00005a22 bpatch  0x000000d7 , 0x0000403a 
+ 00029034  0x00005a23 fetch  0x00000006 , 0x0000453e 
+ 00029035  0x00005a24 fetcht  0x00000006 , 0x00000372 
+ 00029036  0x00005a25 branch  0x0000716f , 0x00000029 
+ 00029037  0x00005a26 fetch  0x00000006 , 0x00000372 
+ 00029038  0x00005a27 fetcht  0x00000006 , 0x0000453e 
+ 00029039  0x00005a29 force  0x00000008 , 0x00000038 
+ 00029040  0x00005a2a copy  0x00000002 , 0x0000002f 
+ 00029041  0x00005a2b increase  0x00000001 , 0x00000038 
+ 00029042  0x00005a2c rshift32  0x00000002 , 0x0000002f 
+ 00029043  0x00005a2d lshift16  0x0000003f , 0x0000003f 
+ 00029044  0x00005a2e ior  0x0000002f , 0x0000002f 
+ 00029045  0x00005a2f increase  0x00000001 , 0x00000038 
+ 00029046  0x00005a30 rshift32  0x0000003f , 0x0000002f 
+ 00029047  0x00005a31 increase  0x00000001 , 0x00000038 
+ 00029048  0x00005a32 force  0x00000000 , 0x0000002f 
+ 00029049  0x00005a33 force  0x00000000 , 0x0000003f 
+ 00029050  0x00005a34 fetch  0x00000001 , 0x0000452b 
+ 00029051  0x00005a35 fetcht  0x00000001 , 0x00004521 
+ 00029052  0x00005a36 nbranch  0x0000717f , 0x00000029 
+ 00029053  0x00005a38 fetch  0x00000001 , 0x00004532 
+ 00029054  0x00005a39 fetcht  0x00000001 , 0x0000452b 
+ 00029055  0x00005a3b store  0x00000001 , 0x000044d3 
+ 00029056  0x00005a3c storet  0x00000001 , 0x000044d4 
+ 00029057  0x00005a3d force  0x00000000 , 0x00000038 
+ 00029058  0x00005a3e arg  0x000044d3 , 0x00000012 
+ 00029059  0x00005a3f force  0x00000004 , 0x00000039 
+ 00029060  0x00005a41 ifetch  0x00000004 , 0x00000011 
+ 00029061  0x00005a42 ifetcht  0x00000004 , 0x00000012 
+ 00029062  0x00005a43 ixor  0x00000002 , 0x0000002f 
+ 00029063  0x00005a44 increase  0x00000001 , 0x00000038 
+ 00029064  0x00005a45 increase  0x00000004 , 0x00000011 
+ 00029065  0x00005a46 increase  0x00000004 , 0x00000012 
+ 00029066  0x00005a47 loop  0x00007184 
+ 00029067  0x00005a48 call  0x000071bb 
+ 00029068  0x00005a49 increase  0xfffffffc , 0x00000038 
+ 00029069  0x00005a4a fetch  0x00000004 , 0x0000456d 
+ 00029070  0x00005a4b copy  0x0000003f , 0x0000002f 
+ 00029071  0x00005a4c increase  0x00000004 , 0x00000038 
+ 00029072  0x00005a4d force  0x00000038 , 0x00000036 
+ 00029073  0x00005a4e force  0x0000000c , 0x00000036 
+ 00029074  0x00005a4f call  0x00007145 
+ 00029075  0x00005a51 call  0x000071ba 
+ 00029076  0x00005a52 force  0x0000003a , 0x00000036 
+ 00029077  0x00005a53 force  0x00000008 , 0x00000036 
+ 00029078  0x00005a54 branch  0x00007145 
+ 00029079  0x00005a57 compare  0x00000000 , 0x00000039 , 0x00000003 
+ 00029080  0x00005a58 rtn  0x00000001 
+ 00029081  0x00005a59 deposit  0x00000006 
+ 00029082  0x00005a5a iadd  0x00000039 , 0x00000005 
+ 00029083  0x00005a5b force  0x00000000 , 0x0000003f 
+ 00029084  0x00005a5d istore  0x00000001 , 0x00000005 
+ 00029085  0x00005a5e increase  0x00000001 , 0x00000039 
+ 00029086  0x00005a5f compare  0x00000000 , 0x00000039 , 0x00000003 
+ 00029087  0x00005a60 rtn  0x00000001 
+ 00029088  0x00005a61 branch  0x0000719c 
+ 00029089  0x00005a64 force  0x00000000 , 0x00000038 
+ 00029090  0x00005a66 deposit  0x00000039 
+ 00029091  0x00005a67 branch  0x000071a6 , 0x00000034 
+ 00029092  0x00005a68 ifetch  0x00000004 , 0x00000006 
+ 00029093  0x00005a69 increase  0xfffffffc , 0x00000039 
+ 00029094  0x00005a6b iforce  0x0000002f 
+ 00029095  0x00005a6c increase  0x00000001 , 0x00000038 
+ 00029096  0x00005a6d compare  0x00000004 , 0x00000038 , 0x0000000f 
+ 00029097  0x00005a6e rtn  0x00000001 
+ 00029098  0x00005a6f branch  0x000071a2 
+ 00029099  0x00005a72 force  0x00000008 , 0x00000038 
+ 00029100  0x00005a73 branch  0x000071b0 
+ 00029101  0x00005a75 force  0x00000004 , 0x00000038 
+ 00029102  0x00005a76 branch  0x000071b0 
+ 00029103  0x00005a78 force  0x00000000 , 0x00000038 
+ 00029104  0x00005a7a force  0x00000004 , 0x00000039 
+ 00029105  0x00005a7c ifetch  0x00000004 , 0x00000006 
+ 00029106  0x00005a7d iforce  0x0000002f 
+ 00029107  0x00005a7e increase  0x00000001 , 0x00000038 
+ 00029108  0x00005a7f loop  0x000071b1 
+ 00029109  0x00005a80 rtn 
+ 00029110  0x00005a83 arg  0x000003a0 , 0x00000006 
+ 00029111  0x00005a84 branch  0x000071ad 
+ 00029112  0x00005a87 force  0x00000004 , 0x00000039 
+ 00029113  0x00005a88 branch  0x000071bd 
+ 00029114  0x00005a8b force  0x00000000 , 0x00000038 
+ 00029115  0x00005a8d force  0x00000004 , 0x00000039 
+ 00029116  0x00005a8f force  0x00000000 , 0x0000002f 
+ 00029117  0x00005a91 increase  0x00000001 , 0x00000038 
+ 00029118  0x00005a92 loop  0x000071bc 
+ 00029119  0x00005a93 rtn 
+ 00029120  0x00005a96 force  0x0000000c , 0x00000038 
+ 00029121  0x00005a97 force  0x00000004 , 0x00000039 
+ 00029122  0x00005a99 deposit  0x0000002f 
+ 00029123  0x00005a9a istore  0x00000004 , 0x00000005 
+ 00029124  0x00005a9b increase  0x00000001 , 0x00000038 
+ 00029125  0x00005a9c loop  0x000071c2 
+ 00029126  0x00005a9d rtn 
+ 00029127  0x00005aa0 force  0x0000000c , 0x00000038 
+ 00029128  0x00005aa1 copy  0x00000013 , 0x00000005 
+ 00029129  0x00005aa2 add  0x00000012 , 0x00000001 , 0x00000039 
+ 00029130  0x00005aa3 sub  0x00000039 , 0x0000000f , 0x0000003e 
+ 00029131  0x00005aa4 branch  0x000071cd , 0x00000002 
+ 00029132  0x00005aa5 force  0x00000010 , 0x00000039 
+ 00029133  0x00005aa7 deposit  0x0000002f 
+ 00029134  0x00005aa8 sub  0x00000039 , 0x00000003 , 0x0000003e 
+ 00029135  0x00005aa9 branch  0x000071d5 , 0x00000002 
+ 00029136  0x00005aaa istore  0x00000004 , 0x00000005 
+ 00029137  0x00005aab increase  0xfffffffc , 0x00000039 
+ 00029138  0x00005aac rtn  0x00000005 
+ 00029139  0x00005aad increase  0x00000001 , 0x00000038 
+ 00029140  0x00005aae branch  0x000071cd 
+ 00029141  0x00005ab0 istore  0x00000001 , 0x00000005 
+ 00029142  0x00005ab1 rshift8  0x0000003f , 0x0000003f 
+ 00029143  0x00005ab2 loop  0x000071d5 
+ 00029144  0x00005ab3 rtn 
+ 00029145  0x00005ab7 force  0x0000000c , 0x00000038 
+ 00029146  0x00005ab8 force  0x00000004 , 0x00000039 
+ 00029147  0x00005aba ifetch  0x00000004 , 0x00000006 
+ 00029148  0x00005abb isub  0x0000002f , 0x0000003e 
+ 00029149  0x00005abc nrtn  0x00000005 
+ 00029150  0x00005abd increase  0x00000001 , 0x00000038 
+ 00029151  0x00005abe loop  0x000071db 
+ 00029152  0x00005abf force  0x00000000 , 0x0000003e 
+ 00029153  0x00005ac0 rtn 
+ 00029154  0x00005ac3 hfetch  0x00000001 , 0x00008050 
+ 00029155  0x00005ac4 set0  0x00000000 , 0x0000003f 
+ 00029156  0x00005ac5 hstore  0x00000001 , 0x00008050 
+ 00029157  0x00005ac6 rtn 
+ 00029158  0x00005ac9 hfetch  0x00000001 , 0x00008050 
+ 00029159  0x00005aca set1  0x00000000 , 0x0000003f 
+ 00029160  0x00005acb hstore  0x00000001 , 0x00008050 
+ 00029161  0x00005acc rtn 
+ 00029162  0x00005acf arg  0x000007aa , 0x00000005 
+ 00029163  0x00005ad0 setsect  0x00000000 , 0x0003ffff 
+ 00029164  0x00005ad1 setsect  0x00000001 , 0x0003ffff 
+ 00029165  0x00005ad2 setsect  0x00000002 , 0x0003ffff 
+ 00029166  0x00005ad3 setsect  0x00000003 , 0x0003fbff 
+ 00029167  0x00005ad4 istore  0x00000009 , 0x00000005 
+ 00029168  0x00005ad5 setsect  0x00000000 , 0x0003ffff 
+ 00029169  0x00005ad6 setsect  0x00000001 , 0x0003ffff 
+ 00029170  0x00005ad7 setsect  0x00000002 , 0x0003ffff 
+ 00029171  0x00005ad8 setsect  0x00000003 , 0x0003ffff 
+ 00029172  0x00005ad9 istore  0x00000009 , 0x00000005 
+ 00029173  0x00005ada setsect  0x00000000 , 0x0003ffff 
+ 00029174  0x00005adb setsect  0x00000001 , 0x0003ffff 
+ 00029175  0x00005adc setsect  0x00000002 , 0x0003cfff 
+ 00029176  0x00005add setsect  0x00000003 , 0x0003ffff 
+ 00029177  0x00005ade istore  0x00000009 , 0x00000005 
+ 00029178  0x00005adf setsect  0x00000000 , 0x0003ffff 
+ 00029179  0x00005ae0 setsect  0x00000001 , 0x0003ffff 
+ 00029180  0x00005ae1 setsect  0x00000002 , 0x0003ffef 
+ 00029181  0x00005ae2 setsect  0x00000003 , 0x0003ffff 
+ 00029182  0x00005ae3 istore  0x00000009 , 0x00000005 
+ 00029183  0x00005ae4 setsect  0x00000000 , 0x0003ffff 
+ 00029184  0x00005ae5 setsect  0x00000001 , 0x0003ffff 
+ 00029185  0x00005ae6 setsect  0x00000002 , 0x0003ffff 
+ 00029186  0x00005ae7 setsect  0x00000003 , 0x0003ffff 
+ 00029187  0x00005ae8 istore  0x00000009 , 0x00000005 
+ 00029188  0x00005ae9 setsect  0x00000000 , 0x0003ffff 
+ 00029189  0x00005aea setsect  0x00000001 , 0x00026c7f 
+ 00029190  0x00005aeb setsect  0x00000002 , 0x0000146b 
+ 00029191  0x00005aec setsect  0x00000003 , 0x00037bb3 
+ 00029192  0x00005aed istore  0x00000009 , 0x00000005 
+ 00029193  0x00005aee setsect  0x00000000 , 0x0001feb8 
+ 00029194  0x00005aef setsect  0x00000001 , 0x00010c12 
+ 00029195  0x00005af0 setsect  0x00000002 , 0x0002b722 
+ 00029196  0x00005af1 setsect  0x00000003 , 0x00029fa6 
+ 00029197  0x00005af2 istore  0x00000009 , 0x00000005 
+ 00029198  0x00005af3 setsect  0x00000000 , 0x0000e70f 
+ 00029199  0x00005af4 setsect  0x00000001 , 0x00016720 
+ 00029200  0x00005af5 setsect  0x00000002 , 0x0000519e 
+ 00029201  0x00005af6 setsect  0x00000003 , 0x00019084 
+ 00029202  0x00005af7 istore  0x00000009 , 0x00000005 
+ 00029203  0x00005af8 setsect  0x00000000 , 0x00031012 
+ 00029204  0x00005af9 setsect  0x00000001 , 0x000360bf 
+ 00029205  0x00005afa setsect  0x00000002 , 0x0003f0af 
+ 00029206  0x00005afb setsect  0x00000003 , 0x000003d3 
+ 00029207  0x00005afc istore  0x00000009 , 0x00000005 
+ 00029208  0x00005afd setsect  0x00000000 , 0x0003a188 
+ 00029209  0x00005afe setsect  0x00000001 , 0x00003ad0 
+ 00029210  0x00005aff setsect  0x00000002 , 0x0003cbf2 
+ 00029211  0x00005b00 setsect  0x00000003 , 0x000243d9 
+ 00029212  0x00005b01 istore  0x00000009 , 0x00000005 
+ 00029213  0x00005b02 setsect  0x00000000 , 0x0002b030 
+ 00029214  0x00005b03 setsect  0x00000001 , 0x00036a03 
+ 00029215  0x00005b04 setsect  0x00000002 , 0x00011188 
+ 00029216  0x00005b05 setsect  0x00000003 , 0x0001e520 
+ 00029217  0x00005b06 istore  0x00000009 , 0x00000005 
+ 00029218  0x00005b07 setsect  0x00000000 , 0x0003a11e 
+ 00029219  0x00005b08 setsect  0x00000001 , 0x0000fe5d 
+ 00029220  0x00005b09 setsect  0x00000002 , 0x0000dd57 
+ 00029221  0x00005b0a setsect  0x00000003 , 0x0001ac93 
+ 00029222  0x00005b0b istore  0x00000009 , 0x00000005 
+ 00029223  0x00005b0c setsect  0x00000000 , 0x000011ed 
+ 00029224  0x00005b0d setsect  0x00000001 , 0x000218c4 
+ 00029225  0x00005b0e setsect  0x00000002 , 0x00008da7 
+ 00029226  0x00005b0f setsect  0x00000003 , 0x000257ff 
+ 00029227  0x00005b10 istore  0x00000009 , 0x00000005 
+ 00029228  0x00005b11 setsect  0x00000000 , 0x0003192b 
+ 00029229  0x00005b12 setsect  0x00000001 , 0x00034641 
+ 00029230  0x00005b13 setsect  0x00000002 , 0x0001be0c 
+ 00029231  0x00005b14 setsect  0x00000003 , 0x000366ad 
+ 00029232  0x00005b15 istore  0x00000009 , 0x00000005 
+ 00029233  0x00005b16 setsect  0x00000000 , 0x00001f83 
+ 00029234  0x00005b17 setsect  0x00000001 , 0x00015a23 
+ 00029235  0x00005b18 setsect  0x00000002 , 0x0003f9b0 
+ 00029236  0x00005b19 setsect  0x00000003 , 0x00003949 
+ 00029237  0x00005b1a istore  0x00000009 , 0x00000005 
+ 00029238  0x00005b1b setsect  0x00000000 , 0x00013a51 
+ 00029239  0x00005b1c setsect  0x00000001 , 0x000153fd 
+ 00029240  0x00005b1d setsect  0x00000002 , 0x0003372a 
+ 00029241  0x00005b1e setsect  0x00000003 , 0x0000f1bb 
+ 00029242  0x00005b1f istore  0x00000009 , 0x00000005 
+ 00029243  0x00005b20 setsect  0x00000000 , 0x0003ae85 
+ 00029244  0x00005b21 setsect  0x00000001 , 0x0001eed9 
+ 00029245  0x00005b22 setsect  0x00000002 , 0x00009e66 
+ 00029246  0x00005b23 setsect  0x00000003 , 0x000001a8 
+ 00029247  0x00005b24 istore  0x00000008 , 0x00000005 
+ 00029248  0x00005b25 rtn 
+ 00029249  0x00005b2a arg  0x00000842 , 0x00000005 
+ 00029250  0x00005b2b setsect  0x00000000 , 0x0003ffff 
+ 00029251  0x00005b2c setsect  0x00000001 , 0x0003ffff 
+ 00029252  0x00005b2d setsect  0x00000002 , 0x0003ffff 
+ 00029253  0x00005b2e setsect  0x00000003 , 0x0003ffff 
+ 00029254  0x00005b2f istore  0x00000009 , 0x00000005 
+ 00029255  0x00005b30 setsect  0x00000000 , 0x0003ffff 
+ 00029256  0x00005b31 setsect  0x00000001 , 0x0000003f 
+ 00029257  0x00005b32 setsect  0x00000002 , 0x00000000 
+ 00029258  0x00005b33 setsect  0x00000003 , 0x00000000 
+ 00029259  0x00005b34 istore  0x00000009 , 0x00000005 
+ 00029260  0x00005b35 setsect  0x00000000 , 0x00000000 
+ 00029261  0x00005b36 setsect  0x00000001 , 0x00000000 
+ 00029262  0x00005b37 setsect  0x00000002 , 0x00001000 
+ 00029263  0x00005b38 setsect  0x00000003 , 0x00000000 
+ 00029264  0x00005b39 istore  0x00000009 , 0x00000005 
+ 00029265  0x00005b3a setsect  0x00000000 , 0x0003ff00 
+ 00029266  0x00005b3b setsect  0x00000001 , 0x0003ffff 
+ 00029267  0x00005b3c setsect  0x00000002 , 0x0003ffcf 
+ 00029268  0x00005b3d setsect  0x00000003 , 0x0003ffff 
+ 00029269  0x00005b3e istore  0x00000009 , 0x00000005 
+ 00029270  0x00005b3f setsect  0x00000000 , 0x0003ffff 
+ 00029271  0x00005b40 setsect  0x00000001 , 0x0003ffff 
+ 00029272  0x00005b41 setsect  0x00000002 , 0x0003ffff 
+ 00029273  0x00005b42 setsect  0x00000003 , 0x000003ff 
+ 00029274  0x00005b43 istore  0x00000009 , 0x00000005 
+ 00029275  0x00005b44 setsect  0x00000000 , 0x00000000 
+ 00029276  0x00005b45 setsect  0x00000001 , 0x00000000 
+ 00029277  0x00005b46 setsect  0x00000002 , 0x00000000 
+ 00029278  0x00005b47 setsect  0x00000003 , 0x00000000 
+ 00029279  0x00005b48 istore  0x00000009 , 0x00000005 
+ 00029280  0x00005b49 setsect  0x00000000 , 0x00010000 
+ 00029281  0x00005b4a setsect  0x00000001 , 0x00000000 
+ 00029282  0x00005b4b setsect  0x00000002 , 0x0003f000 
+ 00029283  0x00005b4c setsect  0x00000003 , 0x0003ffff 
+ 00029284  0x00005b4d istore  0x00000009 , 0x00000005 
+ 00029285  0x00005b4e setsect  0x00000000 , 0x000296ff 
+ 00029286  0x00005b4f setsect  0x00000001 , 0x00022630 
+ 00029287  0x00005b50 setsect  0x00000002 , 0x0003945d 
+ 00029288  0x00005b51 setsect  0x00000003 , 0x0003d284 
+ 00029289  0x00005b52 istore  0x00000009 , 0x00000005 
+ 00029290  0x00005b53 setsect  0x00000000 , 0x000333a0 
+ 00029291  0x00005b54 setsect  0x00000001 , 0x00004b7a 
+ 00029292  0x00005b55 setsect  0x00000002 , 0x000037d8 
+ 00029293  0x00005b56 setsect  0x00000003 , 0x0003c9dc 
+ 00029294  0x00005b57 istore  0x00000009 , 0x00000005 
+ 00029295  0x00005b58 setsect  0x00000000 , 0x0003a440 
+ 00029296  0x00005b59 setsect  0x00000001 , 0x0001b958 
+ 00029297  0x00005b5a setsect  0x00000002 , 0x00038bce 
+ 00029298  0x00005b5b setsect  0x00000003 , 0x0001091f 
+ 00029299  0x00005b5c istore  0x00000009 , 0x00000005 
+ 00029300  0x00005b5d setsect  0x00000000 , 0x0002e12c 
+ 00029301  0x00005b5e setsect  0x00000001 , 0x0001f47c 
+ 00029302  0x00005b5f setsect  0x00000002 , 0x000356b1 
+ 00029303  0x00005b60 setsect  0x00000003 , 0x0002fd47 
+ 00029304  0x00005b61 istore  0x00000009 , 0x00000005 
+ 00029305  0x00005b62 setsect  0x00000000 , 0x00006837 
+ 00029306  0x00005b63 setsect  0x00000001 , 0x0002ed90 
+ 00029307  0x00005b64 setsect  0x00000002 , 0x0001ecec 
+ 00029308  0x00005b65 setsect  0x00000003 , 0x0001acc5 
+ 00029309  0x00005b66 istore  0x00000009 , 0x00000005 
+ 00029310  0x00005b67 setsect  0x00000000 , 0x00023357 
+ 00029311  0x00005b68 setsect  0x00000001 , 0x00018af3 
+ 00029312  0x00005b69 setsect  0x00000002 , 0x0000f9e1 
+ 00029313  0x00005b6a setsect  0x00000003 , 0x000129f0 
+ 00029314  0x00005b6b istore  0x00000009 , 0x00000005 
+ 00029315  0x00005b6c setsect  0x00000000 , 0x0002e7eb 
+ 00029316  0x00005b6d setsect  0x00000001 , 0x0003e6e3 
+ 00029317  0x00005b6e setsect  0x00000002 , 0x0003e1a7 
+ 00029318  0x00005b6f setsect  0x00000003 , 0x00010b8b 
+ 00029319  0x00005b70 istore  0x00000009 , 0x00000005 
+ 00029320  0x00005b71 setsect  0x00000000 , 0x00024fe3 
+ 00029321  0x00005b72 setsect  0x00000001 , 0x000020ef 
+ 00029322  0x00005b73 setsect  0x00000002 , 0x0001b5a6 
+ 00029323  0x00005b74 setsect  0x00000003 , 0x0000dc2f 
+ 00029324  0x00005b75 istore  0x00000009 , 0x00000005 
+ 00029325  0x00005b76 setsect  0x00000000 , 0x00013860 
+ 00029326  0x00005b77 setsect  0x00000001 , 0x0002bd69 
+ 00029327  0x00005b78 setsect  0x00000002 , 0x0000391a 
+ 00029328  0x00005b79 setsect  0x00000003 , 0x0001b222 
+ 00029329  0x00005b7a istore  0x00000009 , 0x00000005 
+ 00029330  0x00005b7b rtn 
+ 00029331  0x00005b81 rtn  0x0000002b 
+ 00029332  0x00005b82 call  0x000074fd 
+ 00029333  0x00005b83 call  0x000075c9 
+ 00029334  0x00005b84 hjam  0x00000000 , 0x00008081 
+ 00029335  0x00005b85 call  0x000073a5 
+ 00029336  0x00005b86 setarg  0x0000737c 
+ 00029337  0x00005b87 store  0x00000002 , 0x0000428c 
+ 00029338  0x00005b89 setarg  0x0000748c 
+ 00029339  0x00005b8a store  0x00000002 , 0x0000428e 
+ 00029340  0x00005b8c setarg  0x00007365 
+ 00029341  0x00005b8d store  0x00000002 , 0x00004298 
+ 00029342  0x00005b8f setarg  0x0000737a 
+ 00029343  0x00005b90 store  0x00000002 , 0x00004294 
+ 00029344  0x00005b92 setarg  0x00007371 
+ 00029345  0x00005b93 store  0x00000002 , 0x00004290 
+ 00029346  0x00005b95 setarg  0x000072f4 
+ 00029347  0x00005b96 store  0x00000002 , 0x00004296 
+ 00029348  0x00005b98 setarg  0x000072ef 
+ 00029349  0x00005b99 store  0x00000002 , 0x0000428a 
+ 00029350  0x00005b9b setarg  0x000074e5 
+ 00029351  0x00005b9c store  0x00000002 , 0x0000429c 
+ 00029352  0x00005b9f setarg  0x000074f4 
+ 00029353  0x00005ba0 store  0x00000002 , 0x0000429a 
+ 00029354  0x00005ba1 call  0x00007496 
+ 00029355  0x00005ba2 jam  0x00000000 , 0x00004212 
+ 00029356  0x00005ba3 jam  0x00000000 , 0x000048c7 
+ 00029357  0x00005ba4 set1  0x00000025 , 0x00000000 
+ 00029358  0x00005ba5 bpatch  0x000000d8 , 0x0000403b 
+ 00029359  0x00005ba6 fetch  0x00000001 , 0x00004755 
+ 00029360  0x00005ba7 beq  0x00000000 , 0x000072b8 
+ 00029361  0x00005ba8 call  0x00007382 
+ 00029362  0x00005ba9 call  0x00007cf6 
+ 00029363  0x00005baa call  0x00007d02 
+ 00029364  0x00005bab jam  0x00000000 , 0x00004756 
+ 00029365  0x00005bac fetch  0x00000002 , 0x0000470b 
+ 00029366  0x00005bad rtnbit1  0x0000000c 
+ 00029367  0x00005bae branch  0x00003e75 
+ 00029368  0x00005bb2 jam  0x00000001 , 0x00004756 
+ 00029369  0x00005bb3 jam  0x00000001 , 0x0000475b 
+ 00029370  0x00005bb4 call  0x00007382 
+ 00029371  0x00005bb5 setarg  0x00004771 
+ 00029372  0x00005bb6 call  0x0000738e 
+ 00029373  0x00005bb8 call  0x00007d44 
+ 00029374  0x00005bb9 fetch  0x00000001 , 0x00004713 
+ 00029375  0x00005bba nbranch  0x000072bd , 0x00000034 
+ 00029376  0x00005bbd jam  0x00000001 , 0x000043ff 
+ 00029377  0x00005bbe setarg  0x00000000 
+ 00029378  0x00005bbf store  0x00000004 , 0x00004729 
+ 00029379  0x00005bc0 call  0x00007382 
+ 00029380  0x00005bc3 fetch  0x00000002 , 0x00004748 
+ 00029381  0x00005bc4 store  0x00000002 , 0x0000474a 
+ 00029382  0x00005bc5 call  0x000072e5 
+ 00029383  0x00005bc7 jam  0x00000000 , 0x00004746 
+ 00029384  0x00005bc8 call  0x00005234 
+ 00029385  0x00005bc9 fetch  0x00000006 , 0x0000453e 
+ 00029386  0x00005bca call  0x000072d6 
+ 00029387  0x00005bcb call  0x000072d2 
+ 00029388  0x00005bcc rtn 
+ 00029389  0x00005bd1 store  0x00000002 , 0x000041f4 
+ 00029390  0x00005bd2 increase  0xfffffffc , 0x0000003f 
+ 00029391  0x00005bd3 store  0x00000002 , 0x0000451c 
+ 00029392  0x00005bd4 store  0x00000002 , 0x0000451e 
+ 00029393  0x00005bd5 rtn 
+ 00029394  0x00005bd8 fetcht  0x00000002 , 0x00004741 
+ 00029395  0x00005bd9 rtn  0x00000034 
+ 00029396  0x00005bda istore  0x00000006 , 0x00000002 
+ 00029397  0x00005bdb rtn 
+ 00029398  0x00005bde store  0x00000006 , 0x00000100 
+ 00029399  0x00005bdf fetch  0x00000001 , 0x00000100 
+ 00029400  0x00005be0 store  0x00000001 , 0x0000010b 
+ 00029401  0x00005be1 ifetch  0x00000001 , 0x00000006 
+ 00029402  0x00005be2 store  0x00000001 , 0x0000010a 
+ 00029403  0x00005be3 ifetch  0x00000001 , 0x00000006 
+ 00029404  0x00005be4 store  0x00000001 , 0x00000109 
+ 00029405  0x00005be5 ifetch  0x00000001 , 0x00000006 
+ 00029406  0x00005be6 store  0x00000001 , 0x00000108 
+ 00029407  0x00005be7 ifetch  0x00000001 , 0x00000006 
+ 00029408  0x00005be8 store  0x00000001 , 0x00000107 
+ 00029409  0x00005be9 ifetch  0x00000001 , 0x00000006 
+ 00029410  0x00005bea store  0x00000001 , 0x00000106 
+ 00029411  0x00005beb fetch  0x00000006 , 0x00000106 
+ 00029412  0x00005bec rtn 
+ 00029413  0x00005bef jam  0x00000000 , 0x000048bb 
+ 00029414  0x00005bf0 fetch  0x00000002 , 0x0000474e 
+ 00029415  0x00005bf1 nbranch  0x000072ec , 0x00000034 
+ 00029416  0x00005bf2 setarg  0x00004763 
+ 00029417  0x00005bf3 call  0x0000738e 
+ 00029418  0x00005bf4 setarg  0x000000a0 
+ 00029419  0x00005bf5 call  0x000072cd 
+ 00029420  0x00005bf7 fetch  0x00000002 , 0x0000474c 
+ 00029421  0x00005bf8 store  0x00000002 , 0x0000474e 
+ 00029422  0x00005bf9 rtn 
+ 00029423  0x00005c02 fetch  0x00000001 , 0x00004740 
+ 00029424  0x00005c03 beq  0x00000001 , 0x00003e35 
+ 00029425  0x00005c04 fetch  0x00000001 , 0x00004877 
+ 00029426  0x00005c05 nbranch  0x00003e35 , 0x00000034 
+ 00029427  0x00005c06 branch  0x00003e37 
+ 00029428  0x00005c09 copy  0x00000013 , 0x0000003f 
+ 00029429  0x00005c0b beq  0x0000002d , 0x00007475 
+ 00029430  0x00005c0c beq  0x00000010 , 0x0000747a 
+ 00029431  0x00005c0d beq  0x00000014 , 0x00007334 
+ 00029432  0x00005c0e beq  0x00000015 , 0x0000734c 
+ 00029433  0x00005c0f and  0x0000003f , 0x0000000f , 0x00000002 
+ 00029434  0x00005c10 and_into  0x000000f0 , 0x0000003f 
+ 00029435  0x00005c11 beq  0x00000050 , 0x000072fd 
+ 00029436  0x00005c12 rtn 
+ 00029437  0x00005c15 storet  0x00000001 , 0x0000024e 
+ 00029438  0x00005c17 fetch  0x00000001 , 0x0000024e 
+ 00029439  0x00005c18 rtn  0x00000034 
+ 00029440  0x00005c19 increase  0xffffffff , 0x0000003f 
+ 00029441  0x00005c1a store  0x00000001 , 0x0000024e 
+ 00029442  0x00005c1b set1  0x00000025 , 0x00000000 
+ 00029443  0x00005c1c bpatch  0x000000d9 , 0x0000403b 
+ 00029444  0x00005c1d call  0x00007d1f 
+ 00029445  0x00005c1e call  0x0000731f 
+ 00029446  0x00005c1f call  0x0000732c 
+ 00029447  0x00005c20 call  0x0000746c 
+ 00029448  0x00005c21 call  0x00007464 
+ 00029449  0x00005c22 call  0x00007313 
+ 00029450  0x00005c23 call  0x0000730c 
+ 00029451  0x00005c24 branch  0x000072fe 
+ 00029452  0x00005c27 fetch  0x00000001 , 0x000048c7 
+ 00029453  0x00005c28 rtn  0x00000034 
+ 00029454  0x00005c29 increase  0xffffffff , 0x0000003f 
+ 00029455  0x00005c2a store  0x00000001 , 0x000048c7 
+ 00029456  0x00005c2b nrtn  0x00000034 
+ 00029457  0x00005c2c jam  0x00000005 , 0x00004212 
+ 00029458  0x00005c2d rtn 
+ 00029459  0x00005c30 fetch  0x00000001 , 0x000048c2 
+ 00029460  0x00005c31 rtn  0x00000034 
+ 00029461  0x00005c32 increase  0xffffffff , 0x0000003f 
+ 00029462  0x00005c33 store  0x00000001 , 0x000048c2 
+ 00029463  0x00005c34 nrtn  0x00000034 
+ 00029464  0x00005c35 fetch  0x00000001 , 0x00000362 
+ 00029465  0x00005c36 bbit0  0x00000004 , 0x0000731c 
+ 00029466  0x00005c37 jam  0x00000001 , 0x000048c2 
+ 00029467  0x00005c38 rtn 
+ 00029468  0x00005c3b call  0x00003e7f 
+ 00029469  0x00005c3c jam  0x00000012 , 0x000009bd 
+ 00029470  0x00005c3d branch  0x00007d90 
+ 00029471  0x00005c41 fetch  0x00000001 , 0x00004756 
+ 00029472  0x00005c42 rtnne  0x00000001 
+ 00029473  0x00005c43 fetch  0x00000002 , 0x0000474e 
+ 00029474  0x00005c44 rtn  0x00000034 
+ 00029475  0x00005c45 increase  0xffffffff , 0x0000003f 
+ 00029476  0x00005c46 store  0x00000002 , 0x0000474e 
+ 00029477  0x00005c47 nrtn  0x00000034 
+ 00029478  0x00005c48 fetch  0x00000002 , 0x0000470b 
+ 00029479  0x00005c49 bbit1  0x00000009 , 0x0000732a 
+ 00029480  0x00005c4a setarg  0x0000476a 
+ 00029481  0x00005c4b call  0x0000738e 
+ 00029482  0x00005c4d setarg  0x00000140 
+ 00029483  0x00005c4e branch  0x000072cd 
+ 00029484  0x00005c51 fetch  0x00000002 , 0x0000474a 
+ 00029485  0x00005c52 rtn  0x00000034 
+ 00029486  0x00005c53 increase  0xffffffff , 0x0000003f 
+ 00029487  0x00005c54 store  0x00000002 , 0x0000474a 
+ 00029488  0x00005c55 nrtn  0x00000034 
+ 00029489  0x00005c57 jam  0x00000002 , 0x00004756 
+ 00029490  0x00005c58 call  0x00007487 
+ 00029491  0x00005c5b rtn 
+ 00029492  0x00005c5e jam  0x00000000 , 0x00004131 
+ 00029493  0x00005c5f fetch  0x00000002 , 0x00004748 
+ 00029494  0x00005c60 store  0x00000002 , 0x0000474a 
+ 00029495  0x00005c61 jam  0x00000000 , 0x00004746 
+ 00029496  0x00005c63 call  0x00003e61 
+ 00029497  0x00005c67 setarg  0x00112233 
+ 00029498  0x00005c68 store  0x00000003 , 0x000044a2 
+ 00029499  0x00005c69 setarg  0x00445566 
+ 00029500  0x00005c6a istore  0x00000003 , 0x00000005 
+ 00029501  0x00005c6b setarg  0x00778899 
+ 00029502  0x00005c6c istore  0x00000003 , 0x00000005 
+ 00029503  0x00005c6d setarg  0x00001122 
+ 00029504  0x00005c6e istore  0x00000003 , 0x00000005 
+ 00029505  0x00005c6f setarg  0x00334455 
+ 00029506  0x00005c70 istore  0x00000003 , 0x00000005 
+ 00029507  0x00005c71 setarg  0x00000066 
+ 00029508  0x00005c72 istore  0x00000001 , 0x00000005 
+ 00029509  0x00005c74 call  0x00003e61 
+ 00029510  0x00005c77 call  0x00003e7f 
+ 00029511  0x00005c79 jam  0x00000000 , 0x0000474e 
+ 00029512  0x00005c7a setarg  0x0000477f 
+ 00029513  0x00005c7b call  0x0000738e 
+ 00029514  0x00005c7c jam  0x00000000 , 0x0000470e 
+ 00029515  0x00005c7d rtn 
+ 00029516  0x00005c82 jam  0x00000000 , 0x00004212 
+ 00029517  0x00005c83 jam  0x00000000 , 0x000048c7 
+ 00029518  0x00005c84 jam  0x00000000 , 0x000044b2 
+ 00029519  0x00005c85 jam  0x00000000 , 0x000048c6 
+ 00029520  0x00005c86 jam  0x00000000 , 0x000048c0 
+ 00029521  0x00005c87 call  0x0000749b 
+ 00029522  0x00005c88 fetch  0x00000002 , 0x00004748 
+ 00029523  0x00005c89 store  0x00000002 , 0x0000474a 
+ 00029524  0x00005c8a fetch  0x00000001 , 0x00004743 
+ 00029525  0x00005c8b bne  0x00000000 , 0x00007369 
+ 00029526  0x00005c8c call  0x000072e5 
+ 00029527  0x00005c8d jam  0x00000000 , 0x00004746 
+ 00029528  0x00005c8e setarg  0x00000000 
+ 00029529  0x00005c8f store  0x00000002 , 0x00000286 
+ 00029530  0x00005c90 setarg  0x00000000 
+ 00029531  0x00005c91 store  0x00000002 , 0x00000288 
+ 00029532  0x00005c93 call  0x00007363 
+ 00029533  0x00005c95 call  0x00003e63 
+ 00029534  0x00005c99 rtn 
+ 00029535  0x00005c9d jam  0x00000001 , 0x00004740 
+ 00029536  0x00005c9e rtn 
+ 00029537  0x00005ca0 fetch  0x00000001 , 0x00004740 
+ 00029538  0x00005ca1 rtn 
+ 00029539  0x00005ca4 jam  0x00000000 , 0x00004740 
+ 00029540  0x00005ca5 rtn 
+ 00029541  0x00005ca8 branch  0x00003e75 
+ 00029542  0x00005cab jam  0x00000001 , 0x00004743 
+ 00029543  0x00005cad fetch  0x00000002 , 0x0000470b 
+ 00029544  0x00005cae bbit1  0x00000009 , 0x00003e6b 
+ 00029545  0x00005cb0 call  0x0000736d 
+ 00029546  0x00005cb1 call  0x00007f6b 
+ 00029547  0x00005cb2 jam  0x00000000 , 0x00004743 
+ 00029548  0x00005cb3 branch  0x00003e0a 
+ 00029549  0x00005cb6 setarg  0x00000000 
+ 00029550  0x00005cb7 store  0x00000002 , 0x00000286 
+ 00029551  0x00005cb8 store  0x00000002 , 0x00000288 
+ 00029552  0x00005cb9 branch  0x00007363 
+ 00029553  0x00005cbd fetch  0x00000001 , 0x00004747 
+ 00029554  0x00005cbe ncall  0x00007375 , 0x00000034 
+ 00029555  0x00005cbf call  0x000074ca 
+ 00029556  0x00005cc0 branch  0x000073c5 
+ 00029557  0x00005cc5 jam  0x00000000 , 0x00004747 
+ 00029558  0x00005cc6 jam  0x00000003 , 0x000009bd 
+ 00029559  0x00005cc7 branch  0x00004bd6 
+ 00029560  0x00005cc9 jam  0x00000001 , 0x00004747 
+ 00029561  0x00005cca rtn 
+ 00029562  0x00005ccd call  0x000074ca 
+ 00029563  0x00005cce branch  0x000073c5 
+ 00029564  0x00005cd1 call  0x000073af 
+ 00029565  0x00005cd2 fetch  0x00000002 , 0x000047b6 
+ 00029566  0x00005cd3 branch  0x00007380 , 0x00000034 
+ 00029567  0x00005cd4 branch  0x00003e75 
+ 00029568  0x00005cd6 call  0x00006509 
+ 00029569  0x00005cd7 branch  0x0000748c 
+ 00029570  0x00005cde fetch  0x00000001 , 0x0000475e 
+ 00029571  0x00005cdf copy  0x0000003f , 0x00000039 
+ 00029572  0x00005ce0 setarg  0x0000475f 
+ 00029573  0x00005ce1 copy  0x0000003f , 0x00000011 
+ 00029574  0x00005ce3 copy  0x00000011 , 0x00000006 
+ 00029575  0x00005ce4 ifetch  0x00000001 , 0x00000006 
+ 00029576  0x00005ce5 beq  0x000000ff , 0x0000738c 
+ 00029577  0x00005ce6 copy  0x0000003f , 0x00000002 
+ 00029578  0x00005ce7 store  0x00000001 , 0x0000470e 
+ 00029579  0x00005ce9 call  0x00007d2a 
+ 00029580  0x00005ceb loop  0x00007386 
+ 00029581  0x00005ced rtn 
+ 00029582  0x00005cf3 copy  0x0000003f , 0x00000006 
+ 00029583  0x00005cf4 force  0x00000007 , 0x00000039 
+ 00029584  0x00005cf7 arg  0x000047a2 , 0x00000005 
+ 00029585  0x00005cf8 call  0x00007ecd 
+ 00029586  0x00005cf9 set1  0x00000025 , 0x00000000 
+ 00029587  0x00005cfa bpatch  0x000000da , 0x0000403b 
+ 00029588  0x00005cfb fetch  0x00000001 , 0x000047a2 
+ 00029589  0x00005cfc rtneq  0x000000ff 
+ 00029590  0x00005cfd fetcht  0x00000002 , 0x000047a4 
+ 00029591  0x00005cfe storet  0x00000002 , 0x00004711 
+ 00029592  0x00005cff fetcht  0x00000002 , 0x000047a6 
+ 00029593  0x00005d00 storet  0x00000002 , 0x0000470f 
+ 00029594  0x00005d01 fetcht  0x00000001 , 0x000047a8 
+ 00029595  0x00005d02 storet  0x00000001 , 0x00004713 
+ 00029596  0x00005d04 call  0x00007d2f 
+ 00029597  0x00005d05 fetcht  0x00000001 , 0x000047a3 
+ 00029598  0x00005d06 storet  0x00000001 , 0x0000470e 
+ 00029599  0x00005d07 fetch  0x00000001 , 0x000047a2 
+ 00029600  0x00005d08 beq  0x00000000 , 0x000073a3 
+ 00029601  0x00005d09 beq  0x00000001 , 0x00007d38 
+ 00029602  0x00005d0a beq  0x00000002 , 0x00007d3f 
+ 00029603  0x00005d0c rtn 
+ 00029604  0x00005d0f branch  0x00007d2f 
+ 00029605  0x00005d13 fetch  0x00000001 , 0x000047a9 
+ 00029606  0x00005d14 rtn  0x00000034 
+ 00029607  0x00005d15 copy  0x0000003f , 0x00000039 
+ 00029608  0x00005d16 setarg  0x000047aa 
+ 00029609  0x00005d17 copy  0x0000003f , 0x00000011 
+ 00029610  0x00005d19 ifetcht  0x00000001 , 0x00000011 
+ 00029611  0x00005d1a call  0x000064df 
+ 00029612  0x00005d1b increase  0x00000002 , 0x00000011 
+ 00029613  0x00005d1c loop  0x000073aa 
+ 00029614  0x00005d1e rtn 
+ 00029615  0x00005d24 arg  0x000047aa , 0x00000011 
+ 00029616  0x00005d25 force  0x00000000 , 0x00000012 
+ 00029617  0x00005d26 jam  0x00000000 , 0x000047b6 
+ 00029618  0x00005d28 ifetcht  0x00000001 , 0x00000011 
+ 00029619  0x00005d29 call  0x000064f5 
+ 00029620  0x00005d2a set1  0x00000025 , 0x00000000 
+ 00029621  0x00005d2b bpatch  0x000000db , 0x0000403b 
+ 00029622  0x00005d2c fetch  0x00000002 , 0x000047b6 
+ 00029623  0x00005d2d copy  0x00000012 , 0x00000007 
+ 00029624  0x00005d2e qsetflag  0x00000001 , 0x0000003f 
+ 00029625  0x00005d2f store  0x00000002 , 0x000047b6 
+ 00029626  0x00005d30 increase  0x00000002 , 0x00000011 
+ 00029627  0x00005d31 increase  0x00000001 , 0x00000012 
+ 00029628  0x00005d32 fetch  0x00000001 , 0x000047a9 
+ 00029629  0x00005d33 ixor  0x00000012 , 0x0000003e 
+ 00029630  0x00005d34 nbranch  0x000073b2 , 0x00000005 
+ 00029631  0x00005d36 fetch  0x00000002 , 0x000047b6 
+ 00029632  0x00005d37 fetcht  0x00000002 , 0x000047b8 
+ 00029633  0x00005d38 ixor  0x00000002 , 0x0000003e 
+ 00029634  0x00005d39 rtn  0x00000005 
+ 00029635  0x00005d3a enable  0x00000028 
+ 00029636  0x00005d3b rtn 
+ 00029637  0x00005d3e arg  0x0000000c , 0x00000007 
+ 00029638  0x00005d3f call  0x00007ee2 
+ 00029639  0x00005d40 nrtn  0x00000034 
+ 00029640  0x00005d41 call  0x000074c7 
+ 00029641  0x00005d42 fetch  0x00000001 , 0x0000475b 
+ 00029642  0x00005d43 rtn  0x00000034 
+ 00029643  0x00005d44 disable  0x00000028 
+ 00029644  0x00005d45 call  0x0000748c 
+ 00029645  0x00005d46 set1  0x00000025 , 0x00000000 
+ 00029646  0x00005d47 bpatch  0x000000dc , 0x0000403b 
+ 00029647  0x00005d48 fetch  0x00000001 , 0x000047a9 
+ 00029648  0x00005d49 rtn  0x00000034 
+ 00029649  0x00005d4a call  0x000073af 
+ 00029650  0x00005d4b nbranch  0x00007d28 , 0x00000028 
+ 00029651  0x00005d4c call  0x00007d26 
+ 00029652  0x00005d4d disable  0x00000028 
+ 00029653  0x00005d4e fetch  0x00000002 , 0x00004748 
+ 00029654  0x00005d4f store  0x00000002 , 0x0000474a 
+ 00029655  0x00005d50 fetch  0x00000002 , 0x0000470b 
+ 00029656  0x00005d51 bbit0  0x00000009 , 0x000072e5 
+ 00029657  0x00005d52 call  0x000074de 
+ 00029658  0x00005d53 branch  0x000073f5 , 0x00000002 
+ 00029659  0x00005d54 fetch  0x00000002 , 0x000047b6 
+ 00029660  0x00005d55 store  0x00000002 , 0x000047c0 
+ 00029661  0x00005d56 jam  0x00000000 , 0x000047c2 
+ 00029662  0x00005d57 force  0x00000000 , 0x00000007 
+ 00029663  0x00005d5a set1  0x00000025 , 0x00000000 
+ 00029664  0x00005d5b bpatch  0x000000dd , 0x0000403b 
+ 00029665  0x00005d5c fetch  0x00000002 , 0x000047b8 
+ 00029666  0x00005d5d rshift  0x0000003f , 0x00000002 
+ 00029667  0x00005d5e storet  0x00000002 , 0x000047b8 
+ 00029668  0x00005d5f and  0x0000003f , 0x00000001 , 0x0000003f 
+ 00029669  0x00005d60 fetcht  0x00000002 , 0x000047c0 
+ 00029670  0x00005d61 and  0x00000002 , 0x00000001 , 0x00000011 
+ 00029671  0x00005d62 rshift  0x00000002 , 0x00000002 
+ 00029672  0x00005d63 storet  0x00000002 , 0x000047c0 
+ 00029673  0x00005d64 ixor  0x00000011 , 0x0000003e 
+ 00029674  0x00005d65 ncall  0x000073f9 , 0x00000005 
+ 00029675  0x00005d66 fetch  0x00000001 , 0x000047a9 
+ 00029676  0x00005d67 fetcht  0x00000001 , 0x000047c2 
+ 00029677  0x00005d68 increase  0x00000001 , 0x00000002 
+ 00029678  0x00005d69 storet  0x00000001 , 0x000047c2 
+ 00029679  0x00005d6a copy  0x00000002 , 0x00000007 
+ 00029680  0x00005d6b ixor  0x00000007 , 0x0000003e 
+ 00029681  0x00005d6d nbranch  0x000073df , 0x00000005 
+ 00029682  0x00005d6e fetch  0x00000002 , 0x000047b6 
+ 00029683  0x00005d6f store  0x00000002 , 0x000047b8 
+ 00029684  0x00005d70 rtn 
+ 00029685  0x00005d72 setarg  0x00000000 
+ 00029686  0x00005d73 store  0x00000002 , 0x000047b6 
+ 00029687  0x00005d74 store  0x00000002 , 0x000047b8 
+ 00029688  0x00005d75 rtn 
+ 00029689  0x00005d7b deposit  0x00000011 
+ 00029690  0x00005d7c branch  0x00007419 , 0x00000034 
+ 00029691  0x00005d7d set1  0x00000025 , 0x00000000 
+ 00029692  0x00005d7e bpatch  0x000000de , 0x0000403b 
+ 00029693  0x00005d7f copy  0x00000007 , 0x0000003f 
+ 00029694  0x00005d80 beq  0x00000000 , 0x00007423 
+ 00029695  0x00005d81 beq  0x00000001 , 0x00007427 
+ 00029696  0x00005d82 beq  0x00000002 , 0x0000742b 
+ 00029697  0x00005d83 beq  0x00000003 , 0x0000742f 
+ 00029698  0x00005d84 beq  0x00000004 , 0x00007433 
+ 00029699  0x00005d85 beq  0x00000005 , 0x00007437 
+ 00029700  0x00005d87 fetch  0x00000001 , 0x0000456b 
+ 00029701  0x00005d88 rtnne  0x00000003 
+ 00029702  0x00005d89 fetch  0x00000001 , 0x000048bb 
+ 00029703  0x00005d8a nrtn  0x00000034 
+ 00029704  0x00005d8b ifetch  0x00000001 , 0x00000002 
+ 00029705  0x00005d8c rtn  0x00000034 
+ 00029706  0x00005d8d store  0x00000001 , 0x000047ba 
+ 00029707  0x00005d8e increase  0x00000001 , 0x00000002 
+ 00029708  0x00005d8f storet  0x00000002 , 0x000047bb 
+ 00029709  0x00005d91 fetch  0x00000002 , 0x000047bb 
+ 00029710  0x00005d92 ifetcht  0x00000001 , 0x0000003f 
+ 00029711  0x00005d93 copy  0x00000002 , 0x00000039 
+ 00029712  0x00005d94 iadd  0x00000002 , 0x00000002 
+ 00029713  0x00005d95 storet  0x00000002 , 0x000047bb 
+ 00029714  0x00005d96 copy  0x0000003f , 0x00000002 
+ 00029715  0x00005d97 call  0x0000749c 
+ 00029716  0x00005d98 fetch  0x00000001 , 0x000047ba 
+ 00029717  0x00005d99 increase  0xffffffff , 0x0000003f 
+ 00029718  0x00005d9a store  0x00000001 , 0x000047ba 
+ 00029719  0x00005d9b nbranch  0x0000740d , 0x00000005 
+ 00029720  0x00005d9c branch  0x000074ca 
+ 00029721  0x00005da0 set1  0x00000025 , 0x00000000 
+ 00029722  0x00005da1 bpatch  0x000000df , 0x0000403b 
+ 00029723  0x00005da2 copy  0x00000007 , 0x0000003f 
+ 00029724  0x00005da3 beq  0x00000000 , 0x0000743b 
+ 00029725  0x00005da4 beq  0x00000001 , 0x0000743f 
+ 00029726  0x00005da5 beq  0x00000002 , 0x00007443 
+ 00029727  0x00005da6 beq  0x00000003 , 0x00007447 
+ 00029728  0x00005da7 beq  0x00000004 , 0x0000744b 
+ 00029729  0x00005da8 beq  0x00000005 , 0x0000744f 
+ 00029730  0x00005da9 branch  0x00007404 
+ 00029731  0x00005dac fetch  0x00000001 , 0x000047ab 
+ 00029732  0x00005dad call  0x00007457 
+ 00029733  0x00005dae arg  0x000047c3 , 0x00000002 
+ 00029734  0x00005daf branch  0x00007404 
+ 00029735  0x00005db5 fetch  0x00000001 , 0x000047ad 
+ 00029736  0x00005db6 call  0x00007457 
+ 00029737  0x00005db7 arg  0x000047eb , 0x00000002 
+ 00029738  0x00005db8 branch  0x00007404 
+ 00029739  0x00005dba fetch  0x00000001 , 0x000047af 
+ 00029740  0x00005dbb call  0x00007457 
+ 00029741  0x00005dbc arg  0x00004807 , 0x00000002 
+ 00029742  0x00005dbd branch  0x00007404 
+ 00029743  0x00005dbf fetch  0x00000001 , 0x000047b1 
+ 00029744  0x00005dc0 call  0x00007457 
+ 00029745  0x00005dc1 arg  0x00004823 , 0x00000002 
+ 00029746  0x00005dc2 branch  0x00007404 
+ 00029747  0x00005dc4 fetch  0x00000001 , 0x000047b3 
+ 00029748  0x00005dc5 call  0x00007457 
+ 00029749  0x00005dc6 arg  0x0000483f , 0x00000002 
+ 00029750  0x00005dc7 branch  0x00007404 
+ 00029751  0x00005dc9 fetch  0x00000001 , 0x000047b5 
+ 00029752  0x00005dca call  0x00007457 
+ 00029753  0x00005dcb arg  0x0000485b , 0x00000002 
+ 00029754  0x00005dcc branch  0x00007404 
+ 00029755  0x00005dcf fetch  0x00000001 , 0x000047ab 
+ 00029756  0x00005dd0 call  0x00007453 
+ 00029757  0x00005dd1 arg  0x000047d7 , 0x00000002 
+ 00029758  0x00005dd2 branch  0x00007404 
+ 00029759  0x00005dd8 fetch  0x00000001 , 0x000047ad 
+ 00029760  0x00005dd9 call  0x00007453 
+ 00029761  0x00005dda arg  0x000047f9 , 0x00000002 
+ 00029762  0x00005ddb branch  0x00007404 
+ 00029763  0x00005ddd fetch  0x00000001 , 0x000047af 
+ 00029764  0x00005dde call  0x00007453 
+ 00029765  0x00005ddf arg  0x00004815 , 0x00000002 
+ 00029766  0x00005de0 branch  0x00007404 
+ 00029767  0x00005de2 fetch  0x00000001 , 0x000047b1 
+ 00029768  0x00005de3 call  0x00007453 
+ 00029769  0x00005de4 arg  0x00004831 , 0x00000002 
+ 00029770  0x00005de5 branch  0x00007404 
+ 00029771  0x00005de7 fetch  0x00000001 , 0x000047b3 
+ 00029772  0x00005de8 call  0x00007453 
+ 00029773  0x00005de9 arg  0x0000484d , 0x00000002 
+ 00029774  0x00005dea branch  0x00007404 
+ 00029775  0x00005dec fetch  0x00000001 , 0x000047b5 
+ 00029776  0x00005ded call  0x00007453 
+ 00029777  0x00005dee arg  0x00004869 , 0x00000002 
+ 00029778  0x00005def branch  0x00007404 
+ 00029779  0x00005df2 compare  0x00000001 , 0x0000003f , 0x000000ff 
+ 00029780  0x00005df3 rtn  0x00000001 
+ 00029781  0x00005df4 force  0x00000003 , 0x0000003f 
+ 00029782  0x00005df5 branch  0x00007457 
+ 00029783  0x00005dfa beq  0x00000000 , 0x0000745c 
+ 00029784  0x00005dfb beq  0x00000001 , 0x0000745e 
+ 00029785  0x00005dfc beq  0x00000002 , 0x00007460 
+ 00029786  0x00005dfd beq  0x00000003 , 0x00007462 
+ 00029787  0x00005e00 branch  0x0000738e 
+ 00029788  0x00005e04 setarg  0x00004786 
+ 00029789  0x00005e05 branch  0x0000738e 
+ 00029790  0x00005e07 setarg  0x0000478d 
+ 00029791  0x00005e08 branch  0x0000738e 
+ 00029792  0x00005e0a setarg  0x00004794 
+ 00029793  0x00005e0b branch  0x0000738e 
+ 00029794  0x00005e0d setarg  0x0000479b 
+ 00029795  0x00005e0e branch  0x0000738e 
+ 00029796  0x00005e13 fetch  0x00000001 , 0x0000475a 
+ 00029797  0x00005e14 rtn  0x00000034 
+ 00029798  0x00005e15 increase  0xffffffff , 0x0000003f 
+ 00029799  0x00005e16 store  0x00000001 , 0x0000475a 
+ 00029800  0x00005e17 nrtn  0x00000034 
+ 00029801  0x00005e18 fetch  0x00000001 , 0x00004756 
+ 00029802  0x00005e19 beq  0x00000001 , 0x000072c0 
+ 00029803  0x00005e1a branch  0x0000748a 
+ 00029804  0x00005e1d fetch  0x00000001 , 0x00004758 
+ 00029805  0x00005e1e rtn  0x00000034 
+ 00029806  0x00005e1f increase  0xffffffff , 0x0000003f 
+ 00029807  0x00005e20 store  0x00000001 , 0x00004758 
+ 00029808  0x00005e21 nrtn  0x00000034 
+ 00029809  0x00005e22 branch  0x00003e73 
+ 00029810  0x00005e25 fetch  0x00000001 , 0x00004757 
+ 00029811  0x00005e26 store  0x00000001 , 0x00004758 
+ 00029812  0x00005e27 branch  0x00003e71 
+ 00029813  0x00005e2d fetch  0x00000001 , 0x00004756 
+ 00029814  0x00005e2e beq  0x00000001 , 0x00007478 
+ 00029815  0x00005e2f branch  0x00003e75 
+ 00029816  0x00005e31 jam  0x00000001 , 0x0000475b 
+ 00029817  0x00005e32 rtn 
+ 00029818  0x00005e36 fetch  0x00000001 , 0x00004756 
+ 00029819  0x00005e37 beq  0x00000001 , 0x00007481 
+ 00029820  0x00005e38 jam  0x00000001 , 0x00004756 
+ 00029821  0x00005e3a setarg  0x00004771 
+ 00029822  0x00005e3d fetcht  0x00000001 , 0x00004759 
+ 00029823  0x00005e3e storet  0x00000001 , 0x0000475a 
+ 00029824  0x00005e3f branch  0x0000738e 
+ 00029825  0x00005e43 jam  0x00000002 , 0x00004756 
+ 00029826  0x00005e44 jam  0x00000000 , 0x0000475b 
+ 00029827  0x00005e45 jam  0x00000000 , 0x000043ff 
+ 00029828  0x00005e46 fetch  0x00000002 , 0x0000470b 
+ 00029829  0x00005e47 bbit0  0x00000009 , 0x00007487 
+ 00029830  0x00005e48 call  0x00003e6b 
+ 00029831  0x00005e4a jam  0x00000000 , 0x000043ff 
+ 00029832  0x00005e4b setarg  0x00004778 
+ 00029833  0x00005e4c branch  0x0000747e 
+ 00029834  0x00005e4f call  0x00007382 
+ 00029835  0x00005e50 branch  0x00003e75 
+ 00029836  0x00005e54 fetch  0x00000001 , 0x000047a9 
+ 00029837  0x00005e55 rtn  0x00000034 
+ 00029838  0x00005e56 copy  0x0000003f , 0x00000039 
+ 00029839  0x00005e57 setarg  0x000047aa 
+ 00029840  0x00005e58 copy  0x0000003f , 0x00000011 
+ 00029841  0x00005e5a ifetcht  0x00000001 , 0x00000011 
+ 00029842  0x00005e5b call  0x000064c2 
+ 00029843  0x00005e5c increase  0x00000002 , 0x00000011 
+ 00029844  0x00005e5d loop  0x00007491 
+ 00029845  0x00005e5f rtn 
+ 00029846  0x00005e63 jam  0x00000000 , 0x00004877 
+ 00029847  0x00005e64 setarg  0x0000487c 
+ 00029848  0x00005e65 store  0x00000002 , 0x00004878 
+ 00029849  0x00005e66 store  0x00000002 , 0x0000487a 
+ 00029850  0x00005e67 rtn 
+ 00029851  0x00005e6b branch  0x00007496 
+ 00029852  0x00005e70 disable  0x00000028 
+ 00029853  0x00005e71 fetch  0x00000001 , 0x00004877 
+ 00029854  0x00005e72 compare  0x00000006 , 0x0000003f , 0x000000ff 
+ 00029855  0x00005e73 rtn  0x00000001 
+ 00029856  0x00005e75 enable  0x00000028 
+ 00029857  0x00005e76 fetch  0x00000002 , 0x0000487a 
+ 00029858  0x00005e77 copy  0x0000003f , 0x00000005 
+ 00029859  0x00005e78 copy  0x00000002 , 0x00000006 
+ 00029860  0x00005e79 call  0x00007ecd 
+ 00029861  0x00005e7b fetch  0x00000001 , 0x00004877 
+ 00029862  0x00005e7c increase  0x00000001 , 0x0000003f 
+ 00029863  0x00005e7d store  0x00000001 , 0x00004877 
+ 00029864  0x00005e7f setarg  0x0000487a 
+ 00029865  0x00005e80 call  0x000074ab 
+ 00029866  0x00005e81 rtn 
+ 00029867  0x00005e85 copy  0x0000003f , 0x00000011 
+ 00029868  0x00005e86 arg  0x000048b8 , 0x00000002 
+ 00029869  0x00005e87 ifetch  0x00000002 , 0x00000011 
+ 00029870  0x00005e88 increase  0x0000000a , 0x0000003f 
+ 00029871  0x00005e89 isub  0x00000002 , 0x0000003e 
+ 00029872  0x00005e8a nbranch  0x000074b2 , 0x00000002 
+ 00029873  0x00005e8b setarg  0x0000487c 
+ 00029874  0x00005e8d istore  0x00000002 , 0x00000011 
+ 00029875  0x00005e8e rtn 
+ 00029876  0x00005e93 disable  0x00000028 
+ 00029877  0x00005e94 fetch  0x00000001 , 0x00004877 
+ 00029878  0x00005e95 rtn  0x00000034 
+ 00029879  0x00005e96 enable  0x00000028 
+ 00029880  0x00005e97 fetch  0x00000001 , 0x00004877 
+ 00029881  0x00005e98 increase  0xffffffff , 0x0000003f 
+ 00029882  0x00005e99 store  0x00000001 , 0x00004877 
+ 00029883  0x00005e9b fetch  0x00000002 , 0x00004878 
+ 00029884  0x00005e9c store  0x00000002 , 0x000048b8 
+ 00029885  0x00005e9e setarg  0x00004878 
+ 00029886  0x00005e9f call  0x000074ab 
+ 00029887  0x00005ea0 fetch  0x00000002 , 0x000048b8 
+ 00029888  0x00005ea1 rtn 
+ 00029889  0x00005ea4 disable  0x00000028 
+ 00029890  0x00005ea5 fetch  0x00000001 , 0x00004877 
+ 00029891  0x00005ea6 rtn  0x00000034 
+ 00029892  0x00005ea7 enable  0x00000028 
+ 00029893  0x00005ea8 fetch  0x00000002 , 0x00004878 
+ 00029894  0x00005ea9 rtn 
+ 00029895  0x00005eac fetch  0x00000002 , 0x0000475c 
+ 00029896  0x00005ead arg  0x0000000c , 0x00000007 
+ 00029897  0x00005eae branch  0x00007ed4 
+ 00029898  0x00005eb9 call  0x000074c1 
+ 00029899  0x00005eba nrtn  0x00000028 
+ 00029900  0x00005ebb disable  0x00000028 
+ 00029901  0x00005ec4 force  0x00000013 , 0x00000002 
+ 00029902  0x00005ec5 storet  0x00000002 , 0x000044f8 
+ 00029903  0x00005ec6 branch  0x000074d0 
+ 00029904  0x00005ec9 arg  0x00000002 , 0x00000039 
+ 00029905  0x00005eca fetcht  0x00000002 , 0x000044f8 
+ 00029906  0x00005ecb arg  0x00004729 , 0x00000006 
+ 00029907  0x00005ecc call  0x000074d7 
+ 00029908  0x00005ed2 rtn 
+ 00029909  0x00005ed5 jam  0x0000001d , 0x000009bd 
+ 00029910  0x00005ed6 branch  0x000074dc 
+ 00029911  0x00005ed8 call  0x00004bd0 
+ 00029912  0x00005ed9 nrtn  0x00000034 
+ 00029913  0x00005eda fetch  0x00000001 , 0x000048ba 
+ 00029914  0x00005edb nrtn  0x00000034 
+ 00029915  0x00005edc jam  0x0000001b , 0x000009bd 
+ 00029916  0x00005ee3 call  0x00004bd6 
+ 00029917  0x00005ee4 branch  0x0000735f 
+ 00029918  0x00005ee7 fetcht  0x00000004 , 0x0000472f 
+ 00029919  0x00005ee8 deposit  0x00000022 
+ 00029920  0x00005ee9 store  0x00000004 , 0x0000472f 
+ 00029921  0x00005eea isub  0x00000002 , 0x0000003f 
+ 00029922  0x00005eeb nrtn  0x00000002 
+ 00029923  0x00005eec sub  0x0000003f , 0x00000014 , 0x0000003f 
+ 00029924  0x00005eed rtn 
+ 00029925  0x00005ef1 call  0x000074b4 
+ 00029926  0x00005ef2 nrtn  0x00000028 
+ 00029927  0x00005ef3 disable  0x00000028 
+ 00029928  0x00005ef4 copy  0x0000003f , 0x00000006 
+ 00029929  0x00005ef5 ifetcht  0x00000001 , 0x00000006 
+ 00029930  0x00005ef6 increase  0xfffffffd , 0x00000002 
+ 00029931  0x00005ef7 copy  0x00000002 , 0x00000039 
+ 00029932  0x00005ef9 ifetcht  0x00000002 , 0x00000006 
+ 00029933  0x00005efb add  0x00000039 , 0x00000007 , 0x0000003f 
+ 00029934  0x00005efc store  0x00000001 , 0x0000473f 
+ 00029935  0x00005efd arg  0x0000446c , 0x00000005 
+ 00029936  0x00005efe istoret  0x00000002 , 0x00000005 
+ 00029937  0x00005eff call  0x00007ecd 
+ 00029938  0x00005f00 fetcht  0x00000001 , 0x0000473f 
+ 00029939  0x00005f01 branch  0x00004f89 
+ 00029940  0x00005f04 fetch  0x00000001 , 0x0000039a 
+ 00029941  0x00005f05 beq  0x00000012 , 0x000074f8 
+ 00029942  0x00005f06 beq  0x00000052 , 0x000074fb 
+ 00029943  0x00005f07 rtn 
+ 00029944  0x00005f09 fetch  0x00000002 , 0x0000039b 
+ 00029945  0x00005f0a beq  0x00000018 , 0x000074fb 
+ 00029946  0x00005f0b rtn 
+ 00029947  0x00005f0e jam  0x00000000 , 0x000048ba 
+ 00029948  0x00005f0f rtn 
+ 00029949  0x00005f12 arg  0x000048cc , 0x00000005 
+ 00029950  0x00005f13 setsect  0x00000000 , 0x00020001 
+ 00029951  0x00005f14 setsect  0x00000001 , 0x00020000 
+ 00029952  0x00005f15 setsect  0x00000002 , 0x00001022 
+ 00029953  0x00005f16 setsect  0x00000003 , 0x00000860 
+ 00029954  0x00005f17 istore  0x00000009 , 0x00000005 
+ 00029955  0x00005f18 setsect  0x00000000 , 0x00030200 
+ 00029956  0x00005f19 setsect  0x00000001 , 0x00004a00 
+ 00029957  0x00005f1a setsect  0x00000002 , 0x00003200 
+ 00029958  0x00005f1b setsect  0x00000003 , 0x00000800 
+ 00029959  0x00005f1c istore  0x00000009 , 0x00000005 
+ 00029960  0x00005f1d setsect  0x00000000 , 0x00012a05 
+ 00029961  0x00005f1e setsect  0x00000001 , 0x00010000 
+ 00029962  0x00005f1f setsect  0x00000002 , 0x00002000 
+ 00029963  0x00005f20 setsect  0x00000003 , 0x0000a408 
+ 00029964  0x00005f21 istore  0x00000009 , 0x00000005 
+ 00029965  0x00005f22 setsect  0x00000000 , 0x00000002 
+ 00029966  0x00005f23 setsect  0x00000001 , 0x00000140 
+ 00029967  0x00005f24 setsect  0x00000002 , 0x00000020 
+ 00029968  0x00005f25 setsect  0x00000003 , 0x000008a0 
+ 00029969  0x00005f26 istore  0x00000009 , 0x00000005 
+ 00029970  0x00005f27 setsect  0x00000000 , 0x00021800 
+ 00029971  0x00005f28 setsect  0x00000001 , 0x00008001 
+ 00029972  0x00005f29 setsect  0x00000002 , 0x00028030 
+ 00029973  0x00005f2a setsect  0x00000003 , 0x00000804 
+ 00029974  0x00005f2b istore  0x00000009 , 0x00000005 
+ 00029975  0x00005f2c setsect  0x00000000 , 0x00020007 
+ 00029976  0x00005f2d setsect  0x00000001 , 0x00028000 
+ 00029977  0x00005f2e setsect  0x00000002 , 0x00003132 
+ 00029978  0x00005f2f setsect  0x00000003 , 0x0001a5a1 
+ 00029979  0x00005f30 istore  0x00000009 , 0x00000005 
+ 00029980  0x00005f31 setsect  0x00000000 , 0x00017370 
+ 00029981  0x00005f32 setsect  0x00000001 , 0x00035859 
+ 00029982  0x00005f33 setsect  0x00000002 , 0x0000c422 
+ 00029983  0x00005f34 setsect  0x00000003 , 0x00008115 
+ 00029984  0x00005f35 istore  0x00000009 , 0x00000005 
+ 00029985  0x00005f36 setsect  0x00000000 , 0x00002020 
+ 00029986  0x00005f37 setsect  0x00000001 , 0x00000808 
+ 00029987  0x00005f38 setsect  0x00000002 , 0x00020202 
+ 00029988  0x00005f39 setsect  0x00000003 , 0x00000020 
+ 00029989  0x00005f3a istore  0x00000009 , 0x00000005 
+ 00029990  0x00005f3b setsect  0x00000000 , 0x00000302 
+ 00029991  0x00005f3c setsect  0x00000001 , 0x0000804a 
+ 00029992  0x00005f3d setsect  0x00000002 , 0x00000090 
+ 00029993  0x00005f3e setsect  0x00000003 , 0x00000408 
+ 00029994  0x00005f3f istore  0x00000009 , 0x00000005 
+ 00029995  0x00005f40 setsect  0x00000000 , 0x0000022a 
+ 00029996  0x00005f41 setsect  0x00000001 , 0x00028032 
+ 00029997  0x00005f42 setsect  0x00000002 , 0x00002000 
+ 00029998  0x00005f43 setsect  0x00000003 , 0x0000a00c 
+ 00029999  0x00005f44 istore  0x00000009 , 0x00000005 
+ 00030000  0x00005f45 setsect  0x00000000 , 0x00030201 
+ 00030001  0x00005f46 setsect  0x00000001 , 0x00008002 
+ 00030002  0x00005f47 setsect  0x00000002 , 0x0002a040 
+ 00030003  0x00005f48 setsect  0x00000003 , 0x00001820 
+ 00030004  0x00005f49 istore  0x00000009 , 0x00000005 
+ 00030005  0x00005f4a setsect  0x00000000 , 0x00000600 
+ 00030006  0x00005f4b setsect  0x00000001 , 0x00001900 
+ 00030007  0x00005f4c setsect  0x00000002 , 0x000012c0 
+ 00030008  0x00005f4d setsect  0x00000003 , 0x00000030 
+ 00030009  0x00005f4e istore  0x00000009 , 0x00000005 
+ 00030010  0x00005f4f setsect  0x00000000 , 0x00000002 
+ 00030011  0x00005f50 setsect  0x00000001 , 0x0002808a 
+ 00030012  0x00005f51 setsect  0x00000002 , 0x0000d180 
+ 00030013  0x00005f52 setsect  0x00000003 , 0x00000800 
+ 00030014  0x00005f53 istore  0x00000009 , 0x00000005 
+ 00030015  0x00005f54 setsect  0x00000000 , 0x00012803 
+ 00030016  0x00005f55 setsect  0x00000001 , 0x00038080 
+ 00030017  0x00005f56 setsect  0x00000002 , 0x00002000 
+ 00030018  0x00005f57 setsect  0x00000003 , 0x0000a940 
+ 00030019  0x00005f58 istore  0x00000009 , 0x00000005 
+ 00030020  0x00005f59 setsect  0x00000000 , 0x00020207 
+ 00030021  0x00005f5a setsect  0x00000001 , 0x00018922 
+ 00030022  0x00005f5b setsect  0x00000002 , 0x00001826 
+ 00030023  0x00005f5c setsect  0x00000003 , 0x00003c00 
+ 00030024  0x00005f5d istore  0x00000009 , 0x00000005 
+ 00030025  0x00005f5e setsect  0x00000000 , 0x00000200 
+ 00030026  0x00005f5f setsect  0x00000001 , 0x00008a00 
+ 00030027  0x00005f60 setsect  0x00000002 , 0x00018120 
+ 00030028  0x00005f61 setsect  0x00000003 , 0x00000040 
+ 00030029  0x00005f62 istore  0x00000009 , 0x00000005 
+ 00030030  0x00005f63 setsect  0x00000000 , 0x00000302 
+ 00030031  0x00005f64 setsect  0x00000001 , 0x0001804a 
+ 00030032  0x00005f65 setsect  0x00000002 , 0x00000110 
+ 00030033  0x00005f66 setsect  0x00000003 , 0x00013808 
+ 00030034  0x00005f67 istore  0x00000009 , 0x00000005 
+ 00030035  0x00005f68 setarg  0x0001012a 
+ 00030036  0x00005f69 istore  0x00000003 , 0x00000005 
+ 00030037  0x00005f6a setsect  0x00000000 , 0x00020012 
+ 00030038  0x00005f6b setsect  0x00000001 , 0x000200c0 
+ 00030039  0x00005f6c setsect  0x00000002 , 0x00012012 
+ 00030040  0x00005f6d setsect  0x00000003 , 0x0000004c 
+ 00030041  0x00005f6e istore  0x00000009 , 0x00000005 
+ 00030042  0x00005f6f setsect  0x00000000 , 0x00024d02 
+ 00030043  0x00005f70 setsect  0x00000001 , 0x0000008a 
+ 00030044  0x00005f71 setsect  0x00000002 , 0x00014280 
+ 00030045  0x00005f72 setsect  0x00000003 , 0x00000800 
+ 00030046  0x00005f73 istore  0x00000009 , 0x00000005 
+ 00030047  0x00005f74 setsect  0x00000000 , 0x00022902 
+ 00030048  0x00005f75 setsect  0x00000001 , 0x00000000 
+ 00030049  0x00005f76 setsect  0x00000002 , 0x00000150 
+ 00030050  0x00005f77 setsect  0x00000003 , 0x00002008 
+ 00030051  0x00005f78 istore  0x00000009 , 0x00000005 
+ 00030052  0x00005f79 setsect  0x00000000 , 0x00020229 
+ 00030053  0x00005f7a setsect  0x00000001 , 0x00018040 
+ 00030054  0x00005f7b setsect  0x00000002 , 0x00002001 
+ 00030055  0x00005f7c setsect  0x00000003 , 0x0000a00c 
+ 00030056  0x00005f7d istore  0x00000009 , 0x00000005 
+ 00030057  0x00005f7e setsect  0x00000000 , 0x00031201 
+ 00030058  0x00005f7f setsect  0x00000001 , 0x00008005 
+ 00030059  0x00005f80 setsect  0x00000002 , 0x0002a4d0 
+ 00030060  0x00005f81 setsect  0x00000003 , 0x00000008 
+ 00030061  0x00005f82 istore  0x00000009 , 0x00000005 
+ 00030062  0x00005f83 setsect  0x00000000 , 0x00001828 
+ 00030063  0x00005f84 setsect  0x00000001 , 0x00008080 
+ 00030064  0x00005f85 setsect  0x00000002 , 0x00002290 
+ 00030065  0x00005f86 setsect  0x00000003 , 0x00000000 
+ 00030066  0x00005f87 istore  0x00000009 , 0x00000005 
+ 00030067  0x00005f88 setsect  0x00000000 , 0x00020019 
+ 00030068  0x00005f89 setsect  0x00000001 , 0x00024200 
+ 00030069  0x00005f8a setsect  0x00000002 , 0x00003022 
+ 00030070  0x00005f8b setsect  0x00000003 , 0x00006804 
+ 00030071  0x00005f8c istore  0x00000009 , 0x00000005 
+ 00030072  0x00005f8d setsect  0x00000000 , 0x00030200 
+ 00030073  0x00005f8e setsect  0x00000001 , 0x00004a00 
+ 00030074  0x00005f8f setsect  0x00000002 , 0x0001b020 
+ 00030075  0x00005f90 setsect  0x00000003 , 0x00000800 
+ 00030076  0x00005f91 istore  0x00000009 , 0x00000005 
+ 00030077  0x00005f92 setsect  0x00000000 , 0x00002a4b 
+ 00030078  0x00005f93 setsect  0x00000001 , 0x00030151 
+ 00030079  0x00005f94 setsect  0x00000002 , 0x00001090 
+ 00030080  0x00005f95 setsect  0x00000003 , 0x00000684 
+ 00030081  0x00005f96 istore  0x00000009 , 0x00000005 
+ 00030082  0x00005f97 setsect  0x00000000 , 0x00010285 
+ 00030083  0x00005f98 setsect  0x00000001 , 0x00027a42 
+ 00030084  0x00005f99 setsect  0x00000002 , 0x00009ea0 
+ 00030085  0x00005f9a setsect  0x00000003 , 0x00002788 
+ 00030086  0x00005f9b istore  0x00000009 , 0x00000005 
+ 00030087  0x00005f9c setsect  0x00000000 , 0x00011530 
+ 00030088  0x00005f9d setsect  0x00000001 , 0x00030940 
+ 00030089  0x00005f9e setsect  0x00000002 , 0x00010750 
+ 00030090  0x00005f9f setsect  0x00000003 , 0x00000654 
+ 00030091  0x00005fa0 istore  0x00000009 , 0x00000005 
+ 00030092  0x00005fa1 setsect  0x00000000 , 0x00000081 
+ 00030093  0x00005fa2 setsect  0x00000001 , 0x00004170 
+ 00030094  0x00005fa3 setsect  0x00000002 , 0x00006090 
+ 00030095  0x00005fa4 setsect  0x00000003 , 0x00000684 
+ 00030096  0x00005fa5 istore  0x00000009 , 0x00000005 
+ 00030097  0x00005fa6 setsect  0x00000000 , 0x00010385 
+ 00030098  0x00005fa7 setsect  0x00000001 , 0x000241c1 
+ 00030099  0x00005fa8 setsect  0x00000002 , 0x00029e01 
+ 00030100  0x00005fa9 setsect  0x00000003 , 0x0000579c 
+ 00030101  0x00005faa istore  0x00000009 , 0x00000005 
+ 00030102  0x00005fab setsect  0x00000000 , 0x00012500 
+ 00030103  0x00005fac setsect  0x00000001 , 0x00005d40 
+ 00030104  0x00005fad setsect  0x00000002 , 0x00008950 
+ 00030105  0x00005fae setsect  0x00000003 , 0x00000a04 
+ 00030106  0x00005faf istore  0x00000009 , 0x00000005 
+ 00030107  0x00005fb0 setsect  0x00000000 , 0x00010875 
+ 00030108  0x00005fb1 setsect  0x00000001 , 0x00014065 
+ 00030109  0x00005fb2 setsect  0x00000002 , 0x00025001 
+ 00030110  0x00005fb3 setsect  0x00000003 , 0x000017d0 
+ 00030111  0x00005fb4 istore  0x00000009 , 0x00000005 
+ 00030112  0x00005fb5 setsect  0x00000000 , 0x00001907 
+ 00030113  0x00005fb6 setsect  0x00000001 , 0x00010a40 
+ 00030114  0x00005fb7 setsect  0x00000002 , 0x0000081f 
+ 00030115  0x00005fb8 setsect  0x00000003 , 0x00000300 
+ 00030116  0x00005fb9 istore  0x00000008 , 0x00000005 
+ 00030117  0x00005fba setsect  0x00000000 , 0x0002001c 
+ 00030118  0x00005fbb setsect  0x00000001 , 0x000200c0 
+ 00030119  0x00005fbc setsect  0x00000002 , 0x00002012 
+ 00030120  0x00005fbd setsect  0x00000003 , 0x00000074 
+ 00030121  0x00005fbe istore  0x00000009 , 0x00000005 
+ 00030122  0x00005fbf setsect  0x00000000 , 0x00024a02 
+ 00030123  0x00005fc0 setsect  0x00000001 , 0x0000410a 
+ 00030124  0x00005fc1 setsect  0x00000002 , 0x00000011 
+ 00030125  0x00005fc2 setsect  0x00000003 , 0x00007804 
+ 00030126  0x00005fc3 istore  0x00000009 , 0x00000005 
+ 00030127  0x00005fc4 setsect  0x00000000 , 0x00030200 
+ 00030128  0x00005fc5 setsect  0x00000001 , 0x00004a00 
+ 00030129  0x00005fc6 setsect  0x00000002 , 0x0001f040 
+ 00030130  0x00005fc7 setsect  0x00000003 , 0x00000800 
+ 00030131  0x00005fc8 istore  0x00000009 , 0x00000005 
+ 00030132  0x00005fc9 setsect  0x00000000 , 0x00012a4c 
+ 00030133  0x00005fca setsect  0x00000001 , 0x00000000 
+ 00030134  0x00005fcb setsect  0x00000002 , 0x00002002 
+ 00030135  0x00005fcc setsect  0x00000003 , 0x0000a000 
+ 00030136  0x00005fcd istore  0x00000009 , 0x00000005 
+ 00030137  0x00005fce setsect  0x00000000 , 0x00000f02 
+ 00030138  0x00005fcf setsect  0x00000001 , 0x00000846 
+ 00030139  0x00005fd0 setsect  0x00000002 , 0x00003020 
+ 00030140  0x00005fd1 setsect  0x00000003 , 0x000004a0 
+ 00030141  0x00005fd2 istore  0x00000009 , 0x00000005 
+ 00030142  0x00005fd3 setsect  0x00000000 , 0x00002212 
+ 00030143  0x00005fd4 setsect  0x00000001 , 0x00024080 
+ 00030144  0x00005fd5 setsect  0x00000002 , 0x000012a1 
+ 00030145  0x00005fd6 setsect  0x00000003 , 0x00008c00 
+ 00030146  0x00005fd7 istore  0x00000009 , 0x00000005 
+ 00030147  0x00005fd8 setsect  0x00000000 , 0x00020200 
+ 00030148  0x00005fd9 setsect  0x00000001 , 0x00008a40 
+ 00030149  0x00005fda setsect  0x00000002 , 0x00000000 
+ 00030150  0x00005fdb setsect  0x00000003 , 0x00000000 
+ 00030151  0x00005fdc istore  0x00000009 , 0x00000005 
+ 00030152  0x00005fdd rtn 
+ 00030153  0x00005fe0 jam  0x00000001 , 0x000044df 
+ 00030154  0x00005fe1 jam  0x00000001 , 0x000045a8 
+ 00030155  0x00005fe2 jam  0x00000001 , 0x0000456c 
+ 00030156  0x00005fe3 setarg  0x0000001b 
+ 00030157  0x00005fe4 store  0x00000002 , 0x0000458b 
+ 00030158  0x00005fe5 jam  0x00000001 , 0x00004522 
+ 00030159  0x00005fe6 jam  0x00000003 , 0x000048c8 
+ 00030160  0x00005fe7 jam  0x00000050 , 0x00004596 
+ 00030161  0x00005fe9 jam  0x00000017 , 0x0000454c 
+ 00030162  0x00005fea jam  0x00000017 , 0x0000454e 
+ 00030163  0x00005feb arg  0x000044dc , 0x00000005 
+ 00030164  0x00005fec setsect  0x00000000 , 0x00000302 
+ 00030165  0x00005fed setsect  0x00000001 , 0x00000040 
+ 00030166  0x00005fee setsect  0x00000002 , 0x00001021 
+ 00030167  0x00005fef setsect  0x00000003 , 0x00000000 
+ 00030168  0x00005ff0 istore  0x00000007 , 0x00000005 
+ 00030169  0x00005ff1 arg  0x0000458d , 0x00000005 
+ 00030170  0x00005ff2 setsect  0x00000000 , 0x00000008 
+ 00030171  0x00005ff3 setsect  0x00000001 , 0x00000004 
+ 00030172  0x00005ff4 setsect  0x00000002 , 0x0002c000 
+ 00030173  0x00005ff5 setsect  0x00000003 , 0x00000004 
+ 00030174  0x00005ff6 istore  0x00000008 , 0x00000005 
+ 00030175  0x00005ff7 rtn 
+ 00030176  0x00005ffc fetch  0x00000001 , 0x000046e2 
+ 00030177  0x00005ffd nbranch  0x000075f4 , 0x00000034 
+ 00030178  0x00005ffe branch  0x00007a96 
+ 00030179  0x00006001 set1  0x00000025 , 0x00000000 
+ 00030180  0x00006002 bpatch  0x000000e0 , 0x0000403c 
+ 00030181  0x00006003 fetch  0x00000001 , 0x000046e2 
+ 00030182  0x00006004 rtn  0x00000034 
+ 00030183  0x00006005 fetch  0x00000001 , 0x00004639 
+ 00030184  0x00006006 rtnne  0x00000001 
+ 00030185  0x00006007 fetch  0x00000001 , 0x00004563 
+ 00030186  0x00006008 rtn  0x00000034 
+ 00030187  0x00006009 fetch  0x00000001 , 0x00004568 
+ 00030188  0x0000600a rtneq  0x00000003 
+ 00030189  0x0000600b fetch  0x00000002 , 0x0000470b 
+ 00030190  0x0000600c bbit1  0x00000000 , 0x000075f2 
+ 00030191  0x0000600d fetch  0x00000001 , 0x00004565 
+ 00030192  0x0000600e beq  0x00000000 , 0x00007a96 
+ 00030193  0x0000600f rtn 
+ 00030194  0x00006011 jam  0x00000000 , 0x00004565 
+ 00030195  0x00006012 rtn 
+ 00030196  0x00006016 set1  0x00000025 , 0x00000000 
+ 00030197  0x00006017 bpatch  0x000000e1 , 0x0000403c 
+ 00030198  0x00006018 fetch  0x00000001 , 0x000046e2 
+ 00030199  0x00006019 branch  0x00005737 , 0x00000034 
+ 00030200  0x0000601a call  0x0000572f 
+ 00030201  0x0000601b call  0x000075fb 
+ 00030202  0x0000601c branch  0x00007684 
+ 00030203  0x0000601f setarg  0x00000000 
+ 00030204  0x00006020 store  0x00000008 , 0x000008d2 
+ 00030205  0x00006021 store  0x00000004 , 0x000008da 
+ 00030206  0x00006022 store  0x00000007 , 0x000046e6 
+ 00030207  0x00006023 rtn 
+ 00030208  0x00006026 jam  0x00000001 , 0x000008d4 
+ 00030209  0x00006027 branch  0x00007605 
+ 00030210  0x00006029 fetch  0x00000001 , 0x00004639 
+ 00030211  0x0000602a beq  0x00000001 , 0x000076a2 
+ 00030212  0x0000602b branch  0x00003b31 
+ 00030213  0x0000602d fetch  0x00000001 , 0x00004639 
+ 00030214  0x0000602e beq  0x00000001 , 0x00007608 
+ 00030215  0x0000602f branch  0x00007684 
+ 00030216  0x00006032 call  0x000076a2 
+ 00030217  0x00006033 fetch  0x00000001 , 0x000008d3 
+ 00030218  0x00006034 nrtn  0x00000034 
+ 00030219  0x00006035 jam  0x00000003 , 0x000008d2 
+ 00030220  0x00006036 rtn 
+ 00030221  0x00006039 fetch  0x00000001 , 0x000008d6 
+ 00030222  0x0000603a bne  0x00000000 , 0x0000762b 
+ 00030223  0x0000603b call  0x00007628 
+ 00030224  0x0000603c arg  0x000009a2 , 0x00000005 
+ 00030225  0x0000603d setarg  0x00000952 
+ 00030226  0x0000603e istore  0x00000002 , 0x00000005 
+ 00030227  0x0000603f setarg  0x000046ca 
+ 00030228  0x00006040 istore  0x00000002 , 0x00000005 
+ 00030229  0x00006041 setarg  0x00000902 
+ 00030230  0x00006042 istore  0x00000002 , 0x00000005 
+ 00030231  0x00006043 branch  0x0000761f 
+ 00030232  0x00006045 arg  0x000009a2 , 0x00000005 
+ 00030233  0x00006046 setarg  0x00000962 
+ 00030234  0x00006047 istore  0x00000002 , 0x00000005 
+ 00030235  0x00006048 setarg  0x00000902 
+ 00030236  0x00006049 istore  0x00000002 , 0x00000005 
+ 00030237  0x0000604a setarg  0x000046ca 
+ 00030238  0x0000604b istore  0x00000002 , 0x00000005 
+ 00030239  0x0000604d call  0x000079bd 
+ 00030240  0x0000604e fetch  0x00000001 , 0x000008d3 
+ 00030241  0x0000604f beq  0x00000004 , 0x00007625 
+ 00030242  0x00006050 jam  0x00000001 , 0x000008d4 
+ 00030243  0x00006051 jam  0x00000005 , 0x000008d2 
+ 00030244  0x00006052 rtn 
+ 00030245  0x00006054 jam  0x00000014 , 0x000008d3 
+ 00030246  0x00006055 call  0x00007602 
+ 00030247  0x00006056 branch  0x000076f3 
+ 00030248  0x00006059 arg  0x00000942 , 0x00000005 
+ 00030249  0x0000605a force  0x00000008 , 0x00000007 
+ 00030250  0x0000605b branch  0x000076bb 
+ 00030251  0x0000605e jam  0x00000001 , 0x000008d4 
+ 00030252  0x0000605f rtn 
+ 00030253  0x00006063 set1  0x00000025 , 0x00000000 
+ 00030254  0x00006064 bpatch  0x000000e2 , 0x0000403c 
+ 00030255  0x00006065 arg  0x0000064b , 0x00000005 
+ 00030256  0x00006066 fetch  0x00000006 , 0x00004140 
+ 00030257  0x00006067 istore  0x00000006 , 0x00000005 
+ 00030258  0x00006068 fetch  0x00000006 , 0x00000040 
+ 00030259  0x00006069 istore  0x00000006 , 0x00000005 
+ 00030260  0x0000606a fetch  0x00000003 , 0x000046e6 
+ 00030261  0x0000606b istore  0x00000003 , 0x00000005 
+ 00030262  0x0000606d call  0x00007a2b 
+ 00030263  0x0000606f arg  0x00000972 , 0x00000011 
+ 00030264  0x00006070 arg  0x00000982 , 0x00000012 
+ 00030265  0x00006071 force  0x00000004 , 0x00000007 
+ 00030266  0x00006072 call  0x000076c0 
+ 00030267  0x00006073 nbranch  0x00007648 , 0x00000001 
+ 00030268  0x00006075 call  0x0000763f 
+ 00030269  0x00006076 jam  0x00000041 , 0x0000007d 
+ 00030270  0x00006077 branch  0x00005903 
+ 00030271  0x0000607a fetch  0x00000001 , 0x000008d3 
+ 00030272  0x0000607b beq  0x00000009 , 0x00007645 
+ 00030273  0x0000607c jam  0x0000000a , 0x000008d2 
+ 00030274  0x0000607d jam  0x00000001 , 0x000008d4 
+ 00030275  0x0000607e jam  0x00000003 , 0x0000007c 
+ 00030276  0x0000607f rtn 
+ 00030277  0x00006081 jam  0x00000003 , 0x0000007c 
+ 00030278  0x00006082 jam  0x00000015 , 0x000008d3 
+ 00030279  0x00006083 branch  0x000076f3 
+ 00030280  0x00006087 fetch  0x00000001 , 0x000008d3 
+ 00030281  0x00006088 beq  0x00000009 , 0x0000764e 
+ 00030282  0x00006089 jam  0x00000000 , 0x000008d2 
+ 00030283  0x0000608a jam  0x00000004 , 0x0000007c 
+ 00030284  0x0000608c jam  0x00000005 , 0x0000007e 
+ 00030285  0x0000608d rtn 
+ 00030286  0x0000608f jam  0x00000004 , 0x0000007c 
+ 00030287  0x00006090 jam  0x00000000 , 0x000008d3 
+ 00030288  0x00006091 rtn 
+ 00030289  0x00006094 fetch  0x00000001 , 0x000008d7 
+ 00030290  0x00006095 beq  0x00000001 , 0x00007655 
+ 00030291  0x00006096 jam  0x0000000a , 0x000008d3 
+ 00030292  0x00006097 branch  0x000076f3 
+ 00030293  0x00006099 arg  0x0000064b , 0x00000005 
+ 00030294  0x0000609a fetch  0x00000006 , 0x00000040 
+ 00030295  0x0000609b istore  0x00000006 , 0x00000005 
+ 00030296  0x0000609c fetch  0x00000006 , 0x00004140 
+ 00030297  0x0000609d istore  0x00000006 , 0x00000005 
+ 00030298  0x0000609e fetch  0x00000003 , 0x000046e3 
+ 00030299  0x0000609f istore  0x00000003 , 0x00000005 
+ 00030300  0x000060a1 call  0x00007a43 
+ 00030301  0x000060a2 fetch  0x00000001 , 0x000008d3 
+ 00030302  0x000060a3 beq  0x0000000a , 0x00007662 
+ 00030303  0x000060a4 jam  0x0000000b , 0x000008d2 
+ 00030304  0x000060a5 jam  0x00000001 , 0x000008d4 
+ 00030305  0x000060a6 rtn 
+ 00030306  0x000060a8 jam  0x0000000b , 0x000008d3 
+ 00030307  0x000060a9 jam  0x00000001 , 0x000008d5 
+ 00030308  0x000060aa rtn 
+ 00030309  0x000060ad arg  0x000009a2 , 0x00000005 
+ 00030310  0x000060ae fetch  0x00000006 , 0x00000040 
+ 00030311  0x000060af istore  0x00000006 , 0x00000005 
+ 00030312  0x000060b0 fetch  0x00000006 , 0x00004140 
+ 00030313  0x000060b1 istore  0x00000006 , 0x00000005 
+ 00030314  0x000060b2 setarg  0x00000952 
+ 00030315  0x000060b3 istore  0x00000002 , 0x00000005 
+ 00030316  0x000060b4 setarg  0x00000962 
+ 00030317  0x000060b5 istore  0x00000002 , 0x00000005 
+ 00030318  0x000060b6 branch  0x00007679 
+ 00030319  0x000060b8 jam  0x0000000f , 0x000008d2 
+ 00030320  0x000060b9 arg  0x000009a2 , 0x00000005 
+ 00030321  0x000060ba fetch  0x00000006 , 0x00004140 
+ 00030322  0x000060bb istore  0x00000006 , 0x00000005 
+ 00030323  0x000060bc fetch  0x00000006 , 0x00000040 
+ 00030324  0x000060bd istore  0x00000006 , 0x00000005 
+ 00030325  0x000060be setarg  0x00000962 
+ 00030326  0x000060bf istore  0x00000002 , 0x00000005 
+ 00030327  0x000060c0 setarg  0x00000952 
+ 00030328  0x000060c1 istore  0x00000002 , 0x00000005 
+ 00030329  0x000060c4 arg  0x0000064b , 0x00000005 
+ 00030330  0x000060c5 fetch  0x00000006 , 0x000009a2 
+ 00030331  0x000060c6 istore  0x00000006 , 0x00000005 
+ 00030332  0x000060c7 fetch  0x00000006 , 0x000009a8 
+ 00030333  0x000060c8 istore  0x00000006 , 0x00000005 
+ 00030334  0x000060ca call  0x000079f5 
+ 00030335  0x000060cd jam  0x00000001 , 0x0000425d 
+ 00030336  0x000060ce arg  0x00004261 , 0x00000005 
+ 00030337  0x000060cf arg  0x00000972 , 0x00000006 
+ 00030338  0x000060d0 call  0x00007e87 
+ 00030339  0x000060d1 branch  0x000031ee 
+ 00030340  0x000060d5 set1  0x00000025 , 0x00000000 
+ 00030341  0x000060d6 bpatch  0x000000e3 , 0x0000403c 
+ 00030342  0x000060d7 fetch  0x00000001 , 0x00004639 
+ 00030343  0x000060d8 rtnne  0x00000000 
+ 00030344  0x000060d9 fetch  0x00000001 , 0x000008d6 
+ 00030345  0x000060da rtnne  0x00000000 
+ 00030346  0x000060db arg  0x0000469a , 0x00000005 
+ 00030347  0x000060dc force  0x0000000b , 0x00000007 
+ 00030348  0x000060dd call  0x000076bb 
+ 00030349  0x000060de random  0x0000003f 
+ 00030350  0x000060df rshift  0x0000003f , 0x0000003f 
+ 00030351  0x000060e0 istore  0x00000002 , 0x00000005 
+ 00030352  0x000060e2 arg  0x000005e2 , 0x00000005 
+ 00030353  0x000060e3 arg  0x0000469a , 0x00000006 
+ 00030354  0x000060e4 call  0x00007e86 
+ 00030355  0x000060e6 arg  0x0000050a , 0x00000005 
+ 00030356  0x000060e7 arg  0x000007f2 , 0x00000006 
+ 00030357  0x000060e8 call  0x00007e84 
+ 00030358  0x000060ea arg  0x0000053a , 0x00000005 
+ 00030359  0x000060eb call  0x00007e90 
+ 00030360  0x000060ec jam  0x00000001 , 0x0000053a 
+ 00030361  0x000060ee call  0x00007a7c 
+ 00030362  0x000060ef jam  0x00000001 , 0x000008d6 
+ 00030363  0x000060f0 rtn 
+ 00030364  0x000060f3 arg  0x000046b2 , 0x00000005 
+ 00030365  0x000060f4 arg  0x00000552 , 0x00000006 
+ 00030366  0x000060f5 call  0x00007e84 
+ 00030367  0x000060f6 jam  0x00000001 , 0x00004639 
+ 00030368  0x000060f7 jam  0x00000000 , 0x000008d6 
+ 00030369  0x000060f8 rtn 
+ 00030370  0x000060fb set1  0x00000025 , 0x00000000 
+ 00030371  0x000060fc bpatch  0x000000e4 , 0x0000403c 
+ 00030372  0x000060fd fetch  0x00000001 , 0x000008dd 
+ 00030373  0x000060fe rtnne  0x00000000 
+ 00030374  0x000060ff fetch  0x00000001 , 0x000008d6 
+ 00030375  0x00006100 rtnne  0x00000000 
+ 00030376  0x00006102 arg  0x000005e2 , 0x00000005 
+ 00030377  0x00006103 arg  0x0000469a , 0x00000006 
+ 00030378  0x00006104 call  0x00007e86 
+ 00030379  0x00006106 arg  0x0000050a , 0x00000005 
+ 00030380  0x00006107 arg  0x000008ea , 0x00000006 
+ 00030381  0x00006108 call  0x00007e84 
+ 00030382  0x0000610a arg  0x0000053a , 0x00000005 
+ 00030383  0x0000610b call  0x00007e90 
+ 00030384  0x0000610c jam  0x00000001 , 0x0000053a 
+ 00030385  0x0000610e call  0x00007a7c 
+ 00030386  0x0000610f jam  0x00000002 , 0x000008d6 
+ 00030387  0x00006110 rtn 
+ 00030388  0x00006113 jam  0x00000001 , 0x000008d7 
+ 00030389  0x00006114 arg  0x0000092a , 0x00000005 
+ 00030390  0x00006115 arg  0x00000552 , 0x00000006 
+ 00030391  0x00006116 call  0x00007e86 
+ 00030392  0x00006117 jam  0x00000001 , 0x000008dd 
+ 00030393  0x00006118 jam  0x00000000 , 0x000008d6 
+ 00030394  0x00006119 rtn 
+ 00030395  0x0000611c increase  0xffffffff , 0x00000007 
+ 00030396  0x0000611d nrtn  0x00000002 
+ 00030397  0x0000611e random  0x0000003f 
+ 00030398  0x0000611f istore  0x00000002 , 0x00000005 
+ 00030399  0x00006120 branch  0x000076bb 
+ 00030400  0x00006122 increase  0xffffffff , 0x00000007 
+ 00030401  0x00006123 nbranch  0x000076cc , 0x00000002 
+ 00030402  0x00006124 ifetch  0x00000004 , 0x00000011 
+ 00030403  0x00006125 copy  0x0000003f , 0x00000002 
+ 00030404  0x00006126 ifetch  0x00000004 , 0x00000012 
+ 00030405  0x00006127 iflip  0x00000002 , 0x0000003f 
+ 00030406  0x00006128 nbranch  0x000076ca , 0x00000005 
+ 00030407  0x00006129 increase  0x00000004 , 0x00000011 
+ 00030408  0x0000612a increase  0x00000004 , 0x00000012 
+ 00030409  0x0000612b branch  0x000076c0 
+ 00030410  0x0000612d disable  0x00000001 
+ 00030411  0x0000612e rtn 
+ 00030412  0x00006130 enable  0x00000001 
+ 00030413  0x00006131 rtn 
+ 00030414  0x00006139 set1  0x00000025 , 0x00000000 
+ 00030415  0x0000613a bpatch  0x000000e5 , 0x0000403c 
+ 00030416  0x0000613b fetch  0x00000001 , 0x000008d4 
+ 00030417  0x0000613c rtn  0x00000034 
+ 00030418  0x0000613d call  0x000058c5 
+ 00030419  0x0000613e nrtn  0x00000034 
+ 00030420  0x0000613f jam  0x00000000 , 0x000008d4 
+ 00030421  0x00006140 fetch  0x00000001 , 0x000008d2 
+ 00030422  0x00006141 beq  0x00000003 , 0x00005806 
+ 00030423  0x00006142 beq  0x00000005 , 0x00005823 
+ 00030424  0x00006143 beq  0x00000007 , 0x0000582e 
+ 00030425  0x00006144 beq  0x0000000b , 0x00005843 
+ 00030426  0x00006145 beq  0x00000002 , 0x00007600 
+ 00030427  0x00006146 beq  0x00000004 , 0x0000760d 
+ 00030428  0x00006147 beq  0x00000009 , 0x0000762d 
+ 00030429  0x00006148 beq  0x0000000a , 0x00007651 
+ 00030430  0x00006149 beq  0x0000000c , 0x0000766f 
+ 00030431  0x0000614b rtn 
+ 00030432  0x0000614e set1  0x00000025 , 0x00000000 
+ 00030433  0x0000614f bpatch  0x000000e6 , 0x0000403c 
+ 00030434  0x00006150 fetch  0x00000001 , 0x000008d5 
+ 00030435  0x00006151 rtn  0x00000034 
+ 00030436  0x00006152 call  0x000058c5 
+ 00030437  0x00006153 nrtn  0x00000034 
+ 00030438  0x00006154 jam  0x00000000 , 0x000008d5 
+ 00030439  0x00006155 fetch  0x00000001 , 0x000008d3 
+ 00030440  0x00006156 beq  0x00000012 , 0x000057e9 
+ 00030441  0x00006157 beq  0x00000013 , 0x000057ee 
+ 00030442  0x00006158 beq  0x00000003 , 0x000057f2 
+ 00030443  0x00006159 beq  0x00000004 , 0x00007618 
+ 00030444  0x0000615a beq  0x00000014 , 0x000057f6 
+ 00030445  0x0000615b beq  0x00000007 , 0x00005804 
+ 00030446  0x0000615c beq  0x0000000a , 0x00007651 
+ 00030447  0x0000615d beq  0x0000000b , 0x00005842 
+ 00030448  0x0000615e beq  0x00000009 , 0x0000762d 
+ 00030449  0x0000615f beq  0x00000015 , 0x0000583c 
+ 00030450  0x00006160 rtn 
+ 00030451  0x00006163 jam  0x00000001 , 0x000008d5 
+ 00030452  0x00006164 rtn 
+ 00030453  0x00006167 jam  0x00000000 , 0x000008d5 
+ 00030454  0x00006168 rtn 
+ 00030455  0x0000616a set1  0x00000025 , 0x00000000 
+ 00030456  0x0000616b bpatch  0x000000e7 , 0x0000403c 
+ 00030457  0x0000616c fetch  0x00000001 , 0x000046e2 
+ 00030458  0x0000616d rtn  0x00000034 
+ 00030459  0x0000616e fetch  0x00000001 , 0x000008d6 
+ 00030460  0x0000616f rtn  0x00000034 
+ 00030461  0x00006170 increase  0x00000080 , 0x0000003f 
+ 00030462  0x00006171 store  0x00000001 , 0x000008d6 
+ 00030463  0x00006172 rtnbit1  0x00000007 
+ 00030464  0x00006173 fetch  0x00000001 , 0x00000507 
+ 00030465  0x00006174 branch  0x00007703 , 0x00000034 
+ 00030466  0x00006175 branch  0x00007a87 
+ 00030467  0x00006178 call  0x000078ef 
+ 00030468  0x00006179 fetch  0x00000001 , 0x000008d6 
+ 00030469  0x0000617a beq  0x00000001 , 0x0000769c 
+ 00030470  0x0000617b beq  0x00000002 , 0x000076b4 
+ 00030471  0x0000617c rtn 
+ 00030472  0x00006180 and  0x0000003f , 0x00000007 , 0x00000007 
+ 00030473  0x00006181 rshift3  0x0000003f , 0x0000003f 
+ 00030474  0x00006182 iadd  0x00000006 , 0x00000006 
+ 00030475  0x00006183 ifetch  0x00000001 , 0x00000006 
+ 00030476  0x00006184 qisolate0  0x0000003f 
+ 00030477  0x00006185 rtn 
+ 00030478  0x00006189 call  0x00007e86 
+ 00030479  0x0000618a call  0x00007e86 
+ 00030480  0x0000618b branch  0x00007e86 
+ 00030481  0x0000618f ifetch  0x00000008 , 0x00000006 
+ 00030482  0x00006190 nrtn  0x00000034 
+ 00030483  0x00006191 ifetch  0x00000008 , 0x00000006 
+ 00030484  0x00006192 nrtn  0x00000034 
+ 00030485  0x00006193 ifetch  0x00000008 , 0x00000006 
+ 00030486  0x00006194 rtn 
+ 00030487  0x0000619a ifetch  0x00000004 , 0x00000011 
+ 00030488  0x0000619b iforce  0x00000002 
+ 00030489  0x0000619c ifetch  0x00000004 , 0x00000012 
+ 00030490  0x0000619d isub  0x00000002 , 0x0000003e 
+ 00030491  0x0000619e nrtn  0x00000005 
+ 00030492  0x0000619f increase  0x00000004 , 0x00000011 
+ 00030493  0x000061a0 increase  0x00000004 , 0x00000012 
+ 00030494  0x000061a1 loop  0x00007717 
+ 00030495  0x000061a2 rtn 
+ 00030496  0x000061a6 force  0x00000006 , 0x00000039 
+ 00030497  0x000061a7 increase  0x00000014 , 0x00000011 
+ 00030498  0x000061a8 increase  0x00000014 , 0x00000012 
+ 00030499  0x000061aa ifetch  0x00000004 , 0x00000012 
+ 00030500  0x000061ab iforce  0x00000002 
+ 00030501  0x000061ac ifetch  0x00000004 , 0x00000011 
+ 00030502  0x000061ad isub  0x00000002 , 0x0000003f 
+ 00030503  0x000061ae nrtn  0x00000002 
+ 00030504  0x000061af nrtn  0x00000034 
+ 00030505  0x000061b0 increase  0xfffffffc , 0x00000011 
+ 00030506  0x000061b1 increase  0xfffffffc , 0x00000012 
+ 00030507  0x000061b2 loop  0x00007723 
+ 00030508  0x000061b3 rtn 
+ 00030509  0x000061b6 force  0x00000006 , 0x00000039 
+ 00030510  0x000061b7 force  0x00000000 , 0x00000013 
+ 00030511  0x000061b9 ifetch  0x00000004 , 0x00000011 
+ 00030512  0x000061ba iforce  0x00000002 
+ 00030513  0x000061bb ifetch  0x00000004 , 0x00000012 
+ 00030514  0x000061bc iadd  0x00000002 , 0x0000003f 
+ 00030515  0x000061bd iadd  0x00000013 , 0x0000003f 
+ 00030516  0x000061be istore  0x00000004 , 0x00000005 
+ 00030517  0x000061bf isolate1  0x00000020 , 0x0000003f 
+ 00030518  0x000061c0 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00030519  0x000061c1 increase  0x00000004 , 0x00000011 
+ 00030520  0x000061c2 increase  0x00000004 , 0x00000012 
+ 00030521  0x000061c3 loop  0x0000772f 
+ 00030522  0x000061c4 rtn 
+ 00030523  0x000061c7 force  0x00000006 , 0x00000039 
+ 00030524  0x000061c8 force  0x00000000 , 0x00000013 
+ 00030525  0x000061ca ifetch  0x00000004 , 0x00000012 
+ 00030526  0x000061cb iforce  0x00000002 
+ 00030527  0x000061cc ifetch  0x00000004 , 0x00000011 
+ 00030528  0x000061cd isub  0x00000002 , 0x0000003f 
+ 00030529  0x000061ce isub  0x00000013 , 0x0000003f 
+ 00030530  0x000061cf istore  0x00000004 , 0x00000005 
+ 00030531  0x000061d0 isolate1  0x00000020 , 0x0000003f 
+ 00030532  0x000061d1 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00030533  0x000061d2 increase  0x00000004 , 0x00000011 
+ 00030534  0x000061d3 increase  0x00000004 , 0x00000012 
+ 00030535  0x000061d4 loop  0x0000773d 
+ 00030536  0x000061d5 rtn 
+ 00030537  0x000061d8 force  0x00000006 , 0x00000039 
+ 00030538  0x000061d9 increase  0x00000014 , 0x00000011 
+ 00030539  0x000061db force  0x00000000 , 0x00000013 
+ 00030540  0x000061dd ifetch  0x00000004 , 0x00000011 
+ 00030541  0x000061de isolate1  0x00000000 , 0x0000003f 
+ 00030542  0x000061df setflag  0x00000001 , 0x00000001 , 0x00000013 
+ 00030543  0x000061e0 rshift  0x0000003f , 0x0000003f 
+ 00030544  0x000061e1 isolate1  0x00000000 , 0x00000013 
+ 00030545  0x000061e2 setflag  0x00000001 , 0x0000001f , 0x0000003f 
+ 00030546  0x000061e3 istore  0x00000004 , 0x00000011 
+ 00030547  0x000061e4 increase  0xfffffffc , 0x00000011 
+ 00030548  0x000061e5 rshift  0x00000013 , 0x00000013 
+ 00030549  0x000061e6 loop  0x0000774c 
+ 00030550  0x000061e7 rtn 
+ 00030551  0x000061ea force  0x00000006 , 0x00000039 
+ 00030552  0x000061eb force  0x00000000 , 0x00000013 
+ 00030553  0x000061ed ifetch  0x00000004 , 0x00000011 
+ 00030554  0x000061ee isolate1  0x0000001f , 0x0000003f 
+ 00030555  0x000061ef setflag  0x00000001 , 0x00000001 , 0x00000013 
+ 00030556  0x000061f0 lshift  0x0000003f , 0x0000003f 
+ 00030557  0x000061f1 isolate1  0x00000000 , 0x00000013 
+ 00030558  0x000061f2 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00030559  0x000061f3 istore  0x00000004 , 0x00000011 
+ 00030560  0x000061f4 increase  0x00000004 , 0x00000011 
+ 00030561  0x000061f5 rshift  0x00000013 , 0x00000013 
+ 00030562  0x000061f6 loop  0x00007759 
+ 00030563  0x000061f7 rtn 
+ 00030564  0x000061fa call  0x00007757 
+ 00030565  0x000061fc isolate1  0x00000000 , 0x00000013 
+ 00030566  0x000061fd branch  0x0000776d , 0x00000001 
+ 00030567  0x000061fe arg  0x000007aa , 0x00000012 
+ 00030568  0x000061ff copy  0x00000011 , 0x00000013 
+ 00030569  0x00006200 increase  0xffffffe8 , 0x00000011 
+ 00030570  0x00006201 call  0x00007720 
+ 00030571  0x00006202 nrtn  0x00000002 
+ 00030572  0x00006203 copy  0x00000013 , 0x00000011 
+ 00030573  0x00006205 increase  0xffffffe8 , 0x00000011 
+ 00030574  0x00006206 arg  0x000007aa , 0x00000012 
+ 00030575  0x00006207 copy  0x00000011 , 0x00000005 
+ 00030576  0x00006208 branch  0x0000773b 
+ 00030577  0x0000620c call  0x0000772d 
+ 00030578  0x0000620d copy  0x00000005 , 0x00000011 
+ 00030579  0x0000620e branch  0x00007765 
+ 00030580  0x00006211 call  0x0000773b 
+ 00030581  0x00006212 isolate0  0x00000000 , 0x00000013 
+ 00030582  0x00006213 rtn  0x00000001 
+ 00030583  0x00006214 arg  0x000007aa , 0x00000012 
+ 00030584  0x00006215 add  0x00000005 , 0xffffffe8 , 0x00000011 
+ 00030585  0x00006216 copy  0x00000011 , 0x00000005 
+ 00030586  0x00006217 branch  0x0000772d 
+ 00030587  0x0000621b copy  0x00000005 , 0x0000000b 
+ 00030588  0x0000621c copy  0x00000011 , 0x00000030 
+ 00030589  0x0000621d arg  0x0000063a , 0x00000012 
+ 00030590  0x0000621e copy  0x00000012 , 0x00000005 
+ 00030591  0x0000621f add  0x00000011 , 0x00000018 , 0x00000006 
+ 00030592  0x00006220 ifetch  0x00000008 , 0x00000006 
+ 00030593  0x00006221 istore  0x00000008 , 0x00000005 
+ 00030594  0x00006222 istore  0x00000008 , 0x00000005 
+ 00030595  0x00006223 force  0x00000000 , 0x0000003f 
+ 00030596  0x00006224 istore  0x00000008 , 0x00000005 
+ 00030597  0x00006225 copy  0x0000000b , 0x00000005 
+ 00030598  0x00006226 call  0x00007771 
+ 00030599  0x00006227 arg  0x0000063a , 0x00000012 
+ 00030600  0x00006228 copy  0x00000012 , 0x00000005 
+ 00030601  0x00006229 force  0x00000000 , 0x0000003f 
+ 00030602  0x0000622a istore  0x00000008 , 0x00000005 
+ 00030603  0x0000622b add  0x00000030 , 0x00000020 , 0x00000006 
+ 00030604  0x0000622c ifetch  0x00000008 , 0x00000006 
+ 00030605  0x0000622d istore  0x00000008 , 0x00000005 
+ 00030606  0x0000622e istore  0x00000008 , 0x00000005 
+ 00030607  0x0000622f copy  0x0000000b , 0x00000011 
+ 00030608  0x00006230 copy  0x00000011 , 0x00000005 
+ 00030609  0x00006231 call  0x00007771 
+ 00030610  0x00006232 arg  0x0000063a , 0x00000012 
+ 00030611  0x00006233 copy  0x00000012 , 0x00000005 
+ 00030612  0x00006234 add  0x00000030 , 0x00000028 , 0x00000006 
+ 00030613  0x00006235 ifetch  0x00000008 , 0x00000006 
+ 00030614  0x00006236 istore  0x00000008 , 0x00000005 
+ 00030615  0x00006237 istore  0x00000008 , 0x00000005 
+ 00030616  0x00006238 istore  0x00000008 , 0x00000005 
+ 00030617  0x00006239 copy  0x0000000b , 0x00000011 
+ 00030618  0x0000623a copy  0x00000011 , 0x00000005 
+ 00030619  0x0000623b branch  0x00007771 
+ 00030620  0x0000623f force  0x00000006 , 0x00000039 
+ 00030621  0x00006241 ifetch  0x00000004 , 0x00000006 
+ 00030622  0x00006242 iforce  0x0000002f 
+ 00030623  0x00006243 increase  0x00000001 , 0x00000038 
+ 00030624  0x00006244 loop  0x0000779d 
+ 00030625  0x00006245 rtn 
+ 00030626  0x0000624a copy  0x00000005 , 0x0000000b 
+ 00030627  0x0000624b arg  0x0000060a , 0x00000005 
+ 00030628  0x0000624c call  0x00007e90 
+ 00030629  0x0000624d arg  0x0000060a , 0x00000005 
+ 00030630  0x0000624e copy  0x00000011 , 0x00000006 
+ 00030631  0x0000624f force  0x00000000 , 0x00000038 
+ 00030632  0x00006250 call  0x0000779c 
+ 00030633  0x00006251 copy  0x00000012 , 0x00000006 
+ 00030634  0x00006252 call  0x0000779c 
+ 00030635  0x00006253 force  0x00000000 , 0x00000012 
+ 00030636  0x00006255 force  0x00000000 , 0x00000002 
+ 00030637  0x00006256 force  0x00000006 , 0x00000013 
+ 00030638  0x00006258 ifetch  0x00000004 , 0x00000005 
+ 00030639  0x00006259 iforce  0x00000011 
+ 00030640  0x0000625a copy  0x00000012 , 0x00000038 
+ 00030641  0x0000625b deposit  0x0000002f 
+ 00030642  0x0000625c copy  0x00000013 , 0x00000038 
+ 00030643  0x0000625d imul32  0x0000002f , 0x0000003f 
+ 00030644  0x0000625e iadd  0x00000011 , 0x0000003f 
+ 00030645  0x0000625f iadd  0x00000002 , 0x0000003f 
+ 00030646  0x00006260 istore  0x00000004 , 0x00000005 
+ 00030647  0x00006261 rshift32  0x0000003f , 0x00000002 
+ 00030648  0x00006262 increase  0x00000001 , 0x00000013 
+ 00030649  0x00006263 compare  0x0000000c , 0x00000013 , 0x000000ff 
+ 00030650  0x00006264 nbranch  0x000077ae , 0x00000001 
+ 00030651  0x00006265 deposit  0x00000002 
+ 00030652  0x00006266 istore  0x00000004 , 0x00000005 
+ 00030653  0x00006267 increase  0xffffffe8 , 0x00000005 
+ 00030654  0x00006268 increase  0x00000001 , 0x00000012 
+ 00030655  0x00006269 compare  0x00000006 , 0x00000012 , 0x000000ff 
+ 00030656  0x0000626a nbranch  0x000077ac , 0x00000001 
+ 00030657  0x0000626b arg  0x0000060a , 0x00000011 
+ 00030658  0x0000626c copy  0x0000000b , 0x00000005 
+ 00030659  0x0000626d branch  0x0000777b 
+ 00030660  0x00006271 copy  0x00000011 , 0x00000012 
+ 00030661  0x00006272 branch  0x000077a2 
+ 00030662  0x00006275 copy  0x00000011 , 0x00000030 
+ 00030663  0x00006277 copy  0x00000030 , 0x00000011 
+ 00030664  0x00006278 ifetch  0x00000001 , 0x00000011 
+ 00030665  0x00006279 isolate1  0x00000000 , 0x0000003f 
+ 00030666  0x0000627a rtn  0x00000001 
+ 00030667  0x0000627b call  0x00007749 
+ 00030668  0x0000627c ifetch  0x00000001 , 0x00000012 
+ 00030669  0x0000627d isolate0  0x00000000 , 0x0000003f 
+ 00030670  0x0000627e branch  0x000077d6 , 0x00000001 
+ 00030671  0x0000627f arg  0x000007aa , 0x00000011 
+ 00030672  0x00006280 copy  0x00000012 , 0x00000005 
+ 00030673  0x00006281 call  0x0000772d 
+ 00030674  0x00006282 ifetch  0x00000001 , 0x00000012 
+ 00030675  0x00006283 iadd  0x00000013 , 0x0000003f 
+ 00030676  0x00006284 istore  0x00000001 , 0x00000012 
+ 00030677  0x00006285 increase  0xffffffe8 , 0x00000012 
+ 00030678  0x00006287 add  0x00000012 , 0x00000018 , 0x00000011 
+ 00030679  0x00006288 force  0x00000007 , 0x00000039 
+ 00030680  0x00006289 call  0x0000774b 
+ 00030681  0x0000628a branch  0x000077c7 
+ 00030682  0x0000628e copy  0x00000005 , 0x0000000b 
+ 00030683  0x0000628f arg  0x0000066a , 0x00000005 
+ 00030684  0x00006290 call  0x00007e90 
+ 00030685  0x00006291 force  0x00000000 , 0x0000003f 
+ 00030686  0x00006292 store  0x00000004 , 0x00000622 
+ 00030687  0x00006293 store  0x00000004 , 0x00000682 
+ 00030688  0x00006294 jam  0x00000001 , 0x0000066a 
+ 00030689  0x00006295 arg  0x0000060a , 0x00000005 
+ 00030690  0x00006296 call  0x00007e90 
+ 00030691  0x00006297 arg  0x000007aa , 0x00000006 
+ 00030692  0x00006298 arg  0x0000063a , 0x00000005 
+ 00030693  0x00006299 call  0x00007e86 
+ 00030694  0x0000629a copy  0x00000011 , 0x00000006 
+ 00030695  0x0000629b arg  0x00000652 , 0x00000005 
+ 00030696  0x0000629c call  0x00007e86 
+ 00030697  0x0000629e arg  0x00000652 , 0x00000006 
+ 00030698  0x0000629f call  0x00007711 
+ 00030699  0x000062a0 branch  0x00007812 , 0x00000034 
+ 00030700  0x000062a1 arg  0x00000652 , 0x00000011 
+ 00030701  0x000062a2 arg  0x0000066a , 0x00000012 
+ 00030702  0x000062a3 call  0x000077c6 
+ 00030703  0x000062a5 arg  0x0000063a , 0x00000011 
+ 00030704  0x000062a6 arg  0x0000060a , 0x00000012 
+ 00030705  0x000062a7 call  0x000077c6 
+ 00030706  0x000062a8 arg  0x00000652 , 0x00000011 
+ 00030707  0x000062a9 arg  0x0000063a , 0x00000012 
+ 00030708  0x000062aa call  0x00007720 
+ 00030709  0x000062ab branch  0x00007804 , 0x00000002 
+ 00030710  0x000062ac arg  0x0000063a , 0x00000011 
+ 00030711  0x000062ad arg  0x00000652 , 0x00000012 
+ 00030712  0x000062ae copy  0x00000011 , 0x00000005 
+ 00030713  0x000062af call  0x0000773b 
+ 00030714  0x000062b0 arg  0x0000066a , 0x00000011 
+ 00030715  0x000062b1 arg  0x0000060a , 0x00000012 
+ 00030716  0x000062b2 copy  0x00000012 , 0x00000005 
+ 00030717  0x000062b3 call  0x0000772d 
+ 00030718  0x000062b4 ifetch  0x00000001 , 0x00000011 
+ 00030719  0x000062b5 iadd  0x00000013 , 0x00000013 
+ 00030720  0x000062b6 ifetch  0x00000001 , 0x00000012 
+ 00030721  0x000062b7 iadd  0x00000013 , 0x0000003f 
+ 00030722  0x000062b8 istore  0x00000001 , 0x00000012 
+ 00030723  0x000062b9 branch  0x000077e9 
+ 00030724  0x000062bb arg  0x00000652 , 0x00000011 
+ 00030725  0x000062bc arg  0x0000063a , 0x00000012 
+ 00030726  0x000062bd copy  0x00000011 , 0x00000005 
+ 00030727  0x000062be call  0x0000773b 
+ 00030728  0x000062bf arg  0x0000060a , 0x00000011 
+ 00030729  0x000062c0 arg  0x0000066a , 0x00000012 
+ 00030730  0x000062c1 copy  0x00000012 , 0x00000005 
+ 00030731  0x000062c2 call  0x0000772d 
+ 00030732  0x000062c3 ifetch  0x00000001 , 0x00000011 
+ 00030733  0x000062c4 iadd  0x00000013 , 0x00000013 
+ 00030734  0x000062c5 ifetch  0x00000001 , 0x00000012 
+ 00030735  0x000062c6 iadd  0x00000013 , 0x0000003f 
+ 00030736  0x000062c7 istore  0x00000001 , 0x00000012 
+ 00030737  0x000062c8 branch  0x000077e9 
+ 00030738  0x000062ca arg  0x0000066a , 0x00000005 
+ 00030739  0x000062cb call  0x00007e90 
+ 00030740  0x000062cc fetch  0x00000001 , 0x00000622 
+ 00030741  0x000062cd store  0x00000001 , 0x0000066a 
+ 00030742  0x000062ce store  0x00000001 , 0x00000672 
+ 00030743  0x000062cf arg  0x0000066a , 0x00000011 
+ 00030744  0x000062d0 arg  0x0000060a , 0x00000012 
+ 00030745  0x000062d1 copy  0x00000012 , 0x00000005 
+ 00030746  0x000062d2 call  0x00007771 
+ 00030747  0x000062d3 arg  0x000007aa , 0x00000011 
+ 00030748  0x000062d4 arg  0x0000060a , 0x00000012 
+ 00030749  0x000062d5 copy  0x0000000b , 0x00000005 
+ 00030750  0x000062d6 branch  0x00007774 
+ 00030751  0x000062dc arg  0x000005ca , 0x00000011 
+ 00030752  0x000062dd arg  0x00000682 , 0x00000005 
+ 00030753  0x000062de call  0x000077c4 
+ 00030754  0x000062df arg  0x00000682 , 0x00000011 
+ 00030755  0x000062e0 arg  0x0000069a , 0x00000005 
+ 00030756  0x000062e1 call  0x000077c4 
+ 00030757  0x000062e2 arg  0x000007c2 , 0x00000011 
+ 00030758  0x000062e3 arg  0x0000069a , 0x00000012 
+ 00030759  0x000062e4 arg  0x0000069a , 0x00000005 
+ 00030760  0x000062e5 call  0x000077a2 
+ 00030761  0x000062e6 arg  0x0000059a , 0x00000011 
+ 00030762  0x000062e7 arg  0x00000682 , 0x00000005 
+ 00030763  0x000062e8 call  0x000077c4 
+ 00030764  0x000062e9 arg  0x00000682 , 0x00000006 
+ 00030765  0x000062ea arg  0x00000652 , 0x00000005 
+ 00030766  0x000062eb call  0x00007e86 
+ 00030767  0x000062ec arg  0x00000652 , 0x00000011 
+ 00030768  0x000062ed call  0x00007764 
+ 00030769  0x000062ee arg  0x00000682 , 0x00000011 
+ 00030770  0x000062ef arg  0x00000652 , 0x00000012 
+ 00030771  0x000062f0 arg  0x00000682 , 0x00000005 
+ 00030772  0x000062f1 call  0x00007771 
+ 00030773  0x000062f2 arg  0x00000682 , 0x00000011 
+ 00030774  0x000062f3 arg  0x0000069a , 0x00000012 
+ 00030775  0x000062f4 arg  0x00000682 , 0x00000005 
+ 00030776  0x000062f5 call  0x00007771 
+ 00030777  0x000062f6 arg  0x0000059a , 0x00000006 
+ 00030778  0x000062f7 arg  0x00000652 , 0x00000005 
+ 00030779  0x000062f8 call  0x00007e86 
+ 00030780  0x000062f9 arg  0x000005b2 , 0x00000011 
+ 00030781  0x000062fa arg  0x0000069a , 0x00000005 
+ 00030782  0x000062fb call  0x000077c4 
+ 00030783  0x000062fc arg  0x00000652 , 0x00000011 
+ 00030784  0x000062fd call  0x00007764 
+ 00030785  0x000062fe arg  0x00000652 , 0x00000011 
+ 00030786  0x000062ff call  0x00007764 
+ 00030787  0x00006300 arg  0x00000652 , 0x00000011 
+ 00030788  0x00006301 arg  0x0000069a , 0x00000012 
+ 00030789  0x00006302 arg  0x00000652 , 0x00000005 
+ 00030790  0x00006303 call  0x000077a2 
+ 00030791  0x00006304 arg  0x0000069a , 0x00000011 
+ 00030792  0x00006305 arg  0x0000066a , 0x00000005 
+ 00030793  0x00006306 call  0x000077c4 
+ 00030794  0x00006307 arg  0x0000066a , 0x00000011 
+ 00030795  0x00006308 call  0x00007764 
+ 00030796  0x00006309 arg  0x0000066a , 0x00000011 
+ 00030797  0x0000630a call  0x00007764 
+ 00030798  0x0000630b arg  0x0000066a , 0x00000011 
+ 00030799  0x0000630c call  0x00007764 
+ 00030800  0x0000630d arg  0x000005b2 , 0x00000006 
+ 00030801  0x0000630e arg  0x0000069a , 0x00000005 
+ 00030802  0x0000630f call  0x00007e86 
+ 00030803  0x00006310 arg  0x0000069a , 0x00000011 
+ 00030804  0x00006311 call  0x00007764 
+ 00030805  0x00006312 arg  0x0000069a , 0x00000011 
+ 00030806  0x00006313 arg  0x000005ca , 0x00000012 
+ 00030807  0x00006314 arg  0x000005ca , 0x00000005 
+ 00030808  0x00006315 call  0x000077a2 
+ 00030809  0x00006316 arg  0x00000682 , 0x00000011 
+ 00030810  0x00006317 arg  0x0000069a , 0x00000005 
+ 00030811  0x00006318 call  0x000077c4 
+ 00030812  0x00006319 arg  0x0000069a , 0x00000011 
+ 00030813  0x0000631a arg  0x00000652 , 0x00000012 
+ 00030814  0x0000631b arg  0x0000069a , 0x00000005 
+ 00030815  0x0000631c call  0x00007774 
+ 00030816  0x0000631d arg  0x0000069a , 0x00000011 
+ 00030817  0x0000631e arg  0x00000652 , 0x00000012 
+ 00030818  0x0000631f arg  0x0000059a , 0x00000005 
+ 00030819  0x00006320 call  0x00007774 
+ 00030820  0x00006321 arg  0x00000652 , 0x00000011 
+ 00030821  0x00006322 arg  0x0000059a , 0x00000012 
+ 00030822  0x00006323 arg  0x0000069a , 0x00000005 
+ 00030823  0x00006324 call  0x00007774 
+ 00030824  0x00006325 arg  0x0000069a , 0x00000011 
+ 00030825  0x00006326 arg  0x00000682 , 0x00000012 
+ 00030826  0x00006327 arg  0x0000069a , 0x00000005 
+ 00030827  0x00006328 call  0x000077a2 
+ 00030828  0x00006329 arg  0x0000069a , 0x00000011 
+ 00030829  0x0000632a arg  0x0000066a , 0x00000012 
+ 00030830  0x0000632b arg  0x000005b2 , 0x00000005 
+ 00030831  0x0000632c branch  0x00007774 
+ 00030832  0x00006331 arg  0x0000053a , 0x00000011 
+ 00030833  0x00006332 arg  0x000006b2 , 0x00000005 
+ 00030834  0x00006333 call  0x000077c4 
+ 00030835  0x00006334 arg  0x0000059a , 0x00000011 
+ 00030836  0x00006335 arg  0x000006b2 , 0x00000012 
+ 00030837  0x00006336 arg  0x0000066a , 0x00000005 
+ 00030838  0x00006337 call  0x000077a2 
+ 00030839  0x00006338 arg  0x0000053a , 0x00000011 
+ 00030840  0x00006339 arg  0x000006b2 , 0x00000012 
+ 00030841  0x0000633a arg  0x000006b2 , 0x00000005 
+ 00030842  0x0000633b call  0x000077a2 
+ 00030843  0x0000633c arg  0x000005b2 , 0x00000011 
+ 00030844  0x0000633d arg  0x000006b2 , 0x00000012 
+ 00030845  0x0000633e arg  0x00000652 , 0x00000005 
+ 00030846  0x0000633f call  0x000077a2 
+ 00030847  0x00006340 arg  0x000005ca , 0x00000011 
+ 00030848  0x00006341 arg  0x000006b2 , 0x00000005 
+ 00030849  0x00006342 call  0x000077c4 
+ 00030850  0x00006343 arg  0x0000050a , 0x00000011 
+ 00030851  0x00006344 arg  0x000006b2 , 0x00000012 
+ 00030852  0x00006345 arg  0x00000682 , 0x00000005 
+ 00030853  0x00006346 call  0x000077a2 
+ 00030854  0x00006347 arg  0x000005ca , 0x00000011 
+ 00030855  0x00006348 arg  0x000006b2 , 0x00000012 
+ 00030856  0x00006349 arg  0x000006b2 , 0x00000005 
+ 00030857  0x0000634a call  0x000077a2 
+ 00030858  0x0000634b arg  0x00000522 , 0x00000011 
+ 00030859  0x0000634c arg  0x000006b2 , 0x00000012 
+ 00030860  0x0000634d arg  0x0000069a , 0x00000005 
+ 00030861  0x0000634e call  0x000077a2 
+ 00030862  0x0000634f arg  0x0000066a , 0x00000011 
+ 00030863  0x00006350 arg  0x00000682 , 0x00000012 
+ 00030864  0x00006351 arg  0x000006b2 , 0x00000005 
+ 00030865  0x00006352 call  0x00007774 
+ 00030866  0x00006353 arg  0x0000066a , 0x00000011 
+ 00030867  0x00006354 arg  0x00000682 , 0x00000012 
+ 00030868  0x00006355 arg  0x0000066a , 0x00000005 
+ 00030869  0x00006356 call  0x00007771 
+ 00030870  0x00006357 arg  0x00000652 , 0x00000011 
+ 00030871  0x00006358 arg  0x0000069a , 0x00000012 
+ 00030872  0x00006359 arg  0x00000682 , 0x00000005 
+ 00030873  0x0000635a call  0x00007774 
+ 00030874  0x0000635b arg  0x00000652 , 0x00000011 
+ 00030875  0x0000635c arg  0x0000069a , 0x00000012 
+ 00030876  0x0000635d arg  0x00000652 , 0x00000005 
+ 00030877  0x0000635e call  0x00007771 
+ 00030878  0x0000635f arg  0x00000652 , 0x00000011 
+ 00030879  0x00006360 arg  0x000006b2 , 0x00000012 
+ 00030880  0x00006361 arg  0x00000652 , 0x00000005 
+ 00030881  0x00006362 call  0x000077a2 
+ 00030882  0x00006363 arg  0x000005ca , 0x00000011 
+ 00030883  0x00006364 arg  0x0000053a , 0x00000012 
+ 00030884  0x00006365 arg  0x0000069a , 0x00000005 
+ 00030885  0x00006366 call  0x000077a2 
+ 00030886  0x00006367 arg  0x0000069a , 0x00000011 
+ 00030887  0x00006368 arg  0x000006b2 , 0x00000012 
+ 00030888  0x00006369 arg  0x000005ca , 0x00000005 
+ 00030889  0x0000636a call  0x000077a2 
+ 00030890  0x0000636b arg  0x000006b2 , 0x00000011 
+ 00030891  0x0000636c arg  0x000006b2 , 0x00000005 
+ 00030892  0x0000636d call  0x000077c4 
+ 00030893  0x0000636e arg  0x000006b2 , 0x00000011 
+ 00030894  0x0000636f arg  0x0000066a , 0x00000012 
+ 00030895  0x00006370 arg  0x0000069a , 0x00000005 
+ 00030896  0x00006371 call  0x000077a2 
+ 00030897  0x00006372 arg  0x000006b2 , 0x00000011 
+ 00030898  0x00006373 arg  0x00000652 , 0x00000012 
+ 00030899  0x00006374 arg  0x00000652 , 0x00000005 
+ 00030900  0x00006375 call  0x000077a2 
+ 00030901  0x00006376 arg  0x00000682 , 0x00000011 
+ 00030902  0x00006377 arg  0x0000059a , 0x00000005 
+ 00030903  0x00006378 call  0x000077c4 
+ 00030904  0x00006379 arg  0x0000059a , 0x00000011 
+ 00030905  0x0000637a arg  0x0000069a , 0x00000012 
+ 00030906  0x0000637b arg  0x0000059a , 0x00000005 
+ 00030907  0x0000637c call  0x00007774 
+ 00030908  0x0000637d arg  0x0000059a , 0x00000006 
+ 00030909  0x0000637e arg  0x000006b2 , 0x00000005 
+ 00030910  0x0000637f call  0x00007e86 
+ 00030911  0x00006380 arg  0x000006b2 , 0x00000011 
+ 00030912  0x00006381 call  0x00007764 
+ 00030913  0x00006382 arg  0x0000069a , 0x00000011 
+ 00030914  0x00006383 arg  0x000006b2 , 0x00000012 
+ 00030915  0x00006384 arg  0x0000069a , 0x00000005 
+ 00030916  0x00006385 call  0x00007774 
+ 00030917  0x00006386 arg  0x0000069a , 0x00000011 
+ 00030918  0x00006387 arg  0x00000682 , 0x00000012 
+ 00030919  0x00006388 arg  0x00000682 , 0x00000005 
+ 00030920  0x00006389 call  0x000077a2 
+ 00030921  0x0000638a arg  0x00000682 , 0x00000011 
+ 00030922  0x0000638b arg  0x00000652 , 0x00000012 
+ 00030923  0x0000638c arg  0x000005b2 , 0x00000005 
+ 00030924  0x0000638d call  0x00007774 
+ 00030925  0x0000638e arg  0x000005b2 , 0x00000011 
+ 00030926  0x0000638f arg  0x000007aa , 0x00000012 
+ 00030927  0x00006390 arg  0x000005b2 , 0x00000005 
+ 00030928  0x00006391 force  0x00000000 , 0x00000013 
+ 00030929  0x00006392 fetch  0x00000001 , 0x000005b2 
+ 00030930  0x00006393 isolate1  0x00000000 , 0x0000003f 
+ 00030931  0x00006394 call  0x0000772d , 0x00000001 
+ 00030932  0x00006395 copy  0x00000013 , 0x00000030 
+ 00030933  0x00006396 arg  0x000005b2 , 0x00000011 
+ 00030934  0x00006397 call  0x00007749 
+ 00030935  0x00006398 fetch  0x00000001 , 0x000005c9 
+ 00030936  0x00006399 isolate1  0x00000000 , 0x00000030 
+ 00030937  0x0000639a setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00030938  0x0000639b store  0x00000001 , 0x000005c9 
+ 00030939  0x0000639c rtn 
+ 00030940  0x000063a1 fetch  0x00000001 , 0x00000507 
+ 00030941  0x000063a2 increase  0xffffffff , 0x0000003f 
+ 00030942  0x000063a3 nrtn  0x00000002 
+ 00030943  0x000063a4 store  0x00000001 , 0x00000507 
+ 00030944  0x000063a5 fetch  0x00000001 , 0x00000506 
+ 00030945  0x000063a6 call  0x0000781f , 0x00000034 
+ 00030946  0x000063a7 fetch  0x00000001 , 0x00000507 
+ 00030947  0x000063a8 arg  0x000005e2 , 0x00000006 
+ 00030948  0x000063a9 call  0x00007708 
+ 00030949  0x000063aa branch  0x000078dc , 0x00000001 
+ 00030950  0x000063ab fetch  0x00000001 , 0x00000506 
+ 00030951  0x000063ac nbranch  0x000078ea , 0x00000034 
+ 00030952  0x000063ad call  0x00007870 
+ 00030953  0x000063ae branch  0x000078dc 
+ 00030954  0x000063b0 jam  0x00000000 , 0x00000506 
+ 00030955  0x000063b1 arg  0x0000050a , 0x00000006 
+ 00030956  0x000063b2 arg  0x0000059a , 0x00000005 
+ 00030957  0x000063b3 call  0x0000770e 
+ 00030958  0x000063b4 branch  0x000078dc 
+ 00030959  0x000063b8 arg  0x000005ca , 0x00000011 
+ 00030960  0x000063b9 arg  0x0000069a , 0x00000005 
+ 00030961  0x000063ba call  0x000077da 
+ 00030962  0x000063bb arg  0x0000069a , 0x00000011 
+ 00030963  0x000063bc arg  0x00000652 , 0x00000005 
+ 00030964  0x000063bd call  0x000077c4 
+ 00030965  0x000063be arg  0x0000059a , 0x00000011 
+ 00030966  0x000063bf arg  0x00000652 , 0x00000012 
+ 00030967  0x000063c0 arg  0x00000552 , 0x00000005 
+ 00030968  0x000063c1 call  0x000077a2 
+ 00030969  0x000063c2 arg  0x0000069a , 0x00000011 
+ 00030970  0x000063c3 arg  0x00000652 , 0x00000012 
+ 00030971  0x000063c4 arg  0x00000682 , 0x00000005 
+ 00030972  0x000063c5 call  0x000077a2 
+ 00030973  0x000063c6 arg  0x000005b2 , 0x00000011 
+ 00030974  0x000063c7 arg  0x00000682 , 0x00000012 
+ 00030975  0x000063c8 arg  0x0000056a , 0x00000005 
+ 00030976  0x000063c9 branch  0x000077a2 
+ 00030977  0x000063ce ifetch  0x00000004 , 0x00000006 
+ 00030978  0x000063cf force  0x00000004 , 0x00000011 
+ 00030979  0x000063d0 increase  0x00000003 , 0x00000005 
+ 00030980  0x000063d2 istore  0x00000001 , 0x00000005 
+ 00030981  0x000063d3 rshift8  0x0000003f , 0x0000003f 
+ 00030982  0x000063d4 increase  0xfffffffe , 0x00000005 
+ 00030983  0x000063d5 increase  0xffffffff , 0x00000011 
+ 00030984  0x000063d6 nbranch  0x00007904 , 0x00000005 
+ 00030985  0x000063d7 increase  0x00000005 , 0x00000005 
+ 00030986  0x000063d8 loop  0x00007901 
+ 00030987  0x000063d9 rtn 
+ 00030988  0x000063dd lshift2  0x00000007 , 0x0000003f 
+ 00030989  0x000063de iadd  0x0000000b , 0x00000006 
+ 00030990  0x000063df ifetch  0x00000004 , 0x00000006 
+ 00030991  0x000063e0 rtn 
+ 00030992  0x000063e3 force  0x00000010 , 0x00000030 
+ 00030993  0x000063e4 arg  0x0000050a , 0x0000000b 
+ 00030994  0x000063e6 add  0x00000030 , 0xfffffff9 , 0x00000007 
+ 00030995  0x000063e7 call  0x0000790c 
+ 00030996  0x000063e8 iforce  0x00000002 
+ 00030997  0x000063e9 add  0x00000030 , 0xfffffff0 , 0x00000007 
+ 00030998  0x000063ea call  0x0000790c 
+ 00030999  0x000063eb iadd  0x00000002 , 0x00000002 
+ 00031000  0x000063ec add  0x00000030 , 0xfffffffe , 0x00000007 
+ 00031001  0x000063ed call  0x0000790c 
+ 00031002  0x000063ee shasx  0x0000003f , 0x00000001 , 0x0000003f 
+ 00031003  0x000063ef iadd  0x00000002 , 0x00000002 
+ 00031004  0x000063f0 add  0x00000030 , 0xfffffff1 , 0x00000007 
+ 00031005  0x000063f1 call  0x0000790c 
+ 00031006  0x000063f2 shasx  0x0000003f , 0x00000000 , 0x0000003f 
+ 00031007  0x000063f3 iadd  0x00000002 , 0x00000002 
+ 00031008  0x000063f4 lshift2  0x00000030 , 0x0000003f 
+ 00031009  0x000063f5 iadd  0x0000000b , 0x00000005 
+ 00031010  0x000063f6 istoret  0x00000004 , 0x00000005 
+ 00031011  0x000063f7 increase  0x00000001 , 0x00000030 
+ 00031012  0x000063f8 compare  0x00000040 , 0x00000030 , 0x000000ff 
+ 00031013  0x000063f9 nbranch  0x00007912 , 0x00000001 
+ 00031014  0x000063fa rtn 
+ 00031015  0x000063fe arg  0x00000822 , 0x00000006 
+ 00031016  0x000063ff force  0x00000007 , 0x00000038 
+ 00031017  0x00006401 ifetch  0x00000004 , 0x00000006 
+ 00031018  0x00006402 iforce  0x0000002f 
+ 00031019  0x00006403 increase  0xffffffff , 0x00000038 
+ 00031020  0x00006404 branch  0x00007929 , 0x00000002 
+ 00031021  0x00006405 rtn 
+ 00031022  0x00006408 set1  0x00000025 , 0x00000000 
+ 00031023  0x00006409 bpatch  0x000000e8 , 0x0000403d 
+ 00031024  0x0000640a call  0x00007910 
+ 00031025  0x0000640b arg  0x0000060a , 0x00000005 
+ 00031026  0x0000640c force  0x00000000 , 0x00000038 
+ 00031027  0x0000640e deposit  0x0000002f 
+ 00031028  0x0000640f istore  0x00000004 , 0x00000005 
+ 00031029  0x00006410 increase  0x00000001 , 0x00000038 
+ 00031030  0x00006411 compare  0x00000008 , 0x00000038 , 0x000000ff 
+ 00031031  0x00006412 nbranch  0x00007933 , 0x00000001 
+ 00031032  0x00006413 call  0x000071e2 
+ 00031033  0x00006414 arg  0x00008700 , 0x0000000b 
+ 00031034  0x00006415 arg  0x0000050a , 0x00000030 
+ 00031035  0x00006416 force  0x00000040 , 0x00000039 
+ 00031036  0x00006418 ifetcht  0x00000004 , 0x00000030 
+ 00031037  0x00006419 ifetch  0x00000004 , 0x0000000b 
+ 00031038  0x0000641a increase  0x00000004 , 0x0000000b 
+ 00031039  0x0000641b increase  0x00000004 , 0x00000030 
+ 00031040  0x0000641c iadd  0x00000002 , 0x0000003f 
+ 00031041  0x0000641d force  0x00000007 , 0x00000038 
+ 00031042  0x0000641e iadd  0x0000002f , 0x00000002 
+ 00031043  0x0000641f force  0x00000004 , 0x00000038 
+ 00031044  0x00006420 shasx  0x0000002f , 0x00000003 , 0x0000003f 
+ 00031045  0x00006421 iadd  0x00000002 , 0x00000002 
+ 00031046  0x00006422 force  0x00000005 , 0x00000038 
+ 00031047  0x00006423 deposit  0x0000002f 
+ 00031048  0x00006424 force  0x00000006 , 0x00000038 
+ 00031049  0x00006425 ixor  0x0000002f , 0x0000003f 
+ 00031050  0x00006426 force  0x00000004 , 0x00000038 
+ 00031051  0x00006427 iand  0x0000002f , 0x0000003f 
+ 00031052  0x00006428 force  0x00000006 , 0x00000038 
+ 00031053  0x00006429 ixor  0x0000002f , 0x0000003f 
+ 00031054  0x0000642a iadd  0x00000002 , 0x00000002 
+ 00031055  0x0000642b force  0x00000007 , 0x00000038 
+ 00031056  0x0000642c copy  0x00000002 , 0x0000002f 
+ 00031057  0x0000642d force  0x00000003 , 0x00000038 
+ 00031058  0x0000642e deposit  0x0000002f 
+ 00031059  0x0000642f iadd  0x00000002 , 0x0000002f 
+ 00031060  0x00006430 force  0x00000000 , 0x00000038 
+ 00031061  0x00006431 deposit  0x0000002f 
+ 00031062  0x00006432 force  0x00000001 , 0x00000038 
+ 00031063  0x00006433 iand  0x0000002f , 0x00000002 
+ 00031064  0x00006434 ior  0x0000002f , 0x0000003f 
+ 00031065  0x00006435 force  0x00000002 , 0x00000038 
+ 00031066  0x00006436 iand  0x0000002f , 0x0000003f 
+ 00031067  0x00006437 ior  0x00000002 , 0x00000002 
+ 00031068  0x00006438 force  0x00000000 , 0x00000038 
+ 00031069  0x00006439 shasx  0x0000002f , 0x00000002 , 0x0000003f 
+ 00031070  0x0000643a iadd  0x00000002 , 0x0000003f 
+ 00031071  0x0000643b force  0x00000007 , 0x00000038 
+ 00031072  0x0000643c iadd  0x0000002f , 0x0000002f 
+ 00031073  0x0000643d regexrot 
+ 00031074  0x0000643e loop  0x0000793c 
+ 00031075  0x0000643f arg  0x0000060a , 0x00000006 
+ 00031076  0x00006440 force  0x00000000 , 0x00000038 
+ 00031077  0x00006442 ifetch  0x00000004 , 0x00000006 
+ 00031078  0x00006443 iadd  0x0000002f , 0x0000002f 
+ 00031079  0x00006444 increase  0x00000001 , 0x00000038 
+ 00031080  0x00006445 compare  0x00000008 , 0x00000038 , 0x000000ff 
+ 00031081  0x00006446 nbranch  0x00007965 , 0x00000001 
+ 00031082  0x00006447 branch  0x000071e6 
+ 00031083  0x0000644b arg  0x00000962 , 0x00000005 
+ 00031084  0x0000644c force  0x00000007 , 0x00000038 
+ 00031085  0x0000644e deposit  0x0000002f 
+ 00031086  0x0000644f istore  0x00000004 , 0x00000005 
+ 00031087  0x00006450 increase  0xffffffff , 0x00000038 
+ 00031088  0x00006451 branch  0x0000796d , 0x00000002 
+ 00031089  0x00006452 rtn 
+ 00031090  0x00006456 arg  0x0000050a , 0x00000005 
+ 00031091  0x00006457 increase  0xfffffffc , 0x00000006 
+ 00031092  0x00006458 sub  0x00000039 , 0x00000010 , 0x00000011 
+ 00031093  0x0000645a ifetch  0x00000004 , 0x00000006 
+ 00031094  0x0000645b ixor  0x00000002 , 0x0000003f 
+ 00031095  0x0000645c istore  0x00000004 , 0x00000005 
+ 00031096  0x0000645d increase  0xfffffff8 , 0x00000006 
+ 00031097  0x0000645e loop  0x00007975 
+ 00031098  0x0000645f copy  0x00000011 , 0x00000039 
+ 00031099  0x00006460 deposit  0x00000002 
+ 00031100  0x00006462 istore  0x00000004 , 0x00000005 
+ 00031101  0x00006463 loop  0x0000797c 
+ 00031102  0x00006464 rtn 
+ 00031103  0x00006467 call  0x00007984 
+ 00031104  0x00006468 call  0x0000796b 
+ 00031105  0x00006469 branch  0x000079aa 
+ 00031106  0x0000646c call  0x00007984 
+ 00031107  0x0000646d branch  0x000079aa 
+ 00031108  0x00006470 arg  0x00000902 , 0x00000006 
+ 00031109  0x00006471 arg  0x0000050a , 0x00000005 
+ 00031110  0x00006472 force  0x00000006 , 0x00000039 
+ 00031111  0x00006473 call  0x00007a90 
+ 00031112  0x00006474 arg  0x000046ca , 0x00000006 
+ 00031113  0x00006475 force  0x00000006 , 0x00000039 
+ 00031114  0x00006476 call  0x00007a90 
+ 00031115  0x00006477 arg  0x00000962 , 0x00000006 
+ 00031116  0x00006478 call  0x00007a8f 
+ 00031117  0x00006479 call  0x00007927 
+ 00031118  0x0000647a call  0x0000792e 
+ 00031119  0x0000647b arg  0x00000952 , 0x00000006 
+ 00031120  0x0000647c arg  0x0000050a , 0x00000005 
+ 00031121  0x0000647d branch  0x000079a1 
+ 00031122  0x00006480 arg  0x000046ca , 0x00000006 
+ 00031123  0x00006481 arg  0x0000050a , 0x00000005 
+ 00031124  0x00006482 force  0x00000006 , 0x00000039 
+ 00031125  0x00006483 call  0x00007a90 
+ 00031126  0x00006484 arg  0x00000902 , 0x00000006 
+ 00031127  0x00006485 force  0x00000006 , 0x00000039 
+ 00031128  0x00006486 call  0x00007a90 
+ 00031129  0x00006487 arg  0x00000952 , 0x00000006 
+ 00031130  0x00006488 call  0x00007a8f 
+ 00031131  0x00006489 call  0x00007927 
+ 00031132  0x0000648a call  0x0000792e 
+ 00031133  0x0000648b arg  0x00000962 , 0x00000006 
+ 00031134  0x0000648c arg  0x0000050a , 0x00000005 
+ 00031135  0x0000648d call  0x000079a1 
+ 00031136  0x0000648e branch  0x000079aa 
+ 00031137  0x00006491 call  0x00007a8f 
+ 00031138  0x00006492 setarg  0x00800000 
+ 00031139  0x00006493 lshift8  0x0000003f , 0x0000003f 
+ 00031140  0x00006494 istore  0x00000004 , 0x00000005 
+ 00031141  0x00006495 force  0x00000005 , 0x00000039 
+ 00031142  0x00006496 call  0x00007e91 
+ 00031143  0x00006497 setarg  0x00000280 
+ 00031144  0x00006498 istore  0x00000004 , 0x00000005 
+ 00031145  0x00006499 branch  0x0000792e 
+ 00031146  0x0000649b fetch  0x00000004 , 0x00000962 
+ 00031147  0x0000649d arg  0x000003e8 , 0x00000011 
+ 00031148  0x0000649e idiv  0x00000011 
+ 00031149  0x0000649f call  0x00007f53 
+ 00031150  0x000064a0 remainder  0x0000003f 
+ 00031151  0x000064a1 store  0x00000004 , 0x000008de 
+ 00031152  0x000064a2 quotient  0x0000003f 
+ 00031153  0x000064a3 arg  0x000003e8 , 0x00000011 
+ 00031154  0x000064a4 idiv  0x00000011 
+ 00031155  0x000064a5 call  0x00007f53 
+ 00031156  0x000064a6 remainder  0x0000003f 
+ 00031157  0x000064a7 arg  0x000003e8 , 0x00000011 
+ 00031158  0x000064a8 imul32  0x00000011 , 0x0000003f 
+ 00031159  0x000064a9 fetcht  0x00000004 , 0x000008de 
+ 00031160  0x000064aa iadd  0x00000002 , 0x0000003f 
+ 00031161  0x000064ab store  0x00000004 , 0x000008de 
+ 00031162  0x000064ac rtn 
+ 00031163  0x000064af jam  0x00000000 , 0x000046ec 
+ 00031164  0x000064b0 branch  0x000079bf 
+ 00031165  0x000064b3 fetch  0x00000001 , 0x000046ea 
+ 00031166  0x000064b4 bne  0x00000002 , 0x000079bb 
+ 00031167  0x000064b6 set1  0x00000025 , 0x00000000 
+ 00031168  0x000064b7 bpatch  0x000000e9 , 0x0000403d 
+ 00031169  0x000064b8 setarg  0x00363636 
+ 00031170  0x000064b9 lshift8  0x0000003f , 0x00000002 
+ 00031171  0x000064ba or_into  0x00000036 , 0x00000002 
+ 00031172  0x000064bb fetch  0x00000002 , 0x000009a2 
+ 00031173  0x000064bc copy  0x0000003f , 0x00000006 
+ 00031174  0x000064bd force  0x00000004 , 0x00000039 
+ 00031175  0x000064be call  0x00007972 
+ 00031176  0x000064bf call  0x00007927 
+ 00031177  0x000064c0 call  0x0000792e 
+ 00031178  0x000064c1 fetch  0x00000002 , 0x000009a4 
+ 00031179  0x000064c2 copy  0x0000003f , 0x00000006 
+ 00031180  0x000064c3 arg  0x0000050a , 0x00000005 
+ 00031181  0x000064c4 force  0x00000006 , 0x00000039 
+ 00031182  0x000064c5 call  0x00007a90 
+ 00031183  0x000064c6 fetch  0x00000002 , 0x000009a6 
+ 00031184  0x000064c7 copy  0x0000003f , 0x00000006 
+ 00031185  0x000064c8 force  0x00000006 , 0x00000039 
+ 00031186  0x000064c9 call  0x00007a90 
+ 00031187  0x000064ca setarg  0x00800000 
+ 00031188  0x000064cb istore  0x00000003 , 0x00000005 
+ 00031189  0x000064cd fetch  0x00000001 , 0x000046ec 
+ 00031190  0x000064cf istore  0x00000001 , 0x00000005 
+ 00031191  0x000064d0 force  0x00000000 , 0x0000003f 
+ 00031192  0x000064d1 istore  0x00000008 , 0x00000005 
+ 00031193  0x000064d2 setarg  0x00000388 
+ 00031194  0x000064d3 istore  0x00000004 , 0x00000005 
+ 00031195  0x000064d4 call  0x0000792e 
+ 00031196  0x000064d5 call  0x0000796b 
+ 00031197  0x000064d6 arg  0x00000962 , 0x00000006 
+ 00031198  0x000064d7 arg  0x0000062a , 0x00000005 
+ 00031199  0x000064d8 call  0x00007e85 
+ 00031200  0x000064da setarg  0x005c5c5c 
+ 00031201  0x000064db lshift8  0x0000003f , 0x00000002 
+ 00031202  0x000064dc or_into  0x0000005c , 0x00000002 
+ 00031203  0x000064dd fetch  0x00000002 , 0x000009a2 
+ 00031204  0x000064de copy  0x0000003f , 0x00000006 
+ 00031205  0x000064df force  0x00000004 , 0x00000039 
+ 00031206  0x000064e0 call  0x00007972 
+ 00031207  0x000064e1 call  0x00007927 
+ 00031208  0x000064e2 call  0x0000792e 
+ 00031209  0x000064e3 arg  0x0000064a , 0x00000006 
+ 00031210  0x000064e4 arg  0x0000050a , 0x00000005 
+ 00031211  0x000064e5 force  0x00000008 , 0x00000039 
+ 00031212  0x000064e6 call  0x00007a90 
+ 00031213  0x000064e7 setarg  0x00800000 
+ 00031214  0x000064e8 lshift8  0x0000003f , 0x0000003f 
+ 00031215  0x000064e9 istore  0x00000004 , 0x00000005 
+ 00031216  0x000064ea call  0x00007e90 
+ 00031217  0x000064eb setarg  0x00000300 
+ 00031218  0x000064ec istore  0x00000004 , 0x00000005 
+ 00031219  0x000064ed call  0x0000792e 
+ 00031220  0x000064ee branch  0x0000796b 
+ 00031221  0x000064f2 setarg  0x00363636 
+ 00031222  0x000064f3 lshift8  0x0000003f , 0x00000002 
+ 00031223  0x000064f4 or_into  0x00000036 , 0x00000002 
+ 00031224  0x000064f5 arg  0x00000942 , 0x00000006 
+ 00031225  0x000064f6 force  0x00000006 , 0x00000039 
+ 00031226  0x000064f7 call  0x00007972 
+ 00031227  0x000064f8 call  0x00007927 
+ 00031228  0x000064f9 call  0x0000792e 
+ 00031229  0x000064fa fetch  0x00000002 , 0x000009ae 
+ 00031230  0x000064fb copy  0x0000003f , 0x00000006 
+ 00031231  0x000064fc arg  0x0000050a , 0x00000005 
+ 00031232  0x000064fd call  0x00007a8f 
+ 00031233  0x000064fe fetch  0x00000002 , 0x000009b0 
+ 00031234  0x000064ff copy  0x0000003f , 0x00000006 
+ 00031235  0x00006500 call  0x00007a8f 
+ 00031236  0x00006502 setarg  0x0062746c 
+ 00031237  0x00006503 lshift8  0x0000003f , 0x0000003f 
+ 00031238  0x00006504 or_into  0x0000006b , 0x0000003f 
+ 00031239  0x00006505 istore  0x00000004 , 0x00000005 
+ 00031240  0x00006506 arg  0x00000657 , 0x00000006 
+ 00031241  0x00006507 force  0x00000003 , 0x00000039 
+ 00031242  0x00006508 call  0x00007a90 
+ 00031243  0x0000650a setarg  0x00800000 
+ 00031244  0x0000650b lshift8  0x0000003f , 0x0000003f 
+ 00031245  0x0000650c istore  0x00000004 , 0x00000005 
+ 00031246  0x0000650d force  0x00000000 , 0x0000003f 
+ 00031247  0x0000650e istore  0x00000008 , 0x00000005 
+ 00031248  0x0000650f setarg  0x00000380 
+ 00031249  0x00006510 istore  0x00000004 , 0x00000005 
+ 00031250  0x00006511 call  0x0000792e 
+ 00031251  0x00006513 call  0x0000796b 
+ 00031252  0x00006514 arg  0x00000962 , 0x00000006 
+ 00031253  0x00006515 arg  0x0000062a , 0x00000005 
+ 00031254  0x00006516 call  0x00007e85 
+ 00031255  0x00006518 setarg  0x005c5c5c 
+ 00031256  0x00006519 lshift8  0x0000003f , 0x00000002 
+ 00031257  0x0000651a or_into  0x0000005c , 0x00000002 
+ 00031258  0x0000651b arg  0x00000942 , 0x00000006 
+ 00031259  0x0000651c force  0x00000006 , 0x00000039 
+ 00031260  0x0000651d call  0x00007972 
+ 00031261  0x0000651e call  0x00007927 
+ 00031262  0x0000651f call  0x0000792e 
+ 00031263  0x00006520 arg  0x0000064a , 0x00000006 
+ 00031264  0x00006521 arg  0x0000050a , 0x00000005 
+ 00031265  0x00006522 force  0x00000008 , 0x00000039 
+ 00031266  0x00006523 call  0x00007a90 
+ 00031267  0x00006524 setarg  0x00800000 
+ 00031268  0x00006525 lshift8  0x0000003f , 0x0000003f 
+ 00031269  0x00006526 istore  0x00000004 , 0x00000005 
+ 00031270  0x00006527 call  0x00007e90 
+ 00031271  0x00006528 setarg  0x00000300 
+ 00031272  0x00006529 istore  0x00000004 , 0x00000005 
+ 00031273  0x0000652a call  0x0000792e 
+ 00031274  0x0000652b branch  0x0000796b 
+ 00031275  0x0000652f fetch  0x00000001 , 0x000046ea 
+ 00031276  0x00006530 bne  0x00000002 , 0x00007a3d 
+ 00031277  0x00006532 set1  0x00000025 , 0x00000000 
+ 00031278  0x00006533 bpatch  0x000000ea , 0x0000403d 
+ 00031279  0x00006534 setarg  0x00363636 
+ 00031280  0x00006535 lshift8  0x0000003f , 0x00000002 
+ 00031281  0x00006536 or_into  0x00000036 , 0x00000002 
+ 00031282  0x00006537 arg  0x00000942 , 0x00000006 
+ 00031283  0x00006538 force  0x00000006 , 0x00000039 
+ 00031284  0x00006539 call  0x00007972 
+ 00031285  0x0000653a call  0x00007927 
+ 00031286  0x0000653b call  0x0000792e 
+ 00031287  0x0000653c arg  0x00000962 , 0x00000006 
+ 00031288  0x0000653d arg  0x0000050a , 0x00000005 
+ 00031289  0x0000653e call  0x00007a8f 
+ 00031290  0x0000653f arg  0x00000952 , 0x00000006 
+ 00031291  0x00006540 call  0x00007a8f 
+ 00031292  0x00006541 branch  0x00007a52 
+ 00031293  0x00006544 setarg  0x00000000 
+ 00031294  0x00006545 store  0x00000004 , 0x00004719 
+ 00031295  0x00006546 branch  0x00007a2d 
+ 00031296  0x00006549 setarg  0x00000000 
+ 00031297  0x0000654a store  0x00000004 , 0x00004719 
+ 00031298  0x0000654b branch  0x00007a45 
+ 00031299  0x0000654f fetch  0x00000001 , 0x000046ea 
+ 00031300  0x00006550 bne  0x00000002 , 0x00007a40 
+ 00031301  0x00006552 setarg  0x00363636 
+ 00031302  0x00006553 lshift8  0x0000003f , 0x00000002 
+ 00031303  0x00006554 or_into  0x00000036 , 0x00000002 
+ 00031304  0x00006555 arg  0x00000942 , 0x00000006 
+ 00031305  0x00006556 force  0x00000006 , 0x00000039 
+ 00031306  0x00006557 call  0x00007972 
+ 00031307  0x00006558 call  0x00007927 
+ 00031308  0x00006559 call  0x0000792e 
+ 00031309  0x0000655b arg  0x00000952 , 0x00000006 
+ 00031310  0x0000655c arg  0x0000050a , 0x00000005 
+ 00031311  0x0000655d call  0x00007a8f 
+ 00031312  0x0000655e arg  0x00000962 , 0x00000006 
+ 00031313  0x0000655f call  0x00007a8f 
+ 00031314  0x00006561 setarg  0x00000000 
+ 00031315  0x00006562 istore  0x00000008 , 0x00000005 
+ 00031316  0x00006563 istore  0x00000004 , 0x00000005 
+ 00031317  0x00006564 fetch  0x00000004 , 0x00004719 
+ 00031318  0x00006565 istore  0x00000004 , 0x00000005 
+ 00031319  0x00006567 copy  0x00000005 , 0x00000002 
+ 00031320  0x00006568 jam  0x00000080 , 0x0000064a 
+ 00031321  0x00006569 copy  0x00000002 , 0x00000005 
+ 00031322  0x0000656a arg  0x0000065a , 0x00000006 
+ 00031323  0x0000656b call  0x00007a8f 
+ 00031324  0x0000656d call  0x0000792e 
+ 00031325  0x0000656f arg  0x0000050a , 0x00000005 
+ 00031326  0x00006570 force  0x00000007 , 0x00000039 
+ 00031327  0x00006571 call  0x00007e91 
+ 00031328  0x00006572 istore  0x00000004 , 0x00000005 
+ 00031329  0x00006573 setarg  0x000003f8 
+ 00031330  0x00006574 istore  0x00000004 , 0x00000005 
+ 00031331  0x00006575 call  0x0000792e 
+ 00031332  0x00006576 call  0x0000796b 
+ 00031333  0x00006578 arg  0x00000962 , 0x00000006 
+ 00031334  0x00006579 arg  0x0000062a , 0x00000005 
+ 00031335  0x0000657a call  0x00007e85 
+ 00031336  0x0000657c setarg  0x005c5c5c 
+ 00031337  0x0000657d lshift8  0x0000003f , 0x00000002 
+ 00031338  0x0000657e or_into  0x0000005c , 0x00000002 
+ 00031339  0x0000657f arg  0x00000942 , 0x00000006 
+ 00031340  0x00006580 force  0x00000006 , 0x00000039 
+ 00031341  0x00006581 call  0x00007972 
+ 00031342  0x00006582 call  0x00007927 
+ 00031343  0x00006583 call  0x0000792e 
+ 00031344  0x00006584 arg  0x0000064a , 0x00000006 
+ 00031345  0x00006585 arg  0x0000050a , 0x00000005 
+ 00031346  0x00006586 force  0x00000008 , 0x00000039 
+ 00031347  0x00006587 call  0x00007a90 
+ 00031348  0x00006588 setarg  0x00800000 
+ 00031349  0x00006589 lshift8  0x0000003f , 0x0000003f 
+ 00031350  0x0000658a istore  0x00000004 , 0x00000005 
+ 00031351  0x0000658b call  0x00007e90 
+ 00031352  0x0000658c setarg  0x00000300 
+ 00031353  0x0000658d istore  0x00000004 , 0x00000005 
+ 00031354  0x0000658e call  0x0000792e 
+ 00031355  0x0000658f branch  0x0000796b 
+ 00031356  0x00006597 jam  0x000000c0 , 0x00000507 
+ 00031357  0x00006599 fetch  0x00000001 , 0x00000507 
+ 00031358  0x0000659a rtn  0x00000034 
+ 00031359  0x0000659b increase  0xffffffff , 0x0000003f 
+ 00031360  0x0000659c store  0x00000001 , 0x00000507 
+ 00031361  0x0000659d arg  0x000005e2 , 0x00000006 
+ 00031362  0x0000659e call  0x00007708 
+ 00031363  0x0000659f branch  0x00007a7d , 0x00000001 
+ 00031364  0x000065a0 arg  0x0000050a , 0x00000006 
+ 00031365  0x000065a1 arg  0x0000059a , 0x00000005 
+ 00031366  0x000065a2 branch  0x0000770e 
+ 00031367  0x000065a5 call  0x0000781f 
+ 00031368  0x000065a6 fetch  0x00000001 , 0x00000507 
+ 00031369  0x000065a7 increase  0xffffffff , 0x0000003f 
+ 00031370  0x000065a8 store  0x00000001 , 0x00000507 
+ 00031371  0x000065a9 arg  0x000005e2 , 0x00000006 
+ 00031372  0x000065aa call  0x00007708 
+ 00031373  0x000065ab rtn  0x00000001 
+ 00031374  0x000065ac branch  0x00007870 
+ 00031375  0x000065af force  0x00000004 , 0x00000039 
+ 00031376  0x000065b1 increase  0xfffffffc , 0x00000006 
+ 00031377  0x000065b3 ifetch  0x00000004 , 0x00000006 
+ 00031378  0x000065b4 istore  0x00000004 , 0x00000005 
+ 00031379  0x000065b5 increase  0xfffffff8 , 0x00000006 
+ 00031380  0x000065b6 loop  0x00007a91 
+ 00031381  0x000065b7 rtn 
+ 00031382  0x000065bd set1  0x00000025 , 0x00000000 
+ 00031383  0x000065be bpatch  0x000000eb , 0x0000403d 
+ 00031384  0x000065bf fetch  0x00000001 , 0x00004563 
+ 00031385  0x000065c0 branch  0x000048de , 0x00000034 
+ 00031386  0x000065c1 call  0x000048da 
+ 00031387  0x000065c2 call  0x000075fb 
+ 00031388  0x000065c4 branch  0x00007a9d 
+ 00031389  0x000065ca fetch  0x00000001 , 0x00004568 
+ 00031390  0x000065cb rtnne  0x00000000 
+ 00031391  0x000065cc fetch  0x00000001 , 0x00004565 
+ 00031392  0x000065cd rtnne  0x00000000 
+ 00031393  0x000065cf arg  0x0000463a , 0x00000005 
+ 00031394  0x000065d0 force  0x0000000f , 0x00000007 
+ 00031395  0x000065d1 call  0x000076bb 
+ 00031396  0x000065d2 random  0x0000003f 
+ 00031397  0x000065d3 rshift  0x0000003f , 0x0000003f 
+ 00031398  0x000065d4 istore  0x00000002 , 0x00000005 
+ 00031399  0x000065d6 arg  0x0000068a , 0x00000005 
+ 00031400  0x000065d7 arg  0x0000463a , 0x00000006 
+ 00031401  0x000065d8 call  0x00007e85 
+ 00031402  0x000065da arg  0x0000056a , 0x00000005 
+ 00031403  0x000065db arg  0x00000882 , 0x00000006 
+ 00031404  0x000065dc call  0x00007e7b 
+ 00031405  0x000065de arg  0x000005aa , 0x00000005 
+ 00031406  0x000065df call  0x00007e9b 
+ 00031407  0x000065e0 jam  0x00000001 , 0x000005aa 
+ 00031408  0x000065e2 call  0x00007ae8 
+ 00031409  0x000065e3 jam  0x00000003 , 0x00004565 
+ 00031410  0x000065e4 rtn 
+ 00031411  0x000065e7 arg  0x0000465a , 0x00000005 
+ 00031412  0x000065e8 arg  0x000005ca , 0x00000006 
+ 00031413  0x000065e9 call  0x00007e7b 
+ 00031414  0x000065ea jam  0x00000003 , 0x00004568 
+ 00031415  0x000065eb jam  0x00000000 , 0x00004565 
+ 00031416  0x000065ec rtn 
+ 00031417  0x000065f1 fetch  0x00000001 , 0x000008dd 
+ 00031418  0x000065f2 rtnne  0x00000000 
+ 00031419  0x000065f3 fetch  0x00000001 , 0x00004565 
+ 00031420  0x000065f4 rtnne  0x00000000 
+ 00031421  0x000065f6 arg  0x0000068a , 0x00000005 
+ 00031422  0x000065f7 arg  0x0000463a , 0x00000006 
+ 00031423  0x000065f8 call  0x00007e85 
+ 00031424  0x000065fa arg  0x0000056a , 0x00000005 
+ 00031425  0x000065fb arg  0x000008e2 , 0x00000006 
+ 00031426  0x000065fc call  0x00007e7b 
+ 00031427  0x000065fe arg  0x000005aa , 0x00000005 
+ 00031428  0x000065ff call  0x00007e9b 
+ 00031429  0x00006600 jam  0x00000001 , 0x000005aa 
+ 00031430  0x00006602 call  0x00007ae8 
+ 00031431  0x00006603 jam  0x00000004 , 0x00004565 
+ 00031432  0x00006604 rtn 
+ 00031433  0x00006609 arg  0x00000922 , 0x00000005 
+ 00031434  0x0000660a arg  0x000005ca , 0x00000006 
+ 00031435  0x0000660b call  0x00007e85 
+ 00031436  0x0000660c jam  0x00000003 , 0x000008dd 
+ 00031437  0x0000660d jam  0x00000000 , 0x00004565 
+ 00031438  0x0000660e rtn 
+ 00031439  0x00006613 fetch  0x00000001 , 0x00004563 
+ 00031440  0x00006614 rtn  0x00000034 
+ 00031441  0x00006615 fetch  0x00000001 , 0x00004565 
+ 00031442  0x00006616 rtn  0x00000034 
+ 00031443  0x00006617 increase  0x00000080 , 0x0000003f 
+ 00031444  0x00006618 store  0x00000001 , 0x00004565 
+ 00031445  0x00006619 rtnbit1  0x00000007 
+ 00031446  0x0000661a fetch  0x00000002 , 0x00000507 
+ 00031447  0x0000661b branch  0x00007ad9 , 0x00000034 
+ 00031448  0x0000661c branch  0x00007ae0 
+ 00031449  0x0000661f set1  0x00000025 , 0x00000000 
+ 00031450  0x00006620 bpatch  0x000000ec , 0x0000403d 
+ 00031451  0x00006621 call  0x00007af6 
+ 00031452  0x00006622 fetch  0x00000001 , 0x00004565 
+ 00031453  0x00006623 beq  0x00000003 , 0x00007ab3 
+ 00031454  0x00006624 beq  0x00000004 , 0x00007ac9 
+ 00031455  0x00006625 rtn 
+ 00031456  0x00006629 call  0x00007b08 
+ 00031457  0x0000662a fetch  0x00000002 , 0x00000507 
+ 00031458  0x0000662b increase  0xffffffff , 0x0000003f 
+ 00031459  0x0000662c store  0x00000002 , 0x00000507 
+ 00031460  0x0000662d arg  0x0000068a , 0x00000006 
+ 00031461  0x0000662e call  0x00007708 
+ 00031462  0x0000662f rtn  0x00000001 
+ 00031463  0x00006630 branch  0x00007b59 
+ 00031464  0x00006633 set1  0x00000025 , 0x00000000 
+ 00031465  0x00006634 bpatch  0x000000ed , 0x0000403d 
+ 00031466  0x00006635 setarg  0x00000100 , 0x0000003f 
+ 00031467  0x00006636 store  0x00000002 , 0x00000507 
+ 00031468  0x00006638 fetch  0x00000002 , 0x00000507 
+ 00031469  0x00006639 rtn  0x00000034 
+ 00031470  0x0000663a increase  0xffffffff , 0x0000003f 
+ 00031471  0x0000663b store  0x00000002 , 0x00000507 
+ 00031472  0x0000663c arg  0x0000068a , 0x00000006 
+ 00031473  0x0000663d call  0x00007708 
+ 00031474  0x0000663e branch  0x00007aec , 0x00000001 
+ 00031475  0x0000663f arg  0x0000056a , 0x00000006 
+ 00031476  0x00006640 arg  0x0000062a , 0x00000005 
+ 00031477  0x00006641 branch  0x00007e7a 
+ 00031478  0x00006645 arg  0x0000066a , 0x00000011 
+ 00031479  0x00006646 arg  0x0000076a , 0x00000005 
+ 00031480  0x00006647 call  0x00007bc5 
+ 00031481  0x00006648 arg  0x0000076a , 0x00000011 
+ 00031482  0x00006649 arg  0x0000070a , 0x00000005 
+ 00031483  0x0000664a call  0x00007c9c 
+ 00031484  0x0000664b arg  0x0000062a , 0x00000011 
+ 00031485  0x0000664c arg  0x0000070a , 0x00000012 
+ 00031486  0x0000664d arg  0x000005ca , 0x00000005 
+ 00031487  0x0000664e call  0x00007c03 
+ 00031488  0x0000664f arg  0x0000076a , 0x00000011 
+ 00031489  0x00006650 arg  0x0000070a , 0x00000012 
+ 00031490  0x00006651 arg  0x0000074a , 0x00000005 
+ 00031491  0x00006652 call  0x00007c03 
+ 00031492  0x00006653 arg  0x0000064a , 0x00000011 
+ 00031493  0x00006654 arg  0x0000074a , 0x00000012 
+ 00031494  0x00006655 arg  0x000005ea , 0x00000005 
+ 00031495  0x00006656 branch  0x00007c03 
+ 00031496  0x00006659 arg  0x0000066a , 0x00000011 
+ 00031497  0x0000665a arg  0x0000074a , 0x00000005 
+ 00031498  0x0000665b call  0x00007c9c 
+ 00031499  0x0000665c arg  0x0000074a , 0x00000011 
+ 00031500  0x0000665d arg  0x0000076a , 0x00000005 
+ 00031501  0x0000665e call  0x00007c9c 
+ 00031502  0x00006660 arg  0x00000862 , 0x00000011 
+ 00031503  0x00006661 arg  0x0000076a , 0x00000012 
+ 00031504  0x00006662 arg  0x0000076a , 0x00000005 
+ 00031505  0x00006663 call  0x00007c03 
+ 00031506  0x00006664 arg  0x0000062a , 0x00000011 
+ 00031507  0x00006665 arg  0x0000074a , 0x00000005 
+ 00031508  0x00006666 call  0x00007c9c 
+ 00031509  0x00006668 arg  0x0000074a , 0x00000006 
+ 00031510  0x00006669 arg  0x0000070a , 0x00000005 
+ 00031511  0x0000666a call  0x00007e85 
+ 00031512  0x0000666b arg  0x0000070a , 0x00000011 
+ 00031513  0x0000666c call  0x00007ca3 
+ 00031514  0x0000666d arg  0x0000074a , 0x00000011 
+ 00031515  0x0000666e arg  0x0000070a , 0x00000012 
+ 00031516  0x0000666f arg  0x0000074a , 0x00000005 
+ 00031517  0x00006670 call  0x00007ca0 
+ 00031518  0x00006672 arg  0x0000074a , 0x00000011 
+ 00031519  0x00006673 arg  0x0000076a , 0x00000012 
+ 00031520  0x00006674 arg  0x0000074a , 0x00000005 
+ 00031521  0x00006675 call  0x00007ca0 
+ 00031522  0x00006677 arg  0x0000062a , 0x00000006 
+ 00031523  0x00006678 arg  0x0000070a , 0x00000005 
+ 00031524  0x00006679 call  0x00007e85 
+ 00031525  0x0000667a arg  0x0000064a , 0x00000011 
+ 00031526  0x0000667b arg  0x0000076a , 0x00000005 
+ 00031527  0x0000667c call  0x00007c9c 
+ 00031528  0x0000667d arg  0x0000070a , 0x00000011 
+ 00031529  0x0000667e call  0x00007ca3 
+ 00031530  0x0000667f arg  0x0000070a , 0x00000011 
+ 00031531  0x00006680 call  0x00007ca3 
+ 00031532  0x00006681 arg  0x0000070a , 0x00000011 
+ 00031533  0x00006682 arg  0x0000076a , 0x00000012 
+ 00031534  0x00006683 arg  0x0000070a , 0x00000005 
+ 00031535  0x00006684 call  0x00007c03 
+ 00031536  0x00006685 arg  0x0000076a , 0x00000011 
+ 00031537  0x00006686 arg  0x0000072a , 0x00000005 
+ 00031538  0x00006687 call  0x00007c9c 
+ 00031539  0x00006688 arg  0x0000072a , 0x00000011 
+ 00031540  0x00006689 call  0x00007ca3 
+ 00031541  0x0000668a arg  0x0000072a , 0x00000011 
+ 00031542  0x0000668b call  0x00007ca3 
+ 00031543  0x0000668c arg  0x0000072a , 0x00000011 
+ 00031544  0x0000668d call  0x00007ca3 
+ 00031545  0x0000668e arg  0x0000064a , 0x00000006 
+ 00031546  0x0000668f arg  0x0000076a , 0x00000005 
+ 00031547  0x00006690 call  0x00007e85 
+ 00031548  0x00006691 arg  0x0000076a , 0x00000011 
+ 00031549  0x00006692 call  0x00007ca3 
+ 00031550  0x00006693 arg  0x0000076a , 0x00000011 
+ 00031551  0x00006694 arg  0x0000066a , 0x00000012 
+ 00031552  0x00006695 arg  0x0000066a , 0x00000005 
+ 00031553  0x00006696 call  0x00007c03 
+ 00031554  0x00006699 arg  0x0000074a , 0x00000011 
+ 00031555  0x0000669a arg  0x0000076a , 0x00000005 
+ 00031556  0x0000669b call  0x00007c9c 
+ 00031557  0x0000669d arg  0x0000076a , 0x00000011 
+ 00031558  0x0000669e arg  0x0000070a , 0x00000012 
+ 00031559  0x0000669f arg  0x0000076a , 0x00000005 
+ 00031560  0x000066a0 call  0x00007cb9 
+ 00031561  0x000066a1 arg  0x0000076a , 0x00000011 
+ 00031562  0x000066a2 arg  0x0000070a , 0x00000012 
+ 00031563  0x000066a3 arg  0x0000062a , 0x00000005 
+ 00031564  0x000066a4 call  0x00007cb9 
+ 00031565  0x000066a5 arg  0x0000070a , 0x00000011 
+ 00031566  0x000066a6 arg  0x0000062a , 0x00000012 
+ 00031567  0x000066a7 arg  0x0000076a , 0x00000005 
+ 00031568  0x000066a8 call  0x00007cb9 
+ 00031569  0x000066a9 arg  0x0000076a , 0x00000011 
+ 00031570  0x000066aa arg  0x0000074a , 0x00000012 
+ 00031571  0x000066ab arg  0x0000076a , 0x00000005 
+ 00031572  0x000066ac call  0x00007c03 
+ 00031573  0x000066ad arg  0x0000076a , 0x00000011 
+ 00031574  0x000066ae arg  0x0000072a , 0x00000012 
+ 00031575  0x000066af arg  0x0000064a , 0x00000005 
+ 00031576  0x000066b0 branch  0x00007cb9 
+ 00031577  0x000066b4 arg  0x000005aa , 0x00000011 
+ 00031578  0x000066b5 arg  0x0000078a , 0x00000005 
+ 00031579  0x000066b6 call  0x00007c9c 
+ 00031580  0x000066b7 arg  0x0000062a , 0x00000011 
+ 00031581  0x000066b8 arg  0x0000078a , 0x00000012 
+ 00031582  0x000066b9 arg  0x0000072a , 0x00000005 
+ 00031583  0x000066ba call  0x00007c03 
+ 00031584  0x000066bd arg  0x000005aa , 0x00000011 
+ 00031585  0x000066be arg  0x0000078a , 0x00000012 
+ 00031586  0x000066bf arg  0x0000078a , 0x00000005 
+ 00031587  0x000066c0 call  0x00007c03 
+ 00031588  0x000066c1 arg  0x0000064a , 0x00000011 
+ 00031589  0x000066c2 arg  0x0000078a , 0x00000012 
+ 00031590  0x000066c3 arg  0x0000070a , 0x00000005 
+ 00031591  0x000066c4 call  0x00007c03 
+ 00031592  0x000066c7 arg  0x0000066a , 0x00000011 
+ 00031593  0x000066c8 arg  0x0000078a , 0x00000005 
+ 00031594  0x000066c9 call  0x00007c9c 
+ 00031595  0x000066ca arg  0x0000056a , 0x00000011 
+ 00031596  0x000066cb arg  0x0000078a , 0x00000012 
+ 00031597  0x000066cc arg  0x0000074a , 0x00000005 
+ 00031598  0x000066cd call  0x00007c03 
+ 00031599  0x000066cf arg  0x0000066a , 0x00000011 
+ 00031600  0x000066d0 arg  0x0000078a , 0x00000012 
+ 00031601  0x000066d1 arg  0x0000078a , 0x00000005 
+ 00031602  0x000066d2 call  0x00007c03 
+ 00031603  0x000066d3 arg  0x0000058a , 0x00000011 
+ 00031604  0x000066d4 arg  0x0000078a , 0x00000012 
+ 00031605  0x000066d5 arg  0x0000076a , 0x00000005 
+ 00031606  0x000066d6 call  0x00007c03 
+ 00031607  0x000066db arg  0x0000072a , 0x00000012 
+ 00031608  0x000066dc arg  0x0000074a , 0x00000011 
+ 00031609  0x000066dd arg  0x0000078a , 0x00000005 
+ 00031610  0x000066de call  0x00007cb9 
+ 00031611  0x000066df arg  0x0000072a , 0x00000011 
+ 00031612  0x000066e0 arg  0x0000074a , 0x00000012 
+ 00031613  0x000066e1 arg  0x0000072a , 0x00000005 
+ 00031614  0x000066e2 call  0x00007ca0 
+ 00031615  0x000066e5 arg  0x0000070a , 0x00000012 
+ 00031616  0x000066e6 arg  0x0000076a , 0x00000011 
+ 00031617  0x000066e7 arg  0x0000074a , 0x00000005 
+ 00031618  0x000066e8 call  0x00007cb9 
+ 00031619  0x000066e9 arg  0x0000070a , 0x00000011 
+ 00031620  0x000066ea arg  0x0000076a , 0x00000012 
+ 00031621  0x000066eb arg  0x0000070a , 0x00000005 
+ 00031622  0x000066ec call  0x00007ca0 
+ 00031623  0x000066ed arg  0x0000070a , 0x00000011 
+ 00031624  0x000066ee arg  0x0000078a , 0x00000012 
+ 00031625  0x000066ef arg  0x0000070a , 0x00000005 
+ 00031626  0x000066f0 call  0x00007c03 
+ 00031627  0x000066f1 arg  0x0000066a , 0x00000011 
+ 00031628  0x000066f2 arg  0x000005aa , 0x00000012 
+ 00031629  0x000066f3 arg  0x0000076a , 0x00000005 
+ 00031630  0x000066f4 call  0x00007c03 
+ 00031631  0x000066f5 arg  0x0000076a , 0x00000011 
+ 00031632  0x000066f6 arg  0x0000078a , 0x00000012 
+ 00031633  0x000066f7 arg  0x0000066a , 0x00000005 
+ 00031634  0x000066f8 call  0x00007c03 
+ 00031635  0x000066fa arg  0x0000078a , 0x00000011 
+ 00031636  0x000066fb arg  0x0000078a , 0x00000005 
+ 00031637  0x000066fc call  0x00007c9c 
+ 00031638  0x000066fd arg  0x0000078a , 0x00000011 
+ 00031639  0x000066fe arg  0x0000072a , 0x00000012 
+ 00031640  0x000066ff arg  0x0000076a , 0x00000005 
+ 00031641  0x00006700 call  0x00007c03 
+ 00031642  0x00006701 arg  0x0000078a , 0x00000011 
+ 00031643  0x00006702 arg  0x0000070a , 0x00000012 
+ 00031644  0x00006703 arg  0x0000070a , 0x00000005 
+ 00031645  0x00006704 call  0x00007c03 
+ 00031646  0x00006705 arg  0x0000074a , 0x00000011 
+ 00031647  0x00006706 arg  0x0000062a , 0x00000005 
+ 00031648  0x00006707 call  0x00007c9c 
+ 00031649  0x00006708 arg  0x0000062a , 0x00000011 
+ 00031650  0x00006709 arg  0x0000076a , 0x00000012 
+ 00031651  0x0000670a arg  0x0000062a , 0x00000005 
+ 00031652  0x0000670b call  0x00007cb9 
+ 00031653  0x0000670c arg  0x0000062a , 0x00000006 
+ 00031654  0x0000670d arg  0x0000078a , 0x00000005 
+ 00031655  0x0000670e call  0x00007e85 
+ 00031656  0x0000670f arg  0x0000078a , 0x00000011 
+ 00031657  0x00006710 call  0x00007ca3 
+ 00031658  0x00006711 arg  0x0000076a , 0x00000011 
+ 00031659  0x00006712 arg  0x0000078a , 0x00000012 
+ 00031660  0x00006713 arg  0x0000076a , 0x00000005 
+ 00031661  0x00006714 call  0x00007cb9 
+ 00031662  0x00006715 arg  0x0000076a , 0x00000011 
+ 00031663  0x00006716 arg  0x0000074a , 0x00000012 
+ 00031664  0x00006717 arg  0x0000074a , 0x00000005 
+ 00031665  0x00006718 call  0x00007c03 
+ 00031666  0x00006719 arg  0x0000074a , 0x00000011 
+ 00031667  0x0000671a arg  0x0000070a , 0x00000012 
+ 00031668  0x0000671b arg  0x0000064a , 0x00000005 
+ 00031669  0x0000671c call  0x00007cb9 
+ 00031670  0x0000671d arg  0x0000064a , 0x00000011 
+ 00031671  0x0000671e arg  0x00000842 , 0x00000012 
+ 00031672  0x0000671f arg  0x0000064a , 0x00000005 
+ 00031673  0x00006720 force  0x00000000 , 0x00000013 
+ 00031674  0x00006721 fetch  0x00000001 , 0x0000064a 
+ 00031675  0x00006722 isolate1  0x00000000 , 0x0000003f 
+ 00031676  0x00006723 call  0x00007c9e , 0x00000001 
+ 00031677  0x00006724 copy  0x00000013 , 0x00000030 
+ 00031678  0x00006725 arg  0x0000064a , 0x00000011 
+ 00031679  0x00006726 call  0x00007cce 
+ 00031680  0x00006727 fetch  0x00000001 , 0x00000669 
+ 00031681  0x00006728 isolate1  0x00000000 , 0x00000030 
+ 00031682  0x00006729 setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00031683  0x0000672a store  0x00000001 , 0x00000669 
+ 00031684  0x0000672b rtn 
+ 00031685  0x0000672e copy  0x00000005 , 0x0000000b 
+ 00031686  0x0000672f arg  0x0000072a , 0x00000005 
+ 00031687  0x00006730 call  0x00007e9b 
+ 00031688  0x00006731 force  0x00000000 , 0x0000003f 
+ 00031689  0x00006733 store  0x00000004 , 0x0000074a 
+ 00031690  0x00006734 jam  0x00000001 , 0x0000072a 
+ 00031691  0x00006735 arg  0x000006aa , 0x00000005 
+ 00031692  0x00006736 call  0x00007e9d 
+ 00031693  0x00006737 arg  0x00000842 , 0x00000006 
+ 00031694  0x00006738 arg  0x000006ea , 0x00000005 
+ 00031695  0x00006739 call  0x00007e85 
+ 00031696  0x0000673a copy  0x00000011 , 0x00000006 
+ 00031697  0x0000673b arg  0x0000070a , 0x00000005 
+ 00031698  0x0000673c call  0x00007e85 
+ 00031699  0x00006743 arg  0x0000070a , 0x00000006 
+ 00031700  0x00006744 call  0x00007cd8 
+ 00031701  0x00006745 branch  0x00007bfc , 0x00000034 
+ 00031702  0x0000674a arg  0x0000070a , 0x00000011 
+ 00031703  0x0000674b arg  0x0000072a , 0x00000012 
+ 00031704  0x0000674c call  0x00007cdb 
+ 00031705  0x0000674d arg  0x000006ea , 0x00000011 
+ 00031706  0x0000674e arg  0x000006aa , 0x00000012 
+ 00031707  0x0000674f call  0x00007cdb 
+ 00031708  0x00006751 arg  0x0000070a , 0x00000011 
+ 00031709  0x00006752 arg  0x000006ea , 0x00000012 
+ 00031710  0x00006753 call  0x00007cd4 
+ 00031711  0x00006754 branch  0x00007bee , 0x00000002 
+ 00031712  0x00006755 arg  0x000006ea , 0x00000011 
+ 00031713  0x00006756 arg  0x0000070a , 0x00000012 
+ 00031714  0x00006757 copy  0x00000011 , 0x00000005 
+ 00031715  0x00006758 call  0x00007ccc 
+ 00031716  0x00006759 arg  0x0000072a , 0x00000011 
+ 00031717  0x0000675a arg  0x000006aa , 0x00000012 
+ 00031718  0x0000675b copy  0x00000012 , 0x00000005 
+ 00031719  0x0000675c call  0x00007c9e 
+ 00031720  0x0000675d ifetch  0x00000001 , 0x00000011 
+ 00031721  0x0000675e iadd  0x00000013 , 0x00000013 
+ 00031722  0x0000675f ifetch  0x00000001 , 0x00000012 
+ 00031723  0x00006760 iadd  0x00000013 , 0x0000003f 
+ 00031724  0x00006761 istore  0x00000001 , 0x00000012 
+ 00031725  0x00006762 branch  0x00007bd3 
+ 00031726  0x00006764 arg  0x0000070a , 0x00000011 
+ 00031727  0x00006765 arg  0x000006ea , 0x00000012 
+ 00031728  0x00006766 copy  0x00000011 , 0x00000005 
+ 00031729  0x00006767 call  0x00007ccc 
+ 00031730  0x00006768 arg  0x000006aa , 0x00000011 
+ 00031731  0x00006769 arg  0x0000072a , 0x00000012 
+ 00031732  0x0000676a copy  0x00000012 , 0x00000005 
+ 00031733  0x0000676b call  0x00007c9e 
+ 00031734  0x0000676c ifetch  0x00000001 , 0x00000011 
+ 00031735  0x0000676d iadd  0x00000013 , 0x00000013 
+ 00031736  0x0000676e ifetch  0x00000001 , 0x00000012 
+ 00031737  0x0000676f iadd  0x00000013 , 0x0000003f 
+ 00031738  0x00006770 istore  0x00000001 , 0x00000012 
+ 00031739  0x00006771 branch  0x00007bd3 
+ 00031740  0x00006774 arg  0x000006aa , 0x00000011 
+ 00031741  0x00006775 copy  0x0000000b , 0x00000005 
+ 00031742  0x00006776 call  0x00007c2c 
+ 00031743  0x00006778 arg  0x00000842 , 0x00000011 
+ 00031744  0x00006779 copy  0x0000000b , 0x00000012 
+ 00031745  0x0000677a copy  0x0000000b , 0x00000005 
+ 00031746  0x0000677b branch  0x00007cb9 
+ 00031747  0x0000677f copy  0x00000005 , 0x0000000b 
+ 00031748  0x00006781 force  0x00000000 , 0x00000038 
+ 00031749  0x00006783 arg  0x000006aa , 0x00000005 
+ 00031750  0x00006784 call  0x00007e9d 
+ 00031751  0x00006785 arg  0x000009f1 , 0x00000005 
+ 00031752  0x00006786 call  0x00007e9d 
+ 00031753  0x0000678a copy  0x00000011 , 0x00000006 
+ 00031754  0x0000678c jam  0x00000000 , 0x000009f1 
+ 00031755  0x0000678d setarg  0x00000000 
+ 00031756  0x0000678e call  0x00007c96 
+ 00031757  0x0000678f copy  0x00000012 , 0x00000006 
+ 00031758  0x00006790 call  0x00007c9a 
+ 00031759  0x00006793 force  0x00000000 , 0x00000007 
+ 00031760  0x00006794 arg  0x000006aa , 0x00000005 
+ 00031761  0x00006798 arg  0x000009f1 , 0x00000002 
+ 00031762  0x00006799 copy  0x00000007 , 0x00000012 
+ 00031763  0x0000679a lshift2  0x00000012 , 0x0000003f 
+ 00031764  0x0000679c iadd  0x00000002 , 0x00000012 
+ 00031765  0x0000679d force  0x00000000 , 0x00000002 
+ 00031766  0x0000679e force  0x00000000 , 0x00000013 
+ 00031767  0x000067a4 ifetch  0x00000004 , 0x00000005 
+ 00031768  0x000067a5 iforce  0x00000011 
+ 00031769  0x000067a8 ifetch  0x00000004 , 0x00000012 
+ 00031770  0x000067a9 copy  0x00000013 , 0x00000038 
+ 00031771  0x000067aa imul32  0x0000002f , 0x0000003f 
+ 00031772  0x000067ab iadd  0x00000011 , 0x0000003f 
+ 00031773  0x000067ac iadd  0x00000002 , 0x0000003f 
+ 00031774  0x000067ad istore  0x00000004 , 0x00000005 
+ 00031775  0x000067ae rshift32  0x0000003f , 0x00000002 
+ 00031776  0x000067af increase  0x00000001 , 0x00000013 
+ 00031777  0x000067b0 compare  0x00000008 , 0x00000013 , 0x000000ff 
+ 00031778  0x000067b1 nbranch  0x00007c17 , 0x00000001 
+ 00031779  0x000067b3 deposit  0x00000002 
+ 00031780  0x000067b4 istore  0x00000004 , 0x00000005 
+ 00031781  0x000067b5 increase  0xffffffe0 , 0x00000005 
+ 00031782  0x000067b8 increase  0x00000001 , 0x00000007 
+ 00031783  0x000067b9 compare  0x00000008 , 0x00000007 , 0x000000ff 
+ 00031784  0x000067ba nbranch  0x00007c11 , 0x00000001 
+ 00031785  0x000067bb arg  0x000006aa , 0x00000011 
+ 00031786  0x000067bc copy  0x0000000b , 0x00000005 
+ 00031787  0x000067bd branch  0x00007c2c 
+ 00031788  0x000067c0 set1  0x00000025 , 0x00000000 
+ 00031789  0x000067c1 bpatch  0x000000ee , 0x0000403d 
+ 00031790  0x000067c2 copy  0x00000005 , 0x0000000b 
+ 00031791  0x000067c3 copy  0x00000011 , 0x00000030 
+ 00031792  0x000067c4 arg  0x000006ea , 0x00000012 
+ 00031793  0x000067c5 copy  0x00000012 , 0x00000005 
+ 00031794  0x000067c6 call  0x00007e98 
+ 00031795  0x000067c7 istore  0x00000008 , 0x00000005 
+ 00031796  0x000067c8 add  0x00000011 , 0x0000002c , 0x00000006 
+ 00031797  0x000067c9 call  0x00007e81 
+ 00031798  0x000067ca call  0x00007e7d 
+ 00031799  0x000067cb copy  0x00000012 , 0x00000011 
+ 00031800  0x000067cc call  0x00007ca3 
+ 00031801  0x000067cd arg  0x000006ea , 0x00000012 
+ 00031802  0x000067ce copy  0x00000030 , 0x00000011 
+ 00031803  0x000067cf copy  0x0000000b , 0x00000005 
+ 00031804  0x000067d0 call  0x00007ca0 
+ 00031805  0x000067d2 arg  0x000006ea , 0x00000012 
+ 00031806  0x000067d3 copy  0x00000012 , 0x00000005 
+ 00031807  0x000067d4 call  0x00007e98 
+ 00031808  0x000067d5 istore  0x00000008 , 0x00000005 
+ 00031809  0x000067d6 add  0x00000030 , 0x00000030 , 0x00000006 
+ 00031810  0x000067d7 call  0x00007e87 
+ 00031811  0x000067d8 call  0x00007e98 
+ 00031812  0x000067d9 copy  0x00000012 , 0x00000011 
+ 00031813  0x000067da call  0x00007ca3 
+ 00031814  0x000067de arg  0x000006ea , 0x00000012 
+ 00031815  0x000067df copy  0x0000000b , 0x00000011 
+ 00031816  0x000067e0 copy  0x00000011 , 0x00000005 
+ 00031817  0x000067e1 call  0x00007ca0 
+ 00031818  0x000067e5 arg  0x000006ea , 0x00000012 
+ 00031819  0x000067e6 copy  0x00000012 , 0x00000005 
+ 00031820  0x000067e7 add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031821  0x000067e8 call  0x00007e7d 
+ 00031822  0x000067e9 call  0x00007e98 
+ 00031823  0x000067ea istore  0x00000008 , 0x00000005 
+ 00031824  0x000067eb add  0x00000030 , 0x00000038 , 0x00000006 
+ 00031825  0x000067ec call  0x00007e81 
+ 00031826  0x000067ed copy  0x0000000b , 0x00000011 
+ 00031827  0x000067ee copy  0x00000011 , 0x00000005 
+ 00031828  0x000067ef call  0x00007ca0 
+ 00031829  0x000067f3 arg  0x000006ea , 0x00000012 
+ 00031830  0x000067f4 copy  0x00000012 , 0x00000005 
+ 00031831  0x000067f5 add  0x00000030 , 0x00000024 , 0x00000006 
+ 00031832  0x000067f6 call  0x00007e7d 
+ 00031833  0x000067f7 add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031834  0x000067f8 call  0x00007e7d 
+ 00031835  0x000067f9 add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031836  0x000067fa call  0x00007e7e 
+ 00031837  0x000067fb add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031838  0x000067fc call  0x00007e7e 
+ 00031839  0x000067fd copy  0x0000000b , 0x00000011 
+ 00031840  0x000067fe copy  0x00000011 , 0x00000005 
+ 00031841  0x000067ff call  0x00007ca0 
+ 00031842  0x00006802 arg  0x000006ea , 0x00000012 
+ 00031843  0x00006803 copy  0x00000012 , 0x00000005 
+ 00031844  0x00006804 add  0x00000030 , 0x0000002c , 0x00000006 
+ 00031845  0x00006805 call  0x00007e7d 
+ 00031846  0x00006806 call  0x00007e98 
+ 00031847  0x00006807 istore  0x00000008 , 0x00000005 
+ 00031848  0x00006808 add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031849  0x00006809 call  0x00007e7e 
+ 00031850  0x0000680a add  0x00000030 , 0x00000028 , 0x00000006 
+ 00031851  0x0000680b call  0x00007e7e 
+ 00031852  0x0000680c copy  0x0000000b , 0x00000011 
+ 00031853  0x0000680d copy  0x00000011 , 0x00000005 
+ 00031854  0x0000680e call  0x00007cb9 
+ 00031855  0x00006811 arg  0x000006ea , 0x00000012 
+ 00031856  0x00006812 copy  0x00000012 , 0x00000005 
+ 00031857  0x00006813 add  0x00000030 , 0x00000030 , 0x00000006 
+ 00031858  0x00006814 call  0x00007e81 
+ 00031859  0x00006815 call  0x00007e81 
+ 00031860  0x00006816 force  0x00000000 , 0x0000003f 
+ 00031861  0x00006817 istore  0x00000008 , 0x00000005 
+ 00031862  0x00006818 add  0x00000030 , 0x00000024 , 0x00000006 
+ 00031863  0x00006819 call  0x00007e7e 
+ 00031864  0x0000681a add  0x00000030 , 0x0000002c , 0x00000006 
+ 00031865  0x0000681b call  0x00007e7e 
+ 00031866  0x0000681c copy  0x0000000b , 0x00000011 
+ 00031867  0x0000681d copy  0x00000011 , 0x00000005 
+ 00031868  0x0000681e call  0x00007cb9 
+ 00031869  0x00006821 arg  0x000006ea , 0x00000012 
+ 00031870  0x00006822 copy  0x00000012 , 0x00000005 
+ 00031871  0x00006823 add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031872  0x00006824 call  0x00007e7d 
+ 00031873  0x00006825 add  0x00000030 , 0x00000020 , 0x00000006 
+ 00031874  0x00006826 call  0x00007e7d 
+ 00031875  0x00006827 call  0x00007e98 
+ 00031876  0x00006828 add  0x00000030 , 0x00000030 , 0x00000006 
+ 00031877  0x00006829 call  0x00007e7e 
+ 00031878  0x0000682a copy  0x0000000b , 0x00000011 
+ 00031879  0x0000682b copy  0x00000011 , 0x00000005 
+ 00031880  0x0000682c call  0x00007cb9 
+ 00031881  0x0000682f arg  0x000006ea , 0x00000012 
+ 00031882  0x00006830 copy  0x00000012 , 0x00000005 
+ 00031883  0x00006831 add  0x00000030 , 0x00000038 , 0x00000006 
+ 00031884  0x00006832 call  0x00007e81 
+ 00031885  0x00006833 call  0x00007e98 
+ 00031886  0x00006834 add  0x00000030 , 0x00000024 , 0x00000006 
+ 00031887  0x00006835 call  0x00007e7d 
+ 00031888  0x00006836 call  0x00007e98 
+ 00031889  0x00006837 add  0x00000030 , 0x00000034 , 0x00000006 
+ 00031890  0x00006838 call  0x00007e7e 
+ 00031891  0x00006839 copy  0x0000000b , 0x00000011 
+ 00031892  0x0000683a copy  0x00000011 , 0x00000005 
+ 00031893  0x0000683b branch  0x00007cb9 
+ 00031894  0x0000683f force  0x00000020 , 0x00000039 
+ 00031895  0x00006840 arg  0x000009f1 , 0x00000005 
+ 00031896  0x00006841 iadd  0x00000005 , 0x00000005 
+ 00031897  0x00006842 branch  0x00007ecd 
+ 00031898  0x00006845 force  0x00000008 , 0x00000039 
+ 00031899  0x00006846 branch  0x0000779d 
+ 00031900  0x00006849 copy  0x00000011 , 0x00000012 
+ 00031901  0x0000684a branch  0x00007c03 
+ 00031902  0x0000684d force  0x00000008 , 0x00000039 
+ 00031903  0x0000684e branch  0x0000772e 
+ 00031904  0x00006851 call  0x00007c9e 
+ 00031905  0x00006852 copy  0x00000005 , 0x00000011 
+ 00031906  0x00006853 branch  0x00007ca4 
+ 00031907  0x00006856 call  0x00007cd1 
+ 00031908  0x00006858 isolate1  0x00000000 , 0x00000013 
+ 00031909  0x00006859 branch  0x00007cad , 0x00000001 
+ 00031910  0x0000685a arg  0x00000842 , 0x00000012 
+ 00031911  0x0000685b copy  0x00000011 , 0x00000013 
+ 00031912  0x0000685c increase  0xffffffe0 , 0x00000011 
+ 00031913  0x0000685d call  0x00007cd4 
+ 00031914  0x0000685e nrtn  0x00000002 
+ 00031915  0x0000685f copy  0x00000013 , 0x00000011 
+ 00031916  0x00006860 branch  0x00007cb5 
+ 00031917  0x00006863 call  0x00007cb5 
+ 00031918  0x00006865 copy  0x00000011 , 0x00000013 
+ 00031919  0x00006866 increase  0xffffffe0 , 0x00000011 
+ 00031920  0x00006867 arg  0x00000842 , 0x00000012 
+ 00031921  0x00006868 call  0x00007cd4 
+ 00031922  0x00006869 nrtn  0x00000002 
+ 00031923  0x0000686a copy  0x00000013 , 0x00000011 
+ 00031924  0x0000686b branch  0x00007cb5 
+ 00031925  0x0000686f increase  0xffffffe0 , 0x00000011 
+ 00031926  0x00006870 arg  0x00000842 , 0x00000012 
+ 00031927  0x00006871 copy  0x00000011 , 0x00000005 
+ 00031928  0x00006872 branch  0x00007ccc 
+ 00031929  0x00006878 call  0x00007ccc 
+ 00031930  0x0000687a branch  0x00007cc3 , 0x00000001 
+ 00031931  0x0000687d add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031932  0x0000687e arg  0x00000842 , 0x00000012 
+ 00031933  0x0000687f call  0x00007cd4 
+ 00031934  0x00006880 nrtn  0x00000002 
+ 00031935  0x00006881 arg  0x00000842 , 0x00000012 
+ 00031936  0x00006882 add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031937  0x00006884 copy  0x00000011 , 0x00000005 
+ 00031938  0x00006885 branch  0x00007ccc 
+ 00031939  0x00006887 add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031940  0x00006888 arg  0x00000842 , 0x00000012 
+ 00031941  0x00006889 copy  0x00000011 , 0x00000005 
+ 00031942  0x0000688a call  0x00007c9e 
+ 00031943  0x0000688c rtn  0x00000001 
+ 00031944  0x0000688d add  0x00000005 , 0xffffffe0 , 0x00000011 
+ 00031945  0x0000688e arg  0x00000842 , 0x00000012 
+ 00031946  0x0000688f copy  0x00000011 , 0x00000005 
+ 00031947  0x00006890 branch  0x00007c9e 
+ 00031948  0x00006895 force  0x00000008 , 0x00000039 
+ 00031949  0x00006896 branch  0x0000773c 
+ 00031950  0x00006899 force  0x00000008 , 0x00000039 
+ 00031951  0x0000689a increase  0x0000001c , 0x00000011 
+ 00031952  0x0000689b branch  0x0000774b 
+ 00031953  0x0000689e force  0x00000008 , 0x00000039 
+ 00031954  0x0000689f force  0x00000000 , 0x00000013 
+ 00031955  0x000068a0 branch  0x00007759 
+ 00031956  0x000068a3 force  0x00000008 , 0x00000039 
+ 00031957  0x000068a4 increase  0x0000001c , 0x00000011 
+ 00031958  0x000068a5 increase  0x0000001c , 0x00000012 
+ 00031959  0x000068a6 branch  0x00007723 
+ 00031960  0x000068aa ifetch  0x00000008 , 0x00000006 
+ 00031961  0x000068ab nrtn  0x00000034 
+ 00031962  0x000068ac branch  0x00007711 
+ 00031963  0x000068b2 copy  0x00000011 , 0x00000030 
+ 00031964  0x000068b4 copy  0x00000030 , 0x00000011 
+ 00031965  0x000068b5 ifetch  0x00000001 , 0x00000011 
+ 00031966  0x000068b6 isolate1  0x00000000 , 0x0000003f 
+ 00031967  0x000068b7 rtn  0x00000001 
+ 00031968  0x000068b8 call  0x00007cce 
+ 00031969  0x000068b9 ifetch  0x00000001 , 0x00000012 
+ 00031970  0x000068ba isolate0  0x00000000 , 0x0000003f 
+ 00031971  0x000068bb branch  0x00007ceb , 0x00000001 
+ 00031972  0x000068bc arg  0x00000842 , 0x00000011 
+ 00031973  0x000068bd copy  0x00000012 , 0x00000005 
+ 00031974  0x000068be call  0x00007c9e 
+ 00031975  0x000068bf ifetch  0x00000001 , 0x00000012 
+ 00031976  0x000068c0 iadd  0x00000013 , 0x0000003f 
+ 00031977  0x000068c1 istore  0x00000001 , 0x00000012 
+ 00031978  0x000068c2 increase  0xffffffe0 , 0x00000012 
+ 00031979  0x000068c4 add  0x00000012 , 0x00000020 , 0x00000011 
+ 00031980  0x000068c5 force  0x00000009 , 0x00000039 
+ 00031981  0x000068c6 call  0x0000774b 
+ 00031982  0x000068c7 branch  0x00007cdc 
+ 00031983  0x000068cc call  0x00003d3e 
+ 00031984  0x000068cd rtn  0x0000002b 
+ 00031985  0x000068ce call  0x00007cf6 
+ 00031986  0x000068cf call  0x00007d72 
+ 00031987  0x000068d0 branch  0x00007d2a 
+ 00031988  0x000068d3 call  0x00007d44 
+ 00031989  0x000068d5 branch  0x00007d60 
+ 00031990  0x000068d8 set1  0x00000025 , 0x00000000 
+ 00031991  0x000068d9 bpatch  0x000000ef , 0x0000403d 
+ 00031992  0x000068da fetch  0x00000001 , 0x00004715 
+ 00031993  0x000068db rtneq  0x000000ff 
+ 00031994  0x000068dc iforce  0x00000002 
+ 00031995  0x000068dd call  0x000064e8 
+ 00031996  0x000068de fetcht  0x00000001 , 0x00004715 
+ 00031997  0x000068df call  0x000064fd 
+ 00031998  0x000068e0 nop  0x00000064 
+ 00031999  0x000068e1 fetcht  0x00000001 , 0x00004715 
+ 00032000  0x000068e2 call  0x000064df 
+ 00032001  0x000068e3 branch  0x00007d02 
+ 00032002  0x000068e8 set1  0x00000025 , 0x00000000 
+ 00032003  0x000068e9 bpatch  0x000000f0 , 0x0000403e 
+ 00032004  0x000068ea fetch  0x00000001 , 0x00004715 
+ 00032005  0x000068eb rtneq  0x000000ff 
+ 00032006  0x000068ec copy  0x0000003f , 0x00000002 
+ 00032007  0x000068ed call  0x000064f5 
+ 00032008  0x000068ee nbranch  0x00007d15 , 0x00000001 
+ 00032009  0x000068f1 call  0x00007d1f 
+ 00032010  0x000068f2 fetch  0x00000002 , 0x0000470b 
+ 00032011  0x000068f3 set1  0x0000000c 
+ 00032012  0x000068f4 store  0x00000002 , 0x0000470b 
+ 00032013  0x000068f5 fetch  0x00000001 , 0x00004702 
+ 00032014  0x000068f6 rtneq  0x00000000 
+ 00032015  0x000068f7 jam  0x00000000 , 0x00004702 
+ 00032016  0x000068f9 fetch  0x00000001 , 0x00004714 
+ 00032017  0x000068fa store  0x00000001 , 0x00004701 
+ 00032018  0x000068fb call  0x00007d26 
+ 00032019  0x000068fc jam  0x0000002c , 0x000009bd 
+ 00032020  0x000068fd branch  0x00007d86 
+ 00032021  0x000068ff fetch  0x00000002 , 0x0000470b 
+ 00032022  0x00006900 set0  0x0000000c 
+ 00032023  0x00006901 store  0x00000002 , 0x0000470b 
+ 00032024  0x00006902 fetch  0x00000001 , 0x00004702 
+ 00032025  0x00006903 rtneq  0x00000001 
+ 00032026  0x00006904 jam  0x00000001 , 0x00004702 
+ 00032027  0x00006906 jam  0x00000000 , 0x00004701 
+ 00032028  0x00006907 call  0x00007d28 
+ 00032029  0x00006908 jam  0x0000002d , 0x000009bd 
+ 00032030  0x00006909 branch  0x00007d86 
+ 00032031  0x0000690c fetch  0x00000001 , 0x00004701 
+ 00032032  0x0000690d rtn  0x00000034 
+ 00032033  0x0000690e increase  0xffffffff , 0x0000003f 
+ 00032034  0x0000690f store  0x00000001 , 0x00004701 
+ 00032035  0x00006910 nrtn  0x00000034 
+ 00032036  0x00006912 jam  0x00000010 , 0x000009bd 
+ 00032037  0x00006913 branch  0x00007d86 
+ 00032038  0x00006916 arg  0x00000007 , 0x00000007 
+ 00032039  0x00006917 branch  0x00003d06 
+ 00032040  0x0000691a arg  0x00000007 , 0x00000007 
+ 00032041  0x0000691b branch  0x00003d0a 
+ 00032042  0x0000691e fetch  0x00000001 , 0x0000470e 
+ 00032043  0x0000691f rtneq  0x000000ff 
+ 00032044  0x00006920 iforce  0x00000002 
+ 00032045  0x00006921 call  0x000064e8 
+ 00032046  0x00006922 branch  0x00007d33 
+ 00032047  0x00006925 fetch  0x00000002 , 0x0000470b 
+ 00032048  0x00006926 set0  0x0000000d 
+ 00032049  0x00006927 store  0x00000002 , 0x0000470b 
+ 00032050  0x00006928 jam  0x00000000 , 0x00004700 
+ 00032051  0x0000692a fetch  0x00000002 , 0x0000470b 
+ 00032052  0x0000692b set0  0x0000000e 
+ 00032053  0x0000692c store  0x00000002 , 0x0000470b 
+ 00032054  0x0000692d fetcht  0x00000001 , 0x0000470e 
+ 00032055  0x0000692e branch  0x000064fd 
+ 00032056  0x00006931 fetch  0x00000002 , 0x0000470b 
+ 00032057  0x00006932 set1  0x0000000e 
+ 00032058  0x00006933 store  0x00000002 , 0x0000470b 
+ 00032059  0x00006934 jam  0x00000000 , 0x00004700 
+ 00032060  0x00006935 fetcht  0x00000001 , 0x0000470e 
+ 00032061  0x00006936 branch  0x000064ff 
+ 00032062  0x00006939 jam  0x000000ff , 0x00004713 
+ 00032063  0x0000693b fetch  0x00000002 , 0x0000470b 
+ 00032064  0x0000693c set1  0x0000000d 
+ 00032065  0x0000693d store  0x00000002 , 0x0000470b 
+ 00032066  0x0000693e jam  0x00000001 , 0x00004700 
+ 00032067  0x0000693f rtn 
+ 00032068  0x00006942 set1  0x00000025 , 0x00000000 
+ 00032069  0x00006943 bpatch  0x000000f1 , 0x0000403e 
+ 00032070  0x00006944 fetch  0x00000001 , 0x00004713 
+ 00032071  0x00006945 rtn  0x00000034 
+ 00032072  0x00006946 fetch  0x00000001 , 0x00004700 
+ 00032073  0x00006947 rtneq  0x00000000 
+ 00032074  0x00006948 arg  0x00000009 , 0x00000007 
+ 00032075  0x00006949 call  0x00007ee2 
+ 00032076  0x0000694a nrtn  0x00000034 
+ 00032077  0x0000694b fetch  0x00000001 , 0x00004700 
+ 00032078  0x0000694c beq  0x00000002 , 0x00007d53 
+ 00032079  0x0000694d call  0x00007d38 
+ 00032080  0x0000694e jam  0x00000002 , 0x00004700 
+ 00032081  0x0000694f fetch  0x00000002 , 0x00004711 
+ 00032082  0x00006950 branch  0x00007d5a 
+ 00032083  0x00006952 call  0x00007d33 
+ 00032084  0x00006953 fetch  0x00000001 , 0x00004713 
+ 00032085  0x00006954 beq  0x000000ff , 0x00007d58 
+ 00032086  0x00006955 increase  0xffffffff , 0x0000003f 
+ 00032087  0x00006956 store  0x00000001 , 0x00004713 
+ 00032088  0x00006958 jam  0x00000003 , 0x00004700 
+ 00032089  0x00006959 fetch  0x00000002 , 0x0000470f 
+ 00032090  0x0000695b arg  0x00000009 , 0x00000007 
+ 00032091  0x0000695c branch  0x00007ed4 
+ 00032092  0x0000695f setarg  0x00001000 
+ 00032093  0x00006960 lshift16  0x0000003f , 0x0000003f 
+ 00032094  0x00006961 iadd  0x00000012 , 0x00000012 
+ 00032095  0x00006962 rtn 
+ 00032096  0x00006965 set1  0x00000025 , 0x00000000 
+ 00032097  0x00006966 bpatch  0x000000f2 , 0x0000403e 
+ 00032098  0x00006967 arg  0x00000000 , 0x00000011 
+ 00032099  0x00006968 fetcht  0x00000004 , 0x00004703 
+ 00032100  0x00006969 copy  0x00000022 , 0x00000012 
+ 00032101  0x0000696a copy  0x00000012 , 0x0000003f 
+ 00032102  0x0000696b isub  0x00000002 , 0x0000003e 
+ 00032103  0x0000696c ncall  0x00007d5c , 0x00000002 
+ 00032104  0x0000696f copy  0x00000012 , 0x0000003f 
+ 00032105  0x00006970 increase  0x000000a0 , 0x00000002 
+ 00032106  0x00006971 increase  0x000000a0 , 0x00000002 
+ 00032107  0x00006972 isub  0x00000002 , 0x0000003e 
+ 00032108  0x00006973 nbranch  0x00007d75 , 0x00000002 
+ 00032109  0x00006974 increase  0x00000001 , 0x00000011 
+ 00032110  0x00006975 and  0x00000011 , 0x0000000f , 0x0000003f 
+ 00032111  0x00006976 nbranch  0x00007d68 , 0x00000034 
+ 00032112  0x00006977 arg  0x00000000 , 0x00000011 
+ 00032113  0x00006978 call  0x00007d7d 
+ 00032114  0x0000697a copy  0x00000022 , 0x0000003f 
+ 00032115  0x0000697b store  0x00000004 , 0x00004703 
+ 00032116  0x0000697c rtn 
+ 00032117  0x0000697e set1  0x00000025 , 0x00000000 
+ 00032118  0x0000697f bpatch  0x000000f3 , 0x0000403e 
+ 00032119  0x00006980 copy  0x00000011 , 0x0000003f 
+ 00032120  0x00006981 rtn  0x00000034 
+ 00032121  0x00006982 increase  0xffffff60 , 0x00000002 
+ 00032122  0x00006983 increase  0xffffff60 , 0x00000002 
+ 00032123  0x00006984 set0  0x0000001c , 0x00000002 
+ 00032124  0x00006985 storet  0x00000004 , 0x00004703 
+ 00032125  0x00006987 increase  0x00000050 , 0x0000003f 
+ 00032126  0x00006988 store  0x00000001 , 0x000009bd 
+ 00032127  0x00006989 branch  0x00007d86 
+ 00032128  0x00006990 jam  0x00000001 , 0x000046ee 
+ 00032129  0x00006992 fetch  0x00000001 , 0x000046ef 
+ 00032130  0x00006993 nbranch  0x00007d81 , 0x00000034 
+ 00032131  0x00006994 rtn 
+ 00032132  0x00006997 jam  0x00000000 , 0x000046ee 
+ 00032133  0x00006998 rtn 
+ 00032134  0x0000699d set1  0x00000025 , 0x00000000 
+ 00032135  0x0000699e bpatch  0x000000f4 , 0x0000403e 
+ 00032136  0x0000699f call  0x00007d80 
+ 00032137  0x000069a0 copy  0x00000011 , 0x0000003f 
+ 00032138  0x000069a1 store  0x00000004 , 0x000009b5 
+ 00032139  0x000069a2 arg  0x000046f0 , 0x00000011 
+ 00032140  0x000069a3 call  0x00007f88 
+ 00032141  0x000069a4 fetch  0x00000004 , 0x000009b5 
+ 00032142  0x000069a5 copy  0x0000003f , 0x00000011 
+ 00032143  0x000069a6 branch  0x00007d84 
+ 00032144  0x000069a9 set1  0x00000025 , 0x00000000 
+ 00032145  0x000069aa bpatch  0x000000f5 , 0x0000403e 
+ 00032146  0x000069ab call  0x00007d80 
+ 00032147  0x000069ac copy  0x00000011 , 0x0000003f 
+ 00032148  0x000069ad store  0x00000004 , 0x000009b5 
+ 00032149  0x000069ae arg  0x000046f8 , 0x00000011 
+ 00032150  0x000069af call  0x00007f88 
+ 00032151  0x000069b0 fetch  0x00000004 , 0x000009b5 
+ 00032152  0x000069b1 copy  0x0000003f , 0x00000011 
+ 00032153  0x000069b2 branch  0x00007d84 
+ 00032154  0x000069b5 setarg  0x00000000 
+ 00032155  0x000069b6 store  0x00000008 , 0x000046f8 
+ 00032156  0x000069b7 store  0x00000008 , 0x000046f0 
+ 00032157  0x000069b8 rtn 
+ 00032158  0x000069bb set1  0x00000025 , 0x00000000 
+ 00032159  0x000069bc bpatch  0x000000f6 , 0x0000403e 
+ 00032160  0x000069bd fetch  0x00000001 , 0x00004271 
+ 00032161  0x000069be nrtn  0x00000034 
+ 00032162  0x000069bf arg  0x000046f8 , 0x00000011 
+ 00032163  0x000069c0 call  0x00007fa2 
+ 00032164  0x000069c1 rtn  0x00000034 
+ 00032165  0x000069c2 jam  0x00000000 , 0x000009b4 
+ 00032166  0x000069c3 call  0x00007daa 
+ 00032167  0x000069c4 fetch  0x00000001 , 0x000009b4 
+ 00032168  0x000069c5 branch  0x00007d9e , 0x00000034 
+ 00032169  0x000069c6 rtn 
+ 00032170  0x000069c9 set1  0x00000025 , 0x00000000 
+ 00032171  0x000069ca bpatch  0x000000f7 , 0x0000403e 
+ 00032172  0x000069cb call  0x00007d80 
+ 00032173  0x000069cc arg  0x000046f8 , 0x00000011 
+ 00032174  0x000069cd call  0x00007f95 
+ 00032175  0x000069ce copy  0x0000003f , 0x00000002 
+ 00032176  0x000069cf call  0x00007d84 
+ 00032177  0x000069d0 copy  0x00000002 , 0x0000003f 
+ 00032178  0x000069d1 rtn  0x00000034 
+ 00032179  0x000069d2 beq  0x00000001 , 0x00007df0 
+ 00032180  0x000069d3 beq  0x00000002 , 0x00007df5 
+ 00032181  0x000069d4 beq  0x00000003 , 0x00007dfb 
+ 00032182  0x000069d5 beq  0x00000007 , 0x00007e00 
+ 00032183  0x000069d6 beq  0x00000008 , 0x00007e01 
+ 00032184  0x000069d7 beq  0x00000009 , 0x00007e02 
+ 00032185  0x000069d8 beq  0x0000000b , 0x00007e05 
+ 00032186  0x000069d9 beq  0x0000000c , 0x00007e06 
+ 00032187  0x000069da beq  0x0000000d , 0x00007e07 
+ 00032188  0x000069db beq  0x0000000e , 0x00007e0d 
+ 00032189  0x000069dc beq  0x0000000f , 0x00007e12 
+ 00032190  0x000069dd beq  0x00000010 , 0x00007e18 
+ 00032191  0x000069de beq  0x00000015 , 0x00007d3e 
+ 00032192  0x000069df beq  0x00000014 , 0x00007d38 
+ 00032193  0x000069e0 beq  0x00000013 , 0x00007d2f 
+ 00032194  0x000069e1 beq  0x00000016 , 0x00007e21 
+ 00032195  0x000069e2 beq  0x00000017 , 0x00007e24 
+ 00032196  0x000069e3 beq  0x00000018 , 0x00007e26 
+ 00032197  0x000069e4 beq  0x00000019 , 0x00007e2b 
+ 00032198  0x000069e5 beq  0x0000001b , 0x00007e29 
+ 00032199  0x000069e6 beq  0x0000001c , 0x00007e3b 
+ 00032200  0x000069e7 beq  0x0000001e , 0x00007e3d 
+ 00032201  0x000069e9 store  0x00000001 , 0x000009bd 
+ 00032202  0x000069ea set1  0x00000025 , 0x00000000 
+ 00032203  0x000069eb bpatch  0x000000f8 , 0x0000403f 
+ 00032204  0x000069ec call  0x000058c5 
+ 00032205  0x000069ed nbranch  0x00007de5 , 0x00000034 
+ 00032206  0x000069ef fetch  0x00000001 , 0x000009bd 
+ 00032207  0x000069f0 bmark0  0x00000009 , 0x00007de0 
+ 00032208  0x000069f1 beq  0x00000005 , 0x00003fae 
+ 00032209  0x000069f2 beq  0x00000006 , 0x00003fbd 
+ 00032210  0x000069f3 beq  0x0000000a , 0x00007e03 
+ 00032211  0x000069f4 beq  0x00000004 , 0x00007dfd 
+ 00032212  0x000069f5 beq  0x00000011 , 0x00007e1d 
+ 00032213  0x000069f6 beq  0x0000001d , 0x00007de7 
+ 00032214  0x000069f7 beq  0x0000001f , 0x0000642e 
+ 00032215  0x000069f8 beq  0x00000020 , 0x00006432 
+ 00032216  0x000069f9 beq  0x00000012 , 0x00007dde 
+ 00032217  0x000069fa beq  0x00000021 , 0x00007ddb 
+ 00032218  0x000069fb rtn 
+ 00032219  0x000069fe call  0x00005903 
+ 00032220  0x000069ff jam  0x00000041 , 0x0000007d 
+ 00032221  0x00006a00 branch  0x000055b4 
+ 00032222  0x00006a03 jam  0x0000002f , 0x000009bd 
+ 00032223  0x00006a04 branch  0x00004bd6 
+ 00032224  0x00006a06 store  0x00000001 , 0x000009bd 
+ 00032225  0x00006a07 call  0x00003292 
+ 00032226  0x00006a08 branch  0x00007de5 , 0x00000005 
+ 00032227  0x00006a09 call  0x0000329a 
+ 00032228  0x00006a0a nrtn  0x00000005 
+ 00032229  0x00006a0c jam  0x00000001 , 0x000009b4 
+ 00032230  0x00006a0d branch  0x00007d90 
+ 00032231  0x00006a11 jam  0x00000034 , 0x0000007c 
+ 00032232  0x00006a12 set1  0x00000003 , 0x00000000 
+ 00032233  0x00006a13 nrtn  0x00000029 
+ 00032234  0x00006a14 jam  0x00000000 , 0x000045f4 
+ 00032235  0x00006a15 jam  0x00000013 , 0x0000007c 
+ 00032236  0x00006a16 fetch  0x00000001 , 0x0000016c 
+ 00032237  0x00006a17 set0  0x00000002 , 0x0000003f 
+ 00032238  0x00006a18 store  0x00000001 , 0x0000016c 
+ 00032239  0x00006a19 rtn 
+ 00032240  0x00006a1c fetch  0x00000002 , 0x0000470b 
+ 00032241  0x00006a1d set1  0x00000006 
+ 00032242  0x00006a1e store  0x00000002 , 0x0000470b 
+ 00032243  0x00006a1f jam  0x00000003 , 0x00004133 
+ 00032244  0x00006a20 rtn 
+ 00032245  0x00006a23 jam  0x00000000 , 0x00004709 
+ 00032246  0x00006a24 jam  0x00000000 , 0x00004133 
+ 00032247  0x00006a25 fetch  0x00000002 , 0x0000470b 
+ 00032248  0x00006a26 set0  0x00000006 
+ 00032249  0x00006a27 store  0x00000002 , 0x0000470b 
+ 00032250  0x00006a28 rtn 
+ 00032251  0x00006a2b jam  0x00000005 , 0x00004271 
+ 00032252  0x00006a2c rtn 
+ 00032253  0x00006a2f jam  0x00000007 , 0x0000007c 
+ 00032254  0x00006a30 jam  0x00000013 , 0x000003f0 
+ 00032255  0x00006a31 rtn 
+ 00032256  0x00006a35 rtn 
+ 00032257  0x00006a38 rtn 
+ 00032258  0x00006a3b rtn 
+ 00032259  0x00006a3e jam  0x00000002 , 0x000003fa 
+ 00032260  0x00006a3f branch  0x00003fa1 
+ 00032261  0x00006a42 rtn 
+ 00032262  0x00006a44 rtn 
+ 00032263  0x00006a46 jam  0x00000001 , 0x000043ff 
+ 00032264  0x00006a47 jam  0x00000000 , 0x00004520 
+ 00032265  0x00006a48 fetch  0x00000002 , 0x0000470b 
+ 00032266  0x00006a49 set1  0x0000000b , 0x0000003f 
+ 00032267  0x00006a4a store  0x00000002 , 0x0000470b 
+ 00032268  0x00006a4b rtn 
+ 00032269  0x00006a4d fetch  0x00000002 , 0x0000470b 
+ 00032270  0x00006a4e set0  0x0000000b , 0x0000003f 
+ 00032271  0x00006a4f store  0x00000002 , 0x0000470b 
+ 00032272  0x00006a50 jam  0x00000000 , 0x000043ff 
+ 00032273  0x00006a51 rtn 
+ 00032274  0x00006a53 jam  0x00000001 , 0x000043ff 
+ 00032275  0x00006a54 jam  0x00000001 , 0x00004520 
+ 00032276  0x00006a55 fetch  0x00000002 , 0x0000470b 
+ 00032277  0x00006a56 set1  0x0000000b , 0x0000003f 
+ 00032278  0x00006a57 store  0x00000002 , 0x0000470b 
+ 00032279  0x00006a58 rtn 
+ 00032280  0x00006a5a fetch  0x00000002 , 0x0000470b 
+ 00032281  0x00006a5b set0  0x0000000b , 0x0000003f 
+ 00032282  0x00006a5c store  0x00000002 , 0x0000470b 
+ 00032283  0x00006a5d jam  0x00000000 , 0x000043ff 
+ 00032284  0x00006a5e rtn 
+ 00032285  0x00006a60 setarg  0x0000000a 
+ 00032286  0x00006a61 store  0x00000002 , 0x00000390 
+ 00032287  0x00006a62 jam  0x00000022 , 0x000009bd 
+ 00032288  0x00006a63 branch  0x00004bd6 
+ 00032289  0x00006a65 jam  0x00000001 , 0x000043f9 
+ 00032290  0x00006a66 jam  0x0000001b , 0x00004271 
+ 00032291  0x00006a69 rtn 
+ 00032292  0x00006a6b jam  0x00000001 , 0x000043f9 
+ 00032293  0x00006a6c rtn 
+ 00032294  0x00006a6e jam  0x00000000 , 0x000043f9 
+ 00032295  0x00006a6f jam  0x00000000 , 0x00004271 
+ 00032296  0x00006a70 rtn 
+ 00032297  0x00006a72 jam  0x0000004b , 0x000009bd 
+ 00032298  0x00006a73 branch  0x00004bd6 
+ 00032299  0x00006a75 set1  0x00000025 , 0x00000000 
+ 00032300  0x00006a76 bpatch  0x000000f9 , 0x0000403f 
+ 00032301  0x00006a77 fetch  0x00000002 , 0x0000428c 
+ 00032302  0x00006a78 call  0x00007f69 
+ 00032303  0x00006a79 enable  0x00000028 
+ 00032304  0x00006a7a hfetch  0x00000004 , 0x00008138 
+ 00032305  0x00006a7b setflag  0x00000028 , 0x0000001a , 0x0000003f 
+ 00032306  0x00006a7c hstore  0x00000004 , 0x0000804c 
+ 00032307  0x00006a7d call  0x00003cf4 
+ 00032308  0x00006a7e fetch  0x00000001 , 0x00004715 
+ 00032309  0x00006a7f beq  0x000000ff , 0x00007e38 
+ 00032310  0x00006a80 copy  0x0000003f , 0x00000002 
+ 00032311  0x00006a81 call  0x000064df 
+ 00032312  0x00006a83 call  0x00007d33 
+ 00032313  0x00006a84 call  0x00007d9a 
+ 00032314  0x00006a85 branch  0x00003c04 
+ 00032315  0x00006a88 jam  0x00000001 , 0x00004595 
+ 00032316  0x00006a89 rtn 
+ 00032317  0x00006a8c force  0x00000004 , 0x00000007 
+ 00032318  0x00006a8d branch  0x00007ed3 
+ 00032319  0x00006a91 fetch  0x00000001 , 0x0000470b 
+ 00032320  0x00006a92 rtnbit0  0x0000000c 
+ 00032321  0x00006a93 rtnbit0  0x00000007 
+ 00032322  0x00006a94 branch  0x00007e3d 
+ 00032323  0x00006a99 sub  0x00000039 , 0x00000000 , 0x0000003e 
+ 00032324  0x00006a9a rtn  0x00000005 
+ 00032325  0x00006a9c rshift  0x0000003f , 0x0000003f 
+ 00032326  0x00006a9d loop  0x00007e45 
+ 00032327  0x00006a9e rtn 
+ 00032328  0x00006aa1 deposit  0x00000005 
+ 00032329  0x00006aa2 store  0x00000002 , 0x000009df 
+ 00032330  0x00006aa3 storet  0x00000008 , 0x000009c6 
+ 00032331  0x00006aa4 deposit  0x0000000b 
+ 00032332  0x00006aa5 store  0x00000004 , 0x000009ce 
+ 00032333  0x00006aa6 deposit  0x00000011 
+ 00032334  0x00006aa7 store  0x00000004 , 0x000009d2 
+ 00032335  0x00006aa8 deposit  0x00000012 
+ 00032336  0x00006aa9 store  0x00000004 , 0x000009d6 
+ 00032337  0x00006aaa deposit  0x00000013 
+ 00032338  0x00006aab store  0x00000003 , 0x000009da 
+ 00032339  0x00006aac deposit  0x00000006 
+ 00032340  0x00006aad store  0x00000002 , 0x000009dd 
+ 00032341  0x00006aae rtn 
+ 00032342  0x00006ab0 fetcht  0x00000008 , 0x000009c6 
+ 00032343  0x00006ab1 fetch  0x00000004 , 0x000009ce 
+ 00032344  0x00006ab2 iforce  0x0000000b 
+ 00032345  0x00006ab3 fetch  0x00000004 , 0x000009d2 
+ 00032346  0x00006ab4 iforce  0x00000011 
+ 00032347  0x00006ab5 fetch  0x00000004 , 0x000009d6 
+ 00032348  0x00006ab6 iforce  0x00000012 
+ 00032349  0x00006ab7 fetch  0x00000003 , 0x000009da 
+ 00032350  0x00006ab8 iforce  0x00000013 
+ 00032351  0x00006ab9 fetch  0x00000002 , 0x000009df 
+ 00032352  0x00006aba iforce  0x00000005 
+ 00032353  0x00006abb fetch  0x00000002 , 0x000009dd 
+ 00032354  0x00006abc iforce  0x00000006 
+ 00032355  0x00006abd rtn 
+ 00032356  0x00006ac0 fetch  0x00000002 , 0x000009df 
+ 00032357  0x00006ac1 copy  0x0000003f , 0x00000005 
+ 00032358  0x00006ac2 rtn 
+ 00032359  0x00006ac4 fetch  0x00000002 , 0x000009dd 
+ 00032360  0x00006ac5 copy  0x0000003f , 0x00000006 
+ 00032361  0x00006ac6 rtn 
+ 00032362  0x00006ac8 copy  0x00000005 , 0x0000003f 
+ 00032363  0x00006ac9 store  0x00000002 , 0x000009df 
+ 00032364  0x00006aca rtn 
+ 00032365  0x00006acc copy  0x00000006 , 0x0000003f 
+ 00032366  0x00006acd store  0x00000002 , 0x000009dd 
+ 00032367  0x00006ace rtn 
+ 00032368  0x00006ad3 copy  0x00000005 , 0x0000003f 
+ 00032369  0x00006ad4 store  0x00000002 , 0x000009bb 
+ 00032370  0x00006ad5 copy  0x00000006 , 0x0000003f 
+ 00032371  0x00006ad6 store  0x00000002 , 0x000009b9 
+ 00032372  0x00006ad7 rtn 
+ 00032373  0x00006ad9 fetch  0x00000002 , 0x000009bb 
+ 00032374  0x00006ada copy  0x0000003f , 0x00000005 
+ 00032375  0x00006adb fetch  0x00000002 , 0x000009b9 
+ 00032376  0x00006adc copy  0x0000003f , 0x00000006 
+ 00032377  0x00006add rtn 
+ 00032378  0x00006ae0 call  0x00007e85 
+ 00032379  0x00006ae2 call  0x00007e85 
+ 00032380  0x00006ae3 branch  0x00007e85 
+ 00032381  0x00006ae5 call  0x00007e81 
+ 00032382  0x00006ae7 ifetch  0x00000004 , 0x00000006 
+ 00032383  0x00006ae8 istore  0x00000004 , 0x00000005 
+ 00032384  0x00006ae9 rtn 
+ 00032385  0x00006aeb ifetch  0x00000008 , 0x00000006 
+ 00032386  0x00006aec istore  0x00000008 , 0x00000005 
+ 00032387  0x00006aed rtn 
+ 00032388  0x00006af0 call  0x00007e87 
+ 00032389  0x00006af2 call  0x00007e81 
+ 00032390  0x00006af4 call  0x00007e81 
+ 00032391  0x00006af6 call  0x00007e81 
+ 00032392  0x00006af7 branch  0x00007e81 
+ 00032393  0x00006afc copy  0x00000022 , 0x0000003f 
+ 00032394  0x00006afd increase  0x00000010 , 0x0000003f 
+ 00032395  0x00006afe increase  0x00000010 , 0x0000003f 
+ 00032396  0x00006b00 copy  0x00000022 , 0x00000002 
+ 00032397  0x00006b01 isub  0x00000002 , 0x0000003e 
+ 00032398  0x00006b02 branch  0x00007e8c , 0x00000002 
+ 00032399  0x00006b03 rtn 
+ 00032400  0x00006b06 force  0x00000003 , 0x00000039 
+ 00032401  0x00006b08 force  0x00000000 , 0x0000003f 
+ 00032402  0x00006b0a istore  0x00000008 , 0x00000005 
+ 00032403  0x00006b0b loop  0x00007e92 
+ 00032404  0x00006b0c rtn 
+ 00032405  0x00006b0f force  0x00000000 , 0x0000003f 
+ 00032406  0x00006b10 istore  0x00000008 , 0x00000005 
+ 00032407  0x00006b11 rtn 
+ 00032408  0x00006b13 force  0x00000000 , 0x0000003f 
+ 00032409  0x00006b14 istore  0x00000004 , 0x00000005 
+ 00032410  0x00006b15 rtn 
+ 00032411  0x00006b18 force  0x00000004 , 0x00000039 
+ 00032412  0x00006b19 branch  0x00007e91 
+ 00032413  0x00006b1b force  0x00000008 , 0x00000039 
+ 00032414  0x00006b1c branch  0x00007e91 
+ 00032415  0x00006b1f deposit  0x00000039 
+ 00032416  0x00006b20 rtn  0x00000034 
+ 00032417  0x00006b21 setarg  0x00000000 
+ 00032418  0x00006b23 istore  0x00000001 , 0x00000005 
+ 00032419  0x00006b24 loop  0x00007ea2 
+ 00032420  0x00006b25 rtn 
+ 00032421  0x00006b29 arg  0x00000020 , 0x00000039 
+ 00032422  0x00006b2a arg  0x000009e1 , 0x00000005 
+ 00032423  0x00006b2b branch  0x00007e9f 
+ 00032424  0x00006b2e ifetch  0x00000004 , 0x00000013 
+ 00032425  0x00006b2f ifetcht  0x00000004 , 0x00000011 
+ 00032426  0x00006b30 ixor  0x00000002 , 0x0000003f 
+ 00032427  0x00006b31 istore  0x00000004 , 0x00000005 
+ 00032428  0x00006b32 increase  0x00000004 , 0x00000011 
+ 00032429  0x00006b33 increase  0x00000004 , 0x00000013 
+ 00032430  0x00006b34 loop  0x00007ea8 
+ 00032431  0x00006b35 rtn 
+ 00032432  0x00006b3a set1  0x00000025 , 0x00000000 
+ 00032433  0x00006b3b bpatch  0x000000fa , 0x0000403f 
+ 00032434  0x00006b3c copy  0x00000039 , 0x0000003f 
+ 00032435  0x00006b3d sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00032436  0x00006b3e rtn  0x00000002 
+ 00032437  0x00006b3f iadd  0x00000011 , 0x00000012 
+ 00032438  0x00006b40 increase  0xffffffff , 0x00000012 
+ 00032439  0x00006b41 rshift  0x00000039 , 0x00000039 
+ 00032440  0x00006b43 ifetcht  0x00000001 , 0x00000011 
+ 00032441  0x00006b44 ifetch  0x00000001 , 0x00000012 
+ 00032442  0x00006b45 istore  0x00000001 , 0x00000011 
+ 00032443  0x00006b46 istoret  0x00000001 , 0x00000012 
+ 00032444  0x00006b47 increase  0xffffffff , 0x00000012 
+ 00032445  0x00006b48 increase  0x00000001 , 0x00000011 
+ 00032446  0x00006b49 loop  0x00007eb8 
+ 00032447  0x00006b4a rtn 
+ 00032448  0x00006b4e deposit  0x00000039 
+ 00032449  0x00006b4f rtn  0x00000034 
+ 00032450  0x00006b51 increase  0xfffffff8 , 0x00000039 
+ 00032451  0x00006b52 call  0x00007e81 , 0x00000002 
+ 00032452  0x00006b53 rtn  0x00000005 
+ 00032453  0x00006b54 branch  0x00007ec2 , 0x00000002 
+ 00032454  0x00006b55 increase  0x00000008 , 0x00000039 
+ 00032455  0x00006b57 increase  0xfffffffc , 0x00000039 
+ 00032456  0x00006b58 call  0x00007e7e , 0x00000002 
+ 00032457  0x00006b59 rtn  0x00000005 
+ 00032458  0x00006b5a branch  0x00007ec7 , 0x00000002 
+ 00032459  0x00006b5b increase  0x00000004 , 0x00000039 
+ 00032460  0x00006b5c branch  0x00007ecd 
+ 00032461  0x00006b5f deposit  0x00000039 
+ 00032462  0x00006b60 rtn  0x00000034 
+ 00032463  0x00006b62 ifetch  0x00000001 , 0x00000006 
+ 00032464  0x00006b63 istore  0x00000001 , 0x00000005 
+ 00032465  0x00006b64 loop  0x00007ecf 
+ 00032466  0x00006b65 rtn 
+ 00032467  0x00006b68 setarg  0x00000000 
+ 00032468  0x00006b6a rshift  0x00000022 , 0x00000002 
+ 00032469  0x00006b6b storet  0x00000004 , 0x00004134 
+ 00032470  0x00006b6c arg  0x0000423d , 0x00000005 
+ 00032471  0x00006b6d iforce  0x00000002 
+ 00032472  0x00006b6e lshift  0x00000007 , 0x0000003f 
+ 00032473  0x00006b6f iadd  0x00000005 , 0x00000005 
+ 00032474  0x00006b70 istoret  0x00000002 , 0x00000005 
+ 00032475  0x00006b71 set1  0x00000025 , 0x00000000 
+ 00032476  0x00006b72 bpatch  0x000000fb , 0x0000403f 
+ 00032477  0x00006b73 rtn 
+ 00032478  0x00006b76 arg  0x00000800 , 0x0000000b 
+ 00032479  0x00006b77 lshift16  0x0000000b , 0x0000000b 
+ 00032480  0x00006b78 iadd  0x0000000b , 0x0000003f 
+ 00032481  0x00006b79 rtn 
+ 00032482  0x00006b7d set1  0x00000025 , 0x00000000 
+ 00032483  0x00006b7e bpatch  0x000000fc , 0x0000403f 
+ 00032484  0x00006b7f fetcht  0x00000004 , 0x00004134 
+ 00032485  0x00006b80 rshift  0x00000022 , 0x0000003f 
+ 00032486  0x00006b81 store  0x00000004 , 0x00004134 
+ 00032487  0x00006b82 isub  0x00000002 , 0x0000003e 
+ 00032488  0x00006b83 ncall  0x00007ede , 0x00000002 
+ 00032489  0x00006b84 isub  0x00000002 , 0x0000000b 
+ 00032490  0x00006b85 copy  0x0000000b , 0x00000002 
+ 00032491  0x00006b86 arg  0x0000423d , 0x00000006 
+ 00032492  0x00006b87 copy  0x00000006 , 0x00000005 
+ 00032493  0x00006b88 arg  0x00000010 , 0x00000039 
+ 00032494  0x00006b8a ifetch  0x00000002 , 0x00000006 
+ 00032495  0x00006b8b isub  0x00000002 , 0x0000003f 
+ 00032496  0x00006b8c branch  0x00007ef2 , 0x00000002 
+ 00032497  0x00006b8d force  0x00000000 , 0x0000003f 
+ 00032498  0x00006b8f istore  0x00000002 , 0x00000005 
+ 00032499  0x00006b90 loop  0x00007eee 
+ 00032500  0x00006b91 arg  0x0000423d , 0x00000006 
+ 00032501  0x00006b92 lshift  0x00000007 , 0x0000003f 
+ 00032502  0x00006b93 iadd  0x00000006 , 0x00000006 
+ 00032503  0x00006b94 ifetch  0x00000002 , 0x00000006 
+ 00032504  0x00006b95 rtn 
+ 00032505  0x00006b9b iadd  0x00000002 , 0x00000002 
+ 00032506  0x00006b9c copy  0x00000002 , 0x00000039 
+ 00032507  0x00006b9d setarg  0x00000ea6 
+ 00032508  0x00006b9e isub  0x00000039 , 0x0000003f 
+ 00032509  0x00006b9f rtn  0x00000002 
+ 00032510  0x00006ba0 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00032511  0x00006ba1 rshift16  0x00000002 , 0x00000002 
+ 00032512  0x00006ba2 increase  0x00000001 , 0x00000002 
+ 00032513  0x00006ba3 lshift16  0x00000002 , 0x00000002 
+ 00032514  0x00006ba4 ior  0x00000002 , 0x00000002 
+ 00032515  0x00006ba5 rtn 
+ 00032516  0x00006ba8 call  0x00007f06 
+ 00032517  0x00006ba9 branch  0x00007f10 
+ 00032518  0x00006bad disable  0x00000028 
+ 00032519  0x00006bae isub  0x00000002 , 0x0000003f 
+ 00032520  0x00006baf branch  0x00007f0b , 0x00000002 
+ 00032521  0x00006bb0 enable  0x00000028 
+ 00032522  0x00006bb1 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00032523  0x00006bb3 rtnbit0  0x0000000f 
+ 00032524  0x00006bb4 arg  0xffff0ea6 , 0x00000002 
+ 00032525  0x00006bb5 iadd  0x00000002 , 0x0000003f 
+ 00032526  0x00006bb6 set0  0x00000040 , 0x0000003f 
+ 00032527  0x00006bb7 rtn 
+ 00032528  0x00006bba iforce  0x00000006 
+ 00032529  0x00006bbb rshift16  0x0000003f , 0x0000003f 
+ 00032530  0x00006bbc arg  0x00000ea6 , 0x00000002 
+ 00032531  0x00006bbd imul32  0x00000002 , 0x0000003f 
+ 00032532  0x00006bbe iadd  0x00000006 , 0x0000003f 
+ 00032533  0x00006bbf rtn 
+ 00032534  0x00006bc3 lshift8  0x0000003f , 0x0000003f 
+ 00032535  0x00006bc4 lshift4  0x0000003f , 0x0000003f 
+ 00032536  0x00006bc5 fetcht  0x00000003 , 0x0000420f 
+ 00032537  0x00006bc6 idiv  0x00000002 
+ 00032538  0x00006bc7 call  0x00007f53 
+ 00032539  0x00006bc8 quotient  0x00000002 
+ 00032540  0x00006bc9 rtn 
+ 00032541  0x00006bcd arg  0x00000ea6 , 0x00000002 
+ 00032542  0x00006bce idiv  0x00000002 
+ 00032543  0x00006bcf call  0x00007f53 
+ 00032544  0x00006bd0 quotient  0x0000003f 
+ 00032545  0x00006bd1 lshift16  0x0000003f , 0x0000003f 
+ 00032546  0x00006bd2 remainder  0x00000002 
+ 00032547  0x00006bd3 ior  0x00000002 , 0x00000002 
+ 00032548  0x00006bd4 rtn 
+ 00032549  0x00006bdc arg  0x00000000 , 0x00000002 
+ 00032550  0x00006bde copy  0x00000002 , 0x00000013 
+ 00032551  0x00006bdf ifetch  0x00000001 , 0x00000003 
+ 00032552  0x00006be0 call  0x00007f31 
+ 00032553  0x00006be1 copy  0x00000013 , 0x00000002 
+ 00032554  0x00006be2 call  0x00007f62 
+ 00032555  0x00006be3 arg  0x0000000a , 0x00000012 
+ 00032556  0x00006be4 imul32  0x00000012 , 0x0000003f 
+ 00032557  0x00006be5 iadd  0x00000002 , 0x0000003f 
+ 00032558  0x00006be6 copy  0x0000003f , 0x00000002 
+ 00032559  0x00006be7 loop  0x00007f26 
+ 00032560  0x00006be8 rtn 
+ 00032561  0x00006bed arg  0x0000003a , 0x00000002 
+ 00032562  0x00006bee isub  0x00000002 , 0x0000003e 
+ 00032563  0x00006bef nbranch  0x00007f3a , 0x00000002 
+ 00032564  0x00006bf0 arg  0x00000061 , 0x00000002 
+ 00032565  0x00006bf1 isub  0x00000002 , 0x0000003e 
+ 00032566  0x00006bf2 branch  0x00007f3d , 0x00000002 
+ 00032567  0x00006bf3 arg  0x00000037 , 0x00000002 
+ 00032568  0x00006bf4 isub  0x00000002 , 0x0000003f 
+ 00032569  0x00006bf5 rtn 
+ 00032570  0x00006bf7 arg  0x00000030 , 0x00000002 
+ 00032571  0x00006bf8 isub  0x00000002 , 0x0000003f 
+ 00032572  0x00006bf9 rtn 
+ 00032573  0x00006bfb arg  0x00000057 , 0x00000002 
+ 00032574  0x00006bfc isub  0x00000002 , 0x0000003f 
+ 00032575  0x00006bfd rtn 
+ 00032576  0x00006c00 copy  0x00000002 , 0x00000030 
+ 00032577  0x00006c01 setarg  0x000001ff 
+ 00032578  0x00006c02 force  0x00000000 , 0x00000012 
+ 00032579  0x00006c04 rshift3  0x0000003f , 0x00000011 
+ 00032580  0x00006c05 rshift  0x00000011 , 0x00000011 
+ 00032581  0x00006c06 ixor  0x00000011 , 0x00000011 
+ 00032582  0x00006c07 isolate1  0x00000000 , 0x00000011 
+ 00032583  0x00006c08 setflag  0x00000001 , 0x00000009 , 0x0000003f 
+ 00032584  0x00006c09 rshift  0x00000002 , 0x00000002 
+ 00032585  0x00006c0a isolate1  0x00000000 , 0x0000003f 
+ 00032586  0x00006c0b setflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00032587  0x00006c0c rshift  0x0000003f , 0x0000003f 
+ 00032588  0x00006c0d increase  0x00000001 , 0x00000012 
+ 00032589  0x00006c0e compare  0x00000000 , 0x00000012 , 0x00000007 
+ 00032590  0x00006c0f nbranch  0x00007f43 , 0x00000001 
+ 00032591  0x00006c10 istoret  0x00000001 , 0x00000005 
+ 00032592  0x00006c11 loop  0x00007f43 
+ 00032593  0x00006c12 copy  0x00000030 , 0x00000002 
+ 00032594  0x00006c13 rtn 
+ 00032595  0x00006c17 rtn  0x00000035 
+ 00032596  0x00006c18 branch  0x00007f53 
+ 00032597  0x00006c24 ifetch  0x00000001 , 0x00000011 
+ 00032598  0x00006c25 ifetcht  0x00000001 , 0x00000012 
+ 00032599  0x00006c26 isub  0x00000002 , 0x0000003e 
+ 00032600  0x00006c27 nrtn  0x00000005 
+ 00032601  0x00006c28 increase  0x00000001 , 0x00000011 
+ 00032602  0x00006c29 increase  0x00000001 , 0x00000012 
+ 00032603  0x00006c2a loop  0x00007f55 
+ 00032604  0x00006c2b force  0x00000000 , 0x0000003e 
+ 00032605  0x00006c2c rtn 
+ 00032606  0x00006c30 isub  0x00000002 , 0x0000003e 
+ 00032607  0x00006c31 nrtn  0x00000002 
+ 00032608  0x00006c32 deposit  0x00000002 
+ 00032609  0x00006c33 rtn 
+ 00032610  0x00006c36 iadd  0x00000002 , 0x0000003f 
+ 00032611  0x00006c37 isub  0x00000002 , 0x00000002 
+ 00032612  0x00006c38 isub  0x00000002 , 0x0000003f 
+ 00032613  0x00006c39 rtn 
+ 00032614  0x00006c3c arg  0x00000200 , 0x00000039 
+ 00032615  0x00006c3d arg  0x00004000 , 0x00000005 
+ 00032616  0x00006c3e branch  0x00007e91 
+ 00032617  0x00006c73 rtn  0x00000034 
+ 00032618  0x00006c74 copy  0x0000003f , 0x0000003d 
+ 00032619  0x00006c78 hfetch  0x00000002 , 0x0000810e 
+ 00032620  0x00006c79 nbranch  0x00007f6b , 0x00000034 
+ 00032621  0x00006c7a rtn 
+ 00032622  0x00006c7d hfetch  0x00000002 , 0x00008058 
+ 00032623  0x00006c7e copy  0x0000003f , 0x00000003 
+ 00032624  0x00006c7f rtn 
+ 00032625  0x00006c83 hjam  0x00000001 , 0x00008203 
+ 00032626  0x00006c84 rtn 
+ 00032627  0x00006c87 hstore  0x00000002 , 0x00008205 
+ 00032628  0x00006c88 hfetch  0x00000001 , 0x00008203 
+ 00032629  0x00006c89 set1  0x00000004 , 0x0000003f 
+ 00032630  0x00006c8a hstore  0x00000001 , 0x00008203 
+ 00032631  0x00006c8b rtn 
+ 00032632  0x00006c8d hstore  0x00000002 , 0x00008207 
+ 00032633  0x00006c8e hfetch  0x00000001 , 0x00008203 
+ 00032634  0x00006c8f set1  0x00000006 , 0x0000003f 
+ 00032635  0x00006c90 hstore  0x00000001 , 0x00008203 
+ 00032636  0x00006c91 rtn 
+ 00032637  0x00006c94 hstore  0x00000002 , 0x00008205 
+ 00032638  0x00006c95 hjam  0x00000030 , 0x00008203 
+ 00032639  0x00006c96 rtn 
+ 00032640  0x00006c9b hfetch  0x00000001 , 0x00008043 
+ 00032641  0x00006c9c set0  0x00000004 , 0x0000003f 
+ 00032642  0x00006c9d hstore  0x00000001 , 0x00008043 
+ 00032643  0x00006c9e rtn 
+ 00032644  0x00006ca1 hfetch  0x00000002 , 0x0000810e 
+ 00032645  0x00006ca2 arg  0x00000200 , 0x00000002 
+ 00032646  0x00006ca4 isub  0x00000002 , 0x0000003e 
+ 00032647  0x00006ca5 rtn 
+ 00032648  0x00006cac set1  0x00000025 , 0x00000000 
+ 00032649  0x00006cad bpatch  0x000000fd , 0x0000403f 
+ 00032650  0x00006cae ifetcht  0x00000008 , 0x00000011 
+ 00032651  0x00006caf and  0x00000002 , 0x000000ff , 0x0000003f 
+ 00032652  0x00006cb0 nbranch  0x00007f8f , 0x00000034 
+ 00032653  0x00006cb1 rshift8  0x00000002 , 0x0000003f 
+ 00032654  0x00006cb2 istore  0x00000008 , 0x00000011 
+ 00032655  0x00006cb4 increase  0x00000007 , 0x00000011 
+ 00032656  0x00006cb5 ifetch  0x00000001 , 0x00000011 
+ 00032657  0x00006cb6 nbranch  0x00003b31 , 0x00000034 
+ 00032658  0x00006cb7 fetch  0x00000001 , 0x000009bd 
+ 00032659  0x00006cb8 istore  0x00000001 , 0x00000011 
+ 00032660  0x00006cb9 rtn 
+ 00032661  0x00006cbf set1  0x00000025 , 0x00000000 
+ 00032662  0x00006cc0 bpatch  0x000000fe , 0x0000403f 
+ 00032663  0x00006cc1 arg  0x00000008 , 0x00000039 
+ 00032664  0x00006cc2 ifetch  0x00000008 , 0x00000011 
+ 00032665  0x00006cc3 rtn  0x00000034 
+ 00032666  0x00006cc5 ifetch  0x00000001 , 0x00000011 
+ 00032667  0x00006cc6 nbranch  0x00007f9f , 0x00000034 
+ 00032668  0x00006cc7 increase  0x00000001 , 0x00000011 
+ 00032669  0x00006cc8 loop  0x00007f9a 
+ 00032670  0x00006cc9 branch  0x00003b31 
+ 00032671  0x00006ccb arg  0x00000000 , 0x00000002 
+ 00032672  0x00006ccc istoret  0x00000001 , 0x00000011 
+ 00032673  0x00006ccd rtn 
+ 00032674  0x00006cd3 ifetch  0x00000008 , 0x00000011 
+ 00032675  0x00006cd4 rtn 
+ 00032676  0x00006cda ifetch  0x00000001 , 0x00000011 
+ 00032677  0x00006cdb rtn 
+ 00032678  0x00006cdf ifetch  0x00000002 , 0x00000011 
+ 00032679  0x00006ce0 rtn 
+ 00032680  0x00006ce5 arg  0x00000000 , 0x00000002 
+ 00032681  0x00006ce7 fetch  0x00000001 , 0x00000006 
+ 00032682  0x00006ce8 loop  0x00007fa9 , 0x00000034 
+ 00032683  0x00006ce9 increase  0x00000001 , 0x00000002 
+ 00032684  0x00006cea loop  0x00007fa9 
+ 00032685  0x00006ceb copy  0x00000002 , 0x0000003f 
+ 00032686  0x00006cec rtn 
+ 00032687  0x00006cef isub  0x00000002 , 0x0000003e 
+ 00032688  0x00006cf0 nrtn  0x00000002 
+ 00032689  0x00006cf1 copy  0x00000002 , 0x0000003f 
+ 00032690  0x00006cf2 rtn 
Index: Receive_Code/output/bt_program23.list
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/bt_program23.list	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/bt_program23.list	(working copy)
@@ -0,0 +1,24039 @@
+              include "bt_format "
+              org 0x0000
+0x0000 000040 bmark1 mark_ext_patch ,patch_ext 
+0x0001 000041 beq patch00_3 ,p_main_loop 
+0x0002 000042 beq patch10_6 ,p_shutdown_radio 
+0x0003 000043 beq patch11_2 ,p_set_freq_tx 
+0x0004 000044 beq patch11_3 ,p_initialize_radio_cont 
+0x0005 000045 beq patch16_4 ,p_app_init 
+0x0006 000046 branch assert 
+:      000048 patch_ext:
+0x0007 000049 beq patch20_3 ,p_le_master_dispatch_end 
+0x0008 000050 beq patch23_1 ,p_le_transmit 
+0x0009 000051 beq patch25_3 ,p_le_scan 
+0x000a 000052 beq patch25_6 ,p_le_conn 
+0x000b 000053 beq patch26_2 ,p_le_prepare_smp1 
+0x000c 000054 beq patch26_3 ,p_le_prepare_att 
+0x000d 000055 beq patch27_4 ,p_le_parse0 
+0x000e 000056 beq patch27_6 ,p_le_parse_att 
+0x000f 000057 beq patch32_5 ,p_gpio_set_before_lpm_common 
+0x0010 000058 beq patch3b_0 ,p_shutter_init_end 
+0x0011 000059 beq patch3b_1 ,p_shutter_le_bb_event_100ms_loop 
+0x0012 000060 beq patch3b_4 ,p_shutter_le_key_process 
+0x0013 000061 beq patch3e_7 ,p_check_51cmd_once 
+0x0014 000062 branch assert 
+:      000064 p_main_loop:
+0x0015 000065 arg uart_rx_timer ,queue 
+0x0016 000066 call timer_check 
+0x0017 000067 ncall p_main_loop_next ,blank 
+0x0018 000068 call p_uart_send_data_timer_init 
+0x0019 000069 call p_le_parse_att 
+:      000070 p_main_loop_next:
+0x001a 000071 branch main_loop + 2 
+:      000073 p_uart_send_data_timer_init:
+0x001b 000074 setarg timer_uart_send_data_delay 
+0x001c 000075 arg uart_rx_timer ,queue 
+0x001d 000076 branch timer_init 
+:      000078 p_le_prepare_smp1:
+0x001e 000079 fetch 1 ,mem_le_l2cap 
+:      000080 p_le_prepare_smp0:
+0x001f 000081 beq smp_pairing_request ,le_send_smp_pairing_request 
+0x0020 000082 beq smp_pairing_response ,p_le_send_smp_pairing_response 
+0x0021 000083 beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+0x0022 000084 beq smp_pairing_random ,le_send_smp_pairing_random 
+0x0023 000085 beq smp_pairing_failed ,le_send_smp_pairing_failed 
+0x0024 000086 beq smp_encryption_information ,le_send_smp_encryption_information 
+0x0025 000087 beq smp_master_identification ,le_send_smp_master_identification 
+0x0026 000088 beq smp_identity_information ,le_send_smp_identity_information 
+0x0027 000089 beq smp_identity_address_information ,le_send_smp_identity_address_information 
+0x0028 000090 beq smp_signing_information ,le_send_smp_signing_information 
+0x0029 000091 beq smp_security_request ,le_send_smp_security_request 
+0x002a 000092 beq smp_pairing_public_key ,le_send_smp_pairing_public_key 
+0x002b 000093 beq smp_pairing_dhkey_check ,le_send_smp_pairing_dhkey_check 
+0x002c 000094 branch assert 
+:      000096 p_le_send_smp_pairing_response:
+0x002d 000097 setarg param_smp_paring_response 
+0x002e 000098 store 4 ,mem_le_pres 
+0x002f 000099 setarg param_smp_key_dist2 
+0x0030 000100 istore 3 ,contw 
+0x0031 000101 fetch 6 ,mem_le_pres + 1 
+0x0032 000102 store 6 ,mem_le_l2cap_response 
+0x0033 000103 force 11 ,temp 
+0x0034 000104 branch le_send_packet 
+:      000105 p_app_init:
+0x0035 000106 fetch 1 ,mem_device_option 
+0x0036 000107 branch app_init ,blank 
+0x0037 000111 beq dvc_op_kb ,kb_init 
+0x0038 000112 beq dvc_op_shutter ,p_shutter_init 
+0x0039 000113 beq dvc_op_module ,module_init 
+0x003a 000115 bbit1 dvc_op_mouse ,mouse_init 
+0x003b 000116 bbit1 dvc_op_keyboard ,kb_init 
+0x003c 000117 rtn 
+:      000119 p_shutter_init:
+0x003d 000120 rtn wake 
+0x003e 000121 call init_shutter_le_att_list 
+0x003f 000122 arg 135 ,loopcnt 
+0x0040 000123 arg mem_shutter_le_att_list + 230 ,contw 
+0x0041 000124 arg mem_shutter_att_list_patch ,contr 
+0x0042 000125 call memcpy 
+0x0043 000126 call shutter_init_param 
+0x0044 000128 hjam 0x00 ,core_gpio_sel1 
+0x0045 000129 call shutter_key_init 
+0x0046 000131 setarg shutter_le_before_hibernate 
+0x0047 000132 store 2 ,mem_cb_before_hibernate 
+0x0048 000134 setarg shutter_le_process_lpm_before 
+0x0049 000135 store 2 ,mem_cb_before_lpm 
+0x004a 000137 setarg shutter_le_discovery_timeout_sleep 
+0x004b 000138 store 2 ,mem_cb_discovry_timeout 
+0x004c 000140 setarg scale_process_idle 
+0x004d 000141 store 2 ,mem_cb_idle_process 
+0x004e 000143 setarg scale_process 
+0x004f 000144 store 2 ,mem_cb_le_process 
+0x0050 000146 setarg p_scale_process_bb_event 
+0x0051 000147 store 2 ,mem_cb_bb_event_process 
+0x0052 000149 call p_shutter_uart_init 
+0x0053 000151 setarg shutter_le_scale_lpm_lock 
+0x0054 000152 store 2 ,mem_cb_check_wakelock 
+0x0055 000153 setarg shutter_le_receive_data 
+0x0056 000154 store 2 ,mem_cb_att_write 
+0x0057 000155 call p_shutter_le_queue_init 
+0x0058 000156 jam 0 ,mem_lpm_mult 
+0x0059 000157 jam 0 ,mem_shutter_conn_update_timer 
+0x005a 000158 branch shutter_init0 + 5 
+:      000160 p_shutter_init_end:
+0x005b 000161 fetch 1 ,mem_hard_soft_switch_case 
+0x005c 000162 beq hard_switch ,p_shutter_le_hard_switch_power_on_signal 
+0x005d 000163 branch shutter_init0 + 9 
+:      000165 p_shutter_le_hard_switch_power_on_signal:
+0x005e 000167 jam shutter_power_on ,mem_shutter_powerup_flag 
+0x005f 000168 jam 1 ,mem_enable_key_scan 
+0x0060 000169 call shutter_ui_led_init 
+0x0061 000170 setarg mem_power_on_led_style 
+0x0062 000171 call shutter_ui_led_send 
+:      000172 p_in_poweron_hard_switch_led:
+0x0063 000173 call ui_led_blink_polling 
+0x0064 000174 fetch 1 ,mem_led_blink_count 
+0x0065 000175 nbranch p_in_poweron_hard_switch_led ,blank 
+:      000176 p_shutter_le_soft_switch_power_on_signal:
+0x0066 000177 jam on ,mem_le_scan_enable 
+0x0067 000178 setarg 0 
+0x0068 000179 store 4 ,mem_shutter_send_data 
+0x0069 000180 call shutter_ui_led_init 
+0x006a 000183 fetch 2 ,mem_le_sleep_timeout 
+0x006b 000184 store 2 ,mem_le_sleep_timeout_timer_count 
+0x006c 000185 branch p_shutter_le_fast_scan 
+:      000188 p_shutter_le_fast_scan:
+0x006d 000189 fetch 2 ,mem_le_sleep_timeout 
+0x006e 000190 store 2 ,mem_le_sleep_timeout_timer_count 
+0x006f 000191 jam 0 ,mem_shutter_key_data_flag_1 
+0x0070 000192 jam on ,mem_le_scan_enable 
+0x0071 000193 setarg mem_fast_adv_led_style 
+0x0072 000194 branch shutter_ui_led_send 
+:      000196 p_le_scan:
+0x0073 000197 fetch 6 ,mem_le_rxbuf + 2 
+0x0074 000198 store 6 ,mem_le_plap 
+0x0075 000199 fetch 6 ,mem_le_plap 
+0x0076 000202 fetcht 6 ,mem_le_conn_peer_addr 
+0x0077 000203 isub temp ,null 
+0x0078 000204 branch le_create_conn ,zero 
+0x0079 000205 branch p_le_addr_compare 
+:      000207 p_le_addr_compare:
+0x007a 000208 fetch 6 ,mem_le_plap 
+0x007b 000211 fetcht 6 ,mem_le_slave_peer_addr 
+0x007c 000212 isub temp ,null 
+0x007d 000213 nrtn zero 
+0x007e 000214 fetch 6 ,mem_le_plap 
+0x007f 000215 store 6 ,mem_app_peer_addr 
+0x0080 000216 jam 28 ,mem_le_conn_interval 
+0x0081 000217 setarg 0x100 
+0x0082 000218 store 2 ,mem_le_conn_superto 
+0x0083 000219 jam off ,mem_le_scan_enable 
+0x0084 000220 jam 1 ,mem_le_conn_state 
+0x0085 000221 branch app_ble_start_conn 
+:      000223 p_check_51cmd_once:
+0x0086 000224 call ui_ipc_get_lock 
+0x0087 000225 arg mem_ipc_fifo_c512bt ,rega 
+0x0088 000226 call fifo_out 
+0x0089 000227 copy pdata ,temp 
+0x008a 000228 call ui_ipc_put_lock 
+0x008b 000229 copy temp ,pdata 
+0x008c 000230 rtn blank 
+0x008d 000231 beq bt_cmd_le_start_conn ,p_check_51cmd_le_start_con 
+0x008e 000232 branch check_51cmd_once + 9 
+:      000233 p_check_51cmd_le_start_con:
+0x008f 000234 jam on ,mem_le_scan_enable 
+0x0090 000235 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x0091 000236 fetch 6 ,mem_app_peer_addr 
+0x0092 000237 store 6 ,mem_le_conn_peer_addr 
+0x0093 000238 rtn 
+:      000240 p_le_parse0:
+0x0094 000241 copy regc ,pdata 
+0x0095 000242 beq ll_terminate_ind ,p_le_parse_terminate_ind 
+0x0096 000243 branch le_parse0 + 6 
+:      000244 p_le_parse_terminate_ind:
+0x0097 000245 fetch 1 ,mem_device_option 
+0x0098 000246 bne dvc_op_shutter ,p_le_parse_terminate_ind_common 
+0x0099 000247 jam 1 ,mem_shutter_key_data_flag_1 
+:      000248 p_le_parse_terminate_ind_common:
+0x009a 000249 setarg 3 
+0x009b 000250 store 2 ,mem_le_superto 
+0x009c 000251 rtn 
+:      000253 p_le_parse_att:
+0x009d 000254 ifetch 3 ,contr 
+0x009e 000255 store 3 ,mem_le_att_opcode 
+0x009f 000256 beq attop_write_response ,p_le_parse_att_write_response 
+0x00a0 000257 beq attop_handle_value_notification ,p_le_parse_att_handle_value_notify 
+0x00a1 000258 rtn 
+:      000260 p_le_parse_att_handle_value_notify:
+0x00a2 000261 branch p_shutter_uart_tx_prepare 
+:      000264 p_le_parse_att_write_response:
+0x00a3 000265 fetch 1 ,mem_le_send_write_request_count 
+0x00a4 000266 rtn blank 
+0x00a5 000267 increase -1 ,pdata 
+0x00a6 000268 store 1 ,mem_le_send_write_request_count 
+0x00a7 000269 beq 1 ,p_le_att_send_write_request1 
+0x00a8 000270 beq 0 ,p_le_att_send_write_request0 
+0x00a9 000271 rtn 
+:      000273 p_le_att_send_write_request1:
+0x00aa 000274 setarg 0x27 
+0x00ab 000275 store 2 ,mem_le_notify_handle 
+0x00ac 000276 jam 2 ,mem_le_handle_data_len 
+0x00ad 000277 setarg 0x0001 
+0x00ae 000278 store 2 ,mem_le_handle_data 
+0x00af 000279 jam 0 ,mem_le_conn_sm 
+0x00b0 000281 jam 1 ,mem_le_work_data_send_flag 
+0x00b1 000282 jam attop_write_request ,mem_fifo_temp 
+0x00b2 000283 branch le_xtype_fifo_in 
+:      000284 p_le_att_send_write_request0:
+0x00b3 000285 setarg 0x60 
+0x00b4 000286 store 2 ,mem_le_notify_handle 
+0x00b5 000287 jam 2 ,mem_le_handle_data_len 
+0x00b6 000288 setarg 0x0001 
+0x00b7 000289 store 2 ,mem_le_handle_data 
+0x00b8 000290 jam 0 ,mem_le_conn_sm 
+0x00b9 000292 jam 1 ,mem_le_work_data_send_flag 
+0x00ba 000293 jam attop_write_request ,mem_fifo_temp 
+0x00bb 000294 branch le_xtype_fifo_in 
+:      000297 p_le_prepare_att:
+0x00bc 000298 fetch 1 ,mem_le_l2cap 
+0x00bd 000299 beq attop_write_request ,p_le_send_att_write_request 
+0x00be 000300 branch le_prepare_att + 5 
+:      000302 p_le_send_att_write_request:
+:      000321 p_le_send_att_write_request_end:
+0x00bf 000322 fetch 2 ,mem_le_notify_handle 
+0x00c0 000323 store 2 ,mem_le_l2cap_response 
+0x00c1 000324 fetch 1 ,mem_le_handle_data_len 
+0x00c2 000325 copy pdata ,loopcnt 
+0x00c3 000326 arg mem_le_handle_data ,contr 
+0x00c4 000327 call memcpy 
+0x00c5 000328 branch le_send_autolen 
+:      000331 p_scale_process_bb_event:
+0x00c6 000332 copy regc ,pdata 
+0x00c7 000334 beq bt_evt_button_up ,shutter_bb_event_button_up 
+0x00c8 000335 beq bt_evt_button_long_pressed ,shutter_evt_button_long_pressed 
+0x00c9 000336 beq bt_evt_le_connected ,scale_process_le_conn 
+0x00ca 000337 beq bt_evt_le_disconnected ,p_scale_process_le_discon 
+0x00cb 000338 and pdata ,0x0f ,temp 
+0x00cc 000339 and_into bt_evt_timer_mask ,pdata 
+0x00cd 000340 beq bt_evt_timer_init ,shutter_le_bb_event_timer 
+0x00ce 000341 rtn 
+:      000343 p_le_conn:
+0x00cf 000344 fetch 2 ,mem_le_sleep_conn_timeout 
+0x00d0 000345 store 2 ,mem_le_sleep_timeout_timer_count 
+0x00d1 000346 setarg mem_connected_led_style 
+0x00d2 000347 call shutter_ui_led_send 
+0x00d3 000348 jam 1 ,mem_le_conn_state 
+0x00d4 000350 jam 1 ,mem_enable_key_scan 
+0x00d5 000351 jam conn_sm_send_write_req ,mem_le_conn_sm 
+0x00d6 000352 call le_create_conn + 14 
+0x00d7 000353 rtn 
+:      000355 p_le_master_dispatch_end:
+0x00d8 000356 fetch 1 ,mem_le_conn_rcv 
+0x00d9 000357 increase 1 ,pdata 
+0x00da 000358 store 1 ,mem_le_conn_rcv 
+0x00db 000359 call le_acknowledge 
+0x00dc 000360 call p_le_master_sm 
+0x00dd 000361 disable master 
+0x00de 000362 rtn 
+:      000365 p_le_master_sm:
+0x00df 000366 fetch 1 ,mem_le_conn_sm 
+0x00e0 000367 beq conn_sm_send_write_req ,p_le_data_send_write_req 
+0x00e1 000368 beq conn_sm_wait_write_res ,p_le_data_wait_write_res 
+0x00e2 000369 beq conn_sm_wait_write_res1 ,p_le_data_wait_write_res1 
+0x00e3 000370 rtn 
+:      000372 p_le_data_send_write_req:
+0x00e4 000373 setarg 0x1a 
+0x00e5 000374 store 2 ,mem_le_notify_handle 
+0x00e6 000375 jam 2 ,mem_le_handle_data_len 
+0x00e7 000376 setarg 0x0001 
+0x00e8 000377 store 2 ,mem_le_handle_data 
+0x00e9 000378 jam 0 ,mem_le_conn_sm 
+0x00ea 000380 jam 1 ,mem_le_work_data_send_flag 
+0x00eb 000381 jam attop_write_request ,mem_fifo_temp 
+0x00ec 000382 call le_xtype_fifo_in 
+0x00ed 000383 rtn 
+:      000385 p_le_data_wait_write_res:
+0x00ee 000386 jam conn_sm_wait_write_res1 ,mem_le_conn_sm 
+0x00ef 000387 jam attop_exchange_mtu_request ,mem_fifo_temp 
+0x00f0 000388 call le_xtype_fifo_in 
+0x00f1 000389 fetch 2 ,mem_ui_state_map 
+0x00f2 000390 set1 ui_state_ble_connected ,pdata 
+0x00f3 000391 store 2 ,mem_ui_state_map 
+0x00f4 000392 rtn 
+:      000394 p_le_data_wait_write_res1:
+0x00f5 000395 rtn 
+:      000397 p_scale_process_le_discon:
+0x00f6 000400 setarg 0 
+0x00f7 000401 store 6 ,mem_le_conn_peer_addr 
+0x00f8 000402 jam 2 ,mem_le_send_write_request_count 
+0x00f9 000403 jam 0 ,mem_le_conn_state 
+0x00fa 000404 jam 0 ,mem_lpm_mult 
+0x00fb 000405 jam 0 ,mem_shutter_conn_update_timer 
+0x00fc 000406 jam 0 ,mem_ltk_exists 
+0x00fd 000407 jam default_states ,mem_ltk_states 
+0x00fe 000408 jam 0 ,mem_shutter_find_type_value_flag 
+0x00ff 000409 call p_shutter_le_queue_clear 
+0x0100 000410 fetch 2 ,mem_le_sleep_timeout 
+0x0101 000411 store 2 ,mem_le_sleep_timeout_timer_count 
+0x0102 000412 fetch 1 ,mem_le_sleep_flag 
+0x0103 000413 bne 0 ,shutter_le_sleep_enter 
+0x0104 000414 call p_shutter_le_fast_scan 
+0x0105 000415 jam pair_unknown ,mem_pair_state 
+0x0106 000416 setarg 0 
+0x0107 000417 store 2 ,mem_l2cap_rxbuff1_len 
+0x0108 000418 setarg 0 
+0x0109 000419 store 2 ,mem_l2cap_rxbuff2_len 
+0x010a 000420 branch shutter_le_tx_buff_unuse 
+:      000422 p_shutter_le_queue_init:
+0x010b 000423 jam 0 ,mem_queue_ele_num_patch 
+0x010c 000424 setarg mem_queue_start_patch 
+0x010d 000425 store 2 ,mem_queue_read_patch 
+0x010e 000426 store 2 ,mem_queue_write_patch 
+0x010f 000427 rtn 
+:      000430 p_shutter_le_queue_clear:
+0x0110 000431 branch p_shutter_le_queue_init 
+:      000435 p_shutter_le_queue_put:
+0x0111 000436 disable user 
+0x0112 000437 fetch 1 ,mem_queue_ele_num_patch 
+0x0113 000438 compare queue_ele_count_patch ,pdata ,0xff 
+0x0114 000439 rtn true 
+0x0115 000441 enable user 
+0x0116 000442 fetch 2 ,mem_queue_write_patch 
+0x0117 000443 copy pdata ,contw 
+0x0118 000444 copy temp ,contr 
+0x0119 000445 call memcpy 
+0x011a 000447 fetch 1 ,mem_queue_ele_num_patch 
+0x011b 000448 increase 1 ,pdata 
+0x011c 000449 store 1 ,mem_queue_ele_num_patch 
+0x011d 000451 setarg mem_queue_write_patch 
+0x011e 000452 branch p_shutter_le_queue_increase 
+:      000455 p_shutter_le_queue_increase:
+0x011f 000456 copy pdata ,rega 
+0x0120 000457 arg mem_queue_end_patch ,temp 
+0x0121 000458 ifetch 2 ,rega 
+0x0122 000459 increase queue_ele_length_patch ,pdata 
+0x0123 000460 isub temp ,null 
+0x0124 000461 nbranch p_shutter_le_queue_put_end ,positive 
+0x0125 000462 setarg mem_queue_start_patch 
+:      000463 p_shutter_le_queue_put_end:
+0x0126 000464 istore 2 ,rega 
+0x0127 000465 rtn 
+:      000469 p_shutter_le_queue_get:
+0x0128 000470 disable user 
+0x0129 000471 fetch 1 ,mem_queue_ele_num_patch 
+0x012a 000472 rtn blank 
+0x012b 000473 enable user 
+0x012c 000474 fetch 1 ,mem_queue_ele_num_patch 
+0x012d 000475 increase -1 ,pdata 
+0x012e 000476 store 1 ,mem_queue_ele_num_patch 
+0x012f 000478 fetch 2 ,mem_queue_read_patch 
+0x0130 000479 store 2 ,mem_queue_temp_patch 
+0x0131 000481 setarg mem_queue_read_patch 
+0x0132 000482 call p_shutter_le_queue_increase 
+0x0133 000483 fetch 2 ,mem_queue_temp_patch 
+0x0134 000484 rtn 
+:      000486 p_shutter_le_queue_read_point:
+0x0135 000487 disable user 
+0x0136 000488 fetch 1 ,mem_queue_ele_num_patch 
+0x0137 000489 rtn blank 
+0x0138 000490 enable user 
+0x0139 000491 fetch 2 ,mem_queue_read_patch 
+0x013a 000492 rtn 
+:      000494 p_shutter_le_key_process:
+0x013b 000495 fetch 1 ,mem_shutter_key_num 
+0x013c 000496 rtn blank 
+0x013d 000497 call shutter_shutter_scan_key 
+0x013e 000498 nbranch lpm_button_clean_wake_lock ,user 
+0x013f 000499 call lpm_button_get_wake_lock 
+0x0140 000500 disable user 
+0x0141 000501 fetch 2 ,mem_le_sleep_conn_timeout 
+0x0142 000502 store 2 ,mem_le_sleep_timeout_timer_count 
+0x0143 000505 fetch 1 ,mem_le_conn_state 
+0x0144 000506 beq 0 ,p_shutter_le_fast_scan 
+0x0145 000507 call shutter_shutter_cancel_key_shake 
+0x0146 000508 branch p_in_le_key_process_end ,positive 
+0x0147 000509 fetch 2 ,mem_key_value_temp 
+0x0148 000510 store 2 ,mem_key_value_temp4 
+0x0149 000511 jam 0 ,mem_key_value_temp6 
+0x014a 000512 force 0 ,queue 
+:      000514 p_shutter_le_key_lp1:
+0x014b 000515 fetch 2 ,mem_key_value 
+0x014c 000516 rshift pdata ,temp 
+0x014d 000517 storet 2 ,mem_key_value 
+0x014e 000518 and pdata ,0x01 ,pdata 
+0x014f 000519 fetcht 2 ,mem_key_value_temp4 
+0x0150 000520 and temp ,0x01 ,rega 
+0x0151 000521 rshift temp ,temp 
+0x0152 000522 storet 2 ,mem_key_value_temp4 
+0x0153 000523 ixor rega ,null 
+0x0154 000524 ncall p_shutter_le_send_key_data ,zero 
+0x0155 000525 fetch 1 ,mem_shutter_key_num 
+0x0156 000526 fetcht 1 ,mem_key_value_temp6 
+0x0157 000527 increase 1 ,temp 
+0x0158 000528 storet 1 ,mem_key_value_temp6 
+0x0159 000529 copy temp ,queue 
+0x015a 000530 ixor queue ,null 
+0x015b 000532 nbranch p_shutter_le_key_lp1 ,zero 
+0x015c 000533 fetch 2 ,mem_key_value_temp 
+0x015d 000534 store 2 ,mem_key_value 
+0x015e 000535 rtn 
+:      000536 p_in_le_key_process_end:
+0x015f 000537 setarg 0 
+0x0160 000538 store 2 ,mem_key_value_temp 
+0x0161 000539 store 2 ,mem_key_value 
+0x0162 000540 rtn 
+:      000544 p_shutter_le_send_key_data:
+0x0163 000546 deposit rega 
+0x0164 000547 branch p_in_le_key_is_release ,blank 
+0x0165 000548 copy queue ,pdata 
+0x0166 000549 beq 0 ,p_in_le_send_key0_press 
+0x0167 000550 beq 1 ,p_in_le_send_key1_press 
+0x0168 000551 beq 2 ,p_in_le_send_key2_press 
+0x0169 000552 beq 3 ,p_in_le_send_key3_press 
+:      000553 p_in_le_send_lable:
+0x016a 000554 ifetch 1 ,temp 
+0x016b 000555 rtn blank 
+0x016c 000556 store 1 ,mem_key_packet_count 
+0x016d 000557 increase 1 ,temp 
+0x016e 000558 storet 2 ,mem_key_next_addr 
+:      000559 p_in_le_send_lp1:
+0x016f 000560 fetch 2 ,mem_key_next_addr 
+0x0170 000561 ifetcht 1 ,pdata 
+0x0171 000562 copy temp ,loopcnt 
+0x0172 000563 iadd temp ,temp 
+0x0173 000564 storet 2 ,mem_key_next_addr 
+0x0174 000565 copy pdata ,temp 
+0x0175 000566 call p_shutter_le_queue_put 
+0x0176 000567 fetch 1 ,mem_key_packet_count 
+0x0177 000568 increase -1 ,pdata 
+0x0178 000569 store 1 ,mem_key_packet_count 
+0x0179 000570 nbranch p_in_le_send_lp1 ,zero 
+0x017a 000571 branch p_le_send_packet 
+:      000573 p_le_send_packet:
+0x017b 000574 call p_shutter_le_queue_read_point 
+0x017c 000575 nrtn user 
+0x017d 000576 disable user 
+0x017e 000578 jam attop_write_request ,mem_fifo_temp 
+0x017f 000579 call le_xtype_fifo_in 
+0x0180 000580 branch shutter_le_tx_buff_inuse 
+:      000583 p_in_le_key_is_release:
+0x0181 000584 copy queue ,pdata 
+0x0182 000585 beq 0 ,p_in_le_send_key0_rel 
+0x0183 000586 beq 1 ,p_in_le_send_key1_rel 
+0x0184 000587 beq 2 ,p_in_le_send_key2_rel 
+0x0185 000588 beq 3 ,p_in_le_send_key3_rel 
+0x0186 000589 branch p_in_le_send_lable 
+:      000591 p_in_le_send_key0_press:
+0x0187 000592 jam 0x01 ,mem_le_car_write_cmd_control + 1 
+0x0188 000593 arg mem_le_car_write_cmd_data1 ,contr 
+0x0189 000594 arg 7 ,loopcnt 
+0x018a 000595 call p_calc_check_sum_start 
+0x018b 000596 store 1 ,mem_le_car_write_cmd_check_sum 
+0x018c 000597 arg mem_le_car_write_cmd_data ,temp 
+0x018d 000598 branch p_in_le_send_lable 
+:      000599 p_in_le_send_key1_press:
+0x018e 000600 jam 0x02 ,mem_le_car_write_cmd_control + 1 
+0x018f 000601 arg mem_le_car_write_cmd_data1 ,contr 
+0x0190 000602 arg 7 ,loopcnt 
+0x0191 000603 call p_calc_check_sum_start 
+0x0192 000604 store 1 ,mem_le_car_write_cmd_check_sum 
+0x0193 000605 arg mem_le_car_write_cmd_data ,temp 
+0x0194 000606 branch p_in_le_send_lable 
+:      000607 p_in_le_send_key2_press:
+0x0195 000608 jam 0x01 ,mem_le_car_write_cmd_control 
+0x0196 000609 arg mem_le_car_write_cmd_data1 ,contr 
+0x0197 000610 arg 7 ,loopcnt 
+0x0198 000611 call p_calc_check_sum_start 
+0x0199 000612 store 1 ,mem_le_car_write_cmd_check_sum 
+0x019a 000613 arg mem_le_car_write_cmd_data ,temp 
+0x019b 000614 branch p_in_le_send_lable 
+:      000615 p_in_le_send_key3_press:
+0x019c 000616 jam 0x02 ,mem_le_car_write_cmd_control 
+0x019d 000617 arg mem_le_car_write_cmd_data1 ,contr 
+0x019e 000618 arg 7 ,loopcnt 
+0x019f 000619 call p_calc_check_sum_start 
+0x01a0 000620 store 1 ,mem_le_car_write_cmd_check_sum 
+0x01a1 000621 arg mem_le_car_write_cmd_data ,temp 
+0x01a2 000622 branch p_in_le_send_lable 
+:      000624 p_in_le_send_key0_rel:
+0x01a3 000625 jam 0x00 ,mem_le_car_write_cmd_control + 1 
+0x01a4 000626 arg mem_le_car_write_cmd_data1 ,contr 
+0x01a5 000627 arg 7 ,loopcnt 
+0x01a6 000628 call p_calc_check_sum_start 
+0x01a7 000629 store 1 ,mem_le_car_write_cmd_check_sum 
+0x01a8 000630 arg mem_le_car_write_cmd_data ,temp 
+0x01a9 000631 branch p_in_le_send_lable 
+:      000632 p_in_le_send_key1_rel:
+0x01aa 000633 jam 0x00 ,mem_le_car_write_cmd_control + 1 
+0x01ab 000634 arg mem_le_car_write_cmd_data1 ,contr 
+0x01ac 000635 arg 7 ,loopcnt 
+0x01ad 000636 call p_calc_check_sum_start 
+0x01ae 000637 store 1 ,mem_le_car_write_cmd_check_sum 
+0x01af 000638 arg mem_le_car_write_cmd_data ,temp 
+0x01b0 000639 branch p_in_le_send_lable 
+:      000640 p_in_le_send_key2_rel:
+0x01b1 000641 jam 0x00 ,mem_le_car_write_cmd_control 
+0x01b2 000642 arg mem_le_car_write_cmd_data1 ,contr 
+0x01b3 000643 arg 7 ,loopcnt 
+0x01b4 000644 call p_calc_check_sum_start 
+0x01b5 000645 store 1 ,mem_le_car_write_cmd_check_sum 
+0x01b6 000646 arg mem_le_car_write_cmd_data ,temp 
+0x01b7 000647 branch p_in_le_send_lable 
+:      000648 p_in_le_send_key3_rel:
+0x01b8 000649 jam 0x00 ,mem_le_car_write_cmd_control 
+0x01b9 000650 arg mem_le_car_write_cmd_data1 ,contr 
+0x01ba 000651 arg 7 ,loopcnt 
+0x01bb 000652 call p_calc_check_sum_start 
+0x01bc 000653 store 1 ,mem_le_car_write_cmd_check_sum 
+0x01bd 000654 arg mem_le_car_write_cmd_data ,temp 
+0x01be 000655 branch p_in_le_send_lable 
+:      000659 p_calc_check_sum_start:
+0x01bf 000660 arg 0 ,rega 
+:      000661 p_calc_check_sum_loop:
+0x01c0 000662 ifetch 1 ,contr 
+0x01c1 000663 iadd rega ,rega 
+0x01c2 000664 loop p_calc_check_sum_loop 
+:      000665 p_calc_check_sum_and:
+0x01c3 000666 and rega ,0xff ,pdata 
+0x01c4 000667 rtn 
+:      000670 p_shutter_le_bb_event_100ms_loop:
+0x01c5 000672 call shutter_le_shutter_fast_adv_timer 
+0x01c6 000676 call shutter_app_updata_le_param_timer 
+0x01c7 000678 branch shutter_le_bb_event_100ms_loop 
+:      000680 p_shutter_ui_power_timeout_timer:
+0x01c8 000681 fetch 1 ,mem_power_timer 
+0x01c9 000682 rtn blank 
+0x01ca 000683 increase -1 ,pdata 
+0x01cb 000684 store 1 ,mem_power_timer 
+0x01cc 000685 nrtn blank 
+0x01cd 000686 fetch 1 ,mem_shutter_powerup_flag 
+0x01ce 000687 beq shutter_power_on ,p_shutter_le_soft_switch_power_on_signal 
+0x01cf 000688 branch shutter_shutter_power_off_signal 
+:      000702 p_shutter_uart_init:
+0x01d0 000703 hjam 0x4 ,core_gpio_sel1 
+0x01d1 000704 hfetch 4 ,core_gpio_pu0 
+0x01d2 000705 set1 7 ,pdata 
+0x01d3 000706 hstore 4 ,core_gpio_pu0 
+0x01d4 000708 hjam 0x01 ,core_uart_clksel 
+0x01d5 000709 setarg mem_shutter_rx_buf 
+0x01d6 000710 hstore 2 ,core_uart_rsaddr 
+0x01d7 000711 setarg mem_shutter_rx_buf_end 
+0x01d8 000712 hstore 2 ,core_uart_readdr 
+0x01d9 000713 setarg mem_shutter_tx_buf 
+0x01da 000714 hstore 2 ,core_uart_tsaddr 
+0x01db 000715 setarg mem_shutter_tx_buf_end 
+0x01dc 000716 hstore 2 ,core_uart_teaddr 
+0x01dd 000717 setarg mem_shutter_rx_buf 
+0x01de 000718 hstore 2 ,core_uart_rrptr 
+0x01df 000719 setarg mem_shutter_tx_buf 
+0x01e0 000720 hstore 2 ,core_uart_twptr 
+0x01e1 000721 hstore 2 ,core_uart_trptrp 
+0x01e2 000723 setarg uart_baud_115200 
+0x01e3 000724 hstore 2 ,core_uart_baud 
+0x01e4 000726 hfetch 2 ,core_clkoff 
+0x01e5 000727 set0 clock_off_uart ,pdata 
+0x01e6 000728 hstore 2 ,core_clkoff 
+0x01e7 000729 hjam 0x81 ,core_uart_ctrl 
+0x01e8 000730 rtn 
+:      000732 p_shutter_uart_tx_prepare:
+0x01e9 000733 fetch 7 ,mem_le_rxbuf + 9 
+0x01ea 000734 store 7 ,mem_uart_mouse_data_buff + 3 
+:      000735 p_shutter_uart_tx_prepare_next:
+0x01eb 000736 jam 0x02 ,mem_uart_mouse_data_buff 
+0x01ec 000737 jam 0x29 ,mem_uart_mouse_data_buff + 1 
+0x01ed 000738 jam 0x08 ,mem_uart_mouse_data_buff + 2 
+0x01ee 000740 hfetch 2 ,core_uart_twptr 
+0x01ef 000741 copy pdata ,contwu 
+0x01f0 000742 arg 0x0b ,loopcnt 
+0x01f1 000743 arg mem_uart_mouse_data_buff ,contr 
+0x01f2 000744 call uart_copy_tx_bytes 
+0x01f3 000745 branch uartd_send 
+:      000747 p_gpio_set_before_lpm_common:
+0x01f4 000748 hfetch 4 ,core_gpio_pu0 
+0x01f5 000749 hfetcht 4 ,core_gpio_pd0 
+0x01f6 000750 ior temp ,pdata 
+0x01f7 000751 invert pdata ,pdata 
+0x01f8 000752 iand rega ,pdata 
+0x01f9 000754 hstore 4 ,core_gpio_oe0 
+0x01fa 000755 rtn 
+:      000757 p_set_freq_tx:
+0x01fb 000758 storet 1 ,mem_last_freq 
+0x01fc 000759 add temp ,0 ,rega 
+0x01fd 000760 call rf_write_freq 
+0x01fe 000761 setarg param_pll_setup 
+0x01ff 000762 call sleep 
+:      000763 p_txon:
+0x0200 000764 hjam 0x1 ,rfen_adc 
+0x0201 000765 hjam 0x3c ,rfen_rx 
+0x0202 000766 hjam 0xe0 ,rfen_tx 
+0x0203 000767 hjam 0x12 ,0x96d 
+0x0204 000768 nop 10 
+0x0205 000769 hjam 0x01 ,rfen_mdm 
+0x0206 000770 hjam 0x3d ,rfen_mdm 
+0x0207 000771 nop 10 
+0x0208 000772 hjam 0xb7 ,rfen_sn 
+0x0209 000773 nop 10 
+0x020a 000774 hjam 0x7f ,rfen_mdm 
+0x020b 000775 fetch 1 ,mem_le_conn_state 
+0x020c 000777 beq 0 ,p_set_tx_power_5db 
+0x020d 000778 fetch 1 ,mem_tx_power 
+0x020e 000779 bbit1 tx_power_0db ,p_set_tx_power_0db 
+0x020f 000780 bbit1 tx_power_3db ,p_set_tx_power_3db 
+0x0210 000781 bbit1 tx_power_5db ,p_set_tx_power_5db 
+0x0211 000782 bbit1 tx_power_f3db ,p_set_tx_power_f3db 
+0x0212 000783 bbit1 tx_power_f5db ,p_set_tx_power_f5db 
+:      000784 p_set_tx_power_0db:
+0x0213 000785 hjam 0xf0 ,0x956 
+0x0214 000786 call txon_common 
+0x0215 000787 hjam 0xd8 ,0x955 
+0x0216 000788 rtn 
+:      000789 p_set_tx_power_3db:
+0x0217 000790 hjam 0xdf ,0x956 
+0x0218 000791 call txon_common 
+0x0219 000792 hjam 0xdf ,0x955 
+0x021a 000793 rtn 
+:      000794 p_set_tx_power_5db:
+0x021b 000795 hjam 0xff ,0x956 
+0x021c 000796 call txon_common 
+0x021d 000797 hjam 0xdf ,0x955 
+0x021e 000798 rtn 
+:      000799 p_set_tx_power_f3db:
+0x021f 000800 hjam 0xce ,0x956 
+0x0220 000801 call txon_common 
+0x0221 000802 hjam 0xd8 ,0x955 
+0x0222 000803 rtn 
+:      000804 p_set_tx_power_f5db:
+0x0223 000805 hjam 0xcb ,0x956 
+0x0224 000806 call txon_common 
+0x0225 000807 hjam 0xd8 ,0x955 
+0x0226 000808 rtn 
+:      000809 p_txon_scan:
+0x0227 000810 hjam 0xc0 ,0x956 
+0x0228 000811 hjam 0xd8 ,0x955 
+0x0229 000812 rtn 
+:      000814 p_le_transmit:
+0x022a 000815 call le_prep 
+0x022b 000816 call p_letx_setfreq 
+0x022c 000817 call le_transmit0 
+0x022d 000818 fetch 1 ,mem_device_option 
+0x022e 000819 beq dvc_op_module ,module_le_transmit 
+0x022f 000820 rtn 
+:      000821 p_letx_setfreq:
+0x0230 000822 branch p_txon ,match 
+0x0231 000823 branch letx_setfreq0 
+:      000825 p_shutdown_radio:
+0x0232 000826 branch p_shutdown_radio0 ,is_rx 
+0x0233 000827 hjam 0xd4 ,0x955 
+0x0234 000828 nop 4 
+0x0235 000829 hjam 0xd2 ,0x955 
+0x0236 000830 nop 4 
+0x0237 000831 hjam 0xd1 ,0x955 
+0x0238 000832 nop 4 
+0x0239 000833 fetch 1 ,mem_le_conn_state 
+0x023a 000834 beq 0 ,p_shutdowm_radio_scan 
+0x023b 000835 fetch 1 ,mem_tx_power 
+0x023c 000836 bbit1 tx_power_0db ,p_shutdown_radio_0db 
+0x023d 000837 bbit1 tx_power_3db ,p_shutdown_radio_3db 
+0x023e 000838 bbit1 tx_power_5db ,p_shutdown_radio_5db 
+0x023f 000839 bbit1 tx_power_f3db ,p_shutdown_radio_f3db 
+0x0240 000840 bbit1 tx_power_f5db ,p_shutdown_radio_f5db 
+:      000841 p_shutdown_radio_5db:
+:      000842 p_shutdown_radio_0db:
+0x0241 000843 hjam 0xd0 ,0x955 
+0x0242 000844 hjam 0xe0 ,0x956 
+:      000845 p_shutdown_radio0:
+0x0243 000846 force 0 ,radio_ctrl 
+0x0244 000847 disable is_rx 
+0x0245 000848 disable is_tx 
+0x0246 000849 pulse packet_end 
+0x0247 000850 hjam 0x0 ,rfen_mdm 
+0x0248 000851 hjam 0x0 ,rfen_tx 
+0x0249 000852 hjam 0x0 ,rfen_rx 
+0x024a 000853 hjam 0 ,rfen_sn 
+0x024b 000854 hjam 0x70 ,rfen_msc 
+0x024c 000855 hjam 0x0 ,rfen_adc 
+0x024d 000856 rtn 
+:      000858 p_shutdown_radio_f5db:
+:      000859 p_shutdown_radio_f3db:
+:      000860 p_shutdown_radio_3db:
+0x024e 000861 hjam 0xd0 ,0x955 
+0x024f 000862 hjam 0xc0 ,0x956 
+0x0250 000863 branch p_shutdown_radio0 
+:      000864 p_shutdowm_radio_scan:
+0x0251 000865 hjam 0xd0 ,0x955 
+0x0252 000866 hjam 0xc0 ,0x956 
+0x0253 000867 rtn 
+:      000870 p_initialize_radio_cont:
+0x0254 000871 fetch 1 ,mem_lpm_xtalcnt 
+0x0255 000872 nbranch p_switchdpll_nocal ,blank 
+0x0256 000873 call lpm_cal_xtal_startup 
+0x0257 000874 nop 30000 
+0x0258 000875 nop 30000 
+0x0259 000876 nop 30000 
+:      000877 p_switchdpll_nocal:
+0x025a 000878 call switchto_dpllclk 
+0x025b 000879 hjam clksel_dpll ,core_clksel 
+0x025c 000880 nop 1 
+0x025d 000881 hjam clksel_xtal ,core_clksel 
+0x025e 000882 hfetch 1 ,rf_clkpll_frac + 2 
+0x025f 000883 and_into 0xcf ,pdata 
+0x0260 000884 hstore 1 ,rf_clkpll_frac + 2 
+0x0261 000885 or_into 0x30 ,pdata 
+0x0262 000886 hstore 1 ,rf_clkpll_frac + 2 
+0x0263 000887 rtn 
+              org 0x3000
+:      000896 start:
+0x3000 000897 call lpmstate 
+:      000900 soft_reset:
+0x3001 000901 hjam lock_otp ,core_misc_ctrl 
+0x3002 000902 set0 mark_ext_patch ,mark 
+0x3003 000903 bpatch patch00_0 ,mem_patch00 
+0x3004 000904 hfetch 1 ,0x813b 
+0x3005 000905 store 1 ,mem_wakup_from_power_flag 
+0x3006 000906 call spi_ncs_gpio_init 
+0x3007 000907 clear_stack 
+0x3008 000908 ncall wait_uarttx ,wake 
+0x3009 000909 call initialize_radio 
+0x300a 000910 call iicd_init_12m 
+0x300b 000911 call init_param 
+0x300c 000912 call l2cap_init 
+0x300d 000913 set0 mark_ext_patch ,mark 
+0x300e 000914 bpatch patch00_1 ,mem_patch00 
+0x300f 000915 call rfcomm_init 
+0x3010 000916 call init_lmp 
+0x3011 000917 call ui_init 
+0x3012 000918 call app_init 
+0x3013 000919 ncall load_chip_option ,wake 
+0x3014 000920 set0 mark_ext_patch ,mark 
+0x3015 000921 bpatch patch00_2 ,mem_patch00 
+0x3016 000922 call app_lpm_init ,wake 
+0x3017 000923 call publickey_init 
+0x3018 000924 call lpm_recover_clk ,wake 
+:      000925 main_loop:
+0x3019 000926 set0 mark_ext_patch ,mark 
+0x301a 000927 bpatch patch00_3 ,mem_patch00 
+0x301b 000928 call sp_calc_sequence 
+0x301c 000929 call sp_calc_sequence_256 
+0x301d 000930 call publickey_calc 
+0x301e 000931 call le_dispatch 
+0x301f 000932 set0 mark_ext_patch ,mark 
+0x3020 000933 bpatch patch00_4 ,mem_patch00 
+0x3021 000934 call idle_dispatch 
+0x3022 000935 call app_process_idle 
+0x3023 000936 call inquiry_dispatch 
+0x3024 000937 call inquiry_scan_dispatch 
+0x3025 000938 call page_scan_dispatch 
+0x3026 000939 call connection_dispatch 
+0x3027 000940 call lpm_dispatch 
+0x3028 000941 branch main_loop 
+:      000943 connection_dispatch:
+0x3029 000944 call connection_incontext 
+0x302a 000945 rtnmark0 mark_context 
+0x302b 000946 set0 mark_context ,mark 
+0x302c 000947 call context_save 
+0x302d 000948 branch le_disable 
+:      000950 connection_incontext:
+0x302e 000951 set0 mark_ext_patch ,mark 
+0x302f 000952 bpatch patch00_5 ,mem_patch00 
+0x3030 000953 call context_search_insniff 
+0x3031 000954 nbranch connection_nosniff ,zero 
+0x3032 000955 call context_load 
+0x3033 000956 add rega ,coffset_mode ,contr 
+0x3034 000957 ifetch 1 ,contr 
+0x3035 000958 bbit1 mode_le ,le_conn_dispatch 
+0x3036 000959 bbit1 mode_master ,master_dispatch 
+0x3037 000960 branch slave_dispatch 
+:      000961 connection_nosniff:
+0x3038 000962 set0 mark_ext_patch ,mark 
+0x3039 000963 bpatch patch00_6 ,mem_patch00 
+0x303a 000964 call context_get_next 
+0x303b 000965 copy loopcnt ,null 
+0x303c 000966 rtn zero 
+0x303d 000967 call context_load 
+0x303e 000968 fetch 1 ,mem_state 
+0x303f 000969 bbit1 state_inpage ,master_page 
+0x3040 000970 fetch 1 ,mem_mode 
+0x3041 000971 bbit1 mode_master ,master_dispatch 
+0x3042 000972 branch slave_dispatch 
+:      000980 idle_dispatch:
+0x3043 000981 fetch 1 ,mem_hci_cmd 
+0x3044 000982 rtn blank 
+0x3045 000983 beq hci_cmd_inquiry ,idle_inquiry 
+0x3046 000984 beq hci_cmd_inquiry_cancel ,idle_inquiry_cancel 
+0x3047 000985 beq hci_cmd_remote_name_req ,idle_remote_name_req 
+0x3048 000986 beq hci_cmd_create_conn ,idle_create_conn 
+0x3049 000987 beq hci_cmd_le_create_conn ,idle_le_create_conn 
+0x304a 000988 call context_search_conn_handle 
+0x304b 000989 rtn zero 
+0x304c 000990 call context_search_plap 
+0x304d 000991 rtn zero 
+:      000992 idle_exit:
+0x304e 000993 jam 0 ,mem_hci_cmd 
+0x304f 000994 rtn 
+:      000996 idle_le_create_conn:
+0x3050 000997 jam hci_cmd_le_create_conn ,mem_cmd_le_create_conn 
+0x3051 000998 jam 0 ,mem_hci_cmd 
+0x3052 000999 rtn 
+:      001001 idle_inquiry:
+0x3053 001002 set1 mark_inquiry_on ,mark 
+0x3054 001003 set0 mark_inquiry_trainb ,mark 
+0x3055 001004 jam param_ninquiry ,mem_ninqy_index 
+0x3056 001005 jam 31 ,mem_nfreq_index_inq 
+0x3057 001006 branch idle_exit 
+:      001008 idle_inquiry_cancel:
+0x3058 001009 set0 mark_inquiry_on ,mark 
+0x3059 001010 force 0 ,stop_watch 
+0x305a 001011 branch idle_exit 
+:      001013 idle_remote_name_req:
+0x305b 001014 call context_search_plap 
+0x305c 001015 rtn zero 
+0x305d 001016 force lmp_name_req ,temp 
+0x305e 001017 jam 5 ,mem_nameres_cnt 
+0x305f 001018 branch idle_start_page 
+:      001020 idle_create_conn:
+0x3060 001021 set0 mark_ext_patch ,mark 
+0x3061 001022 bpatch patch00_7 ,mem_patch00 
+:      001023 idle_create_conn_device:
+0x3062 001024 fetch 6 ,mem_hci_plap 
+0x3063 001025 branch idle_exit ,blank 
+0x3064 001026 jam reconnect_hid ,memui_reconnect_mode 
+0x3065 001028 jam conn_sm_wait_features_res ,mem_conn_sm 
+0x3066 001029 branch idle_create_conn_cont 
+:      001031 idle_create_conn_cont:
+0x3067 001032 force lmp_version_req ,temp 
+:      001033 idle_start_page:
+0x3068 001034 set0 mark_ext_patch ,mark 
+0x3069 001035 bpatch patch01_0 ,mem_patch01 
+0x306a 001036 fetch 1 ,mem_page_mode 
+0x306b 001037 branch idle_page_mode_r0 ,blank 
+0x306c 001038 lshift3 pdata ,pdata 
+0x306d 001039 lshift4 pdata ,pdata 
+0x306e 001040 increase -1 ,pdata 
+:      001041 idle_page_mode_r0:
+0x306f 001042 store 1 ,mem_npage 
+0x3070 001043 store 1 ,mem_npage_index 
+0x3071 001044 jam 31 ,mem_nfreq_index_page 
+0x3072 001045 set0 mark_page_trainb ,mark 
+0x3073 001046 call context_new 
+0x3074 001047 nbranch idle_page_fail ,zero 
+0x3075 001048 call get_free_amaddr 
+0x3076 001049 store 1 ,mem_amaddr 
+0x3077 001050 storet 1 ,mem_lmo_opcode2 
+0x3078 001051 fetch 6 ,mem_hci_plap 
+0x3079 001052 store 6 ,mem_plap 
+0x307a 001053 set0 mark_ext_patch ,mark 
+0x307b 001054 bpatch patch01_1 ,mem_patch01 
+0x307c 001055 call timer_check 
+0x307d 001056 force 0 ,pdata 
+0x307e 001057 compare lmp_name_req ,temp ,0xff 
+0x307f 001058 nsetflag true ,state_init_seq ,pdata 
+0x3080 001059 set1 state_inpage ,pdata 
+0x3081 001060 store 1 ,mem_state 
+0x3082 001061 jam bt_evt_reconn_started ,mem_fifo_temp 
+0x3083 001062 call ui_ipc_send_event 
+0x3084 001063 force 0 ,pdata 
+0x3085 001064 setflag true ,smap_name_req ,pdata 
+0x3086 001065 store 1 ,mem_state_map 
+0x3087 001066 setarg 0 
+0x3088 001067 set1 mode_master ,pdata 
+0x3089 001068 store 1 ,mem_mode 
+0x308a 001069 enable master 
+0x308b 001070 call context_save 
+0x308c 001071 disable master 
+0x308d 001072 force page_length_timer ,queue 
+0x308e 001073 fetch 2 ,mem_page_to 
+0x308f 001074 call timer_init 
+0x3090 001075 branch idle_exit 
+:      001076 idle_page_fail:
+0x3091 001077 set0 mark_ext_patch ,mark 
+0x3092 001078 bpatch patch01_2 ,mem_patch01 
+0x3093 001079 fetch 6 ,mem_hci_plap 
+0x3094 001080 store 6 ,mem_plap 
+0x3095 001081 compare lmp_name_req ,temp ,0xff 
+0x3096 001082 branch idle_name_fail ,true 
+0x3097 001083 branch idle_exit 
+:      001084 idle_name_fail:
+0x3098 001085 arg mem_tmp_buffer ,contw 
+0x3099 001086 arg 8 ,loopcnt 
+0x309a 001087 call memset0 
+0x309b 001088 jam bt_evt_reconn_failed ,mem_fifo_temp 
+0x309c 001089 call ui_ipc_send_event 
+0x309d 001090 branch idle_exit 
+:      001097 inquiry_dispatch:
+0x309e 001098 rtnmark0 mark_inquiry_on 
+0x309f 001099 force inquiry_length_timer ,queue 
+0x30a0 001100 call timer_check 
+0x30a1 001101 nsetflag blank ,mark_inquiry_on ,mark 
+0x30a2 001102 nbranch inquiry_start ,blank 
+0x30a3 001103 rtn 
+:      001107 inquiry_start:
+0x30a4 001108 set0 mark_ext_patch ,mark 
+0x30a5 001109 bpatch patch01_3 ,mem_patch01 
+0x30a6 001110 fetcht 2 ,mem_inq_window 
+0x30a7 001111 force 4 ,queue 
+0x30a8 001112 call sniff_check_window 
+0x30a9 001113 rtn user 
+0x30aa 001114 call afh_clear 
+0x30ab 001115 force 0 ,freq_mode 
+:      001116 inquiry_restart:
+0x30ac 001117 rtn timeout 
+0x30ad 001118 set0 mark_fhs_already_good ,mark 
+0x30ae 001119 set0 mark_fhs_eir ,mark 
+:      001120 inquiry_rx_restart:
+0x30af 001121 add clkn_bt ,1 ,bt_clk 
+0x30b0 001122 isolate1 mark_inquiry_trainb ,mark 
+0x30b1 001123 setflag true ,2 ,freq_mode 
+0x30b2 001124 compare 0x00 ,bt_clk ,0x02 
+0x30b3 001125 nbranch inquiry_receive ,true 
+:      001127 inquiry_transmit:
+0x30b4 001128 set0 mark_ext_patch ,mark 
+0x30b5 001129 bpatch patch01_4 ,mem_patch01 
+0x30b6 001130 fetch 1 ,mem_inquiry_transmit 
+0x30b7 001131 increase 1 ,pdata 
+0x30b8 001132 store 1 ,mem_inquiry_transmit 
+0x30b9 001133 call fetch_giac 
+0x30ba 001134 call tx_radio_freq 
+0x30bb 001135 call fetch_diac 
+0x30bc 001136 call start_transmitter 
+0x30bd 001137 call start_tx_native 
+0x30be 001138 call send_access_word 
+0x30bf 001139 call end_of_packet 
+0x30c0 001140 call inquiry_check_train 
+0x30c1 001141 branch inquiry_restart 
+:      001143 inquiry_check_train:
+0x30c2 001144 set0 mark_ext_patch ,mark 
+0x30c3 001145 bpatch patch01_5 ,mem_patch01 
+0x30c4 001146 fetch 1 ,mem_nfreq_index_inq 
+0x30c5 001147 increase -1 ,pdata 
+0x30c6 001148 store 1 ,mem_nfreq_index_inq 
+0x30c7 001149 rtn positive 
+0x30c8 001150 jam 31 ,mem_nfreq_index_inq 
+0x30c9 001151 fetch 1 ,mem_ninqy_index 
+0x30ca 001152 increase -1 ,pdata 
+0x30cb 001153 store 1 ,mem_ninqy_index 
+0x30cc 001154 rtn positive 
+0x30cd 001155 setflip mark_inquiry_trainb ,mark 
+0x30ce 001156 jam param_ninquiry ,mem_ninqy_index 
+0x30cf 001157 rtn 
+:      001159 inquiry_receive:
+0x30d0 001160 set0 mark_ext_patch ,mark 
+0x30d1 001161 bpatch patch01_6 ,mem_patch01 
+0x30d2 001162 call fetch_giac 
+0x30d3 001163 call rx_radio_freq 
+0x30d4 001164 call fetch_diac 
+0x30d5 001165 call start_rx_native 
+0x30d6 001166 call start_receiver 
+0x30d7 001167 call wait_access_clkn_rt 
+0x30d8 001168 branch inquiry_sync ,sync 
+0x30d9 001169 call inquiry_check_train 
+0x30da 001170 branch inquiry_rx_restart 
+:      001171 inquiry_sync:
+0x30db 001172 set0 mark_ext_patch ,mark 
+0x30dc 001173 bpatch patch01_7 ,mem_patch01 
+0x30dd 001174 call save_rssi 
+0x30de 001175 call scan_mode_whiten 
+0x30df 001176 call receive_packet_whitened 
+0x30e0 001177 set0 mark_rxbuf_inuse ,mark 
+0x30e1 001178 rtnmark0 mark_fhs_already_good 
+:      001179 inquiry_receive_rtn:
+0x30e2 001180 set0 mark_ext_patch ,mark 
+0x30e3 001181 bpatch patch02_0 ,mem_patch02 
+:      001182 inquiry_receive_eir_rtn:
+0x30e4 001183 fetch 1 ,mem_inquiry_rcv 
+0x30e5 001184 increase 1 ,pdata 
+0x30e6 001185 store 1 ,mem_inquiry_rcv 
+0x30e7 001186 rtn 
+:      001194 master_page:
+0x30e8 001195 set0 mark_ext_patch ,mark 
+0x30e9 001196 bpatch patch02_1 ,mem_patch02 
+0x30ea 001197 enable master 
+0x30eb 001198 enable clknt 
+0x30ec 001199 fetch 2 ,mem_page_interval 
+0x30ed 001200 branch master_page_no_interval ,blank 
+0x30ee 001201 force page_interval_timer ,queue 
+0x30ef 001202 call timer_check 
+0x30f0 001203 nrtn blank 
+:      001204 master_page_no_interval:
+0x30f1 001205 set0 mark_ext_patch ,mark 
+0x30f2 001206 bpatch patch02_2 ,mem_patch02 
+0x30f3 001207 fetcht 2 ,mem_page_window 
+0x30f4 001208 force 40 ,queue 
+0x30f5 001209 call sniff_check_window 
+0x30f6 001210 branch page_exit ,user 
+0x30f7 001211 force page_length_timer ,queue 
+0x30f8 001212 call timer_check 
+0x30f9 001213 nbranch page_start ,blank 
+0x30fa 001214 fetch 1 ,mem_state_map 
+0x30fb 001215 bbit1 smap_name_req ,master_npage_timeout 
+0x30fc 001216 branch master_page_timeout 
+:      001217 master_npage_timeout:
+0x30fd 001218 arg mem_tmp_buffer ,contw 
+0x30fe 001219 arg 8 ,loopcnt 
+0x30ff 001220 call memset0 
+:      001221 master_page_timeout:
+0x3100 001222 set0 mark_ext_patch ,mark 
+0x3101 001223 bpatch patch02_3 ,mem_patch02 
+0x3102 001224 jam 0 ,mem_state 
+0x3103 001225 call init_lmp_work 
+0x3104 001226 jam 0 ,memui_reconnect_mode 
+0x3105 001227 jam bt_evt_reconn_page_timeout ,mem_fifo_temp 
+0x3106 001228 call ui_ipc_send_event 
+0x3107 001229 branch page_exit 
+:      001231 page_start:
+0x3108 001232 set0 mark_ext_patch ,mark 
+0x3109 001233 bpatch patch02_4 ,mem_patch02 
+0x310a 001234 force 0 ,timeup 
+0x310b 001235 until clkn_rt ,meet 
+0x310c 001236 fetch 1 ,mem_page_clk 
+0x310d 001237 increase -1 ,pdata 
+0x310e 001238 ixor clkn_bt ,pdata 
+0x310f 001239 compare 0 ,pdata ,3 
+0x3110 001240 nbranch page_start ,true 
+0x3111 001241 deposit am_addr 
+0x3112 001242 store 1 ,mem_fhs_am_addr 
+0x3113 001243 force 0 ,n_tx_slot 
+0x3114 001244 force 0 ,freq_mode 
+:      001246 page_restart:
+0x3115 001247 set0 mark_ext_patch ,mark 
+0x3116 001248 bpatch patch02_5 ,mem_patch02 
+0x3117 001249 branch page_exit ,timeout 
+0x3118 001250 call fetch_page_bt_adr 
+0x3119 001251 arg param_rf_setup ,timeup 
+0x311a 001252 until clkn_rt ,meet 
+:      001253 page_rx_restart:
+0x311b 001254 set0 mark_ext_patch ,mark 
+0x311c 001255 bpatch patch02_6 ,mem_patch02 
+0x311d 001256 fetch 4 ,mem_page_clk 
+0x311e 001257 iforce bt_clk 
+0x311f 001258 increase 1 ,pdata 
+0x3120 001259 store 4 ,mem_page_clk 
+0x3121 001260 isolate1 mark_page_trainb ,mark 
+0x3122 001261 setflag true ,2 ,freq_mode 
+0x3123 001262 compare 0x00 ,bt_clk ,0x02 
+0x3124 001263 nbranch page_receive ,true 
+0x3125 001264 fetch 1 ,mem_page_transmit 
+0x3126 001265 increase 1 ,pdata 
+0x3127 001266 store 1 ,mem_page_transmit 
+0x3128 001267 call tx_radio_freq 
+0x3129 001268 call start_transmitter 
+0x312a 001269 call start_tx_native 
+0x312b 001270 call send_access_word 
+0x312c 001271 call end_of_packet 
+0x312d 001272 call page_check_train 
+0x312e 001273 branch page_restart 
+:      001274 page_exit:
+0x312f 001275 set0 mark_ext_patch ,mark 
+0x3130 001276 bpatch patch02_7 ,mem_patch02 
+0x3131 001277 disable master 
+0x3132 001278 fetch 2 ,mem_page_interval 
+0x3133 001279 rtn blank 
+0x3134 001280 force page_interval_timer ,queue 
+0x3135 001281 branch timer_init 
+:      001283 page_check_train:
+0x3136 001284 set0 mark_ext_patch ,mark 
+0x3137 001285 bpatch patch03_0 ,mem_patch03 
+0x3138 001286 fetch 1 ,mem_nfreq_index_page 
+0x3139 001287 increase -1 ,pdata 
+0x313a 001288 store 1 ,mem_nfreq_index_page 
+0x313b 001289 rtn positive 
+0x313c 001290 jam 31 ,mem_nfreq_index_page 
+0x313d 001291 fetch 1 ,mem_npage_index 
+0x313e 001292 increase -1 ,pdata 
+0x313f 001293 store 1 ,mem_npage_index 
+0x3140 001294 rtn positive 
+0x3141 001295 setflip mark_page_trainb ,mark 
+0x3142 001296 fetch 1 ,mem_npage 
+0x3143 001297 store 1 ,mem_npage_index 
+0x3144 001298 rtn 
+:      001300 page_receive:
+0x3145 001301 set0 mark_ext_patch ,mark 
+0x3146 001302 bpatch patch03_1 ,mem_patch03 
+0x3147 001303 call rx_radio_freq 
+0x3148 001304 call start_rx_native 
+0x3149 001305 call start_receiver 
+0x314a 001306 call wait_access_clkn_rt 
+0x314b 001307 branch page_sync ,sync 
+0x314c 001308 call page_check_train 
+0x314d 001309 branch page_rx_restart 
+:      001310 page_sync:
+0x314e 001311 call end_of_packet 
+0x314f 001312 fetch 1 ,mem_page_rcv 
+0x3150 001313 increase 1 ,pdata 
+0x3151 001314 store 1 ,mem_page_rcv 
+0x3152 001315 force 0 ,stop_watch 
+0x3153 001316 fetch 4 ,mem_page_clk 
+:      001317 page_send_fhs:
+0x3154 001318 set0 mark_ext_patch ,mark 
+0x3155 001319 bpatch patch03_2 ,mem_patch03 
+0x3156 001320 call rf_setup_time_master_slot 
+0x3157 001321 call fetch_page_bt_adr 
+0x3158 001322 increase 1 ,n_tx_slot 
+:      001323 page_send_fhs_continue:
+0x3159 001324 and_into 0x1fd ,bt_clk 
+0x315a 001325 and_into 0x1fc ,freq_mode 
+0x315b 001326 call tx_radio_freq 
+0x315c 001327 call start_transmitter 
+0x315d 001328 call start_tx_native 
+0x315e 001329 call send_access_word 
+0x315f 001330 deposit clkn_bt 
+0x3160 001331 store 4 ,mem_clkn_bt 
+0x3161 001332 force 0 ,am_addr 
+0x3162 001333 force type_fhs ,type 
+0x3163 001334 call scan_mode_whiten 
+0x3164 001335 call transmit_packet_whitened 
+:      001336 page_wait_fhs_reply:
+0x3165 001337 set0 mark_ext_patch ,mark 
+0x3166 001338 bpatch patch03_3 ,mem_patch03 
+0x3167 001339 call rf_setup_time_slave_slot 
+0x3168 001340 or_into 0x02 ,bt_clk 
+0x3169 001341 and_into 0x1fc ,freq_mode 
+0x316a 001342 call rx_radio_freq 
+0x316b 001343 call start_rx_native 
+0x316c 001344 call start_receiver 
+0x316d 001345 call wait_access_clkn_rt 
+0x316e 001346 call end_of_packet ,sync 
+0x316f 001347 branch page_wait_fhs_reply_ok ,sync 
+0x3170 001348 fetch 1 ,mem_fhs_wait_counter 
+0x3171 001349 branch page_restart ,blank 
+0x3172 001350 increase -1 ,pdata 
+0x3173 001351 store 1 ,mem_fhs_wait_counter 
+0x3174 001352 branch page_send_fhs 
+:      001354 page_wait_fhs_reply_ok:
+0x3175 001355 set0 mark_ext_patch ,mark 
+0x3176 001356 bpatch patch03_4 ,mem_patch03 
+0x3177 001357 fetch 1 ,mem_page_rcv_fhs 
+0x3178 001358 increase 1 ,pdata 
+0x3179 001359 store 1 ,mem_page_rcv_fhs 
+0x317a 001360 call prepare_newconn 
+:      001361 master_newconn_loop:
+0x317b 001362 call master_newconn_once 
+0x317c 001363 branch newconn_poll_responded ,sync 
+0x317d 001364 call new_conn_timeout 
+0x317e 001365 nbranch master_newconn_loop ,blank 
+0x317f 001366 branch page_restart 
+:      001368 newconn_poll_responded:
+0x3180 001369 set0 mark_ext_patch ,mark 
+0x3181 001370 bpatch patch03_5 ,mem_patch03 
+0x3182 001371 fetch 1 ,mem_state 
+0x3183 001372 set0 state_inpage ,pdata 
+0x3184 001373 store 1 ,mem_state 
+0x3185 001374 call newconn_init 
+0x3186 001375 disable master 
+0x3187 001376 rtn 
+:      001379 master_dispatch:
+0x3188 001380 set0 mark_ext_patch ,mark 
+0x3189 001381 bpatch patch03_6 ,mem_patch03 
+0x318a 001382 enable master 
+0x318b 001383 enable clknt 
+0x318c 001384 call role_switch_master 
+0x318d 001385 rtn user 
+0x318e 001386 call check_bt_disabled 
+0x318f 001387 call rf_setup_time_master_slot 
+0x3190 001388 add clkn_bt ,1 ,bt_clk 
+0x3191 001389 call fetch_self_bt_adr 
+0x3192 001390 force 0x03 ,freq_mode 
+0x3193 001391 call scheduler_tx_l2cap_pkt 
+0x3194 001392 call prepare_tx 
+0x3195 001393 call tx_radio_freq 
+0x3196 001394 call start_transmitter 
+0x3197 001395 call start_tx_native 
+0x3198 001396 call send_access_word 
+0x3199 001397 call transmit_packet 
+:      001398 master_loop:
+0x319a 001399 set0 mark_ext_patch ,mark 
+0x319b 001400 bpatch patch03_7 ,mem_patch03 
+0x319c 001401 call parse_lmp 
+0x319d 001402 call master_conn_recv_packet 
+0x319e 001403 nbranch master_notmatch ,match 
+0x319f 001404 call supervision_flush 
+0x31a0 001405 call parse_l2cap 
+0x31a1 001406 fetch 1 ,mem_master_rcvcnt 
+0x31a2 001407 increase 1 ,pdata 
+0x31a3 001408 store 1 ,mem_master_rcvcnt 
+:      001409 master_notmatch:
+0x31a4 001410 set0 mark_ext_patch ,mark 
+0x31a5 001411 bpatch patch04_0 ,mem_patch04 
+0x31a6 001412 call scheduler_process 
+0x31a7 001413 call check_master_disconnect 
+0x31a8 001414 nrtn master 
+0x31a9 001415 call check_attempt 
+0x31aa 001416 nbranch master_attempt ,blank 
+:      001417 master_exit:
+0x31ab 001418 disable master 
+0x31ac 001419 rtn 
+:      001421 master_attempt:
+0x31ad 001422 call prepare_tx 
+0x31ae 001423 call master_conn_send_packet 
+0x31af 001424 branch master_loop 
+:      001427 check_master_disconnect:
+0x31b0 001428 branch check_master_match ,match 
+0x31b1 001429 call supervision_update 
+0x31b2 001430 branch master_disconnect ,positive 
+:      001431 check_master_match:
+0x31b3 001432 call check_disconnect_timeout 
+0x31b4 001433 nbranch master_disconnect ,user 
+0x31b5 001434 fetch 1 ,mem_state_map 
+0x31b6 001435 rtnbit0 smap_name_req 
+0x31b7 001436 rtnbit1 smap_name_res 
+0x31b8 001437 fetch 1 ,mem_op 
+0x31b9 001438 rtnbit1 op_disconn 
+0x31ba 001439 call conn_timer_expired 
+0x31bb 001440 nrtn blank 
+0x31bc 001441 fetch 1 ,mem_nameres_cnt 
+0x31bd 001442 increase -1 ,pdata 
+0x31be 001443 store 1 ,mem_nameres_cnt 
+0x31bf 001444 nrtn blank 
+0x31c0 001445 branch lmp_disconnect 
+:      001447 master_disconnect:
+0x31c1 001448 set0 mark_ext_patch ,mark 
+0x31c2 001449 bpatch patch04_1 ,mem_patch04 
+0x31c3 001450 call quit_connection 
+0x31c4 001451 disable master 
+0x31c5 001452 fetch 1 ,mem_state_map 
+0x31c6 001453 bbit1 smap_name_req ,master_name_disconnect 
+0x31c7 001454 rtn 
+:      001456 master_name_disconnect:
+0x31c8 001457 fetch 1 ,mem_state_map 
+0x31c9 001458 rtnbit1 smap_name_res 
+:      001459 master_name_error:
+0x31ca 001460 arg mem_tmp_buffer ,contw 
+0x31cb 001461 arg 8 ,loopcnt 
+0x31cc 001462 branch memset0 
+:      001464 check_disconnect_timeout:
+0x31cd 001465 set0 mark_ext_patch ,mark 
+0x31ce 001466 bpatch patch04_2 ,mem_patch04 
+0x31cf 001467 enable user 
+0x31d0 001468 fetch 1 ,mem_op 
+0x31d1 001469 rtnbit0 op_disconn 
+0x31d2 001470 call conn_timer_expired 
+0x31d3 001471 nrtn blank 
+:      001472 disable_usr:
+0x31d4 001473 disable user 
+0x31d5 001474 rtn 
+:      001476 conn_timer_expired:
+0x31d6 001477 fetch 1 ,mem_conn_timer 
+0x31d7 001478 increase -1 ,pdata 
+0x31d8 001479 store 1 ,mem_conn_timer 
+0x31d9 001480 rtn 
+:      001482 linkkey_ready:
+0x31da 001483 set0 mark_ext_patch ,mark 
+0x31db 001484 bpatch patch04_3 ,mem_patch04 
+0x31dc 001485 fetch 1 ,mem_state 
+0x31dd 001486 bbit1 state_linkkey ,linkkey_set 
+0x31de 001487 fetch 1 ,mem_pairing_auth 
+0x31df 001488 branch linkkey_set ,blank 
+0x31e0 001489 jam defalt_pairing_auth ,mem_pairing_auth 
+0x31e1 001490 jam bt_evt_linkkey_generate ,mem_fifo_temp 
+0x31e2 001491 call ui_ipc_send_event 
+0x31e3 001492 branch linkkey_set 
+:      001493 linkkey_set:
+0x31e4 001494 set0 mark_ext_patch ,mark 
+0x31e5 001495 bpatch patch04_4 ,mem_patch04 
+0x31e6 001496 call context_traverse_linkkey 
+0x31e7 001497 fetch 1 ,mem_state 
+0x31e8 001498 set1 state_linkkey ,pdata 
+0x31e9 001499 store 1 ,mem_state 
+0x31ea 001500 jam 1 ,mem_link_key_exists 
+0x31eb 001501 fetch 1 ,mem_conn_sm 
+0x31ec 001502 bne conn_sm_pairing ,linkkey_set_continue 
+:      001503 linkkey_set_continue:
+0x31ed 001504 rtn 
+:      001506 generate_linkkey_continue:
+0x31ee 001507 jam pairing_auth ,mem_pairing_auth 
+:      001508 clear_linkstate:
+0x31ef 001509 fetch 1 ,mem_state 
+0x31f0 001510 set0 state_linkkey ,pdata 
+0x31f1 001511 store 1 ,mem_state 
+0x31f2 001512 rtn 
+:      001516 role_switch_check:
+0x31f3 001517 set0 mark_ext_patch ,mark 
+0x31f4 001518 bpatch patch04_5 ,mem_patch04 
+0x31f5 001519 disable user 
+0x31f6 001520 fetch 1 ,mem_state 
+0x31f7 001521 rtnbit0 state_insniff 
+0x31f8 001522 fetch 2 ,mem_tsniff 
+0x31f9 001523 nrtn blank 
+0x31fa 001524 fetch 4 ,mem_sniff_anchor 
+0x31fb 001525 branch role_switch_clkn ,clknt 
+0x31fc 001526 isub clke_bt ,pdata 
+0x31fd 001527 branch role_switch_clke 
+:      001528 role_switch_clkn:
+0x31fe 001529 isub clkn_bt ,pdata 
+:      001530 role_switch_clke:
+0x31ff 001531 sub pdata ,4 ,null 
+0x3200 001532 nrtn positive 
+0x3201 001533 fetch 1 ,mem_state 
+0x3202 001534 set0 state_insniff ,pdata 
+0x3203 001535 store 1 ,mem_state 
+0x3204 001536 enable user 
+0x3205 001537 rtn 
+:      001540 role_switch_prepare:
+0x3206 001541 copy pdata ,temp 
+0x3207 001542 set0 mark_ext_patch ,mark 
+0x3208 001543 bpatch patch04_6 ,mem_patch04 
+0x3209 001544 store 4 ,mem_sniff_anchor 
+:      001545 role_switch_prepare0:
+0x320a 001546 jam switch_flag_accept ,mem_switch_flag 
+0x320b 001547 fetch 1 ,mem_state 
+0x320c 001548 set1 state_insniff ,pdata 
+0x320d 001549 store 1 ,mem_state 
+0x320e 001550 force 0 ,pdata 
+0x320f 001551 store 2 ,mem_tsniff 
+0x3210 001552 jam 1 ,mem_sniff_attempt 
+0x3211 001553 jam 0x0 ,mem_sniff_timeout 
+0x3212 001554 jam 0x0 ,mem_current_sniff_timeout 
+0x3213 001555 fetch 4 ,mem_sniff_anchor 
+0x3214 001556 copy clkn_bt ,temp 
+0x3215 001557 isub temp ,pdata 
+0x3216 001558 rshift2 pdata ,pdata 
+0x3217 001559 increase -8 ,pdata 
+0x3218 001560 store 1 ,mem_current_sniff_attempt 
+0x3219 001561 rtn 
+:      001564 role_switch_master:
+0x321a 001565 set0 mark_ext_patch ,mark 
+0x321b 001566 bpatch patch04_7 ,mem_patch04 
+0x321c 001567 call role_switch_check 
+0x321d 001568 nrtn user 
+0x321e 001569 disable user 
+0x321f 001570 jam param_newconnto ,mem_newconnto_counter 
+0x3220 001571 set0 mark_fhs_already_good ,mark 
+:      001572 roles_waitfhs_loop:
+0x3221 001573 call rf_setup_time_master_slot 
+0x3222 001574 call master_recv_packet 
+0x3223 001575 bmark1 mark_fhs_already_good ,roles_replyto_fhs 
+0x3224 001576 call new_conn_timeout 
+0x3225 001577 nbranch roles_waitfhs_loop ,blank 
+:      001578 role_switch_fail_master:
+0x3226 001579 set0 mark_ext_patch ,mark 
+0x3227 001580 bpatch patch05_0 ,mem_patch05 
+0x3228 001581 disable user 
+0x3229 001582 deposit clkn_bt 
+0x322a 001583 store 4 ,mem_next_btclk 
+0x322b 001584 enable clknt 
+0x322c 001585 enable master 
+0x322d 001586 jam bt_evt_switch_fail_master ,mem_fifo_temp 
+0x322e 001587 branch ui_ipc_send_event 
+:      001589 roles_replyto_fhs:
+0x322f 001590 set0 mark_ext_patch ,mark 
+0x3230 001591 bpatch patch05_1 ,mem_patch05 
+0x3231 001592 call rf_setup_time_slave_slot 
+0x3232 001593 call master_send_packet 
+0x3233 001594 disable clknt 
+0x3234 001595 disable master 
+0x3235 001596 call apply_switch_clke 
+0x3236 001597 call prepare_newconn 
+:      001598 roles_newconns_loop:
+0x3237 001599 set0 mark_ext_patch ,mark 
+0x3238 001600 bpatch patch05_2 ,mem_patch05 
+0x3239 001601 call slave_newconn_once 
+0x323a 001602 branch roles_newconns_responded ,match 
+0x323b 001603 call new_conn_timeout 
+0x323c 001604 nbranch roles_newconns_loop ,blank 
+0x323d 001605 branch role_switch_fail_master 
+:      001606 roles_newconns_responded:
+0x323e 001607 fetch 1 ,mem_mode 
+0x323f 001608 set0 mode_master ,pdata 
+0x3240 001609 store 1 ,mem_mode 
+0x3241 001610 call supervision_flush 
+0x3242 001611 call calc_clke_offset 
+0x3243 001612 enable user 
+0x3244 001613 jam bt_evt_switch_success_master ,mem_fifo_temp 
+0x3245 001614 branch ui_ipc_send_event 
+:      001619 context_load:
+0x3246 001620 set0 mark_ext_patch ,mark 
+0x3247 001621 bpatch patch05_3 ,mem_patch05 
+0x3248 001622 set1 mark_context ,mark 
+0x3249 001623 deposit rega 
+0x324a 001624 store 2 ,mem_context_ptr 
+0x324b 001625 force context_size ,loopcnt 
+0x324c 001626 arg mem_le_state ,contw 
+0x324d 001627 add rega ,coffset_mode ,contr 
+0x324e 001628 ifetch 1 ,contr 
+0x324f 001629 copy rega ,contr 
+0x3250 001630 bbit1 mode_le ,memcpy 
+0x3251 001631 arg mem_state ,contw 
+0x3252 001632 call memcpy 
+0x3253 001633 disable attempt 
+0x3254 001634 fetch 1 ,mem_amaddr 
+0x3255 001635 iforce am_addr 
+0x3256 001636 jam 1 ,mem_current_sniff_attempt 
+0x3257 001637 branch context_load_master ,master 
+0x3258 001638 jam 1 ,mem_current_sniff_attempt 
+:      001639 context_load_master:
+0x3259 001640 fetch 1 ,mem_state 
+0x325a 001641 rtnbit0 state_insniff 
+0x325b 001642 fetch 1 ,mem_sniff_attempt 
+0x325c 001643 store 1 ,mem_current_sniff_attempt 
+0x325d 001644 fetch 1 ,mem_sniff_timeout 
+0x325e 001645 store 1 ,mem_current_sniff_timeout 
+0x325f 001646 rtn 
+:      001648 context_save:
+0x3260 001649 set0 mark_ext_patch ,mark 
+0x3261 001650 bpatch patch05_4 ,mem_patch05 
+0x3262 001651 fetch 2 ,mem_context_ptr 
+0x3263 001652 iforce contw 
+0x3264 001653 force context_size ,loopcnt 
+0x3265 001654 arg mem_le_state ,contr 
+0x3266 001655 branch memcpy ,le 
+0x3267 001656 arg mem_state ,contr 
+0x3268 001657 branch memcpy 
+:      001661 context_get_next:
+0x3269 001662 fetch 1 ,mem_context_number 
+0x326a 001663 copy pdata ,loopcnt 
+0x326b 001664 fetcht 1 ,mem_current_context 
+:      001665 context_get_next_loop:
+0x326c 001666 increase 1 ,temp 
+0x326d 001667 compare context_num ,temp ,0xff 
+0x326e 001668 nbranch context_get_next_cont ,true 
+0x326f 001669 arg 0 ,temp 
+:      001670 context_get_next_cont:
+0x3270 001671 storet 1 ,mem_current_context 
+0x3271 001672 mul32 temp ,context_size ,pdata 
+0x3272 001673 arg mem_context ,rega 
+0x3273 001674 iadd rega ,rega 
+0x3274 001675 ifetch 1 ,rega 
+0x3275 001676 bbit1 state_insniff ,context_get_next_sniff 
+0x3276 001677 rtnbit1 state_inconn 
+0x3277 001678 rtnbit1 state_inpage 
+:      001679 context_get_next_sniff:
+0x3278 001680 loop context_get_next_loop 
+0x3279 001681 rtn 
+:      001683 context_new:
+0x327a 001684 set0 mark_ext_patch ,mark 
+0x327b 001685 bpatch patch05_5 ,mem_patch05 
+0x327c 001686 arg context_search_empty ,regc 
+0x327d 001687 call context_search 
+0x327e 001688 nrtn zero 
+0x327f 001689 deposit rega 
+0x3280 001690 store 2 ,mem_context_ptr 
+0x3281 001691 force 0 ,null 
+0x3282 001692 rtn 
+:      001696 context_check_all_wack:
+0x3283 001697 call check_esco_amaddr 
+0x3284 001698 branch context_check_esco_wack ,true 
+0x3285 001699 fetch 2 ,mem_context_ptr 
+0x3286 001700 add pdata ,coffset_arq ,contw 
+0x3287 001701 fetch 1 ,mem_arq 
+0x3288 001702 istore 1 ,contw 
+0x3289 001703 arg context_check_a_wack ,regc 
+0x328a 001704 branch context_search 
+:      001706 context_check_esco_wack:
+0x328b 001707 fetch 1 ,mem_arq 
+0x328c 001708 isolate1 wack ,pdata 
+0x328d 001709 branch context_esco_wack ,true 
+0x328e 001710 force 1 ,null 
+0x328f 001711 rtn 
+:      001712 context_esco_wack:
+0x3290 001713 force 0 ,null 
+0x3291 001714 rtn 
+:      001717 context_check_idle:
+0x3292 001718 arg context_check_inconn ,regc 
+0x3293 001719 branch context_search 
+:      001721 context_traverse_linkkey:
+0x3294 001722 fetcht 2 ,mem_context_ptr 
+0x3295 001723 arg context_traverse_clearkey ,regc 
+0x3296 001724 branch context_search 
+:      001728 context_search_conn_handle:
+0x3297 001729 fetcht 1 ,mem_hci_conn_handle 
+:      001730 context_search_conn_handle2:
+0x3298 001731 arg context_search_handle ,regc 
+0x3299 001732 branch context_search 
+:      001734 context_search_plap:
+0x329a 001735 set0 mark_ext_patch ,mark 
+0x329b 001736 bpatch patch05_6 ,mem_patch05 
+0x329c 001737 fetcht 6 ,mem_hci_plap 
+:      001738 context_search_plap2:
+0x329d 001739 arg context_search_lap ,regc 
+0x329e 001740 branch context_search 
+:      001742 context_search_insniff:
+0x329f 001743 arg context_search_sniff ,regc 
+0x32a0 001744 branch context_search 
+:      001746 context_search_sniff_window:
+0x32a1 001747 arg context_search_window ,regc 
+:      001748 context_search:
+0x32a2 001749 set0 mark_ext_patch ,mark 
+0x32a3 001750 bpatch patch05_7 ,mem_patch05 
+0x32a4 001751 arg mem_context ,rega 
+0x32a5 001752 fetch 1 ,mem_context_number 
+0x32a6 001753 copy pdata ,loopcnt 
+:      001754 context_search_loop:
+0x32a7 001755 ifetch 1 ,rega 
+0x32a8 001756 copy regc ,pc 
+:      001757 context_search_next:
+0x32a9 001758 increase context_size ,rega 
+0x32aa 001759 loop context_search_loop 
+0x32ab 001760 force 1 ,null 
+0x32ac 001761 rtn 
+:      001763 context_search_empty:
+0x32ad 001764 bbit1 state_inconn ,context_search_next 
+0x32ae 001765 bbit1 state_inpage ,context_search_next 
+0x32af 001766 force 0 ,null 
+0x32b0 001767 rtn 
+:      001769 context_search_lap:
+0x32b1 001770 bbit1 state_inpage ,context_search_lap_cont 
+0x32b2 001771 bbit0 state_inconn ,context_search_next 
+:      001772 context_search_lap_cont:
+0x32b3 001773 add rega ,coffset_plap ,contr 
+0x32b4 001774 ifetch 6 ,contr 
+0x32b5 001775 isub temp ,null 
+0x32b6 001776 rtn zero 
+0x32b7 001777 branch context_search_next 
+:      001779 context_search_handle:
+0x32b8 001780 bbit0 state_inconn ,context_search_next 
+0x32b9 001781 add rega ,coffset_conn_handle ,contr 
+0x32ba 001782 ifetch 1 ,contr 
+0x32bb 001783 isub temp ,null 
+0x32bc 001784 rtn zero 
+0x32bd 001785 branch context_search_next 
+:      001787 context_search_sniff:
+0x32be 001788 bbit0 state_insniff ,context_search_next 
+:      001789 context_search_sniff_loop:
+0x32bf 001790 call context_get_anchor 
+0x32c0 001791 call sign_pdata_temp 
+0x32c1 001792 isub temp ,pdata 
+0x32c2 001793 increase 1 ,pdata 
+0x32c3 001794 branch context_search_sniff_miss ,positive 
+0x32c4 001795 copy contr ,regb 
+0x32c5 001796 store 9 ,mem_temp 
+0x32c6 001797 fetch 1 ,mem_le_sc_calc 
+0x32c7 001798 nbranch context_search_sniff_sc ,blank 
+0x32c8 001799 fetch 9 ,mem_temp 
+0x32c9 001800 copy regb ,contr 
+0x32ca 001801 increase 5 ,pdata 
+0x32cb 001802 branch context_search_meet1 
+:      001803 context_search_sniff_sc:
+0x32cc 001804 fetch 9 ,mem_temp 
+0x32cd 001805 copy regb ,contr 
+0x32ce 001806 increase 20 ,pdata 
+:      001807 context_search_meet1:
+0x32cf 001808 nbranch context_search_next ,positive 
+:      001809 context_search_meet:
+0x32d0 001810 copy temp ,bt_clk 
+0x32d1 001811 call context_next_anchor 
+0x32d2 001812 force 0 ,null 
+0x32d3 001813 rtn 
+:      001816 context_search_sniff_miss:
+0x32d4 001817 iforce regb 
+0x32d5 001818 add rega ,coffset_tsniff ,contr 
+0x32d6 001819 ifetch 2 ,contr 
+0x32d7 001820 branch context_search_meet ,blank 
+0x32d8 001821 call context_next_anchor 
+0x32d9 001822 branch context_search_sniff_loop 
+:      001824 sign_pdata_temp:
+0x32da 001825 rshift16 pdata ,timeup 
+0x32db 001826 rshift8 timeup ,timeup 
+0x32dc 001827 branch sign_pdata_temp_p0 ,zero 
+0x32dd 001828 compare 0xf ,timeup ,0xf 
+0x32de 001829 nrtn true 
+0x32df 001830 rshift16 temp ,timeup 
+0x32e0 001831 rshift8 timeup ,timeup 
+0x32e1 001832 nrtn zero 
+0x32e2 001833 set1 28 ,temp 
+0x32e3 001834 rtn 
+:      001835 sign_pdata_temp_p0:
+0x32e4 001836 rshift16 temp ,timeup 
+0x32e5 001837 rshift8 timeup ,timeup 
+0x32e6 001838 compare 0xf ,timeup ,0xf 
+0x32e7 001839 nrtn true 
+0x32e8 001840 set1 28 ,pdata 
+0x32e9 001841 rtn 
+:      001843 context_check_inconn:
+0x32ea 001844 bbit0 state_inconn ,context_search_next 
+0x32eb 001845 force 0 ,null 
+0x32ec 001846 rtn 
+:      001848 context_check_a_wack:
+0x32ed 001849 bbit0 state_inconn ,context_search_next 
+0x32ee 001850 add rega ,coffset_mode ,contr 
+0x32ef 001851 ifetch 1 ,contr 
+0x32f0 001852 bbit1 mode_le ,context_search_next 
+0x32f1 001853 add rega ,coffset_arq ,contr 
+0x32f2 001854 ifetch 1 ,contr 
+0x32f3 001855 bbit0 wack ,context_search_next 
+0x32f4 001856 force 0 ,null 
+0x32f5 001857 rtn 
+:      001859 context_get_anchor:
+0x32f6 001860 add rega ,coffset_mode ,contr 
+0x32f7 001861 ifetcht 1 ,contr 
+0x32f8 001862 deposit clkn_bt 
+0x32f9 001863 isolate1 mode_master ,temp 
+0x32fa 001864 add rega ,coffset_sniff_anchor ,contr 
+0x32fb 001865 ifetcht 4 ,contr 
+0x32fc 001866 rtn true 
+0x32fd 001867 add rega ,coffset_clk_offset ,contr 
+0x32fe 001868 ifetch 6 ,contr 
+0x32ff 001869 call calc_clke2 
+0x3300 001870 deposit clke_bt 
+0x3301 001871 rtn 
+:      001873 context_next_anchor:
+0x3302 001874 add rega ,coffset_tsniff ,contr 
+0x3303 001875 add rega ,coffset_sniff_anchor ,contw 
+0x3304 001876 ifetch 2 ,contr 
+0x3305 001877 iadd temp ,timeup 
+0x3306 001878 deposit timeup 
+0x3307 001879 istore 4 ,contw 
+0x3308 001880 branch le_context_nexthop 
+:      001883 context_search_window:
+0x3309 001884 bbit0 state_insniff ,context_search_next 
+0x330a 001885 call context_get_anchor 
+0x330b 001886 iadd stop_watch ,pdata 
+0x330c 001887 iadd stop_watch ,pdata 
+0x330d 001888 iadd queue ,pdata 
+0x330e 001889 isub temp ,null 
+0x330f 001890 nbranch context_search_next ,positive 
+0x3310 001891 force 0 ,null 
+0x3311 001892 rtn 
+:      001894 context_traverse_clearkey:
+0x3312 001895 bbit0 state_inconn ,context_search_next 
+0x3313 001896 deposit temp 
+0x3314 001897 isub rega ,null 
+0x3315 001898 branch context_search_next ,null 
+0x3316 001899 add rega ,coffset_mode ,contr 
+0x3317 001900 ifetch 1 ,contr 
+0x3318 001901 bbit1 mode_le ,context_search_next 
+0x3319 001902 ifetch 1 ,rega 
+0x331a 001903 set0 state_linkkey ,pdata 
+0x331b 001904 istore 1 ,rega 
+0x331c 001905 branch context_search_next 
+:      001908 master_conn_send_packet:
+0x331d 001909 set0 mark_ext_patch ,mark 
+0x331e 001910 bpatch patch06_0 ,mem_patch06 
+0x331f 001911 call rf_setup_time_master_slot 
+:      001912 master_send_packet:
+0x3320 001913 add clkn_bt ,1 ,bt_clk 
+0x3321 001914 call fetch_self_bt_adr 
+0x3322 001915 force 0x03 ,freq_mode 
+0x3323 001916 call tx_radio_freq 
+0x3324 001917 call start_transmitter 
+0x3325 001918 call start_tx_native 
+0x3326 001919 call send_access_word 
+0x3327 001920 branch transmit_packet 
+:      001922 master_conn_recv_packet:
+0x3328 001923 set0 mark_ext_patch ,mark 
+0x3329 001924 bpatch patch06_1 ,mem_patch06 
+0x332a 001925 call rf_setup_time_slave_slot 
+:      001926 master_recv_packet:
+0x332b 001927 add clkn_bt ,1 ,bt_clk 
+0x332c 001928 call fetch_self_bt_adr 
+0x332d 001929 force 0x03 ,freq_mode 
+0x332e 001930 call rx_radio_freq 
+0x332f 001931 call init_rx_packet_flags 
+0x3330 001932 call prep_crypt 
+0x3331 001933 call start_rx_native 
+0x3332 001934 call start_receiver 
+:      001935 master_rx_conn_finish_packet:
+0x3333 001936 call wait_access_clkn_rt 
+0x3334 001937 nrtn sync 
+0x3335 001938 call save_rssi 
+0x3336 001939 branch receive_packet 
+:      001943 master_newconn_once:
+0x3337 001944 set0 mark_ext_patch ,mark 
+0x3338 001945 bpatch patch06_2 ,mem_patch06 
+0x3339 001946 fetch 1 ,mem_fhs_am_addr 
+0x333a 001947 iforce am_addr 
+0x333b 001948 force type_poll ,type 
+0x333c 001949 call master_conn_send_packet 
+0x333d 001950 branch master_conn_recv_packet 
+:      001961 inquiry_scan_dispatch:
+0x333e 001962 fetch 1 ,mem_scan_mode 
+0x333f 001963 rtnbit0 inq_scan_mode 
+0x3340 001964 force iscan_interval_timer ,queue 
+0x3341 001965 call timer_check 
+0x3342 001966 nrtn blank 
+0x3343 001967 fetcht 2 ,mem_iscan_window 
+0x3344 001968 force 4 ,queue 
+0x3345 001969 call sniff_check_window 
+0x3346 001970 rtn user 
+0x3347 001971 call inquiry_scan_start 
+0x3348 001972 force iscan_interval_timer ,queue 
+0x3349 001973 fetch 2 ,mem_iscan_interval 
+0x334a 001974 nbranch timer_init ,sync 
+0x334b 001975 random pdata 
+0x334c 001976 iand mask3ff ,pdata 
+0x334d 001977 branch timer_init 
+:      001980 inquiry_scan_start:
+0x334e 001981 set0 mark_ext_patch ,mark 
+0x334f 001982 bpatch patch06_3 ,mem_patch06 
+0x3350 001983 jam 0 ,mem_fhs_am_addr 
+0x3351 001984 disable clknt 
+0x3352 001985 disable attempt 
+0x3353 001986 call afh_clear 
+0x3354 001987 and clkn_bt ,0x1fc ,bt_clk 
+0x3355 001988 force 0x01 ,freq_mode 
+0x3356 001989 call fetch_giac 
+0x3357 001990 call rx_radio_freq 
+0x3358 001991 setflip mark_inquiry_state ,mark 
+0x3359 001992 fetch 1 ,mem_inquiryscan_waitcnt 
+0x335a 001993 increase 1 ,pdata 
+0x335b 001994 store 1 ,mem_inquiryscan_waitcnt 
+0x335c 001995 call fetch_diac 
+0x335d 001996 call start_receiver 
+0x335e 001997 call wait_access_forever 
+0x335f 001998 nrtn sync 
+0x3360 001999 set0 mark_ext_patch ,mark 
+0x3361 002000 bpatch patch06_4 ,mem_patch06 
+0x3362 002001 force 0 ,stop_watch 
+0x3363 002002 call shutdown_radio 
+0x3364 002003 fetch 1 ,mem_inquiryscan_rcvcnt 
+0x3365 002004 increase 1 ,pdata 
+0x3366 002005 store 1 ,mem_inquiryscan_rcvcnt 
+0x3367 002006 call fetch_giac 
+0x3368 002007 call rf_setup_time_slave_slot 
+0x3369 002008 or_into 0x002 ,bt_clk 
+0x336a 002009 force 0x01 ,freq_mode 
+0x336b 002010 call tx_radio_freq 
+0x336c 002011 call fetch_diac 
+0x336d 002012 call start_transmitter 
+0x336e 002013 call start_tx_external 
+0x336f 002014 deposit clkn_bt 
+0x3370 002015 store 4 ,mem_clkn_bt 
+0x3371 002016 call send_access_word 
+0x3372 002017 force type_fhs ,type 
+0x3373 002018 force 0 ,am_addr 
+0x3374 002019 call scan_mode_whiten 
+0x3375 002020 call transmit_packet_whitened 
+0x3376 002021 call send_eir 
+0x3377 002022 and_into 0x1fd ,bt_clk 
+0x3378 002023 increase 1 ,n_tx_slot 
+0x3379 002024 rtn 
+:      002026 send_eir:
+0x337a 002027 set0 mark_ext_patch ,mark 
+0x337b 002028 bpatch patch06_5 ,mem_patch06 
+0x337c 002029 fetch 1 ,mem_eir_enable 
+0x337d 002030 rtn blank 
+0x337e 002031 arg mem_eir ,contw 
+0x337f 002032 fetch 1 ,mem_local_name_length 
+0x3380 002033 copy pdata ,loopcnt 
+0x3381 002034 increase 1 ,pdata 
+0x3382 002035 istore 1 ,contw 
+0x3383 002036 copy contw ,temp 
+0x3384 002037 increase 1 ,pdata 
+0x3385 002038 store 2 ,mem_tx_len 
+0x3386 002039 copy temp ,contw 
+0x3387 002040 setarg 0x09 
+0x3388 002041 istore 1 ,contw 
+0x3389 002042 arg mem_local_name ,contr 
+0x338a 002043 call memcpy 
+0x338b 002045 arg mem_all_uuid_128bits ,regc 
+0x338c 002046 arg 4 ,loopcnt 
+0x338d 002047 call get_all_uuid 
+0x338e 002048 arg mem_all_uuid_16bits ,regc 
+0x338f 002049 arg 1 ,loopcnt 
+0x3390 002050 call get_all_uuid 
+0x3391 002052 force type_dm3 ,type 
+0x3392 002053 jam 2 ,mem_tx_lch 
+0x3393 002054 setarg mem_eir 
+0x3394 002055 store 2 ,mem_txptr 
+0x3395 002056 call rf_setup_time_slave_slot 
+0x3396 002057 call tx_radio_freq 
+0x3397 002058 call start_transmitter 
+0x3398 002059 call start_tx_external 
+0x3399 002060 call send_access_word 
+0x339a 002061 call scan_mode_whiten 
+0x339b 002062 call transmit_packet_whitened 
+0x339c 002063 rtn 
+:      002066 get_all_uuid:
+0x339d 002067 copy contw ,temp 
+0x339e 002068 copy regc ,contr 
+0x339f 002069 ifetch 1 ,contr 
+0x33a0 002070 rtn blank 
+:      002071 lshift_loop:
+0x33a1 002072 lshift pdata ,pdata 
+0x33a2 002073 loop lshift_loop 
+0x33a3 002074 copy pdata ,rega 
+0x33a4 002075 increase 2 ,pdata 
+0x33a5 002076 copy pdata ,queue 
+0x33a6 002077 fetch 2 ,mem_tx_len 
+0x33a7 002078 iadd queue ,pdata 
+0x33a8 002079 store 2 ,mem_tx_len 
+0x33a9 002080 copy temp ,contw 
+0x33aa 002081 copy rega ,pdata 
+0x33ab 002082 increase 1 ,pdata 
+0x33ac 002083 istore 1 ,contw 
+0x33ad 002084 copy regc ,contr 
+0x33ae 002085 ifetch 1 ,contr 
+0x33af 002086 ifetch 1 ,contr 
+0x33b0 002087 istore 1 ,contw 
+0x33b1 002088 copy rega ,loopcnt 
+0x33b2 002089 branch memcpy 
+:      002095 page_scan_dispatch:
+0x33b3 002096 fetch 1 ,mem_scan_mode 
+0x33b4 002097 rtnbit0 page_scan_mode 
+0x33b5 002098 force pscan_interval_timer ,queue 
+0x33b6 002099 call timer_check 
+0x33b7 002100 nrtn blank 
+0x33b8 002101 fetcht 2 ,mem_pscan_window 
+0x33b9 002102 force 40 ,queue 
+0x33ba 002103 call sniff_check_window 
+0x33bb 002104 rtn user 
+0x33bc 002105 force 0 ,am_addr 
+0x33bd 002106 jam param_pagerespto ,mem_fhs_wait_counter 
+0x33be 002107 set0 mark_fhs_already_good ,mark 
+0x33bf 002108 call page_scan_start 
+0x33c0 002109 force pscan_interval_timer ,queue 
+0x33c1 002110 fetch 2 ,mem_pscan_interval 
+0x33c2 002111 branch timer_init 
+:      002114 page_scan_start:
+0x33c3 002115 set0 mark_ext_patch ,mark 
+0x33c4 002116 bpatch patch06_6 ,mem_patch06 
+0x33c5 002117 disable clknt 
+0x33c6 002118 call afh_clear 
+0x33c7 002119 fetch 1 ,mem_pagescan_waitcnt 
+0x33c8 002120 increase 1 ,pdata 
+0x33c9 002121 store 1 ,mem_pagescan_waitcnt 
+0x33ca 002122 force 0 ,n_tx_slot 
+0x33cb 002123 call fetch_self_bt_adr 
+0x33cc 002124 add clkn_bt ,1 ,bt_clk 
+0x33cd 002125 force 0x02 ,freq_mode 
+0x33ce 002126 set0 mark_ext_patch ,mark 
+0x33cf 002127 bpatch patch06_7 ,mem_patch06 
+0x33d0 002128 call rx_radio_freq 
+0x33d1 002129 call start_receiver 
+0x33d2 002130 call wait_access_forever 
+0x33d3 002131 nrtn sync 
+0x33d4 002132 call shutdown_radio 
+0x33d5 002133 fetch 1 ,mem_pagescan_rcvcnt 
+0x33d6 002134 increase 1 ,pdata 
+0x33d7 002135 store 1 ,mem_pagescan_rcvcnt 
+0x33d8 002136 force 0 ,stop_watch 
+0x33d9 002137 call rf_setup_time_slave_slot 
+0x33da 002138 or_into 0x002 ,bt_clk 
+0x33db 002139 force 0x01 ,freq_mode 
+0x33dc 002140 call tx_radio_freq 
+0x33dd 002141 call start_transmitter 
+0x33de 002142 call start_tx_external 
+0x33df 002143 call send_access_word 
+0x33e0 002144 call end_of_packet 
+0x33e1 002145 force 0 ,am_addr 
+0x33e2 002146 arg param_rf_setup ,timeup 
+0x33e3 002147 until clke_rt ,meet 
+0x33e4 002148 or_into 0x03 ,clke_bt 
+0x33e5 002149 and_into 0x1fd ,bt_clk 
+:      002150 page_scan_wait_fhs_restart:
+0x33e6 002151 set0 mark_ext_patch ,mark 
+0x33e7 002152 bpatch patch07_0 ,mem_patch07 
+0x33e8 002153 increase 1 ,n_tx_slot 
+0x33e9 002154 call rx_radio_freq 
+0x33ea 002155 call start_receiver 
+0x33eb 002156 call wait_access_mhalfbnd 
+0x33ec 002157 nbranch page_scan_wait_fhs_again ,sync 
+0x33ed 002158 call scan_mode_whiten 
+0x33ee 002159 call receive_packet_whitened 
+0x33ef 002160 bmark1 mark_fhs_already_good ,page_scan_reply_to_fhs 
+:      002161 page_scan_wait_fhs_again:
+0x33f0 002162 set0 mark_ext_patch ,mark 
+0x33f1 002163 bpatch patch07_1 ,mem_patch07 
+0x33f2 002164 fetch 1 ,mem_fhs_wait_counter 
+0x33f3 002165 rtn blank 
+0x33f4 002166 increase -1 ,pdata 
+0x33f5 002167 store 1 ,mem_fhs_wait_counter 
+0x33f6 002168 call rf_setup_time_master_slot 
+0x33f7 002169 branch page_scan_wait_fhs_restart 
+:      002172 page_scan_reply_to_fhs:
+0x33f8 002173 set0 mark_ext_patch ,mark 
+0x33f9 002174 bpatch patch07_2 ,mem_patch07 
+0x33fa 002175 set0 1 ,clke_bt 
+0x33fb 002176 set1 0 ,clke_bt 
+0x33fc 002177 fetch 1 ,mem_pagescan_rcvfhscnt 
+0x33fd 002178 increase 1 ,pdata 
+0x33fe 002179 store 1 ,mem_pagescan_rcvfhscnt 
+0x33ff 002180 call rf_setup_time_slave_slot 
+0x3400 002181 or_into 0x02 ,bt_clk 
+0x3401 002182 call tx_radio_freq 
+0x3402 002183 call start_transmitter 
+0x3403 002184 call start_tx_external 
+0x3404 002185 call send_access_word 
+0x3405 002186 call end_of_packet 
+:      002187 slave_apply_clke_bt:
+0x3406 002188 compare 0x03 ,clke_bt ,0x03 
+0x3407 002189 branch slave_apply_clke_bt_now ,true 
+0x3408 002190 until null ,mhalfbnd 
+0x3409 002191 branch slave_apply_clke_bt 
+:      002192 slave_apply_clke_bt_now:
+0x340a 002193 fetch 4 ,mem_clke_bt 
+0x340b 002194 or_into 0x03 ,pdata 
+0x340c 002195 icopy clke_bt 
+:      002197 start_slave_connection:
+0x340d 002198 set0 mark_ext_patch ,mark 
+0x340e 002199 bpatch patch07_3 ,mem_patch07 
+0x340f 002200 fetch 6 ,extm_lap 
+0x3410 002201 store 6 ,mem_plap 
+0x3411 002202 call prepare_newconn 
+:      002203 slave_newconn_loop:
+0x3412 002204 call slave_newconn_once 
+0x3413 002205 branch sconn_successful ,match 
+0x3414 002206 call new_conn_timeout 
+0x3415 002207 nbranch slave_newconn_loop ,blank 
+0x3416 002208 rtn 
+:      002211 sconn_successful:
+0x3417 002212 set0 mark_ext_patch ,mark 
+0x3418 002213 bpatch patch07_4 ,mem_patch07 
+0x3419 002214 call newconn_init 
+0x341a 002215 call context_new 
+0x341b 002216 nrtn zero 
+0x341c 002217 jam 0 ,mem_mode 
+0x341d 002218 call calc_clke_offset 
+0x341e 002219 branch context_save 
+:      002222 slave_dispatch:
+0x341f 002223 set0 mark_ext_patch ,mark 
+0x3420 002224 bpatch patch07_5 ,mem_patch07 
+0x3421 002225 call calc_clke 
+0x3422 002226 call role_switch_slave 
+0x3423 002227 rtn user 
+:      002228 slave_loop:
+0x3424 002229 set0 mark_ext_patch ,mark 
+0x3425 002230 bpatch patch07_6 ,mem_patch07 
+0x3426 002231 call check_bt_disabled 
+0x3427 002232 call scheduler_process 
+0x3428 002233 call slave_conn_recv_packet 
+0x3429 002234 nbranch slave_notmatch ,match 
+0x342a 002235 call supervision_flush 
+0x342b 002236 call scheduler_tx_l2cap_pkt 
+0x342c 002237 call prepare_tx 
+0x342d 002238 call slave_conn_send_packet 
+0x342e 002239 call parse_l2cap 
+0x342f 002240 call parse_lmp 
+0x3430 002241 fetch 1 ,mem_slave_rcvcnt 
+0x3431 002242 increase 1 ,pdata 
+0x3432 002243 store 1 ,mem_slave_rcvcnt 
+0x3433 002244 call calc_clke_offset 
+:      002245 slave_notmatch:
+0x3434 002246 set0 mark_ext_patch ,mark 
+0x3435 002247 bpatch patch07_7 ,mem_patch07 
+0x3436 002248 call lpm_set_mult 
+0x3437 002249 call supervision_update 
+0x3438 002250 branch slave_disconnect ,positive 
+0x3439 002251 call check_disconnect_timeout 
+0x343a 002252 nbranch slave_disconnect ,user 
+0x343b 002253 call check_attempt 
+0x343c 002254 nbranch slave_loop ,blank 
+0x343d 002255 rtn 
+:      002257 slave_disconnect:
+0x343e 002258 set0 mark_ext_patch ,mark 
+0x343f 002259 bpatch patch08_0 ,mem_patch08 
+0x3440 002260 jam 0 ,mem_tester_emulate 
+0x3441 002261 jam 0 ,mem_debug_config 
+0x3442 002262 call quit_connection 
+0x3443 002263 set0 mark_testmode ,mark 
+0x3444 002264 call test_enable_white 
+0x3445 002265 fetch 1 ,mem_state 
+0x3446 002266 rtn 
+:      002269 role_switch_slave:
+0x3447 002270 set0 mark_ext_patch ,mark 
+0x3448 002271 bpatch patch08_1 ,mem_patch08 
+0x3449 002272 call role_switch_check 
+0x344a 002273 nrtn user 
+0x344b 002274 copy am_addr ,temp 
+0x344c 002275 call get_free_amaddr 
+0x344d 002276 store 1 ,mem_fhs_am_addr 
+0x344e 002277 copy temp ,am_addr 
+0x344f 002278 jam param_newconnto ,mem_newconnto_counter 
+:      002279 roles_sendfhs_loop:
+0x3450 002280 set0 mark_ext_patch ,mark 
+0x3451 002281 bpatch patch08_2 ,mem_patch08 
+0x3452 002282 call rf_setup_time_master_slot 
+0x3453 002283 force type_fhs ,type 
+0x3454 002284 call slave_send_access 
+0x3455 002285 deposit clkn_bt 
+0x3456 002286 store 4 ,mem_clkn_bt 
+0x3457 002287 call transmit_packet 
+0x3458 002288 call rf_setup_time_slave_slot 
+0x3459 002289 enable user3 
+0x345a 002290 call slave_receive_access 
+0x345b 002291 branch roles_got_fhs_reply ,sync 
+0x345c 002292 call shutdown_radio 
+0x345d 002293 call new_conn_timeout 
+0x345e 002294 nbranch roles_sendfhs_loop ,blank 
+0x345f 002295 rtnmark0 mark_accept_switch 
+0x3460 002296 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x3461 002297 set1 mark_switch_initiated ,mark 
+0x3462 002298 rtn 
+:      002299 roles_got_fhs_reply:
+0x3463 002300 enable clknt 
+0x3464 002301 call prepare_newconn 
+0x3465 002302 call afh_clear 
+:      002303 roles_newconn_loop:
+0x3466 002304 set0 mark_ext_patch ,mark 
+0x3467 002305 bpatch patch08_3 ,mem_patch08 
+0x3468 002306 call master_newconn_once 
+0x3469 002307 branch roles_newconn_responded ,sync 
+0x346a 002308 call new_conn_timeout 
+0x346b 002309 nbranch roles_newconn_loop ,blank 
+0x346c 002310 disable clknt 
+0x346d 002311 deposit clke_bt 
+0x346e 002312 store 4 ,mem_next_btclk 
+0x346f 002313 rtn 
+:      002314 roles_newconn_responded:
+0x3470 002315 enable master 
+0x3471 002316 bmark0 mark_accept_switch ,roles_newconn_nolmp 
+0x3472 002317 set0 mark_accept_switch ,mark 
+0x3473 002318 jam lmp_accepted ,mem_lmo_opcode2 
+0x3474 002319 jam lmp_host_connection_req ,mem_lmi_opcode2 
+0x3475 002320 call tid_set_reply 
+:      002321 roles_newconn_nolmp:
+0x3476 002322 deposit am_addr 
+0x3477 002323 store 1 ,mem_amaddr 
+0x3478 002324 force 0 ,pdata 
+0x3479 002325 store 6 ,mem_clk_offset 
+0x347a 002326 fetch 1 ,mem_mode 
+0x347b 002327 set1 mode_master ,pdata 
+0x347c 002328 store 1 ,mem_mode 
+0x347d 002329 call supervision_flush 
+0x347e 002330 disable master 
+0x347f 002331 enable user 
+0x3480 002332 rtn 
+:      002336 init_rx_packet_flags:
+0x3481 002337 set0 mark_ext_patch ,mark 
+0x3482 002338 bpatch patch08_4 ,mem_patch08 
+0x3483 002339 disable match 
+0x3484 002340 set0 mark_loopback ,mark 
+0x3485 002341 set0 mark_am_addr_broadcast ,mark 
+0x3486 002342 set0 mark_longpacket ,mark 
+0x3487 002343 set0 mark_old_packet ,mark 
+0x3488 002344 fetch 1 ,mem_arq 
+0x3489 002345 set0 arqnx ,pdata 
+0x348a 002346 set1 flowx ,pdata 
+0x348b 002347 store 1 ,mem_arq 
+0x348c 002348 rtn 
+:      002350 prepare_newconn:
+0x348d 002351 set0 mark_ext_patch ,mark 
+0x348e 002352 bpatch patch08_5 ,mem_patch08 
+0x348f 002353 jam param_newconnto ,mem_newconnto_counter 
+0x3490 002354 jam param_newconn_arq ,mem_arq 
+0x3491 002355 fetch 2 ,mem_rx_window_init 
+0x3492 002356 store 2 ,mem_rx_window 
+0x3493 002357 deposit clkn_bt 
+0x3494 002358 store 4 ,mem_next_btclk 
+0x3495 002359 rtn clknt 
+0x3496 002360 deposit clke_bt 
+0x3497 002361 store 4 ,mem_next_btclk 
+0x3498 002362 rtn 
+:      002364 newconn_init:
+0x3499 002365 set0 mark_ext_patch ,mark 
+0x349a 002366 bpatch patch08_6 ,mem_patch08 
+0x349b 002367 call init_lmp_reinit 
+0x349c 002368 call new_conn_handle 
+0x349d 002369 store 1 ,mem_conn_handle 
+0x349e 002370 setarg 0 
+0x349f 002371 store 2 ,mem_l2cap_rxbuff1_len 
+0x34a0 002372 setarg param_supervision_to 
+0x34a1 002373 store 2 ,mem_supervision_to 
+0x34a2 002374 fetch 1 ,mem_state 
+0x34a3 002375 set1 state_inconn ,pdata 
+0x34a4 002376 store 1 ,mem_state 
+0x34a5 002377 jam 0 ,mem_op 
+0x34a6 002378 jam 0 ,mem_state_map 
+0x34a7 002379 jam 0 ,mem_lpm_current_mult 
+0x34a8 002380 branch supervision_flush 
+:      002383 clear_linkkey:
+0x34a9 002384 set0 mark_ext_patch ,mark 
+0x34aa 002385 bpatch patch08_7 ,mem_patch08 
+0x34ab 002386 force 0 ,pdata 
+0x34ac 002387 store 8 ,mem_link_key 
+0x34ad 002388 istore 8 ,contw 
+0x34ae 002389 call clear_linkstate 
+0x34af 002390 branch context_traverse_linkkey 
+:      002392 new_conn_timeout:
+0x34b0 002393 fetch 1 ,mem_newconnto_counter 
+0x34b1 002394 increase -1 ,pdata 
+0x34b2 002395 store 1 ,mem_newconnto_counter 
+0x34b3 002396 rtn 
+:      002398 new_conn_handle:
+0x34b4 002399 fetch 1 ,mem_handle_num 
+0x34b5 002400 increase 1 ,pdata 
+0x34b6 002401 store 1 ,mem_handle_num 
+0x34b7 002402 rtn 
+:      002405 quit_connection:
+0x34b8 002406 set0 mark_ext_patch ,mark 
+0x34b9 002407 bpatch patch09_0 ,mem_patch09 
+0x34ba 002408 fetch 1 ,mem_hci_cmd 
+0x34bb 002409 beq hci_cmd_remote_name_req ,quit_connection_name 
+0x34bc 002410 fetch 1 ,mem_lmp_to_send 
+0x34bd 002411 bne lmp_name_req ,quit_connection_cont 
+:      002412 quit_connection_name:
+0x34be 002413 call cmd_check_plap 
+0x34bf 002414 nbranch quit_connection_cont ,zero 
+0x34c0 002415 call master_name_error 
+0x34c1 002416 jam 0 ,mem_hci_cmd 
+:      002417 quit_connection_cont:
+0x34c2 002418 set0 mark_ext_patch ,mark 
+0x34c3 002419 bpatch patch09_1 ,mem_patch09 
+0x34c4 002420 call app_disconn_reason_collect_bt 
+0x34c5 002421 call sniff_exit 
+0x34c6 002422 jam bt_evt_bb_disconnected ,mem_fifo_temp 
+0x34c7 002423 call ui_ipc_send_event 
+0x34c8 002424 call init_lmp_work 
+0x34c9 002425 call l2cap_init_work 
+0x34ca 002426 call sp_initialize 
+0x34cb 002427 fetch 1 ,mem_state 
+0x34cc 002428 set0 state_inconn 
+0x34cd 002429 store 1 ,mem_state 
+0x34ce 002430 jam 0 ,memui_reconnect_mode 
+0x34cf 002432 fetch 1 ,mem_state_map 
+0x34d0 002433 compare 0x0 ,pdata ,0xc0 
+0x34d1 002434 branch quit_connection_not_clear_mark ,true 
+0x34d2 002435 set0 mark_rxbuf_inuse ,mark 
+:      002436 quit_connection_not_clear_mark:
+0x34d3 002437 fetch 1 ,mem_arq 
+0x34d4 002438 bbit0 wack ,quit_connection_not_clear_tx 
+:      002439 quit_connection_not_clear_tx:
+0x34d5 002440 fetch 1 ,mem_op 
+0x34d6 002441 rtnbit0 op_txl2cap 
+0x34d7 002442 set0 mark_tx_l2cap ,mark 
+0x34d8 002443 rtn 
+:      002445 slave_newconn_once:
+0x34d9 002446 set0 mark_ext_patch ,mark 
+0x34da 002447 bpatch patch09_2 ,mem_patch09 
+0x34db 002448 fetch 1 ,extm_newconn_am_addr 
+0x34dc 002449 rtn blank 
+0x34dd 002450 icopy am_addr 
+0x34de 002451 call slave_conn_recv_packet 
+0x34df 002452 nrtn match 
+0x34e0 002453 force type_null ,type 
+0x34e1 002454 call slave_conn_send_packet 
+0x34e2 002455 deposit am_addr 
+0x34e3 002456 store 1 ,mem_amaddr 
+0x34e4 002457 force 0 ,pdata 
+0x34e5 002458 store 1 ,extm_newconn_am_addr 
+0x34e6 002459 rtn 
+:      002465 prepare_tx:
+0x34e7 002466 set0 mark_ext_patch ,mark 
+0x34e8 002467 bpatch patch09_3 ,mem_patch09 
+0x34e9 002468 fetch 1 ,mem_state 
+0x34ea 002469 bbit0 state_insco ,prepare_tx_not_sco 
+0x34eb 002470 force type_hv3 ,type 
+0x34ec 002471 bmark0 mark_esco ,prepare_tx_not_esco 
+0x34ed 002472 call check_esco_amaddr 
+0x34ee 002473 nbranch prepare_tx_not_sco ,true 
+0x34ef 002474 branch prepare_tx_not_sco ,attempt 
+0x34f0 002475 call set_wait_ack 
+0x34f1 002476 setarg 2 
+0x34f2 002477 store 2 ,mem_retransmission_cnt 
+0x34f3 002478 rtn 
+:      002479 prepare_tx_not_esco:
+0x34f4 002480 nrtn attempt 
+:      002481 prepare_tx_not_sco:
+0x34f5 002482 set0 mark_ext_patch ,mark 
+0x34f6 002483 bpatch patch09_4 ,mem_patch09 
+0x34f7 002484 call context_check_all_wack 
+0x34f8 002485 nbranch prepare_tx_no_retransmit ,zero 
+0x34f9 002486 fetch 1 ,mem_arq 
+0x34fa 002487 bbit0 wack ,prepare_tx_pollnull 
+:      002488 prepare_tx_retransmit:
+0x34fb 002489 bmark1 mark_loopback ,prepare_tx_loopback 
+0x34fc 002490 fetch 1 ,mem_debug_config 
+0x34fd 002491 bbit1 debug_tx_pattern ,prepare_tx_txpat 
+0x34fe 002492 fetch 2 ,mem_retransmission_cnt 
+0x34ff 002493 increase -1 ,pdata 
+0x3500 002494 store 2 ,mem_retransmission_cnt 
+0x3501 002495 branch prepare_tx_nomore_retransmit ,blank 
+0x3502 002496 fetch 1 ,mem_last_type 
+0x3503 002497 iforce type 
+0x3504 002498 rtn 
+:      002500 prepare_tx_nomore_retransmit:
+0x3505 002501 set0 mark_ext_patch ,mark 
+0x3506 002502 bpatch patch09_5 ,mem_patch09 
+0x3507 002503 call clear_got_tx 
+:      002504 prepare_tx_no_retransmit:
+0x3508 002505 call check_esco_amaddr 
+0x3509 002506 branch prepare_tx_pollnull ,true 
+0x350a 002507 call send_lmp 
+0x350b 002508 branch prepare_tx_sendlmp ,user 
+0x350c 002509 fetch 1 ,mem_op 
+0x350d 002510 bbit1 op_txl2cap ,prepare_tx_sendl2cap 
+0x350e 002511 bmark1 mark_loopback ,prepare_tx_loopback 
+0x350f 002512 fetch 1 ,mem_debug_config 
+0x3510 002513 bbit1 debug_tx_pattern ,prepare_tx_txpat 
+:      002514 prepare_tx_pollnull:
+0x3511 002515 force type_poll ,type 
+0x3512 002516 rtn master 
+0x3513 002517 force type_null ,type 
+0x3514 002518 rtn 
+:      002519 prepare_tx_loopback:
+0x3515 002520 set0 mark_ext_patch ,mark 
+0x3516 002521 bpatch patch09_6 ,mem_patch09 
+0x3517 002522 fetch 1 ,mem_rx_type 
+0x3518 002523 iforce type 
+0x3519 002524 rtnne 1 
+0x351a 002525 force type_null ,type 
+0x351b 002526 rtn 
+:      002527 prepare_tx_txpat:
+0x351c 002528 fetch 1 ,test_mode_packet_type 
+0x351d 002529 and pdata ,0xf ,type 
+0x351e 002530 set1 mark_loopback ,mark 
+0x351f 002531 rtn 
+:      002532 prepare_tx_sendlmp:
+0x3520 002533 force type_lmp ,type 
+0x3521 002534 branch set_wait_ack 
+:      002535 prepare_tx_sendl2cap:
+0x3522 002536 call tx_l2cap_type 
+:      002538 set_wait_ack:
+0x3523 002539 set0 mark_ext_patch ,mark 
+0x3524 002540 bpatch patch09_7 ,mem_patch09 
+0x3525 002541 fetcht 1 ,mem_arq 
+0x3526 002542 set1 wack ,temp 
+0x3527 002543 storet 1 ,mem_arq 
+0x3528 002544 deposit type 
+0x3529 002545 store 1 ,mem_last_type 
+0x352a 002546 setarg 0xffff 
+0x352b 002547 store 2 ,mem_retransmission_cnt 
+0x352c 002548 rtn 
+:      002550 tx_l2cap_type:
+0x352d 002551 set0 mark_ext_patch ,mark 
+0x352e 002552 bpatch patch0a_0 ,mem_patch0a 
+0x352f 002553 fetch 1 ,mem_state_map 
+0x3530 002554 isolate1 smap_edr ,pdata 
+0x3531 002555 fetch 2 ,mem_tx_len 
+0x3532 002556 branch tx_l2cap_type_edr ,true 
+0x3533 002557 force type_dm1 ,type 
+0x3534 002558 sub pdata ,17 ,null 
+0x3535 002559 rtn positive 
+0x3536 002560 force type_dh1 ,type 
+0x3537 002561 sub pdata ,27 ,null 
+0x3538 002562 rtn positive 
+0x3539 002563 force type_dm3 ,type 
+0x353a 002564 sub pdata ,121 ,null 
+0x353b 002565 rtn positive 
+0x353c 002566 force type_dh3 ,type 
+0x353d 002567 sub pdata ,183 ,null 
+0x353e 002568 rtn positive 
+0x353f 002569 force type_dm5 ,type 
+0x3540 002570 sub pdata ,224 ,null 
+0x3541 002571 rtn positive 
+0x3542 002572 force type_dh5 ,type 
+0x3543 002573 rtn 
+:      002574 tx_l2cap_type_edr:
+0x3544 002575 force type_dm1 ,type 
+0x3545 002576 sub pdata ,17 ,null 
+0x3546 002577 rtn positive 
+0x3547 002578 force type_dh1 ,type 
+0x3548 002579 sub pdata ,54 ,null 
+0x3549 002580 rtn positive 
+0x354a 002581 force type_dm3 ,type 
+0x354b 002582 arg 367 ,temp 
+0x354c 002583 isub temp ,null 
+0x354d 002584 nrtn positive 
+0x354e 002585 force type_dm5 ,type 
+0x354f 002586 arg 679 ,temp 
+0x3550 002587 isub temp ,null 
+0x3551 002588 nrtn positive 
+0x3552 002589 force type_dh5 ,type 
+0x3553 002590 rtn 
+:      002599 slave_receive_master_slot:
+0x3554 002600 fetch 1 ,mem_state 
+0x3555 002601 bbit0 state_insniff ,slave_receive_notsniff 
+0x3556 002602 fetch 2 ,mem_tsniff 
+0x3557 002603 branch slave_receive_notsniff ,blank 
+0x3558 002604 nbranch slave_receive_sniff ,attempt 
+:      002605 slave_receive_notsniff:
+0x3559 002606 call rf_setup_time_master_slot 
+:      002607 slave_receive_access:
+0x355a 002608 add clke_bt ,1 ,bt_clk 
+:      002609 slave_receive_sniff:
+0x355b 002610 enable swfine 
+0x355c 002611 fetch 2 ,mem_rx_window 
+0x355d 002612 rshift pdata ,pdata 
+0x355e 002613 arg param_pll_setup ,temp 
+0x355f 002614 iadd temp ,pdata 
+0x3560 002615 call ahead_window 
+0x3561 002616 call fetch_extm_bt_adr 
+0x3562 002617 force 0x03 ,freq_mode 
+0x3563 002618 call rx_radio_freq 
+0x3564 002619 call init_rx_packet_flags 
+0x3565 002620 call prep_crypt 
+0x3566 002621 set0 mark_ext_patch ,mark 
+0x3567 002622 bpatch patch0a_1 ,mem_patch0a 
+0x3568 002623 fetch 2 ,mem_rx_window 
+0x3569 002624 rshift pdata ,pdata 
+0x356a 002625 call ahead_window 
+0x356b 002626 call start_receiver 
+0x356c 002627 enable decode_fec0 
+0x356d 002628 fetch 2 ,mem_rx_window 
+0x356e 002629 arg param_clke_cal ,temp 
+0x356f 002630 iadd temp ,stop_watch 
+0x3570 002631 correlate null ,timeout 
+0x3571 002632 copy clke ,temp 
+0x3572 002633 storet 6 ,mem_sync_clke 
+0x3573 002634 disable decode_fec0 
+0x3574 002635 nrtn sync 
+0x3575 002636 arg param_clke_cal ,clke_rt 
+0x3576 002637 copy bt_clk ,clke_bt 
+0x3577 002638 branch lpm_adjust_clk ,wake 
+0x3578 002639 rtn 
+:      002642 slave_conn_recv_packet:
+0x3579 002643 set0 mark_ext_patch ,mark 
+0x357a 002644 bpatch patch0a_2 ,mem_patch0a 
+0x357b 002645 call slave_receive_master_slot 
+0x357c 002646 nbranch shutdown_radio ,sync 
+0x357d 002647 call save_rssi 
+0x357e 002648 bmark0 mark_testmode ,receive_packet 
+0x357f 002649 fetch 2 ,mem_tst_pktcnt_sync 
+0x3580 002650 increase 1 ,pdata 
+0x3581 002651 store 2 ,mem_tst_pktcnt_sync 
+:      002652 receive_packet:
+0x3582 002653 rshift bt_clk ,temp 
+0x3583 002654 or temp ,0x40 ,white_init 
+:      002655 receive_packet_whitened:
+0x3584 002656 set0 mark_ext_patch ,mark 
+0x3585 002657 bpatch patch0a_3 ,mem_patch0a 
+0x3586 002658 enable enable_white 
+0x3587 002659 enable enable_hec 
+0x3588 002660 enable decode_fec1 
+0x3589 002661 parse demod ,bucket ,3 
+0x358a 002662 rshift8 pwindow ,pdata 
+0x358b 002663 store 1 ,mem_temp_am_addr 
+0x358c 002664 parse demod ,bucket ,4 
+0x358d 002665 inject bucket ,7 
+0x358e 002666 copy pwindow ,pdata 
+0x358f 002667 store 1 ,mem_rx_type 
+0x3590 002668 parse demod ,bucket ,3 
+0x3591 002669 rshift8 pwindow ,pdata 
+0x3592 002670 store 1 ,mem_temp_arq 
+0x3593 002671 fetch 1 ,mem_rx_type 
+0x3594 002672 sub pdata ,3 ,null 
+0x3595 002673 branch receive_packet_noedr ,positive 
+0x3596 002674 beq 7 ,receive_packet_noedr 
+0x3597 002675 fetch 1 ,mem_state_map 
+0x3598 002676 isolate1 smap_edr ,pdata 
+0x3599 002677 setflag true ,psk ,radio_ctrl 
+:      002678 receive_packet_noedr:
+0x359a 002679 set0 mark_ext_patch ,mark 
+0x359b 002680 bpatch patch0a_4 ,mem_patch0a 
+0x359c 002681 parse demod ,bucket ,8 
+0x359d 002682 disable decode_fec1 
+0x359e 002683 disable enable_hec 
+0x359f 002684 branch error_header ,crc_failed 
+0x35a0 002685 bmark0 mark_testmode ,receive_packet_amchk 
+0x35a1 002686 fetch 2 ,mem_tst_pktcnt_hec 
+0x35a2 002687 increase 1 ,pdata 
+0x35a3 002688 store 2 ,mem_tst_pktcnt_hec 
+:      002689 receive_packet_amchk:
+0x35a4 002690 set0 mark_ext_patch ,mark 
+0x35a5 002691 bpatch patch0a_5 ,mem_patch0a 
+0x35a6 002692 fetch 1 ,mem_temp_am_addr 
+0x35a7 002693 compare 0 ,pdata ,0x07 
+0x35a8 002694 setflag true ,mark_am_addr_broadcast ,mark 
+0x35a9 002695 branch am_addr_ok ,true 
+0x35aa 002696 icompare 0x07 ,am_addr 
+0x35ab 002697 branch am_addr_match ,true 
+0x35ac 002698 bmark0 mark_esco ,end_of_packet 
+0x35ad 002699 fetcht 1 ,mem_saved_amaddr 
+0x35ae 002700 icompare 0x7 ,temp 
+0x35af 002701 nbranch end_of_packet ,true 
+0x35b0 002702 fetch 1 ,mem_arq 
+0x35b1 002703 set0 arqnx ,pdata 
+0x35b2 002704 set1 flowx ,pdata 
+0x35b3 002705 store 1 ,mem_arq 
+:      002706 am_addr_match:
+0x35b4 002707 enable match 
+:      002708 am_addr_ok:
+0x35b5 002709 set0 mark_ext_patch ,mark 
+0x35b6 002710 bpatch patch0a_6 ,mem_patch0a 
+0x35b7 002711 fetch 1 ,mem_rx_type 
+0x35b8 002712 icopy type 
+0x35b9 002713 bmark1 mark_am_addr_broadcast ,arqn_bypass 
+0x35ba 002714 fetcht 1 ,mem_temp_arq 
+0x35bb 002715 fetch 1 ,mem_arq 
+0x35bc 002716 set0 flow ,pdata 
+0x35bd 002717 isolate1 flow ,temp 
+0x35be 002718 setflag true ,flow ,pdata 
+0x35bf 002719 isolate1 arqn ,temp 
+0x35c0 002720 setflag true ,arqn ,pdata 
+0x35c1 002721 store 1 ,mem_arq 
+0x35c2 002722 isolate0 arqn ,temp 
+0x35c3 002723 branch arqn_bypass ,true 
+0x35c4 002724 call clear_got_tx 
+:      002725 arqn_bypass:
+0x35c5 002726 set0 mark_ext_patch ,mark 
+0x35c6 002727 bpatch patch0a_7 ,mem_patch0a 
+0x35c7 002728 arg 0 ,temp 
+0x35c8 002729 call reserve_slot 
+0x35c9 002730 and type ,0xf ,pdata 
+0x35ca 002731 beq type_poll ,process_poll 
+0x35cb 002732 beq type_null ,end_of_packet 
+0x35cc 002733 beq type_fhs ,process_fhs 
+0x35cd 002734 fetcht 1 ,mem_temp_arq 
+0x35ce 002735 fetch 1 ,mem_arq 
+0x35cf 002736 icompare 0x04 ,temp 
+0x35d0 002737 nbranch rx_type_dispatch ,true 
+0x35d1 002738 bmark0 mark_am_addr_broadcast ,failed_seqn 
+0x35d2 002739 bbit0 bcast1 ,rx_type_dispatch 
+:      002740 failed_seqn:
+0x35d3 002741 set1 mark_old_packet ,mark 
+:      002742 rx_type_dispatch:
+0x35d4 002743 set0 mark_ext_patch ,mark 
+0x35d5 002744 bpatch patch0b_0 ,mem_patch0b 
+0x35d6 002745 deposit type 
+0x35d7 002746 beq type_dm1 ,process_dm1 
+0x35d8 002747 beq type_dh1 ,process_dh1 
+0x35d9 002748 beq type_hv3 ,process_hev 
+0x35da 002749 beq type_3dh1 ,process_3dh1 
+0x35db 002750 arg 4 ,temp 
+0x35dc 002751 call reserve_slot 
+0x35dd 002752 beq type_dm3 ,process_dm3 
+0x35de 002753 beq type_dh3 ,process_dh3 
+0x35df 002754 arg 8 ,temp 
+0x35e0 002755 call reserve_slot 
+0x35e1 002756 beq type_dm5 ,process_dm5 
+0x35e2 002757 beq type_dh5 ,process_dh5 
+0x35e3 002758 rtn 
+:      002761 process_hev:
+0x35e4 002762 set0 mark_ext_patch ,mark 
+0x35e5 002763 bpatch patch0b_1 ,mem_patch0b 
+0x35e6 002764 enable decode_fec0 
+0x35e7 002765 enable enable_crc 
+0x35e8 002766 enable encrypt 
+0x35e9 002767 arg mem_sco_ibuf ,contw 
+0x35ea 002768 force 30 ,loopcnt 
+:      002769 process_hev_loop:
+0x35eb 002770 parse demod ,bucket ,8 
+0x35ec 002771 rshift3 pwindow ,pdata 
+0x35ed 002772 istore 1 ,contw 
+0x35ee 002773 loop process_hev_loop 
+0x35ef 002774 bmark0 mark_esco ,end_of_packet 
+0x35f0 002775 parse demod ,bucket ,16 
+0x35f1 002776 nsetflag crc_failed ,mark_esco_rxok ,mark 
+0x35f2 002777 branch error_payload ,crc_failed 
+0x35f3 002778 branch ack_payload 
+:      002781 process_poll:
+0x35f4 002782 branch end_of_packet 
+:      002784 process_dm3:
+:      002785 process_dm5:
+0x35f5 002786 set1 mark_longpacket ,mark 
+:      002787 process_dm1:
+0x35f6 002788 enable decode_fec2 
+0x35f7 002789 branch process_dmh 
+:      002791 process_dh3:
+:      002792 process_dh5:
+0x35f8 002793 set1 mark_longpacket ,mark 
+:      002794 process_3dh1:
+0x35f9 002795 set1 psk3m ,radio_ctrl 
+:      002796 process_dh1:
+0x35fa 002797 enable decode_fec0 
+:      002798 process_dmh:
+0x35fb 002799 set0 mark_ext_patch ,mark 
+0x35fc 002800 bpatch patch0b_2 ,mem_patch0b 
+0x35fd 002801 bmark1 mark_rxbuf_inuse ,end_of_packet 
+0x35fe 002802 isolate0 psk ,radio_ctrl 
+0x35ff 002803 branch process_dmh_noedr ,true 
+0x3600 002804 disable enable_white 
+0x3601 002805 enable decode_fec0 
+0x3602 002806 disable decode_fec2 
+0x3603 002807 add clkn_bt ,2 ,timeup 
+0x3604 002808 correlate clkn_bt ,meet 
+0x3605 002809 nbranch error_payload ,sync 
+0x3606 002810 set1 mark_longpacket ,mark 
+0x3607 002811 enable enable_white 
+:      002812 process_dmh_noedr:
+0x3608 002813 set0 mark_ext_patch ,mark 
+0x3609 002814 bpatch patch0b_3 ,mem_patch0b 
+0x360a 002815 enable encrypt 
+0x360b 002816 enable enable_crc 
+0x360c 002817 parse demod ,bucket ,3 
+0x360d 002818 rshift8 pwindow ,pdata 
+0x360e 002819 store 1 ,mem_lch_code 
+0x360f 002820 parse demod ,bucket ,5 
+0x3610 002821 bmark1 mark_longpacket ,process_dmh_long 
+0x3611 002822 rshift3 pwindow ,loopcnt 
+0x3612 002823 rshift3 loopcnt ,loopcnt 
+0x3613 002824 branch process_dmh_common 
+:      002825 process_dmh_long:
+0x3614 002826 parse demod ,bucket ,5 
+0x3615 002827 rshift pwindow ,loopcnt 
+0x3616 002828 parse demod ,bucket ,3 
+:      002829 process_dmh_common:
+0x3617 002830 set0 mark_ext_patch ,mark 
+0x3618 002831 bpatch patch0b_4 ,mem_patch0b 
+0x3619 002832 deposit loopcnt 
+0x361a 002833 store 2 ,mem_len 
+0x361b 002834 branch process_dmh_data_end ,blank 
+0x361c 002835 isub mask3ff ,null 
+0x361d 002836 branch error_payload ,positive 
+0x361e 002837 set0 mark_ext_patch ,mark 
+0x361f 002838 bpatch patch0b_5 ,mem_patch0b 
+0x3620 002839 set0 mark_fhs_eir ,mark 
+0x3621 002840 fetch 1 ,mem_lch_code 
+0x3622 002841 and_into 0x03 ,pdata 
+0x3623 002842 arg mem_rxbuf ,contw 
+0x3624 002843 beq llid_lmp ,process_lmp 
+0x3625 002844 bmark1 mark_testmode ,process_dmh_data 
+0x3626 002846 fetch 1 ,mem_lch_code 
+0x3627 002847 and_into 0x03 ,pdata 
+0x3628 002848 beq llid_l2cap_start ,process_dmh_data_l2cap_start_pkt 
+0x3629 002849 beq llid_l2cap_cont ,process_dmh_data_l2cap_continue_pkt 
+0x362a 002850 branch error_payload 
+:      002852 process_lmp:
+0x362b 002853 fetch 2 ,mem_len 
+0x362c 002854 sub pdata ,0x70 ,null 
+0x362d 002855 nbranch error_payload ,positive 
+0x362e 002856 bmark1 mark_old_packet ,ack_payload 
+0x362f 002857 branch process_dmh_data 
+:      002860 process_dmh_data_l2cap_start_pkt:
+0x3630 002861 set0 mark_ext_patch ,mark 
+0x3631 002862 bpatch patch0b_6 ,mem_patch0b 
+0x3632 002863 bmark1 mark_old_packet ,ack_payload 
+0x3633 002864 fetch 2 ,mem_len 
+0x3634 002865 arg 0x2e0 ,temp 
+0x3635 002866 isub temp ,null 
+0x3636 002867 branch error_payload ,positive 
+0x3637 002868 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x3638 002869 bbit0 l2cap_inuse_buff1 ,process_dmh_data_into_buff1 
+0x3639 002870 bbit0 l2cap_inuse_buff2 ,process_dmh_data_into_buff2 
+0x363a 002871 branch end_of_packet 
+:      002872 process_dmh_data_into_buff1:
+0x363b 002873 jam 1 ,mem_l2cap_rxbuff_new 
+0x363c 002874 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x363d 002875 bne 0 ,end_of_packet 
+0x363e 002876 arg mem_l2cap_rxbuff1 ,contw 
+0x363f 002877 branch process_dmh_data 
+:      002878 process_dmh_data_into_buff2:
+0x3640 002879 jam 2 ,mem_l2cap_rxbuff_new 
+0x3641 002880 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x3642 002881 bne 0 ,end_of_packet 
+0x3643 002882 arg mem_l2cap_rxbuff2 ,contw 
+0x3644 002883 branch process_dmh_data 
+:      002885 process_dmh_data_l2cap_continue_pkt:
+0x3645 002886 set0 mark_ext_patch ,mark 
+0x3646 002887 bpatch patch0b_7 ,mem_patch0b 
+0x3647 002888 bmark1 mark_old_packet ,ack_payload 
+0x3648 002889 fetch 2 ,mem_len 
+0x3649 002890 arg 0x2e0 ,temp 
+0x364a 002891 isub temp ,null 
+0x364b 002892 branch error_payload ,positive 
+0x364c 002893 fetch 1 ,mem_l2cap_rxbuff_new 
+0x364d 002894 beq 1 ,process_dmh_data_l2cap_continue_pkt1 
+0x364e 002895 beq 2 ,process_dmh_data_l2cap_continue_pkt2 
+0x364f 002896 branch end_of_packet 
+:      002897 process_dmh_data_l2cap_continue_pkt1:
+0x3650 002898 arg mem_l2cap_rxbuff1 ,contw 
+0x3651 002899 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x3652 002900 iadd contw ,contw 
+0x3653 002901 branch process_dmh_data 
+:      002902 process_dmh_data_l2cap_continue_pkt2:
+0x3654 002903 arg mem_l2cap_rxbuff2 ,contw 
+0x3655 002904 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x3656 002905 iadd contw ,contw 
+:      002906 process_dmh_data:
+0x3657 002907 parse demod ,bucket ,8 
+0x3658 002908 rshift3 pwindow ,pdata 
+0x3659 002909 istore 1 ,contw 
+0x365a 002910 loop process_dmh_data 
+:      002911 process_dmh_data_end:
+0x365b 002912 set0 mark_ext_patch ,mark 
+0x365c 002913 bpatch patch0c_0 ,mem_patch0c 
+0x365d 002914 parse demod ,bucket ,16 
+0x365e 002915 branch error_payload_crc ,crc_failed 
+0x365f 002916 fetch 1 ,mem_l2cap_flow_ctrl_flag 
+0x3660 002917 beq l2cap_flow_ctrl_enable ,end_of_packet 
+0x3661 002918 bmark1 mark_testmode ,process_dmh_cont 
+0x3662 002919 bmark1 mark_old_packet ,redundant_payload 
+0x3663 002920 fetch 1 ,mem_lch_code 
+0x3664 002921 compare 3 ,pdata ,3 
+0x3665 002922 branch process_dmh_cont ,true 
+0x3666 002923 fetch 2 ,mem_len 
+0x3667 002924 branch process_dmh_cont ,blank 
+0x3668 002925 set0 mark_ext_patch ,mark 
+0x3669 002926 bpatch patch0c_1 ,mem_patch0c 
+0x366a 002927 fetch 1 ,mem_l2cap_rxbuff_new 
+0x366b 002928 beq 1 ,process_l2cap_pass_crc_buff1 
+0x366c 002929 beq 2 ,process_l2cap_pass_crc_buff2 
+0x366d 002930 branch assert 
+:      002931 process_l2cap_pass_crc_buff1:
+0x366e 002932 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x366f 002933 fetcht 2 ,mem_len 
+0x3670 002934 iadd temp ,pdata 
+0x3671 002935 store 2 ,mem_l2cap_rxbuff1_len 
+0x3672 002936 beq 0 ,assert 
+0x3673 002937 fetcht 2 ,mem_l2cap_rxbuff1 
+0x3674 002938 increase 4 ,temp 
+0x3675 002939 isub temp ,null 
+0x3676 002940 call l2cap_buff1_inuse ,zero 
+0x3677 002941 branch process_dmh_cont 
+:      002942 process_l2cap_pass_crc_buff2:
+0x3678 002943 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x3679 002944 fetcht 2 ,mem_len 
+0x367a 002945 iadd temp ,pdata 
+0x367b 002946 store 2 ,mem_l2cap_rxbuff2_len 
+0x367c 002947 beq 0 ,assert 
+0x367d 002948 fetcht 2 ,mem_l2cap_rxbuff2 
+0x367e 002949 add temp ,4 ,temp 
+0x367f 002950 isub temp ,null 
+0x3680 002951 call l2cap_buff2_inuse ,zero 
+0x3681 002952 branch process_dmh_cont 
+:      002953 process_dmh_cont:
+0x3682 002954 set0 mark_ext_patch ,mark 
+0x3683 002955 bpatch patch0c_2 ,mem_patch0c 
+0x3684 002956 fetcht 1 ,mem_state_map 
+0x3685 002957 fetch 1 ,mem_lch_code 
+0x3686 002958 compare 3 ,pdata ,0x03 
+0x3687 002959 setflag true ,smap_rxlmp ,temp 
+0x3688 002960 nsetflag true ,smap_rxl2cap ,temp 
+0x3689 002961 storet 1 ,mem_state_map 
+0x368a 002962 nbranch process_dmh_cont_rxbuf_not_use ,true 
+0x368b 002963 set1 mark_rxbuf_inuse ,mark 
+:      002964 process_dmh_cont_rxbuf_not_use:
+0x368c 002965 bmark0 mark_testmode ,ack_payload 
+0x368d 002966 isolate1 smap_rxlmp ,temp 
+0x368e 002967 branch ack_payload ,true 
+0x368f 002968 fetch 2 ,mem_tst_pktcnt_crc 
+0x3690 002969 increase 1 ,pdata 
+0x3691 002970 store 2 ,mem_tst_pktcnt_crc 
+0x3692 002971 set1 mark_loopback ,mark 
+0x3693 002972 set0 smap_rxl2cap ,temp 
+0x3694 002973 set0 mark_rxbuf_inuse ,mark 
+0x3695 002974 storet 1 ,mem_state_map 
+:      002975 ack_payload:
+0x3696 002976 set0 mark_ext_patch ,mark 
+0x3697 002977 bpatch patch0c_3 ,mem_patch0c 
+0x3698 002978 fetcht 1 ,mem_temp_arq 
+0x3699 002979 fetch 1 ,mem_arq 
+0x369a 002980 set1 arqnx ,pdata 
+0x369b 002981 isolate1 seqn ,temp 
+0x369c 002982 setflag true ,seqn ,pdata 
+0x369d 002983 isolate1 mark_am_addr_broadcast ,mark 
+0x369e 002984 setflag true ,bcast1 ,pdata 
+0x369f 002985 store 1 ,mem_arq 
+0x36a0 002986 fetch 2 ,mem_len 
+0x36a1 002987 nbranch end_of_packet ,blank 
+0x36a2 002988 fetch 1 ,mem_state_map 
+0x36a3 002989 set0 smap_rxl2cap ,pdata 
+0x36a4 002990 store 1 ,mem_state_map 
+0x36a5 002991 fetch 1 ,mem_lch_code 
+0x36a6 002992 compare 0x01 ,pdata ,0x07 
+0x36a7 002994 branch end_of_packet 
+:      002996 error_header:
+0x36a8 002997 set0 mark_ext_patch ,mark 
+0x36a9 002998 bpatch patch0c_4 ,mem_patch0c 
+0x36aa 002999 disable match 
+0x36ab 003000 fetch 2 ,mem_rx_hec_err 
+0x36ac 003001 increase 1 ,pdata 
+0x36ad 003002 store 2 ,mem_rx_hec_err 
+0x36ae 003003 branch end_of_packet 
+:      003004 error_payload_crc:
+0x36af 003005 fetch 2 ,mem_rx_crc_err 
+0x36b0 003006 increase 1 ,pdata 
+0x36b1 003007 store 2 ,mem_rx_crc_err 
+0x36b2 003008 call discard_pkt 
+0x36b3 003009 bmark0 mark_testmode ,error_payload 
+0x36b4 003010 set1 mark_loopback ,mark 
+:      003011 error_payload:
+0x36b5 003012 branch end_of_packet 
+:      003014 discard_pkt:
+0x36b6 003015 set0 mark_ext_patch ,mark 
+0x36b7 003016 bpatch patch0c_5 ,mem_patch0c 
+0x36b8 003017 fetch 1 ,mem_lch_code 
+0x36b9 003018 compare 3 ,pdata ,0x03 
+0x36ba 003019 nbranch discard_pkt_l2cap ,true 
+:      003020 discard_pkt_lmp:
+0x36bb 003021 fetcht 1 ,mem_state_map 
+0x36bc 003022 set0 smap_rxlmp ,temp 
+0x36bd 003023 storet 1 ,mem_state_map 
+0x36be 003024 rtn 
+:      003025 discard_pkt_l2cap:
+0x36bf 003028 fetcht 1 ,mem_state_map 
+0x36c0 003029 set0 smap_rxl2cap ,temp 
+0x36c1 003030 storet 1 ,mem_state_map 
+0x36c2 003031 branch h4_send_acl_trigger_clear 
+:      003033 redundant_payload:
+0x36c3 003034 fetch 1 ,mem_arq 
+0x36c4 003035 set1 arqnx ,pdata 
+0x36c5 003036 store 1 ,mem_arq 
+:      003037 end_of_packet:
+0x36c6 003038 set0 mark_ext_patch ,mark 
+0x36c7 003039 bpatch patch0c_6 ,mem_patch0c 
+0x36c8 003040 disable encode_fec0 
+0x36c9 003041 disable encode_fec2 
+0x36ca 003042 disable decode_fec0 
+0x36cb 003043 disable decode_fec2 
+0x36cc 003044 disable enable_crc 
+0x36cd 003045 disable encrypt 
+0x36ce 003046 disable enable_white 
+0x36cf 003047 branch shutdown_radio ,is_rx 
+0x36d0 003048 until null ,tx_clear 
+0x36d1 003049 nop 100 
+0x36d2 003050 branch shutdown_radio 
+:      003052 process_fhs:
+0x36d3 003053 set0 mark_ext_patch ,mark 
+0x36d4 003054 bpatch patch0c_7 ,mem_patch0c 
+0x36d5 003055 enable enable_crc 
+0x36d6 003056 enable decode_fec2 
+0x36d7 003057 parse demod ,bucket ,72 
+0x36d8 003058 isolate1 58 ,pdata 
+0x36d9 003059 setflag true ,mark_fhs_eir ,mark 
+0x36da 003060 copy bt_adr ,temp 
+0x36db 003061 ialigned bt_adr 
+0x36dc 003062 ialigned fhs0 
+0x36dd 003063 pulse recalc 
+0x36de 003064 setsect 2 ,0xfffff 
+0x36df 003065 setsect 3 ,0x0ffff 
+0x36e0 003066 nop 32 
+0x36e1 003067 iverify fhs_parity 
+0x36e2 003068 deposit lap 
+0x36e3 003069 store 3 ,extm_lap 
+0x36e4 003070 deposit uap 
+0x36e5 003071 store 1 ,extm_uap 
+0x36e6 003072 copy temp ,bt_adr 
+0x36e7 003073 branch fhs_parity_ok ,true 
+0x36e8 003074 branch error_payload 
+:      003075 fhs_parity_ok:
+0x36e9 003076 set0 mark_ext_patch ,mark 
+0x36ea 003077 bpatch patch0d_0 ,mem_patch0d 
+0x36eb 003078 parse demod ,bucket ,72 
+0x36ec 003079 ialigned fhs1 
+0x36ed 003080 ialigned am_addr 
+0x36ee 003081 ialigned nap 
+0x36ef 003082 ialigned regb 
+0x36f0 003083 force 0 ,pdata 
+0x36f1 003084 parse demod ,bucket ,16 
+0x36f2 003085 branch error_payload ,crc_failed 
+0x36f3 003086 setarg 0x0ffffffc 
+0x36f4 003087 iand regb ,pdata 
+0x36f5 003088 store 4 ,mem_clke_bt 
+0x36f6 003089 deposit fhs_class 
+0x36f7 003090 store 3 ,extm_class 
+0x36f8 003091 deposit fhs_misc 
+0x36f9 003092 store 1 ,extm_fhs_misc 
+0x36fa 003093 deposit am_addr 
+0x36fb 003094 store 1 ,extm_newconn_am_addr 
+0x36fc 003095 deposit nap 
+0x36fd 003096 store 2 ,extm_nap 
+0x36fe 003097 deposit bt_clk 
+0x36ff 003098 inject rxf ,32 
+0x3700 003099 compare type_fhs ,type ,0x0f 
+0x3701 003100 setflag true ,mark_fhs_already_good ,mark 
+0x3702 003101 branch end_of_packet 
+:      003103 clear_got_tx:
+0x3703 003104 set0 mark_ext_patch ,mark 
+0x3704 003105 bpatch patch0d_1 ,mem_patch0d 
+0x3705 003106 fetch 1 ,mem_arq 
+0x3706 003107 rtnbit0 wack 
+0x3707 003108 set0 wack ,pdata 
+0x3708 003109 setflip seqnx ,pdata 
+0x3709 003110 store 1 ,mem_arq 
+0x370a 003111 fetch 1 ,mem_last_type 
+0x370b 003112 beq type_lmp ,clear_got_txlmp 
+0x370c 003113 rtneq type_hv3 
+0x370d 003114 fetch 1 ,mem_op 
+0x370e 003115 rtnbit0 op_txl2cap ,pdata 
+0x370f 003116 set0 op_txl2cap ,pdata 
+0x3710 003117 set1 op_pkt_comp ,pdata 
+0x3711 003118 store 1 ,mem_op 
+0x3712 003119 set0 mark_tx_l2cap ,mark 
+0x3713 003120 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x3714 003121 nrtn blank 
+0x3715 003122 fetch 1 ,mem_op 
+0x3716 003123 set0 op_pkt_comp ,pdata 
+0x3717 003124 store 1 ,mem_op 
+0x3718 003125 branch l2cap_malloc_free 
+:      003127 clear_got_txlmp:
+0x3719 003128 set0 mark_ext_patch ,mark 
+0x371a 003129 bpatch patch0d_2 ,mem_patch0d 
+0x371b 003130 fetch 1 ,mem_lmo_header_opcode 
+0x371c 003131 rshift pdata ,pdata 
+0x371d 003132 beq lmp_start_encryption_req ,start_encryption 
+0x371e 003133 beq lmp_stop_encryption_req ,stop_encryption 
+0x371f 003134 beq lmp_unsniff_req ,sniff_exit 
+0x3720 003135 beq lmp_escape ,clear_lmp_escape 
+0x3721 003136 rtnne lmp_accepted 
+0x3722 003137 fetch 1 ,mem_lmo_payload 
+0x3723 003138 beq lmp_sco_link_req ,sco_link_req_by_slave 
+0x3724 003139 beq lmp_start_encryption_req ,clear_send_setup_complete 
+0x3725 003140 rtn 
+:      003142 clear_lmp_escape:
+0x3726 003143 fetch 1 ,mem_lmo_payload 
+0x3727 003144 set1 7 ,pdata 
+0x3728 003145 rtn 
+:      003146 clear_send_setup_complete:
+0x3729 003147 rtn master 
+0x372a 003148 fetch 1 ,mem_state 
+0x372b 003149 rtnbit1 state_conn_comp 
+0x372c 003150 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x372d 003151 rtn 
+:      003154 sco_link_req_by_slave:
+0x372e 003155 rtn master 
+0x372f 003156 fetch 1 ,mem_mode 
+0x3730 003157 isolate1 send_sco_when_slave ,pdata 
+0x3731 003158 branch clean_mem_mode ,true 
+0x3732 003160 rtn 
+:      003161 clean_mem_mode:
+0x3733 003162 set0 send_sco_when_slave ,pdata 
+0x3734 003163 store 1 ,mem_mode 
+0x3735 003164 rtn 
+:      003166 start_encryption:
+0x3736 003167 set0 mark_ext_patch ,mark 
+0x3737 003168 bpatch patch0d_3 ,mem_patch0d 
+0x3738 003169 fetch 1 ,mem_state_map 
+0x3739 003170 set1 smap_encryption ,pdata 
+0x373a 003171 store 1 ,mem_state_map 
+0x373b 003172 hjam 1 ,core_encrypt 
+0x373c 003173 fetch 1 ,mem_state 
+0x373d 003174 isolate1 state_conn_comp ,pdata 
+0x373e 003175 rtn 
+:      003177 stop_encryption:
+0x373f 003178 set0 mark_ext_patch ,mark 
+0x3740 003179 bpatch patch0d_4 ,mem_patch0d 
+0x3741 003180 fetch 1 ,mem_state_map 
+0x3742 003181 set0 smap_encryption ,pdata 
+0x3743 003182 store 1 ,mem_state_map 
+0x3744 003183 hjam 0 ,core_encrypt 
+0x3745 003184 rtn 
+:      003187 sniff_init:
+0x3746 003188 set0 mark_ext_patch ,mark 
+0x3747 003189 bpatch patch0d_5 ,mem_patch0d 
+0x3748 003190 copy clkn_bt ,pdata 
+0x3749 003191 store 4 ,mem_lpm_delay_after_sniff 
+0x374a 003192 add clkn_bt ,3 ,rega 
+0x374b 003193 branch sniff_init_master ,master 
+0x374c 003194 add clke_bt ,3 ,rega 
+:      003195 sniff_init_master:
+0x374d 003196 fetcht 2 ,mem_tsniff 
+0x374e 003197 deposit rega 
+0x374f 003198 set0 27 ,pdata 
+0x3750 003199 idiv temp 
+0x3751 003200 fetch 2 ,mem_dsniff 
+0x3752 003201 call wait_div_end 
+0x3753 003202 remainder regc 
+0x3754 003203 isub regc ,pdata 
+0x3755 003204 branch sniff_init_nowrap ,positive 
+0x3756 003205 iadd temp ,pdata 
+:      003206 sniff_init_nowrap:
+0x3757 003207 iadd rega ,pdata 
+0x3758 003208 store 4 ,mem_sniff_anchor 
+0x3759 003209 jam switch_flag_init ,mem_switch_flag 
+0x375a 003210 fetch 1 ,mem_state 
+0x375b 003211 set1 state_insniff ,pdata 
+0x375c 003212 store 1 ,mem_state 
+0x375d 003213 fetch 1 ,mem_sniff_attempt 
+0x375e 003214 store 1 ,mem_current_sniff_attempt 
+0x375f 003215 setarg 0 
+0x3760 003216 store 3 ,mem_sniff_rcv 
+0x3761 003217 store 3 ,mem_sniff_lost 
+0x3762 003218 store 1 ,mem_sniff_unint_lost 
+0x3763 003219 jam bt_evt_enter_sniff ,mem_fifo_temp 
+0x3764 003220 call ui_ipc_send_event 
+0x3765 003221 fetch 2 ,mem_rx_window_sniff 
+0x3766 003222 store 2 ,mem_rx_window 
+0x3767 003223 nrtn master 
+0x3768 003224 add am_addr ,-1 ,queue 
+0x3769 003225 rtn 
+:      003227 sniff_exit:
+0x376a 003228 set0 mark_ext_patch ,mark 
+0x376b 003229 bpatch patch0d_6 ,mem_patch0d 
+0x376c 003230 fetch 1 ,mem_state 
+0x376d 003231 rtnbit0 state_insniff 
+0x376e 003232 set0 state_insniff ,pdata 
+0x376f 003233 store 1 ,mem_state 
+0x3770 003234 fetch 2 ,mem_rx_window_init 
+0x3771 003235 store 2 ,mem_rx_window 
+0x3772 003236 disable wake 
+0x3773 003237 jam bt_evt_exit_sniff ,mem_fifo_temp 
+0x3774 003238 branch ui_ipc_send_event 
+:      003241 check_attempt:
+0x3775 003242 set0 mark_ext_patch ,mark 
+0x3776 003243 bpatch patch0d_7 ,mem_patch0d 
+0x3777 003244 enable attempt 
+0x3778 003245 fetch 1 ,mem_state 
+0x3779 003246 bbit1 state_insniff ,check_attempt_sniff 
+0x377a 003247 rtnmark1 mark_testmode 
+0x377b 003248 fetch 1 ,mem_arq 
+0x377c 003249 rtnbit1 wack 
+0x377d 003250 fetch 1 ,mem_lmp_to_send 
+0x377e 003251 nrtn blank 
+0x377f 003252 fetch 1 ,mem_op 
+0x3780 003253 rtnbit1 op_txl2cap 
+:      003254 check_attempt_nomore:
+0x3781 003255 force 0 ,pdata 
+0x3782 003256 rtn 
+:      003258 check_attempt_sniff:
+0x3783 003259 bbit0 state_insco ,check_attempt_not_sco 
+0x3784 003260 fetch 1 ,mem_current_sniff_attempt 
+0x3785 003261 beq 2 ,check_attempt_sniff_restore_sco 
+0x3786 003262 fetch 1 ,mem_arq 
+0x3787 003263 bbit1 wack ,check_attempt_notimeout 
+0x3788 003264 bmark0 mark_esco_rxok ,check_attempt_notimeout 
+:      003265 check_attempt_sniff_restore_sco:
+0x3789 003266 nbranch check_attempt_notimeout ,master 
+0x378a 003267 fetch 1 ,mem_lmp_to_send 
+0x378b 003268 nbranch check_attempt_notimeout ,blank 
+:      003269 check_attempt_sco_master:
+0x378c 003270 fetch 1 ,mem_sco_poll 
+0x378d 003271 increase -1 ,pdata 
+0x378e 003272 store 1 ,mem_sco_poll 
+0x378f 003273 nbranch check_attempt_nomore ,blank 
+0x3790 003274 jam param_sco_poll ,mem_sco_poll 
+0x3791 003275 branch check_attempt_notimeout 
+:      003277 check_attempt_not_sco:
+0x3792 003278 fetch 1 ,mem_current_sniff_attempt 
+0x3793 003279 bne 1 ,check_attempt_notimeout 
+0x3794 003280 fetch 1 ,mem_current_sniff_timeout 
+0x3795 003281 branch check_attempt_notimeout ,blank 
+0x3796 003282 increase -1 ,pdata 
+0x3797 003283 store 1 ,mem_current_sniff_timeout 
+0x3798 003284 fetch 1 ,mem_arq 
+0x3799 003285 rtnbit1 wack 
+0x379a 003286 nrtn match 
+:      003287 check_attempt_notimeout:
+0x379b 003288 fetch 1 ,mem_current_sniff_attempt 
+0x379c 003289 increase -1 ,pdata 
+0x379d 003290 store 1 ,mem_current_sniff_attempt 
+0x379e 003291 rtn 
+:      003294 sniff_check_window:
+0x379f 003295 set0 mark_ext_patch ,mark 
+0x37a0 003296 bpatch patch0e_0 ,mem_patch0e 
+0x37a1 003297 disable swfine 
+0x37a2 003298 copy temp ,stop_watch 
+0x37a3 003299 call context_search_sniff_window 
+0x37a4 003300 disable user 
+0x37a5 003301 nrtn zero 
+0x37a6 003302 force 0 ,stop_watch 
+0x37a7 003303 enable user 
+0x37a8 003304 rtn 
+:      003307 check_esco_amaddr:
+0x37a9 003308 fetch 1 ,mem_esco_addr 
+0x37aa 003309 icompare 0xff ,am_addr 
+0x37ab 003310 rtn 
+:      003313 parse_l2cap:
+0x37ac 003314 set0 mark_ext_patch ,mark 
+0x37ad 003315 bpatch patch0e_1 ,mem_patch0e 
+0x37ae 003316 set0 mark_rxbuf_inuse ,mark 
+:      003317 parse_l2cap_cont:
+0x37af 003318 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+0x37b0 003319 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37b1 003320 rtn blank 
+0x37b2 003321 isolate1 l2cap_inuse_buff1 ,pdata 
+0x37b3 003322 arg mem_l2cap_rxbuff1 ,contr 
+0x37b4 003323 call process_rx_l2cap_pkt ,true 
+0x37b5 003324 set0 mark_ext_patch ,mark 
+0x37b6 003325 bpatch patch0e_2 ,mem_patch0e 
+0x37b7 003326 fetch 1 ,mem_l2cap_rx_done 
+0x37b8 003327 beq l2cap_rx_done ,parse_l2cap_release_buff1 
+0x37b9 003329 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+0x37ba 003330 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37bb 003331 rtnbit0 l2cap_inuse_buff2 
+0x37bc 003332 arg mem_l2cap_rxbuff2 ,contr 
+0x37bd 003333 call process_rx_l2cap_pkt 
+0x37be 003334 fetch 1 ,mem_l2cap_rx_done 
+0x37bf 003335 beq l2cap_rx_done ,parse_l2cap_release_buff2 
+0x37c0 003336 rtn 
+:      003338 parse_l2cap_release_buff1:
+0x37c1 003339 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37c2 003340 set0 l2cap_inuse_buff1 ,pdata 
+0x37c3 003341 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37c4 003342 setarg 0 
+0x37c5 003343 store 2 ,mem_l2cap_rxbuff1_len 
+0x37c6 003344 rtn 
+:      003345 parse_l2cap_release_buff2:
+0x37c7 003346 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37c8 003347 set0 l2cap_inuse_buff2 ,pdata 
+0x37c9 003348 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37ca 003349 setarg 0 
+0x37cb 003350 store 2 ,mem_l2cap_rxbuff2_len 
+0x37cc 003351 rtn 
+:      003353 l2cap_buff1_inuse:
+0x37cd 003354 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37ce 003355 set1 l2cap_inuse_buff1 ,pdata 
+0x37cf 003356 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37d0 003357 rtn 
+:      003359 l2cap_buff2_inuse:
+0x37d1 003360 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x37d2 003361 set1 l2cap_inuse_buff2 ,pdata 
+0x37d3 003362 store 1 ,mem_l2cap_rxbuff_inuse 
+0x37d4 003363 rtn 
+:      003369 slave_send_access:
+0x37d5 003370 set0 mark_ext_patch ,mark 
+0x37d6 003371 bpatch patch0e_3 ,mem_patch0e 
+0x37d7 003372 add clke_bt ,1 ,bt_clk 
+0x37d8 003373 call fetch_extm_bt_adr 
+0x37d9 003374 force 0x03 ,freq_mode 
+0x37da 003375 call tx_radio_freq 
+0x37db 003376 call start_transmitter 
+0x37dc 003377 call start_tx_external 
+0x37dd 003378 branch send_access_word 
+:      003381 slave_conn_send_packet:
+0x37de 003382 set0 mark_ext_patch ,mark 
+0x37df 003383 bpatch patch0e_4 ,mem_patch0e 
+0x37e0 003384 call rf_setup_time_slave_slot 
+0x37e1 003385 deposit clke_bt 
+0x37e2 003386 fetcht 4 ,mem_next_btclk 
+0x37e3 003387 isub temp ,pdata 
+0x37e4 003388 rtnne 1 
+0x37e5 003389 compare type_null ,type ,0x1f 
+0x37e6 003390 nbranch slave_conn_send_access ,true 
+0x37e7 003391 fetch 1 ,mem_rx_type 
+0x37e8 003392 rtn blank 
+:      003393 slave_conn_send_access:
+0x37e9 003394 call slave_send_access 
+0x37ea 003395 compare type_id ,type ,0x1f 
+0x37eb 003396 branch end_of_packet ,true 
+:      003397 transmit_packet:
+0x37ec 003398 rshift bt_clk ,temp 
+0x37ed 003399 or temp ,0x40 ,white_init 
+:      003400 transmit_packet_whitened:
+0x37ee 003401 set0 mark_ext_patch ,mark 
+0x37ef 003402 bpatch patch0e_5 ,mem_patch0e 
+0x37f0 003403 enable enable_white 
+0x37f1 003404 enable enable_hec 
+0x37f2 003405 enable encode_fec1 
+0x37f3 003406 set0 mark_longpacket ,mark 
+0x37f4 003407 deposit am_addr 
+0x37f5 003408 inject mod ,3 
+0x37f6 003409 deposit type 
+0x37f7 003410 inject mod ,4 
+0x37f8 003411 fetch 1 ,mem_arq 
+0x37f9 003412 inject bucket ,4 
+0x37fa 003413 inject mod ,3 
+0x37fb 003414 enable enable_parity 
+0x37fc 003415 inject mod ,8 
+0x37fd 003416 disable encode_fec1 
+0x37fe 003417 disable enable_parity 
+0x37ff 003418 disable enable_hec 
+0x3800 003419 set0 psk3m ,radio_ctrl 
+0x3801 003420 arg 0 ,temp 
+0x3802 003421 call reserve_slot 
+0x3803 003422 set0 mark_ext_patch ,mark 
+0x3804 003423 bpatch patch0e_6 ,mem_patch0e 
+0x3805 003424 and type ,0x1f ,pdata 
+0x3806 003425 beq type_lmp ,transmit_lmp 
+0x3807 003426 beq type_null ,end_of_packet 
+0x3808 003427 beq type_poll ,end_of_packet 
+0x3809 003428 beq type_fhs ,transmit_fhs 
+0x380a 003429 beq type_dm1 ,transmit_dm1 
+0x380b 003430 beq type_dh1 ,transmit_dh1 
+0x380c 003431 beq type_hv3 ,transmit_hev 
+0x380d 003432 beq type_3dh1 ,transmit_3dh1 
+0x380e 003433 arg 4 ,temp 
+0x380f 003434 call reserve_slot 
+0x3810 003435 beq type_dm3 ,transmit_dm3 
+0x3811 003436 beq type_dh3 ,transmit_dh3 
+0x3812 003437 arg 8 ,temp 
+0x3813 003438 call reserve_slot 
+0x3814 003439 beq type_dh5 ,transmit_dh5 
+0x3815 003440 branch transmit_dm5 
+:      003443 transmit_hev:
+0x3816 003444 set0 mark_ext_patch ,mark 
+0x3817 003445 bpatch patch0e_7 ,mem_patch0e 
+0x3818 003446 enable encode_fec0 
+0x3819 003447 enable enable_crc 
+0x381a 003448 enable encrypt 
+0x381b 003449 force 30 ,loopcnt 
+0x381c 003450 arg mem_sco_obuf ,contr 
+:      003451 transmit_ev_loop:
+0x381d 003452 ifetch 1 ,contr 
+0x381e 003453 inject mod ,8 
+0x381f 003454 loop transmit_ev_loop 
+0x3820 003455 bmark1 mark_esco ,transmit_end 
+0x3821 003456 branch end_of_packet 
+:      003458 transmit_fhs:
+0x3822 003459 set0 mark_ext_patch ,mark 
+0x3823 003460 bpatch patch0f_0 ,mem_patch0f 
+0x3824 003461 fetch 1 ,mem_fhs_am_addr 
+0x3825 003462 icopy am_addr 
+0x3826 003463 fetch 1 ,mem_fhs_misc 
+0x3827 003464 icopy fhs_misc 
+0x3828 003465 fetch 3 ,mem_class 
+0x3829 003466 icopy fhs_class 
+0x382a 003467 fetch 2 ,mem_nap 
+0x382b 003468 icopy nap 
+0x382c 003469 enable enable_crc 
+0x382d 003470 enable encode_fec2 
+0x382e 003471 copy bt_adr ,rega 
+0x382f 003472 call fetch_self_bt_adr 
+0x3830 003473 pulse recalc 
+0x3831 003474 nop 32 
+0x3832 003475 copy bt_clk ,timeup 
+0x3833 003476 fetch 4 ,mem_clkn_bt 
+0x3834 003477 icopy bt_clk 
+0x3835 003478 preload fhs0 
+0x3836 003479 set1 58 ,pdata 
+0x3837 003480 inject mod ,72 
+0x3838 003481 preload fhs1 
+0x3839 003482 inject mod ,72 
+0x383a 003483 copy timeup ,bt_clk 
+0x383b 003484 copy rega ,bt_adr 
+0x383c 003485 enable enable_parity 
+0x383d 003486 inject mod ,16 
+0x383e 003487 disable enable_parity 
+0x383f 003488 branch end_of_packet 
+:      003490 transmit_lmp:
+0x3840 003491 set0 mark_ext_patch ,mark 
+0x3841 003492 bpatch patch0f_1 ,mem_patch0f 
+0x3842 003493 enable encrypt 
+0x3843 003494 enable enable_crc 
+0x3844 003495 enable encode_fec2 
+0x3845 003496 fetch 1 ,mem_lmo_header_length 
+0x3846 003497 and pdata ,0x1f8 ,temp 
+0x3847 003498 arg mem_lmo_header_length ,contr 
+0x3848 003499 increase 8 ,temp 
+:      003500 transmit_lmp_loop:
+0x3849 003501 add temp ,-72 ,regc 
+0x384a 003502 nbranch transmit_lmp_finish ,positive 
+0x384b 003503 ifetch 9 ,contr 
+0x384c 003504 inject mod ,72 
+0x384d 003505 copy regc ,temp 
+0x384e 003506 branch transmit_lmp_loop 
+:      003507 transmit_lmp_finish:
+0x384f 003508 ifetch 9 ,contr 
+0x3850 003509 iinject mod ,temp 
+0x3851 003510 branch transmit_end 
+:      003512 transmit_dm1:
+0x3852 003513 enable encode_fec2 
+0x3853 003514 branch transmit_dmh 
+:      003515 transmit_dm3:
+:      003516 transmit_dm5:
+0x3854 003517 enable encode_fec2 
+0x3855 003518 set1 mark_longpacket ,mark 
+0x3856 003519 branch transmit_dmh 
+:      003521 transmit_3dh1:
+0x3857 003522 set1 psk3m ,radio_ctrl 
+:      003523 transmit_dh1:
+0x3858 003524 enable encode_fec0 
+0x3859 003525 branch transmit_dmh 
+:      003527 transmit_dh3:
+:      003528 transmit_dh5:
+0x385a 003529 set1 psk3m ,radio_ctrl 
+0x385b 003530 enable encode_fec0 
+0x385c 003531 set1 mark_longpacket ,mark 
+:      003533 transmit_dmh:
+0x385d 003534 set0 mark_ext_patch ,mark 
+0x385e 003535 bpatch patch0f_2 ,mem_patch0f 
+0x385f 003536 fetch 1 ,mem_state_map 
+0x3860 003537 bbit0 smap_edr ,transmit_noedr 
+0x3861 003538 sub type ,3 ,null 
+0x3862 003539 branch transmit_noedr ,positive 
+0x3863 003540 disable encrypt 
+0x3864 003541 disable encode_fec2 
+0x3865 003542 enable encode_fec0 
+0x3866 003543 disable enable_white 
+0x3867 003544 set1 psk ,radio_ctrl 
+0x3868 003545 isolate1 psk3m ,radio_ctrl 
+0x3869 003546 branch transmit_edr3m ,true 
+0x386a 003547 setarg 0xabeee 
+0x386b 003548 inject mod ,20 
+0x386c 003549 branch transmit_edr_sync_end 
+:      003550 transmit_edr3m:
+0x386d 003551 setarg 0x5faeba 
+0x386e 003552 inject mod ,24 
+0x386f 003553 setarg 0x12 
+0x3870 003554 inject mod ,6 
+:      003555 transmit_edr_sync_end:
+0x3871 003556 enable enable_white 
+0x3872 003557 set1 mark_longpacket ,mark 
+:      003558 transmit_noedr:
+0x3873 003559 enable encrypt 
+0x3874 003560 enable enable_crc 
+0x3875 003561 bmark1 mark_loopback ,transmit_loopback 
+0x3876 003562 fetch 1 ,mem_tx_lch 
+0x3877 003563 inject mod ,3 
+0x3878 003564 fetch 2 ,mem_tx_len 
+0x3879 003565 iforce loopcnt 
+0x387a 003566 bmark1 mark_longpacket ,transmit_long 
+0x387b 003567 inject mod ,5 
+0x387c 003568 branch transmit_stuff 
+:      003569 transmit_long:
+0x387d 003570 inject mod ,13 
+:      003571 transmit_stuff:
+0x387e 003572 deposit loopcnt 
+0x387f 003573 branch transmit_end ,blank 
+0x3880 003574 fetch 2 ,mem_txptr 
+0x3881 003575 iforce contr 
+:      003576 transmit_stuff_loop:
+0x3882 003577 ifetch 1 ,contr 
+0x3883 003578 inject mod ,8 
+0x3884 003579 loop transmit_stuff_loop 
+:      003582 transmit_end:
+0x3885 003583 enable enable_parity 
+0x3886 003584 inject mod ,16 
+0x3887 003585 disable enable_parity 
+0x3888 003586 call set_wait_ack 
+0x3889 003587 fetch 1 ,mem_state_map 
+0x388a 003588 bbit0 smap_edr ,end_of_packet 
+0x388b 003589 force 0 ,pdata 
+0x388c 003590 inject mod ,6 
+0x388d 003591 branch end_of_packet 
+:      003594 transmit_loopback:
+0x388e 003595 set0 mark_ext_patch ,mark 
+0x388f 003596 bpatch patch0f_3 ,mem_patch0f 
+0x3890 003597 bmark1 mark_longpacket ,transmit_loopback_long 
+:      003598 transmit_loopback_short:
+0x3891 003599 fetch 1 ,mem_lch_code 
+0x3892 003600 inject mod ,3 
+0x3893 003601 fetch 1 ,mem_len 
+0x3894 003602 iforce regc 
+0x3895 003603 inject mod ,5 
+0x3896 003604 branch transmit_loopback_cont 
+:      003605 transmit_loopback_long:
+0x3897 003606 fetch 1 ,mem_lch_code 
+0x3898 003607 inject mod ,3 
+0x3899 003608 fetch 2 ,mem_len 
+0x389a 003609 iforce regc 
+0x389b 003610 inject mod ,13 
+:      003611 transmit_loopback_cont:
+0x389c 003612 arg mem_rxbuf ,contr 
+:      003613 transmit_loopback_loop:
+0x389d 003614 copy regc ,null 
+0x389e 003615 branch transmit_loopback_end ,zero 
+0x389f 003616 ifetch 1 ,contr 
+0x38a0 003617 inject mod ,8 
+0x38a1 003618 increase -1 ,regc 
+0x38a2 003619 branch transmit_loopback_loop 
+:      003620 transmit_loopback_end:
+0x38a3 003621 fetch 2 ,mem_tst_pktcnt_dmh 
+0x38a4 003622 increase 1 ,pdata 
+0x38a5 003623 store 2 ,mem_tst_pktcnt_dmh 
+0x38a6 003624 branch transmit_end 
+:      003627 apply_switch_clke:
+0x38a7 003628 fetch 4 ,mem_clke_bt 
+0x38a8 003629 add pdata ,7 ,rega 
+0x38a9 003630 fetch 2 ,mem_slot_offset 
+0x38aa 003631 nbranch apply_switch_nozero ,blank 
+0x38ab 003632 increase -3 ,rega 
+0x38ac 003633 branch apply_switch_wait_loop 
+:      003634 apply_switch_nozero:
+0x38ad 003635 mul32 pdata ,12 ,pdata 
+0x38ae 003636 hfetcht 2 ,core_halfslot 
+0x38af 003637 increase 1 ,temp 
+:      003638 apply_switch_loop:
+0x38b0 003639 isub temp ,pdata 
+0x38b1 003640 nbranch apply_switch_bt ,positive 
+0x38b2 003641 increase -1 ,rega 
+0x38b3 003642 branch apply_switch_loop 
+:      003643 apply_switch_bt:
+0x38b4 003644 sub pdata ,0 ,pdata 
+:      003645 apply_switch_wait_loop:
+0x38b5 003646 until null ,oneslot 
+0x38b6 003647 compare 0 ,clkn_bt ,3 
+0x38b7 003648 nbranch apply_switch_wait_loop ,true 
+0x38b8 003649 iforce clke_rt 
+0x38b9 003650 copy rega ,clke_bt 
+0x38ba 003651 iforce clke_rt 
+0x38bb 003652 rtn 
+:      003655 calc_slot_offset:
+0x38bc 003656 set0 mark_ext_patch ,mark 
+0x38bd 003657 bpatch patch0f_4 ,mem_patch0f 
+0x38be 003658 until null ,halfslot 
+0x38bf 003659 deposit clke 
+0x38c0 003660 iforce contr 
+0x38c1 003661 rshift16 ,pdata ,pdata 
+0x38c2 003662 isub clkn_bt ,loopcnt 
+0x38c3 003663 and_into 3 ,loopcnt 
+0x38c4 003664 nbranch calc_bt_portion ,zero 
+0x38c5 003665 force 0 ,pdata 
+0x38c6 003666 branch calc_skip_bt 
+:      003667 calc_bt_portion:
+0x38c7 003668 arg 3750 ,temp 
+0x38c8 003669 force 0 ,pdata 
+:      003670 calc_slot_offset_loop:
+0x38c9 003671 iadd temp ,pdata 
+0x38ca 003672 loop calc_slot_offset_loop 
+:      003673 calc_skip_bt:
+0x38cb 003674 iadd contr ,pdata 
+0x38cc 003675 div pdata ,12 
+0x38cd 003676 call wait_div_end 
+0x38ce 003677 quotient pdata 
+0x38cf 003678 store 2 ,mem_slot_offset 
+0x38d0 003679 rtn 
+:      003681 calc_clke_offset:
+0x38d1 003682 set0 mark_ext_patch ,mark 
+0x38d2 003683 bpatch patch0f_5 ,mem_patch0f 
+0x38d3 003684 deposit clke 
+0x38d4 003685 copy clkn ,temp 
+0x38d5 003686 isub temp ,null 
+0x38d6 003687 nsetflag positive ,44 ,pdata 
+0x38d7 003688 isub temp ,temp 
+0x38d8 003689 setarg 3750 
+0x38d9 003690 isolate0 15 ,temp 
+0x38da 003691 branch calc_clke_pos ,true 
+0x38db 003692 setarg -61786 
+0x38dc 003693 iadd temp ,temp 
+:      003694 calc_clke_pos:
+0x38dd 003695 storet 6 ,mem_le_clk_offset 
+0x38de 003696 rtn le 
+0x38df 003697 storet 6 ,mem_clk_offset 
+0x38e0 003698 rtn 
+:      003700 calc_clke:
+0x38e1 003701 disable clknt 
+0x38e2 003702 fetch 6 ,mem_le_clk_offset 
+0x38e3 003703 branch calc_clke2 ,le 
+0x38e4 003704 fetch 6 ,mem_clk_offset 
+:      003705 calc_clke2:
+0x38e5 003706 iadd clkn ,alarm 
+0x38e6 003707 increase 10 ,alarm 
+0x38e7 003708 setarg 3750 
+0x38e8 003709 isub alarm ,pdata 
+0x38e9 003710 isolate0 15 ,pdata 
+0x38ea 003711 branch calc_clke_pos_adj ,true 
+0x38eb 003712 setarg 0xf15a 
+0x38ec 003713 iadd alarm ,alarm 
+:      003714 calc_clke_pos2:
+0x38ed 003715 copy alarm ,clke 
+0x38ee 003716 rtn 
+:      003717 calc_clke_pos_adj:
+0x38ef 003718 force 0 ,null 
+0x38f0 003719 branch calc_clke_pos2 
+:      003726 calc_radio_freq:
+0x38f1 003727 set0 mark_ext_patch ,mark 
+0x38f2 003728 bpatch patch0f_6 ,mem_patch0f 
+0x38f3 003729 call set_sync_on 
+0x38f4 003730 copy bt_clk ,pdata 
+0x38f5 003731 and_into 0x180 ,pdata 
+0x38f6 003732 compare 3 ,freq_mode ,0x07 
+0x38f7 003733 nbranch freq_not_connection ,true 
+0x38f8 003734 rshift3 pdata ,pdata 
+0x38f9 003735 iadd freq_index ,pdata 
+0x38fa 003736 branch do_hop_mod_now 
+:      003737 freq_not_connection:
+0x38fb 003738 copy freq_index ,pdata 
+:      003739 do_hop_mod_now:
+0x38fc 003740 div pdata ,79 
+0x38fd 003741 pulse recalc 
+0x38fe 003742 call wait_div_end 
+0x38ff 003743 remainder rega 
+0x3900 003744 add rega ,-40 ,temp 
+0x3901 003745 branch odd_half ,positive 
+0x3902 003746 lshift rega ,temp 
+0x3903 003747 branch freq_result 
+:      003748 odd_half:
+0x3904 003749 lshift temp ,temp 
+0x3905 003750 increase 1 ,temp 
+:      003751 freq_result:
+0x3906 003752 set0 mark_ext_patch ,mark 
+0x3907 003753 bpatch patch0f_7 ,mem_patch0f 
+0x3908 003754 fetch 1 ,mem_mode 
+0x3909 003755 bbit0 afh_change ,afh_process_con 
+:      003756 afh_process_0:
+0x390a 003757 fetch 4 ,mem_afh_instant 
+0x390b 003758 isub bt_clk ,null 
+0x390c 003759 branch afh_process_con ,positive 
+0x390d 003760 call afh_clear 
+0x390e 003761 fetch 1 ,mem_afh_new_mod 
+0x390f 003762 rtn blank 
+0x3910 003763 fetch 1 ,mem_mode 
+0x3911 003764 set1 afh_enable ,pdata 
+0x3912 003765 store 1 ,mem_mode 
+0x3913 003766 fetch 5 ,mem_afh_map_new 
+0x3914 003767 store 5 ,mem_afh_map_lo 
+0x3915 003768 ifetch 5 ,contr 
+0x3916 003769 store 5 ,mem_afh_map_hi 
+0x3917 003770 call afh_process_freq_map 
+:      003771 afh_process_con:
+0x3918 003772 fetch 1 ,mem_mode 
+0x3919 003773 rtnbit0 afh_enable 
+0x391a 003774 isolate1 1 ,bt_clk 
+0x391b 003775 branch afh_same_channel ,true 
+0x391c 003776 rshift3 temp ,rega 
+0x391d 003777 and temp ,7 ,queue 
+0x391e 003778 setarg mem_afh_map_lo 
+0x391f 003779 iadd rega ,rega 
+0x3920 003780 ifetch 1 ,rega 
+0x3921 003781 qisolate0 pdata 
+0x3922 003782 branch afh_process_1 ,true 
+0x3923 003783 deposit temp 
+0x3924 003784 branch afh_process_end 
+:      003785 afh_process_1:
+0x3925 003786 fetch 1 ,mem_afh_used 
+0x3926 003787 iforce regb 
+0x3927 003788 deposit bt_clk 
+0x3928 003789 and_into 0x180 ,pdata 
+0x3929 003790 rshift3 pdata ,pdata 
+0x392a 003791 iadd freq_index ,pdata 
+0x392b 003792 idiv regb 
+0x392c 003793 setarg mem_afh_map 
+0x392d 003794 call wait_div_end 
+0x392e 003795 remainder rega 
+0x392f 003796 iadd rega ,contr 
+0x3930 003797 ifetch 1 ,contr 
+:      003798 afh_process_end:
+0x3931 003799 store 1 ,mem_afh_index 
+0x3932 003800 iforce temp 
+0x3933 003801 rtn 
+:      003803 afh_same_channel:
+0x3934 003804 fetch 1 ,mem_afh_index 
+0x3935 003805 iforce temp 
+0x3936 003806 rtn 
+:      003808 afh_clear:
+0x3937 003809 fetch 1 ,mem_mode 
+0x3938 003810 set0 afh_enable ,pdata 
+0x3939 003811 set0 afh_change ,pdata 
+0x393a 003812 store 1 ,mem_mode 
+0x393b 003813 rtn 
+:      003819 afh_process_freq_map:
+0x393c 003820 set0 mark_ext_patch ,mark 
+0x393d 003821 bpatch patch10_0 ,mem_patch10 
+0x393e 003822 arg mem_afh_map ,contw 
+0x393f 003823 force 10 ,loopcnt 
+0x3940 003824 call memset0 
+0x3941 003825 arg mem_afh_map ,contw 
+0x3942 003826 force 0 ,regc 
+0x3943 003827 force 2 ,queue 
+:      003828 process_freq_3:
+0x3944 003829 fetch 5 ,mem_afh_map_lo 
+0x3945 003830 iforce temp 
+0x3946 003831 compare 2 ,queue ,0xff 
+0x3947 003832 branch process_freq_1 ,true 
+0x3948 003833 rshift temp ,temp 
+:      003834 process_freq_1:
+0x3949 003835 isolate0 0 ,temp 
+0x394a 003836 branch process_freq_0 ,true 
+0x394b 003837 deposit regc 
+0x394c 003838 istore 1 ,contw 
+:      003839 process_freq_0:
+0x394d 003840 rshift2 temp ,temp 
+0x394e 003841 increase 2 ,regc 
+0x394f 003842 compare 40 ,regc ,0xfe 
+0x3950 003843 nbranch process_freq_2 ,true 
+0x3951 003844 fetch 5 ,mem_afh_map_hi 
+0x3952 003845 iforce temp 
+0x3953 003846 compare 2 ,queue ,0xff 
+0x3954 003847 branch process_freq_2 ,true 
+0x3955 003848 rshift temp ,temp 
+:      003849 process_freq_2:
+0x3956 003850 sub regc ,78 ,null 
+0x3957 003851 branch process_freq_1 ,positive 
+0x3958 003852 force 1 ,regc 
+0x3959 003853 increase -1 ,queue 
+0x395a 003854 nbranch process_freq_3 ,zero 
+0x395b 003855 arg mem_afh_map ,rega 
+0x395c 003856 deposit contw 
+0x395d 003857 isub rega ,pdata 
+0x395e 003858 store 1 ,mem_afh_used 
+0x395f 003859 rtn 
+:      003861 rx_radio_freq:
+0x3960 003862 set0 mark_ext_patch ,mark 
+0x3961 003863 bpatch patch10_1 ,mem_patch10 
+0x3962 003864 call calc_radio_freq 
+0x3963 003865 fetch 1 ,mem_debug_config 
+0x3964 003866 bbit0 debug_rx_fixed_freq ,rx_radio_freq_now 
+0x3965 003867 fetcht 1 ,mem_rx_fixed_freq 
+:      003868 rx_radio_freq_now:
+0x3966 003869 branch set_freq_rx 
+:      003872 tx_radio_freq:
+0x3967 003873 set0 mark_ext_patch ,mark 
+0x3968 003874 bpatch patch10_2 ,mem_patch10 
+0x3969 003875 call calc_radio_freq 
+0x396a 003876 fetch 1 ,mem_debug_config 
+0x396b 003877 bbit0 debug_tx_fixed_freq ,tx_radio_freq_now 
+0x396c 003878 fetcht 1 ,mem_tx_fixed_freq 
+:      003879 tx_radio_freq_now:
+0x396d 003880 branch set_freq_tx 
+:      003883 fetch_giac:
+0x396e 003884 force 0 ,uap 
+0x396f 003885 fetch 3 ,mem_glap 
+0x3970 003886 iforce lap 
+0x3971 003887 rtn 
+:      003889 fetch_page_bt_adr:
+0x3972 003890 set0 mark_ext_patch ,mark 
+0x3973 003891 bpatch patch10_3 ,mem_patch10 
+0x3974 003892 fetch 1 ,mem_hci_puap 
+0x3975 003893 icopy uap 
+0x3976 003894 fetch 3 ,mem_hci_plap 
+0x3977 003895 icopy lap 
+0x3978 003896 rtn 
+:      003898 fetch_self_bt_adr:
+0x3979 003899 set0 mark_ext_patch ,mark 
+0x397a 003900 bpatch patch10_4 ,mem_patch10 
+0x397b 003901 fetch 2 ,mem_nap 
+0x397c 003902 icopy nap 
+0x397d 003903 fetch 1 ,mem_uap 
+0x397e 003904 icopy uap 
+0x397f 003905 fetch 3 ,mem_lap 
+0x3980 003906 icopy lap 
+0x3981 003907 rtn 
+:      003909 fetch_extm_bt_adr:
+0x3982 003910 set0 mark_ext_patch ,mark 
+0x3983 003911 bpatch patch10_5 ,mem_patch10 
+0x3984 003912 fetch 2 ,mem_pnap 
+0x3985 003913 icopy nap 
+0x3986 003914 fetch 1 ,mem_puap 
+0x3987 003915 icopy uap 
+0x3988 003916 fetch 3 ,mem_plap 
+0x3989 003917 icopy lap 
+0x398a 003918 rtn 
+:      003921 fetch_diac:
+0x398b 003922 bmark1 mark_all_diac ,fetch_diac_do 
+0x398c 003923 rtnmark0 mark_inquiry_state 
+0x398d 003924 rtnmark0 mark_periodical_diac 
+:      003925 fetch_diac_do:
+0x398e 003926 and_into -256 ,lap 
+0x398f 003927 pulse recalc 
+0x3990 003928 nop 32 
+0x3991 003929 rtn 
+:      003932 shutdown_radio:
+0x3992 003933 set0 mark_ext_patch ,mark 
+0x3993 003934 bpatch patch10_6 ,mem_patch10 
+0x3994 003935 branch shutdown_radio0 ,is_rx 
+0x3995 003936 hjam 0xd4 ,0x955 
+0x3996 003937 nop 4 
+0x3997 003938 hjam 0xd2 ,0x955 
+0x3998 003939 nop 4 
+0x3999 003940 hjam 0xd1 ,0x955 
+0x399a 003941 nop 4 
+0x399b 003942 fetch 1 ,mem_tx_power 
+0x399c 003943 bbit1 tx_power_0db ,shutdown_radio_0db 
+0x399d 003944 bbit1 tx_power_3db ,shutdown_radio_3db 
+0x399e 003945 bbit1 tx_power_5db ,shutdown_radio_5db 
+0x399f 003946 bbit1 tx_power_f3db ,shutdown_radio_f3db 
+0x39a0 003947 bbit1 tx_power_f5db ,shutdown_radio_f5db 
+:      003948 shutdown_radio_5db:
+:      003949 shutdown_radio_0db:
+0x39a1 003950 hjam 0xd0 ,0x955 
+0x39a2 003951 hjam 0xe0 ,0x956 
+:      003952 shutdown_radio0:
+0x39a3 003953 force 0 ,radio_ctrl 
+0x39a4 003954 disable is_rx 
+0x39a5 003955 disable is_tx 
+0x39a6 003956 pulse packet_end 
+0x39a7 003957 hjam 0x0 ,rfen_mdm 
+0x39a8 003958 hjam 0x0 ,rfen_tx 
+0x39a9 003959 hjam 0x0 ,rfen_rx 
+0x39aa 003960 hjam 0 ,rfen_sn 
+0x39ab 003961 hjam 0x70 ,rfen_msc 
+0x39ac 003962 hjam 0x0 ,rfen_adc 
+0x39ad 003963 rtn 
+:      003965 shutdown_radio_f5db:
+:      003966 shutdown_radio_f3db:
+:      003967 shutdown_radio_3db:
+0x39ae 003968 hjam 0xd0 ,0x955 
+0x39af 003969 hjam 0xc0 ,0x956 
+0x39b0 003970 branch shutdown_radio0 
+:      003972 set_sync_on:
+0x39b1 003973 set0 mark_ext_patch ,mark 
+0x39b2 003974 bpatch patch10_7 ,mem_patch10 
+0x39b3 003975 hjam 0x0 ,rfen_mdm 
+0x39b4 003976 hjam 0x0 ,rfen_tx 
+0x39b5 003977 hjam 0x18 ,rfen_rx 
+0x39b6 003978 hjam 0xa7 ,rfen_sn 
+0x39b7 003979 hjam 0x7f ,rfen_msc 
+0x39b8 003980 rtn 
+:      003982 set_freq_rx:
+0x39b9 003983 set0 mark_ext_patch ,mark 
+0x39ba 003984 bpatch patch11_0 ,mem_patch11 
+0x39bb 003986 storet 1 ,mem_last_freq 
+0x39bc 003987 add temp ,rx_freq_offset ,rega 
+0x39bd 003988 hjam 0x07 ,0x96d 
+0x39be 003989 branch rf_write_freq 
+:      003990 rf_rx_enable:
+0x39bf 003991 set0 mark_ext_patch ,mark 
+0x39c0 003992 bpatch patch11_1 ,mem_patch11 
+0x39c1 003993 hjam 0xcf ,rfen_tx 
+0x39c2 003994 nop 10 
+0x39c3 003995 hjam 0xff ,rfen_rx 
+0x39c4 003996 hjam 0xaf ,rfen_sn 
+0x39c5 003997 hjam 0xff ,rfen_msc 
+0x39c6 003998 nop 10 
+0x39c7 003999 hjam 0xa0 ,rfen_mdm 
+0x39c8 004000 rtn 
+:      004003 set_freq_tx:
+0x39c9 004004 set0 mark_ext_patch ,mark 
+0x39ca 004005 bpatch patch11_2 ,mem_patch11 
+0x39cb 004006 storet 1 ,mem_last_freq 
+0x39cc 004007 add temp ,0 ,rega 
+0x39cd 004008 call rf_write_freq 
+0x39ce 004009 setarg param_pll_setup 
+0x39cf 004010 call sleep 
+:      004011 txon:
+0x39d0 004012 hjam 0x1 ,rfen_adc 
+0x39d1 004013 hjam 0x3c ,rfen_rx 
+0x39d2 004014 hjam 0xe0 ,rfen_tx 
+0x39d3 004015 hjam 0x12 ,0x96d 
+0x39d4 004016 nop 10 
+0x39d5 004017 hjam 0x01 ,rfen_mdm 
+0x39d6 004018 hjam 0x3d ,rfen_mdm 
+0x39d7 004019 nop 10 
+0x39d8 004020 hjam 0xb7 ,rfen_sn 
+0x39d9 004021 nop 10 
+0x39da 004022 hjam 0x7f ,rfen_mdm 
+0x39db 004023 fetch 1 ,mem_tx_power 
+0x39dc 004024 bbit1 tx_power_0db ,set_tx_power_0db 
+0x39dd 004025 bbit1 tx_power_3db ,set_tx_power_3db 
+0x39de 004026 bbit1 tx_power_5db ,set_tx_power_5db 
+0x39df 004027 bbit1 tx_power_f3db ,set_tx_power_f3db 
+0x39e0 004028 bbit1 tx_power_f5db ,set_tx_power_f5db 
+:      004029 set_tx_power_0db:
+0x39e1 004030 hjam 0xf0 ,0x956 
+0x39e2 004031 call txon_common 
+0x39e3 004032 hjam 0xd8 ,0x955 
+0x39e4 004033 rtn 
+:      004035 set_tx_power_3db:
+0x39e5 004036 hjam 0xdf ,0x956 
+0x39e6 004037 call txon_common 
+0x39e7 004038 hjam 0xdf ,0x955 
+0x39e8 004039 rtn 
+:      004041 set_tx_power_5db:
+0x39e9 004042 hjam 0xff ,0x956 
+0x39ea 004043 call txon_common 
+0x39eb 004044 hjam 0xdf ,0x955 
+0x39ec 004045 rtn 
+:      004046 set_tx_power_f3db:
+0x39ed 004047 hjam 0xce ,0x956 
+0x39ee 004048 call txon_common 
+0x39ef 004049 hjam 0xd8 ,0x955 
+0x39f0 004050 rtn 
+:      004052 set_tx_power_f5db:
+0x39f1 004053 hjam 0xcb ,0x956 
+0x39f2 004054 call txon_common 
+0x39f3 004055 hjam 0xd8 ,0x955 
+0x39f4 004056 rtn 
+:      004058 txon_common:
+0x39f5 004059 nop 4 
+0x39f6 004060 hjam 0xd1 ,0x955 
+0x39f7 004061 nop 4 
+0x39f8 004062 hjam 0xd2 ,0x955 
+0x39f9 004063 nop 4 
+0x39fa 004064 hjam 0xd4 ,0x955 
+0x39fb 004065 rtn 
+:      004068 initialize_radio:
+0x39fc 004069 hjam clksel_rc ,core_clksel 
+0x39fd 004070 call init_rf_param 
+:      004071 initialize_radio_wait:
+0x39fe 004072 fetch 2 ,mem_rf_init_ptr 
+0x39ff 004073 bbit0 14 ,initialize_radio_wait 
+0x3a00 004074 iforce contr 
+0x3a01 004075 arg 0x8900 ,temp 
+:      004076 initialize_radio_loop:
+0x3a02 004077 ifetch 1 ,contr 
+0x3a03 004078 beq 0xff ,initialize_radio_cont 
+0x3a04 004079 ior temp ,contw 
+0x3a05 004080 ifetch 1 ,contr 
+0x3a06 004081 istore 1 ,contw 
+0x3a07 004082 branch initialize_radio_loop 
+:      004083 initialize_radio_cont:
+0x3a08 004084 set0 mark_ext_patch ,mark 
+0x3a09 004085 bpatch patch11_3 ,mem_patch11 
+0x3a0a 004086 call lpm_cal_xtal_startup 
+0x3a0b 004087 call switchto_dpllclk 
+0x3a0c 004089 setarg param_dpll_start_delay 
+0x3a0d 004090 iadd clkn_bt ,pdata 
+0x3a0e 004091 store 4 ,mem_dpll_clkn 
+0x3a0f 004092 set1 reset ,radio_ctrl 
+0x3a10 004093 force 0 ,radio_ctrl 
+0x3a11 004094 ncall do_rccal ,wake 
+0x3a12 004095 branch set_rccal 
+:      004098 rf_write_freq:
+0x3a13 004099 set0 mark_ext_patch ,mark 
+0x3a14 004100 bpatch patch11_4 ,mem_patch11 
+0x3a15 004101 setarg 2400 
+0x3a16 004102 iadd rega ,temp 
+0x3a17 004103 fetch 1 ,mem_fcomp_mul 
+0x3a18 004104 hjam 0x04 ,rf_pll_rstn 
+0x3a19 004105 imul32 temp ,pdata 
+0x3a1a 004106 fetcht 1 ,mem_fcomp_div 
+0x3a1b 004107 idiv temp 
+0x3a1c 004108 call wait_div_end 
+0x3a1d 004109 quotient rega 
+0x3a1e 004110 remainder pdata 
+0x3a1f 004111 lshift16 pdata ,pdata 
+0x3a20 004112 lshift4 pdata ,pdata 
+0x3a21 004113 idiv temp 
+0x3a22 004114 call wait_div_end 
+0x3a23 004115 quotient pdata 
+0x3a24 004116 lshift8 pdata ,pdata 
+0x3a25 004117 lshift pdata ,pdata 
+0x3a26 004118 ior rega ,pdata 
+0x3a27 004119 hstore 4 ,rf_pll_intg 
+0x3a28 004120 hjam 0x44 ,rf_pll_rstn 
+0x3a29 004121 hjam 0xc4 ,rf_pll_rstn 
+0x3a2a 004122 rtn 
+:      004125 do_rccal:
+0x3a2b 004126 set0 mark_ext_patch ,mark 
+0x3a2c 004127 bpatch patch11_5 ,mem_patch11 
+0x3a2d 004128 hjam 0x02 ,rfen_adc 
+0x3a2e 004129 setarg 250000 
+0x3a2f 004130 call sleep 
+0x3a30 004131 hjam 0x7f ,rfen_rx 
+0x3a31 004132 nop 130 
+0x3a32 004133 hjam 0x30 ,rf_rccal_ctrl 
+0x3a33 004134 hjam 0xd0 ,rfen_tx 
+0x3a34 004135 hjam 0x70 ,rf_rccal_ctrl 
+0x3a35 004136 hjam 0xf0 ,rf_rccal_ctrl 
+0x3a36 004137 force 50 ,loopcnt 
+:      004138 do_rccal_loop:
+0x3a37 004139 hfetch 1 ,rf_rccal_result 
+0x3a38 004140 bbit1 5 ,do_rccal_end 
+0x3a39 004141 loop do_rccal_loop 
+:      004142 do_rccal_end:
+0x3a3a 004143 store 1 ,mem_rf_rccal 
+0x3a3b 004144 hjam 0 ,rfen_tx 
+0x3a3c 004145 hjam 0 ,rfen_rx 
+0x3a3d 004146 hjam 0x00 ,rfen_adc 
+0x3a3e 004147 rtn 
+:      004149 set_rccal:
+0x3a3f 004150 set0 mark_ext_patch ,mark 
+0x3a40 004151 bpatch patch11_6 ,mem_patch11 
+0x3a41 004152 fetch 1 ,mem_rf_rccal 
+0x3a42 004153 set1 5 ,pdata 
+0x3a43 004154 hstore 1 ,rf_rccal_ctrl 
+0x3a44 004155 hfetcht 1 ,rf_bpf_ctrim 
+0x3a45 004156 and_into 7 ,temp 
+0x3a46 004157 lshift3 pdata ,pdata 
+0x3a47 004158 ior temp ,pdata 
+0x3a48 004159 hstore 1 ,rf_bpf_ctrim 
+0x3a49 004160 hfetch 1 ,rf_bpf_ib 
+0x3a4a 004161 set0 bpf_rccal ,pdata 
+0x3a4b 004162 hstore 1 ,rf_bpf_ib 
+0x3a4c 004163 hfetch 1 ,rf_adc_rccal 
+0x3a4d 004164 set0 adc_rccal ,pdata 
+0x3a4e 004165 hstore 1 ,rf_adc_rccal 
+0x3a4f 004166 rtn 
+:      004168 save_rssi:
+0x3a50 004169 set0 mark_ext_patch ,mark 
+0x3a51 004170 bpatch patch11_7 ,mem_patch11 
+0x3a52 004171 hfetch 2 ,rf_afc_d2a 
+0x3a53 004172 rshift4 pdata ,pdata 
+0x3a54 004173 rshift3 pdata ,pdata 
+0x3a55 004174 sub pdata ,0 ,pdata 
+0x3a56 004175 and_into 0xff ,pdata 
+0x3a57 004176 div pdata ,10 
+0x3a58 004177 call wait_div_end 
+0x3a59 004178 quotient pdata 
+0x3a5a 004179 lshift4 pdata ,pdata 
+0x3a5b 004180 remainder temp 
+0x3a5c 004181 ior temp ,pdata 
+0x3a5d 004182 store 1 ,mem_rssi 
+0x3a5e 004183 rtn 
+:      004186 switchto_dpllclk:
+0x3a5f 004187 hjam clksel_rc ,core_clksel 
+0x3a60 004188 hfetch 1 ,rf_clkpll_frac + 2 
+0x3a61 004189 set0 4 ,pdata 
+0x3a62 004190 set0 5 ,pdata 
+0x3a63 004191 hstore 1 ,rf_clkpll_frac + 2 
+0x3a64 004192 hjam 0x00 ,rfen_ck 
+0x3a65 004193 hjam 0x00 ,rfen_msc 
+0x3a66 004194 hjam 0x70 ,rfen_msc 
+0x3a67 004195 hjam 0xff ,rfen_ck 
+0x3a68 004196 hfetch 1 ,rf_clkpll_frac + 2 
+0x3a69 004197 set1 4 ,pdata 
+0x3a6a 004198 set1 5 ,pdata 
+0x3a6b 004199 hstore 1 ,rf_clkpll_frac + 2 
+0x3a6c 004200 call init_lpm_ctrl 
+0x3a6d 004201 hfetch 1 ,rf_clkpll_int 
+0x3a6e 004202 set1 7 ,pdata 
+0x3a6f 004203 hstore 1 ,rf_clkpll_int 
+0x3a70 004204 set0 7 ,pdata 
+0x3a71 004205 hstore 1 ,rf_clkpll_int 
+0x3a72 004206 set1 7 ,pdata 
+0x3a73 004207 hstore 1 ,rf_clkpll_int 
+0x3a74 004209 hjam clksel_xtal ,core_clksel 
+0x3a75 004210 hfetch 1 ,rf_clkpll_frac + 2 
+0x3a76 004211 and_into 0xcf ,pdata 
+0x3a77 004212 hstore 1 ,rf_clkpll_frac + 2 
+0x3a78 004213 or_into 0x30 ,pdata 
+0x3a79 004214 hstore 1 ,rf_clkpll_frac + 2 
+0x3a7a 004215 rtn 
+:      004218 xtal_fast_wake:
+0x3a7b 004219 setarg 0xf0f 
+0x3a7c 004220 branch lpm_write_config 
+:      004222 init_lpm_ctrl:
+0x3a7d 004223 setarg 0x80f 
+0x3a7e 004224 branch lpm_write_config 
+:      004228 start_receiver:
+0x3a7f 004229 set0 mark_ext_patch ,mark 
+0x3a80 004230 bpatch patch12_0 ,mem_patch12 
+0x3a81 004231 call rf_rx_enable 
+0x3a82 004232 disable is_tx 
+0x3a83 004233 enable is_rx 
+0x3a84 004234 pulse init_encrypt 
+0x3a85 004235 rtn 
+:      004237 prep_crypt:
+0x3a86 004238 set0 mark_ext_patch ,mark 
+0x3a87 004239 bpatch patch12_1 ,mem_patch12 
+0x3a88 004240 fetch 1 ,mem_state_map 
+0x3a89 004241 isolate1 smap_encryption ,pdata 
+0x3a8a 004242 setflag true ,0 ,pdata 
+0x3a8b 004243 hstore 1 ,core_encrypt 
+0x3a8c 004244 arg mem_kc ,contr 
+0x3a8d 004245 ifetch 9 ,contr 
+0x3a8e 004246 iforce kc_ls 
+0x3a8f 004247 ifetch 7 ,contr 
+0x3a90 004248 iforce kc_ms 
+0x3a91 004249 fetch 1 ,mem_key_size 
+0x3a92 004250 add pdata ,-1 ,g1l 
+0x3a93 004251 pulse kc_p_activate 
+0x3a94 004252 rtn 
+:      004254 wait_access_end:
+0x3a95 004255 deposit clke 
+0x3a96 004256 store 6 ,mem_sync_clke 
+0x3a97 004257 disable decode_fec0 
+0x3a98 004258 nbranch shutdown_radio ,sync 
+0x3a99 004259 arg param_clke_cal ,clke_rt 
+0x3a9a 004260 increase 1 ,clke_bt 
+0x3a9b 004261 and_into 0x1fc ,clke_bt 
+0x3a9c 004262 rtn 
+:      004266 wait_access_mhalfbnd:
+0x3a9d 004267 enable decode_fec0 
+:      004268 wait_access_mhalfbnd_correlate:
+0x3a9e 004269 correlate null ,mhalfbnd 
+0x3a9f 004270 branch wait_access_end ,sync 
+0x3aa0 004271 compare 0x02 ,clke_bt ,0x02 
+0x3aa1 004272 nbranch wait_access_mhalfbnd_correlate ,true 
+0x3aa2 004273 branch wait_access_end 
+:      004275 wait_access_clkn_rt:
+0x3aa3 004276 set0 mark_ext_patch ,mark 
+0x3aa4 004277 bpatch patch12_2 ,mem_patch12 
+0x3aa5 004278 arg param_conn_access ,timeup 
+0x3aa6 004279 enable decode_fec0 
+0x3aa7 004280 correlate clkn_rt ,meet 
+0x3aa8 004281 disable decode_fec0 
+0x3aa9 004282 nbranch shutdown_radio ,sync 
+0x3aaa 004283 rtn 
+:      004285 wait_access_forever:
+0x3aab 004286 set0 mark_ext_patch ,mark 
+0x3aac 004287 bpatch patch12_3 ,mem_patch12 
+0x3aad 004288 enable decode_fec0 
+0x3aae 004289 correlate null ,timeout 
+0x3aaf 004290 disable decode_fec0 
+0x3ab0 004291 nbranch shutdown_radio ,sync 
+0x3ab1 004292 arg param_clke_cal ,clke_rt 
+0x3ab2 004293 and_into 0x1fc ,clke_bt 
+0x3ab3 004294 rtn 
+:      004297 reserve_slot:
+0x3ab4 004298 set0 mark_ext_patch ,mark 
+0x3ab5 004299 bpatch patch12_4 ,mem_patch12 
+0x3ab6 004300 iforce rega 
+0x3ab7 004301 deposit bt_clk 
+0x3ab8 004302 iadd temp ,timeup 
+0x3ab9 004303 copy timeup ,pdata 
+0x3aba 004304 store 4 ,mem_next_btclk 
+0x3abb 004305 deposit rega 
+0x3abc 004306 rtn 
+:      004309 ahead_window:
+0x3abd 004310 copy pdata ,temp 
+0x3abe 004311 set0 mark_ext_patch ,mark 
+0x3abf 004312 bpatch patch12_5 ,mem_patch12 
+0x3ac0 004313 copy temp ,pdata 
+0x3ac1 004314 call clk2bt 
+0x3ac2 004315 lshift16 bt_clk ,pdata 
+0x3ac3 004316 set1 44 ,pdata 
+0x3ac4 004317 call clk_diff 
+0x3ac5 004318 set0 44 ,pdata 
+0x3ac6 004319 call get_clk 
+0x3ac7 004320 call clk_diff 
+0x3ac8 004321 rtn user 
+0x3ac9 004322 call clk2rt 
+0x3aca 004323 iforce stop_watch 
+0x3acb 004324 until null ,timeout 
+0x3acc 004325 rtn 
+:      004328 setup_clk:
+0x3acd 004329 set0 mark_ext_patch ,mark 
+0x3ace 004330 bpatch patch12_6 ,mem_patch12 
+0x3acf 004331 branch setup_clkn ,clknt 
+0x3ad0 004332 until clke_rt ,meet 
+:      004333 skip_setup_clke:
+0x3ad1 004334 copy clke_bt ,temp 
+0x3ad2 004335 branch setup_clknbt 
+:      004336 setup_clkn:
+0x3ad3 004337 branch skip_setup_clkn ,attempt 
+0x3ad4 004338 until clkn_rt ,meet 
+:      004339 skip_setup_clkn:
+0x3ad5 004340 copy clkn_bt ,temp 
+:      004341 setup_clknbt:
+0x3ad6 004342 branch setup_clk11 ,user 
+0x3ad7 004343 compare 1 ,temp ,3 
+0x3ad8 004344 nbranch setup_clk ,true 
+:      004345 setup_complete:
+0x3ad9 004346 set0 mark_ext_patch ,mark 
+0x3ada 004347 bpatch patch12_7 ,mem_patch12 
+0x3adb 004348 fetch 1 ,mem_state 
+0x3adc 004349 rtnbit0 state_inconn 
+0x3add 004350 fetch 4 ,mem_next_btclk 
+0x3ade 004351 isub temp ,pdata 
+0x3adf 004352 nrtn positive 
+0x3ae0 004353 sub pdata ,0xff ,null 
+0x3ae1 004354 branch setup_clk ,positive 
+0x3ae2 004355 rtn 
+:      004356 setup_clk11:
+0x3ae3 004357 compare 3 ,temp ,3 
+0x3ae4 004358 nbranch setup_clk ,true 
+0x3ae5 004359 branch setup_complete 
+:      004361 rf_setup_time:
+0x3ae6 004362 set0 mark_ext_patch ,mark 
+0x3ae7 004363 bpatch patch13_0 ,mem_patch13 
+0x3ae8 004364 arg param_rf_setup ,timeup 
+0x3ae9 004365 branch setup_clk 
+:      004367 rf_setup_time_slave_slot:
+0x3aea 004368 disable user 
+0x3aeb 004369 branch rf_setup_time 
+:      004371 rf_setup_time_master_slot:
+0x3aec 004372 enable user 
+0x3aed 004373 branch rf_setup_time 
+:      004375 start_transmitter:
+0x3aee 004376 set0 mark_ext_patch ,mark 
+0x3aef 004377 bpatch patch13_1 ,mem_patch13 
+0x3af0 004378 call prep_crypt 
+0x3af1 004379 disable is_rx 
+0x3af2 004380 enable is_tx 
+0x3af3 004381 rtn 
+:      004385 start_tx_native:
+0x3af4 004386 set0 mark_ext_patch ,mark 
+0x3af5 004387 bpatch patch13_2 ,mem_patch13 
+0x3af6 004388 arg param_tx_setup ,timeup 
+0x3af7 004389 until clkn_rt ,meet 
+0x3af8 004390 pulse init_encrypt 
+0x3af9 004391 rtn 
+:      004393 start_rx_native:
+0x3afa 004394 set0 mark_ext_patch ,mark 
+0x3afb 004395 bpatch patch13_3 ,mem_patch13 
+0x3afc 004396 arg param_rx_setup ,timeup 
+0x3afd 004397 until clkn_rt ,meet 
+0x3afe 004398 rtn 
+:      004401 start_tx_external:
+0x3aff 004402 set0 mark_ext_patch ,mark 
+0x3b00 004403 bpatch patch13_4 ,mem_patch13 
+0x3b01 004404 arg param_tx_setup ,timeup 
+0x3b02 004405 until clke_rt ,meet 
+0x3b03 004406 pulse init_encrypt 
+0x3b04 004407 rtn 
+:      004409 send_access_word:
+0x3b05 004410 set0 mark_ext_patch ,mark 
+0x3b06 004411 bpatch patch13_5 ,mem_patch13 
+0x3b07 004412 preload access 
+0x3b08 004413 enable encode_fec0 
+0x3b09 004414 set1 txgfsk ,radio_ctrl 
+0x3b0a 004415 inject mod ,72 
+0x3b0b 004416 disable encode_fec0 
+0x3b0c 004417 rtn 
+:      004420 scan_mode_whiten:
+0x3b0d 004421 copy xin ,temp 
+0x3b0e 004422 or_into 0x60 ,temp 
+0x3b0f 004423 copy temp ,white_init 
+0x3b10 004424 rtn 
+:      004429 get_free_amaddr:
+0x3b11 004430 set0 mark_ext_patch ,mark 
+0x3b12 004431 bpatch patch13_6 ,mem_patch13 
+0x3b13 004432 fetch 1 ,mem_current_amaddr 
+0x3b14 004433 increase 1 ,pdata 
+0x3b15 004434 bne param_esco_addr ,get_free_amaddr_cont 
+0x3b16 004435 force 1 ,pdata 
+:      004436 get_free_amaddr_cont:
+0x3b17 004437 store 1 ,mem_current_amaddr 
+0x3b18 004438 iforce am_addr 
+0x3b19 004439 rtn 
+:      004441 get_clk:
+0x3b1a 004442 copy clkn ,temp 
+0x3b1b 004443 rtn master 
+0x3b1c 004444 copy clke ,temp 
+0x3b1d 004445 rtn 
+:      004447 get_clkbt:
+0x3b1e 004448 deposit clkn_bt 
+0x3b1f 004449 rtn master 
+0x3b20 004450 deposit clke_bt 
+0x3b21 004451 rtn 
+:      004454 supervision_update:
+0x3b22 004455 set0 mark_ext_patch ,mark 
+0x3b23 004456 bpatch patch13_7 ,mem_patch13 
+0x3b24 004457 fetcht 4 ,mem_supervision_timer 
+0x3b25 004458 call get_clkbt 
+0x3b26 004459 isub temp ,timeup 
+0x3b27 004460 deposit timeup 
+0x3b28 004461 fetcht 2 ,mem_supervision_to 
+0x3b29 004462 lshift temp ,temp 
+0x3b2a 004463 isub temp ,pdata 
+0x3b2b 004464 rtn 
+:      004466 supervision_flush:
+0x3b2c 004467 set0 mark_ext_patch ,mark 
+0x3b2d 004468 bpatch patch14_0 ,mem_patch14 
+0x3b2e 004469 call get_clkbt 
+0x3b2f 004470 store 4 ,mem_supervision_timer 
+0x3b30 004471 rtn 
+:      004473 assert:
+0x3b31 004474 set0 mark_ext_patch ,mark 
+0x3b32 004475 bpatch patch14_1 ,mem_patch14 
+0x3b33 004476 rtn 
+:      004478 loop:
+0x3b34 004479 branch loop 
+:      004481 sleep:
+0x3b35 004482 rtn blank 
+0x3b36 004484 rshift pdata ,pdata 
+0x3b37 004485 increase -3 ,pdata 
+:      004486 sleep_loop:
+0x3b38 004487 increase -1 ,pdata 
+0x3b39 004488 nbranch sleep_loop ,zero 
+0x3b3a 004489 force 0 ,pdata 
+0x3b3b 004490 rtn 
+:      004494 init_param:
+0x3b3c 004496 arg 0x10 ,loopcnt 
+0x3b3d 004497 arg 0 ,contw 
+0x3b3e 004498 call memset0 
+0x3b3f 004499 arg mem_le_state ,contw 
+0x3b40 004500 arg 10 ,loopcnt 
+0x3b41 004501 call memset0 
+0x3b42 004502 jam 0 ,mem_sp_calc 
+0x3b43 004503 jam 0 ,mem_fifo_temp 
+0x3b44 004504 jam 0 ,mem_le_testtype 
+0x3b45 004505 jam 0 ,mem_debug_config 
+0x3b46 004506 jam 0 ,mem_lmp_conn_state 
+0x3b47 004507 set0 mark_ext_patch ,mark 
+0x3b48 004508 bpatch patch14_2 ,mem_patch14 
+0x3b49 004509 jam 0 ,mem_connection_options 
+0x3b4a 004510 jam 0 ,mem_tester_emulate 
+0x3b4b 004511 jam 0 ,mem_tester_cnt 
+0x3b4c 004512 setarg param_glap 
+0x3b4d 004513 store 3 ,mem_glap 
+0x3b4e 004514 setarg param_acl_pktlen 
+0x3b4f 004515 store 2 ,mem_acl_pktlen 
+0x3b50 004516 jam param_sco_pktlen ,mem_sco_pktlen 
+0x3b51 004517 jam param_acl_pktcnt ,mem_acl_pktcnt 
+0x3b52 004518 jam param_sco_pktcnt ,mem_sco_pktcnt 
+0x3b53 004519 setarg param_hci_version 
+0x3b54 004520 store 3 ,mem_hci_version 
+0x3b55 004525 jam 0x60 ,mem_fhs_misc 
+0x3b56 004526 jam param_max_slot ,mem_max_slot 
+0x3b57 004527 jam 0x02 ,mem_fw_ver 
+0x3b58 004528 fetch 1 ,mem_ssp_enable 
+0x3b59 004529 ncall init_memp ,blank 
+0x3b5a 004530 fetch 1 ,mem_le_secure_connect_enable 
+0x3b5b 004531 ncall init_memp_256 ,blank 
+0x3b5c 004532 set0 mark_ext_patch ,mark 
+0x3b5d 004533 bpatch patch14_3 ,mem_patch14 
+0x3b5e 004534 rtn wake 
+0x3b5f 004535 setarg 0 
+0x3b60 004536 store 2 ,mem_tx_len 
+0x3b61 004537 rshift clkn_bt ,pdata 
+0x3b62 004538 store 4 ,mem_last_clkn 
+0x3b63 004539 rtn 
+:      004541 init_rf_param:
+0x3b64 004542 hjam 0x1f ,0x909 
+0x3b65 004543 hjam 0x45 ,0x912 
+0x3b66 004544 hjam 0x00 ,0x953 
+0x3b67 004545 hjam 0x88 ,0x96f 
+0x3b68 004546 hjam 0x30 ,0x973 
+0x3b69 004547 hjam 0xc9 ,0x956 
+0x3b6a 004549 hjam 0xff ,0x907 
+0x3b6b 004550 hjam 0x01 ,0x908 
+0x3b6c 004551 hjam 0xf8 ,0x90a 
+0x3b6d 004552 hjam 0xff ,0x90b 
+0x3b6e 004553 hjam 0xfb ,0x91a 
+0x3b6f 004554 hjam 0xfb ,0x91b 
+0x3b70 004555 hjam 0xfb ,0x91c 
+0x3b71 004556 hjam 0xf6 ,0x91d 
+0x3b72 004557 hjam 0xf2 ,0x91e 
+0x3b73 004558 hjam 0xee ,0x91f 
+0x3b74 004559 hjam 0xea ,0x920 
+0x3b75 004560 hjam 0xe6 ,0x921 
+0x3b76 004561 hjam 0xe2 ,0x922 
+0x3b77 004562 hjam 0xde ,0x923 
+0x3b78 004563 hjam 0xda ,0x924 
+0x3b79 004564 hjam 0xd6 ,0x925 
+0x3b7a 004565 hjam 0xd2 ,0x926 
+0x3b7b 004566 hjam 0xce ,0x927 
+0x3b7c 004567 hjam 0xca ,0x928 
+0x3b7d 004568 hjam 0xc6 ,0x929 
+0x3b7e 004569 hjam 0xc2 ,0x92a 
+0x3b7f 004570 hjam 0xbd ,0x92b 
+0x3b80 004571 hjam 0xb9 ,0x92c 
+0x3b81 004572 hjam 0xb5 ,0x92d 
+0x3b82 004573 hjam 0xb1 ,0x92e 
+0x3b83 004574 hjam 0xad ,0x92f 
+0x3b84 004575 hjam 0xa9 ,0x930 
+0x3b85 004576 hjam 0x80 ,0x931 
+0x3b86 004577 hjam 0x80 ,0x932 
+0x3b87 004578 hjam 0x80 ,0x933 
+0x3b88 004579 hjam 0xc0 ,0x934 
+0x3b89 004580 hjam 0xc1 ,0x935 
+0x3b8a 004581 hjam 0xc2 ,0x936 
+0x3b8b 004582 hjam 0xc3 ,0x937 
+0x3b8c 004583 hjam 0xc4 ,0x938 
+0x3b8d 004584 hjam 0xc5 ,0x939 
+0x3b8e 004585 hjam 0xc6 ,0x93a 
+0x3b8f 004586 hjam 0xc7 ,0x93b 
+0x3b90 004587 hjam 0x06 ,0x93c 
+0x3b91 004588 hjam 0x07 ,0x93d 
+0x3b92 004589 hjam 0x46 ,0x93e 
+0x3b93 004590 hjam 0x85 ,0x93f 
+0x3b94 004591 hjam 0x86 ,0x940 
+0x3b95 004592 hjam 0x87 ,0x941 
+0x3b96 004593 hjam 0xc6 ,0x942 
+0x3b97 004594 hjam 0xc7 ,0x943 
+0x3b98 004595 hjam 0xd6 ,0x944 
+0x3b99 004596 hjam 0xd7 ,0x945 
+0x3b9a 004597 hjam 0xe6 ,0x946 
+0x3b9b 004598 hjam 0xf5 ,0x947 
+0x3b9c 004599 hjam 0x00 ,0x948 
+0x3b9d 004600 hjam 0xf8 ,0x949 
+0x3b9e 004601 hjam 0x7f ,0x94a 
+0x3b9f 004602 hjam 0xfb ,0x94c 
+0x3ba0 004603 hjam 0xef ,0x94d 
+0x3ba1 004604 hjam 0xec ,0x94e 
+0x3ba2 004605 hjam 0x5e ,0x94f 
+0x3ba3 004606 hjam 0x4c ,0x957 
+0x3ba4 004607 hjam 0x6c ,0x958 
+0x3ba5 004608 hjam 0x50 ,0x959 
+0x3ba6 004609 hjam 0xe4 ,0x968 
+0x3ba7 004610 hjam 0x00 ,0x969 
+0x3ba8 004611 hjam 0x00 ,0x96a 
+0x3ba9 004612 hjam 0x30 ,0x96b 
+0x3baa 004613 rtn 
+:      004622 lpmstate:
+0x3bab 004623 setarg 0xee21 
+0x3bac 004624 hstore 2 ,core_clkoff 
+0x3bad 004625 hfetch 1 ,core_lpm_ldocnt 
+0x3bae 004626 bbit0 gpio_latch ,loadcode 
+0x3baf 004627 enable wake 
+0x3bb0 004628 bbit0 cold_wake ,lpmwake 
+0x3bb1 004629 disable wake 
+0x3bb2 004630 deposit auxcnt 
+0x3bb3 004631 nbranch lpmwake ,blank 
+0x3bb4 004632 arg param_hibernate_clks ,temp 
+0x3bb5 004633 branch lpm_enter_sleep 
+:      004634 lpmwake:
+0x3bb6 004635 hfetch 3 ,core_lpm_xtalcnt 
+0x3bb7 004636 hstore 3 ,core_lpm_reg 
+0x3bb8 004637 ifetch 1 ,contr 
+0x3bb9 004638 or_into isogate_mask ,pdata 
+0x3bba 004639 istore 1 ,contw 
+0x3bbb 004640 call lpm_write_ctrl2 
+0x3bbc 004641 hfetch 1 ,core_lpm_isogate 
+0x3bbd 004642 set1 enable_retmem ,pdata 
+0x3bbe 004643 hstore 1 ,core_lpm_isogate 
+0x3bbf 004644 call lpm_write_ctrl2 
+0x3bc0 004645 call lpm_load_context ,wake 
+0x3bc1 004646 hfetch 1 ,core_lpm_reg + 2 
+0x3bc2 004647 set0 gpio_latch ,pdata 
+0x3bc3 004648 hstore 1 ,core_lpm_reg + 2 
+0x3bc4 004649 call lpm_write_ctrl2 
+0x3bc5 004650 rtn wake 
+0x3bc6 004651 branch loadcode 
+:      004653 lpm_load_context:
+0x3bc7 004654 fetch 1 ,mem_saved_spidctrl 
+0x3bc8 004655 hstore 1 ,core_spid_ctrl 
+0x3bc9 004656 fetch 3 ,mem_saved_gsel 
+0x3bca 004657 hstore 3 ,core_gpio_sel 
+0x3bcb 004658 fetch 4 ,mem_saved_gpio + 4 
+0x3bcc 004659 hstore 4 ,core_gpio_out0 
+0x3bcd 004660 fetch 4 ,mem_saved_gpio 
+0x3bce 004661 hstore 4 ,core_gpio_oe0 
+0x3bcf 004662 fetch 8 ,mem_saved_gpio + 8 
+0x3bd0 004663 hstore 8 ,core_gpio_pu0 
+0x3bd1 004664 fetch 8 ,mem_saved_mark 
+0x3bd2 004665 iforce mark 
+0x3bd3 004666 hfetch 8 ,core_gpio_wakeup_low 
+0x3bd4 004667 store 8 ,mem_gpio_wakeup_low 
+0x3bd5 004668 call load_ucode 
+0x3bd6 004669 rtn 
+:      004671 lpm_save_context:
+0x3bd7 004672 deposit mark 
+0x3bd8 004673 store 8 ,mem_saved_mark 
+0x3bd9 004674 hfetch 8 ,core_gpio_oe0 
+0x3bda 004675 store 8 ,mem_saved_gpio 
+0x3bdb 004676 ifetch 8 ,contr 
+0x3bdc 004677 istore 8 ,contw 
+0x3bdd 004678 hfetch 3 ,core_gpio_sel 
+0x3bde 004679 store 3 ,mem_saved_gsel 
+0x3bdf 004680 hfetch 1 ,core_spid_ctrl 
+0x3be0 004681 store 1 ,mem_saved_spidctrl 
+0x3be1 004682 branch lpm_write_gpio_wakeup 
+:      004684 lpo_calibration:
+0x3be2 004685 hfetch 1 ,core_bist_ctrl 
+0x3be3 004686 nbranch lpo_cal_inited ,blank 
+0x3be4 004687 fetch 3 ,mem_clks_per_lpo 
+0x3be5 004688 nrtn blank 
+0x3be6 004689 hjam 0xc0 ,core_bist_ctrl 
+0x3be7 004690 hjam ccnt_start ,core_misc_ctrl 
+:      004691 lpo_cal_inited:
+0x3be8 004692 hfetch 1 ,core_perf_status 
+0x3be9 004693 rtnbit0 1 
+0x3bea 004694 hfetch 3 ,core_clk_counter 
+0x3beb 004695 store 3 ,mem_clks_per_lpo 
+0x3bec 004696 rtn 
+:      004700 lpm_adjust_clk:
+0x3bed 004701 set0 mark_ext_patch ,mark 
+0x3bee 004702 bpatch patch14_4 ,mem_patch14 
+0x3bef 004703 deposit clke 
+0x3bf0 004704 call clk_diff_rt 
+0x3bf1 004705 fetcht 4 ,mem_sleep_counter_all 
+0x3bf2 004706 sub temp ,0xff ,null 
+0x3bf3 004707 rtn positive 
+0x3bf4 004708 lshift8 pdata ,pdata 
+0x3bf5 004709 lshift4 pdata ,pdata 
+0x3bf6 004710 idiv temp 
+0x3bf7 004711 call wait_div_end 
+0x3bf8 004712 quotient pdata 
+0x3bf9 004713 arg param_lpm_adjmax ,temp 
+0x3bfa 004714 call ceiling 
+0x3bfb 004715 store 1 ,mem_lpm_adjust 
+0x3bfc 004716 nbranch lpm_adjust_positive ,user 
+0x3bfd 004717 sub pdata ,0 ,pdata 
+:      004718 lpm_adjust_positive:
+0x3bfe 004719 fetcht 3 ,mem_clks_per_lpo 
+0x3bff 004720 iadd temp ,pdata 
+0x3c00 004721 store 3 ,mem_clks_per_lpo 
+:      004722 lpm_clear_counter:
+0x3c01 004723 setarg 0 
+0x3c02 004724 store 4 ,mem_sleep_counter_all 
+0x3c03 004725 rtn 
+:      004728 lpm_hibernate:
+0x3c04 004729 set0 mark_ext_patch ,mark 
+0x3c05 004730 bpatch patch14_5 ,mem_patch14 
+0x3c06 004731 call lpm_write_gpio_wakeup 
+0x3c07 004732 hfetch 4 ,core_lpm_ctrl 
+0x3c08 004733 set0 15 ,pdata 
+0x3c09 004734 hstore 4 ,core_lpm_reg 
+0x3c0a 004735 call lpm_write_ctrl 
+:      004736 lpm_hibernate_normal:
+0x3c0b 004737 arg param_hibernate_clks ,temp 
+0x3c0c 004738 fetch 1 ,mem_lpm_hibernate_switch 
+0x3c0d 004739 store 1 ,mem_lpm_xtalcnt + 4 
+0x3c0e 004740 fetch 1 ,mem_lpm_xtalcnt + 2 
+0x3c0f 004741 set1 cold_wake ,pdata 
+0x3c10 004742 store 1 ,mem_lpm_xtalcnt + 2 
+:      004745 lpm_sleep:
+0x3c11 004746 set0 mark_ext_patch ,mark 
+0x3c12 004747 bpatch patch14_6 ,mem_patch14 
+0x3c13 004748 call xtal_fast_wake 
+0x3c14 004749 fetch 4 ,mem_sleep_counter_all 
+0x3c15 004750 iadd temp ,pdata 
+0x3c16 004751 store 4 ,mem_sleep_counter_all 
+0x3c17 004752 call lpm_save_context 
+0x3c18 004753 fetch 5 ,mem_lpm_xtalcnt 
+0x3c19 004754 hstore 4 ,core_lpm_reg 
+0x3c1a 004755 rshift32 pdata ,rega 
+0x3c1b 004756 until null ,lpo_edge 
+0x3c1c 004757 deposit clkn 
+0x3c1d 004758 store 6 ,mem_sleep_clkn 
+0x3c1e 004759 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+0x3c1f 004760 until null ,lpo_edge 
+0x3c20 004761 until null ,lpo_edge 
+0x3c21 004762 deposit rega 
+0x3c22 004763 hstore 1 ,core_lpm_isogate 
+0x3c23 004764 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+:      004765 lpm_enter_sleep:
+0x3c24 004766 until null ,lpo_edge 
+0x3c25 004767 until null ,lpo_edge 
+0x3c26 004768 hstoret 4 ,core_lpm_reg 
+0x3c27 004769 hjam lpmreg_sel_counter ,core_lpm_wr 
+0x3c28 004770 until null ,never 
+:      004775 lpm_recover_clk:
+0x3c29 004776 set0 mark_ext_patch ,mark 
+0x3c2a 004777 bpatch patch14_7 ,mem_patch14 
+0x3c2b 004778 setarg 0 
+0x3c2c 004779 copy auxcnt ,null 
+0x3c2d 004780 branch lpm_recover_timeout ,zero 
+0x3c2e 004781 hfetch 1 ,core_lpm_xtalcnt 
+0x3c2f 004782 hfetcht 1 ,core_lpm_buckcnt 
+0x3c30 004783 isub temp ,null 
+0x3c31 004784 branch lpm_recover_xtal ,positive 
+0x3c32 004785 deposit temp 
+:      004786 lpm_recover_xtal:
+0x3c33 004787 isub auxcnt ,pdata 
+0x3c34 004788 increase 1 ,pdata 
+:      004789 lpm_recover_timeout:
+0x3c35 004790 increase 8 ,pdata 
+0x3c36 004791 until null ,lpo_edge 
+0x3c37 004792 iadd lpo_time ,pdata 
+0x3c38 004793 fetcht 4 ,mem_sleep_counter 
+0x3c39 004794 iadd temp ,pdata 
+0x3c3a 004795 fetcht 3 ,mem_clks_per_lpo 
+0x3c3b 004796 imul32 temp ,pdata 
+0x3c3c 004797 rshift8 pdata ,pdata 
+0x3c3d 004798 rshift4 pdata ,pdata 
+0x3c3e 004799 increase param_lpm_fix ,pdata 
+0x3c3f 004800 arg 3750 ,temp 
+0x3c40 004801 idiv temp 
+0x3c41 004802 call wait_div_end 
+0x3c42 004803 quotient pdata 
+0x3c43 004804 lshift16 pdata ,pdata 
+0x3c44 004805 remainder temp 
+0x3c45 004806 ior temp ,pdata 
+0x3c46 004807 fetcht 6 ,mem_sleep_clkn 
+0x3c47 004808 call clk_add 
+0x3c48 004809 copy temp ,clkn 
+0x3c49 004810 fetch 6 ,mem_context + coffset_clk_offset 
+0x3c4a 004811 call calc_clke2 
+0x3c4b 004812 deposit clke 
+0x3c4c 004813 store 6 ,mem_pdatatemp 
+0x3c4d 004814 deposit auxcnt 
+0x3c4e 004815 istore 1 ,contw 
+0x3c4f 004816 hfetch 1 ,core_gpio_in1 
+0x3c50 004817 or_into 0xf0 ,pdata 
+0x3c51 004818 istore 1 ,contw 
+0x3c52 004819 rtn 
+:      004821 lpm_dispatch:
+0x3c53 004822 set0 mark_ext_patch ,mark 
+0x3c54 004823 bpatch patch15_0 ,mem_patch15 
+0x3c55 004824 call lpo_calibration 
+0x3c56 004825 fetch 3 ,mem_clks_per_lpo 
+0x3c57 004826 rtn blank 
+0x3c58 004827 fetch 1 ,mem_lpm_mode 
+0x3c59 004828 rtn blank 
+0x3c5a 004829 fetch 1 ,mem_ssp_enable 
+0x3c5b 004830 branch lpm_dispatch_next ,blank 
+0x3c5c 004831 fetch 1 ,mem_sp_local_key_invalid 
+0x3c5d 004832 rtn blank 
+:      004833 lpm_dispatch_next:
+0x3c5e 004834 fetch 1 ,mem_le_sc_calc 
+0x3c5f 004835 nrtn blank 
+0x3c60 004836 call lpm_check_wake_lock 
+0x3c61 004837 nrtn blank 
+0x3c62 004838 fetch 1 ,mem_context 
+0x3c63 004839 compare 3 ,pdata ,0x7 
+0x3c64 004840 nbranch lpm_dispatch_unconn ,true 
+0x3c65 004841 fetch 2 ,mem_context + coffset_tsniff 
+0x3c66 004842 rtn blank 
+0x3c67 004843 rtn wake 
+:      004844 lpm_dispatch_next0:
+0x3c68 004845 set0 mark_ext_patch ,mark 
+0x3c69 004846 bpatch patch15_1 ,mem_patch15 
+0x3c6a 004847 fetcht 1 ,mem_lpm_current_mult 
+0x3c6b 004848 fetch 2 ,mem_context + coffset_tsniff 
+0x3c6c 004849 imul32 temp ,pdata 
+0x3c6d 004850 rshift4 temp ,temp 
+0x3c6e 004851 rshift2 temp ,temp 
+0x3c6f 004852 isub temp ,pdata 
+0x3c70 004853 fetcht 4 ,mem_context + coffset_sniff_anchor 
+0x3c71 004854 iadd temp ,pdata 
+0x3c72 004855 fetcht 1 ,mem_lpm_overhead 
+0x3c73 004856 isub temp ,pdata 
+0x3c74 004857 lshift16 pdata ,alarm 
+:      004858 lpm_dispatch_next1:
+0x3c75 004859 set0 mark_ext_patch ,mark 
+0x3c76 004860 bpatch patch15_2 ,mem_patch15 
+0x3c77 004861 fetch 2 ,mem_context + coffset_rx_window 
+0x3c78 004862 rshift pdata ,pdata 
+0x3c79 004863 call clk2bt 
+0x3c7a 004864 deposit alarm 
+0x3c7b 004865 call clk_diff 
+0x3c7c 004866 copy clke ,temp 
+0x3c7d 004867 call clk_diff_rt 
+0x3c7e 004868 rtn user 
+:      004869 lpm_dispatch_sleep:
+0x3c7f 004870 call clk2lpo 
+:      004871 lpm_dispatch_lpo:
+0x3c80 004872 set0 mark_ext_patch ,mark 
+0x3c81 004873 bpatch patch15_3 ,mem_patch15 
+0x3c82 004874 fetch 1 ,mem_lpm_xtalcnt 
+0x3c83 004875 isub temp ,null 
+0x3c84 004876 branch lpm_clear_counter ,positive 
+0x3c85 004877 storet 4 ,mem_sleep_counter 
+0x3c86 004878 call app_will_enter_lpm 
+0x3c87 004879 call l2cap_lpm_save_txbuf 
+0x3c88 004880 fetcht 4 ,mem_sleep_counter 
+0x3c89 004881 branch lpm_sleep 
+:      004883 lpm_dispatch_unconn:
+0x3c8a 004884 set0 mark_ext_patch ,mark 
+0x3c8b 004885 bpatch patch15_4 ,mem_patch15 
+0x3c8c 004886 fetch 1 ,mem_context 
+0x3c8d 004887 rtnbit1 state_inconn 
+0x3c8e 004888 rtnbit1 state_inpage 
+0x3c8f 004889 fetch 1 ,mem_ssp_enable 
+0x3c90 004890 branch lpm_unconn_nossp ,blank 
+0x3c91 004891 fetch 1 ,mem_sp_local_key_invalid 
+0x3c92 004892 rtn blank 
+:      004893 lpm_unconn_nossp:
+0x3c93 004894 set0 mark_ext_patch ,mark 
+0x3c94 004895 bpatch patch15_5 ,mem_patch15 
+0x3c95 004896 fetch 1 ,mem_le_adv_enable 
+0x3c96 004897 nbranch lpm_unconn_cont ,blank 
+0x3c97 004898 fetch 1 ,mem_scan_mode 
+0x3c98 004899 rtn blank 
+:      004900 lpm_unconn_cont:
+0x3c99 004901 fetch 2 ,mem_lpm_interval 
+0x3c9a 004902 rtn blank 
+:      004903 lpm_sleep_btclk:
+0x3c9b 004904 fetcht 1 ,mem_lpm_overhead 
+0x3c9c 004905 isub temp ,pdata 
+0x3c9d 004906 arg 7500 ,temp 
+0x3c9e 004907 imul32 temp ,pdata 
+0x3c9f 004908 branch lpm_dispatch_sleep 
+:      004910 lpm_set_mult:
+0x3ca0 004911 set0 mark_ext_patch ,mark 
+0x3ca1 004912 bpatch patch15_6 ,mem_patch15 
+0x3ca2 004913 disable wake 
+0x3ca3 004914 fetch 1 ,mem_state 
+0x3ca4 004915 rtnbit0 state_insniff 
+0x3ca5 004916 nbranch lpm_not_match ,match 
+0x3ca6 004917 call lpm_match 
+0x3ca7 004918 fetch 2 ,mem_rx_window_sniff 
+0x3ca8 004919 store 2 ,mem_rx_window 
+0x3ca9 004920 fetch 1 ,mem_arq 
+0x3caa 004921 bbit1 wack ,lpm_mult_short 
+0x3cab 004922 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+0x3cac 004923 call l2cap_malloc_is_fifo_empty 
+0x3cad 004924 nbranch lpm_mult_short ,blank 
+0x3cae 004925 fetch 2 ,mem_cb_bt_set_mult 
+0x3caf 004926 call callback_func 
+:      004927 lpm_mult_wait_timeout:
+0x3cb0 004928 jam 0 ,mem_lpm_current_mult 
+0x3cb1 004929 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+0x3cb2 004930 fetch 1 ,mem_lpm_mult_cnt 
+0x3cb3 004931 branch lpm_mult_long ,blank 
+0x3cb4 004932 increase -1 ,pdata 
+0x3cb5 004933 store 1 ,mem_lpm_mult_cnt 
+0x3cb6 004934 rtn 
+:      004936 lpm_match:
+0x3cb7 004937 jam 0 ,mem_sniff_unint_lost 
+0x3cb8 004938 fetch 3 ,mem_sniff_rcv 
+0x3cb9 004939 increase 1 ,pdata 
+0x3cba 004940 store 3 ,mem_sniff_rcv 
+0x3cbb 004941 rtn 
+:      004943 lpm_not_match:
+0x3cbc 004944 set0 mark_ext_patch ,mark 
+0x3cbd 004945 bpatch patch15_7 ,mem_patch15 
+0x3cbe 004946 fetcht 2 ,mem_rx_window_sniff 
+0x3cbf 004947 rshift temp ,temp 
+0x3cc0 004948 fetch 2 ,mem_rx_window 
+0x3cc1 004949 iadd temp ,pdata 
+0x3cc2 004950 store 2 ,mem_rx_window 
+:      004951 lpm_lost:
+0x3cc3 004952 jam 0 ,mem_lpm_current_mult 
+0x3cc4 004953 fetch 3 ,mem_sniff_lost 
+0x3cc5 004954 increase 1 ,pdata 
+0x3cc6 004955 store 3 ,mem_sniff_lost 
+0x3cc7 004956 fetch 1 ,mem_sniff_unint_lost 
+0x3cc8 004957 increase 1 ,pdata 
+0x3cc9 004958 store 1 ,mem_sniff_unint_lost 
+0x3cca 004959 rtn 
+:      004961 lpm_mult_short:
+0x3ccb 004962 jam 0 ,mem_lpm_current_mult 
+0x3ccc 004963 fetch 1 ,mem_lpm_mult_timeout 
+0x3ccd 004964 store 1 ,mem_lpm_mult_cnt 
+0x3cce 004965 rtn 
+:      004967 lpm_mult_long:
+0x3ccf 004968 fetcht 1 ,mem_lpm_mult 
+0x3cd0 004969 storet 1 ,mem_lpm_current_mult 
+0x3cd1 004970 rtn 
+:      004972 lpm_cal_xtal_startup:
+0x3cd2 004973 set0 mark_ext_patch ,mark 
+0x3cd3 004974 bpatch patch16_0 ,mem_patch16 
+0x3cd4 004975 fetch 1 ,mem_lpm_xtalcnt 
+0x3cd5 004976 nrtn blank 
+0x3cd6 004977 hjam clksel_rc ,core_clksel 
+0x3cd7 004978 setarg 0xf0c 
+0x3cd8 004979 call lpm_write_config 
+0x3cd9 004980 setarg 200000 
+0x3cda 004981 call sleep 
+0x3cdb 004982 until null ,lpo_edge 
+0x3cdc 004983 copy lpo_time ,alarm 
+0x3cdd 004984 call xtal_fast_wake 
+0x3cde 004985 hjam clksel_xtal ,core_clksel 
+0x3cdf 004986 nop 10 
+0x3ce0 004987 until null ,lpo_edge 
+0x3ce1 004988 deposit lpo_time 
+0x3ce2 004989 isub alarm ,pdata 
+0x3ce3 004990 increase 0x30 ,pdata 
+0x3ce4 004991 arg 0xff ,temp 
+0x3ce5 004992 call ceiling 
+0x3ce6 004993 store 1 ,mem_lpm_xtalcnt 
+0x3ce7 004994 nop 30000 
+0x3ce8 004995 nop 30000 
+0x3ce9 004996 nop 30000 
+0x3cea 004997 rtn 
+:      005002 lpm_write_config:
+0x3ceb 005003 arg 0xfff ,contw 
+0x3cec 005004 iand contw ,contw 
+0x3ced 005005 fetch 1 ,mem_lpm_config 
+0x3cee 005006 and_into 0xf0 ,pdata 
+0x3cef 005007 lshift8 pdata ,pdata 
+0x3cf0 005008 ior contw ,pdata 
+0x3cf1 005009 hstore 2 ,core_lpm_reg 
+0x3cf2 005010 ifetch 2 ,contr 
+0x3cf3 005011 istore 2 ,contw 
+:      005013 lpm_write_ctrl:
+0x3cf4 005014 setarg lpmreg_sel_ctrl 
+0x3cf5 005015 branch lpm_write 
+:      005017 lpm_write_ctrl2:
+0x3cf6 005018 setarg lpmreg_sel_ctrl2 
+:      005019 lpm_write:
+0x3cf7 005020 until null ,lpo_edge 
+0x3cf8 005021 hstore 1 ,core_lpm_wr 
+0x3cf9 005022 until null ,lpo_edge 
+0x3cfa 005023 until null ,lpo_edge 
+0x3cfb 005024 rtn 
+:      005027 lpm_write_gpio_wakeup:
+0x3cfc 005028 set0 mark_ext_patch ,mark 
+0x3cfd 005029 bpatch patch16_1 ,mem_patch16 
+0x3cfe 005030 fetch 4 ,mem_gpio_wakeup_low 
+0x3cff 005031 hstore 4 ,core_lpm_reg 
+0x3d00 005032 setarg lpmreg_sel_gpiolow 
+0x3d01 005033 call lpm_write 
+0x3d02 005034 fetch 4 ,mem_gpio_wakeup_high 
+0x3d03 005035 hstore 4 ,core_lpm_reg 
+0x3d04 005036 setarg lpmreg_sel_gpiohigh 
+0x3d05 005037 branch lpm_write 
+:      005039 lpm_get_wake_lock:
+0x3d06 005040 fetch 2 ,mem_lpm_wake_lock 
+0x3d07 005041 qset1 pdata 
+0x3d08 005042 store 2 ,mem_lpm_wake_lock 
+0x3d09 005043 rtn 
+:      005045 lpm_put_wake_lock:
+0x3d0a 005046 fetch 2 ,mem_lpm_wake_lock 
+0x3d0b 005047 qset0 pdata 
+0x3d0c 005048 store 2 ,mem_lpm_wake_lock 
+0x3d0d 005049 rtn 
+:      005053 lpm_check_wake_lock:
+0x3d0e 005054 set0 mark_ext_patch ,mark 
+0x3d0f 005055 bpatch patch16_2 ,mem_patch16 
+0x3d10 005056 call app_check_wake_lock 
+0x3d11 005057 fetch 2 ,mem_lpm_wake_lock 
+0x3d12 005058 copy pdata ,rega 
+0x3d13 005059 fetch 1 ,mem_state_map 
+0x3d14 005060 isolate1 smap_rxlmp ,pdata 
+0x3d15 005061 setflag true ,wake_lock_lmp_rx ,rega 
+0x3d16 005062 fetch 1 ,mem_lmo_opcode1 
+0x3d17 005063 fetcht 1 ,mem_lmo_opcode2 
+0x3d18 005064 iadd temp ,pdata 
+0x3d19 005065 fetcht 1 ,mem_lmp_to_send 
+0x3d1a 005066 iadd temp ,pdata 
+0x3d1b 005067 nsetflag blank ,wake_lock_lmp_tx ,rega 
+:      005068 lpm_check_wake_lock0:
+0x3d1c 005069 set0 mark_ext_patch ,mark 
+0x3d1d 005070 bpatch patch16_3 ,mem_patch16 
+0x3d1e 005071 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x3d1f 005072 fetcht 2 ,mem_l2cap_rxbuff2_len 
+0x3d20 005073 iadd temp ,pdata 
+0x3d21 005074 nsetflag blank ,wake_lock_l2cap_rx ,rega 
+0x3d22 005075 fetch 5 ,mem_ipc_fifo_bt2c51 
+0x3d23 005076 nsetflag blank ,wake_lock_ipc_bt2c51 ,rega 
+0x3d24 005077 fetch 5 ,mem_ipc_fifo_c512bt 
+0x3d25 005078 nsetflag blank ,wake_lock_ipc_c512bt ,rega 
+0x3d26 005079 fetch 1 ,mem_hci_cmd 
+0x3d27 005080 nsetflag blank ,wake_lock_cmd ,rega 
+0x3d28 005081 fetch 1 ,mem_device_option 
+0x3d29 005082 compare dvc_op_module ,pdata ,0xff 
+0x3d2a 005083 call lpm_uart_wake_lock ,true 
+0x3d2b 005084 branch lpm_check_wake_lock_nothci 
+:      005086 lpm_uart_wake_lock:
+0x3d2c 005087 hfetch 2 ,core_uart_rxitems 
+0x3d2d 005088 nsetflag blank ,wake_lock_uart_rx ,rega 
+0x3d2e 005089 hfetch 2 ,core_uart_txitems 
+0x3d2f 005090 nsetflag blank ,wake_lock_uart_tx ,rega 
+0x3d30 005091 rtn 
+:      005093 lpm_check_wake_lock_nothci:
+0x3d31 005094 setarg -8 
+0x3d32 005095 iand rega ,rega 
+:      005096 lpm_check_wake_lock_end:
+0x3d33 005097 copy rega ,pdata 
+0x3d34 005098 store 2 ,mem_lpm_wake_lock 
+0x3d35 005099 rtn blank 
+0x3d36 005100 rtn match 
+0x3d37 005101 enable wake 
+0x3d38 005102 rtn 
+:      005104 lpm_shut_down:
+0x3d39 005105 hfetch 4 ,core_lpm_ctrl 
+0x3d3a 005106 set0 27 ,pdata 
+0x3d3b 005107 hstore 4 ,core_lpm_reg 
+0x3d3c 005108 call lpm_write_ctrl 
+0x3d3d 005109 branch assert 
+:      005111 lpm_disable_exen_output:
+0x3d3e 005112 hfetch 4 ,core_lpm_xtalcnt 
+0x3d3f 005113 set0 20 ,pdata 
+0x3d40 005114 hstore 4 ,core_lpm_reg 
+0x3d41 005115 branch lpm_write_ctrl2 
+:      005117 check_bt_disabled:
+0x3d42 005118 fetch 2 ,mem_chip_functions 
+0x3d43 005119 bbit1 bt_disabled ,assert 
+0x3d44 005120 rtn 
+:      005121 check_ble_disabled:
+0x3d45 005122 fetch 2 ,mem_chip_functions 
+0x3d46 005123 bbit1 ble_disabled ,assert 
+0x3d47 005124 rtn 
+:      005125 check_module_disabled:
+0x3d48 005126 fetch 2 ,mem_chip_functions 
+0x3d49 005127 bbit1 module_disable ,assert 
+0x3d4a 005128 rtn 
+:      005135 app_init:
+0x3d4b 005136 set0 mark_ext_patch ,mark 
+0x3d4c 005137 bpatch patch16_4 ,mem_patch16 
+0x3d4d 005138 fetch 1 ,mem_device_option 
+0x3d4e 005139 branch app_init ,blank 
+0x3d4f 005143 beq dvc_op_kb ,kb_init 
+0x3d50 005144 beq dvc_op_shutter ,shutter_init 
+0x3d51 005145 beq dvc_op_module ,module_init 
+0x3d52 005147 bbit1 dvc_op_mouse ,mouse_init 
+0x3d53 005148 bbit1 dvc_op_keyboard ,kb_init 
+0x3d54 005149 rtn 
+:      005151 app_lpm_init:
+0x3d55 005152 set0 mark_ext_patch ,mark 
+0x3d56 005153 bpatch patch16_5 ,mem_patch16 
+0x3d57 005154 jam 0 ,mem_tester_emulate 
+0x3d58 005155 jam 0 ,mem_debug_config 
+0x3d59 005156 jam 0 ,mem_lch_code 
+0x3d5a 005157 setarg 0 
+0x3d5b 005158 store 5 ,mem_sp_state_start 
+0x3d5c 005159 fetch 1 ,mem_device_option 
+0x3d5d 005160 branch app_lpm_init ,blank 
+0x3d5e 005161 beq dvc_op_module ,module_lpm_init 
+:      005162 app_lpm_init0:
+0x3d5f 005163 rtn 
+:      005166 app_process_idle:
+0x3d60 005167 call ui_dispatch 
+0x3d61 005168 call check_51cmd 
+0x3d62 005169 call app_process_bb_event 
+0x3d63 005170 fetch 2 ,mem_cb_idle_process 
+0x3d64 005171 branch callback_func 
+:      005173 app_process_bt:
+0x3d65 005174 fetch 2 ,mem_cb_bt_process 
+0x3d66 005175 branch callback_func 
+:      005177 app_process_ble:
+0x3d67 005178 fetch 2 ,mem_cb_le_process 
+0x3d68 005179 branch callback_func 
+:      005181 app_process_bb_event:
+0x3d69 005182 set0 mark_ext_patch ,mark 
+0x3d6a 005183 bpatch patch16_6 ,mem_patch16 
+0x3d6b 005185 arg mem_ipc_fifo_bt2c51 ,rega 
+0x3d6c 005186 call fifo_out 
+0x3d6d 005187 rtn blank 
+0x3d6e 005189 copy pdata ,regc 
+0x3d6f 005190 call app_event_normal_process 
+0x3d70 005191 branch app_process_bb_event_priority 
+:      005193 app_discard_event:
+0x3d71 005194 arg 0 ,regc 
+0x3d72 005195 rtn 
+:      005200 app_event_normal_process:
+0x3d73 005201 beq bt_evt_bb_connected ,app_evt_bt_conn 
+0x3d74 005202 beq bt_evt_button_long_pressed ,app_evt_button_long_pressed 
+0x3d75 005203 beq bt_evt_setup_complete ,app_evt_setup_complete 
+0x3d76 005204 beq bt_evt_hid_handshake ,app_evt_hid_handshake 
+0x3d77 005205 beq bt_evt_hid_connected ,app_bb_event_hid_connected 
+0x3d78 005206 beq bt_evt_reconn_failed ,app_bb_event_reconn_failed 
+0x3d79 005207 beq bt_evt_bb_disconnected ,app_bb_event_bb_disconn 
+0x3d7a 005208 beq bt_evt_reconn_page_timeout ,app_bb_event_reconn_failed 
+0x3d7b 005209 beq bt_evt_le_connected ,app_le_event_bb_connected 
+0x3d7c 005210 beq bt_evt_le_disconnected ,app_le_event_bb_disconn 
+0x3d7d 005211 beq bt_evt_reconn_started ,app_event_reconn_start 
+0x3d7e 005212 beq bt_evt_enter_sniff ,app_event_enter_sniff 
+0x3d7f 005213 beq bt_evt_exit_sniff ,app_event_exit_sniff 
+0x3d80 005215 beq bt_evt_ml2cap_conn_refused ,app_event_ml2cap_conn_refused 
+0x3d81 005216 beq bt_evt_linkkey_generate ,app_event_linkkey_generate 
+0x3d82 005217 beq bt_evt_switch_fail_master ,app_event_switch_fail_master 
+0x3d83 005218 beq bt_evt_switch_success_master ,app_event_switch_success 
+0x3d84 005220 and pdata ,0x0f ,temp 
+0x3d85 005221 and_into bt_evt_timer_mask ,pdata 
+0x3d86 005222 beq bt_evt_timer_init ,app_evt_timer 
+0x3d87 005223 rtn 
+:      005225 app_evt_bt_conn:
+0x3d88 005226 fetch 2 ,mem_ui_state_map 
+0x3d89 005227 set1 ui_state_bt_connected ,pdata 
+0x3d8a 005228 store 2 ,mem_ui_state_map 
+0x3d8b 005229 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d8c 005230 set0 app_disc_by_button ,pdata 
+0x3d8d 005231 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d8e 005232 rtn 
+:      005234 app_event_switch_success:
+0x3d8f 005235 jam 0 ,mem_switch_fail_master_count 
+0x3d90 005236 rtn 
+:      005238 app_event_switch_fail_master:
+0x3d91 005239 fetch 1 ,mem_switch_fail_master_count 
+0x3d92 005240 increase 1 ,pdata 
+0x3d93 005241 store 1 ,mem_switch_fail_master_count 
+0x3d94 005242 sub pdata ,1 ,null 
+0x3d95 005243 branch app_bt_role_switch ,positive 
+0x3d96 005244 jam 0 ,mem_switch_fail_master_count 
+0x3d97 005245 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d98 005246 set1 app_disc_switch_fail ,pdata 
+0x3d99 005247 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3d9a 005248 branch app_bt_disconnect 
+:      005250 app_process_bb_event_priority:
+0x3d9b 005251 fetch 2 ,mem_cb_bb_event_process 
+0x3d9c 005252 branch callback_func 
+:      005254 app_check_wake_lock:
+0x3d9d 005255 fetch 2 ,mem_cb_check_wakelock 
+0x3d9e 005256 branch callback_func 
+:      005258 app_will_enter_lpm:
+0x3d9f 005259 fetch 2 ,mem_cb_before_lpm 
+0x3da0 005260 branch callback_func 
+:      005262 app_event_linkkey_generate:
+0x3da1 005263 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3da2 005264 set1 app_disc_after_pairing ,pdata 
+0x3da3 005265 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3da4 005266 branch app_bt_store_reconn_info 
+:      005268 app_event_reconn_start:
+0x3da5 005269 fetch 2 ,mem_ui_state_map 
+0x3da6 005270 set1 ui_state_bt_reconnect ,pdata 
+0x3da7 005271 store 2 ,mem_ui_state_map 
+0x3da8 005272 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3da9 005273 set1 app_disc_after_reconn ,pdata 
+0x3daa 005274 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dab 005275 rtn 
+:      005277 app_evt_setup_complete:
+0x3dac 005278 fetch 2 ,mem_ui_state_map 
+0x3dad 005279 set1 ui_state_bt_setup_complete ,pdata 
+0x3dae 005280 store 2 ,mem_ui_state_map 
+0x3daf 005281 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3db0 005282 set1 app_disc_after_setup_done ,pdata 
+0x3db1 005283 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3db2 005284 rtn 
+:      005286 app_evt_hid_handshake:
+0x3db3 005287 fetch 2 ,mem_ui_state_map 
+0x3db4 005288 set1 ui_state_bt_hid_handshake ,pdata 
+0x3db5 005289 store 2 ,mem_ui_state_map 
+0x3db6 005290 rtn 
+:      005292 app_event_enter_sniff:
+0x3db7 005293 fetch 2 ,mem_ui_state_map 
+0x3db8 005294 set1 ui_state_bt_sniff ,pdata 
+0x3db9 005295 store 2 ,mem_ui_state_map 
+0x3dba 005296 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dbb 005297 set1 app_disc_after_sniff ,pdata 
+0x3dbc 005298 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dbd 005299 rtn 
+:      005301 app_event_exit_sniff:
+0x3dbe 005302 fetch 2 ,mem_ui_state_map 
+0x3dbf 005303 set0 ui_state_bt_sniff ,pdata 
+0x3dc0 005304 store 2 ,mem_ui_state_map 
+0x3dc1 005305 rtn 
+:      005307 app_le_event_bb_connected:
+0x3dc2 005308 fetch 2 ,mem_ui_state_map 
+0x3dc3 005309 set1 ui_state_ble_connected ,pdata 
+0x3dc4 005310 store 2 ,mem_ui_state_map 
+0x3dc5 005311 rtn 
+:      005313 app_le_event_bb_disconn:
+0x3dc6 005314 fetch 2 ,mem_ui_state_map 
+0x3dc7 005315 set0 ui_state_ble_connected ,pdata 
+0x3dc8 005316 store 2 ,mem_ui_state_map 
+0x3dc9 005317 jam 0 ,mem_le_switch_send_data 
+0x3dca 005318 branch app_lpm_mult_disable 
+:      005320 app_bb_event_hid_connected:
+0x3dcb 005321 fetch 2 ,mem_ui_state_map 
+0x3dcc 005322 set1 ui_state_bt_hid_conn ,pdata 
+0x3dcd 005323 store 2 ,mem_ui_state_map 
+0x3dce 005324 rtn 
+:      005326 app_evt_button_long_pressed:
+0x3dcf 005327 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd0 005328 set1 app_disc_by_button ,pdata 
+0x3dd1 005329 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd2 005330 rtn 
+:      005332 app_event_ml2cap_conn_refused:
+0x3dd3 005333 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd4 005334 set1 app_disc_l2cap_refused ,pdata 
+0x3dd5 005335 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3dd6 005336 branch app_bt_disconnect 
+:      005339 app_evt_timer:
+0x3dd7 005340 set0 mark_ext_patch ,mark 
+0x3dd8 005341 bpatch patch16_7 ,mem_patch16 
+0x3dd9 005342 storet 1 ,mem_app_evt_timer_count 
+:      005343 app_evt_100ms_loop:
+0x3dda 005344 fetch 1 ,mem_app_evt_timer_count 
+0x3ddb 005345 rtn blank 
+0x3ddc 005346 increase -1 ,pdata 
+0x3ddd 005347 store 1 ,mem_app_evt_timer_count 
+0x3dde 005348 call ui_button_polling 
+0x3ddf 005349 call app_lpm_wake_auto_lock_timer 
+0x3de0 005350 call app_unsniff_delay_timer 
+0x3de1 005351 call app_discovery_timer 
+0x3de2 005352 fetch 2 ,mem_cb_event_timer 
+0x3de3 005353 call callback_func 
+0x3de4 005354 branch app_evt_100ms_loop 
+:      005356 app_unsniff_delay_timer:
+0x3de5 005357 fetch 1 ,mem_unsniff2sniff_timer_count 
+0x3de6 005358 rtn blank 
+0x3de7 005359 increase -1 ,pdata 
+0x3de8 005360 store 1 ,mem_unsniff2sniff_timer_count 
+0x3de9 005361 nrtn blank 
+0x3dea 005362 call context_check_idle 
+0x3deb 005363 branch app_bt_enter_sniff ,zero 
+0x3dec 005364 rtn 
+:      005365 app_discovery_timer:
+0x3ded 005366 fetch 2 ,mem_discovery_timeout_timer_count 
+0x3dee 005367 rtn blank 
+0x3def 005368 increase -1 ,pdata 
+0x3df0 005369 store 2 ,mem_discovery_timeout_timer_count 
+0x3df1 005370 nrtn blank 
+0x3df2 005371 call app_bt_stop_discovery 
+0x3df3 005372 call app_led_off 
+0x3df4 005373 fetch 2 ,mem_cb_discovry_timeout 
+0x3df5 005374 branch callback_func 
+:      005376 app_bb_event_reconn_failed:
+0x3df6 005377 call app_disconn_reason_flag_clear 
+:      005378 app_clear_reconnect_flag:
+0x3df7 005379 fetch 2 ,mem_ui_state_map 
+0x3df8 005380 set0 ui_state_bt_reconnect ,pdata 
+0x3df9 005381 store 2 ,mem_ui_state_map 
+0x3dfa 005382 rtn 
+:      005384 app_bb_event_bb_disconn:
+0x3dfb 005385 jam 0 ,mem_unsniff2sniff_timer_count 
+0x3dfc 005386 fetch 2 ,mem_ui_state_map 
+0x3dfd 005387 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
+0x3dfe 005388 isolate0 ui_state_bt_setup_complete ,pdata 
+0x3dff 005389 call app_discard_event ,true 
+:      005390 app_bb_event_bb_reconn_disconn:
+0x3e00 005391 set0 mark_ext_patch ,mark 
+0x3e01 005392 bpatch patch17_0 ,mem_patch17 
+0x3e02 005393 fetch 2 ,mem_ui_state_map 
+0x3e03 005394 set0 ui_state_bt_connected ,pdata 
+0x3e04 005395 set0 ui_state_bt_setup_complete ,pdata 
+0x3e05 005396 set0 ui_state_bt_hid_conn ,pdata 
+0x3e06 005397 set0 ui_state_bt_hid_handshake ,pdata 
+0x3e07 005398 set0 ui_state_bt_reconnect ,pdata 
+0x3e08 005399 store 2 ,mem_ui_state_map 
+0x3e09 005400 branch app_lpm_mult_disable 
+:      005402 app_bb_hibernate:
+0x3e0a 005403 call app_disconn_reason_clear 
+0x3e0b 005404 branch app_enter_hibernate 
+:      005407 app_disconn_reason_clear:
+0x3e0c 005408 setarg 0 
+0x3e0d 005409 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3e0e 005410 rtn 
+:      005411 app_disconn_reason_flag_clear:
+0x3e0f 005412 setarg 0 
+0x3e10 005413 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e11 005414 rtn 
+:      005417 app_disconn_reason_collect_bt:
+0x3e12 005418 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e13 005419 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3e14 005420 setarg 0 
+0x3e15 005421 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e16 005422 rtn 
+:      005424 app_disconn_reason_collect_ble:
+0x3e17 005425 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e18 005426 set1 app_disc_ble ,pdata 
+0x3e19 005427 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3e1a 005428 setarg 0 
+0x3e1b 005429 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e1c 005430 rtn 
+:      005438 app_check_sniff:
+0x3e1d 005439 fetch 1 ,mem_ui_state_map 
+0x3e1e 005440 isolate1 ui_state_bt_sniff ,pdata 
+0x3e1f 005441 rtn 
+:      005449 app_initflag_store:
+0x3e20 005450 setarg eeprom_init_flag 
+:      005451 app_flag_store:
+0x3e21 005452 store 2 ,mem_timeup 
+0x3e22 005453 set0 mark_ext_patch ,mark 
+0x3e23 005454 bpatch patch17_1 ,mem_patch17 
+0x3e24 005455 arg 2 ,temp 
+0x3e25 005456 arg mem_timeup ,rega 
+0x3e26 005457 arg eeprom_module_init_flag ,regb 
+0x3e27 005458 branch iicd_write_eep_data 
+:      005461 app_initflag_check:
+0x3e28 005462 set0 mark_ext_patch ,mark 
+0x3e29 005463 bpatch patch17_2 ,mem_patch17 
+0x3e2a 005464 arg 2 ,temp 
+0x3e2b 005465 arg mem_pdatatemp ,rega 
+0x3e2c 005466 arg eeprom_module_init_flag ,regb 
+0x3e2d 005467 call iicd_read_eep_data 
+0x3e2e 005468 fetch 2 ,mem_pdatatemp 
+0x3e2f 005469 arg eeprom_init_flag ,temp 
+0x3e30 005470 isub temp ,null 
+0x3e31 005471 rtn 
+:      005474 app_start_auto_sniff:
+0x3e32 005475 fetch 1 ,mem_unsniff2sniff_timer 
+0x3e33 005476 store 1 ,mem_unsniff2sniff_timer_count 
+0x3e34 005477 rtn 
+:      005479 app_get_lpm_wake_lock:
+0x3e35 005480 arg wake_lock_app ,queue 
+0x3e36 005481 branch lpm_get_wake_lock 
+:      005483 app_put_lpm_wake_lock:
+0x3e37 005484 arg wake_lock_app ,queue 
+0x3e38 005485 branch lpm_put_wake_lock 
+:      005487 app_lpm_wake_auto_lock:
+0x3e39 005488 jam lpm_wake_up_delay_timer ,mem_wake_up_delay_timer 
+0x3e3a 005489 branch app_get_lpm_wake_lock 
+:      005490 app_lpm_wake_auto_lock_timer:
+0x3e3b 005491 fetch 1 ,mem_wake_up_delay_timer 
+0x3e3c 005492 rtn blank 
+0x3e3d 005493 increase -1 ,pdata 
+0x3e3e 005494 store 1 ,mem_wake_up_delay_timer 
+0x3e3f 005495 nrtn blank 
+0x3e40 005496 branch app_put_lpm_wake_lock 
+:      005498 app_l2cap_flow_control_enable:
+0x3e41 005499 jam l2cap_flow_ctrl_enable ,mem_l2cap_flow_ctrl_flag 
+0x3e42 005500 rtn 
+:      005502 app_l2cap_flow_control_disable:
+0x3e43 005503 jam l2cap_flow_ctrl_disable ,mem_l2cap_flow_ctrl_flag 
+0x3e44 005504 rtn 
+:      005506 app_bt_set_pincode:
+0x3e45 005507 jam bt_cmd_set_pin_code ,mem_fifo_temp 
+0x3e46 005508 branch ui_ipc_send_cmd 
+:      005510 app_bt_role_switch:
+0x3e47 005511 jam bt_cmd_role_switch ,mem_fifo_temp 
+0x3e48 005512 branch ui_ipc_send_cmd 
+:      005514 app_bt_start_reconnect:
+0x3e49 005515 set0 mark_ext_patch ,mark 
+0x3e4a 005516 bpatch patch17_3 ,mem_patch17 
+0x3e4b 005517 fetch 1 ,mem_app_connection_options 
+0x3e4c 005518 store 1 ,mem_connection_options 
+0x3e4d 005519 jam app_flag_reconnect ,mem_reconnect_flag 
+0x3e4e 005520 jam bt_cmd_reconnect ,mem_fifo_temp 
+0x3e4f 005521 branch ui_ipc_send_cmd 
+:      005523 app_bt_reconnect_cancel:
+0x3e50 005524 jam bt_cmd_bb_reconn_cancel ,mem_fifo_temp 
+0x3e51 005525 branch ui_ipc_send_cmd 
+:      005527 app_bt_disconnect:
+0x3e52 005528 jam bt_cmd_disconnect ,mem_fifo_temp 
+0x3e53 005529 branch ui_ipc_send_cmd 
+:      005531 app_bt_start_discovery_short:
+0x3e54 005532 fetch 2 ,mem_discovery_timeout 
+0x3e55 005533 store 2 ,mem_discovery_timeout_timer_count 
+:      005534 app_bt_start_discovery_led_blink:
+0x3e56 005535 call app_led_start_blink 
+:      005536 app_bt_start_discovery:
+0x3e57 005537 jam bt_cmd_start_discovery ,mem_fifo_temp 
+0x3e58 005538 branch ui_ipc_send_cmd 
+:      005540 app_bt_stop_discovery:
+0x3e59 005541 setarg 0 
+0x3e5a 005542 store 2 ,mem_discovery_timeout_timer_count 
+0x3e5b 005543 jam bt_cmd_stop_discovery ,mem_fifo_temp 
+0x3e5c 005544 branch ui_ipc_send_cmd 
+:      005546 app_ble_start_direct_adv:
+0x3e5d 005547 jam bt_cmd_start_direct_adv ,mem_fifo_temp 
+0x3e5e 005548 branch ui_ipc_send_cmd 
+:      005550 app_ble_stop_direct_adv:
+0x3e5f 005551 jam bt_cmd_stop_direct_adv ,mem_fifo_temp 
+0x3e60 005552 branch ui_ipc_send_cmd 
+:      005554 app_ble_stop_adv:
+0x3e61 005555 jam bt_cmd_stop_adv ,mem_fifo_temp 
+0x3e62 005556 branch ui_ipc_send_cmd 
+:      005558 app_ble_start_adv:
+0x3e63 005559 jam bt_cmd_start_adv ,mem_fifo_temp 
+0x3e64 005560 branch ui_ipc_send_cmd 
+:      005562 app_ble_start_scan:
+0x3e65 005563 jam bt_cmd_le_start_scan ,mem_fifo_temp 
+0x3e66 005564 branch ui_ipc_send_cmd 
+:      005566 app_ble_stop_scan:
+0x3e67 005567 jam bt_cmd_le_stop_scan ,mem_fifo_temp 
+0x3e68 005568 branch ui_ipc_send_cmd 
+:      005570 app_ble_start_conn:
+0x3e69 005571 jam bt_cmd_le_start_conn ,mem_fifo_temp 
+0x3e6a 005572 branch ui_ipc_send_cmd 
+:      005574 app_ble_disconnect:
+0x3e6b 005575 jam bt_cmd_le_disconnect ,mem_fifo_temp 
+0x3e6c 005576 branch ui_ipc_send_cmd 
+:      005578 app_ble_start_write:
+0x3e6d 005579 jam bt_cmd_le_start_write ,mem_fifo_temp 
+0x3e6e 005580 branch ui_ipc_send_cmd 
+:      005582 app_led_start_blink:
+0x3e6f 005583 jam bt_cmd_led_blink ,mem_fifo_temp 
+0x3e70 005584 branch ui_ipc_send_cmd 
+:      005586 app_led_on:
+0x3e71 005587 jam bt_cmd_led_on ,mem_fifo_temp 
+0x3e72 005588 branch ui_ipc_send_cmd 
+:      005590 app_led_stop_blink:
+:      005591 app_led_off:
+0x3e73 005592 jam bt_cmd_led_off ,mem_fifo_temp 
+0x3e74 005593 branch ui_ipc_send_cmd 
+:      005595 app_enter_hibernate:
+0x3e75 005596 jam bt_cmd_enter_hibernate ,mem_fifo_temp 
+0x3e76 005597 branch ui_ipc_send_cmd 
+:      005599 app_bt_sniff_exit:
+0x3e77 005600 jam bt_cmd_exit_sniff ,mem_fifo_temp 
+0x3e78 005601 branch ui_ipc_send_cmd 
+:      005603 app_bt_enter_sniff:
+0x3e79 005604 jam bt_cmd_enter_sniff ,mem_fifo_temp 
+0x3e7a 005605 branch ui_ipc_send_cmd 
+:      005607 app_ble_store_reconn_info:
+0x3e7b 005608 jam bt_cmd_store_reconn_info_le ,mem_fifo_temp 
+0x3e7c 005609 branch ui_ipc_send_cmd 
+:      005611 app_bt_store_reconn_info:
+0x3e7d 005612 jam bt_cmd_store_reconn_info_bt ,mem_fifo_temp 
+0x3e7e 005613 branch ui_ipc_send_cmd 
+:      005615 app_lpm_mult_enable:
+0x3e7f 005616 set1 mark_lpm_mult_enable ,mark 
+0x3e80 005617 rtn 
+:      005619 app_lpm_mult_disable:
+0x3e81 005620 set0 mark_lpm_mult_enable ,mark 
+0x3e82 005621 rtn 
+:      005626 hci_rx_h4:
+0x3e83 005627 set0 mark_ext_patch ,mark 
+0x3e84 005628 bpatch patch17_4 ,mem_patch17 
+0x3e85 005629 fetch 1 ,mem_hci_cmd 
+0x3e86 005630 nrtn blank 
+:      005631 hci_rx_h4_1:
+0x3e87 005632 call hci_h4_parse_packet 
+0x3e88 005633 ncall h4_rx_discard_packet ,user 
+0x3e89 005634 rtn 
+:      005636 hci_h4_parse_packet:
+0x3e8a 005637 set0 mark_ext_patch ,mark 
+0x3e8b 005638 bpatch patch17_5 ,mem_patch17 
+0x3e8c 005639 copy contru ,rega 
+0x3e8d 005640 arg 4 ,temp 
+0x3e8e 005641 ifetch 1 ,contru 
+0x3e8f 005642 beq hci_h4_type_cmd ,hci_h4_parse_packet_wait_len 
+0x3e90 005643 increase 1 ,temp 
+0x3e91 005644 beq hci_h4_type_acl ,hci_h4_parse_packet_wait_len 
+0x3e92 005645 copy contru ,pdata 
+0x3e93 005646 hstore 2 ,core_uart_rrptr 
+0x3e94 005647 rtn 
+:      005648 hci_h4_parse_packet_wait_len:
+0x3e95 005649 hfetch 2 ,core_uart_rxitems 
+0x3e96 005650 isub temp ,null 
+0x3e97 005651 nbranch hci_h4_parse_packet_wait_len ,positive 
+0x3e98 005653 disable user 
+0x3e99 005654 copy rega ,contru 
+0x3e9a 005655 call h4_get_rx_payload_len 
+0x3e9b 005656 iadd temp ,temp 
+:      005657 hci_h4_parse_packet_wait:
+0x3e9c 005658 hfetch 2 ,core_uart_rxitems 
+0x3e9d 005659 isub temp ,null 
+0x3e9e 005660 nbranch hci_h4_parse_packet_wait ,positive 
+0x3e9f 005661 copy rega ,contru 
+0x3ea0 005662 ifetch 1 ,contru 
+0x3ea1 005663 beq hci_h4_type_cmd ,process_hci_cmd 
+0x3ea2 005664 branch assert 
+:      005666 h4_rx_discard_packet:
+0x3ea3 005667 set0 mark_ext_patch ,mark 
+0x3ea4 005668 bpatch patch17_6 ,mem_patch17 
+0x3ea5 005669 hfetch 2 ,core_uart_rrptr 
+0x3ea6 005670 iforce contru 
+0x3ea7 005671 call h4_get_rx_payload_len 
+0x3ea8 005672 iadd contru ,contru 
+0x3ea9 005673 deposit contru 
+0x3eaa 005674 hstore 2 ,core_uart_rrptr 
+0x3eab 005675 rtn 
+:      005680 h4_get_rx_payload_len:
+0x3eac 005681 ifetch 1 ,contru 
+0x3ead 005682 increase 2 ,contru 
+0x3eae 005683 beq hci_h4_type_acl ,h4_get_rx_payload_len_acl 
+0x3eaf 005684 ifetch 1 ,contru 
+0x3eb0 005685 rtn 
+:      005686 h4_get_rx_payload_len_acl:
+0x3eb1 005687 ifetch 2 ,contru 
+0x3eb2 005688 rtn 
+:      005690 h4_get_tx_ptr:
+0x3eb3 005691 hfetch 2 ,core_uart_twptr 
+0x3eb4 005692 increase -5 ,contwu 
+0x3eb5 005693 iadd contwu ,contwu 
+0x3eb6 005694 rtn 
+:      005696 h4_send_packet_event:
+0x3eb7 005697 arg hci_h4_type_event ,temp 
+0x3eb8 005698 branch h4_send_packet 
+:      005699 h4_send_packet_acl:
+0x3eb9 005700 arg hci_h4_type_acl ,temp 
+:      005701 h4_send_packet:
+0x3eba 005702 set0 mark_ext_patch ,mark 
+0x3ebb 005703 bpatch patch17_7 ,mem_patch17 
+0x3ebc 005704 increase 1 ,loopcnt 
+0x3ebd 005705 hfetch 2 ,core_uart_twptr 
+0x3ebe 005706 copy pdata ,contwu 
+0x3ebf 005707 copy loopcnt ,pdata 
+0x3ec0 005708 istoret 1 ,contwu 
+0x3ec1 005709 increase -1 ,pdata 
+0x3ec2 005710 iadd contwu ,contwu 
+0x3ec3 005711 copy contwu ,pdata 
+0x3ec4 005712 store 2 ,mem_hci_acl_tx_trigger_wptr 
+0x3ec5 005713 copy temp ,pdata 
+0x3ec6 005714 rtneq hci_h4_type_acl 
+0x3ec7 005715 fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+0x3ec8 005716 hstore 2 ,core_uart_twptr 
+0x3ec9 005717 branch h4_send_acl_trigger_clear 
+:      005720 h4_send_acl_trigger_clear:
+0x3eca 005721 setarg 0 
+0x3ecb 005722 store 2 ,mem_hci_acl_tx_trigger_wptr 
+0x3ecc 005723 rtn 
+:      005730 hci_init:
+0x3ecd 005731 set0 mark_ext_patch ,mark 
+0x3ece 005732 bpatch patch18_0 ,mem_patch18 
+0x3ecf 005733 rtn wake 
+0x3ed0 005734 setarg hci_idle_dispatch 
+0x3ed1 005735 store 2 ,mem_cb_idle_process 
+0x3ed2 005737 setarg uart_baud_115200 
+0x3ed3 005738 store uart_baud_len ,mem_baud 
+:      005739 hci_lpm_init:
+0x3ed4 005740 set0 mark_ext_patch ,mark 
+0x3ed5 005741 bpatch patch18_1 ,mem_patch18 
+0x3ed6 005742 setarg mem_h5rx_buf 
+0x3ed7 005743 hstore 2 ,core_uart_rsaddr 
+0x3ed8 005744 setarg mem_h5rx_buf_end 
+0x3ed9 005745 hstore 2 ,core_uart_readdr 
+0x3eda 005746 setarg mem_h5tx_buf 
+0x3edb 005747 hstore 2 ,core_uart_tsaddr 
+0x3edc 005748 call hci_sel_init 
+:      005749 hci_reinit:
+0x3edd 005750 hjam 0x0 ,core_uart_ctrl 
+0x3ede 005751 setarg mem_h5tx_buf 
+0x3edf 005752 hstore 2 ,core_uart_twptr 
+0x3ee0 005753 hstore 2 ,core_uart_trptrp 
+0x3ee1 005754 setarg mem_h5rx_buf 
+0x3ee2 005755 hstore 2 ,core_uart_rrptr 
+0x3ee3 005756 store 2 ,mem_h5rx_rptr 
+:      005757 hci_init_common:
+0x3ee4 005758 set0 mark_ext_patch ,mark 
+0x3ee5 005759 bpatch patch18_2 ,mem_patch18 
+0x3ee6 005760 hfetch 2 ,core_clkoff 
+0x3ee7 005761 set0 clock_off_uart ,pdata 
+0x3ee8 005762 hstore 2 ,core_clkoff 
+0x3ee9 005763 call uart_set_baud_by_mem 
+0x3eea 005764 hjam uartclk_dpll ,core_uart_clksel 
+0x3eeb 005765 hjam uart_ctrl_h4 ,core_uart_ctrl 
+0x3eec 005766 rtn 
+:      005768 hci_sel_init:
+0x3eed 005769 setarg mem_h5tx_buf_end 
+0x3eee 005770 hstore 2 ,core_uart_teaddr 
+0x3eef 005771 hfetch 1 ,core_gpio_sel1 
+0x3ef0 005772 or_into 0x07 ,pdata 
+0x3ef1 005773 hstore 1 ,core_gpio_sel1 
+0x3ef2 005774 jam 0xff ,mem_ucode_id_local 
+0x3ef3 005775 rtn 
+:      005778 hci_rx_packet:
+0x3ef4 005779 set0 mark_ext_patch ,mark 
+0x3ef5 005780 bpatch patch18_3 ,mem_patch18 
+0x3ef6 005781 hfetch 1 ,core_uart_status 
+0x3ef7 005782 iforce regb 
+0x3ef8 005783 bbit0 uart_status_rx_fifo_empty ,hci_rx_packet_cont 
+0x3ef9 005784 hfetch 2 ,core_uart_rxitems 
+0x3efa 005785 iforce regc 
+0x3efb 005786 arg 0x44f ,temp 
+0x3efc 005787 isub temp ,null 
+0x3efd 005788 nrtn zero 
+:      005789 hci_rx_packet_cont:
+0x3efe 005790 hfetch 2 ,core_uart_rrptr 
+0x3eff 005791 iforce contru 
+0x3f00 005792 branch hci_rx_h4 
+:      005794 uart_send_byte:
+0x3f01 005795 hfetcht 1 ,core_uart_status 
+0x3f02 005796 isolate1 6 ,temp 
+0x3f03 005797 branch uart_send_byte ,true 
+0x3f04 005798 hstore 1 ,core_uart_txd 
+0x3f05 005799 rtn 
+:      005801 process_hci_cmd:
+0x3f06 005802 set0 mark_ext_patch ,mark 
+0x3f07 005803 bpatch patch18_4 ,mem_patch18 
+0x3f08 005804 fetch 1 ,mem_hci_cmd 
+0x3f09 005805 branch process_hci_cmd_cont ,blank 
+0x3f0a 005806 enable user 
+0x3f0b 005807 rtn 
+:      005808 process_hci_cmd_cont:
+0x3f0c 005809 ifetch 2 ,contru 
+0x3f0d 005810 iforce alarm 
+0x3f0e 005811 iforce queue 
+0x3f0f 005812 ifetch 1 ,contru 
+0x3f10 005813 iforce temp 
+0x3f11 005814 rshift2 alarm ,pdata 
+0x3f12 005815 rshift8 pdata ,pdata 
+0x3f13 005816 beq hci_ogf_vendor_specific ,phci_grp_vendor_specific 
+0x3f14 005817 rtn 
+:      005820 phci_grp_vendor_specific:
+0x3f15 005821 set0 mark_ext_patch ,mark 
+0x3f16 005822 bpatch patch18_5 ,mem_patch18 
+0x3f17 005823 deposit queue 
+0x3f18 005824 beq hci_vendor_cmd_reset ,hci_normal_reply 
+0x3f19 005825 beq hci_vendor_cmd_chipid ,phci_grp_vendor_chipid 
+0x3f1a 005826 beq hci_vendor_cmd_baud ,phci_grp_vendor_baud 
+0x3f1b 005827 beq hci_vendor_cmd_patch ,phci_grp_vendor_patch 
+0x3f1c 005828 beq hci_vendor_cmd_patch_done ,phci_grp_vendor_done 
+0x3f1d 005829 beq hci_vendor_cmd_echo ,hci_normal_reply 
+0x3f1e 005830 beq hci_vendor_cmd_bdaddr ,phci_grp_vendor_bdaddr 
+0x3f1f 005831 beq hci_vendor_cmd_enter_lpm ,phci_grp_vendor_enter_lpm 
+0x3f20 005833 beq hci_vendor_cmd_mem ,phci_grp_vendor_mem 
+0x3f21 005834 beq hci_vendor_cmd_eep ,phci_grp_vendor_eep 
+0x3f22 005835 branch hci_normal_reply 
+:      005837 phci_grp_vendor_enter_lpm:
+0x3f23 005838 call hci_normal_reply 
+0x3f24 005839 call wait_uarttx 
+0x3f25 005840 call gpio_pu_uart_tx 
+:      005841 hci_enter_lpm:
+0x3f26 005842 call app_put_lpm_wake_lock 
+0x3f27 005843 call app_l2cap_flow_control_enable 
+0x3f28 005844 branch gpio_rx_config_input_with_pu 
+:      005846 hci_exit_lpm:
+0x3f29 005847 jam hci_rx_ready ,mem_hci_lt_rx_state 
+0x3f2a 005848 call app_get_lpm_wake_lock 
+0x3f2b 005849 call hci_lpm_init 
+0x3f2c 005850 branch app_l2cap_flow_control_disable 
+:      005852 phci_grp_vendor_chipid:
+0x3f2d 005853 call hci_get_cmd_complete_ptr 
+0x3f2e 005854 hfetch 2 ,core_chipid 
+0x3f2f 005855 istore 2 ,contwu 
+0x3f30 005856 force 6 ,loopcnt 
+0x3f31 005857 branch hci_command_complete 
+:      005859 phci_grp_vendor_baud:
+0x3f32 005860 ifetch 2 ,contru 
+0x3f33 005861 store 2 ,mem_baud 
+0x3f34 005862 hstore 2 ,core_uart_baud 
+0x3f35 005863 rtn 
+:      005865 phci_grp_vendor_patch:
+0x3f36 005867 ifetch 1 ,contru 
+0x3f37 005868 copy pdata ,temp 
+0x3f38 005869 hstore 1 ,core_ucode_low 
+0x3f39 005870 ifetch 1 ,contru 
+0x3f3a 005871 iadd temp ,temp 
+0x3f3b 005872 set1 7 ,pdata 
+0x3f3c 005873 hstore 1 ,core_ucode_ctrl 
+0x3f3d 005874 ifetch 1 ,contru 
+0x3f3e 005875 iadd temp ,temp 
+0x3f3f 005876 copy pdata ,loopcnt 
+:      005877 phci_grp_vendor_patch_loop:
+0x3f40 005878 ifetch 1 ,contru 
+0x3f41 005879 hstore 1 ,core_ucode_data 
+0x3f42 005880 iadd temp ,temp 
+0x3f43 005881 loop phci_grp_vendor_patch_loop 
+0x3f44 005882 and temp ,0xff ,temp 
+0x3f45 005883 ifetch 1 ,contru 
+0x3f46 005884 isub temp ,null 
+0x3f47 005885 nbranch phci_grp_vendor_patch_bad ,zero 
+0x3f48 005886 branch hci_normal_reply 
+:      005888 phci_grp_vendor_done:
+0x3f49 005889 arg 0x20 ,loopcnt 
+0x3f4a 005890 arg mem_patch00 ,contw 
+0x3f4b 005891 arg 0 ,temp 
+:      005892 phci_grp_vendor_done_loop:
+0x3f4c 005893 ifetch 1 ,contru 
+0x3f4d 005894 istore 1 ,contw 
+0x3f4e 005895 iadd temp ,temp 
+0x3f4f 005896 loop phci_grp_vendor_done_loop 
+0x3f50 005897 and temp ,0xff ,temp 
+0x3f51 005898 ifetch 1 ,contru 
+0x3f52 005899 isub temp ,null 
+0x3f53 005900 nbranch phci_grp_vendor_patch_bad ,zero 
+0x3f54 005901 hjam 0 ,core_ucode_ctrl 
+0x3f55 005902 call hci_normal_reply 
+0x3f56 005903 call h4_rx_discard_packet 
+0x3f57 005904 branch soft_reset 
+:      005906 phci_grp_vendor_patch_bad:
+0x3f58 005907 hjam 0 ,core_ucode_ctrl 
+0x3f59 005908 branch start 
+:      005910 phci_grp_vendor_bdaddr:
+0x3f5a 005911 ifetch 6 ,contru 
+0x3f5b 005912 store 6 ,mem_lap 
+0x3f5c 005913 branch hci_normal_reply 
+:      005916 phci_grp_vendor_mem:
+0x3f5d 005917 ifetch 1 ,contru 
+0x3f5e 005918 store 1 ,mem_hci_curr_len 
+0x3f5f 005919 copy pdata ,loopcnt 
+0x3f60 005920 ifetch 2 ,contru 
+0x3f61 005921 store 2 ,mem_hci_curr_target 
+0x3f62 005922 copy pdata ,contw 
+0x3f63 005923 call uart_copy_rx_bytes 
+0x3f64 005924 branch hci_normal_reply 
+:      005927 phci_grp_vendor_eep:
+0x3f65 005928 ifetch 1 ,contru 
+0x3f66 005929 store 1 ,mem_hci_curr_len 
+0x3f67 005930 copy pdata ,loopcnt 
+0x3f68 005931 ifetch 2 ,contru 
+0x3f69 005932 store 2 ,mem_hci_curr_target 
+0x3f6a 005933 arg mem_l2cap_rxbuff1 ,contw 
+0x3f6b 005934 call uart_copy_rx_bytes 
+0x3f6c 005935 fetcht 1 ,mem_hci_curr_len 
+0x3f6d 005936 arg mem_l2cap_rxbuff1 ,rega 
+0x3f6e 005937 fetch 2 ,mem_hci_curr_target 
+0x3f6f 005938 branch iicd_write_ota_data 
+:      005943 hci_normal_reply:
+0x3f70 005944 set0 mark_ext_patch ,mark 
+0x3f71 005945 bpatch patch18_6 ,mem_patch18 
+0x3f72 005946 force 4 ,loopcnt 
+:      005947 hci_command_complete:
+0x3f73 005948 call hci_get_payload_ptr 
+0x3f74 005949 force 0x1 ,pdata 
+0x3f75 005950 istore 1 ,contwu 
+0x3f76 005951 deposit alarm 
+0x3f77 005952 istore 3 ,contwu 
+0x3f78 005953 force hci_event_command_complete ,queue 
+:      005954 hci_send_event:
+0x3f79 005955 set0 mark_ext_patch ,mark 
+0x3f7a 005956 bpatch patch18_7 ,mem_patch18 
+0x3f7b 005957 call hci_get_packet_ptr 
+0x3f7c 005958 deposit queue 
+0x3f7d 005959 istore 1 ,contwu 
+0x3f7e 005960 deposit loopcnt 
+0x3f7f 005961 istore 1 ,contwu 
+:      005962 hci_send_event_raw:
+0x3f80 005963 force 5 ,queue 
+0x3f81 005964 increase 2 ,loopcnt 
+:      005965 hci_send_packet:
+0x3f82 005966 branch h4_send_packet_event 
+:      005968 hci_send_commu_ready_event:
+0x3f83 005969 force hci_event_vendor_specific ,queue 
+0x3f84 005970 call hci_get_payload_ptr 
+0x3f85 005971 setarg hci_vendor_event_commu_ready 
+0x3f86 005972 istore 1 ,contwu 
+0x3f87 005973 force 1 ,loopcnt 
+0x3f88 005974 branch hci_send_event 
+:      005976 hci_get_cmd_complete_ptr:
+0x3f89 005977 force 12 ,contwu 
+0x3f8a 005978 branch hci_get_tx_ptr 
+:      005980 hci_get_payload_ptr:
+0x3f8b 005981 force 8 ,contwu 
+0x3f8c 005982 branch hci_get_tx_ptr 
+:      005984 hci_get_packet_ptr:
+0x3f8d 005985 force 6 ,contwu 
+:      005986 hci_get_tx_ptr:
+0x3f8e 005987 branch h4_get_tx_ptr 
+:      005991 calc_tx_crc16:
+0x3f8f 005992 pulse crc16 
+0x3f90 005993 enable enable_crc 
+:      005994 crcloop:
+0x3f91 005995 ifetch 1 ,contwu 
+0x3f92 005996 inject bucket ,8 
+0x3f93 005997 loop crcloop 
+0x3f94 005998 enable enable_parity 
+0x3f95 005999 inject bucket ,16 
+0x3f96 006000 disable enable_parity 
+0x3f97 006001 disable enable_crc 
+0x3f98 006002 disable crc16 
+0x3f99 006003 byteswap pdata ,pdata 
+0x3f9a 006004 rtn 
+:      006008 cmd_exit:
+0x3f9b 006009 jam 0 ,mem_hci_cmd 
+0x3f9c 006010 rtn 
+:      006011 cmd_check_plap:
+0x3f9d 006012 fetch 6 ,mem_hci_plap 
+0x3f9e 006013 fetcht 6 ,mem_plap 
+0x3f9f 006014 isub temp ,null 
+0x3fa0 006015 rtn 
+:      006020 cmd_pair:
+0x3fa1 006021 fetch 1 ,mem_op 
+0x3fa2 006022 bbit1 op_inrand_req ,cmd_pair_passive 
+0x3fa3 006023 call tid_initiate 
+0x3fa4 006024 jam lmp_in_rand ,mem_lmo_opcode2 
+0x3fa5 006025 branch cmd_exit 
+:      006026 cmd_pair_passive:
+0x3fa6 006027 set0 op_inrand_req ,pdata 
+0x3fa7 006028 store 1 ,mem_op 
+0x3fa8 006029 call lmp_accept_inrand 
+0x3fa9 006030 setarg 0 
+0x3faa 006031 setflag master ,smap_lmptid ,pdata 
+0x3fab 006032 store 1 ,mem_lmo_tid2 
+0x3fac 006033 branch cmd_exit 
+0x3fad 006034 rtn 
+:      006035 cmd_in_sniff:
+0x3fae 006036 jam lmp_sniff_req ,mem_lmo_opcode2 
+0x3faf 006037 arg mem_sniff_payload ,contw 
+0x3fb0 006038 setarg 0 
+0x3fb1 006039 isolate1 27 ,clke_bt 
+0x3fb2 006040 setflag true ,1 ,pdata 
+0x3fb3 006041 istore 1 ,contw 
+0x3fb4 006042 setarg 0 
+0x3fb5 006043 istore 2 ,contw 
+0x3fb6 006044 fetch 2 ,mem_sniff_param_interval 
+0x3fb7 006045 istore 2 ,contw 
+0x3fb8 006046 fetch 1 ,mem_sniff_param_attempt 
+0x3fb9 006047 istore 2 ,contw 
+0x3fba 006048 fetch 1 ,mem_sniff_param_timeout 
+0x3fbb 006049 istore 2 ,contw 
+0x3fbc 006050 branch cmd_exit 
+:      006052 cmd_exit_sniff:
+0x3fbd 006053 jam lmp_unsniff_req ,mem_lmo_opcode2 
+0x3fbe 006054 branch cmd_exit 
+:      006056 hci_idle_dispatch:
+0x3fbf 006057 call gpio_check_uart_state 
+0x3fc0 006058 rtn true 
+0x3fc1 006059 arg uart_wakeup_rx ,temp 
+0x3fc2 006060 call gpio_get_bit 
+0x3fc3 006061 nbranch uart_wake_up ,true 
+0x3fc4 006062 jam hci_rx_wake ,mem_hci_lt_rx_state 
+0x3fc5 006063 rtn 
+:      006064 uart_wake_up:
+0x3fc6 006065 fetch 1 ,mem_hci_lt_rx_state 
+0x3fc7 006066 rtnne hci_rx_wake 
+0x3fc8 006067 call hci_exit_lpm 
+0x3fc9 006068 branch hci_send_commu_ready_event 
+:      006082 hid_rx_process:
+0x3fca 006083 set0 mark_ext_patch ,mark 
+0x3fcb 006084 bpatch patch19_0 ,mem_patch19 
+0x3fcc 006085 fetch 2 ,mem_l2cap_payload_ptr 
+0x3fcd 006086 copy pdata ,contr 
+0x3fce 006087 ifetch 1 ,contr 
+0x3fcf 006088 and pdata ,0x0f ,temp 
+0x3fd0 006089 rshift4 pdata ,pdata 
+0x3fd1 006090 beq hid_type_set_idle ,hid_rx_process_handshake 
+0x3fd2 006091 beq hid_type_set_protocol ,hid_rx_process_handshake 
+0x3fd3 006092 beq hid_type_data ,hid_rx_process_data 
+0x3fd4 006093 beq hid_type_set_report ,hid_rx_process_set_report 
+0x3fd5 006094 beq hid_type_control ,hid_rx_process_hid_control 
+0x3fd6 006095 rtn 
+:      006097 hid_rx_process_hid_control:
+0x3fd7 006098 copy temp ,pdata 
+0x3fd8 006099 beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
+0x3fd9 006100 beq hid_control_p_suspend ,hid_rx_process_suspend 
+0x3fda 006101 rtn 
+:      006103 hid_rx_process_virtual_cable_unplug:
+0x3fdb 006104 jam bt_evt_virtual_cable_unplug ,mem_fifo_temp 
+0x3fdc 006105 call ui_ipc_send_event 
+0x3fdd 006106 fetch 1 ,mem_device_option 
+0x3fde 006107 rtnne dvc_op_mouse ,pdata 
+0x3fdf 006108 copy temp ,pdata 
+0x3fe0 006109 beq hid_control_p_virtualcableunplug ,eeprom_erase_reconn_info 
+0x3fe1 006110 rtn 
+:      006111 hid_rx_process_suspend:
+0x3fe2 006112 rtn 
+:      006114 hid_rx_process_set_report:
+0x3fe3 006115 call hid_rx_process_data 
+0x3fe4 006116 arg 0x01 ,rega 
+0x3fe5 006117 call hid_malloc_tx_buff 
+0x3fe6 006118 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x3fe7 006119 istore 2 ,contw 
+0x3fe8 006120 setarg 0x00 
+0x3fe9 006121 istore 1 ,contw 
+0x3fea 006122 rtn 
+:      006124 hid_rx_process_handshake:
+0x3feb 006125 arg 1 ,rega 
+0x3fec 006126 call hid_malloc_tx_buff 
+0x3fed 006127 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x3fee 006128 istore 2 ,contw 
+0x3fef 006129 setarg 0 
+0x3ff0 006130 istore 1 ,contw 
+0x3ff1 006131 jam 1 ,mem_ui_data_txbuff_length 
+0x3ff2 006132 fetch 1 ,mem_hid_control_state 
+0x3ff3 006133 set1 l2cap_channel_hid_handshake_done 
+0x3ff4 006134 store 1 ,mem_hid_control_state 
+0x3ff5 006135 jam bt_evt_hid_handshake ,mem_fifo_temp 
+0x3ff6 006136 branch ui_ipc_send_event 
+:      006138 hid_rx_process_data:
+0x3ff7 006139 ifetch 1 ,contr 
+0x3ff8 006140 beq hid_report_id_kb ,hid_rx_process_data_hid_kb 
+0x3ff9 006141 rtn 
+:      006143 hid_rx_process_data_hid_kb:
+0x3ffa 006144 copy contr ,rega 
+0x3ffb 006145 fetch 1 ,mem_device_option 
+0x3ffc 006146 rtnne dvc_op_kb ,pdata 
+0x3ffd 006147 copy rega ,contr 
+0x3ffe 006148 ifetch 1 ,contr 
+0x3fff 006149 store 1 ,mem_kb_caps_led_status 
+0x4000 006150 store 1 ,mem_hid_rx_data 
+0x4001 006151 fetch 1 ,mem_kb_led_on_timer 
+0x4002 006152 nrtn blank 
+0x4003 006153 jam 2 ,mem_led_cap_delay_timer 
+0x4004 006154 rtn 
+:      006156 hid_malloc_tx_buff:
+0x4005 006157 call l2cap_malloc 
+0x4006 006158 copy rega ,temp 
+0x4007 006159 storet 1 ,mem_ui_data_txbuff_length 
+0x4008 006160 copy pdata ,contw 
+0x4009 006161 copy rega ,pdata 
+0x400a 006162 istore 2 ,contw 
+0x400b 006163 rtn 
+:      006166 kb_init:
+0x400c 006167 call kb_clear_keys 
+0x400d 006168 rtn wake 
+0x400e 006170 call kb_init_common 
+0x400f 006171 call kb_led_int 
+0x4010 006172 setarg kb_process_idle 
+0x4011 006173 store 2 ,mem_cb_idle_process 
+0x4012 006174 setarg kb_send_process 
+0x4013 006175 store 2 ,mem_cb_bt_process 
+0x4014 006176 setarg kb_process_bb_event 
+0x4015 006177 store 2 ,mem_cb_bb_event_process 
+0x4016 006178 setarg kb_process_lpm_before 
+0x4017 006179 store 2 ,mem_cb_before_lpm 
+0x4018 006180 setarg kb_discovery_timeout_sleep 
+0x4019 006181 store 2 ,mem_cb_discovry_timeout 
+0x401a 006182 setarg kb_before_hibernate 
+0x401b 006183 store 2 ,mem_cb_before_hibernate 
+0x401c 006184 jam 0 ,mem_sp_flag 
+0x401d 006185 jam 0 ,mem_master_sp_flag 
+0x401e 006186 call kb_init_environment 
+0x401f 006187 fetch 2 ,mem_ui_state_map 
+0x4020 006188 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+:      006189 kb_check_reconn_target:
+0x4021 006190 fetch 1 ,mem_xrecord_mode 
+0x4022 006191 beq rec_3_mode ,kb_3_check_reconn_target 
+0x4023 006192 branch kb_start_discovery 
+:      006193 kb_3_check_reconn_target:
+0x4024 006194 fetch 6 ,mem_hci_plap 
+0x4025 006195 branch app_bt_start_discovery_short ,blank 
+0x4026 006196 branch app_bt_start_reconnect 
+:      006198 kb_init_environment:
+0x4027 006199 call app_initflag_check 
+0x4028 006200 branch kb_load_eeprom_param ,zero 
+0x4029 006201 setarg kb_map2_status_win 
+0x402a 006202 store 1 ,mem_kb_current_status 
+0x402b 006203 call store_current_status 
+0x402c 006204 fetch 6 ,mem_master_addr 
+0x402d 006205 store 6 ,mem_plap 
+0x402e 006206 store 6 ,mem_hci_plap 
+0x402f 006207 call eeprom_store_bd_reconn_info 
+0x4030 006208 jam rec_3_mode ,mem_xrecord_mode 
+0x4031 006209 branch app_initflag_store 
+:      006211 kb_load_eeprom_param:
+0x4032 006212 call read_current_status 
+0x4033 006213 branch eeprom_load_reconn_info 
+:      006216 kb_init_common:
+0x4034 006217 set0 mark_ext_patch ,mark 
+0x4035 006218 bpatch patch19_1 ,mem_patch19 
+0x4036 006219 hjam 0 ,core_gpio_oe0 
+0x4037 006220 hjam 0xff ,core_gpio_pu0 
+0x4038 006221 hjam 0xff ,core_gpio_oe1 
+0x4039 006222 hjam 0xff ,core_gpio_oe2 
+0x403a 006223 hfetch 1 ,core_gpio_oe3 
+0x403b 006224 or_into 0x07 ,pdata 
+0x403c 006225 hstore 1 ,core_gpio_oe3 
+0x403d 006226 hjam 0x00 ,core_gpio_sel 
+0x403e 006227 hjam 0x00 ,core_gpio_sel1 
+0x403f 006228 hjam 0x00 ,core_kscn_rowmask 
+0x4040 006229 setarg kb_kscan_col_1 
+0x4041 006230 lshift3 pdata ,pdata 
+0x4042 006231 add pdata ,kb_kscan_row_1 ,pdata 
+0x4043 006232 hstore 1 ,core_kscn_rctc 
+0x4044 006233 hjam 0xff ,core_gpio_key0 
+0x4045 006234 hjam 0xFf ,core_gpio_key1 
+0x4046 006235 hfetch 1 ,core_gpio_key2 
+0x4047 006236 or_into 0x01 ,pdata 
+0x4048 006237 hstore 1 ,core_gpio_key2 
+0x4049 006239 hfetch 1 ,core_config 
+0x404a 006240 set1 2 ,pdata 
+0x404b 006241 hstore 1 ,core_config 
+0x404c 006242 hjam 0x0c ,core_kscn_ksctrl 
+0x404d 006243 hjam 0x30 ,core_kscn_scancycle_timer_h 
+0x404e 006244 hfetch 1 ,core_clkoff + 1 
+0x404f 006245 set0 1 ,pdata 
+0x4050 006246 hstore 1 ,core_clkoff + 1 
+0x4051 006247 hfetch 1 ,core_kscn_ksctrl 
+0x4052 006248 set1 0 ,pdata 
+0x4053 006249 hstore 1 ,core_kscn_ksctrl 
+0x4054 006250 rtn 
+:      006251 kb_led_int:
+0x4055 006252 call kb_led_cap_init 
+0x4056 006253 call kb_led_num_init 
+0x4057 006254 branch kb_led_scl_init 
+:      006255 kb_led_cap_init:
+0x4058 006256 fetch 1 ,mem_led_cap_gpio 
+0x4059 006257 rtneq 0xff 
+0x405a 006258 fetcht 1 ,mem_led_cap_gpio 
+0x405b 006259 branch gpio_config_output 
+:      006260 kb_led_num_init:
+0x405c 006261 fetch 1 ,mem_led_num_gpio 
+0x405d 006262 rtneq 0xff 
+0x405e 006263 fetcht 1 ,mem_led_num_gpio 
+0x405f 006264 branch gpio_config_output 
+:      006265 kb_led_scl_init:
+0x4060 006266 fetch 1 ,mem_led_scl_gpio 
+0x4061 006267 rtneq 0xff 
+0x4062 006268 fetcht 1 ,mem_led_scl_gpio 
+0x4063 006269 branch gpio_config_output 
+:      006271 kb_led_cap_delay_timer:
+0x4064 006272 fetch 1 ,mem_led_cap_delay_timer 
+0x4065 006273 rtn blank 
+0x4066 006274 increase -1 ,pdata 
+0x4067 006275 store 1 ,mem_led_cap_delay_timer 
+0x4068 006276 nrtn blank 
+:      006277 kb_led_capslock:
+0x4069 006278 set0 mark_ext_patch ,mark 
+0x406a 006279 bpatch patch19_2 ,mem_patch19 
+0x406b 006280 fetch 1 ,mem_hid_rx_data 
+0x406c 006281 copy pdata ,rega 
+0x406d 006282 fetcht 1 ,mem_led_num_gpio 
+0x406e 006283 isolate1 kb_num_lock_selected ,rega 
+0x406f 006284 call gpio_out_flag 
+0x4070 006285 fetcht 1 ,mem_led_cap_gpio 
+0x4071 006286 isolate1 kb_caps_lock_selected ,rega 
+0x4072 006287 call gpio_out_flag 
+0x4073 006288 fetcht 1 ,mem_led_scl_gpio 
+0x4074 006289 isolate1 kb_scroll_lock_selected ,rega 
+0x4075 006290 call gpio_out_flag 
+0x4076 006291 branch kb_auto_disable_mult 
+:      006292 kb_enble_mult_timer:
+0x4077 006293 fetch 1 ,mem_auto_enable_mult_timer 
+0x4078 006294 rtn blank 
+0x4079 006295 increase -1 ,pdata 
+0x407a 006296 store 1 ,mem_auto_enable_mult_timer 
+0x407b 006297 nrtn blank 
+0x407c 006298 branch app_lpm_mult_enable 
+:      006299 kb_auto_disable_mult:
+0x407d 006300 fetch 1 ,mem_auto_enable_mult_timer_init 
+0x407e 006301 store 1 ,mem_auto_enable_mult_timer 
+0x407f 006302 branch app_lpm_mult_disable 
+:      006304 kb_led_cap_status:
+0x4080 006305 jam 1 ,mem_led_cap_flag 
+0x4081 006306 branch bt_send_kb_data_by_report0 + 8 
+:      006309 kb_send_process:
+0x4082 006310 call l2cap_malloc_is_fifo_nearly_full 
+0x4083 006311 nrtn blank 
+0x4084 006312 fetch 6 ,mem_master_addr 
+0x4085 006313 fetcht 6 ,mem_plap 
+0x4086 006314 isub temp ,null 
+0x4087 006315 branch kb_debug_send_keydata ,zero 
+0x4088 006316 fetch 1 ,mem_pincode_state 
+0x4089 006317 beq pincode_state_wait_pincode ,kb_pincode 
+0x408a 006318 fetch 1 ,mem_hid_interrupt_state 
+0x408b 006319 rtnne l2cap_channel_setup_complete 
+0x408c 006320 fetcht 8 ,mem_table_last_repory_data0 
+0x408d 006321 fetch 8 ,mem_map2_out_report0 
+0x408e 006322 store 8 ,mem_table_last_repory_data0 
+0x408f 006323 isub temp ,null 
+0x4090 006324 ncall bt_send_kb_data_by_report0 ,zero 
+0x4091 006326 fetcht 8 ,mem_table_last_repory_data1 
+0x4092 006327 fetch 8 ,mem_map2_out_report1 
+0x4093 006328 store 8 ,mem_table_last_repory_data1 
+0x4094 006329 isub temp ,null 
+0x4095 006330 ncall bt_send_kb_data_by_report1 ,zero 
+0x4096 006331 rtn 
+:      006333 kb_debug_send_keydata:
+0x4097 006334 fetch 1 ,mem_kb_down 
+0x4098 006335 beq 0x7f ,fn_test 
+0x4099 006336 fetcht 8 ,mem_table_last_repory_data0 
+0x409a 006337 fetch 8 ,mem_map2_out_report0 
+0x409b 006338 store 8 ,mem_table_last_repory_data0 
+0x409c 006339 isub temp ,null 
+0x409d 006340 rtn zero 
+0x409e 006341 arg mem_map2_out_report0 ,contr 
+0x409f 006342 arg mem_table_temp ,rega 
+0x40a0 006343 call fill_kb_send_data 
+0x40a1 006344 arg 10 ,rega 
+0x40a2 006345 call hid_malloc_tx_buff 
+0x40a3 006346 setarg l2cap_hid_interrupt_channel 
+0x40a4 006347 istore 2 ,contw 
+0x40a5 006348 setarg 0x01a1 
+0x40a6 006349 istore 2 ,contw 
+0x40a7 006350 fetch 8 ,mem_table_temp 
+0x40a8 006351 istore 8 ,contw 
+0x40a9 006352 rtn 
+:      006353 fn_test:
+0x40aa 006354 store 8 ,mem_map2_out_report0 
+0x40ab 006355 branch kb_debug_send_keydata + 2 
+:      006358 bt_send_kb_data_by_report0:
+0x40ac 006359 call l2cap_malloc_is_fifo_nearly_full 
+0x40ad 006360 nrtn blank 
+0x40ae 006361 fetch 1 ,mem_kb_temp_flag 
+0x40af 006362 rtnbit1 key_search_m_key_flag 
+0x40b0 006363 call init_kb_no_data_timer 
+0x40b1 006364 fetch 1 ,mem_map2_out_report0 
+0x40b2 006365 beq caps_lock_data ,kb_led_cap_status 
+0x40b3 006366 jam 0 ,mem_led_cap_flag 
+0x40b4 006367 arg mem_map2_out_report0 ,contr 
+0x40b5 006368 arg mem_table_temp ,rega 
+0x40b6 006369 call fill_kb_send_data 
+0x40b7 006370 call bt_send_kb_data_by_report0_ptr 
+0x40b8 006371 fetch 8 ,mem_table_temp 
+0x40b9 006372 istore 8 ,contw 
+0x40ba 006373 rtn 
+:      006375 fill_kb_send_data:
+0x40bb 006376 arg 0 ,temp 
+0x40bc 006377 add rega ,2 ,contw 
+0x40bd 006378 arg kb_map2_report_length ,loopcnt 
+:      006379 store_key:
+0x40be 006380 ifetch 1 ,contr 
+0x40bf 006381 bbit0 7 ,not_key_status 
+0x40c0 006382 and pdata ,7 ,queue 
+0x40c1 006383 qset1 temp 
+0x40c2 006384 branch store_key_next 
+:      006385 not_key_status:
+0x40c3 006386 istore 1 ,contw 
+:      006387 store_key_next:
+0x40c4 006388 loop store_key 
+0x40c5 006389 istoret 2 ,rega 
+0x40c6 006390 rtn 
+:      006392 bt_send_kb_data_by_report1:
+0x40c7 006393 call l2cap_malloc_is_fifo_nearly_full 
+0x40c8 006394 nrtn blank 
+0x40c9 006395 call init_kb_no_data_timer 
+0x40ca 006396 fetch 1 ,mem_map2_out_report1 
+0x40cb 006397 beq sfk_android_map ,android_search_m_key 
+0x40cc 006398 beq sfk_ios_screenshot ,ios_screenshot 
+0x40cd 006399 setarg 0 
+0x40ce 006400 store 8 ,mem_table_temp 
+0x40cf 006401 call fill_kb_send_report1_data 
+0x40d0 006403 fetch 1 ,mem_kb_temp_flag 
+0x40d1 006404 bbit1 key_search_m_key_flag ,android_search_m_key_releas 
+0x40d2 006405 call bt_send_kb_data_by_report1_ptr 
+0x40d3 006406 fetch 4 ,mem_table_temp 
+0x40d4 006407 istore 4 ,contw 
+0x40d5 006408 rtn 
+:      006410 fill_kb_send_report1_data:
+0x40d6 006411 fetch 1 ,mem_map2_out_report1 
+0x40d7 006412 rtn blank 
+0x40d8 006413 enable true 
+0x40d9 006414 fetch 1 ,mem_map2_out_report1 
+0x40da 006415 copy pdata ,queue 
+0x40db 006416 fetch 8 ,mem_table_temp 
+0x40dc 006417 qsetflag true ,pdata 
+0x40dd 006418 store 8 ,mem_table_temp 
+0x40de 006419 disable true 
+0x40df 006420 rtn 
+:      006422 init_kb_no_data_timer:
+0x40e0 006423 fetch 2 ,mem_kb_no_data_timeout 
+0x40e1 006424 store 2 ,mem_kb_no_data_timer 
+0x40e2 006425 rtn 
+:      006426 kb_check_no_data_timer:
+0x40e3 006427 fetch 2 ,mem_kb_no_data_timer 
+0x40e4 006428 rtn blank 
+0x40e5 006429 fetch 2 ,mem_kb_no_data_timer 
+0x40e6 006430 increase -1 ,pdata 
+0x40e7 006431 store 2 ,mem_kb_no_data_timer 
+0x40e8 006432 nrtn blank 
+0x40e9 006433 branch kb_disconnect 
+:      006434 kb_disconnect:
+0x40ea 006435 setarg 0 
+0x40eb 006436 store 2 ,mem_kb_no_data_timer 
+0x40ec 006437 fetch 2 ,mem_ui_state_map 
+0x40ed 006438 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+0x40ee 006439 fetch 2 ,mem_ui_state_map 
+0x40ef 006440 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x40f0 006441 rtn 
+:      006443 bt_send_kb_data_by_report0_ptr:
+0x40f1 006444 arg 10 ,rega 
+0x40f2 006445 call hid_malloc_tx_buff 
+0x40f3 006446 fetch 2 ,mem_hid_int_remote_cid 
+0x40f4 006447 istore 2 ,contw 
+0x40f5 006448 setarg 0x01a1 
+0x40f6 006449 istore 2 ,contw 
+0x40f7 006450 rtn 
+:      006451 bt_send_kb_data_by_report1_ptr:
+0x40f8 006452 arg 6 ,rega 
+0x40f9 006453 call hid_malloc_tx_buff 
+0x40fa 006454 fetch 2 ,mem_hid_int_remote_cid 
+0x40fb 006455 istore 2 ,contw 
+0x40fc 006456 setarg 0x02a1 
+0x40fd 006457 istore 2 ,contw 
+0x40fe 006458 rtn 
+:      006460 android_search_m_key_releas:
+0x40ff 006461 call bt_send_kb_data_by_report0_ptr 
+0x4100 006462 setarg 0 
+0x4101 006463 istore 8 ,contw 
+0x4102 006464 call bt_send_kb_data_by_report1_ptr 
+0x4103 006465 setarg 0 
+0x4104 006466 istore 4 ,contw 
+0x4105 006467 fetch 1 ,mem_kb_temp_flag 
+0x4106 006468 set0 key_search_m_key_flag ,pdata 
+0x4107 006469 store 1 ,mem_kb_temp_flag 
+0x4108 006470 rtn 
+:      006471 ios_screenshot:
+0x4109 006472 call bt_send_kb_data_by_report1_ptr 
+0x410a 006473 setarg 0x2002 
+0x410b 006474 istore 4 ,contw 
+0x410c 006475 rtn 
+:      006477 android_search_m_key:
+0x410d 006478 call bt_send_kb_data_by_report1_ptr 
+0x410e 006479 setarg 0x40 
+0x410f 006480 istore 4 ,contw 
+0x4110 006481 call bt_send_kb_data_by_report0_ptr 
+0x4111 006482 setarg 0 
+0x4112 006483 istore 2 ,contw 
+0x4113 006484 setarg 0x10 
+0x4114 006485 istore 7 ,contw 
+0x4115 006486 fetch 1 ,mem_kb_temp_flag 
+0x4116 006487 set1 key_search_m_key_flag ,pdata 
+0x4117 006488 store 1 ,mem_kb_temp_flag 
+0x4118 006489 rtn 
+:      006492 kb_pincode:
+0x4119 006493 set0 mark_ext_patch ,mark 
+0x411a 006494 bpatch patch19_3 ,mem_patch19 
+0x411b 006495 fetch 1 ,mem_kb_temp_flag 
+0x411c 006496 rtnbit0 key_event_flag 
+0x411d 006497 set0 key_event_flag ,pdata 
+0x411e 006498 store 1 ,mem_kb_temp_flag 
+0x411f 006499 fetcht 1 ,mem_pin_length 
+0x4120 006500 setarg mem_pin 
+0x4121 006501 iadd temp ,contw 
+0x4122 006502 fetch 1 ,mem_kb_down 
+0x4123 006503 branch kb_pincode_rtn ,blank 
+0x4124 006504 beq kb_kcode_bksp ,kb_pincode_bksp 
+0x4125 006505 bne kb_kcode_enter ,kb_pincode_data 
+0x4126 006506 storet 1 ,mem_pin_length 
+0x4127 006507 branch app_bt_set_pincode 
+:      006509 kb_pincode_rtn:
+0x4128 006510 storet 1 ,mem_pin_length 
+0x4129 006511 rtn 
+:      006512 kb_pincode_bksp:
+0x412a 006513 fetch 1 ,mem_pin_length 
+0x412b 006514 rtn blank 
+0x412c 006515 increase -1 ,pdata 
+0x412d 006516 store 1 ,mem_pin_length 
+0x412e 006517 arg mem_pin ,contw 
+0x412f 006518 iadd contw ,contw 
+0x4130 006519 setarg 0 
+0x4131 006520 istore 1 ,contw 
+0x4132 006521 enable user2 
+0x4133 006522 branch kb_send_pin 
+:      006523 kb_pincode_data:
+0x4134 006524 sub pdata ,kb_kcode_1_m1 ,null 
+0x4135 006525 rtn positive 
+0x4136 006526 arg 0x30 ,temp 
+0x4137 006527 sub pdata ,kb_kcode_0 ,null 
+0x4138 006528 nrtn positive 
+0x4139 006529 branch kb_pincode_0 ,zero 
+0x413a 006530 arg kb_kcode_1_m1 ,temp 
+0x413b 006531 isub temp ,temp 
+0x413c 006532 or_into 0x30 ,temp 
+:      006533 kb_pincode_0:
+0x413d 006534 istoret 1 ,contw 
+0x413e 006535 fetch 1 ,mem_pin_length 
+0x413f 006536 increase 1 ,pdata 
+0x4140 006537 store 1 ,mem_pin_length 
+0x4141 006538 disable user2 
+0x4142 006539 branch kb_send_pin 
+:      006541 kb_send_pin:
+0x4143 006542 fetch 2 ,mem_hid_int_remote_cid 
+0x4144 006543 rtn blank 
+0x4145 006544 arg 3 ,rega 
+0x4146 006545 call hid_malloc_tx_buff 
+0x4147 006546 fetch 2 ,mem_hid_int_remote_cid 
+0x4148 006547 istore 2 ,contw 
+0x4149 006548 setarg 0xffa1 
+0x414a 006549 istore 2 ,contw 
+0x414b 006550 setarg 0 
+0x414c 006551 setflag user2 ,0 ,pdata 
+0x414d 006552 istore 1 ,contw 
+0x414e 006553 rtn 
+:      006557 kb_kscan_check_if_empty:
+0x414f 006558 disable user 
+0x4150 006559 disable user2 
+0x4151 006560 hfetch 1 ,core_kscn_kstat 
+0x4152 006561 rtnbit1 kb_kscan_stat_empty 
+:      006563 kb_kscan_check_ghost:
+0x4153 006564 hfetch 1 ,core_kscn_event_num 
+0x4154 006565 bbit1 kb_kscan_key_event_stat ,kb_kscan_process_event 
+0x4155 006566 hfetch 1 ,core_kscn_kstat 
+0x4156 006567 bbit0 kb_kscan_stat_ghost ,kb_kscan_process_event 
+0x4157 006568 hfetch 1 ,core_kscn_event 
+0x4158 006569 branch kb_kscan_check_if_empty 
+:      006571 kb_kscan_process_event:
+0x4159 006572 enable user 
+0x415a 006573 enable user2 
+0x415b 006574 hfetch 1 ,core_kscn_event_num 
+0x415c 006575 isolate0 kb_kscan_key_event_stat ,pdata 
+0x415d 006576 hfetch 1 ,core_kscn_event 
+0x415e 006577 arg mem_kb_map ,contr 
+0x415f 006578 iadd contr ,contr 
+0x4160 006579 ifetch 1 ,contr 
+0x4161 006580 bbit1 7 ,kb_kscan_read_statekey 
+0x4162 006581 nbranch kb_kscan_release_a_key_data ,true 
+0x4163 006582 disable user2 
+0x4164 006583 iforce temp 
+0x4165 006584 fetch 1 ,mem_kb_keys 
+0x4166 006585 sub pdata ,4 ,null 
+0x4167 006586 nrtn positive 
+0x4168 006587 copy pdata ,rega 
+0x4169 006588 arg 3 ,loopcnt 
+0x416a 006589 arg mem_kb_report_data ,contr 
+:      006590 kb_kscan_check_report_data:
+0x416b 006591 ifetch 1 ,contr 
+0x416c 006592 isub temp ,null 
+0x416d 006593 branch kb_kscan_check_if_empty ,zero 
+0x416e 006594 loop kb_kscan_check_report_data 
+:      006595 kb_kscan_store_a_key_data:
+0x416f 006596 copy rega ,pdata 
+0x4170 006597 arg mem_kb_report_data ,contw 
+0x4171 006598 iadd contw ,contw 
+0x4172 006599 istoret 1 ,contw 
+0x4173 006600 increase 1 ,pdata 
+0x4174 006601 store 1 ,mem_kb_keys 
+0x4175 006602 hfetch 1 ,core_kscn_event_num 
+0x4176 006603 rshift3 pdata ,pdata 
+0x4177 006604 nbranch kb_kscan_check_nextevent ,blank 
+0x4178 006605 branch kb_kscan_prepare_send 
+:      006607 kb_kscan_check_nextevent:
+0x4179 006608 increase -1 ,pdata 
+0x417a 006609 branch kb_kscan_prepare_send ,zero 
+0x417b 006610 hfetch 1 ,core_kscn_event_num 
+0x417c 006611 and_into 0x01 ,pdata 
+0x417d 006612 beq kb_kscan_key_press ,kb_kscan_check_if_empty 
+0x417e 006613 beq kb_kscan_key_release ,kb_kscan_prepare_send 
+0x417f 006614 rtn 
+:      006615 kb_kscan_prepare_send:
+0x4180 006616 enable user2 
+0x4181 006617 rtn 
+:      006619 kb_kscan_release_a_key_data:
+0x4182 006620 and pdata ,0xff ,temp 
+0x4183 006621 fetch 1 ,mem_kb_keys 
+0x4184 006622 rtn blank 
+0x4185 006623 iforce loopcnt 
+0x4186 006624 arg mem_kb_report_data ,contr 
+:      006625 kb_kscan_find_same_key_data:
+0x4187 006626 ifetch 1 ,contr 
+0x4188 006627 isub temp ,null 
+0x4189 006628 branch kb_kscan_release_foundkey ,zero 
+0x418a 006629 loop kb_kscan_find_same_key_data 
+0x418b 006630 rtn 
+:      006633 kb_kscan_check_nextevent2:
+0x418c 006634 hfetch 1 ,core_kscn_event_num 
+0x418d 006635 and_into 0x01 ,pdata 
+0x418e 006636 beq kb_kscan_key_press ,kb_kscan_prepare_send 
+0x418f 006637 beq kb_kscan_key_release ,kb_kscan_check_if_empty 
+0x4190 006638 rtn 
+:      006640 kb_kscan_read_statekey:
+0x4191 006641 and pdata ,7 ,queue 
+0x4192 006642 fetch 1 ,mem_kb_state 
+0x4193 006643 qsetflag true ,pdata 
+0x4194 006644 store 1 ,mem_kb_state 
+0x4195 006645 rtn 
+:      006647 kb_clear_keys:
+0x4196 006648 setarg 0 
+0x4197 006649 store 8 ,mem_kb_down 
+0x4198 006650 store 1 ,mem_kb_keys 
+0x4199 006651 rtn 
+:      006653 kb_clean_kscan_fifo:
+0x419a 006654 hfetch 1 ,core_kscn_event_num 
+0x419b 006655 hfetch 1 ,core_kscn_event 
+0x419c 006656 hfetch 1 ,core_kscn_kstat 
+0x419d 006657 bbit0 kb_kscan_stat_empty ,kb_clean_kscan_fifo 
+0x419e 006658 setarg 0xff 
+0x419f 006659 enable user 
+0x41a0 006660 rtn 
+:      006662 kb_process_idle:
+0x41a1 006663 call kb_ui_check_paring_button 
+0x41a2 006664 rtn wake 
+:      006665 kb_process:
+0x41a3 006666 fetch 1 ,mem_kb_get_fn_flag 
+0x41a4 006667 call kb_recover_kb_down_data ,blank 
+0x41a5 006668 call kb_kscan_fn 
+0x41a6 006669 fetch 1 ,mem_kb_keys 
+0x41a7 006670 rtn blank 
+0x41a8 006671 call kb_read_gpio 
+0x41a9 006672 fetch 4 ,mem_kb_gpio_val 
+0x41aa 006673 store 4 ,mem_kb_gpio_last_val 
+0x41ab 006674 rtn 
+:      006676 kb_ui_check_paring_button:
+0x41ac 006677 fetch 2 ,mem_ui_state_map 
+0x41ad 006678 rtnbit0 ui_state_bt_reconnect 
+0x41ae 006679 fetch 1 ,mem_kb_temp_flag 
+0x41af 006680 rtnbit1 cacel_reconn_flag ,pdata 
+0x41b0 006681 fetch 2 ,mem_kb_down 
+0x41b1 006682 fetcht 2 ,mem_kb_fn_c 
+0x41b2 006683 isub temp ,null 
+0x41b3 006684 branch check_bb_reconn_cancel ,zero 
+0x41b4 006685 fetch 2 ,mem_kb_down 
+0x41b5 006686 fetcht 2 ,mem_kb_c_fn 
+0x41b6 006687 isub temp ,null 
+0x41b7 006688 branch check_bb_reconn_cancel ,zero 
+0x41b8 006689 fetch 2 ,mem_ui_state_map 
+0x41b9 006690 bbit1 ui_state_btn_down ,check_bb_reconn_cancel 
+0x41ba 006691 rtn 
+:      006693 check_bb_reconn_cancel:
+0x41bb 006694 fetch 1 ,mem_kb_temp_flag 
+0x41bc 006695 set1 cacel_reconn_flag ,pdata 
+0x41bd 006696 store 1 ,mem_kb_temp_flag 
+0x41be 006697 branch check_51cmd_bb_reconn_cancel 
+:      006700 kb_read_gpio:
+0x41bf 006701 hfetch 3 ,core_gpio_key0 
+0x41c0 006702 iforce regb 
+0x41c1 006703 hfetch 4 ,core_gpio_pu0 
+0x41c2 006704 iforce rega 
+0x41c3 006705 hfetcht 8 ,core_gpio_oe0 
+0x41c4 006706 setarg 0 
+0x41c5 006707 hstore 3 ,core_gpio_key0 
+0x41c6 006708 nop 100 
+0x41c7 006709 hfetch 1 ,core_gpio_in 
+0x41c8 006710 store 1 ,mem_kb_gpio_val 
+0x41c9 006711 hjam 0 ,core_gpio_pu0 
+0x41ca 006712 hfetch 1 ,core_gpio_oe3 
+0x41cb 006713 and_into 0xf0 ,pdata 
+0x41cc 006714 hstore 1 ,core_gpio_oe3 
+0x41cd 006715 xor_into 0xff ,pdata 
+0x41ce 006716 hstore 1 ,core_gpio_pu3 
+0x41cf 006717 setarg 0xff 
+0x41d0 006718 hstore 3 ,core_gpio_oe0 
+0x41d1 006719 setarg 0xffff 
+0x41d2 006720 hstore 2 ,core_gpio_pu1 
+0x41d3 006721 nop 100 
+0x41d4 006722 hfetch 3 ,core_gpio_in1 
+0x41d5 006723 iand regb ,pdata 
+0x41d6 006724 store 3 ,mem_kb_gpio_val + 1 
+0x41d7 006725 deposit rega 
+0x41d8 006726 hstore 4 ,core_gpio_pu0 
+0x41d9 006727 hstoret 8 ,core_gpio_oe0 
+0x41da 006728 deposit regb 
+0x41db 006729 hstore 3 ,core_gpio_key0 
+0x41dc 006730 rtn 
+:      006732 kb_pairing_button_check:
+0x41dd 006733 fetch 1 ,mem_scan_mode 
+0x41de 006734 nrtn blank 
+0x41df 006735 fetch 1 ,mem_app_handshake_flag 
+0x41e0 006736 nrtn blank 
+0x41e1 006737 fetch 1 ,mem_ui_button_timer 
+0x41e2 006738 rtn blank 
+0x41e3 006739 fetch 1 ,mem_ui_button_last_state 
+0x41e4 006740 nrtn blank 
+0x41e5 006741 branch app_enter_hibernate 
+:      006743 kb_process_bb_event:
+0x41e6 006744 copy regc ,pdata 
+0x41e7 006745 beq bt_evt_hid_connected ,kb_hid_connected 
+0x41e8 006746 beq bt_evt_pincode_req ,kb_process_pincode 
+0x41e9 006747 beq bt_evt_hid_handshake ,kb_bt_hid_handshake 
+0x41ea 006748 beq bt_evt_button_long_pressed ,kb_bb_event_discovery_btn 
+0x41eb 006749 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x41ec 006750 beq bt_evt_bb_connected ,kb_stop_discovery 
+0x41ed 006751 beq bt_evt_bb_disconnected ,kb_bb_disconnected 
+0x41ee 006752 beq bt_evt_reconn_failed ,kb_bb_event_reconn_failed 
+0x41ef 006753 beq bt_evt_reconn_page_timeout ,kb_bb_event_reconn_failed 
+0x41f0 006754 and pdata ,0x0f ,temp 
+0x41f1 006755 and_into bt_evt_timer_mask ,pdata 
+0x41f2 006756 beq bt_evt_timer_init ,kb_bb_event_timer 
+0x41f3 006757 rtn 
+:      006760 kb_bb_event_timer:
+0x41f4 006761 set0 mark_ext_patch ,mark 
+0x41f5 006762 bpatch patch19_4 ,mem_patch19 
+0x41f6 006763 storet 1 ,mem_app_evt_timer_count 
+:      006764 kb_bb_event_100ms_loop:
+0x41f7 006765 fetch 1 ,mem_app_evt_timer_count 
+0x41f8 006766 rtn blank 
+0x41f9 006767 increase -1 ,pdata 
+0x41fa 006768 store 1 ,mem_app_evt_timer_count 
+0x41fb 006769 call kb_led_cap_delay_timer 
+0x41fc 006770 call kb_check_hid_handshake_timer 
+0x41fd 006771 call kb_enble_mult_timer 
+0x41fe 006772 call kb_check_no_data_timer 
+0x41ff 006773 call select_system_led_timer 
+0x4200 006774 branch kb_bb_event_100ms_loop 
+:      006776 kb_bb_event_reconn_failed:
+0x4201 006777 fetch 2 ,mem_ui_state_map 
+0x4202 006778 bbit1 ui_state_btn_down ,kb_start_discovery 
+0x4203 006779 fetch 1 ,mem_kb_temp_flag 
+0x4204 006780 bbit0 ,cacel_reconn_flag ,app_bb_hibernate 
+0x4205 006781 fetch 1 ,mem_kb_temp_flag 
+0x4206 006782 set0 cacel_reconn_flag ,pdata 
+0x4207 006783 store 1 ,mem_kb_temp_flag 
+0x4208 006784 fetch 2 ,mem_ui_state_map 
+0x4209 006785 set0 ui_state_bt_reconnect ,pdata 
+0x420a 006786 store 2 ,mem_ui_state_map 
+0x420b 006787 rtn 
+:      006789 kb_bb_disconnected:
+0x420c 006790 set0 mark_ext_patch ,mark 
+0x420d 006791 bpatch patch19_5 ,mem_patch19 
+0x420e 006792 call kb_bb_discon_clear_stack 
+0x420f 006793 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x4210 006794 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x4211 006795 bbit1 app_disc_after_pairing ,kb_event_light_state_pairing 
+0x4212 006796 bbit1 app_disc_after_reconn ,kb_event_light_state_reconn 
+0x4213 006797 branch kb_start_discovery 
+:      006798 kb_event_light_state_pairing:
+0x4214 006799 bbit1 app_disc_after_handshake ,kb_event_light_state_hibernate 
+0x4215 006800 bbit1 app_disc_after_sniff ,kb_event_light_state_hibernate 
+0x4216 006801 branch kb_start_discovery 
+:      006802 kb_event_light_state_reconn:
+:      006803 kb_event_light_state_hibernate:
+0x4217 006804 fetch 2 ,mem_ui_state_map 
+0x4218 006805 bbit1 ui_state_btn_down ,kb_start_discovery 
+0x4219 006806 branch app_bb_hibernate 
+:      006808 kb_bb_discon_clear_stack:
+0x421a 006809 jam app_handshake_null ,mem_app_handshake_flag 
+0x421b 006810 jam 0 ,mem_kb_debug_sm 
+0x421c 006811 rtn 
+:      006814 kb_check_hid_handshake_timer:
+0x421d 006815 fetch 1 ,mem_hid_handshake_timer_count 
+0x421e 006816 rtn blank 
+0x421f 006817 increase -1 ,pdata 
+0x4220 006818 store 1 ,mem_hid_handshake_timer_count 
+0x4221 006819 nrtn blank 
+0x4222 006820 branch kb_bt_hid_handshake 
+:      006823 kb_bb_event_discovery_btn:
+0x4223 006824 setarg 0 
+0x4224 006825 store 2 ,mem_kb_direct_timer 
+0x4225 006826 store 1 ,mem_pin_length 
+0x4226 006827 call led_cap_darking 
+0x4227 006828 call kb_3_0_bb_event_discovery_btn 
+0x4228 006829 call app_lpm_mult_disable 
+0x4229 006830 branch kb_start_discovery 
+:      006832 led_cap_darking:
+0x422a 006833 jam 1 ,mem_led_cap_gpio_status 
+0x422b 006834 fetcht 1 ,mem_led_cap_gpio 
+0x422c 006835 branch gpio_out_inactive 
+:      006837 kb_3_0_bb_event_discovery_btn:
+0x422d 006838 set0 mark_ext_patch ,mark 
+0x422e 006839 bpatch patch19_6 ,mem_patch19 
+0x422f 006840 fetch 2 ,mem_ui_state_map 
+0x4230 006841 isolate1 ui_state_bt_reconnect ,pdata 
+0x4231 006842 call app_bt_reconnect_cancel ,true 
+0x4232 006843 fetch 2 ,mem_discovery_timeout 
+0x4233 006844 store 2 ,mem_discovery_timeout_timer_count 
+0x4234 006845 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x4235 006846 set1 app_disc_by_button ,pdata 
+0x4236 006847 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x4237 006848 fetch 2 ,mem_ui_state_map 
+0x4238 006849 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x4239 006850 rtn 
+:      006853 kb_stop_discovery:
+0x423a 006854 call app_led_stop_blink 
+0x423b 006855 setarg 0 
+0x423c 006856 store 2 ,mem_kb_discovery_timer 
+0x423d 006857 branch app_bt_stop_discovery 
+:      006859 kb_start_discovery:
+0x423e 006860 call app_lpm_mult_disable 
+0x423f 006861 fetch 2 ,mem_discovery_timeout 
+0x4240 006862 store 2 ,mem_kb_discovery_timer 
+0x4241 006863 call app_bt_start_discovery 
+0x4242 006864 jam 0 ,mem_kb_led_on_timer 
+0x4243 006866 call app_led_start_blink 
+0x4244 006867 call kb_clean_kscan_fifo 
+0x4245 006868 branch kb_clear_keys 
+:      006870 kb_discovery_timeout_sleep:
+0x4246 006871 branch app_enter_hibernate 
+:      006873 kb_process_pincode:
+0x4247 006874 jam 0 ,mem_hid_handshake_timer_count 
+0x4248 006875 jam 0 ,mem_pin_length 
+0x4249 006876 call kb_clear_keys 
+0x424a 006877 branch kb_clean_kscan_fifo 
+:      006880 kb_before_hibernate:
+0x424b 006881 fetch 1 ,mem_kb_led_on_timer 
+0x424c 006882 branch kb_before_hibernate_cont ,blank 
+0x424d 006883 arg 320 ,temp 
+0x424e 006884 imul32 temp ,temp 
+0x424f 006885 copy clkn_bt ,pdata 
+0x4250 006886 iadd temp ,temp 
+:      006887 kb_before_hibernate_wait:
+0x4251 006888 copy clkn_bt ,pdata 
+0x4252 006889 isub temp ,null 
+0x4253 006890 nbranch kb_before_hibernate_wait ,positive 
+:      006891 kb_before_hibernate_cont:
+0x4254 006892 fetcht 1 ,mem_led_power_gpio 
+0x4255 006893 call gpio_out_inactive 
+0x4256 006894 enable user 
+0x4257 006895 hfetch 4 ,0x8138 
+0x4258 006896 setflag user ,26 ,pdata 
+0x4259 006897 hstore 4 ,core_lpm_reg 
+0x425a 006898 call lpm_write_ctrl 
+:      006899 kb_wake_common:
+0x425b 006900 hjam 0x00 ,core_gpio_key0 
+0x425c 006901 hjam 0x00 ,core_gpio_key1 
+0x425d 006902 hfetch 1 ,core_gpio_key2 
+0x425e 006903 and_into 0xf0 ,pdata 
+0x425f 006904 hstore 1 ,core_gpio_key2 
+0x4260 006905 setarg 0x00 
+0x4261 006906 store 4 ,mem_gpio_wakeup_high 
+0x4262 006907 setarg 0xff 
+0x4263 006908 fetcht 1 ,mem_ui_button_gpio 
+0x4264 006909 copy temp ,queue 
+0x4265 006910 qset1 pdata 
+0x4266 006911 store 4 ,mem_gpio_wakeup_low 
+0x4267 006912 rtn 
+:      006913 kb_process_lpm_before:
+0x4268 006914 call kb_wake_common 
+0x4269 006915 fetch 1 ,mem_lpm_current_mult 
+0x426a 006916 nrtn blank 
+0x426b 006917 jam 0 ,mem_gpio_wakeup_low 
+0x426c 006918 rtn 
+:      006920 kb_hid_connected:
+0x426d 006921 setarg hid_handshake_timeout 
+0x426e 006922 store 1 ,mem_hid_handshake_timer_count 
+0x426f 006923 call kb_clean_kscan_fifo 
+0x4270 006924 branch kb_clear_keys 
+:      006927 kb_bt_hid_handshake:
+0x4271 006928 set0 mark_ext_patch ,mark 
+0x4272 006929 bpatch patch19_7 ,mem_patch19 
+0x4273 006930 call ui_led_off 
+0x4274 006931 jam app_handshake_done ,mem_app_handshake_flag 
+0x4275 006932 call kb_clean_kscan_fifo 
+0x4276 006933 call kb_clear_keys 
+0x4277 006934 call app_lpm_mult_enable 
+0x4278 006935 call app_bt_store_reconn_info 
+0x4279 006936 setarg 0 
+0x427a 006937 store 2 ,mem_discovery_timeout_timer_count 
+0x427b 006938 store 1 ,mem_hid_handshake_timer_count 
+0x427c 006939 branch app_bt_enter_sniff 
+:      006942 store_current_status:
+0x427d 006943 fetch 1 ,mem_kb_current_status 
+0x427e 006944 and_into 0x7 ,pdata 
+0x427f 006945 store 1 ,mem_store_current_status 
+0x4280 006946 arg 1 ,temp 
+0x4281 006947 arg mem_store_current_status ,rega 
+0x4282 006948 setarg eeprom_system_falg 
+0x4283 006949 branch iicd_write_eep 
+:      006952 read_current_status:
+0x4284 006953 arg 1 ,temp 
+0x4285 006954 arg mem_store_current_status ,rega 
+0x4286 006955 setarg eeprom_system_falg 
+0x4287 006956 byteswap pdata ,pdata 
+0x4288 006957 store 2 ,mem_addr_mi 
+0x4289 006958 call iicd_read_eep 
+0x428a 006959 fetch 1 ,mem_store_current_status 
+0x428b 006960 copy pdata ,regb 
+0x428c 006961 and_into 0x0f ,pdata 
+0x428d 006962 beq 0x0f ,kb_current_status_regroup 
+0x428e 006963 copy regb ,pdata 
+0x428f 006964 store 1 ,mem_kb_current_status 
+0x4290 006965 rtn 
+:      006968 kb_kscan_release_foundkey:
+0x4291 006969 add contr ,-1 ,contw 
+0x4292 006970 call memcpy 
+0x4293 006971 fetch 1 ,mem_kb_keys 
+0x4294 006972 increase -1 ,pdata 
+0x4295 006973 store 1 ,mem_kb_keys 
+0x4296 006974 fetch 1 ,mem_kb_release_fn_data 
+0x4297 006975 beq 0x7f ,kb_clear_fn_lock_flag 
+0x4298 006976 branch kb_kscan_check 
+:      006978 kb_recover_kb_down_data:
+0x4299 006979 fetch 8 ,mem_kb_down 
+0x429a 006980 store 8 ,mem_kb_down_test 
+0x429b 006981 branch kb_kscan_check 
+:      006983 kb_kscan_fn:
+0x429c 006984 fetch 1 ,mem_kb_keys 
+0x429d 006985 branch kb_kscan_no_data ,blank 
+0x429e 006986 copy pdata ,regb 
+0x429f 006987 fetch 5 ,mem_kb_down 
+0x42a0 006988 copy pdata ,temp 
+:      006989 kb_kscan_fn_loop:
+0x42a1 006990 copy temp ,pdata 
+0x42a2 006991 compare 0x7f ,pdata ,0xff 
+0x42a3 006992 branch kb_get_fn ,true 
+0x42a4 006993 increase -1 ,regb 
+0x42a5 006994 setarg mem_kb_down_regroup 
+0x42a6 006995 iadd regb ,contw 
+0x42a7 006996 copy temp ,pdata 
+0x42a8 006997 istore 1 ,contw 
+0x42a9 006998 copy temp ,pdata 
+0x42aa 006999 rshift8 pdata ,pdata 
+0x42ab 007000 copy pdata ,temp 
+0x42ac 007001 nbranch kb_kscan_fn_loop ,blank 
+0x42ad 007002 fetch 5 ,mem_kb_down_regroup 
+0x42ae 007003 call kb_down_data ,blank 
+0x42af 007004 branch kb_kscan_check 
+:      007005 kb_get_fn:
+0x42b0 007006 setarg 1 
+0x42b1 007007 store 1 ,mem_kb_get_fn_flag 
+0x42b2 007008 branch kb_kscan_fn_loop + 8 
+:      007010 select_system_led_timer:
+0x42b3 007011 fetch 1 ,mem_select_system_led_timer 
+0x42b4 007012 rtn blank 
+0x42b5 007013 increase -1 ,pdata 
+0x42b6 007014 store 1 ,mem_select_system_led_timer 
+0x42b7 007015 nrtn blank 
+0x42b8 007016 branch ui_led_blink_stop 
+:      007019 kb_current_status_regroup:
+0x42b9 007020 copy regb ,pdata 
+0x42ba 007021 and_into kb_map2_status_win ,pdata 
+0x42bb 007022 store 1 ,mem_kb_current_status 
+0x42bc 007023 rtn 
+:      007024 kb_clear_fn_lock_flag:
+0x42bd 007025 jam 0 ,mem_kb_get_fn_flag 
+0x42be 007026 call kb_down_data 
+0x42bf 007027 branch kb_kscan_check 
+:      007030 kb_kscan_check:
+0x42c0 007031 set0 mark_ext_patch ,mark 
+0x42c1 007032 bpatch patch1a_1 ,mem_patch1a 
+0x42c2 007033 hfetch 1 ,core_kscn_kstat 
+0x42c3 007034 rtnbit1 kb_kscan_stat_empty 
+0x42c4 007035 hfetch 1 ,core_kscn_event_num 
+0x42c5 007036 bbit1 kb_kscan_key_event_stat ,kb_kscan_read_event 
+0x42c6 007037 hfetch 1 ,core_kscn_kstat 
+0x42c7 007038 bbit0 kb_kscan_stat_ghost ,kb_kscan_read_event 
+0x42c8 007039 hfetch 1 ,core_kscn_event 
+0x42c9 007040 branch kb_kscan_check 
+:      007042 kb_kscan_no_data:
+0x42ca 007043 call kb_clear_data 
+0x42cb 007044 branch kb_kscan_check 
+:      007046 kb_down_data:
+0x42cc 007047 fetch 8 ,mem_kb_down 
+0x42cd 007048 store 8 ,mem_kb_down_test 
+0x42ce 007049 rtn 
+:      007051 kb_clear_data:
+0x42cf 007052 setarg 0 
+0x42d0 007053 store 1 ,mem_kb_get_fn_flag 
+0x42d1 007054 store 5 ,mem_kb_down_regroup 
+0x42d2 007055 store 8 ,mem_kb_down 
+0x42d3 007056 rtn 
+:      007058 kb_kscan_read_event:
+0x42d4 007059 fetch 1 ,mem_kb_temp_flag 
+0x42d5 007060 set1 key_event_flag ,pdata 
+0x42d6 007061 store 1 ,mem_kb_temp_flag 
+0x42d7 007063 hfetch 1 ,core_kscn_event_num 
+0x42d8 007064 isolate1 kb_kscan_key_event_stat ,pdata 
+0x42d9 007065 store 1 ,mem_kscan_event_num_last 
+0x42da 007066 hfetch 1 ,core_kscn_event 
+0x42db 007067 store 1 ,mem_kscn_event_last 
+0x42dc 007068 arg mem_kb_map ,contr 
+0x42dd 007069 iadd contr ,contr 
+0x42de 007070 ifetch 1 ,contr 
+0x42df 007071 fetcht 1 ,mem_kb_keys 
+0x42e0 007072 sub temp ,4 ,null 
+0x42e1 007073 nbranch kb_kscan_check ,positive 
+0x42e2 007074 iforce contr 
+0x42e3 007075 setarg mem_kb_down 
+0x42e4 007076 iadd temp ,contw 
+0x42e5 007077 deposit contr 
+0x42e6 007078 istore 1 ,contw 
+0x42e7 007079 increase 1 ,temp 
+0x42e8 007080 storet 1 ,mem_kb_keys 
+0x42e9 007081 branch kb_kscan_fn 
+:      007097 l2cap_init:
+0x42ea 007098 branch l2cap_init_wake ,wake 
+:      007099 l2cap_init_work:
+0x42eb 007100 setarg mem_l2cap_xmem_end 
+0x42ec 007101 arg mem_l2cap_xmem_start ,contw 
+0x42ed 007102 isub contw ,loopcnt 
+0x42ee 007103 call clear_mem 
+:      007104 l2cap_init_wake:
+0x42ef 007105 set0 mark_ext_patch ,mark 
+0x42f0 007106 bpatch patch1a_2 ,mem_patch1a 
+0x42f1 007107 setarg mem_sdp_mem_end 
+0x42f2 007108 arg mem_sdp_mem_start ,contw 
+0x42f3 007109 isub contw ,loopcnt 
+0x42f4 007110 call clear_mem 
+0x42f5 007111 setarg mem_l2cap_mem_end 
+0x42f6 007112 arg mem_l2cap_mem_start ,contw 
+0x42f7 007113 isub contw ,loopcnt 
+0x42f8 007114 call clear_mem 
+0x42f9 007115 branch l2cap_lpm_load_txbuf 
+:      007117 process_rx_l2cap_pkt:
+0x42fa 007118 set0 mark_ext_patch ,mark 
+0x42fb 007119 bpatch patch1a_3 ,mem_patch1a 
+0x42fc 007120 copy contr ,temp 
+0x42fd 007123 copy temp ,contr 
+0x42fe 007124 ifetch 2 ,contr 
+0x42ff 007125 store 2 ,mem_l2cap_rx_pkt_length 
+0x4300 007126 ifetch 2 ,contr 
+0x4301 007127 store 2 ,mem_l2cap_rx_cid 
+0x4302 007128 deposit contr 
+0x4303 007129 store 2 ,mem_l2cap_payload_ptr 
+0x4304 007130 fetch 1 ,memui_reconnect_mode 
+0x4305 007131 beq no_reconnection ,l2cap_rx_multiplexing 
+0x4306 007132 branch ml2cap_rx_multiplexing 
+:      007134 l2cap_rx_multiplexing:
+0x4307 007135 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4308 007136 branch l2cap_rx_reset_state ,blank 
+0x4309 007137 set0 mark_ext_patch ,mark 
+0x430a 007138 bpatch patch1a_4 ,mem_patch1a 
+0x430b 007139 fetch 1 ,mem_l2cap_rx_cid 
+0x430c 007140 beq l2cap_signal_channel ,l2cap_call_proc_signal 
+:      007141 l2cap_rx_multiplexing0:
+0x430d 007142 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+0x430e 007143 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+0x430f 007144 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+0x4310 007145 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+0x4311 007146 branch l2cap_rx_reset_state 
+:      007148 l2cap_check_map:
+0x4312 007151 set0 mark_ext_patch ,mark 
+0x4313 007152 bpatch patch1a_5 ,mem_patch1a 
+0x4314 007153 call l2cap_malloc_get_full_map 
+0x4315 007154 fetch 1 ,mem_used_map 
+0x4316 007155 beq 0 ,set_pdata_0 
+0x4317 007156 beq 1 ,set_pdata_0 
+0x4318 007157 beq 2 ,set_pdata_0 
+0x4319 007158 beq 3 ,set_pdata_0 
+0x431a 007159 beq 0x81 ,set_pdata_0 
+0x431b 007160 beq 0xc0 ,set_pdata_0 
+0x431c 007161 beq 0x80 ,set_pdata_0 
+0x431d 007162 beq 0x40 ,set_pdata_0 
+0x431e 007163 rtn 
+:      007165 set_pdata_0:
+0x431f 007166 setarg 0 
+0x4320 007167 rtn 
+:      007170 l2cap_call_proc_signal:
+0x4321 007171 call l2cap_check_map 
+0x4322 007172 nrtn blank 
+:      007173 l2cap_call_proc_signal0:
+0x4323 007174 call l2cap_malloc_signal_channel 
+0x4324 007175 call l2cap_process_signal_pkt 
+0x4325 007176 fetcht 2 ,mem_l2cap_signal_tx_length 
+0x4326 007177 branch l2cap_call_proc_no_reply ,blank 
+0x4327 007178 call l2cap_get_signal_tx_buff 
+0x4328 007179 fetch 2 ,mem_l2cap_signal_tx_length 
+0x4329 007180 istore 2 ,contw 
+0x432a 007181 force l2cap_signal_channel ,pdata 
+0x432b 007182 istore 2 ,contw 
+0x432c 007183 branch l2cap_rx_reset_state 
+:      007185 l2cap_call_proc_sigal_pending:
+0x432d 007186 fetch 1 ,mem_l2cap_pending_item 
+0x432e 007187 rtn blank 
+0x432f 007188 copy pdata ,rega 
+0x4330 007189 set0 mark_ext_patch ,mark 
+0x4331 007190 bpatch patch1a_6 ,mem_patch1a 
+0x4332 007191 fetch 4 ,mem_l2cap_sdpres_delay_time 
+0x4333 007192 arg 0x100 ,temp 
+0x4334 007193 iadd temp ,temp 
+0x4335 007194 copy clkn_bt ,pdata 
+0x4336 007195 isub temp ,null 
+0x4337 007196 nrtn positive 
+0x4338 007197 jam 0 ,mem_l2cap_pending_item 
+0x4339 007198 copy rega ,pdata 
+0x433a 007199 beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
+0x433b 007200 branch assert 
+:      007201 l2cap_sdp_conn_succ:
+0x433c 007202 arg 0 ,debug 
+0x433d 007203 call l2cap_malloc_signal_channel 
+0x433e 007204 call restore_l2cap_req_param 
+0x433f 007205 call l2cap_get_signal_tx_payload 
+0x4340 007206 call save_cont_pointers 
+0x4341 007207 call send_connection_sdp_res 
+0x4342 007208 call l2cap_get_signal_tx_buff 
+0x4343 007210 setarg 0x000c 
+0x4344 007211 istore 2 ,contw 
+0x4345 007212 force l2cap_signal_channel ,pdata 
+0x4346 007213 istore 2 ,contw 
+0x4347 007214 branch l2cap_rx_reset_state 
+:      007218 l2cap_reset_sdp_map:
+0x4348 007219 set0 mark_ext_patch ,mark 
+0x4349 007220 bpatch patch1a_7 ,mem_patch1a 
+0x434a 007221 fetch 2 ,mem_sdp_tx_pkt_length 
+0x434b 007222 increase 4 ,pdata 
+0x434c 007223 rshift4 pdata ,pdata 
+0x434d 007224 rshift3 pdata ,pdata 
+0x434e 007225 add pdata ,1 ,temp 
+0x434f 007226 arg mem_tx_fifo3 ,contr 
+0x4350 007227 ifetch 3 ,contr 
+0x4351 007228 rtn blank 
+0x4352 007229 store 3 ,mem_tx_fifo_map_temp 
+0x4353 007230 fetch 1 ,mem_tx_fifo_map_temp 
+0x4354 007231 copy pdata ,rega 
+0x4355 007232 call check_l2cap_map 
+0x4356 007233 copy regb ,pdata 
+0x4357 007234 store 1 ,mem_tx_fifo3 
+0x4358 007235 rtn 
+:      007237 check_l2cap_map:
+0x4359 007238 arg 0 ,queue 
+0x435a 007239 arg 0 ,regb 
+:      007241 check_l2cap_map_loop:
+0x435b 007242 sub queue ,7 ,null 
+0x435c 007243 nrtn positive 
+0x435d 007244 qisolate1 rega 
+0x435e 007245 branch check_l2cap_map_used ,true 
+0x435f 007246 branch check_l2cap_map_used2 
+:      007248 check_l2cap_map_used:
+0x4360 007249 copy temp ,pdata 
+0x4361 007250 branch check_l2cap_map_used2 ,blank 
+0x4362 007251 qset1 regb 
+0x4363 007252 increase -1 ,temp 
+:      007254 check_l2cap_map_used2:
+0x4364 007255 increase 1 ,queue 
+0x4365 007256 branch check_l2cap_map_loop 
+:      007258 l2cap_call_proc_sdp:
+0x4366 007259 call l2cap_malloc_is_fifo_empty 
+0x4367 007260 nrtn blank 
+0x4368 007261 call l2cap_check_map 
+0x4369 007262 nrtn blank 
+0x436a 007263 call l2cap_malloc_sdp_channel 
+0x436b 007264 call sdp_process 
+0x436c 007265 call l2cap_reset_sdp_map 
+0x436d 007266 branch l2cap_call_proc_sdp_common 
+:      007269 ml2cap_call_proc_sdp:
+0x436e 007270 call l2cap_malloc_is_fifo_empty 
+0x436f 007271 nrtn blank 
+0x4370 007272 call l2cap_malloc_sdp_channel 
+0x4371 007273 call sdp_process 
+:      007274 l2cap_call_proc_sdp_common:
+0x4372 007275 call l2cap_get_sdp_tx_buff 
+0x4373 007276 fetch 2 ,mem_sdp_tx_pkt_length 
+0x4374 007277 branch l2cap_call_proc_no_reply ,blank 
+0x4375 007278 istore 2 ,contw 
+0x4376 007279 fetch 2 ,mem_sdp_remote_cid 
+0x4377 007280 istore 2 ,contw 
+0x4378 007281 branch l2cap_rx_reset_state 
+:      007283 l2cap_call_proc_hid:
+0x4379 007284 call hid_rx_process 
+0x437a 007285 branch l2cap_rx_reset_state 
+:      007287 l2cap_call_proc_rfcomm:
+0x437b 007288 set0 mark_ext_patch ,mark 
+0x437c 007289 bpatch patch1b_0 ,mem_patch1b 
+0x437d 007290 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+0x437e 007291 call rfcomm_rx_process 
+0x437f 007292 fetch 1 ,mem_rfcomm_malloc_fail_flag 
+0x4380 007293 rtneq rfcomm_malloc_fail 
+0x4381 007294 branch l2cap_rx_reset_state 
+:      007295 l2cap_call_proc_no_reply:
+0x4382 007296 call l2cap_malloc_discard 
+:      007298 l2cap_rx_reset_state:
+0x4383 007299 setarg 0 
+0x4384 007300 store 2 ,mem_l2cap_rx_pkt_length 
+0x4385 007301 store 2 ,mem_l2cap_rx_cid 
+0x4386 007302 jam l2cap_rx_done ,mem_l2cap_rx_done 
+0x4387 007303 rtn 
+:      007305 l2cap_process_signal_pkt:
+0x4388 007306 set0 mark_ext_patch ,mark 
+0x4389 007307 bpatch patch1b_1 ,mem_patch1b 
+0x438a 007308 call l2cap_get_signal_tx_payload 
+0x438b 007309 force 0 ,regb 
+0x438c 007310 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x438d 007311 copy pdata ,regc 
+0x438e 007312 fetch 2 ,mem_l2cap_payload_ptr 
+0x438f 007313 iforce contr 
+:      007314 l2cap_process_signal_pkt_loop:
+0x4390 007315 call l2cap_process_one_signal 
+0x4391 007316 deposit regc 
+0x4392 007317 increase -4 ,regc 
+0x4393 007318 increase -4 ,pdata 
+0x4394 007319 nbranch l2cap_process_signal_pkt_loop ,blank 
+0x4395 007320 copy regb ,pdata 
+0x4396 007321 store 2 ,mem_l2cap_signal_tx_length 
+0x4397 007322 rtn 
+:      007324 l2cap_process_one_signal:
+0x4398 007325 set0 mark_ext_patch ,mark 
+0x4399 007326 bpatch patch1b_2 ,mem_patch1b 
+0x439a 007327 ifetch 1 ,contr 
+0x439b 007328 beq signal_cmd_reject ,l2cap_proc_signal_cmd_reject 
+0x439c 007329 beq signal_connect_req ,l2cap_proc_signal_connect_req 
+0x439d 007330 beq signal_connect_rsp ,l2cap_proc_signal_connect_rsp 
+0x439e 007331 beq signal_config_req ,l2cap_proc_signal_config_req 
+0x439f 007332 beq signal_config_rsp ,l2cap_proc_signal_config_rsp 
+0x43a0 007333 beq signal_disconnect_req ,l2cap_proc_signal_disconnect_req 
+0x43a1 007334 beq signal_disconnect_rsp ,l2cap_proc_signal_disconnect_rsp 
+0x43a2 007335 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+0x43a3 007336 beq signal_echo_rsp ,l2cap_proc_signal_echo_rsp 
+0x43a4 007337 beq signal_info_req ,l2cap_proc_signal_info_req 
+0x43a5 007338 beq signal_info_rsp ,l2cap_proc_signal_info_rsp 
+0x43a6 007339 call l2cap_reject_command 
+:      007340 l2cap_process_one_signal_rtn:
+0x43a7 007341 rtn 
+:      007343 l2cap_proc_signal_info_req:
+0x43a8 007344 ifetch 1 ,contr 
+0x43a9 007345 copy pdata ,queue 
+0x43aa 007346 ifetch 2 ,contr 
+0x43ab 007347 copy pdata ,rega 
+0x43ac 007348 copy regc ,pdata 
+0x43ad 007349 isub rega ,regc 
+0x43ae 007350 setarg signal_info_rsp 
+0x43af 007351 istore 1 ,contw 
+0x43b0 007352 copy queue ,pdata 
+0x43b1 007353 istore 1 ,contw 
+0x43b2 007354 ifetch 2 ,contr 
+:      007355 l2cap_proc_signal_info_req_reply:
+0x43b3 007356 beq l2cap_sig_ext_featrue ,l2cap_proc_signal_info_req_ext 
+0x43b4 007357 beq l2cap_sig_fix_featrue ,l2cap_proc_signal_info_req_fix 
+0x43b5 007358 rtn 
+:      007359 l2cap_proc_signal_info_req_ext:
+0x43b6 007360 setarg 0x020008 
+0x43b7 007361 istore 6 ,contw 
+0x43b8 007362 setarg 0x0280 
+0x43b9 007363 istore 4 ,contw 
+0x43ba 007364 force 12 ,pdata 
+0x43bb 007365 branch l2cap_proc_signal_info_req_common 
+:      007366 l2cap_proc_signal_info_req_fix:
+0x43bc 007367 setarg 0x3000c 
+0x43bd 007368 istore 6 ,contw 
+0x43be 007369 setarg 0x0006 
+0x43bf 007370 istore 8 ,contw 
+0x43c0 007371 force 16 ,pdata 
+:      007372 l2cap_proc_signal_info_req_common:
+0x43c1 007373 iadd regb ,regb 
+0x43c2 007374 branch l2cap_process_one_signal_rtn 
+:      007376 ml2cap_proc_signal_info_req:
+0x43c3 007377 ifetch 1 ,contr 
+0x43c4 007378 copy pdata ,queue 
+0x43c5 007379 ifetch 2 ,contr 
+0x43c6 007380 copy pdata ,rega 
+0x43c7 007381 ifetch 2 ,contr 
+0x43c8 007382 store 2 ,mem_temp 
+0x43c9 007383 copy regc ,pdata 
+0x43ca 007384 isub rega ,regc 
+0x43cb 007385 call l2cap_get_signal_tx_payload 
+0x43cc 007386 setarg signal_info_rsp 
+0x43cd 007387 istore 1 ,contw 
+0x43ce 007388 copy queue ,pdata 
+0x43cf 007389 istore 1 ,contw 
+0x43d0 007390 fetch 2 ,mem_temp 
+0x43d1 007391 branch l2cap_proc_signal_info_req_reply 
+:      007395 l2cap_proc_signal_cmd_reject:
+0x43d2 007396 ifetch 1 ,contr 
+0x43d3 007397 copy pdata ,queue 
+0x43d4 007398 ifetch 2 ,contr 
+0x43d5 007399 copy pdata ,rega 
+0x43d6 007400 iadd contr ,contr 
+0x43d7 007401 copy regc ,pdata 
+0x43d8 007402 isub rega ,regc 
+:      007403 l2cap_proc_signal_cmd_reject_rtn:
+0x43d9 007404 branch l2cap_process_one_signal_rtn 
+:      007406 l2cap_proc_signal_connect_req:
+0x43da 007407 call save_cont_pointers 
+0x43db 007410 call load_cont_pointers 
+0x43dc 007411 arg 0 ,debug 
+0x43dd 007412 ifetch 1 ,contr 
+0x43de 007413 copy pdata ,queue 
+0x43df 007414 ifetch 2 ,contr 
+0x43e0 007415 copy pdata ,rega 
+0x43e1 007416 ifetch 2 ,contr 
+0x43e2 007417 copy pdata ,temp 
+0x43e3 007418 ifetch 2 ,contr 
+0x43e4 007419 copy pdata ,timeup 
+0x43e5 007420 set0 mark_ext_patch ,mark 
+0x43e6 007421 bpatch patch1b_3 ,mem_patch1b 
+0x43e7 007422 copy temp ,pdata 
+0x43e8 007423 beq psm_sdp ,l2cap_proc_signal_connect_req_sdp 
+0x43e9 007424 beq psm_rfcomm ,l2cap_proc_signal_connect_req_rfcomm 
+0x43ea 007425 beq psm_hid_control ,l2cap_proc_signal_connect_req_hid_ctrl 
+0x43eb 007426 beq psm_hid_interrupt ,l2cap_proc_signal_connect_req_hid_int 
+0x43ec 007427 call l2cap_reject_command 
+0x43ed 007428 branch l2cap_proc_signal_connect_req_rtn 
+:      007430 l2cap_proc_signal_connect_req_sdp:
+0x43ee 007431 call save_cont_pointers 
+0x43ef 007432 arg l2cap_sdp_channel ,temp 
+0x43f0 007433 fetch 2 ,mem_sdp_remote_cid 
+0x43f1 007434 nbranch already_connected ,blank 
+0x43f2 007435 copy timeup ,pdata 
+0x43f3 007436 store 2 ,mem_sdp_remote_cid 
+0x43f4 007437 copy clkn_bt ,pdata 
+0x43f5 007438 store 4 ,mem_l2cap_sdpres_delay_time 
+0x43f6 007439 call store_l2cap_req_param 
+0x43f7 007440 branch send_connection_pending 
+:      007442 store_l2cap_req_param:
+0x43f8 007443 storet 2 ,mem_psm 
+0x43f9 007444 deposit timeup 
+0x43fa 007445 store 2 ,mem_scid 
+0x43fb 007446 deposit rega 
+0x43fc 007447 store 2 ,mem_cmd_length 
+0x43fd 007448 deposit regb 
+0x43fe 007449 store 2 ,mem_tt2 
+0x43ff 007450 deposit regc 
+0x4400 007451 store 2 ,mem_tt3 
+0x4401 007452 deposit queue 
+0x4402 007453 store 2 ,mem_id 
+0x4403 007454 rtn 
+:      007456 restore_l2cap_req_param:
+0x4404 007457 fetcht 2 ,mem_psm 
+0x4405 007458 fetch 2 ,mem_scid 
+0x4406 007459 copy pdata ,timeup 
+0x4407 007460 fetch 2 ,mem_cmd_length 
+0x4408 007461 copy pdata ,rega 
+0x4409 007462 fetch 2 ,mem_tt2 
+0x440a 007463 copy pdata ,regb 
+0x440b 007464 fetch 2 ,mem_tt3 
+0x440c 007465 copy pdata ,regc 
+0x440d 007466 fetch 2 ,mem_id 
+0x440e 007467 copy pdata ,queue 
+0x440f 007468 rtn 
+:      007470 l2cap_proc_signal_connect_req_rfcomm:
+0x4410 007471 call save_cont_pointers 
+0x4411 007472 setarg l2cap_rfcomm_channel 
+0x4412 007473 arg l2cap_rfcomm_channel ,temp 
+0x4413 007474 fetch 2 ,mem_rfcomm_remote_cid 
+0x4414 007475 nbranch already_connected ,blank 
+0x4415 007476 copy timeup ,pdata 
+0x4416 007477 store 2 ,mem_rfcomm_remote_cid 
+0x4417 007478 fetch 1 ,mem_rfcomm_state 
+0x4418 007479 set1 l2cap_channel_state_conn_req ,pdata 
+0x4419 007480 set1 l2cap_channel_state_conn_res ,pdata 
+0x441a 007481 store 1 ,mem_rfcomm_state 
+0x441b 007482 branch send_connection_res 
+:      007483 l2cap_proc_signal_connect_req_hid_ctrl:
+0x441c 007484 call save_cont_pointers 
+0x441d 007485 arg l2cap_hid_control_channel ,temp 
+0x441e 007486 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x441f 007487 nbranch already_connected ,blank 
+0x4420 007488 copy timeup ,pdata 
+0x4421 007489 store 2 ,mem_hid_ctrl_remote_cid 
+0x4422 007490 fetch 1 ,mem_hid_control_state 
+0x4423 007491 set1 l2cap_channel_state_conn_req ,pdata 
+0x4424 007492 set1 l2cap_channel_state_conn_res ,pdata 
+0x4425 007493 store 1 ,mem_hid_control_state 
+0x4426 007494 branch send_connection_res 
+:      007495 l2cap_proc_signal_connect_req_hid_int:
+0x4427 007496 call save_cont_pointers 
+0x4428 007497 deposit clke 
+0x4429 007498 arg l2cap_hid_interrupt_channel ,temp 
+0x442a 007499 fetch 2 ,mem_hid_int_remote_cid 
+0x442b 007500 nbranch already_connected ,blank 
+0x442c 007501 copy timeup ,pdata 
+0x442d 007502 store 2 ,mem_hid_int_remote_cid 
+0x442e 007503 fetch 1 ,mem_hid_interrupt_state 
+0x442f 007504 set1 l2cap_channel_state_conn_req ,pdata 
+0x4430 007505 set1 l2cap_channel_state_conn_res ,pdata 
+0x4431 007506 store 1 ,mem_hid_interrupt_state 
+0x4432 007507 branch send_connection_res 
+:      007509 send_connection_pending:
+0x4433 007510 setarg l2cap_connect_pending 
+0x4434 007511 store 2 ,meml2cap_t1 
+0x4435 007512 jam l2cap_sdp_channel ,mem_l2cap_pending_item 
+0x4436 007513 branch send_connection_res0 
+:      007514 send_connection_sdp_res:
+0x4437 007515 fetch 1 ,mem_sdp_state 
+0x4438 007516 set1 l2cap_channel_state_conn_req ,pdata 
+0x4439 007517 set1 l2cap_channel_state_conn_res ,pdata 
+0x443a 007518 store 1 ,mem_sdp_state 
+:      007519 send_connection_res:
+0x443b 007520 setarg l2cap_connect_successful 
+0x443c 007521 store 2 ,meml2cap_t1 
+:      007522 send_connection_res0:
+0x443d 007523 set0 mark_ext_patch ,mark 
+0x443e 007524 bpatch patch1b_4 ,mem_patch1b 
+0x443f 007525 call load_cont_pointers 
+0x4440 007526 setarg signal_connect_rsp 
+0x4441 007527 istore 1 ,contw 
+0x4442 007528 copy queue ,pdata 
+0x4443 007529 istore 1 ,contw 
+0x4444 007530 setarg 0x0008 
+0x4445 007531 istore 2 ,contw 
+0x4446 007532 copy temp ,pdata 
+0x4447 007533 istore 2 ,contw 
+0x4448 007534 copy timeup ,pdata 
+0x4449 007535 istore 2 ,contw 
+0x444a 007536 fetch 2 ,meml2cap_t1 
+0x444b 007537 beq l2cap_connect_pending ,connect_pending 
+0x444c 007538 isolate0 0 ,debug 
+0x444d 007539 branch connect_suc ,true 
+0x444e 007540 setarg l2cap_connect_refused_no_resources 
+:      007541 connect_suc:
+0x444f 007542 istore 2 ,contw 
+0x4450 007543 force 0x0000 ,pdata 
+0x4451 007544 istore 2 ,contw 
+0x4452 007545 setarg 12 
+0x4453 007546 branch connect_req_update_byte_counts 
+:      007547 connect_pending:
+0x4454 007548 istore 2 ,contw 
+0x4455 007549 force 0x0002 ,pdata 
+0x4456 007550 istore 2 ,contw 
+0x4457 007551 setarg 12 
+0x4458 007552 branch connect_req_update_byte_counts 
+:      007554 already_connected:
+0x4459 007555 set1 0 ,debug 
+0x445a 007556 branch send_connection_res 
+:      007557 connect_req_update_byte_counts:
+0x445b 007558 iadd regb ,regb 
+0x445c 007559 copy regc ,pdata 
+0x445d 007560 isub rega ,regc 
+0x445e 007561 branch l2cap_proc_signal_connect_req_rtn 
+:      007562 l2cap_proc_signal_connect_req_rtn:
+0x445f 007563 branch l2cap_process_one_signal_rtn 
+:      007565 l2cap_proc_signal_connect_rsp:
+0x4460 007566 ifetch 1 ,contr 
+0x4461 007567 copy pdata ,queue 
+0x4462 007568 ifetch 2 ,contr 
+0x4463 007569 copy pdata ,rega 
+0x4464 007570 copy regc ,pdata 
+0x4465 007571 isub rega ,regc 
+0x4466 007572 ifetch 2 ,contr 
+0x4467 007573 copy pdata ,timeup 
+0x4468 007574 ifetch 2 ,contr 
+0x4469 007575 copy pdata ,temp 
+0x446a 007576 set0 mark_ext_patch ,mark 
+0x446b 007577 bpatch patch1b_5 ,mem_patch1b 
+0x446c 007578 setarg l2cap_sdp_channel 
+0x446d 007579 isub temp ,null 
+0x446e 007580 branch l2cap_proc_signal_connect_rsp_sdp ,zero 
+0x446f 007581 setarg l2cap_rfcomm_channel 
+0x4470 007582 isub temp ,null 
+0x4471 007583 branch l2cap_proc_signal_connect_rsp_rfcomm ,zero 
+0x4472 007584 setarg l2cap_hid_control_channel 
+0x4473 007585 isub temp ,null 
+0x4474 007586 branch l2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+0x4475 007587 setarg l2cap_hid_interrupt_channel 
+0x4476 007588 isub temp ,null 
+0x4477 007589 branch l2cap_proc_signal_connect_rsp_hid_int ,zero 
+0x4478 007590 rtn 
+:      007592 l2cap_proc_signal_connect_rsp_sdp:
+0x4479 007593 copy timeup ,pdata 
+0x447a 007594 store 2 ,mem_sdp_remote_cid 
+0x447b 007595 fetch 1 ,mem_sdp_state 
+0x447c 007596 set1 l2cap_channel_state_conn_res ,pdata 
+0x447d 007597 store 1 ,mem_sdp_state 
+0x447e 007598 branch l2cap_process_one_signal_rtn 
+:      007599 l2cap_proc_signal_connect_rsp_rfcomm:
+0x447f 007600 copy timeup ,pdata 
+0x4480 007601 store 2 ,mem_rfcomm_remote_cid 
+0x4481 007602 fetch 1 ,mem_rfcomm_state 
+0x4482 007603 set1 l2cap_channel_state_conn_res ,pdata 
+0x4483 007604 store 1 ,mem_rfcomm_state 
+0x4484 007605 rtn 
+:      007606 l2cap_proc_signal_connect_rsp_hid_int:
+0x4485 007607 copy timeup ,pdata 
+0x4486 007608 store 2 ,mem_hid_ctrl_remote_cid 
+0x4487 007609 fetch 1 ,mem_hid_interrupt_state 
+0x4488 007610 set1 l2cap_channel_state_conn_res ,pdata 
+0x4489 007611 store 1 ,mem_hid_interrupt_state 
+0x448a 007612 rtn 
+:      007613 l2cap_proc_signal_connect_rsp_hid_ctrl:
+0x448b 007614 copy timeup ,pdata 
+0x448c 007615 store 2 ,mem_hid_int_remote_cid 
+0x448d 007616 fetch 1 ,mem_hid_control_state 
+0x448e 007617 set1 l2cap_channel_state_conn_res ,pdata 
+0x448f 007618 store 1 ,mem_hid_control_state 
+0x4490 007619 rtn 
+:      007621 l2cap_proc_signal_config_req:
+0x4491 007622 ifetch 1 ,contr 
+0x4492 007623 copy pdata ,queue 
+0x4493 007624 ifetch 2 ,contr 
+0x4494 007625 copy pdata ,rega 
+0x4495 007626 copy regc ,pdata 
+0x4496 007627 isub rega ,regc 
+0x4497 007628 ifetch 2 ,contr 
+0x4498 007629 copy pdata ,temp 
+0x4499 007630 copy temp ,rega 
+0x449a 007631 set0 mark_ext_patch ,mark 
+0x449b 007632 bpatch patch1b_6 ,mem_patch1b 
+0x449c 007633 setarg l2cap_sdp_channel 
+0x449d 007634 isub temp ,null 
+0x449e 007635 branch l2cap_proc_signal_config_req_sdp ,zero 
+0x449f 007636 setarg l2cap_rfcomm_channel 
+0x44a0 007637 isub temp ,null 
+0x44a1 007638 branch l2cap_proc_signal_config_req_rfcomm ,zero 
+0x44a2 007639 setarg l2cap_hid_control_channel 
+0x44a3 007640 isub temp ,null 
+0x44a4 007641 branch l2cap_proc_signal_config_req_hid_ctrl ,zero 
+0x44a5 007642 setarg l2cap_hid_interrupt_channel 
+0x44a6 007643 isub temp ,null 
+0x44a7 007644 branch l2cap_proc_signal_config_req_hid_int ,zero 
+0x44a8 007645 branch l2cap_reject_command 
+:      007647 l2cap_proc_signal_config_req_sdp:
+0x44a9 007648 copy contw ,timeup 
+0x44aa 007649 fetch 1 ,mem_sdp_state 
+0x44ab 007650 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44ac 007651 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44ad 007653 store 1 ,mem_sdp_state 
+0x44ae 007654 copy timeup ,contw 
+0x44af 007655 arg l2cap_sdp_channel ,timeup 
+0x44b0 007656 fetch 2 ,mem_sdp_remote_cid 
+0x44b1 007657 copy pdata ,temp 
+0x44b2 007658 branch l2cap_send_config_rsp 
+:      007659 l2cap_proc_signal_config_req_hid_ctrl:
+0x44b3 007660 copy contw ,timeup 
+0x44b4 007661 fetch 1 ,mem_hid_control_state 
+0x44b5 007662 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44b6 007663 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44b7 007665 store 1 ,mem_hid_control_state 
+0x44b8 007666 copy timeup ,contw 
+0x44b9 007667 arg l2cap_hid_control_channel ,timeup 
+0x44ba 007668 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x44bb 007669 copy pdata ,temp 
+0x44bc 007670 branch l2cap_send_config_rsp 
+:      007671 l2cap_proc_signal_config_req_hid_int:
+0x44bd 007672 copy contw ,timeup 
+0x44be 007673 fetch 1 ,mem_hid_interrupt_state 
+0x44bf 007674 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44c0 007675 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44c1 007677 store 1 ,mem_hid_interrupt_state 
+0x44c2 007678 copy timeup ,contw 
+0x44c3 007679 arg l2cap_hid_interrupt_channel ,timeup 
+0x44c4 007680 fetch 2 ,mem_hid_int_remote_cid 
+0x44c5 007681 copy pdata ,temp 
+0x44c6 007682 branch l2cap_send_config_rsp 
+:      007683 l2cap_proc_signal_config_req_rfcomm:
+0x44c7 007684 copy contw ,timeup 
+0x44c8 007685 fetch 1 ,mem_rfcomm_state 
+0x44c9 007686 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x44ca 007687 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x44cb 007689 store 1 ,mem_rfcomm_state 
+0x44cc 007691 copy timeup ,contw 
+0x44cd 007692 arg l2cap_rfcomm_channel ,timeup 
+0x44ce 007693 fetch 2 ,mem_rfcomm_remote_cid 
+0x44cf 007694 copy pdata ,temp 
+:      007695 l2cap_send_config_rsp:
+0x44d0 007696 set0 mark_ext_patch ,mark 
+0x44d1 007697 bpatch patch1b_7 ,mem_patch1b 
+0x44d2 007698 setarg signal_config_rsp 
+0x44d3 007699 istore 1 ,contw 
+0x44d4 007700 copy queue ,pdata 
+0x44d5 007701 istore 1 ,contw 
+0x44d6 007702 setarg 0x0006 
+0x44d7 007703 istore 2 ,contw 
+0x44d8 007704 copy temp ,pdata 
+0x44d9 007705 istore 2 ,contw 
+0x44da 007706 force 0x00 ,pdata 
+0x44db 007707 istore 2 ,contw 
+0x44dc 007708 force l2cap_config_success ,pdata 
+0x44dd 007709 istore 2 ,contw 
+0x44de 007710 force 10 ,pdata 
+0x44df 007711 iadd regb ,regb 
+0x44e0 007713 storet 2 ,mem_config_req_dest_cid 
+0x44e1 007714 copy queue ,pdata 
+0x44e2 007715 store 1 ,mem_config_identifier 
+0x44e3 007716 force l2cap_sdp_channel ,pdata 
+0x44e4 007717 icompare 0xff ,timeup 
+0x44e5 007718 branch l2cap_send_config_rsp_is_sdp ,true 
+0x44e6 007719 increase 1 ,pdata 
+:      007720 l2cap_send_config_rsp_is_sdp:
+0x44e7 007722 rtn 
+:      007723 l2cap_check_channel_state:
+0x44e8 007724 disable user 
+0x44e9 007725 rtnbit1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x44ea 007726 rtnbit0 l2cap_channel_state_conn_req ,pdata 
+0x44eb 007727 rtnbit0 l2cap_channel_state_conn_res ,pdata 
+0x44ec 007728 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x44ed 007729 copy contr ,contw 
+0x44ee 007730 increase -1 ,contw 
+0x44ef 007731 istore 1 ,contw 
+0x44f0 007732 enable user 
+0x44f1 007733 rtn 
+:      007734 l2cap_send_config_req:
+:      007735 l2cap_send_config_req_sdp:
+0x44f2 007736 fetch 1 ,mem_sdp_state 
+0x44f3 007737 call l2cap_check_channel_state 
+0x44f4 007738 nbranch l2cap_send_config_req_rfcomm ,user 
+0x44f5 007739 jam l2cap_sdp_channel ,mem_send_config_req 
+0x44f6 007740 fetch 2 ,mem_sdp_remote_cid 
+0x44f7 007741 store 2 ,mem_config_req_dest_cid 
+0x44f8 007742 branch l2cap_generate_config_req 
+:      007743 l2cap_send_config_req_rfcomm:
+0x44f9 007744 fetch 1 ,mem_rfcomm_state 
+0x44fa 007745 call l2cap_check_channel_state 
+0x44fb 007746 nbranch l2cap_send_config_req_hid_ctrl ,user 
+0x44fc 007747 jam l2cap_rfcomm_channel ,mem_send_config_req 
+0x44fd 007748 fetch 2 ,mem_rfcomm_remote_cid 
+0x44fe 007749 store 2 ,mem_config_req_dest_cid 
+0x44ff 007750 branch l2cap_generate_config_req 
+:      007751 l2cap_send_config_req_hid_ctrl:
+0x4500 007752 fetch 1 ,mem_hid_control_state 
+0x4501 007753 call l2cap_check_channel_state 
+0x4502 007754 nbranch l2cap_send_config_req_hid_int ,user 
+0x4503 007755 jam l2cap_hid_control_channel ,mem_send_config_req 
+0x4504 007756 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4505 007757 store 2 ,mem_config_req_dest_cid 
+0x4506 007758 branch l2cap_generate_config_req 
+:      007759 l2cap_send_config_req_hid_int:
+0x4507 007760 fetch 1 ,mem_hid_interrupt_state 
+0x4508 007761 call l2cap_check_channel_state 
+0x4509 007762 nrtn user 
+0x450a 007763 jam l2cap_hid_interrupt_channel ,mem_send_config_req 
+0x450b 007764 fetch 2 ,mem_hid_int_remote_cid 
+0x450c 007765 store 2 ,mem_config_req_dest_cid 
+:      007768 l2cap_generate_config_req:
+0x450d 007769 set0 mark_ext_patch ,mark 
+0x450e 007770 bpatch patch1c_0 ,mem_patch1c 
+0x450f 007771 call l2cap_get_req_id 
+0x4510 007772 call l2cap_malloc_signal_channel 
+0x4511 007773 force 0 ,regb 
+0x4512 007774 call l2cap_get_signal_tx_payload 
+0x4513 007775 force signal_config_req ,pdata 
+0x4514 007776 istore 1 ,contw 
+0x4515 007777 fetch 1 ,mem_ml2cap_comm_id 
+0x4516 007778 istore 1 ,contw 
+0x4517 007779 setarg 0x0008 
+0x4518 007780 istore 2 ,contw 
+0x4519 007781 fetch 2 ,mem_config_req_dest_cid 
+0x451a 007782 istore 2 ,contw 
+0x451b 007783 setarg 0x0000 
+0x451c 007784 istore 2 ,contw 
+0x451d 007785 force 1 ,pdata 
+0x451e 007786 istore 1 ,contw 
+0x451f 007787 force 2 ,pdata 
+0x4520 007788 istore 1 ,contw 
+0x4521 007789 fetch 1 ,mem_send_config_req 
+0x4522 007790 beq l2cap_rfcomm_channel ,l2cap_generate_config_req_rfcomm 
+0x4523 007791 setarg l2cap_config_mtu_sdp 
+0x4524 007792 istore 2 ,contw 
+0x4525 007793 branch l2cap_generate_config_req_done 
+:      007794 l2cap_generate_config_req_rfcomm:
+0x4526 007795 setarg l2cap_config_mtu_rfcomm 
+0x4527 007796 istore 2 ,contw 
+:      007797 l2cap_generate_config_req_done:
+0x4528 007798 arg 0x0c ,temp 
+0x4529 007799 storet 2 ,mem_l2cap_signal_tx_length 
+0x452a 007800 call l2cap_get_signal_tx_buff 
+0x452b 007801 fetch 2 ,mem_l2cap_signal_tx_length 
+0x452c 007802 istore 2 ,contw 
+0x452d 007803 force l2cap_signal_channel ,pdata 
+0x452e 007804 istore 2 ,contw 
+0x452f 007805 jam 0 ,mem_send_config_req 
+:      007806 l2cap_proc_signal_config_req_rtn:
+0x4530 007807 branch l2cap_process_one_signal_rtn 
+:      007809 l2cap_proc_signal_config_rsp:
+0x4531 007810 increase 1 ,contr 
+0x4532 007811 ifetch 2 ,contr 
+0x4533 007812 copy pdata ,rega 
+0x4534 007813 copy regc ,pdata 
+0x4535 007814 isub rega ,regc 
+0x4536 007815 ifetch 2 ,contr 
+0x4537 007816 copy pdata ,rega 
+0x4538 007817 set0 mark_ext_patch ,mark 
+0x4539 007818 bpatch patch1c_1 ,mem_patch1c 
+0x453a 007819 setarg l2cap_sdp_channel 
+0x453b 007820 isub rega ,null 
+0x453c 007821 branch l2cap_proc_signal_config_rsp_sdp ,zero 
+0x453d 007822 setarg l2cap_rfcomm_channel 
+0x453e 007823 isub rega ,null 
+0x453f 007824 branch l2cap_proc_signal_config_rsp_rfcomm ,zero 
+0x4540 007825 setarg l2cap_hid_control_channel 
+0x4541 007826 isub rega ,null 
+0x4542 007827 branch l2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+0x4543 007828 setarg l2cap_hid_interrupt_channel 
+0x4544 007829 isub rega ,null 
+0x4545 007830 branch l2cap_proc_signal_config_rsp_hid_int ,zero 
+0x4546 007831 increase 2 ,contr 
+0x4547 007832 ifetch 2 ,contr 
+0x4548 007833 iforce null 
+0x4549 007834 branch l2cap_process_one_signal_rtn 
+:      007835 l2cap_proc_signal_config_rsp_sdp:
+0x454a 007836 fetch 1 ,mem_sdp_state 
+0x454b 007837 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x454c 007838 store 1 ,mem_sdp_state 
+0x454d 007839 branch l2cap_process_one_signal_rtn 
+:      007840 l2cap_proc_signal_config_rsp_rfcomm:
+0x454e 007841 fetch 1 ,mem_rfcomm_state 
+0x454f 007842 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4550 007843 store 1 ,mem_rfcomm_state 
+0x4551 007844 branch l2cap_process_one_signal_rtn 
+:      007845 l2cap_proc_signal_config_rsp_hid_ctrl:
+0x4552 007846 fetch 1 ,mem_hid_control_state 
+0x4553 007847 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4554 007848 store 1 ,mem_hid_control_state 
+0x4555 007849 branch l2cap_process_one_signal_rtn 
+:      007850 l2cap_proc_signal_config_rsp_hid_int:
+0x4556 007851 fetch 1 ,mem_hid_interrupt_state 
+0x4557 007852 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4558 007853 store 1 ,mem_hid_interrupt_state 
+0x4559 007854 jam bt_evt_hid_connected ,mem_fifo_temp 
+0x455a 007855 branch ui_ipc_send_event 
+:      007859 l2cap_proc_signal_disconnect_req:
+0x455b 007860 ifetch 1 ,contr 
+0x455c 007861 copy pdata ,queue 
+0x455d 007862 ifetch 2 ,contr 
+0x455e 007863 copy pdata ,rega 
+0x455f 007864 copy regc ,pdata 
+0x4560 007865 isub rega ,regc 
+0x4561 007866 ifetch 2 ,contr 
+0x4562 007867 copy pdata ,rega 
+0x4563 007868 ifetch 2 ,contr 
+0x4564 007869 copy pdata ,timeup 
+0x4565 007870 copy rega ,temp 
+0x4566 007871 call save_cont_pointers 
+0x4567 007872 set0 mark_ext_patch ,mark 
+0x4568 007873 bpatch patch1c_2 ,mem_patch1c 
+0x4569 007874 setarg l2cap_sdp_channel 
+0x456a 007875 isub temp ,null 
+0x456b 007876 branch l2cap_proc_signal_disconnect_req_sdp ,zero 
+0x456c 007877 setarg l2cap_rfcomm_channel 
+0x456d 007878 isub temp ,null 
+0x456e 007879 branch l2cap_proc_signal_disconnect_req_rfcomm ,zero 
+0x456f 007880 setarg l2cap_hid_control_channel 
+0x4570 007881 isub temp ,null 
+0x4571 007882 branch l2cap_proc_signal_disconnect_req_hid_ctrl ,zero 
+0x4572 007883 setarg l2cap_hid_interrupt_channel 
+0x4573 007884 isub temp ,null 
+0x4574 007885 branch l2cap_proc_signal_disconnect_req_hid_int ,zero 
+0x4575 007886 call l2cap_reject_command 
+0x4576 007887 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      007888 l2cap_proc_signal_disconnect_req_hid_ctrl:
+0x4577 007889 copy timeup ,temp 
+0x4578 007890 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4579 007891 isub temp ,null 
+0x457a 007892 branch l2cap_disconnect_hid_control_now ,zero 
+0x457b 007893 call l2cap_reject_command 
+0x457c 007894 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      007895 l2cap_proc_signal_disconnect_req_hid_int:
+0x457d 007896 copy timeup ,temp 
+0x457e 007897 fetch 2 ,mem_hid_int_remote_cid 
+0x457f 007898 isub temp ,null 
+0x4580 007899 branch l2cap_disconnect_hid_interrupt_now ,zero 
+0x4581 007900 call l2cap_reject_command 
+0x4582 007901 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      007903 l2cap_proc_signal_disconnect_req_sdp:
+0x4583 007904 copy timeup ,temp 
+0x4584 007905 fetch 2 ,mem_sdp_remote_cid 
+0x4585 007906 isub temp ,null 
+0x4586 007907 branch l2cap_disconnect_sdp_now ,zero 
+0x4587 007908 call l2cap_reject_command 
+0x4588 007909 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      007910 l2cap_disconnect_hid_control_now:
+0x4589 007911 call l2cap_reset_hid_ctrl_state 
+0x458a 007912 branch l2cap_send_disconnect_rsp_pkt 
+:      007913 l2cap_disconnect_hid_interrupt_now:
+0x458b 007914 call l2cap_reset_hid_int_state 
+0x458c 007915 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x458d 007916 branch l2cap_send_disconnect_rsp_pkt ,blank 
+0x458e 007924 branch l2cap_send_disconnect_rsp_pkt 
+:      007926 l2cap_disconnect_sdp_now:
+0x458f 007927 call l2cap_reset_sdp_channel_state 
+0x4590 007928 fetch 1 ,mem_upper_sm_ss 
+0x4591 007929 nbranch l2cap_send_disconnect_rsp_pkt ,blank 
+0x4592 007932 branch l2cap_send_disconnect_rsp_pkt 
+:      007933 l2cap_proc_signal_disconnect_req_rfcomm:
+0x4593 007934 copy timeup ,temp 
+0x4594 007935 fetch 2 ,mem_rfcomm_remote_cid 
+0x4595 007936 isub temp ,null 
+0x4596 007937 branch l2cap_disconnect_rfcomm_now ,zero 
+0x4597 007938 call l2cap_reject_command 
+0x4598 007939 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      007940 l2cap_disconnect_rfcomm_now:
+0x4599 007941 call l2cap_reset_rfcomm_channel_state 
+0x459a 007942 branch l2cap_send_disconnect_rsp_pkt 
+:      007943 l2cap_send_disconnect_rsp_pkt:
+0x459b 007944 call load_cont_pointers 
+0x459c 007945 setarg signal_disconnect_rsp 
+0x459d 007946 istore 1 ,contw 
+0x459e 007947 copy queue ,pdata 
+0x459f 007948 istore 1 ,contw 
+0x45a0 007949 setarg 0x0004 
+0x45a1 007950 istore 2 ,contw 
+0x45a2 007951 copy rega ,pdata 
+0x45a3 007952 istore 2 ,contw 
+0x45a4 007953 copy timeup ,pdata 
+0x45a5 007954 istore 2 ,contw 
+0x45a6 007955 force 8 ,pdata 
+0x45a7 007956 branch l2cap_proc_signal_disconnect_req_rtn 
+:      007957 l2cap_proc_signal_disconnect_req_err_rtn:
+0x45a8 007958 call load_cont_pointers 
+0x45a9 007959 branch l2cap_proc_signal_disconnect_req_rtn 
+:      007960 l2cap_proc_signal_disconnect_req_rtn:
+0x45aa 007961 iadd regb ,regb 
+0x45ab 007962 branch l2cap_process_one_signal_rtn 
+:      007963 l2cap_proc_signal_disconnect_rsp:
+0x45ac 007964 ifetch 1 ,contr 
+0x45ad 007965 copy pdata ,queue 
+0x45ae 007966 ifetch 2 ,contr 
+0x45af 007967 copy pdata ,rega 
+0x45b0 007968 copy regc ,pdata 
+0x45b1 007969 isub rega ,regc 
+0x45b2 007970 ifetch 2 ,contr 
+0x45b3 007971 copy pdata ,timeup 
+0x45b4 007972 ifetch 2 ,contr 
+0x45b5 007973 copy pdata ,temp 
+0x45b6 007974 call save_cont_pointers 
+0x45b7 007975 set0 mark_ext_patch ,mark 
+0x45b8 007976 bpatch patch1c_3 ,mem_patch1c 
+0x45b9 007977 setarg l2cap_sdp_channel 
+0x45ba 007978 isub temp ,null 
+0x45bb 007979 branch l2cap_proc_signal_disconnect_rsp_sdp ,zero 
+0x45bc 007980 setarg l2cap_rfcomm_channel 
+0x45bd 007981 isub temp ,null 
+0x45be 007982 branch l2cap_proc_signal_disconnect_rsp_rfcomm ,zero 
+0x45bf 007983 setarg l2cap_hid_control_channel 
+0x45c0 007984 isub temp ,null 
+0x45c1 007985 branch l2cap_proc_signal_disconnect_rsp_hid_ctrl ,zero 
+0x45c2 007986 setarg l2cap_hid_interrupt_channel 
+0x45c3 007987 isub temp ,null 
+0x45c4 007988 branch l2cap_proc_signal_disconnect_rsp_hid_int ,zero 
+0x45c5 007989 call l2cap_reject_command 
+0x45c6 007990 branch l2cap_proc_signal_disconnect_rsp_err_rtn 
+:      007991 l2cap_proc_signal_disconnect_rsp_sdp:
+0x45c7 007992 copy temp ,rega 
+0x45c8 007993 copy timeup ,temp 
+0x45c9 007994 fetch 2 ,mem_sdp_remote_cid 
+0x45ca 007995 isub temp ,null 
+0x45cb 007996 call l2cap_reset_sdp_channel_state ,zero 
+0x45cc 007997 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      007998 l2cap_proc_signal_disconnect_rsp_rfcomm:
+0x45cd 007999 copy temp ,rega 
+0x45ce 008000 copy timeup ,temp 
+0x45cf 008001 fetch 2 ,mem_rfcomm_remote_cid 
+0x45d0 008002 isub temp ,null 
+0x45d1 008003 call l2cap_reset_rfcomm_channel_state ,zero 
+0x45d2 008004 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      008005 l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+0x45d3 008006 copy temp ,rega 
+0x45d4 008007 copy timeup ,temp 
+0x45d5 008008 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x45d6 008009 isub temp ,null 
+0x45d7 008010 call l2cap_reset_hid_ctrl_state ,zero 
+0x45d8 008011 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      008012 l2cap_proc_signal_disconnect_rsp_hid_int:
+0x45d9 008013 copy temp ,rega 
+0x45da 008014 copy timeup ,temp 
+0x45db 008015 fetch 2 ,mem_hid_int_remote_cid 
+0x45dc 008016 isub temp ,null 
+0x45dd 008017 call l2cap_reset_hid_int_state ,zero 
+0x45de 008018 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      008019 l2cap_proc_signal_disconnect_rsp_rtn:
+0x45df 008020 call load_cont_pointers 
+0x45e0 008021 branch l2cap_process_one_signal_rtn 
+:      008022 l2cap_proc_signal_disconnect_rsp_err_rtn:
+0x45e1 008023 branch l2cap_process_one_signal_rtn 
+:      008026 l2cap_proc_signal_echo_req:
+0x45e2 008027 ifetch 1 ,contr 
+0x45e3 008028 copy pdata ,queue 
+0x45e4 008029 ifetch 2 ,contr 
+0x45e5 008030 copy pdata ,rega 
+0x45e6 008031 iadd contr ,contr 
+0x45e7 008032 setarg 9 
+0x45e8 008033 istore 1 ,contw 
+0x45e9 008034 copy queue ,pdata 
+0x45ea 008035 istore 1 ,contw 
+0x45eb 008036 force 0x0000 ,pdata 
+0x45ec 008037 istore 2 ,contw 
+0x45ed 008038 force 4 ,pdata 
+0x45ee 008039 iadd regb ,regb 
+0x45ef 008040 copy regc ,pdata 
+0x45f0 008041 isub rega ,regc 
+0x45f1 008042 branch l2cap_process_one_signal_rtn 
+:      008043 l2cap_proc_signal_echo_rsp:
+0x45f2 008044 branch l2cap_process_one_signal_rtn 
+:      008046 l2cap_proc_signal_info_rsp:
+0x45f3 008047 branch l2cap_process_one_signal_rtn 
+:      008048 l2cap_reject_command:
+0x45f4 008049 force 0 ,regb 
+0x45f5 008050 call l2cap_get_signal_tx_payload 
+0x45f6 008051 setarg signal_cmd_reject 
+0x45f7 008052 istore 1 ,contw 
+0x45f8 008053 copy queue ,pdata 
+0x45f9 008054 istore 1 ,contw 
+0x45fa 008055 setarg 2 
+0x45fb 008056 istore 2 ,contw 
+0x45fc 008057 setarg cmd_not_understood 
+0x45fd 008058 istore 2 ,contw 
+0x45fe 008059 increase 6 ,regb 
+0x45ff 008060 arg 4 ,regc 
+0x4600 008061 branch l2cap_process_one_signal_rtn 
+:      008065 l2cap_reset_rfcomm_channel_state:
+0x4601 008066 setarg 0 
+0x4602 008067 store 2 ,mem_rfcomm_tx_pkt_length 
+0x4603 008068 store 2 ,mem_rfcomm_remote_cid 
+0x4604 008069 jam 0 ,mem_rfcomm_state 
+0x4605 008070 rtn 
+:      008071 l2cap_reset_sdp_channel_state:
+0x4606 008072 setarg 0 
+0x4607 008073 store 2 ,mem_sdp_tx_pkt_length 
+0x4608 008074 store 2 ,mem_sdp_remote_cid 
+0x4609 008075 jam 0 ,mem_sdp_state 
+0x460a 008076 rtn 
+:      008077 l2cap_reset_hid_ctrl_state:
+0x460b 008078 setarg 0 
+0x460c 008079 store 2 ,mem_hid_ctrl_remote_cid 
+0x460d 008080 jam 0 ,mem_hid_control_state 
+0x460e 008081 fetch 1 ,mem_hid_interrupt_state 
+0x460f 008082 beq 0 ,l2cap_reset_hid_disconnected 
+0x4610 008083 rtn 
+:      008085 l2cap_reset_hid_int_state:
+0x4611 008086 setarg 0 
+0x4612 008087 store 2 ,mem_hid_int_remote_cid 
+0x4613 008088 jam 0 ,mem_hid_interrupt_state 
+0x4614 008089 fetch 1 ,mem_hid_control_state 
+0x4615 008090 beq 0 ,l2cap_reset_hid_disconnected 
+0x4616 008091 rtn 
+:      008093 l2cap_reset_hid_disconnected:
+0x4617 008094 jam bt_evt_hid_disconnected ,mem_fifo_temp 
+0x4618 008095 branch ui_ipc_send_event 
+:      008097 l2cap_disconnect_interrupt_req:
+0x4619 008098 fetch 1 ,mem_control_tasks 
+0x461a 008099 set0 l2cap_disconnect_interrupt ,pdata 
+0x461b 008100 store 1 ,mem_control_tasks 
+0x461c 008101 fetch 2 ,mem_hid_int_remote_cid 
+0x461d 008102 rtn blank 
+0x461e 008103 call l2cap_malloc_signal_channel 
+0x461f 008104 fetch 2 ,mem_hid_int_remote_cid 
+0x4620 008105 copy pdata ,rega 
+0x4621 008106 force l2cap_hid_interrupt_channel ,regb 
+0x4622 008107 branch l2cap_generate_disconnect_req 
+:      008108 l2cap_disconnect_control_req:
+0x4623 008109 fetch 1 ,mem_control_tasks 
+0x4624 008110 set0 l2cap_disconnect_control ,pdata 
+0x4625 008111 store 1 ,mem_control_tasks 
+0x4626 008112 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4627 008113 rtn blank 
+0x4628 008114 call l2cap_malloc_signal_channel 
+0x4629 008115 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x462a 008116 copy pdata ,rega 
+0x462b 008117 force l2cap_hid_control_channel ,regb 
+:      008118 l2cap_generate_disconnect_req:
+0x462c 008119 call l2cap_get_req_id 
+0x462d 008120 call l2cap_get_signal_tx_payload 
+0x462e 008121 force signal_disconnect_req ,pdata 
+0x462f 008122 istore 1 ,contw 
+0x4630 008123 fetch 1 ,mem_ml2cap_comm_id 
+0x4631 008124 istore 1 ,contw 
+0x4632 008125 setarg 0x0004 
+0x4633 008126 istore 2 ,contw 
+0x4634 008127 copy rega ,pdata 
+0x4635 008128 istore 2 ,contw 
+0x4636 008129 copy regb ,pdata 
+0x4637 008130 istore 2 ,contw 
+0x4638 008131 force 0x08 ,temp 
+0x4639 008132 branch ml2cap_send_signal 
+:      008134 ml2cap_send_signal_connect_req:
+0x463a 008135 set0 mark_ext_patch ,mark 
+0x463b 008136 bpatch patch1c_4 ,mem_patch1c 
+0x463c 008137 call l2cap_get_req_id 
+0x463d 008138 call l2cap_get_signal_tx_payload 
+0x463e 008139 setarg signal_connect_req 
+0x463f 008140 istore 1 ,contw 
+0x4640 008141 fetch 1 ,mem_ml2cap_comm_id 
+0x4641 008142 istore 1 ,contw 
+0x4642 008143 setarg 0x0004 
+0x4643 008144 istore 2 ,contw 
+0x4644 008145 copy temp ,pdata 
+0x4645 008146 istore 2 ,contw 
+0x4646 008147 copy timeup ,pdata 
+0x4647 008148 istore 2 ,contw 
+0x4648 008149 arg 8 ,temp 
+0x4649 008150 branch ml2cap_send_signal 
+:      008151 ml2cap_send_signal_config_req:
+0x464a 008152 set0 mark_ext_patch ,mark 
+0x464b 008153 bpatch patch1c_5 ,mem_patch1c 
+0x464c 008154 call l2cap_get_req_id 
+0x464d 008155 call l2cap_get_signal_tx_payload 
+0x464e 008156 setarg signal_config_req 
+0x464f 008157 istore 1 ,contw 
+0x4650 008158 fetch 1 ,mem_ml2cap_comm_id 
+0x4651 008159 istore 1 ,contw 
+0x4652 008160 setarg 0x0008 
+0x4653 008161 istore 2 ,contw 
+0x4654 008163 copy temp ,pdata 
+0x4655 008165 istore 2 ,contw 
+0x4656 008166 setarg 0x0000 
+0x4657 008167 istore 2 ,contw 
+0x4658 008168 setarg 0x01 
+0x4659 008169 istore 1 ,contw 
+0x465a 008170 setarg 0x02 
+0x465b 008171 istore 1 ,contw 
+0x465c 008172 setarg l2cap_config_mtu_rfcomm 
+0x465d 008173 istore 2 ,contw 
+0x465e 008174 arg 0xc ,temp 
+0x465f 008175 branch ml2cap_send_signal 
+:      008176 ml2cap_send_signal_disconn_req:
+0x4660 008177 set0 mark_ext_patch ,mark 
+0x4661 008178 bpatch patch1c_6 ,mem_patch1c 
+0x4662 008179 call l2cap_get_req_id 
+0x4663 008180 call l2cap_get_signal_tx_payload 
+0x4664 008181 setarg signal_disconnect_req 
+0x4665 008182 istore 1 ,contw 
+0x4666 008183 fetch 1 ,mem_ml2cap_comm_id 
+0x4667 008184 increase 1 ,pdata 
+0x4668 008185 copy contw ,rega 
+0x4669 008186 store 1 ,mem_ml2cap_comm_id 
+0x466a 008187 copy rega ,contw 
+0x466b 008188 istore 1 ,contw 
+0x466c 008189 setarg 0x0004 
+0x466d 008190 istore 2 ,contw 
+0x466e 008191 copy temp ,pdata 
+0x466f 008192 istore 2 ,contw 
+0x4670 008193 copy timeup ,pdata 
+0x4671 008194 istore 2 ,contw 
+0x4672 008195 arg 0x8 ,temp 
+:      008198 ml2cap_send_signal:
+0x4673 008199 storet 2 ,mem_l2cap_signal_tx_length 
+0x4674 008200 copy temp ,pdata 
+0x4675 008201 branch l2cap_malloc_discard ,blank 
+0x4676 008202 call l2cap_get_signal_tx_buff 
+0x4677 008203 fetch 2 ,mem_l2cap_signal_tx_length 
+0x4678 008204 istore 2 ,contw 
+0x4679 008205 force l2cap_signal_channel ,pdata 
+0x467a 008206 istore 2 ,contw 
+0x467b 008207 rtn 
+:      008209 msdp_send_req_done:
+0x467c 008210 fetch 2 ,mem_sdp_tx_pkt_length 
+0x467d 008211 branch assert ,blank 
+0x467e 008212 call l2cap_get_sdp_tx_buff 
+0x467f 008213 fetch 2 ,mem_sdp_tx_pkt_length 
+0x4680 008214 istore 2 ,contw 
+0x4681 008215 fetch 2 ,mem_sdp_remote_cid 
+0x4682 008216 istore 2 ,contw 
+0x4683 008217 rtn 
+:      008218 ml2cap_rx_multiplexing:
+0x4684 008219 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4685 008220 branch l2cap_rx_reset_state ,blank 
+0x4686 008221 set0 mark_ext_patch ,mark 
+0x4687 008222 bpatch patch1c_7 ,mem_patch1c 
+0x4688 008223 fetch 1 ,mem_l2cap_rx_cid 
+0x4689 008224 beq l2cap_signal_channel ,ml2cap_call_proc_signal 
+0x468a 008225 beq l2cap_sdp_channel ,ml2cap_call_proc_sdp 
+0x468b 008226 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+0x468c 008227 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+0x468d 008228 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+0x468e 008229 branch l2cap_rx_reset_state 
+:      008231 ml2cap_call_proc_signal:
+0x468f 008232 set0 mark_ext_patch ,mark 
+0x4690 008233 bpatch patch1d_0 ,mem_patch1d 
+0x4691 008234 call l2cap_malloc_signal_channel 
+0x4692 008235 force 0 ,regb 
+0x4693 008236 call l2cap_get_signal_tx_payload 
+0x4694 008237 copy pdata ,contw 
+0x4695 008238 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4696 008239 copy pdata ,regc 
+0x4697 008240 fetch 2 ,mem_l2cap_payload_ptr 
+0x4698 008241 iforce contr 
+:      008242 ml2cap_proc_one_comm_loop:
+0x4699 008243 call ml2cap_proc_one_comm 
+0x469a 008244 increase -4 ,regc 
+0x469b 008245 nbranch ml2cap_proc_one_comm_loop ,zero 
+0x469c 008246 copy regb ,temp 
+0x469d 008247 call ml2cap_send_signal 
+0x469e 008248 branch l2cap_rx_reset_state 
+:      008250 ml2cap_proc_one_comm:
+0x469f 008251 ifetch 1 ,contr 
+0x46a0 008252 beq signal_connect_req ,ml2cap_proc_signal_connect_req 
+0x46a1 008253 beq signal_cmd_reject ,ml2cap_proc_signal_cmd_reject 
+0x46a2 008254 beq signal_connect_rsp ,ml2cap_proc_signal_connect_rsp 
+0x46a3 008255 beq signal_config_rsp ,ml2cap_proc_signal_config_rsp 
+0x46a4 008256 beq signal_config_req ,ml2cap_proc_signal_config_req 
+0x46a5 008257 beq signal_disconnect_rsp ,ml2cap_proc_signal_disconn_rsp 
+0x46a6 008258 beq signal_disconnect_req ,ml2cap_proc_signal_disconn_req 
+0x46a7 008259 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+0x46a8 008260 beq signal_info_req ,ml2cap_proc_signal_info_req 
+0x46a9 008261 branch ml2cap_proc_send_reject 
+:      008263 ml2cap_proc_signal_connect_req:
+0x46aa 008264 call save_cont_pointers 
+0x46ab 008266 call load_cont_pointers 
+0x46ac 008267 branch l2cap_proc_signal_connect_req 
+:      008268 ml2cap_proc_signal_cmd_reject:
+0x46ad 008269 ifetch 1 ,contr 
+0x46ae 008270 copy pdata ,queue 
+0x46af 008271 ifetch 2 ,contr 
+0x46b0 008272 copy pdata ,rega 
+0x46b1 008273 copy regc ,pdata 
+0x46b2 008274 isub rega ,regc 
+:      008275 mvptr:
+0x46b3 008276 ifetch 1 ,contr 
+0x46b4 008277 increase -1 ,rega 
+0x46b5 008278 nbranch mvptr ,zero 
+0x46b6 008279 rtn 
+:      008280 ml2cap_proc_signal_connect_rsp:
+0x46b7 008281 ifetch 1 ,contr 
+0x46b8 008282 copy pdata ,queue 
+0x46b9 008283 ifetch 2 ,contr 
+0x46ba 008284 copy pdata ,rega 
+0x46bb 008285 ifetch 2 ,contr 
+0x46bc 008286 copy pdata ,timeup 
+0x46bd 008287 ifetch 2 ,contr 
+0x46be 008288 copy pdata ,temp 
+0x46bf 008289 ifetch 2 ,contr 
+0x46c0 008290 sub pdata ,0 ,null 
+0x46c1 008291 branch ml2cap_proc_signal_connect_rsp_sucessful ,zero 
+0x46c2 008292 beq l2cap_connect_refused_psm_unsupported ,ml2cap_proc_signal_connect_refused_result 
+0x46c3 008293 beq l2cap_connect_refused_no_resources ,ml2cap_proc_signal_connect_refused_result 
+0x46c4 008294 branch ml2cap_proc_signal_connect_rsp_mnosucc 
+:      008295 ml2cap_proc_signal_connect_refused_result:
+0x46c5 008296 jam bt_evt_ml2cap_conn_refused ,mem_fifo_temp 
+0x46c6 008297 call ui_ipc_send_event 
+:      008298 ml2cap_proc_signal_connect_rsp_mnosucc:
+0x46c7 008299 ifetch 2 ,contr 
+0x46c8 008300 branch mnosucc 
+:      008301 ml2cap_proc_signal_connect_rsp_sucessful:
+0x46c9 008302 call save_cont_pointers 
+0x46ca 008306 set0 mark_ext_patch ,mark 
+0x46cb 008307 bpatch patch1d_1 ,mem_patch1d 
+0x46cc 008308 setarg l2cap_sdp_channel 
+0x46cd 008309 isub temp ,null 
+0x46ce 008310 branch ml2cap_proc_signal_connect_rsp_sdp ,zero 
+0x46cf 008311 setarg l2cap_rfcomm_channel 
+0x46d0 008312 isub temp ,null 
+0x46d1 008313 branch ml2cap_proc_signal_connect_rsp_rfcomm ,zero 
+0x46d2 008314 setarg l2cap_hid_interrupt_channel 
+0x46d3 008315 isub temp ,null 
+0x46d4 008316 branch ml2cap_proc_signal_connect_rsp_hid_int ,zero 
+0x46d5 008317 setarg l2cap_hid_control_channel 
+0x46d6 008318 isub temp ,null 
+0x46d7 008319 branch ml2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+0x46d8 008320 branch mnosucc 
+:      008321 ml2cap_proc_signal_connect_rsp_sdp:
+0x46d9 008322 copy timeup ,pdata 
+0x46da 008323 store 2 ,mem_sdp_remote_cid 
+0x46db 008324 fetch 1 ,mem_sdp_state 
+0x46dc 008325 set1 l2cap_channel_state_conn_res 
+0x46dd 008326 store 1 ,mem_sdp_state 
+0x46de 008327 branch mnosucc1 
+:      008328 ml2cap_proc_signal_connect_rsp_rfcomm:
+0x46df 008329 copy timeup ,pdata 
+0x46e0 008330 store 2 ,mem_rfcomm_remote_cid 
+0x46e1 008331 fetch 1 ,mem_rfcomm_state 
+0x46e2 008332 set1 l2cap_channel_state_conn_res 
+0x46e3 008333 store 1 ,mem_rfcomm_state 
+0x46e4 008334 branch mnosucc1 
+:      008335 ml2cap_proc_signal_connect_rsp_hid_ctrl:
+0x46e5 008336 copy timeup ,pdata 
+0x46e6 008337 store 2 ,mem_hid_ctrl_remote_cid 
+0x46e7 008338 fetch 1 ,mem_hid_control_state 
+0x46e8 008339 set1 l2cap_channel_state_conn_res 
+0x46e9 008340 store 1 ,mem_hid_control_state 
+0x46ea 008341 branch mnosucc1 
+:      008342 ml2cap_proc_signal_connect_rsp_hid_int:
+0x46eb 008343 copy timeup ,pdata 
+0x46ec 008344 store 2 ,mem_hid_int_remote_cid 
+0x46ed 008345 fetch 1 ,mem_hid_interrupt_state 
+0x46ee 008346 set1 l2cap_channel_state_conn_res 
+0x46ef 008347 store 1 ,mem_hid_interrupt_state 
+:      008350 mnosucc1:
+0x46f0 008351 call load_cont_pointers 
+:      008352 mnosucc:
+0x46f1 008353 copy regc ,pdata 
+0x46f2 008354 isub rega ,regc 
+0x46f3 008355 rtn 
+:      008357 ml2cap_proc_signal_config_rsp:
+0x46f4 008358 ifetch 1 ,contr 
+0x46f5 008359 copy pdata ,queue 
+0x46f6 008360 ifetch 2 ,contr 
+0x46f7 008361 copy pdata ,rega 
+0x46f8 008362 copy regc ,pdata 
+0x46f9 008363 isub rega ,regc 
+0x46fa 008364 ifetch 2 ,contr 
+0x46fb 008365 copy pdata ,timeup 
+0x46fc 008366 ifetch 2 ,contr 
+0x46fd 008367 ifetch 2 ,contr 
+0x46fe 008368 nbranch mcrsdone1 ,blank 
+0x46ff 008369 call save_cont_pointers 
+0x4700 008373 copy timeup ,temp 
+0x4701 008374 set0 mark_ext_patch ,mark 
+0x4702 008375 bpatch patch1d_2 ,mem_patch1d 
+0x4703 008376 setarg l2cap_sdp_channel 
+0x4704 008377 isub temp ,null 
+0x4705 008378 branch ml2cap_proc_signal_config_rsp_sdp ,zero 
+0x4706 008379 setarg l2cap_rfcomm_channel 
+0x4707 008380 isub temp ,null 
+0x4708 008381 branch ml2cap_proc_signal_config_rsp_rfcomm ,zero 
+0x4709 008382 setarg l2cap_hid_control_channel 
+0x470a 008383 isub temp ,null 
+0x470b 008384 branch ml2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+0x470c 008385 setarg l2cap_hid_interrupt_channel 
+0x470d 008386 isub temp ,null 
+0x470e 008387 branch ml2cap_proc_signal_config_rsp_hid_int ,zero 
+:      008388 ml2cap_proc_signal_config_rsp_sdp:
+0x470f 008389 fetch 1 ,mem_sdp_state 
+0x4710 008390 set1 l2cap_channel_state_rcv_cfg_res 
+0x4711 008391 store 1 ,mem_sdp_state 
+0x4712 008392 rtn 
+:      008393 ml2cap_proc_signal_config_rsp_rfcomm:
+0x4713 008394 fetch 1 ,mem_rfcomm_state 
+0x4714 008395 set1 l2cap_channel_state_rcv_cfg_res 
+0x4715 008396 store 1 ,mem_rfcomm_state 
+0x4716 008397 rtn 
+:      008398 ml2cap_proc_signal_config_rsp_hid_ctrl:
+0x4717 008399 fetch 1 ,mem_hid_control_state 
+0x4718 008400 set1 l2cap_channel_state_rcv_cfg_res 
+0x4719 008401 store 1 ,mem_hid_control_state 
+0x471a 008402 rtn 
+:      008403 ml2cap_proc_signal_config_rsp_hid_int:
+0x471b 008404 fetch 1 ,mem_hid_interrupt_state 
+0x471c 008405 set1 l2cap_channel_state_rcv_cfg_res 
+0x471d 008406 store 1 ,mem_hid_interrupt_state 
+0x471e 008407 jam bt_evt_hid_connected ,mem_fifo_temp 
+0x471f 008408 branch ui_ipc_send_event 
+:      008411 mcfrsdone:
+0x4720 008412 call load_cont_pointers 
+:      008413 mcrsdone1:
+0x4721 008414 increase -6 ,rega 
+:      008415 mloop2:
+0x4722 008416 branch mcrsdone ,zero 
+0x4723 008417 increase 1 ,contr 
+0x4724 008418 increase -1 ,rega 
+0x4725 008419 branch mloop2 
+:      008420 mcrsdone:
+0x4726 008421 rtn 
+:      008422 ml2cap_proc_signal_config_req:
+0x4727 008423 ifetch 1 ,contr 
+0x4728 008424 copy pdata ,queue 
+0x4729 008425 ifetch 2 ,contr 
+0x472a 008426 copy pdata ,rega 
+0x472b 008427 copy regc ,pdata 
+0x472c 008428 isub rega ,regc 
+0x472d 008429 ifetch 2 ,contr 
+0x472e 008430 increase 2 ,contr 
+0x472f 008431 copy pdata ,temp 
+0x4730 008432 setarg signal_config_rsp 
+0x4731 008433 istore 1 ,contw 
+0x4732 008434 copy queue ,pdata 
+0x4733 008435 istore 1 ,contw 
+0x4734 008436 increase 2 ,rega 
+0x4735 008437 copy rega ,pdata 
+0x4736 008438 istore 2 ,contw 
+0x4737 008439 call save_cont_pointers 
+0x4738 008440 set0 mark_ext_patch ,mark 
+0x4739 008441 bpatch patch1d_3 ,mem_patch1d 
+0x473a 008442 setarg l2cap_sdp_channel 
+0x473b 008443 isub temp ,null 
+0x473c 008444 branch ml2cap_proc_signal_config_req_sdp ,zero 
+0x473d 008445 setarg l2cap_rfcomm_channel 
+0x473e 008446 isub temp ,null 
+0x473f 008447 branch ml2cap_proc_signal_config_req_rfcomm ,zero 
+0x4740 008448 setarg l2cap_hid_control_channel 
+0x4741 008449 isub temp ,null 
+0x4742 008450 branch ml2cap_proc_signal_config_req_hid_ctrl ,zero 
+0x4743 008451 setarg l2cap_hid_interrupt_channel 
+0x4744 008452 isub temp ,null 
+0x4745 008453 branch ml2cap_proc_signal_config_req_hid_int ,zero 
+0x4746 008454 branch mcfgrq_done 
+:      008455 ml2cap_proc_signal_config_req_sdp:
+0x4747 008456 fetch 1 ,mem_sdp_state 
+0x4748 008457 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4749 008458 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x474a 008459 store 1 ,mem_sdp_state 
+0x474b 008460 bbit1 l2cap_channel_state_snd_cfg_req ,ml2cap_proc_signal_config_req_sdp_nsndreq 
+0x474c 008461 fetcht 1 ,mem_control_tasks 
+0x474d 008462 set1 l2cap_init_config_req ,temp 
+0x474e 008463 storet 1 ,mem_control_tasks 
+0x474f 008464 copy queue ,pdata 
+0x4750 008465 increase 1 ,pdata 
+0x4751 008466 store 1 ,mem_config_identifier 
+0x4752 008467 fetch 1 ,mem_sdp_state 
+0x4753 008468 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x4754 008469 store 1 ,mem_sdp_state 
+:      008470 ml2cap_proc_signal_config_req_sdp_nsndreq:
+0x4755 008471 fetch 2 ,mem_sdp_remote_cid 
+0x4756 008472 store 2 ,mem_config_req_dest_cid 
+0x4757 008473 branch mcfgrq_done 
+:      008474 ml2cap_proc_signal_config_req_rfcomm:
+0x4758 008475 fetch 1 ,mem_rfcomm_state 
+0x4759 008476 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x475a 008477 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x475b 008478 store 1 ,mem_rfcomm_state 
+0x475c 008479 fetch 2 ,mem_rfcomm_remote_cid 
+0x475d 008480 branch mcfgrq_done 
+:      008481 ml2cap_proc_signal_config_req_hid_ctrl:
+0x475e 008482 fetch 1 ,mem_hid_control_state 
+0x475f 008483 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4760 008484 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4761 008485 store 1 ,mem_hid_control_state 
+0x4762 008486 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4763 008487 branch mcfgrq_done 
+:      008488 ml2cap_proc_signal_config_req_hid_int:
+0x4764 008489 fetch 1 ,mem_hid_interrupt_state 
+0x4765 008490 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4766 008491 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4767 008492 store 1 ,mem_hid_interrupt_state 
+0x4768 008493 fetch 2 ,mem_hid_int_remote_cid 
+:      008496 mcfgrq_done:
+0x4769 008497 copy pdata ,timeup 
+0x476a 008498 call load_cont_pointers 
+0x476b 008500 copy timeup ,pdata 
+0x476c 008502 istore 2 ,contw 
+0x476d 008503 force 0x0000 ,pdata 
+0x476e 008504 istore 2 ,contw 
+0x476f 008505 force 0x0000 ,pdata 
+0x4770 008506 istore 2 ,contw 
+0x4771 008507 force 10 ,pdata 
+0x4772 008508 iadd regb ,regb 
+0x4773 008509 increase -6 ,rega 
+:      008510 mloop1:
+0x4774 008511 branch mcrqdone ,zero 
+0x4775 008512 ifetch 1 ,contr 
+0x4776 008513 istore 1 ,contw 
+0x4777 008514 increase 1 ,regb 
+0x4778 008515 increase -1 ,rega 
+0x4779 008516 branch mloop1 
+:      008517 mcrqdone:
+0x477a 008518 rtn 
+:      008519 ml2cap_proc_signal_disconn_req:
+0x477b 008520 ifetch 1 ,contr 
+0x477c 008521 copy pdata ,queue 
+0x477d 008522 ifetch 2 ,contr 
+0x477e 008523 copy pdata ,rega 
+0x477f 008524 copy regc ,pdata 
+0x4780 008525 isub rega ,regc 
+0x4781 008527 ifetch 2 ,contr 
+0x4782 008528 copy pdata ,rega 
+0x4783 008529 ifetch 2 ,contr 
+0x4784 008530 copy pdata ,timeup 
+0x4785 008531 call save_cont_pointers 
+0x4786 008532 set0 mark_ext_patch ,mark 
+0x4787 008533 bpatch patch1d_4 ,mem_patch1d 
+0x4788 008534 setarg l2cap_sdp_channel 
+0x4789 008535 copy rega ,temp 
+0x478a 008536 isub temp ,null 
+0x478b 008537 branch ml2cap_proc_signal_disconn_sdp ,zero 
+0x478c 008538 setarg l2cap_hid_control_channel 
+0x478d 008539 copy rega ,temp 
+0x478e 008540 isub temp ,null 
+0x478f 008541 branch ml2cap_proc_signal_disconn_hid_ctrl ,zero 
+0x4790 008542 setarg l2cap_hid_interrupt_channel 
+0x4791 008543 copy rega ,temp 
+0x4792 008544 isub temp ,null 
+0x4793 008545 branch ml2cap_proc_signal_disconn_hid_int ,zero 
+0x4794 008546 branch mclsrfc 
+:      008547 ml2cap_proc_signal_disconn_sdp:
+0x4795 008548 setarg 0x0000 
+0x4796 008549 store 2 ,mem_sdp_tx_pkt_length 
+0x4797 008550 store 2 ,mem_sdp_remote_cid 
+0x4798 008551 store 1 ,mem_sdp_state 
+0x4799 008552 branch mclssdp 
+:      008553 ml2cap_proc_signal_disconn_hid_ctrl:
+0x479a 008554 call l2cap_reset_hid_ctrl_state 
+0x479b 008555 branch mclssdp 
+:      008556 ml2cap_proc_signal_disconn_hid_int:
+0x479c 008557 call l2cap_reset_hid_int_state 
+0x479d 008563 branch mclssdp 
+:      008564 mclsrfc:
+0x479e 008565 setarg 0x0000 
+0x479f 008566 store 2 ,mem_rfcomm_tx_pkt_length 
+:      008567 mclssdp:
+0x47a0 008568 call load_cont_pointers 
+0x47a1 008569 setarg signal_disconnect_rsp 
+0x47a2 008570 istore 1 ,contw 
+0x47a3 008571 copy queue ,pdata 
+0x47a4 008572 istore 1 ,contw 
+0x47a5 008573 setarg 0x0004 
+0x47a6 008574 istore 2 ,contw 
+0x47a7 008575 copy rega ,pdata 
+0x47a8 008576 istore 2 ,contw 
+0x47a9 008577 copy timeup ,pdata 
+0x47aa 008578 istore 2 ,contw 
+0x47ab 008579 force 8 ,pdata 
+0x47ac 008580 iadd regb ,regb 
+0x47ad 008581 rtn 
+:      008583 ml2cap_proc_signal_disconn_rsp:
+0x47ae 008584 ifetch 1 ,contr 
+0x47af 008585 copy pdata ,queue 
+0x47b0 008586 ifetch 2 ,contr 
+0x47b1 008587 copy pdata ,rega 
+0x47b2 008588 ifetch 2 ,contr 
+0x47b3 008589 copy pdata ,timeup 
+0x47b4 008590 ifetch 2 ,contr 
+0x47b5 008591 copy pdata ,temp 
+0x47b6 008592 call save_cont_pointers 
+0x47b7 008593 set0 mark_ext_patch ,mark 
+0x47b8 008594 bpatch patch1d_5 ,mem_patch1d 
+0x47b9 008595 fetch 1 ,mem_ml2cap_comm_id 
+0x47ba 008596 icompare 0xff ,queue 
+0x47bb 008597 nbranch mdisdone ,true 
+0x47bc 008598 setarg l2cap_sdp_channel 
+0x47bd 008599 isub temp ,null 
+0x47be 008600 branch ml2cap_proc_signal_disconn_rsp_sdp ,zero 
+0x47bf 008601 setarg l2cap_rfcomm_channel 
+0x47c0 008602 isub temp ,null 
+0x47c1 008603 branch ml2cap_proc_signal_disconn_rsp_rfcomm ,zero 
+0x47c2 008604 branch mdisdone 
+:      008605 ml2cap_proc_signal_disconn_rsp_sdp:
+0x47c3 008606 jam 0 ,mem_sdp_remote_cid 
+0x47c4 008607 jam 0 ,mem_sdp_state 
+0x47c5 008608 branch mdisdone 
+:      008609 ml2cap_proc_signal_disconn_rsp_rfcomm:
+:      008612 mdisdone:
+0x47c6 008613 call load_cont_pointers 
+0x47c7 008614 copy regc ,pdata 
+0x47c8 008615 isub rega ,regc 
+0x47c9 008616 rtn 
+:      008618 ml2cap_proc_send_reject:
+0x47ca 008619 setarg signal_cmd_reject 
+0x47cb 008620 istore 1 ,contw 
+0x47cc 008621 ifetch 1 ,contr 
+0x47cd 008622 istore 1 ,contw 
+0x47ce 008623 setarg 0x0002 
+0x47cf 008624 istore 2 ,contw 
+0x47d0 008625 setarg 0x0000 
+0x47d1 008626 istore 2 ,contw 
+0x47d2 008627 setarg 0x0006 
+0x47d3 008628 iadd regb ,regb 
+0x47d4 008629 force 4 ,regc 
+0x47d5 008630 rtn 
+:      008633 l2cap_get_req_id:
+0x47d6 008634 fetch 1 ,mem_ml2cap_comm_id 
+0x47d7 008635 increase 1 ,pdata 
+0x47d8 008636 bne 0 ,l2cap_get_req_id_ok 
+0x47d9 008637 increase 1 ,pdata 
+:      008638 l2cap_get_req_id_ok:
+0x47da 008639 store 1 ,mem_ml2cap_comm_id 
+0x47db 008640 rtn 
+:      008650 l2cap_malloc:
+0x47dc 008651 set0 mark_ext_patch ,mark 
+0x47dd 008652 bpatch patch1d_6 ,mem_patch1d 
+0x47de 008653 arg 0 ,regb 
+0x47df 008654 call l2cap_malloc_is_fifo_full 
+0x47e0 008655 nbranch assert ,blank 
+0x47e1 008656 call l2cap_malloc_get_full_map 
+0x47e2 008657 arg mem_tx_buff0 ,regb 
+0x47e3 008658 arg 0 ,queue 
+:      008659 l2cap_malloc_loop:
+0x47e4 008660 fetcht 1 ,mem_used_map 
+0x47e5 008661 qisolate1 temp 
+0x47e6 008662 branch l2cap_malloc_next ,true 
+0x47e7 008663 call l2cap_malloc_enough 
+0x47e8 008664 sub timeup ,0 ,null 
+0x47e9 008665 branch l2cap_malloc_next ,positive 
+0x47ea 008666 call l2cap_malloc_into_fifo 
+0x47eb 008667 branch l2cap_malloc_rtn 
+:      008668 l2cap_malloc_next:
+0x47ec 008669 increase 128 ,regb 
+0x47ed 008670 increase 1 ,queue 
+0x47ee 008671 setarg 8 
+0x47ef 008672 isub queue ,null 
+0x47f0 008673 branch l2cap_malloc_loop ,positive 
+0x47f1 008674 arg 0 ,regb 
+:      008675 l2cap_malloc_rtn:
+0x47f2 008676 copy regb ,pdata 
+0x47f3 008677 branch assert ,blank 
+0x47f4 008678 rtn 
+:      008686 l2cap_malloc_fifo_out:
+0x47f5 008687 set0 mark_ext_patch ,mark 
+0x47f6 008688 bpatch patch1d_7 ,mem_patch1d 
+0x47f7 008689 call l2cap_malloc_fifo_get_first_ptr 
+0x47f8 008690 increase 1 ,contr 
+0x47f9 008691 ifetch 2 ,contr 
+0x47fa 008692 rtn 
+:      008698 l2cap_malloc_free:
+0x47fb 008699 set0 mark_ext_patch ,mark 
+0x47fc 008700 bpatch patch1e_0 ,mem_patch1e 
+0x47fd 008701 call l2cap_malloc_fifo_get_first_ptr 
+0x47fe 008702 copy contr ,contw 
+0x47ff 008703 copy contr ,temp 
+0x4800 008704 setarg 0 
+0x4801 008705 istore 3 ,contw 
+0x4802 008706 rtn 
+:      008711 l2cap_malloc_discard:
+0x4803 008712 set0 mark_ext_patch ,mark 
+0x4804 008713 bpatch patch1e_1 ,mem_patch1e 
+0x4805 008714 call l2cap_malloc_is_fifo_empty 
+0x4806 008715 branch assert ,blank 
+0x4807 008716 fetch 3 ,mem_tx_fifo2 
+0x4808 008717 store 3 ,mem_tx_fifo3 
+0x4809 008718 fetch 3 ,mem_tx_fifo1 
+0x480a 008719 store 3 ,mem_tx_fifo2 
+0x480b 008720 fetch 3 ,mem_tx_fifo0 
+0x480c 008721 store 3 ,mem_tx_fifo1 
+0x480d 008722 rtn 
+:      008728 l2cap_malloc_is_fifo_full:
+0x480e 008729 set0 mark_ext_patch ,mark 
+0x480f 008730 bpatch patch1e_2 ,mem_patch1e 
+0x4810 008731 fetch 3 ,mem_tx_fifo0 
+0x4811 008732 rtn 
+:      008738 l2cap_malloc_is_fifo_nearly_full:
+0x4812 008739 set0 mark_ext_patch ,mark 
+0x4813 008740 bpatch patch1e_3 ,mem_patch1e 
+0x4814 008741 fetch 3 ,mem_tx_fifo1 
+0x4815 008742 rtn 
+:      008748 l2cap_malloc_is_fifo_empty:
+0x4816 008749 set0 mark_ext_patch ,mark 
+0x4817 008750 bpatch patch1e_4 ,mem_patch1e 
+0x4818 008751 fetch 3 ,mem_tx_fifo3 
+0x4819 008752 rtn 
+:      008757 l2cap_malloc_fifo_get_first_ptr:
+0x481a 008758 call l2cap_malloc_is_fifo_empty 
+0x481b 008759 branch assert ,blank 
+0x481c 008760 arg mem_tx_fifo0 ,contr 
+:      008761 l2cap_malloc_free_loop:
+0x481d 008762 ifetch 3 ,contr 
+0x481e 008763 branch l2cap_malloc_free_loop ,blank 
+0x481f 008764 increase -3 ,contr 
+0x4820 008765 rtn 
+:      008772 l2cap_malloc_get_full_map:
+0x4821 008773 set0 mark_ext_patch ,mark 
+0x4822 008774 bpatch patch1e_5 ,mem_patch1e 
+0x4823 008775 arg 4 ,loopcnt 
+0x4824 008776 arg mem_tx_fifo0_map ,contr 
+0x4825 008777 arg 0 ,temp 
+:      008778 l2cap_malloc_get_full_map_loop:
+0x4826 008779 ifetch 3 ,contr 
+0x4827 008780 and pdata ,0xff ,pdata 
+0x4828 008781 ior temp ,temp 
+0x4829 008782 loop l2cap_malloc_get_full_map_loop 
+0x482a 008783 storet 1 ,mem_used_map 
+0x482b 008784 rtn 
+:      008792 l2cap_malloc_into_fifo:
+0x482c 008793 set0 mark_ext_patch ,mark 
+0x482d 008794 bpatch patch1e_6 ,mem_patch1e 
+0x482e 008795 call l2cap_malloc_is_fifo_full 
+0x482f 008796 nbranch assert ,blank 
+0x4830 008797 call l2cap_malloc_is_fifo_empty 
+0x4831 008798 branch l2cap_malloc_into_fifo_no_push ,blank 
+0x4832 008799 fetch 3 ,mem_tx_fifo1 
+0x4833 008800 store 3 ,mem_tx_fifo0 
+0x4834 008801 ifetch 3 ,contr 
+0x4835 008802 istore 3 ,contw 
+0x4836 008803 ifetch 3 ,contr 
+0x4837 008804 istore 3 ,contw 
+0x4838 008805 setarg 0 
+0x4839 008806 istore 3 ,contw 
+:      008807 l2cap_malloc_into_fifo_no_push:
+0x483a 008808 arg 0 ,temp 
+0x483b 008809 copy timeup ,pdata 
+0x483c 008810 iadd queue ,pdata 
+:      008811 l2cap_malloc_into_fifo_loop:
+0x483d 008812 qset1 temp 
+0x483e 008813 increase 1 ,queue 
+0x483f 008814 isub queue ,null 
+0x4840 008815 nbranch l2cap_malloc_into_fifo_loop ,zero 
+0x4841 008817 lshift8 regb ,pdata 
+0x4842 008818 ior temp ,pdata 
+0x4843 008819 store 3 ,mem_tx_fifo3 
+0x4844 008820 rtn 
+:      008830 l2cap_malloc_enough:
+0x4845 008831 set0 mark_ext_patch ,mark 
+0x4846 008832 bpatch patch1e_7 ,mem_patch1e 
+0x4847 008833 call l2cap_malloc_get_full_map 
+0x4848 008834 copy queue ,regc 
+0x4849 008835 arg 0 ,temp 
+0x484a 008836 arg 0 ,timeup 
+:      008838 l2cap_malloc_enough_loop:
+0x484b 008839 copy queue ,pdata 
+0x484c 008840 beq 8 ,l2cap_malloc_enough_end 
+0x484d 008841 fetch 1 ,mem_used_map 
+0x484e 008842 qisolate1 pdata 
+0x484f 008843 branch l2cap_malloc_enough_end ,true 
+0x4850 008844 increase 128 ,temp 
+0x4851 008845 increase 1 ,queue 
+0x4852 008846 copy rega ,pdata 
+0x4853 008847 isub temp ,null 
+0x4854 008848 branch l2cap_malloc_enough_end ,zero 
+0x4855 008849 branch l2cap_malloc_enough_loop ,positive 
+:      008850 l2cap_malloc_enough_end:
+0x4856 008851 copy temp ,pdata 
+0x4857 008852 isub rega ,null 
+0x4858 008853 nbranch l2cap_malloc_enough_rtn ,positive 
+0x4859 008854 copy queue ,pdata 
+0x485a 008855 copy regc ,temp 
+0x485b 008856 isub temp ,timeup 
+:      008857 l2cap_malloc_enough_rtn:
+0x485c 008858 copy regc ,queue 
+0x485d 008859 rtn 
+:      008862 l2cap_malloc_signal_channel:
+0x485e 008863 set0 mark_ext_patch ,mark 
+0x485f 008864 bpatch patch1f_0 ,mem_patch1f 
+0x4860 008865 arg l2cap_signal_malloc_size ,rega 
+0x4861 008866 call l2cap_malloc 
+0x4862 008867 store 2 ,mem_l2cap_signal_tx_buff_ptr 
+0x4863 008868 increase 4 ,pdata 
+0x4864 008869 store 2 ,mem_l2cap_signal_tx_payload_ptr 
+0x4865 008870 setarg 0 
+0x4866 008871 store 2 ,mem_l2cap_signal_tx_length 
+0x4867 008872 rtn 
+:      008874 l2cap_get_signal_tx_buff:
+0x4868 008875 fetch 2 ,mem_l2cap_signal_tx_buff_ptr 
+0x4869 008876 branch l2cap_util_pdata_to_contw 
+:      008878 l2cap_get_signal_tx_payload:
+0x486a 008879 fetch 2 ,mem_l2cap_signal_tx_payload_ptr 
+0x486b 008880 branch l2cap_util_pdata_to_contw 
+:      008883 l2cap_malloc_sdp_channel:
+0x486c 008884 set0 mark_ext_patch ,mark 
+0x486d 008885 bpatch patch1f_1 ,mem_patch1f 
+0x486e 008886 arg sdp_malloc_size ,rega 
+0x486f 008887 call l2cap_malloc 
+0x4870 008888 store 2 ,mem_sdp_tx_buff_ptr 
+0x4871 008889 increase 4 ,pdata 
+0x4872 008890 store 2 ,mem_sdp_tx_payload_ptr 
+0x4873 008891 setarg 0 
+0x4874 008892 store 2 ,mem_sdp_tx_pkt_length 
+0x4875 008893 rtn 
+:      008895 l2cap_get_sdp_tx_buff:
+0x4876 008896 fetch 2 ,mem_sdp_tx_buff_ptr 
+0x4877 008897 branch l2cap_util_pdata_to_contw 
+:      008899 l2cap_get_sdp_tx_payload:
+0x4878 008900 fetch 2 ,mem_sdp_tx_payload_ptr 
+0x4879 008901 branch l2cap_util_pdata_to_contw 
+:      008904 l2cap_malloc_rfcomm_channel:
+0x487a 008905 set0 mark_ext_patch ,mark 
+0x487b 008906 bpatch patch1f_2 ,mem_patch1f 
+0x487c 008907 call push_stack 
+0x487d 008908 jam rfcomm_malloc_fail ,mem_rfcomm_malloc_fail_flag 
+0x487e 008909 call l2cap_malloc_is_fifo_full 
+0x487f 008910 nrtn blank 
+0x4880 008911 arg rfcomm_malloc_size ,rega 
+0x4881 008912 call l2cap_malloc 
+0x4882 008913 store 2 ,mem_rfcomm_tx_buff_ptr 
+0x4883 008914 increase 4 ,pdata 
+0x4884 008915 store 2 ,mem_rfcomm_tx_payload_ptr 
+0x4885 008916 setarg 0 
+0x4886 008917 store 2 ,mem_rfcomm_tx_pkt_length 
+0x4887 008918 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+0x4888 008919 branch pop_stack 
+:      008921 l2cap_get_rfcomm_tx_buff:
+0x4889 008922 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+0x488a 008923 branch l2cap_util_pdata_to_contw 
+:      008925 l2cap_util_pdata_to_contw:
+0x488b 008926 branch assert ,blank 
+0x488c 008927 copy pdata ,contw 
+0x488d 008928 rtn 
+:      008931 l2cap_lpm_save_calc_len:
+0x488e 008932 set0 mark_ext_patch ,mark 
+0x488f 008933 bpatch patch1f_3 ,mem_patch1f 
+0x4890 008934 arg 0 ,regb 
+0x4891 008935 arg mem_tx_fifo0_map ,rega 
+0x4892 008936 increase -2 ,rega 
+:      008937 l2cap_lpm_save_calc_len_loop:
+0x4893 008938 increase 2 ,rega 
+0x4894 008939 setarg mem_tx_fifo_end 
+0x4895 008940 isub rega ,null 
+0x4896 008941 branch l2cap_lpm_save_calc_len_end ,zero 
+0x4897 008942 ifetch 1 ,rega 
+0x4898 008943 increase 1 ,rega 
+0x4899 008944 branch l2cap_lpm_save_calc_len_loop ,blank 
+0x489a 008945 ifetcht 2 ,rega 
+0x489b 008946 ifetch 2 ,temp 
+0x489c 008947 iadd regb ,regb 
+0x489d 008948 increase 4 ,regb 
+0x489e 008949 branch l2cap_lpm_save_calc_len_loop 
+:      008950 l2cap_lpm_save_calc_len_end:
+0x489f 008951 copy regb ,pdata 
+0x48a0 008952 rtn 
+:      008955 l2cap_lpm_get_wake_lock:
+0x48a1 008956 arg wake_lock_l2cap_tx ,queue 
+0x48a2 008957 branch lpm_get_wake_lock 
+:      008959 l2cap_lpm_put_wake_lock:
+0x48a3 008960 arg wake_lock_l2cap_tx ,queue 
+0x48a4 008961 branch lpm_put_wake_lock 
+:      008963 l2cap_lpm_save_txbuf:
+0x48a5 008964 set0 mark_ext_patch ,mark 
+0x48a6 008965 bpatch patch1f_4 ,mem_patch1f 
+0x48a7 008966 call l2cap_malloc_get_full_map 
+0x48a8 008967 fetch 1 ,mem_used_map 
+0x48a9 008968 rtn blank 
+0x48aa 008969 call l2cap_lpm_save_calc_len 
+0x48ab 008970 arg l2cap_lpm_txbuf_len ,temp 
+0x48ac 008971 isub temp ,null 
+0x48ad 008972 branch l2cap_lpm_get_wake_lock ,positive 
+0x48ae 008973 call l2cap_lpm_put_wake_lock 
+0x48af 008974 arg mem_l2cap_lpm_txbuf ,contw 
+0x48b0 008975 arg mem_tx_fifo0 ,rega 
+:      008976 l2cap_lpm_save_txbuf_loop:
+0x48b1 008977 setarg mem_tx_fifo_end 
+0x48b2 008978 isub rega ,null 
+0x48b3 008979 rtn zero 
+0x48b4 008980 ifetch 1 ,rega 
+0x48b5 008981 increase 1 ,rega 
+0x48b6 008982 nbranch l2cap_lpm_save_txbuf_nempty ,blank 
+0x48b7 008983 istore 2 ,contw 
+0x48b8 008984 increase 2 ,rega 
+0x48b9 008985 branch l2cap_lpm_save_txbuf_loop 
+:      008986 l2cap_lpm_save_txbuf_nempty:
+0x48ba 008987 ifetch 2 ,rega 
+0x48bb 008988 increase 2 ,rega 
+0x48bc 008989 copy pdata ,contr 
+0x48bd 008990 ifetch 2 ,contr 
+0x48be 008991 istore 2 ,contw 
+0x48bf 008992 copy pdata ,loopcnt 
+0x48c0 008993 increase 2 ,loopcnt 
+0x48c1 008994 call memcpy 
+0x48c2 008995 branch l2cap_lpm_save_txbuf_loop 
+:      008997 l2cap_lpm_load_txbuf:
+0x48c3 008998 set0 mark_ext_patch ,mark 
+0x48c4 008999 bpatch patch1f_5 ,mem_patch1f 
+0x48c5 009000 call l2cap_malloc_get_full_map 
+0x48c6 009001 fetch 1 ,mem_used_map 
+0x48c7 009002 rtn blank 
+0x48c8 009003 arg mem_tx_fifo0_ptr ,rega 
+0x48c9 009004 increase -3 ,rega 
+0x48ca 009005 arg mem_l2cap_lpm_txbuf ,contr 
+:      009006 l2cap_lpm_load_txbuf_loop:
+0x48cb 009007 increase 3 ,rega 
+0x48cc 009008 setarg mem_tx_fifo_end + 1 
+0x48cd 009009 isub rega ,null 
+0x48ce 009010 rtn zero 
+0x48cf 009011 ifetch 2 ,contr 
+0x48d0 009012 branch l2cap_lpm_load_txbuf_loop ,blank 
+0x48d1 009013 increase 4 ,pdata 
+0x48d2 009014 copy pdata ,loopcnt 
+0x48d3 009015 copy contr ,regb 
+0x48d4 009016 ifetch 2 ,rega 
+0x48d5 009017 copy pdata ,contw 
+0x48d6 009018 copy regb ,contr 
+0x48d7 009019 increase -2 ,contr 
+0x48d8 009020 call memcpy 
+0x48d9 009021 branch l2cap_lpm_load_txbuf_loop 
+:      009031 le_secure_connection_enable:
+0x48da 009032 fetch 1 ,mem_le_pres_auth 
+0x48db 009033 set1 le_auth_secure_connection_pairing_bit ,pdata 
+0x48dc 009034 store 1 ,mem_le_pres_auth 
+0x48dd 009035 rtn 
+:      009036 le_secure_connection_disable:
+0x48de 009037 fetch 1 ,mem_le_pres_auth 
+0x48df 009038 set0 le_auth_secure_connection_pairing_bit ,pdata 
+0x48e0 009039 store 1 ,mem_le_pres_auth 
+0x48e1 009040 rtn 
+:      009043 le_init_conn:
+0x48e2 009044 set0 mark_ext_patch ,mark 
+0x48e3 009045 bpatch patch1f_6 ,mem_patch1f 
+0x48e4 009046 disable wake 
+0x48e5 009047 jam 1 ,mem_le_conn_handle 
+0x48e6 009048 jam 3 ,mem_le_state 
+0x48e7 009049 jam 1 ,mem_le_arq 
+0x48e8 009050 setarg -1 
+0x48e9 009051 store 2 ,mem_le_event_count 
+0x48ea 009052 force 0 ,pdata 
+0x48eb 009053 store 1 ,mem_le_ch 
+0x48ec 009054 store 1 ,mem_le_op 
+0x48ed 009055 store 3 ,mem_sniff_rcv 
+0x48ee 009056 store 3 ,mem_sniff_lost 
+0x48ef 009057 store 5 ,mem_le_pcnt_tx 
+0x48f0 009058 set1 39 ,pdata 
+0x48f1 009059 store 5 ,mem_le_pcnt_rx 
+0x48f2 009060 jam 1 ,mem_le_txheader 
+0x48f3 009061 jam 0 ,mem_le_txlen 
+0x48f4 009062 branch le_supervision_flush 
+:      009064 le_init_master:
+0x48f5 009065 set0 mark_ext_patch ,mark 
+0x48f6 009066 bpatch patch1f_7 ,mem_patch1f 
+0x48f7 009067 enable master 
+0x48f8 009068 jam lemode_master ,mem_le_mode 
+0x48f9 009069 jam 1 ,mem_le_att_handle 
+0x48fa 009070 jam 1 ,mem_le_search_handle_start 
+0x48fb 009071 setarg 0xffff 
+0x48fc 009072 store 2 ,mem_le_search_handle_end 
+0x48fd 009073 force 0 ,pdata 
+0x48fe 009074 store 5 ,mem_le_pcnt_rx 
+0x48ff 009075 set1 39 ,pdata 
+0x4900 009076 store 5 ,mem_le_pcnt_tx 
+0x4901 009077 branch le_init_conn 
+:      009080 le_init_slave:
+0x4902 009081 set1 mark_ext_patch ,mark 
+0x4903 009082 bpatch patch20_0 ,mem_patch20 
+0x4904 009083 disable master 
+0x4905 009084 jam lemode_slave ,mem_le_mode 
+0x4906 009085 jam 0 ,mem_le_adv_enable 
+0x4907 009086 jam 0 ,mem_lpm_current_mult 
+0x4908 009087 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x4909 009088 jam flag_le_enc_null ,mem_le_enc_state 
+0x490a 009089 fetch 2 ,mem_le_superto 
+0x490b 009090 store 2 ,mem_le_init_superto 
+0x490c 009091 fetch 2 ,mem_le_tsniff 
+0x490d 009092 mul32 pdata ,5 ,pdata 
+0x490e 009093 rshift4 pdata ,pdata 
+0x490f 009094 store 2 ,mem_le_superto 
+0x4910 009095 branch le_init_conn 
+:      009101 le_dispatch:
+0x4911 009102 call le_enable 
+0x4912 009103 call le_scan 
+0x4913 009104 call le_adv 
+0x4914 009105 branch le_disable 
+:      009107 le_conn_dispatch:
+0x4915 009108 set1 mark_ext_patch ,mark 
+0x4916 009109 bpatch patch20_1 ,mem_patch20 
+0x4917 009110 call le_enable 
+0x4918 009111 call app_process_ble 
+0x4919 009112 fetch 1 ,mem_le_mode 
+0x491a 009113 beq lemode_master ,le_master_dispatch 
+0x491b 009114 branch le_slave_dispatch 
+:      009120 le_master_dispatch:
+0x491c 009121 set1 mark_ext_patch ,mark 
+0x491d 009122 bpatch patch20_2 ,mem_patch20 
+0x491e 009123 enable master 
+0x491f 009124 call le_supervision_update 
+0x4920 009125 branch le_master_disconn ,positive 
+0x4921 009126 call check_ble_disabled 
+0x4922 009127 call le_setup 
+0x4923 009128 call le_prepare_tx 
+0x4924 009129 disable match 
+0x4925 009130 call le_transmit_receive_sifs 
+0x4926 009131 nrtn match 
+0x4927 009132 set1 mark_ext_patch ,mark 
+0x4928 009133 bpatch patch20_3 ,mem_patch20 
+0x4929 009134 fetch 1 ,mem_le_conn_rcv 
+0x492a 009135 increase 1 ,pdata 
+0x492b 009136 store 1 ,mem_le_conn_rcv 
+0x492c 009137 call le_acknowledge 
+0x492d 009138 disable master 
+0x492e 009139 rtn 
+:      009141 le_master_disconn:
+0x492f 009142 call le_disconnect 
+0x4930 009143 disable master 
+0x4931 009144 rtn 
+:      009149 le_slave_dispatch:
+0x4932 009150 set1 mark_ext_patch ,mark 
+0x4933 009151 bpatch patch20_4 ,mem_patch20 
+0x4934 009152 call sp_calc_sequence_256 
+0x4935 009153 call le_secure_connect_sm 
+0x4936 009154 disable attempt 
+0x4937 009155 call le_supervision_update 
+0x4938 009156 branch le_slave_disconn ,positive 
+0x4939 009157 call check_ble_disabled 
+0x493a 009158 call le_setup 
+0x493b 009159 call le_receive_slave 
+0x493c 009160 nbranch le_slave_unsync ,sync 
+0x493d 009161 call le_got_first_packet 
+0x493e 009162 branch le_slave_match ,match 
+0x493f 009163 branch le_slave_transmit_last 
+:      009166 le_slave_match:
+0x4940 009167 set1 mark_ext_patch ,mark 
+0x4941 009168 bpatch patch20_5 ,mem_patch20 
+0x4942 009169 call le_got_first_packet 
+0x4943 009170 call le_acknowledge 
+0x4944 009171 call le_prepare_tx 
+0x4945 009172 fetch 1 ,mem_le_rxbuf 
+0x4946 009173 bbit1 md ,le_slave_more_data 
+0x4947 009174 call le_xtype_fifo_is_empty 
+0x4948 009175 nbranch le_slave_more_data ,blank 
+:      009176 le_slave_transmit_last:
+0x4949 009177 set1 mark_ext_patch ,mark 
+0x494a 009178 bpatch patch20_6 ,mem_patch20 
+0x494b 009179 call le_transmit_norx 
+:      009180 le_slave_cont:
+0x494c 009181 call check_51cmd 
+0x494d 009182 fetch 1 ,mem_le_op 
+0x494e 009183 bbit1 op_disconn ,le_slave_disconn 
+:      009184 le_slave_unsync:
+0x494f 009185 set1 mark_ext_patch ,mark 
+0x4950 009186 bpatch patch20_7 ,mem_patch20 
+0x4951 009187 call le_lpm_set_mult 
+0x4952 009188 call le_update_channel_map 
+0x4953 009189 call le_update_param 
+0x4954 009190 branch calc_clke_offset 
+:      009192 le_slave_more_data:
+0x4955 009193 set1 mark_ext_patch ,mark 
+0x4956 009194 bpatch patch21_0 ,mem_patch21 
+0x4957 009195 enable attempt 
+0x4958 009196 call le_transmit_receive_sifs 
+0x4959 009197 branch le_slave_match ,match 
+0x495a 009198 branch le_slave_cont 
+:      009200 le_slave_disconn:
+:      009203 le_disconnect:
+0x495b 009204 set1 mark_ext_patch ,mark 
+0x495c 009205 bpatch patch21_1 ,mem_patch21 
+:      009206 le_disconnect0:
+0x495d 009207 call le_clear_connection_info 
+0x495e 009208 call app_disconn_reason_collect_ble 
+0x495f 009209 call sp_initialize_256 
+0x4960 009210 jam bt_evt_le_disconnected ,mem_fifo_temp 
+0x4961 009211 branch ui_ipc_send_event 
+:      009213 le_clear_connection_info:
+0x4962 009214 jam 0 ,mem_le_conn_handle 
+0x4963 009215 jam lemode_idle ,mem_le_mode 
+0x4964 009216 jam 0 ,mem_le_state 
+0x4965 009217 jam flag_le_enc_null ,mem_le_enc_state 
+0x4966 009218 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x4967 009219 rtn 
+:      009221 le_got_first_packet:
+0x4968 009222 set1 mark_ext_patch ,mark 
+0x4969 009223 bpatch patch21_2 ,mem_patch21 
+0x496a 009224 fetch 1 ,mem_le_conn_rcv 
+0x496b 009225 increase 1 ,pdata 
+0x496c 009226 store 1 ,mem_le_conn_rcv 
+0x496d 009227 fetch 1 ,mem_le_state 
+0x496e 009228 rtnbit1 lestate_got_first_packet 
+0x496f 009229 set1 lestate_got_first_packet 
+0x4970 009230 store 1 ,mem_le_state 
+0x4971 009231 fetch 2 ,mem_le_init_superto 
+0x4972 009232 store 2 ,mem_le_superto 
+0x4973 009233 setarg 0 
+0x4974 009234 store 4 ,mem_le_transmit_window 
+0x4975 009235 rtn 
+:      009240 le_enable:
+0x4976 009241 set1 mark_ext_patch ,mark 
+0x4977 009242 bpatch patch21_3 ,mem_patch21 
+0x4978 009243 hjam 0x36 ,0x90f 
+0x4979 009244 hjam 0x5f ,0x90b 
+0x497a 009245 enable le 
+0x497b 009246 hjam 7 ,rfen_ulp 
+0x497c 009247 branch check_ble_disabled 
+:      009249 le_disable:
+0x497d 009250 set1 mark_ext_patch ,mark 
+0x497e 009251 bpatch patch21_4 ,mem_patch21 
+0x497f 009252 hjam 0x2e ,0x90f 
+0x4980 009253 hjam 0xff ,0x90b 
+0x4981 009254 disable le 
+0x4982 009255 hjam 3 ,rfen_ulp 
+0x4983 009256 arg 0 ,stop_watch 
+0x4984 009257 rtn 
+:      009259 le_prep:
+0x4985 009260 disable enable_crc 
+0x4986 009261 disable enable_white 
+0x4987 009262 fetch 3 ,mem_le_crcinit 
+0x4988 009263 iforce crc24_init 
+0x4989 009264 fetch 1 ,mem_le_ch_mapped 
+0x498a 009265 reverse pdata ,temp 
+0x498b 009266 set1 1 ,temp 
+0x498c 009267 rshift temp ,white_init 
+0x498d 009268 rtn 
+:      009271 lerx_setfreq:
+0x498e 009272 call le_setfreq 
+0x498f 009273 call set_freq_rx 
+0x4990 009274 setarg param_pll_setup 
+0x4991 009275 call sleep 
+0x4992 009276 branch rf_rx_enable 
+:      009278 letx_setfreq:
+0x4993 009279 branch txon ,match 
+:      009280 letx_setfreq0:
+0x4994 009281 call le_setfreq 
+0x4995 009282 branch set_freq_tx 
+:      009283 le_setfreq:
+0x4996 009284 set1 mark_ext_patch ,mark 
+0x4997 009285 bpatch patch21_5 ,mem_patch21 
+0x4998 009286 call set_sync_on 
+0x4999 009287 fetch 1 ,mem_le_testtype 
+0x499a 009288 nbranch le_ctf_test ,blank 
+0x499b 009289 fetch 1 ,mem_le_ch_mapped 
+0x499c 009290 sub pdata ,36 ,null 
+0x499d 009291 branch le_ctf_normal ,positive 
+0x499e 009292 force 0 ,temp 
+0x499f 009293 rtneq 37 
+0x49a0 009294 force 24 ,temp 
+0x49a1 009295 rtneq 38 
+0x49a2 009296 force 78 ,temp 
+0x49a3 009297 rtn 
+:      009299 le_ctf_normal:
+0x49a4 009300 sub pdata ,10 ,null 
+0x49a5 009301 branch le_ctf_low ,positive 
+0x49a6 009302 increase 1 ,pdata 
+:      009304 le_ctf_low:
+0x49a7 009305 lshift pdata ,pdata 
+0x49a8 009306 add pdata ,2 ,temp 
+0x49a9 009307 rtn 
+:      009309 le_ctf_test:
+0x49aa 009310 fetch 1 ,mem_le_ch_mapped 
+0x49ab 009311 lshift pdata ,temp 
+0x49ac 009312 rtn 
+:      009314 le_sca_map:
+0x49ad 009315 arg 500 ,temp 
+0x49ae 009316 rtn blank 
+0x49af 009317 arg 250 ,temp 
+0x49b0 009318 rtneq 1 
+0x49b1 009319 arg 150 ,temp 
+0x49b2 009320 rtneq 2 
+0x49b3 009321 arg 100 ,temp 
+0x49b4 009322 rtneq 3 
+0x49b5 009323 arg 75 ,temp 
+0x49b6 009324 rtneq 4 
+0x49b7 009325 arg 50 ,temp 
+0x49b8 009326 rtneq 5 
+0x49b9 009327 arg 40 ,temp 
+0x49ba 009328 rtneq 6 
+0x49bb 009329 arg 20 ,temp 
+0x49bc 009330 rtn 
+:      009334 le_adv_access:
+0x49bd 009335 setarg 0x8e89be 
+0x49be 009336 lshift8 pdata ,pdata 
+0x49bf 009337 or_into 0xd6 ,pdata 
+0x49c0 009338 iforce access 
+0x49c1 009339 setarg 0x555555 
+0x49c2 009340 store 3 ,mem_le_crcinit 
+0x49c3 009341 rtn 
+:      009343 le_setup:
+0x49c4 009344 set1 mark_ext_patch ,mark 
+0x49c5 009345 bpatch patch21_6 ,mem_patch21 
+0x49c6 009346 enable swfine 
+0x49c7 009347 fetch 4 ,mem_le_access 
+0x49c8 009348 iforce access 
+0x49c9 009349 call le_map_channel 
+0x49ca 009350 setarg 0x200 
+0x49cb 009351 branch le_setup_master ,master 
+0x49cc 009352 fetch 2 ,mem_le_receive_window 
+0x49cd 009353 rshift pdata ,pdata 
+:      009354 le_setup_master:
+0x49ce 009355 arg param_pll_setup ,temp 
+0x49cf 009356 iadd temp ,pdata 
+0x49d0 009357 call ahead_window 
+0x49d1 009358 deposit clke 
+0x49d2 009359 store 6 ,mem_le_rxon_ts 
+0x49d3 009360 rtn 
+:      009362 le_next_adv_channel:
+0x49d4 009363 set1 mark_ext_patch ,mark 
+0x49d5 009364 bpatch patch21_7 ,mem_patch21 
+0x49d6 009365 fetch 1 ,mem_le_ch_mapped 
+0x49d7 009366 increase 1 ,pdata 
+0x49d8 009367 store 1 ,mem_le_ch_mapped 
+0x49d9 009368 rtnne 40 
+0x49da 009369 jam 37 ,mem_le_ch_mapped 
+0x49db 009370 rtn 
+:      009372 le_context_nexthop:
+0x49dc 009373 set1 mark_ext_patch ,mark 
+0x49dd 009374 bpatch patch22_0 ,mem_patch22 
+0x49de 009375 add rega ,coffset_mode ,contr 
+0x49df 009376 ifetch 1 ,contr 
+0x49e0 009377 rtnbit0 mode_le 
+0x49e1 009378 add rega ,coffset_le_event_cnt ,contw 
+0x49e2 009379 ifetch 2 ,contw 
+0x49e3 009380 increase 1 ,pdata 
+0x49e4 009381 istore 2 ,contw 
+0x49e5 009382 add rega ,coffset_le_hop ,contr 
+0x49e6 009383 ifetch 1 ,contr 
+0x49e7 009384 add rega ,coffset_le_ch ,contw 
+0x49e8 009385 ifetcht 1 ,contw 
+0x49e9 009386 iadd temp ,pdata 
+0x49ea 009387 sub pdata ,36 ,null 
+0x49eb 009388 branch le_nexthop_nowrap ,positive 
+0x49ec 009389 increase -37 ,pdata 
+:      009390 le_nexthop_nowrap:
+0x49ed 009391 istore 1 ,contw 
+0x49ee 009392 rtn 
+:      009395 le_calc_channel_map:
+0x49ef 009396 set1 mark_ext_patch ,mark 
+0x49f0 009397 bpatch patch22_1 ,mem_patch22 
+0x49f1 009398 fetch 5 ,mem_le_channel_map 
+0x49f2 009399 force 0 ,temp 
+0x49f3 009400 force 37 ,loopcnt 
+:      009401 le_count_channels_loop:
+0x49f4 009402 bbit0 0 ,le_count_channels_notused 
+0x49f5 009403 increase 1 ,temp 
+:      009404 le_count_channels_notused:
+0x49f6 009405 rshift pdata ,pdata 
+0x49f7 009406 loop le_count_channels_loop 
+0x49f8 009407 add temp ,-1 ,pdata 
+0x49f9 009408 store 1 ,mem_le_channels 
+0x49fa 009409 rtn 
+:      009411 le_map_channel:
+0x49fb 009412 set1 mark_ext_patch ,mark 
+0x49fc 009413 bpatch patch22_2 ,mem_patch22 
+0x49fd 009414 fetch 1 ,mem_le_ch 
+0x49fe 009415 iforce queue 
+0x49ff 009416 fetcht 5 ,mem_le_channel_map 
+0x4a00 009417 qisolate1 temp 
+0x4a01 009418 branch le_map_channel_end ,true 
+:      009419 le_map_channel_next:
+0x4a02 009420 set1 mark_ext_patch ,mark 
+0x4a03 009421 bpatch patch22_3 ,mem_patch22 
+0x4a04 009422 fetch 1 ,mem_le_channels 
+0x4a05 009423 isub queue ,pdata 
+0x4a06 009424 branch le_map_channel_cont ,positive 
+0x4a07 009425 sub pdata ,-1 ,queue 
+0x4a08 009426 branch le_map_channel_next 
+:      009427 le_map_channel_cont:
+0x4a09 009428 copy queue ,loopcnt 
+0x4a0a 009429 force 0 ,queue 
+:      009430 le_map_channel_loop:
+0x4a0b 009431 qisolate1 temp 
+0x4a0c 009432 branch le_map_channel_skip ,true 
+0x4a0d 009433 increase 1 ,loopcnt 
+:      009434 le_map_channel_skip:
+0x4a0e 009435 deposit loopcnt 
+0x4a0f 009436 branch le_map_channel_end ,blank 
+0x4a10 009437 increase 1 ,queue 
+0x4a11 009438 increase -1 ,loopcnt 
+0x4a12 009439 branch le_map_channel_loop 
+:      009440 le_map_channel_end:
+0x4a13 009441 deposit queue 
+0x4a14 009442 store 1 ,mem_le_ch_mapped 
+0x4a15 009443 rtn 
+:      009446 le_wait_tx:
+0x4a16 009447 branch le_wait_master ,master 
+0x4a17 009448 until null ,timeout 
+0x4a18 009449 rtn 
+:      009451 le_wait_master:
+0x4a19 009452 arg 0xea0 ,timeup 
+0x4a1a 009453 until clkn_rt ,meet 
+0x4a1b 009454 rtn 
+:      009456 le_receive_adv:
+0x4a1c 009457 disable swfine 
+0x4a1d 009458 fetch 2 ,mem_le_scan_window 
+0x4a1e 009459 copy pdata ,timeup 
+0x4a1f 009460 branch le_receive_packet 
+:      009463 le_receive_slave:
+0x4a20 009464 set1 mark_ext_patch ,mark 
+0x4a21 009465 bpatch patch22_4 ,mem_patch22 
+0x4a22 009466 enable swfine 
+0x4a23 009467 fetch 2 ,mem_le_receive_window 
+0x4a24 009468 fetcht 4 ,mem_le_transmit_window 
+0x4a25 009469 iadd temp ,timeup 
+:      009470 le_receive_packet:
+0x4a26 009471 call lerx_setfreq 
+:      009472 le_receive_rxon:
+0x4a27 009473 set1 mark_ext_patch ,mark 
+0x4a28 009474 bpatch patch22_5 ,mem_patch22 
+0x4a29 009475 call le_prep 
+0x4a2a 009476 disable match 
+0x4a2b 009477 enable decode_fec0 
+0x4a2c 009478 enable is_rx 
+0x4a2d 009479 disable is_tx 
+0x4a2e 009480 copy timeup ,stop_watch 
+0x4a2f 009481 correlate null ,timeout 
+0x4a30 009482 branch le_receive_on_attempt ,attempt 
+0x4a31 009483 copy clke ,temp 
+0x4a32 009484 storet 6 ,mem_sync_clke 
+:      009485 le_receive_on_attempt:
+0x4a33 009486 nbranch end_of_packet ,sync 
+0x4a34 009487 branch le_receive_skip ,attempt 
+0x4a35 009488 arg param_clke_cal_le ,clke_rt 
+0x4a36 009489 copy bt_clk ,clke_bt 
+0x4a37 009490 fetch 1 ,mem_le_state 
+0x4a38 009491 bbit0 lestate_got_first_packet ,le_receive_skip 
+0x4a39 009492 call lpm_adjust_clk ,wake 
+:      009493 le_receive_skip:
+0x4a3a 009494 set1 mark_ext_patch ,mark 
+0x4a3b 009495 bpatch patch22_6 ,mem_patch22 
+0x4a3c 009496 call save_rssi 
+0x4a3d 009497 enable enable_white 
+0x4a3e 009498 enable enable_crc 
+0x4a3f 009499 parse demod ,bucket ,8 
+0x4a40 009500 rshift3 pwindow ,pdata 
+0x4a41 009501 store 1 ,mem_le_rxbuf 
+0x4a42 009502 parse demod ,bucket ,8 
+0x4a43 009503 rshift3 pwindow ,pdata 
+0x4a44 009504 istore 1 ,contw 
+0x4a45 009505 and pdata ,0x3f ,loopcnt 
+0x4a46 009506 branch lerx_nopayload ,zero 
+:      009508 lerx_loop:
+0x4a47 009509 parse demod ,bucket ,8 
+0x4a48 009510 rshift3 pwindow ,pdata 
+0x4a49 009511 istore 1 ,contw 
+0x4a4a 009512 loop lerx_loop 
+:      009514 lerx_nopayload:
+0x4a4b 009515 set1 mark_ext_patch ,mark 
+0x4a4c 009516 bpatch patch22_7 ,mem_patch22 
+0x4a4d 009517 parse demod ,bucket ,24 
+0x4a4e 009518 enable swfine 
+0x4a4f 009519 arg param_sifs ,stop_watch 
+0x4a50 009520 rshift32 pdata ,pdata 
+0x4a51 009521 rshift16 pdata ,pdata 
+0x4a52 009522 istore 3 ,contw 
+0x4a53 009523 branch end_of_packet ,crc_failed 
+0x4a54 009524 enable match 
+0x4a55 009525 fetch 1 ,mem_last_freq 
+0x4a56 009526 add pdata ,0 ,rega 
+0x4a57 009527 call rf_write_freq 
+0x4a58 009528 disable decode_fec0 
+0x4a59 009529 branch set_sync_on 
+:      009531 le_transmit_receive_sifs:
+0x4a5a 009532 set1 mark_ext_patch ,mark 
+0x4a5b 009533 bpatch patch23_0 ,mem_patch23 
+0x4a5c 009534 call le_transmit 
+0x4a5d 009535 fetcht 1 ,mem_last_freq 
+0x4a5e 009536 call set_freq_rx 
+0x4a5f 009537 call rf_rx_enable 
+0x4a60 009538 enable swfine 
+0x4a61 009539 arg 5500 ,timeup 
+0x4a62 009540 branch le_receive_rxon 
+:      009542 le_transmit_norx:
+0x4a63 009543 call le_transmit 
+0x4a64 009544 branch end_of_packet 
+:      009546 le_transmit:
+0x4a65 009547 set1 mark_ext_patch ,mark 
+0x4a66 009548 bpatch patch23_1 ,mem_patch23 
+0x4a67 009549 call le_prep 
+0x4a68 009550 call letx_setfreq 
+0x4a69 009551 call le_transmit0 
+0x4a6a 009552 fetch 1 ,mem_device_option 
+0x4a6b 009553 beq dvc_op_module ,module_le_transmit 
+0x4a6c 009554 rtn 
+:      009555 le_transmit0:
+0x4a6d 009556 set1 txgfsk ,radio_ctrl 
+0x4a6e 009557 enable encode_fec0 
+0x4a6f 009558 enable is_tx 
+0x4a70 009559 disable is_rx 
+0x4a71 009560 call le_wait_tx 
+0x4a72 009561 rshift16 access ,pdata 
+0x4a73 009562 rshift8 pdata ,pdata 
+0x4a74 009563 rshift4 pdata ,pdata 
+0x4a75 009564 inject mod ,40 
+0x4a76 009565 enable enable_white 
+0x4a77 009566 enable enable_crc 
+0x4a78 009567 set1 mark_ext_patch ,mark 
+0x4a79 009568 bpatch patch23_2 ,mem_patch23 
+0x4a7a 009569 fetch 1 ,mem_le_txheader 
+0x4a7b 009570 inject mod ,8 
+0x4a7c 009571 ifetch 1 ,contr 
+0x4a7d 009572 and pdata ,0x3f ,loopcnt 
+0x4a7e 009573 inject mod ,8 
+0x4a7f 009574 branch letr_nopayload ,zero 
+:      009575 letr_loop:
+0x4a80 009576 ifetch 1 ,contr 
+0x4a81 009577 inject mod ,8 
+0x4a82 009578 loop letr_loop 
+:      009580 letr_nopayload:
+0x4a83 009581 enable enable_parity 
+0x4a84 009582 inject mod ,24 
+0x4a85 009583 disable enable_parity 
+0x4a86 009584 until null ,tx_clear 
+0x4a87 009585 nop 100 
+0x4a88 009586 disable encode_fec0 
+0x4a89 009587 rtn 
+:      009589 le_send_adv_ind:
+0x4a8a 009590 set1 mark_ext_patch ,mark 
+0x4a8b 009591 bpatch patch23_3 ,mem_patch23 
+0x4a8c 009592 fetch 1 ,mem_le_adv_type 
+0x4a8d 009593 beq adv_direct_ind ,le_send_adv_direct_ind 
+0x4a8e 009594 fetch 1 ,mem_le_adv_own_addr_type 
+0x4a8f 009595 lshift4 pdata ,pdata 
+0x4a90 009596 lshift2 pdata ,pdata 
+0x4a91 009597 store 1 ,mem_le_txheader 
+0x4a92 009598 fetcht 1 ,mem_le_adv_data_len 
+0x4a93 009599 add temp ,6 ,pdata 
+0x4a94 009600 store 1 ,mem_le_txlen 
+0x4a95 009601 fetch 6 ,mem_le_lap 
+0x4a96 009602 store 6 ,mem_le_txpayload 
+0x4a97 009603 copy temp ,loopcnt 
+0x4a98 009604 arg mem_le_adv_data ,contr 
+0x4a99 009605 call memcpy_fast 
+0x4a9a 009606 branch le_send_adv_transmit 
+:      009607 le_send_adv_direct_ind:
+0x4a9b 009608 fetcht 2 ,mem_le_notify_handle 
+0x4a9c 009609 call le_att_check_notification_enable 
+0x4a9d 009610 copy rega ,contw 
+0x4a9e 009611 setarg 1 
+0x4a9f 009612 istore 1 ,contw 
+0x4aa0 009613 fetch 1 ,mem_le_adv_direct_addr_type 
+0x4aa1 009614 lshift4 pdata ,pdata 
+0x4aa2 009615 lshift2 pdata ,pdata 
+0x4aa3 009616 increase 1 ,pdata 
+0x4aa4 009617 store 1 ,mem_le_txheader 
+0x4aa5 009618 setarg 12 
+0x4aa6 009619 store 1 ,mem_le_txlen 
+0x4aa7 009620 fetch 6 ,mem_le_lap 
+0x4aa8 009621 store 6 ,mem_le_txpayload 
+0x4aa9 009622 fetch 6 ,mem_hci_plap 
+0x4aaa 009623 istore 6 ,contw 
+:      009624 le_send_adv_transmit:
+0x4aab 009625 set1 mark_ext_patch ,mark 
+0x4aac 009626 bpatch patch23_4 ,mem_patch23 
+0x4aad 009627 fetch 1 ,mem_le_adv_transmit 
+0x4aae 009628 increase 1 ,pdata 
+0x4aaf 009629 store 1 ,mem_le_adv_transmit 
+0x4ab0 009630 arg 1800 ,stop_watch 
+0x4ab1 009631 disable match 
+0x4ab2 009632 branch le_transmit_receive_sifs 
+:      009634 le_send_scan_request:
+0x4ab3 009635 set1 mark_ext_patch ,mark 
+0x4ab4 009636 bpatch patch23_5 ,mem_patch23 
+0x4ab5 009637 fetch 1 ,mem_le_scan_type 
+0x4ab6 009638 rtnne le_scan_type_active ,pdata 
+0x4ab7 009639 fetch 1 ,mem_le_adv_transmit 
+0x4ab8 009640 increase 1 ,pdata 
+0x4ab9 009641 store 1 ,mem_le_adv_transmit 
+0x4aba 009642 arg 0x0c03 ,temp 
+0x4abb 009643 fetch 1 ,mem_le_scan_own_addr_type 
+0x4abc 009644 nsetflag blank ,le_sender_addr_bit ,temp 
+0x4abd 009645 copy rega ,pdata 
+0x4abe 009646 nsetflag blank ,le_receiver_addr_bit ,temp 
+0x4abf 009647 storet 2 ,mem_le_txheader 
+0x4ac0 009648 fetch 6 ,mem_le_lap 
+0x4ac1 009649 istore 6 ,contw 
+0x4ac2 009650 fetch 6 ,mem_le_plap 
+0x4ac3 009651 istore 6 ,contw 
+0x4ac4 009652 branch le_transmit_receive_sifs 
+:      009655 le_send_scan_response:
+0x4ac5 009656 set1 mark_ext_patch ,mark 
+0x4ac6 009657 bpatch patch23_6 ,mem_patch23 
+0x4ac7 009658 arg scan_rsp ,temp 
+0x4ac8 009659 fetch 1 ,mem_le_adv_own_addr_type 
+0x4ac9 009660 nsetflag blank ,le_sender_addr_bit ,temp 
+0x4aca 009661 storet 1 ,mem_le_txheader 
+0x4acb 009662 fetcht 1 ,mem_le_scan_data_len 
+0x4acc 009663 add temp ,6 ,pdata 
+0x4acd 009664 store 1 ,mem_le_txlen 
+0x4ace 009665 fetch 6 ,mem_le_lap 
+0x4acf 009666 store 6 ,mem_le_txpayload 
+0x4ad0 009667 arg mem_le_scan_data ,contr 
+0x4ad1 009668 copy temp ,loopcnt 
+0x4ad2 009669 call memcpy_fast 
+0x4ad3 009670 branch le_transmit_norx 
+:      009673 le_connect_request:
+0x4ad4 009674 set1 mark_ext_patch ,mark 
+0x4ad5 009675 bpatch patch23_7 ,mem_patch23 
+0x4ad6 009676 force -1 ,pdata 
+0x4ad7 009677 setsect 2 ,1 
+0x4ad8 009678 store 5 ,mem_le_channel_map 
+0x4ad9 009679 call le_calc_channel_map 
+0x4ada 009680 force 4 ,loopcnt 
+0x4adb 009681 arg mem_le_access ,contw 
+0x4adc 009682 call generate_random_loop 
+0x4add 009683 fetch 2 ,mem_le_conn_superto 
+0x4ade 009684 store 2 ,mem_le_superto 
+:      009685 le_con_req_hop_retry:
+0x4adf 009686 random pdata 
+0x4ae0 009687 and_into 0xf ,pdata 
+0x4ae1 009688 sub pdata ,4 ,null 
+0x4ae2 009689 branch le_con_req_hop_retry ,positive 
+0x4ae3 009690 store 1 ,mem_le_hop 
+0x4ae4 009691 store 1 ,mem_tmp1 
+0x4ae5 009692 set1 mark_ext_patch ,mark 
+0x4ae6 009693 bpatch patch24_0 ,mem_patch24 
+0x4ae7 009694 fetcht 2 ,mem_le_conn_interval 
+0x4ae8 009695 storet 2 ,mem_le_tsniff 
+0x4ae9 009696 copy temp ,regc 
+0x4aea 009697 add clkn_bt ,7 ,pdata 
+0x4aeb 009698 idiv regc 
+0x4aec 009699 call wait_div_end 
+0x4aed 009700 remainder rega 
+0x4aee 009701 isub rega ,pdata 
+0x4aef 009702 iadd regc ,pdata 
+0x4af0 009703 fetcht 2 ,mem_le_dsniff 
+0x4af1 009704 iadd temp ,pdata 
+0x4af2 009705 store 4 ,mem_le_anchor 
+0x4af3 009706 isub clkn_bt ,rega 
+0x4af4 009707 increase -6 ,rega 
+0x4af5 009708 arg 0x2205 ,regb 
+0x4af6 009709 fetch 1 ,mem_le_conn_own_addr_type 
+0x4af7 009710 nsetflag blank ,le_sender_addr_bit ,regb 
+0x4af8 009711 fetch 1 ,mem_le_conn_peer_addr_type 
+0x4af9 009712 nsetflag blank ,le_receiver_addr_bit ,regb 
+0x4afa 009713 copy regb ,pdata 
+0x4afb 009714 store 2 ,mem_le_txheader 
+0x4afc 009715 fetch 6 ,mem_le_lap 
+0x4afd 009716 istore 6 ,contw 
+0x4afe 009717 fetch 6 ,mem_le_plap 
+0x4aff 009718 istore 6 ,contw 
+0x4b00 009719 fetch 4 ,mem_le_access 
+0x4b01 009720 istore 4 ,contw 
+0x4b02 009721 random pdata 
+0x4b03 009722 istore 2 ,contw 
+0x4b04 009723 random pdata 
+0x4b05 009724 istore 1 ,contw 
+0x4b06 009725 force 2 ,pdata 
+0x4b07 009726 istore 1 ,contw 
+0x4b08 009727 rshift2 rega ,pdata 
+0x4b09 009728 istore 2 ,contw 
+0x4b0a 009729 rshift2 regc ,pdata 
+0x4b0b 009730 istore 2 ,contw 
+0x4b0c 009731 set1 mark_ext_patch ,mark 
+0x4b0d 009732 bpatch patch24_1 ,mem_patch24 
+0x4b0e 009733 fetch 2 ,mem_le_conn_latency 
+0x4b0f 009734 istore 2 ,contw 
+0x4b10 009735 fetch 2 ,mem_le_conn_superto 
+0x4b11 009736 istore 2 ,contw 
+0x4b12 009737 fetch 5 ,mem_le_channel_map 
+0x4b13 009738 istore 5 ,contw 
+0x4b14 009739 fetch 1 ,mem_le_hop 
+0x4b15 009740 arg param_le_sca ,temp 
+0x4b16 009741 ior temp ,pdata 
+0x4b17 009742 istore 1 ,contw 
+0x4b18 009743 call le_transmit_norx 
+0x4b19 009744 setarg mem_le_txheader 
+0x4b1a 009745 add pdata ,18 ,contr 
+0x4b1b 009746 ifetch 3 ,contr 
+0x4b1c 009747 store 3 ,mem_le_crcinit 
+0x4b1d 009748 rtn 
+:      009750 le_init_adv:
+0x4b1e 009751 set1 mark_ext_patch ,mark 
+0x4b1f 009752 bpatch patch24_2 ,mem_patch24 
+0x4b20 009753 disable master 
+0x4b21 009754 branch le_adv_access 
+:      009758 le_update_param:
+0x4b22 009759 fetch 1 ,mem_le_state 
+0x4b23 009760 rtnbit0 lestate_update_param 
+0x4b24 009761 fetch 2 ,mem_le_event_count 
+0x4b25 009762 fetcht 2 ,mem_le_instant 
+0x4b26 009763 isub temp ,pdata 
+0x4b27 009764 nrtn positive 
+0x4b28 009765 set1 mark_ext_patch ,mark 
+0x4b29 009766 bpatch patch24_3 ,mem_patch24 
+0x4b2a 009767 fetch 1 ,mem_device_option 
+0x4b2b 009768 bne dvc_op_shutter ,le_update_param_common 
+0x4b2c 009769 jam 1 ,mem_lpm_mode 
+:      009770 le_update_param_common:
+0x4b2d 009771 fetch 1 ,mem_le_state 
+0x4b2e 009772 set0 lestate_update_param ,pdata 
+0x4b2f 009773 set0 lestate_got_first_packet ,pdata 
+0x4b30 009774 store 1 ,mem_le_state 
+0x4b31 009775 fetch 4 ,mem_le_anchor 
+0x4b32 009776 fetcht 2 ,mem_le_tsniff 
+0x4b33 009777 isub temp ,rega 
+0x4b34 009778 set1 mark_ext_patch ,mark 
+0x4b35 009779 bpatch patch24_4 ,mem_patch24 
+0x4b36 009780 fetch 1 ,mem_le_new_param 
+0x4b37 009781 store 1 ,mem_le_window_size 
+0x4b38 009782 ifetcht 2 ,contr 
+0x4b39 009783 ifetch 2 ,contr 
+0x4b3a 009784 lshift2 pdata ,pdata 
+0x4b3b 009785 store 2 ,mem_le_tsniff 
+0x4b3c 009786 lshift2 temp ,temp 
+0x4b3d 009787 iadd temp ,pdata 
+0x4b3e 009788 ifetcht 4 ,contr 
+0x4b3f 009789 storet 4 ,mem_le_slave_latency 
+0x4b40 009790 iadd rega ,pdata 
+0x4b41 009791 store 4 ,mem_le_anchor 
+0x4b42 009792 branch le_receive_window_size 
+:      009794 le_update_channel_map:
+0x4b43 009795 set1 mark_ext_patch ,mark 
+0x4b44 009796 bpatch patch24_5 ,mem_patch24 
+0x4b45 009797 fetch 1 ,mem_le_state 
+0x4b46 009798 rtnbit0 lestate_update_map 
+0x4b47 009799 fetch 2 ,mem_le_event_count 
+0x4b48 009800 fetcht 2 ,mem_le_instant 
+0x4b49 009801 isub temp ,pdata 
+0x4b4a 009802 nrtn positive 
+0x4b4b 009803 fetch 1 ,mem_le_state 
+0x4b4c 009804 set0 lestate_update_map ,pdata 
+0x4b4d 009805 store 1 ,mem_le_state 
+0x4b4e 009806 fetch 5 ,mem_le_new_map 
+0x4b4f 009807 store 5 ,mem_le_channel_map 
+0x4b50 009808 branch le_calc_channel_map 
+:      009811 le_acknowledge:
+0x4b51 009812 set1 mark_ext_patch ,mark 
+0x4b52 009813 bpatch patch24_6 ,mem_patch24 
+0x4b53 009814 call le_supervision_flush 
+0x4b54 009815 call le_check_wak 
+0x4b55 009816 fetch 1 ,mem_le_rxbuf 
+0x4b56 009817 rshift pdata ,pdata 
+0x4b57 009818 ixor temp ,pdata 
+0x4b58 009819 isolate1 nesn ,pdata 
+0x4b59 009820 setflag true ,mark_old_packet ,mark 
+0x4b5a 009821 fetch 1 ,mem_le_rxbuf + 1 
+0x4b5b 009822 branch le_ack_unenc ,blank 
+0x4b5c 009823 fetch 1 ,mem_le_state 
+0x4b5d 009824 bbit0 lestate_encryption ,le_ack_unenc 
+0x4b5e 009825 call load_sk 
+0x4b5f 009826 call le_decrypt 
+0x4b60 009827 nrtn blank 
+:      009828 le_ack_unenc:
+0x4b61 009829 rtnmark1 mark_old_packet 
+0x4b62 009830 fetcht 1 ,mem_le_arq 
+0x4b63 009831 setflip nesn ,temp 
+0x4b64 009832 storet 1 ,mem_le_arq 
+0x4b65 009833 branch le_parse 
+:      009835 le_check_wak:
+0x4b66 009836 set1 mark_ext_patch ,mark 
+0x4b67 009837 bpatch patch24_7 ,mem_patch24 
+0x4b68 009838 fetcht 1 ,mem_le_arq 
+0x4b69 009839 isolate0 wak ,temp 
+0x4b6a 009840 rtn true 
+0x4b6b 009841 fetch 1 ,mem_le_rxbuf 
+0x4b6c 009842 lshift pdata ,pdata 
+0x4b6d 009843 ixor temp ,pdata 
+0x4b6e 009844 rtnbit0 sn 
+0x4b6f 009845 set0 wak ,temp 
+0x4b70 009846 setflip sn ,temp 
+0x4b71 009847 storet 1 ,mem_le_arq 
+0x4b72 009848 compare 3 ,temp ,3 
+0x4b73 009849 nrtn true 
+0x4b74 009850 fetch 1 ,mem_le_txpayload 
+0x4b75 009851 beq ll_start_enc_req ,le_set_enc 
+0x4b76 009852 fetch 1 ,mem_le_enc_state 
+0x4b77 009853 beq flag_le_enc_pause ,le_clear_enc 
+0x4b78 009854 rtn 
+:      009857 le_set_enc:
+0x4b79 009858 fetch 1 ,mem_le_state 
+0x4b7a 009859 set1 lestate_encryption ,pdata 
+0x4b7b 009860 store 1 ,mem_le_state 
+0x4b7c 009861 rtn 
+:      009863 le_clear_enc:
+0x4b7d 009864 set1 mark_ext_patch ,mark 
+0x4b7e 009865 bpatch patch25_0 ,mem_patch25 
+0x4b7f 009866 jam flag_le_enc_null ,mem_le_enc_state 
+0x4b80 009867 arg 0 ,pdata 
+0x4b81 009868 store 4 ,mem_le_last_mic 
+0x4b82 009869 store 5 ,mem_le_pcnt_tx 
+0x4b83 009870 set1 39 ,pdata 
+0x4b84 009871 store 5 ,mem_le_pcnt_rx 
+0x4b85 009872 fetch 1 ,mem_le_state 
+0x4b86 009873 set0 lestate_encryption ,pdata 
+0x4b87 009874 store 1 ,mem_le_state 
+0x4b88 009875 rtn 
+:      009879 le_wait_adv:
+0x4b89 009880 set1 mark_ext_patch ,mark 
+0x4b8a 009881 bpatch patch25_1 ,mem_patch25 
+0x4b8b 009882 call le_next_adv_channel 
+0x4b8c 009883 call le_receive_adv 
+0x4b8d 009884 fetch 1 ,mem_le_adv_waitcnt 
+0x4b8e 009885 increase 1 ,pdata 
+0x4b8f 009886 store 1 ,mem_le_adv_waitcnt 
+0x4b90 009887 rtn 
+:      009889 le_scan:
+0x4b91 009890 set1 mark_ext_patch ,mark 
+0x4b92 009891 bpatch patch25_2 ,mem_patch25 
+0x4b93 009892 fetch 1 ,mem_le_scan_enable 
+0x4b94 009893 rtnne le_scan_enable 
+0x4b95 009894 arg le_scan_interval_timer ,queue 
+0x4b96 009895 call timer_check 
+0x4b97 009896 nrtn blank 
+0x4b98 009897 fetch 2 ,mem_le_scan_interval 
+0x4b99 009898 fetcht 2 ,mem_le_scan_window 
+0x4b9a 009899 isub temp ,pdata 
+0x4b9b 009900 arg le_scan_interval_timer ,queue 
+0x4b9c 009901 call timer_init 
+0x4b9d 009902 disable master 
+0x4b9e 009903 call le_init_adv 
+0x4b9f 009904 call le_wait_adv 
+0x4ba0 009905 nrtn match 
+0x4ba1 009906 set1 mark_ext_patch ,mark 
+0x4ba2 009907 bpatch patch25_3 ,mem_patch25 
+0x4ba3 009908 fetch 6 ,mem_le_rxbuf + 2 
+0x4ba4 009909 store 6 ,mem_le_plap 
+0x4ba5 009912 fetch 1 ,mem_le_adv_rcv 
+0x4ba6 009913 increase 1 ,pdata 
+0x4ba7 009914 store 1 ,mem_le_adv_rcv 
+0x4ba8 009915 call le_create_conn 
+0x4ba9 009916 rtn master 
+0x4baa 009917 call le_send_scan_request 
+0x4bab 009918 nrtn match 
+0x4bac 009919 set1 mark_ext_patch ,mark 
+0x4bad 009920 bpatch patch25_4 ,mem_patch25 
+0x4bae 009921 fetch 1 ,mem_le_scanrsp_rcv 
+0x4baf 009922 increase 1 ,pdata 
+0x4bb0 009923 store 1 ,mem_le_scanrsp_rcv 
+0x4bb1 009924 fetch 9 ,mem_le_rxbuf + 8 
+0x4bb2 009925 store 9 ,mem_tmp_buffer 
+0x4bb3 009926 rtn 
+:      009928 le_create_conn:
+0x4bb4 009929 set1 mark_ext_patch ,mark 
+0x4bb5 009930 bpatch patch25_5 ,mem_patch25 
+0x4bb6 009931 fetch 1 ,mem_cmd_le_create_conn 
+0x4bb7 009932 rtnne hci_cmd_le_create_conn ,pdata 
+0x4bb8 009933 fetch 6 ,mem_le_plap 
+0x4bb9 009934 fetcht 6 ,mem_le_conn_peer_addr 
+0x4bba 009935 isub temp ,null 
+0x4bbb 009936 nrtn zero 
+0x4bbc 009937 call context_new 
+0x4bbd 009938 nrtn zero 
+0x4bbe 009939 call le_connect_request 
+0x4bbf 009940 call le_init_master 
+0x4bc0 009941 set1 mark_ext_patch ,mark 
+0x4bc1 009942 bpatch patch25_6 ,mem_patch25 
+0x4bc2 009943 jam 0 ,mem_hci_cmd 
+0x4bc3 009944 jam 0 ,mem_le_peer_sca 
+0x4bc4 009945 jam 0 ,mem_le_scan_enable 
+0x4bc5 009946 jam 0 ,mem_cmd_le_create_conn 
+0x4bc6 009947 jam xt_ll_version_ind ,mem_fifo_temp 
+0x4bc7 009948 call le_xtype_fifo_in 
+0x4bc8 009949 branch context_save 
+:      009951 le_scan_check_sender_addr_type:
+0x4bc9 009952 arg 1 ,rega 
+0x4bca 009953 fetch 1 ,mem_le_rxbuf 
+0x4bcb 009954 rtnbit1 le_sender_addr_bit 
+0x4bcc 009955 arg 0 ,rega 
+0x4bcd 009956 rtn 
+:      009958 le_xtype_fifo_count:
+0x4bce 009959 arg mem_le_xtype_fifo ,contr 
+0x4bcf 009960 branch fifo_content_count 
+:      009962 le_xtype_fifo_is_empty:
+0x4bd0 009963 arg mem_le_xtype_fifo ,rega 
+0x4bd1 009964 branch fifo_is_empty 
+:      009966 le_xtype_fifo_is_full:
+0x4bd2 009967 arg mem_le_xtype_fifo ,rega 
+0x4bd3 009968 branch fifo_is_full 
+:      009970 le_xtype_fifo_is_near_full:
+0x4bd4 009971 arg mem_le_xtype_fifo ,rega 
+0x4bd5 009972 branch fifo_is_near_full 
+:      009974 le_xtype_fifo_in:
+0x4bd6 009975 arg mem_le_xtype_fifo ,rega 
+0x4bd7 009976 branch fifo_in 
+:      009978 le_prepare_tx:
+0x4bd8 009979 set1 mark_ext_patch ,mark 
+0x4bd9 009980 bpatch patch25_7 ,mem_patch25 
+0x4bda 009981 fetch 1 ,mem_le_arq 
+0x4bdb 009982 rtnbit1 wak 
+0x4bdc 009983 fetch 1 ,mem_device_option 
+0x4bdd 009984 beq dvc_op_shutter ,le_prepare_tx_shutter 
+:      009985 le_prepare_tx_1:
+0x4bde 009986 arg mem_le_xtype_fifo ,rega 
+0x4bdf 009987 call fifo_out 
+0x4be0 009988 nbranch le_prepare_tx_cmd ,blank 
+0x4be1 009989 branch le_send_empty 
+:      009991 le_prepare_tx_shutter:
+0x4be2 009992 fetch 1 ,mem_empty_count 
+0x4be3 009993 nbranch le_send_empty_shutter ,blank 
+0x4be4 009994 fetch 1 ,mem_le_state 
+0x4be5 009995 bbit0 lestate_encryption ,le_tx_4 
+0x4be6 009996 fetch 1 ,mem_le_rxbuf + 1 
+0x4be7 009997 branch le_tx_4 ,blank 
+0x4be8 009998 branch le_send_empty 
+:      009999 le_send_empty_shutter:
+0x4be9 010000 fetch 1 ,mem_empty_count 
+0x4bea 010001 increase -1 ,pdata 
+0x4beb 010002 store 1 ,mem_empty_count 
+0x4bec 010003 branch le_send_empty 
+:      010004 le_tx_4:
+0x4bed 010005 fetch 1 ,mem_le_pairing_state 
+0x4bee 010006 bne flag_le_pairing_after_auth ,in_le_tx_4 
+0x4bef 010007 jam 3 ,mem_empty_count 
+:      010008 in_le_tx_4:
+0x4bf0 010009 branch le_prepare_tx_1 
+:      010011 le_prepare_tx_cmd:
+0x4bf1 010012 copy pdata ,temp 
+0x4bf2 010013 set1 mark_ext_patch ,mark 
+0x4bf3 010014 bpatch patch26_0 ,mem_patch26 
+0x4bf4 010015 copy temp ,pdata 
+0x4bf5 010016 bbit0 5 ,le_prepare_l2cap 
+0x4bf6 010017 force 3 ,type 
+0x4bf7 010018 set0 5 ,pdata 
+0x4bf8 010019 store 1 ,mem_le_txpayload 
+0x4bf9 010020 set1 mark_ext_patch ,mark 
+0x4bfa 010021 bpatch patch26_1 ,mem_patch26 
+:      010022 le_prepare_tx_ll:
+0x4bfb 010023 fetch 1 ,mem_le_txpayload 
+0x4bfc 010024 beq ll_connection_update_req ,le_send_connection_update_req 
+0x4bfd 010025 beq ll_channel_map_req ,le_send_channel_map_req 
+0x4bfe 010026 beq ll_terminate_ind ,le_send_terminate_ind 
+0x4bff 010027 beq ll_enc_req ,le_send_enc_req 
+0x4c00 010028 beq ll_enc_rsp ,le_send_enc_rsp 
+0x4c01 010029 beq ll_start_enc_req ,le_send_start_enc_req 
+0x4c02 010030 beq ll_start_enc_rsp ,le_send_start_enc_rsp 
+0x4c03 010031 beq ll_unknown_rsp ,le_send_unknown_rsp 
+0x4c04 010032 beq ll_feature_req ,le_send_feature 
+0x4c05 010033 beq ll_feature_rsp ,le_send_feature 
+0x4c06 010034 beq ll_pause_enc_req ,le_send_pause_enc_req 
+0x4c07 010035 beq ll_pause_enc_rsp ,le_send_pause_enc_rsp 
+0x4c08 010036 beq ll_version_ind ,le_send_version_ind 
+0x4c09 010037 beq ll_reject_ind ,le_send_reject_ind 
+0x4c0a 010038 beq ll_connection_param_req ,le_send_conn_param_req 
+0x4c0b 010039 beq ll_ping_rsp ,le_send_ping_response 
+0x4c0c 010040 branch assert 
+:      010042 le_prepare_l2cap:
+0x4c0d 010043 jam 0 ,mem_le_txcid + 1 
+0x4c0e 010044 force 2 ,type 
+0x4c0f 010045 bbit0 6 ,le_prepare_att 
+0x4c10 010046 beq attop_write_command ,le_prepare_att 
+0x4c11 010047 beq attop_signed_write_command ,le_prepare_att 
+0x4c12 010048 jam le_l2cap_cid_smp ,mem_le_txcid 
+0x4c13 010049 set0 6 ,pdata 
+0x4c14 010050 store 1 ,mem_le_l2cap 
+0x4c15 010051 set1 mark_ext_patch ,mark 
+0x4c16 010052 bpatch patch26_2 ,mem_patch26 
+0x4c17 010053 fetch 1 ,mem_le_l2cap 
+:      010054 le_prepare_smp0:
+0x4c18 010055 beq smp_pairing_request ,le_send_smp_pairing_request 
+0x4c19 010056 beq smp_pairing_response ,le_send_smp_pairing_response 
+0x4c1a 010057 beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+0x4c1b 010058 beq smp_pairing_random ,le_send_smp_pairing_random 
+0x4c1c 010059 beq smp_pairing_failed ,le_send_smp_pairing_failed 
+0x4c1d 010060 beq smp_encryption_information ,le_send_smp_encryption_information 
+0x4c1e 010061 beq smp_master_identification ,le_send_smp_master_identification 
+0x4c1f 010062 beq smp_identity_information ,le_send_smp_identity_information 
+0x4c20 010063 beq smp_identity_address_information ,le_send_smp_identity_address_information 
+0x4c21 010064 beq smp_signing_information ,le_send_smp_signing_information 
+0x4c22 010065 beq smp_security_request ,le_send_smp_security_request 
+0x4c23 010066 beq smp_pairing_public_key ,le_send_smp_pairing_public_key 
+0x4c24 010067 beq smp_pairing_dhkey_check ,le_send_smp_pairing_dhkey_check 
+0x4c25 010068 branch assert 
+:      010070 le_prepare_att:
+0x4c26 010071 jam le_l2cap_cid_att ,mem_le_txcid 
+0x4c27 010072 store 1 ,mem_le_l2cap 
+0x4c28 010073 set1 mark_ext_patch ,mark 
+0x4c29 010074 bpatch patch26_3 ,mem_patch26 
+0x4c2a 010075 fetch 1 ,mem_le_l2cap 
+0x4c2b 010076 beq attop_error_response ,le_send_att_error_response 
+0x4c2c 010077 beq attop_exchange_mtu_request ,le_send_att_exchange_mtu_req 
+0x4c2d 010078 beq attop_exchange_mtu_response ,le_send_att_exchange_mtu_rsp 
+0x4c2e 010079 beq attop_find_information_request ,le_send_att_find_information_request 
+0x4c2f 010080 beq attop_find_information_response ,le_send_att_find_information_response 
+0x4c30 010081 beq attop_find_by_type_value_request ,le_send_att_find_by_type_value_request 
+0x4c31 010082 beq attop_find_by_type_value_response ,le_send_att_find_by_type_value_response 
+0x4c32 010083 beq attop_read_by_type_request ,le_send_att_read_by_type_request 
+0x4c33 010084 beq attop_read_by_type_response ,le_send_att_read_by_type_response 
+0x4c34 010085 beq attop_read_request ,le_send_att_read_request 
+0x4c35 010086 beq attop_read_response ,le_send_att_read_response 
+0x4c36 010087 beq attop_read_blob_request ,le_send_att_read_blob_request 
+0x4c37 010088 beq attop_read_blob_response ,le_send_att_read_blob_response 
+0x4c38 010089 beq attop_read_multiple_request ,le_send_att_read_multiple_request 
+0x4c39 010090 beq attop_read_multiple_response ,le_send_att_read_multiple_response 
+0x4c3a 010091 beq attop_read_by_group_type_request ,le_send_att_read_by_group_type_request 
+0x4c3b 010092 beq attop_read_by_group_type_response ,le_send_att_read_by_group_type_response 
+0x4c3c 010093 beq attop_write_request ,le_send_att_write_request 
+0x4c3d 010094 beq attop_write_response ,le_send_att_write_response 
+0x4c3e 010095 beq attop_prepare_write_request ,le_send_att_prepare_write_request 
+0x4c3f 010096 beq attop_prepare_write_response ,le_send_att_prepare_write_response 
+0x4c40 010097 beq attop_execute_write_request ,le_send_att_execute_write_request 
+0x4c41 010098 beq attop_execute_write_response ,le_send_att_execute_write_response 
+0x4c42 010099 beq attop_handle_value_notification ,le_send_att_handle_value_notification 
+0x4c43 010100 beq attop_handle_value_indication ,le_send_att_handle_value_indication 
+0x4c44 010101 beq attop_handle_value_confirmation ,le_send_att_handle_value_confirmation 
+0x4c45 010102 beq attop_write_command ,le_send_att_write_command 
+0x4c46 010103 beq attop_signed_write_command ,le_send_att_signed_write_command 
+0x4c47 010104 beq empty_le_data_pre ,le_send_empty_le_data_pre 
+0x4c48 010105 beq empty_le_data ,le_send_empty_le_data 
+0x4c49 010106 beq attop_continue ,le_send_att_continue 
+0x4c4a 010107 branch assert 
+:      010109 le_send_empty_le_data_pre:
+0x4c4b 010110 jam attop_read_by_group_type_request ,mem_fifo_temp 
+0x4c4c 010111 call le_xtype_fifo_in 
+:      010113 le_send_empty_le_data:
+0x4c4d 010114 setarg 0x0011 
+0x4c4e 010115 store 2 ,mem_le_txheader 
+0x4c4f 010116 fetch 1 ,mem_le_arq 
+0x4c50 010117 set1 wak ,pdata 
+0x4c51 010118 store 1 ,mem_le_arq 
+0x4c52 010119 jam attop_write_request ,mem_fifo_temp 
+0x4c53 010120 branch le_xtype_fifo_in 
+:      010122 le_send_connection_update_req:
+0x4c54 010123 force 12 ,temp 
+0x4c55 010124 branch le_send_packet 
+:      010126 le_send_channel_map_req:
+0x4c56 010127 force 8 ,temp 
+0x4c57 010128 branch le_send_packet 
+:      010130 le_send_terminate_ind:
+0x4c58 010131 force 2 ,temp 
+0x4c59 010132 branch le_send_packet 
+:      010134 le_send_enc_req:
+0x4c5a 010135 force 0 ,pdata 
+0x4c5b 010136 istore 8 ,contw 
+0x4c5c 010137 istore 2 ,contw 
+0x4c5d 010138 copy contw ,temp 
+0x4c5e 010139 arg mem_le_skdm ,contw 
+0x4c5f 010140 force 8 ,loopcnt 
+0x4c60 010141 call generate_random_loop 
+0x4c61 010142 fetch 8 ,mem_le_skdm 
+0x4c62 010143 istore 8 ,temp 
+0x4c63 010144 copy contw ,temp 
+0x4c64 010145 arg mem_le_ivm ,contw 
+0x4c65 010146 force 4 ,loopcnt 
+0x4c66 010147 call generate_random_loop 
+0x4c67 010148 fetch 4 ,mem_le_ivm 
+0x4c68 010149 istore 4 ,temp 
+0x4c69 010150 force 23 ,temp 
+0x4c6a 010151 branch le_send_packet 
+:      010153 le_send_enc_rsp:
+0x4c6b 010154 copy contw ,temp 
+0x4c6c 010155 arg mem_le_skds ,contw 
+0x4c6d 010156 force 8 ,loopcnt 
+0x4c6e 010157 call generate_random_loop 
+0x4c6f 010158 fetch 8 ,mem_le_skds 
+0x4c70 010159 istore 8 ,temp 
+0x4c71 010160 copy contw ,temp 
+0x4c72 010161 arg mem_le_ivs ,contw 
+0x4c73 010162 force 4 ,loopcnt 
+0x4c74 010163 call generate_random_loop 
+0x4c75 010164 fetch 4 ,mem_le_ivs 
+0x4c76 010165 istore 4 ,temp 
+0x4c77 010166 call generate_sk 
+0x4c78 010167 fetch 1 ,mem_ltk_exists 
+0x4c79 010168 beq 0 ,le_ltk_lost 
+0x4c7a 010169 jam xt_ll_start_enc_req ,mem_fifo_temp 
+0x4c7b 010170 call le_xtype_fifo_in 
+0x4c7c 010171 force 13 ,temp 
+0x4c7d 010172 branch le_send_packet 
+:      010174 le_ltk_lost:
+0x4c7e 010175 jam flag_le_enc_null ,mem_le_enc_state 
+0x4c7f 010176 jam xt_ll_reject_ind ,mem_fifo_temp 
+0x4c80 010177 call le_xtype_fifo_in 
+0x4c81 010178 call check_51cmd_le_smp_sec_req 
+0x4c82 010179 force 13 ,temp 
+0x4c83 010180 branch le_send_packet 
+:      010183 le_send_start_enc_req:
+0x4c84 010184 force 1 ,temp 
+0x4c85 010185 branch le_send_packet 
+:      010187 le_send_start_enc_rsp:
+0x4c86 010188 force 1 ,temp 
+0x4c87 010189 branch le_send_packet ,master 
+0x4c88 010190 fetch 1 ,mem_device_option 
+0x4c89 010191 beq dvc_op_shutter ,le_send_start_enc_rsp_shutter 
+0x4c8a 010192 fetch 1 ,mem_le_pairing_state 
+0x4c8b 010193 bne flag_le_pairing_after_auth ,le_send_start_enc_rsp_end 
+0x4c8c 010194 jam xt_smp_encryption_information ,mem_fifo_temp 
+0x4c8d 010195 call le_xtype_fifo_in 
+0x4c8e 010196 branch le_send_start_enc_rsp_common 
+:      010197 le_send_start_enc_rsp_end:
+0x4c8f 010198 jam flag_le_enc_end ,mem_le_enc_state 
+:      010199 le_send_start_enc_rsp_common:
+0x4c90 010200 force 1 ,temp 
+0x4c91 010201 branch le_send_packet 
+:      010202 le_send_start_enc_rsp_shutter:
+0x4c92 010203 jam 1 ,mem_lpm_mode 
+0x4c93 010204 fetch 1 ,mem_le_pairing_state 
+0x4c94 010205 bne flag_le_pairing_after_auth ,le_send_start_enc_rsp0 
+0x4c95 010206 jam xt_smp_encryption_information ,mem_fifo_temp 
+0x4c96 010207 call le_xtype_fifo_in 
+:      010208 le_send_start_enc_rsp0:
+0x4c97 010209 jam flag_le_enc_end ,mem_le_enc_state 
+0x4c98 010210 force 1 ,temp 
+0x4c99 010211 call le_send_packet 
+0x4c9a 010212 jam 1 ,mem_send_updata_le_param_timer 
+0x4c9b 010213 rtn 
+:      010214 le_send_unknown_rsp:
+0x4c9c 010215 fetch 1 ,mem_le_ll_cur_opcode 
+0x4c9d 010216 istore 1 ,contw 
+0x4c9e 010217 force 2 ,temp 
+0x4c9f 010218 branch le_send_packet 
+:      010220 le_send_feature:
+0x4ca0 010221 setarg param_le_features 
+0x4ca1 010222 istore 8 ,contw 
+0x4ca2 010223 force 9 ,temp 
+0x4ca3 010224 branch le_send_packet 
+:      010226 le_send_pause_enc_req:
+:      010229 le_send_pause_enc_rsp:
+:      010230 le_send_ping_response:
+0x4ca4 010231 force 1 ,temp 
+0x4ca5 010232 branch le_send_packet 
+:      010234 le_send_version_ind:
+0x4ca6 010235 fetch 5 ,mem_lmp_version 
+0x4ca7 010236 istore 5 ,contw 
+0x4ca8 010241 force 6 ,temp 
+0x4ca9 010242 branch le_send_packet 
+:      010244 le_send_reject_ind:
+0x4caa 010245 setarg le_err_pin_or_key_missing 
+0x4cab 010246 istore 1 ,contw 
+0x4cac 010247 force 2 ,temp 
+0x4cad 010248 branch le_send_packet 
+:      010250 le_send_conn_param_req:
+0x4cae 010251 increase -1 ,contw 
+0x4caf 010252 setarg 0x000c 
+0x4cb0 010253 istore 2 ,contw 
+0x4cb1 010254 setarg 0x0005 
+0x4cb2 010255 istore 2 ,contw 
+0x4cb3 010256 setarg 0xb412 
+0x4cb4 010257 istore 2 ,contw 
+0x4cb5 010258 setarg 0x0008 
+0x4cb6 010259 istore 2 ,contw 
+0x4cb7 010260 fetch 8 ,mem_le_interal_min 
+0x4cb8 010261 istore 8 ,contw 
+0x4cb9 010262 force 2 ,type 
+0x4cba 010263 branch le_send_autolen 
+:      010265 le_send_smp_pairing_request:
+0x4cbb 010266 setarg 0x1000401 
+0x4cbc 010267 store 4 ,mem_le_preq 
+0x4cbd 010268 setarg 0x070710 
+0x4cbe 010269 istore 3 ,contw 
+0x4cbf 010270 fetch 6 ,mem_le_preq_iocap 
+0x4cc0 010271 store 6 ,mem_le_l2cap_response 
+0x4cc1 010272 force 11 ,temp 
+0x4cc2 010273 branch le_send_packet 
+:      010275 le_send_smp_pairing_response:
+0x4cc3 010276 fetch 1 ,mem_device_option 
+0x4cc4 010277 sub pdata ,dvc_op_module ,null 
+0x4cc5 010278 call le_parse_smp_pairing_request_check_irk ,zero 
+0x4cc6 010280 fetch 1 ,mem_device_option 
+0x4cc7 010281 bne dvc_op_shutter ,le_send_smp_pairing_response_common 
+0x4cc8 010282 jam pair_ing ,mem_pair_state 
+0x4cc9 010283 fetch 1 ,mem_le_preq_init_key_distribution 
+0x4cca 010284 bbit1 initator_irk ,le_send_smp_pairing_response_common 
+0x4ccb 010285 setarg param_smp_key_dist2 
+0x4ccc 010286 istore 3 ,contw 
+:      010287 le_send_smp_pairing_response_common:
+0x4ccd 010288 fetch 6 ,mem_le_pres_iocap 
+0x4cce 010289 store 6 ,mem_le_l2cap_response 
+0x4ccf 010290 force 11 ,temp 
+0x4cd0 010291 branch le_send_packet 
+:      010293 le_parse_smp_pairing_request_check_irk:
+0x4cd1 010294 fetcht 1 ,mem_le_pres_init_key_distribution 
+0x4cd2 010295 fetch 1 ,mem_le_preq_init_key_distribution 
+0x4cd3 010296 isolate1 le_initator_irk_bit ,pdata 
+0x4cd4 010297 setflag true ,le_initator_irk_bit ,temp 
+0x4cd5 010298 storet 1 ,mem_le_pres_init_key_distribution 
+0x4cd6 010299 fetcht 1 ,mem_le_pres_resp_key_distribution 
+0x4cd7 010300 setflag true ,le_initator_irk_bit ,temp 
+0x4cd8 010301 storet 1 ,mem_le_pres_resp_key_distribution 
+0x4cd9 010302 rtn 
+:      010305 le_send_smp_pairing_confirm:
+0x4cda 010306 fetch 1 ,mem_le_secure_connect_enable 
+0x4cdb 010307 beq 1 ,le_send_smp_pairing_confirm_sc 
+0x4cdc 010308 call generate_confirm 
+0x4cdd 010309 arg mem_le_l2cap_response ,contw 
+0x4cde 010310 call store_aes_result 
+0x4cdf 010311 force 21 ,temp 
+0x4ce0 010312 branch le_send_packet 
+:      010313 le_send_smp_pairing_confirm_sc:
+0x4ce1 010314 arg mem_le_srand ,contw 
+0x4ce2 010315 call generate_random 
+0x4ce3 010316 call function_f4_cb 
+0x4ce4 010317 arg mem_le_l2cap_response ,contw 
+0x4ce5 010318 call load_inverse_result 
+0x4ce6 010319 force 21 ,temp 
+0x4ce7 010320 branch le_send_packet 
+:      010322 le_send_smp_pairing_random:
+0x4ce8 010323 fetch 8 ,mem_le_mrand 
+0x4ce9 010324 branch le_send_smp_mrandom ,master 
+0x4cea 010325 fetch 8 ,mem_le_srand 
+:      010327 le_send_smp_mrandom:
+0x4ceb 010328 call le_send_smp_128 
+0x4cec 010329 branch le_send_packet 
+:      010331 le_send_smp_pairing_failed:
+0x4ced 010332 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x4cee 010333 arg pairing_failed_unspecified_reason ,pdata 
+0x4cef 010334 istore 1 ,contw 
+0x4cf0 010335 force 6 ,temp 
+0x4cf1 010336 branch le_send_packet 
+:      010338 le_send_smp_encryption_information:
+0x4cf2 010339 jam bt_evt_le_enc_info ,mem_fifo_temp 
+0x4cf3 010340 call ui_ipc_send_event 
+0x4cf4 010341 jam xt_smp_master_identification ,mem_fifo_temp 
+0x4cf5 010342 call le_xtype_fifo_in 
+0x4cf6 010343 fetch 1 ,mem_device_option 
+0x4cf7 010344 beq dvc_op_shutter ,le_send_smp_encryption_information_shutter 
+0x4cf8 010345 fetch 8 ,mem_le_ltk 
+0x4cf9 010346 call le_send_smp_128 
+0x4cfa 010347 call le_send_packet 
+0x4cfb 010348 fetch 1 ,mem_le_conn_peer_addr_type 
+0x4cfc 010349 beq master_public_addr ,app_ble_store_reconn_info 
+0x4cfd 010350 fetch 1 ,mem_le_plap + 5 
+0x4cfe 010351 compare 0xc0 ,pdata ,0xc0 
+0x4cff 010352 branch app_ble_store_reconn_info ,true 
+0x4d00 010353 rtn 
+:      010355 le_send_smp_encryption_information_shutter:
+0x4d01 010356 setarg 0x112233 
+0x4d02 010357 store 3 ,mem_le_ltk 
+0x4d03 010358 setarg 0x445566 
+0x4d04 010359 istore 3 ,contw 
+0x4d05 010360 setarg 0x778899 
+0x4d06 010361 istore 3 ,contw 
+0x4d07 010362 setarg 0x001122 
+0x4d08 010363 istore 3 ,contw 
+0x4d09 010364 setarg 0x334455 
+0x4d0a 010365 istore 3 ,contw 
+0x4d0b 010366 setarg 0x66 
+0x4d0c 010367 istore 1 ,contw 
+0x4d0d 010369 fetch 8 ,mem_le_ltk 
+0x4d0e 010370 call le_send_smp_128 
+0x4d0f 010371 branch le_send_packet 
+:      010374 le_send_smp_master_identification:
+0x4d10 010375 fetch 1 ,mem_device_option 
+0x4d11 010376 beq dvc_op_shutter ,le_send_smp_master_identification_shutter 
+0x4d12 010378 fetch 1 ,mem_le_preq_init_key_distribution 
+0x4d13 010379 bbit0 le_initator_irk_bit ,le_send_smp_master_identification_only 
+0x4d14 010380 jam xt_smp_identity_information ,mem_fifo_temp 
+0x4d15 010381 call le_xtype_fifo_in 
+0x4d16 010382 branch le_send_smp_master_identification_common 
+:      010384 le_send_smp_master_identification_only:
+0x4d17 010385 jam flag_le_enc_end ,mem_le_enc_state 
+0x4d18 010386 jam flag_le_pairing_end ,mem_le_pairing_state 
+:      010387 le_send_smp_master_identification_common:
+0x4d19 010388 arg mem_le_ediv ,contw 
+0x4d1a 010389 force 10 ,loopcnt 
+0x4d1b 010390 call generate_random_loop 
+0x4d1c 010391 fetch 2 ,mem_le_ediv 
+0x4d1d 010392 store 2 ,mem_le_l2cap_response 
+0x4d1e 010393 fetch 8 ,mem_le_rand 
+0x4d1f 010394 istore 8 ,contw 
+0x4d20 010395 force 15 ,temp 
+0x4d21 010396 branch le_send_packet 
+:      010398 le_send_smp_master_identification_shutter:
+0x4d22 010399 arg mem_le_l2cap_response ,contw 
+0x4d23 010400 force 8 ,loopcnt 
+0x4d24 010401 call generate_random_loop 
+0x4d25 010402 force 15 ,temp 
+0x4d26 010403 branch le_send_packet 
+:      010405 le_send_smp_identity_information:
+0x4d27 010406 jam xt_smp_identity_address_information ,mem_fifo_temp 
+0x4d28 010407 call le_xtype_fifo_in 
+0x4d29 010408 setarg 0 
+0x4d2a 010409 store 8 ,mem_le_l2cap_response 
+0x4d2b 010410 istore 8 ,contw 
+0x4d2c 010411 branch le_send_autolen 
+:      010413 le_send_smp_identity_address_information:
+0x4d2d 010416 fetch 1 ,mem_le_conn_own_addr_type 
+0x4d2e 010417 store 1 ,mem_le_l2cap_response 
+0x4d2f 010418 fetch 6 ,mem_le_lap 
+0x4d30 010419 istore 6 ,contw 
+0x4d31 010420 branch le_send_autolen 
+:      010422 le_send_smp_signing_information:
+0x4d32 010423 arg mem_le_l2cap_response ,contw 
+0x4d33 010424 call generate_random 
+0x4d34 010425 branch le_send_autolen 
+:      010427 le_send_smp_security_request:
+0x4d35 010428 fetch 1 ,mem_le_pres_auth 
+0x4d36 010429 store 1 ,mem_le_l2cap_response 
+0x4d37 010430 force 6 ,temp 
+0x4d38 010431 branch le_send_packet 
+:      010433 le_send_smp_pairing_public_key:
+0x4d39 010435 fetch 1 ,mem_le_continue_type 
+0x4d3a 010436 beq le_continue_type_public_key ,le_send_public_key_continue 
+0x4d3b 010439 arg 65 ,temp 
+0x4d3c 010440 storet 2 ,mem_le_txpayload 
+0x4d3d 010441 set1 mark_ext_patch ,mark 
+0x4d3e 010442 bpatch patch26_4 ,mem_patch26 
+0x4d3f 010443 arg 0x02 ,type 
+0x4d40 010444 setarg le_l2cap_cid_smp 
+0x4d41 010445 store 2 ,mem_le_txcid 
+0x4d42 010447 arg mem_le_l2cap_response ,contw 
+0x4d43 010448 arg 22 ,loopcnt 
+0x4d44 010449 arg mem_le_pubkey_local_x_256 ,contr 
+0x4d45 010450 call memcpy_fast 
+0x4d46 010451 jam 22 ,mem_le_public_length 
+0x4d47 010453 jam 27 ,mem_le_txlen 
+0x4d48 010455 fetcht 1 ,mem_le_arq 
+0x4d49 010456 set1 md ,temp 
+0x4d4a 010457 storet 1 ,mem_le_arq 
+0x4d4b 010462 jam le_continue_type_public_key ,mem_le_continue_type 
+0x4d4c 010463 fetcht 1 ,mem_le_arq 
+0x4d4d 010464 branch le_send_non_l2cap2 
+:      010467 le_send_public_key_continue:
+0x4d4e 010468 jam le_continue_type_null ,mem_le_continue_type 
+0x4d4f 010470 fetch 1 ,mem_le_public_length 
+0x4d50 010471 beq 22 ,le_send_public_key_continue2 
+0x4d51 010473 arg 15 ,loopcnt 
+0x4d52 010474 jam 15 ,mem_le_txlen 
+0x4d53 010475 call le_send_smp_publickey_continue_common 
+0x4d54 010476 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x4d55 010477 jam le_sc_stat_send_public_key ,mem_le_secure_connect_state 
+0x4d56 010478 jam 0 ,mem_le_public_length 
+0x4d57 010479 rtn 
+:      010480 le_send_smp_publickey_continue_common:
+0x4d58 010481 arg mem_le_pubkey_local_x_256 ,contr 
+0x4d59 010482 iadd contr ,contr 
+0x4d5a 010483 arg mem_le_txpayload ,contw 
+0x4d5b 010484 call memcpy_fast 
+0x4d5c 010485 arg 1 ,type 
+0x4d5d 010486 branch le_send_non_l2cap 
+:      010489 le_send_public_key_continue2:
+0x4d5e 010490 jam 49 ,mem_le_public_length 
+0x4d5f 010491 arg 27 ,loopcnt 
+0x4d60 010492 jam 27 ,mem_le_txlen 
+0x4d61 010493 call le_send_smp_publickey_continue_common 
+0x4d62 010495 jam le_continue_type_public_key ,mem_le_continue_type 
+0x4d63 010499 rtn 
+:      010501 le_send_smp_pairing_dhkey_check:
+0x4d64 010502 call function_f6_eb 
+0x4d65 010503 arg mem_le_l2cap_response ,contw 
+0x4d66 010504 call load_inverse_result 
+0x4d67 010505 force 21 ,temp 
+0x4d68 010506 branch le_send_packet 
+:      010508 le_send_smp_128:
+0x4d69 010509 store 8 ,mem_le_l2cap_response 
+0x4d6a 010510 ifetch 8 ,contr 
+0x4d6b 010511 istore 8 ,contw 
+0x4d6c 010512 force 21 ,temp 
+0x4d6d 010513 rtn 
+:      010515 le_send_att_error_response_notfound:
+0x4d6e 010516 jam att_err_attribute_not_found ,mem_le_err_code 
+:      010517 le_send_att_error_response:
+0x4d6f 010518 jam attop_error_response ,mem_le_l2cap 
+0x4d70 010519 fetch 3 ,mem_le_att_opcode 
+0x4d71 010520 store 3 ,mem_le_l2cap_response 
+0x4d72 010521 fetch 1 ,mem_le_err_code 
+0x4d73 010522 istore 1 ,contw 
+0x4d74 010523 branch le_send_autolen 
+:      010525 le_send_att_exchange_mtu_rsp:
+:      010526 le_send_att_exchange_mtu_req:
+0x4d75 010527 fetch 2 ,mem_le_local_mtu 
+0x4d76 010528 istore 2 ,contw 
+0x4d77 010529 branch le_send_autolen 
+:      010531 le_send_att_find_information_request:
+0x4d78 010532 fetch 2 ,mem_le_search_handle_start 
+0x4d79 010533 store 2 ,mem_le_l2cap_response 
+0x4d7a 010534 fetch 2 ,mem_le_search_handle_end 
+0x4d7b 010535 istore 2 ,contw 
+0x4d7c 010536 branch le_send_autolen 
+:      010540 le_send_att_find_information_response:
+0x4d7d 010541 arg 2 ,timeup 
+0x4d7e 010542 force 1 ,pdata 
+0x4d7f 010543 store 1 ,mem_le_l2cap_response 
+0x4d80 010544 call le_init_attlist_search 
+:      010545 le_send_att_find_information_res_loop:
+0x4d81 010546 call le_att_handle_inrange 
+0x4d82 010547 branch le_send_att_find_information_res_end ,blank 
+0x4d83 010548 nbranch le_send_att_find_information_res_next ,positive 
+0x4d84 010549 disable user 
+0x4d85 010550 istore 2 ,contw 
+0x4d86 010551 ifetch 1 ,contr 
+0x4d87 010552 copy pdata ,loopcnt 
+0x4d88 010553 call memcpy_fast 
+0x4d89 010554 increase -1 ,timeup 
+0x4d8a 010555 branch le_send_att_find_information_res_end ,zero 
+:      010556 le_send_att_find_information_res_cont:
+0x4d8b 010557 ifetch 1 ,contr 
+0x4d8c 010558 iadd contr ,contr 
+0x4d8d 010559 branch le_send_att_find_information_res_loop 
+:      010560 le_send_att_find_information_res_next:
+0x4d8e 010561 ifetch 1 ,contr 
+0x4d8f 010562 iadd contr ,contr 
+0x4d90 010563 branch le_send_att_find_information_res_cont 
+:      010564 le_send_att_find_information_res_end:
+0x4d91 010565 branch le_send_att_error_response_notfound ,user 
+0x4d92 010566 branch le_send_autolen 
+:      010569 le_send_att_find_by_type_value_request:
+0x4d93 010570 fetch 2 ,mem_le_search_handle_start 
+0x4d94 010571 branch le_send_empty_le_data ,blank 
+0x4d95 010572 store 2 ,mem_le_l2cap_response 
+0x4d96 010573 fetch 2 ,mem_le_search_handle_end 
+0x4d97 010575 istore 2 ,contw 
+0x4d98 010576 fetch 2 ,mem_le_search_uuid 
+0x4d99 010578 istore 2 ,contw 
+0x4d9a 010579 fetch 2 ,mem_le_search_att_type 
+0x4d9b 010581 istore 2 ,contw 
+0x4d9c 010582 branch le_send_autolen 
+:      010585 le_start_end_handle_check_1:
+0x4d9d 010586 disable user 
+0x4d9e 010587 fetcht 2 ,mem_le_search_handle_start 
+0x4d9f 010588 fetch 2 ,mem_le_search_handle_end 
+0x4da0 010589 isub temp ,null 
+0x4da1 010590 nbranch le_start_end_handle_check_1_fail ,positive 
+0x4da2 010591 deposit temp 
+0x4da3 010592 rtnne 0 
+:      010593 le_start_end_handle_check_1_fail:
+0x4da4 010594 enable user 
+0x4da5 010595 jam att_err_invalid_handle ,mem_le_err_code 
+0x4da6 010596 branch le_send_att_error_response 
+:      010598 le_send_att_find_by_type_value_response:
+0x4da7 010599 call le_start_end_handle_check_1 
+0x4da8 010600 rtn user 
+0x4da9 010601 fetcht 2 ,mem_le_search_uuid 
+0x4daa 010602 setarg uuid_gatt_primary_service 
+0x4dab 010603 isub temp ,null 
+0x4dac 010604 branch le_send_att_find_by_type_value_res_primary ,zero 
+0x4dad 010605 setarg uuid_gatt_secondary_service 
+0x4dae 010606 isub temp ,null 
+0x4daf 010607 branch le_send_att_error_response_notfound ,zero 
+0x4db0 010608 setarg uuid_gatt_include 
+0x4db1 010609 isub temp ,null 
+0x4db2 010610 branch le_send_att_error_response_notfound ,zero 
+0x4db3 010611 setarg uuid_gatt_characteristic 
+0x4db4 010612 isub temp ,null 
+0x4db5 010613 branch le_send_att_error_response_notfound ,zero 
+0x4db6 010614 branch le_send_att_error_response_notfound 
+:      010616 le_send_att_find_by_type_value_res_primary:
+0x4db7 010617 jam le_find_by_type_val_res_not_found ,mem_le_search_res 
+0x4db8 010618 fetcht 2 ,mem_le_search_handle_start 
+0x4db9 010619 storet 2 ,mem_temp 
+0x4dba 010620 call le_att_get_handle_info 
+0x4dbb 010621 nbranch le_send_att_error_response_notfound ,blank 
+:      010622 le_send_att_find_primary_search_loop:
+0x4dbc 010623 fetcht 2 ,mem_temp 
+0x4dbd 010624 call le_att_get_handle_info 
+0x4dbe 010625 nbranch le_send_att_error_response_notfound2 ,blank 
+0x4dbf 010626 copy contr ,rega 
+0x4dc0 010627 fetch 1 ,mem_le_search_len 
+0x4dc1 010628 copy pdata ,loopcnt 
+0x4dc2 010629 fetcht 1 ,mem_le_search_att_type_length 
+0x4dc3 010630 isub temp ,null 
+0x4dc4 010631 nbranch le_send_att_find_primary_search_loop1 ,zero 
+0x4dc5 010632 arg mem_le_search_att_type ,regb 
+0x4dc6 010633 call string_compare 
+0x4dc7 010635 branch le_send_att_find_primary_search_end_start_handle_found ,zero 
+0x4dc8 010637 fetch 2 ,mem_le_cur_uuid 
+0x4dc9 010638 fetcht 2 ,mem_le_search_uuid 
+0x4dca 010639 isub temp ,null 
+0x4dcb 010640 branch le_send_att_find_primary_search_end_ending_handle_found ,zero 
+:      010641 le_send_att_find_primary_search_loop1:
+0x4dcc 010642 fetch 2 ,mem_temp 
+0x4dcd 010643 increase 1 ,pdata 
+0x4dce 010644 store 2 ,mem_temp 
+0x4dcf 010645 branch le_send_att_find_primary_search_loop 
+:      010647 le_send_att_error_response_notfound2:
+0x4dd0 010648 fetch 1 ,mem_le_search_res 
+0x4dd1 010649 beq le_find_by_type_val_res_found_starting_handle ,le_send_att_find_primary_search_end_ending_handle_found 
+0x4dd2 010650 branch le_send_att_error_response_notfound 
+:      010653 le_send_att_find_primary_search_end_start_handle_found:
+0x4dd3 010654 fetch 2 ,mem_le_cur_uuid 
+0x4dd4 010655 fetcht 2 ,mem_le_search_uuid 
+0x4dd5 010656 isub temp ,null 
+0x4dd6 010657 nbranch le_send_att_find_primary_search_loop1 ,zero 
+0x4dd7 010658 jam le_find_by_type_val_res_found_starting_handle ,mem_le_search_res 
+0x4dd8 010660 fetcht 2 ,mem_temp 
+0x4dd9 010661 storet 2 ,mem_le_cur_handle_start 
+0x4dda 010662 branch le_send_att_find_primary_search_loop1 
+:      010664 le_send_att_find_primary_search_end_ending_handle_found:
+0x4ddb 010665 fetch 1 ,mem_le_search_res 
+0x4ddc 010666 beq le_find_by_type_val_res_not_found ,le_send_att_find_primary_search_loop1 
+0x4ddd 010667 jam le_find_by_type_val_res_found_ending_handle ,mem_le_search_res 
+0x4dde 010668 fetcht 2 ,mem_temp 
+0x4ddf 010669 increase -1 ,temp 
+0x4de0 010670 storet 2 ,mem_le_cur_handle_end 
+:      010671 le_send_att_find_primary_search_end:
+0x4de1 010672 fetch 2 ,mem_le_cur_handle_start 
+0x4de2 010673 icopy rega 
+0x4de3 010674 fetch 2 ,mem_le_cur_handle_end 
+0x4de4 010675 icopy regb 
+0x4de5 010676 jam attop_find_by_type_value_response ,mem_le_l2cap 
+0x4de6 010677 deposit rega 
+0x4de7 010678 store 2 ,mem_le_l2cap_response 
+0x4de8 010679 deposit regb 
+0x4de9 010680 istore 2 ,contw 
+0x4dea 010681 force 9 ,temp 
+0x4deb 010682 branch le_send_packet 
+:      010685 le_send_att_read_by_type_request:
+0x4dec 010686 fetch 2 ,mem_le_search_handle_start 
+0x4ded 010688 istore 2 ,contw 
+0x4dee 010689 fetch 2 ,mem_le_search_handle_end 
+0x4def 010691 istore 2 ,contw 
+0x4df0 010692 fetch 2 ,mem_le_search_att_type 
+0x4df1 010693 istore 2 ,contw 
+0x4df2 010694 force 11 ,temp 
+0x4df3 010695 branch le_send_packet 
+:      010699 le_send_att_read_by_type_response:
+0x4df4 010700 fetcht 2 ,mem_le_search_handle_start 
+0x4df5 010701 storet 2 ,mem_temp 
+0x4df6 010702 call le_init_attlist_search 
+0x4df7 010703 call le_att_get_handle_ptr2 
+0x4df8 010704 increase -2 ,contr 
+0x4df9 010705 copy contr ,pdata 
+0x4dfa 010706 store 2 ,mem_le_cur_attlist_start_ptr 
+0x4dfb 010708 fetcht 2 ,mem_le_search_uuid 
+0x4dfc 010709 setarg uuid_gatt_characteristic 
+0x4dfd 010710 isub temp ,null 
+0x4dfe 010711 nbranch le_send_att_read_by_type_res_not_characteristic ,zero 
+0x4dff 010712 arg 2 ,timeup 
+0x4e00 010713 set1 mark_ext_patch ,mark 
+0x4e01 010714 bpatch patch26_5 ,mem_patch26 
+:      010715 le_send_att_read_by_type_response_loop:
+0x4e02 010716 call le_att_check_handle_end 
+0x4e03 010717 nbranch le_send_att_read_by_type_response_end ,positive 
+0x4e04 010718 fetcht 2 ,mem_temp 
+0x4e05 010719 call le_att_get_handle_info_from_ptr 
+0x4e06 010720 beq 1 ,le_send_att_read_by_type_response_end 
+0x4e07 010721 call le_att_same_uuid 
+0x4e08 010722 nbranch le_send_att_read_by_type_response_next_handle ,zero 
+0x4e09 010723 nbranch le_send_att_read_by_type_res_found_next ,user 
+0x4e0a 010724 disable user 
+0x4e0b 010726 call le_send_att_read_by_type_write_properties 
+0x4e0c 010727 call le_att_next_handle 
+0x4e0d 010728 call le_att_get_handle_info_from_ptr 
+0x4e0e 010729 call le_send_att_read_by_type_write_uuid 
+0x4e0f 010730 increase -1 ,timeup 
+0x4e10 010731 branch le_send_att_read_by_type_response_end ,zero 
+:      010732 le_send_att_read_by_type_response_next_handle:
+0x4e11 010733 call le_att_next_handle 
+0x4e12 010734 branch le_send_att_read_by_type_response_loop 
+:      010735 le_send_att_read_by_type_response_end:
+0x4e13 010736 branch le_send_att_error_response_notfound ,user 
+0x4e14 010737 branch le_send_auto_len_by_mem 
+:      010739 le_send_att_read_by_type_res_found_next:
+0x4e15 010740 call le_store_att_record 
+0x4e16 010741 call le_att_next_handle 
+0x4e17 010742 call le_att_get_handle_info_from_ptr 
+0x4e18 010743 fetch 1 ,mem_le_l2cap_response 
+0x4e19 010744 beq 21 ,le_send_att_read_by_type_response_end 
+0x4e1a 010745 fetch 1 ,mem_le_cur_uuid_lenth 
+0x4e1b 010746 increase 5 ,pdata 
+0x4e1c 010747 fetcht 1 ,mem_le_l2cap_response 
+0x4e1d 010748 isub temp ,null 
+0x4e1e 010749 nbranch le_send_att_read_by_type_response_end ,zero 
+0x4e1f 010751 call get_contw 
+0x4e20 010752 fetch 2 ,mem_temp 
+0x4e21 010753 increase -1 ,pdata 
+0x4e22 010754 istore 2 ,contw 
+0x4e23 010755 call le_write_att_record_common 
+0x4e24 010756 call le_send_att_read_by_type_write_uuid 
+0x4e25 010757 increase -1 ,timeup 
+0x4e26 010758 branch le_send_att_read_by_type_response_end ,zero 
+0x4e27 010759 branch le_send_att_read_by_type_response_next_handle 
+:      010760 le_send_att_read_by_type_write_properties:
+0x4e28 010761 fetch 2 ,mem_temp 
+0x4e29 010762 store 2 ,mem_le_l2cap_response + 1 
+0x4e2a 010764 fetch 1 ,mem_le_search_len 
+0x4e2b 010765 copy pdata ,loopcnt 
+0x4e2c 010766 call get_contr 
+0x4e2d 010767 call memcpy_fast 
+0x4e2e 010768 branch store_contw 
+:      010769 le_send_att_read_by_type_write_uuid:
+0x4e2f 010770 call get_contw 
+0x4e30 010771 fetch 2 ,mem_temp 
+0x4e31 010772 istore 2 ,contw 
+0x4e32 010773 call store_contw 
+0x4e33 010774 fetch 1 ,mem_le_cur_uuid_lenth 
+0x4e34 010775 copy pdata ,loopcnt 
+0x4e35 010776 increase 5 ,pdata 
+0x4e36 010777 store 1 ,mem_le_l2cap_response 
+0x4e37 010778 call get_contw 
+0x4e38 010779 call get_contr 
+0x4e39 010780 isub loopcnt ,contr 
+0x4e3a 010781 increase -1 ,contr 
+0x4e3b 010782 call memcpy_fast 
+0x4e3c 010783 branch store_contw 
+:      010787 le_send_att_read_by_type_res_not_characteristic:
+0x4e3d 010788 fetcht 2 ,mem_le_search_handle_start 
+0x4e3e 010789 storet 2 ,mem_temp 
+:      010790 le_send_att_read_by_type_res_not_char_loop:
+0x4e3f 010791 call le_att_check_handle_end 
+0x4e40 010792 nbranch le_send_att_error_response_notfound ,positive 
+0x4e41 010793 call le_att_get_handle_info_from_ptr 
+0x4e42 010794 beq 1 ,le_send_att_error_response_notfound 
+0x4e43 010795 call le_att_same_uuid 
+0x4e44 010796 nbranch le_send_att_read_by_type_res_not_char_next ,zero 
+:      010797 le_check_if_name_uuid:
+0x4e45 010798 fetch 1 ,mem_le_search_uuid_length 
+0x4e46 010799 bne 2 ,le_send_att_read_by_type_res_not_name 
+0x4e47 010800 fetch 2 ,mem_le_search_uuid 
+0x4e48 010801 arg uuid_chrctr_device_name ,temp 
+0x4e49 010802 isub temp ,null 
+0x4e4a 010803 nbranch le_send_att_read_by_type_res_not_name ,zero 
+0x4e4b 010804 fetch 1 ,mem_le_name_len 
+0x4e4c 010805 branch le_send_att_read_by_type_res_not_char_common 
+:      010806 le_send_att_read_by_type_res_not_name:
+0x4e4d 010807 fetch 1 ,mem_le_search_len 
+:      010808 le_send_att_read_by_type_res_not_char_common:
+0x4e4e 010809 copy pdata ,loopcnt 
+0x4e4f 010810 increase 2 ,pdata 
+0x4e50 010811 store 1 ,mem_le_l2cap_response 
+0x4e51 010812 fetch 2 ,mem_temp 
+0x4e52 010813 istore 2 ,contw 
+0x4e53 010814 call get_contr 
+0x4e54 010815 call memcpy_fast 
+0x4e55 010816 branch le_send_autolen 
+:      010817 le_send_att_read_by_type_res_not_char_next:
+0x4e56 010818 call le_att_next_handle 
+0x4e57 010819 branch le_send_att_read_by_type_res_not_char_loop 
+:      010822 le_send_att_read_request:
+0x4e58 010823 fetch 1 ,mem_le_temp 
+0x4e59 010825 increase -1 ,pdata 
+0x4e5a 010826 store 1 ,mem_le_temp 
+0x4e5b 010827 lshift pdata ,pdata 
+0x4e5c 010829 iadd contr ,contr 
+0x4e5d 010830 ifetcht 2 ,contr 
+0x4e5e 010831 storet 2 ,mem_le_l2cap_response 
+0x4e5f 010832 branch le_send_autolen 
+:      010834 le_send_att_read_response:
+0x4e60 010835 fetch 1 ,mem_le_flag 
+0x4e61 010836 bbit0 flag_ble_insufficient_authentication ,le_send_att_read_response_common 
+0x4e62 010837 fetch 2 ,mem_le_att_handle 
+0x4e63 010838 fetcht 2 ,mem_le_pairing_handle 
+0x4e64 010839 isub temp ,null 
+0x4e65 010840 branch le_send_att_read_response_error_insufficient_authentication ,zero 
+:      010841 le_send_att_read_response_common:
+0x4e66 010842 fetcht 2 ,mem_le_att_handle 
+0x4e67 010843 call le_att_get_handle_ptr 
+0x4e68 010844 branch le_send_att_error_response_notfound ,blank 
+0x4e69 010845 ifetch 1 ,contr 
+0x4e6a 010846 branch le_send_autolen ,blank 
+0x4e6b 010847 sub pdata ,22 ,null 
+0x4e6c 010848 branch le_send_att_read_response_less ,positive 
+0x4e6d 010849 force 22 ,pdata 
+:      010850 le_send_att_read_response_less:
+0x4e6e 010851 icopy loopcnt 
+0x4e6f 010852 call memcpy_fast 
+0x4e70 010853 branch le_send_autolen 
+:      010855 le_send_att_read_response_error_insufficient_authentication:
+0x4e71 010856 fetch 1 ,mem_le_pairing_mode 
+0x4e72 010857 branch le_send_att_read_response_common ,blank 
+0x4e73 010858 fetch 1 ,mem_le_state 
+0x4e74 010859 bbit1 lestate_encryption ,le_send_att_read_response_common 
+0x4e75 010860 jam att_err_insufficient_authentication ,mem_le_err_code 
+0x4e76 010861 branch le_send_att_error_response 
+:      010863 le_send_att_read_blob_request:
+0x4e77 010864 setarg 0x0003 
+0x4e78 010865 store 2 ,mem_le_l2cap_response 
+0x4e79 010866 setarg 0x0008 
+0x4e7a 010867 istore 2 ,contw 
+0x4e7b 010868 branch le_send_autolen 
+:      010870 le_send_att_read_blob_response:
+0x4e7c 010871 fetch 2 ,mem_le_att_offset 
+0x4e7d 010872 iforce rega 
+0x4e7e 010873 fetcht 2 ,mem_le_att_handle 
+0x4e7f 010874 call le_att_get_handle_ptr 
+0x4e80 010875 branch le_send_att_error_response_notfound ,blank 
+0x4e81 010876 ifetch 1 ,contr 
+0x4e82 010877 isub rega ,loopcnt 
+0x4e83 010878 nbranch le_send_att_error_response_notfound ,positive 
+0x4e84 010879 sub loopcnt ,22 ,null 
+0x4e85 010880 branch le_send_att_read_blob_response_less ,positive 
+0x4e86 010881 force 22 ,loopcnt 
+:      010882 le_send_att_read_blob_response_less:
+0x4e87 010883 deposit rega 
+0x4e88 010884 iadd contr ,contr 
+0x4e89 010885 call memcpy_fast 
+0x4e8a 010886 branch le_send_autolen 
+:      010888 le_send_att_read_multiple_request:
+0x4e8b 010889 setarg 0x0003 
+0x4e8c 010890 istore 2 ,contw 
+0x4e8d 010891 setarg 0x0007 
+0x4e8e 010892 istore 2 ,contw 
+0x4e8f 010893 setarg 0x0009 
+0x4e90 010894 istore 2 ,contw 
+0x4e91 010895 branch le_send_autolen 
+:      010897 le_send_att_read_multiple_response:
+0x4e92 010898 fetch 1 ,mem_le_temp 
+0x4e93 010899 icopy regc 
+0x4e94 010901 arg mem_le_rxbuf + 7 ,rega 
+0x4e95 010902 arg mem_le_l2cap_response ,regb 
+0x4e96 010903 arg 0 ,timeup 
+0x4e97 010904 disable user7 
+:      010906 le_send_att_read_multiple_response_loop:
+0x4e98 010907 copy rega ,contr 
+0x4e99 010908 ifetcht 2 ,contr 
+0x4e9a 010909 copy contr ,rega 
+0x4e9b 010910 call le_att_get_handle_ptr 
+0x4e9c 010911 branch le_send_att_read_multiple_response_end ,blank 
+0x4e9d 010912 ifetch 1 ,contr 
+0x4e9e 010913 icopy loopcnt 
+0x4e9f 010914 iadd timeup ,timeup 
+0x4ea0 010918 sub timeup ,24 ,null 
+0x4ea1 010919 nbranch le_send_att_read_multiple_response_end_1 ,positive 
+0x4ea2 010920 copy regb ,contw 
+:      010922 le_copy_att_value_loop_3:
+0x4ea3 010923 ifetch 1 ,contr 
+0x4ea4 010924 istore 1 ,contw 
+0x4ea5 010925 loop le_copy_att_value_loop_3 
+0x4ea6 010926 copy contw ,regb 
+0x4ea7 010927 enable user7 
+0x4ea8 010928 increase -1 ,regc 
+0x4ea9 010929 branch le_send_att_read_multiple_response_end ,zero 
+0x4eaa 010930 branch le_send_att_read_multiple_response_loop 
+:      010932 le_send_att_read_multiple_response_end:
+0x4eab 010933 nbranch le_send_att_read_multiple_response_fail ,user7 
+0x4eac 010934 disable user7 
+0x4ead 010935 copy timeup ,temp 
+0x4eae 010936 increase 5 ,temp 
+0x4eaf 010937 branch le_send_packet 
+:      010939 le_send_att_read_multiple_response_end_1:
+0x4eb0 010940 nbranch le_send_att_read_multiple_response_fail ,user7 
+0x4eb1 010941 disable user7 
+0x4eb2 010942 deposit timeup 
+0x4eb3 010943 isub loopcnt ,temp 
+0x4eb4 010944 increase 5 ,temp 
+0x4eb5 010945 branch le_send_packet 
+:      010947 le_send_att_read_multiple_response_fail:
+0x4eb6 010948 jam att_err_unsupported_group_type ,mem_le_err_code 
+0x4eb7 010949 branch le_send_att_error_response 
+:      010952 le_send_att_read_by_group_type_request:
+0x4eb8 010953 fetch 2 ,mem_le_att_handle 
+0x4eb9 010954 branch le_send_empty_le_data ,blank 
+0x4eba 010955 istore 2 ,contw 
+0x4ebb 010956 setarg 0xffff 
+0x4ebc 010957 istore 2 ,contw 
+0x4ebd 010958 setarg 0x2800 
+0x4ebe 010959 istore 2 ,contw 
+0x4ebf 010960 branch le_send_autolen 
+:      010966 le_send_att_read_by_group_type_response:
+0x4ec0 010967 arg 2 ,timeup 
+0x4ec1 010968 fetch 2 ,mem_le_search_handle_start 
+0x4ec2 010969 store 2 ,mem_temp 
+0x4ec3 010970 jam 0 ,mem_le_search_res 
+0x4ec4 010972 fetcht 2 ,mem_le_search_handle_start 
+0x4ec5 010973 storet 2 ,mem_temp 
+0x4ec6 010974 call le_init_attlist_search 
+0x4ec7 010975 call le_att_get_handle_ptr2 
+0x4ec8 010976 increase -2 ,contr 
+0x4ec9 010977 copy contr ,pdata 
+0x4eca 010978 store 2 ,mem_le_cur_attlist_start_ptr 
+0x4ecb 010979 set1 mark_ext_patch ,mark 
+0x4ecc 010980 bpatch patch26_6 ,mem_patch26 
+:      010981 le_send_att_read_by_group_type_response_loop:
+0x4ecd 010982 call le_att_check_handle_end 
+0x4ece 010983 nbranch le_send_att_read_by_group_type_end0 ,positive 
+0x4ecf 010984 fetcht 2 ,mem_temp 
+0x4ed0 010985 call le_att_get_handle_info_from_ptr 
+0x4ed1 010986 beq 1 ,le_send_att_read_by_group_type_end1 
+0x4ed2 010988 call le_att_same_type 
+0x4ed3 010989 nbranch le_send_att_read_by_group_type_next_handle ,zero 
+0x4ed4 010990 fetch 1 ,mem_le_search_res 
+0x4ed5 010991 beq 1 ,le_send_att_read_by_group_type_end1 
+0x4ed6 010992 nbranch le_send_att_read_by_group_type_store_write_record ,user 
+0x4ed7 010993 disable user 
+0x4ed8 010994 fetch 1 ,mem_le_search_len 
+0x4ed9 010995 increase 4 ,pdata 
+0x4eda 010996 store 1 ,mem_le_l2cap_response 
+0x4edb 010997 call store_contw 
+0x4edc 010998 branch le_send_att_read_by_group_type_store_record 
+:      010999 le_send_att_read_by_group_type_store_write_record:
+0x4edd 011000 fetch 1 ,mem_le_l2cap_response 
+0x4ede 011001 beq 20 ,le_send_att_read_by_group_type_end1 
+0x4edf 011002 fetch 1 ,mem_le_search_len 
+0x4ee0 011003 increase 4 ,pdata 
+0x4ee1 011004 fetcht 1 ,mem_le_l2cap_response 
+0x4ee2 011005 isub temp ,null 
+0x4ee3 011006 nbranch le_send_att_read_by_group_type_end1 ,zero 
+0x4ee4 011010 fetch 2 ,mem_temp 
+0x4ee5 011011 increase -1 ,pdata 
+0x4ee6 011012 store 2 ,mem_le_cur_handle_end 
+0x4ee7 011013 call le_write_att_record 
+:      011014 le_send_att_read_by_group_type_store_record:
+0x4ee8 011015 fetch 2 ,mem_temp 
+0x4ee9 011016 store 2 ,mem_le_cur_handle_start 
+0x4eea 011017 call le_store_att_record 
+0x4eeb 011018 increase -1 ,timeup 
+0x4eec 011019 branch le_send_att_read_by_group_type_last_find ,zero 
+:      011020 le_send_att_read_by_group_type_next_handle:
+0x4eed 011021 call le_att_next_handle 
+0x4eee 011022 branch le_send_att_read_by_group_type_response_loop 
+:      011023 le_send_att_read_by_group_type_last_find:
+0x4eef 011024 jam 1 ,mem_le_search_res 
+0x4ef0 011025 branch le_send_att_read_by_group_type_next_handle 
+:      011026 le_send_att_read_by_group_type_end0:
+0x4ef1 011027 fetch 2 ,mem_temp 
+0x4ef2 011028 store 2 ,mem_le_cur_handle_end 
+0x4ef3 011029 branch le_send_att_read_by_group_type_end_common 
+:      011030 le_send_att_read_by_group_type_end1:
+0x4ef4 011031 fetch 2 ,mem_temp 
+0x4ef5 011032 increase -1 ,pdata 
+0x4ef6 011033 store 2 ,mem_le_cur_handle_end 
+0x4ef7 011034 branch le_send_att_read_by_group_type_end_common 
+:      011035 le_send_att_read_by_group_type_end_common:
+0x4ef8 011036 branch le_send_att_error_response_notfound ,user 
+0x4ef9 011037 call le_write_att_record 
+0x4efa 011038 branch le_send_auto_len_by_mem 
+:      011041 le_att_next_handle:
+0x4efb 011042 fetcht 2 ,mem_temp 
+0x4efc 011043 increase 1 ,temp 
+0x4efd 011044 storet 2 ,mem_temp 
+0x4efe 011045 rtn 
+:      011047 le_att_check_handle_end:
+0x4eff 011048 fetcht 2 ,mem_temp 
+0x4f00 011049 fetch 2 ,mem_le_search_handle_end 
+0x4f01 011050 isub temp ,null 
+0x4f02 011051 rtn 
+:      011053 le_att_same_type:
+0x4f03 011054 fetcht 1 ,mem_le_search_att_type_length 
+0x4f04 011055 arg mem_le_search_att_type ,rega 
+:      011056 le_att_check_same_common:
+0x4f05 011057 fetch 1 ,mem_le_cur_uuid_lenth 
+0x4f06 011058 copy pdata ,loopcnt 
+0x4f07 011059 isub temp ,null 
+0x4f08 011060 nrtn zero 
+0x4f09 011061 arg mem_le_cur_uuid ,regb 
+0x4f0a 011062 branch string_compare 
+:      011064 le_att_same_uuid:
+0x4f0b 011065 fetcht 1 ,mem_le_search_uuid_length 
+0x4f0c 011066 arg mem_le_search_uuid ,rega 
+0x4f0d 011067 branch le_att_check_same_common 
+:      011070 le_store_att_record:
+0x4f0e 011071 fetch 1 ,mem_le_search_len 
+0x4f0f 011072 store 1 ,mem_tmp_buffer 
+0x4f10 011073 copy pdata ,loopcnt 
+0x4f11 011074 call get_contr 
+0x4f12 011075 branch memcpy_fast 
+:      011077 le_send_auto_len_by_mem:
+0x4f13 011078 call get_contw 
+0x4f14 011079 branch le_send_autolen 
+:      011081 le_write_att_record:
+0x4f15 011082 call get_contw 
+0x4f16 011083 fetch 2 ,mem_le_cur_handle_start 
+0x4f17 011084 istore 2 ,contw 
+0x4f18 011085 fetch 2 ,mem_le_cur_handle_end 
+0x4f19 011086 istore 2 ,contw 
+:      011087 le_write_att_record_common:
+0x4f1a 011088 fetch 1 ,mem_tmp_buffer 
+0x4f1b 011089 copy pdata ,loopcnt 
+0x4f1c 011090 call memcpy_fast 
+0x4f1d 011091 branch store_contw 
+:      011093 le_send_att_write_request:
+0x4f1e 011094 fetch 2 ,mem_le_notify_handle 
+0x4f1f 011095 store 2 ,mem_le_l2cap_response 
+0x4f20 011096 fetch 1 ,mem_le_handle_data_len 
+0x4f21 011097 copy pdata ,loopcnt 
+0x4f22 011098 arg mem_le_handle_data ,contr 
+0x4f23 011099 call memcpy_fast 
+0x4f24 011100 branch le_send_autolen 
+:      011103 le_send_att_write_response:
+0x4f25 011104 force 5 ,temp 
+0x4f26 011105 branch le_send_packet 
+:      011107 le_send_att_prepare_write_request:
+0x4f27 011108 force 6 ,temp 
+0x4f28 011109 branch le_send_packet 
+:      011111 le_send_att_continue:
+0x4f29 011112 fetch 1 ,mem_le_continue_type 
+0x4f2a 011113 beq le_continue_type_notification ,le_send_att_notify_continue 
+0x4f2b 011114 beq le_continue_type_prepare_write_response ,le_send_att_prepare_write_response_continue 
+0x4f2c 011115 jam le_continue_type_null ,mem_le_continue_type 
+0x4f2d 011116 rtn 
+:      011118 le_send_att_notify_continue:
+0x4f2e 011119 fetch 2 ,mem_cb_update_notify_continue 
+0x4f2f 011120 branch callback_func 
+:      011122 le_send_att_prepare_write_response_continue:
+0x4f30 011123 fetch 2 ,mem_prepare_write_len 
+0x4f31 011124 branch assert ,blank 
+0x4f32 011125 fetcht 2 ,mem_prepare_write_offest 
+0x4f33 011126 branch assert ,blank 
+0x4f34 011127 isub temp ,pdata 
+0x4f35 011128 arg 27 ,temp 
+0x4f36 011129 call not_greater_than 
+0x4f37 011130 copy pdata ,loopcnt 
+0x4f38 011135 arg mem_temp_prepare_write_request ,rega 
+0x4f39 011136 fetch 2 ,mem_prepare_write_offest 
+0x4f3a 011137 iadd rega ,rega 
+0x4f3b 011138 iadd loopcnt ,pdata 
+0x4f3c 011139 store 2 ,mem_prepare_write_offest 
+0x4f3d 011140 fetcht 2 ,mem_prepare_write_len 
+0x4f3e 011141 isub temp ,temp 
+0x4f3f 011142 ncall le_send_att_insert_continue ,zero 
+0x4f40 011143 jam le_continue_type_prepare_write_response ,mem_le_continue_type 
+0x4f41 011144 arg mem_le_txpayload ,contw 
+0x4f42 011145 copy rega ,contr 
+0x4f43 011146 call memcpy_fast 
+0x4f44 011147 arg 1 ,type 
+0x4f45 011148 branch le_send_not_fill_l2cap_len 
+:      011151 le_send_att_prepare_write_response:
+0x4f46 011152 fetch 2 ,mem_prepare_write_len 
+0x4f47 011153 branch assert ,blank 
+0x4f48 011154 add pdata ,5 ,temp 
+0x4f49 011155 storet 2 ,mem_le_txpayload 
+0x4f4a 011156 arg 18 ,temp 
+0x4f4b 011157 call not_greater_than 
+0x4f4c 011158 copy pdata ,loopcnt 
+0x4f4d 011159 store 2 ,mem_prepare_write_offest 
+0x4f4e 011162 fetcht 2 ,mem_prepare_write_len 
+0x4f4f 011163 isub temp ,temp 
+0x4f50 011164 ncall le_send_att_insert_continue ,zero 
+0x4f51 011165 jam le_continue_type_prepare_write_response ,mem_le_continue_type 
+0x4f52 011166 arg 0x02 ,type 
+0x4f53 011170 fetch 2 ,mem_prepare_handle 
+0x4f54 011171 store 2 ,mem_le_l2cap + 1 
+0x4f55 011172 fetch 2 ,mem_le_prepare_write_req_offset 
+0x4f56 011173 istore 2 ,contw 
+0x4f57 011178 arg mem_temp_prepare_write_request ,contr 
+0x4f58 011179 call memcpy_fast 
+:      011180 le_send_not_fill_l2cap_len:
+0x4f59 011181 setarg mem_le_txpayload 
+0x4f5a 011182 isub contw ,pdata 
+0x4f5b 011183 sub pdata ,0 ,temp 
+0x4f5c 011184 storet 1 ,mem_le_txlen 
+0x4f5d 011185 branch le_send_non_l2cap 
+:      011188 le_send_att_insert_continue:
+0x4f5e 011189 fetch 3 ,mem_le_xtype_fifo 
+0x4f5f 011190 nbranch le_send_att_insert_cont_next ,blank 
+0x4f60 011191 jam attop_continue ,mem_le_xtype_fifo + 2 
+0x4f61 011192 rtn 
+:      011193 le_send_att_insert_cont_next:
+0x4f62 011194 call le_xtype_fifo_is_near_full 
+0x4f63 011195 nbranch assert ,blank 
+0x4f64 011196 jam attop_continue ,mem_le_xtype_fifo + 1 
+0x4f65 011197 rtn 
+:      011201 le_send_att_execute_write_request:
+0x4f66 011202 force 6 ,temp 
+0x4f67 011203 branch le_send_packet 
+:      011205 le_send_att_execute_write_response:
+0x4f68 011206 force 5 ,temp 
+0x4f69 011207 branch le_send_packet 
+:      011209 le_att_check_notification_enable:
+0x4f6a 011210 set1 mark_ext_patch ,mark 
+0x4f6b 011211 bpatch patch26_7 ,mem_patch26 
+0x4f6c 011212 increase 1 ,temp 
+0x4f6d 011213 call le_att_get_handle_ptr 
+0x4f6e 011214 increase -2 ,contr 
+0x4f6f 011215 ifetch 2 ,contr 
+0x4f70 011216 arg client_charactertic_configuration ,temp 
+0x4f71 011217 isub temp ,null 
+0x4f72 011218 nrtn zero 
+0x4f73 011219 increase 1 ,contr 
+0x4f74 011220 copy contr ,rega 
+0x4f75 011221 ifetch 1 ,contr 
+0x4f76 011222 rtn 
+:      011224 le_send_att_handle_value_notification:
+0x4f77 011225 fetch 2 ,mem_cb_update_notify_value 
+0x4f78 011226 branch callback_func 
+:      011228 le_send_att_handle_value_indication:
+0x4f79 011229 force 6 ,temp 
+0x4f7a 011230 branch le_send_packet 
+:      011232 le_send_att_handle_value_confirmation:
+0x4f7b 011233 force 6 ,temp 
+0x4f7c 011234 branch le_send_packet 
+:      011236 le_send_att_write_command:
+0x4f7d 011237 force 6 ,temp 
+0x4f7e 011238 branch le_send_packet 
+:      011240 le_send_att_signed_write_command:
+0x4f7f 011241 force 6 ,temp 
+0x4f80 011242 branch le_send_packet 
+:      011245 le_send_autolen:
+0x4f81 011246 set1 mark_ext_patch ,mark 
+0x4f82 011247 bpatch patch27_0 ,mem_patch27 
+0x4f83 011248 setarg mem_le_txpayload 
+0x4f84 011249 isub contw ,pdata 
+0x4f85 011250 sub pdata ,0 ,temp 
+0x4f86 011251 branch le_send_packet 
+:      011254 le_send_empty:
+0x4f87 011255 force 0 ,temp 
+0x4f88 011256 force 1 ,type 
+:      011258 le_send_packet:
+0x4f89 011259 set1 mark_ext_patch ,mark 
+0x4f8a 011260 bpatch patch27_1 ,mem_patch27 
+0x4f8b 011261 storet 1 ,mem_le_txlen 
+0x4f8c 011262 compare 2 ,type ,3 
+0x4f8d 011263 nbranch le_send_non_l2cap ,true 
+0x4f8e 011264 add temp ,-4 ,pdata 
+0x4f8f 011265 store 2 ,mem_le_txpayload 
+:      011267 le_send_non_l2cap:
+0x4f90 011268 fetcht 1 ,mem_le_arq 
+0x4f91 011269 call le_xtype_fifo_is_empty 
+:      011270 le_send_non_l2cap1:
+0x4f92 011271 nsetflag blank ,md ,temp 
+:      011272 le_send_non_l2cap2:
+0x4f93 011273 set1 wak ,temp 
+0x4f94 011274 and temp ,0xfc ,pdata 
+0x4f95 011275 ior type ,pdata 
+0x4f96 011276 store 1 ,mem_le_arq 
+0x4f97 011277 and_into 0x1f ,pdata 
+0x4f98 011278 store 1 ,mem_le_txheader 
+0x4f99 011279 set1 mark_ext_patch ,mark 
+0x4f9a 011280 bpatch patch27_2 ,mem_patch27 
+0x4f9b 011281 fetch 1 ,mem_le_txheader 
+0x4f9c 011282 compare 1 ,type ,3 
+0x4f9d 011283 nbranch le_send_no_txlen ,true 
+0x4f9e 011284 fetch 1 ,mem_le_txlen 
+0x4f9f 011285 rtn blank 
+:      011286 le_send_no_txlen:
+0x4fa0 011287 fetch 7 ,mem_le_txheader + 1 
+0x4fa1 011288 fetch 1 ,mem_le_state 
+0x4fa2 011289 rtnbit0 lestate_encryption 
+0x4fa3 011290 call load_sk 
+0x4fa4 011291 branch le_encrypt 
+:      011293 le_parse:
+0x4fa5 011294 set1 mark_ext_patch ,mark 
+0x4fa6 011295 bpatch patch27_3 ,mem_patch27 
+0x4fa7 011296 call le_xtype_fifo_is_full 
+0x4fa8 011297 nbranch assert ,blank 
+0x4fa9 011298 nrtn blank 
+0x4faa 011299 fetch 1 ,mem_le_rxbuf + 1 
+0x4fab 011300 rtn blank 
+0x4fac 011301 fetch 1 ,mem_le_rxbuf 
+0x4fad 011302 compare 1 ,pdata ,3 
+0x4fae 011303 branch le_parse_continue ,true 
+0x4faf 011304 fetch 7 ,mem_le_rxbuf + 1 
+0x4fb0 011305 fetch 1 ,mem_le_rxbuf 
+0x4fb1 011306 compare 2 ,pdata ,3 
+0x4fb2 011307 branch le_parse_l2cap ,true 
+:      011308 le_parse0:
+0x4fb3 011309 fetch 1 ,mem_le_rxbuf + 2 
+0x4fb4 011310 store 1 ,mem_le_rx_ll_opcode 
+0x4fb5 011311 copy pdata ,regc 
+0x4fb6 011312 set1 mark_ext_patch ,mark 
+0x4fb7 011313 bpatch patch27_4 ,mem_patch27 
+0x4fb8 011314 copy regc ,pdata 
+0x4fb9 011315 beq ll_connection_update_req ,le_parse_connection_update_req 
+0x4fba 011316 beq ll_channel_map_req ,le_parse_channel_map_req 
+0x4fbb 011317 beq ll_terminate_ind ,le_parse_terminate_ind 
+0x4fbc 011318 beq ll_enc_req ,le_parse_enc_req 
+0x4fbd 011319 beq ll_enc_rsp ,le_parse_enc_rsp 
+0x4fbe 011320 beq ll_start_enc_req ,le_parse_start_enc_req 
+0x4fbf 011321 beq ll_start_enc_rsp ,le_parse_start_enc_rsp 
+0x4fc0 011322 beq ll_unknown_rsp ,le_parse_unknown_rsp 
+0x4fc1 011323 beq ll_feature_req ,le_parse_feature_req 
+0x4fc2 011324 beq ll_feature_rsp ,le_parse_feature_rsp 
+0x4fc3 011325 beq ll_pause_enc_req ,le_parse_pause_enc_req 
+0x4fc4 011326 beq ll_pause_enc_rsp ,le_parse_pause_enc_rsp 
+0x4fc5 011327 beq ll_version_ind ,le_parse_version_ind 
+0x4fc6 011328 beq ll_reject_ind ,le_parse_reject_ind 
+0x4fc7 011329 beq ll_ping_req ,le_parse_ping_req 
+0x4fc8 011330 store 1 ,mem_le_ll_cur_opcode 
+0x4fc9 011331 jam xt_ll_unknown_rsp ,mem_fifo_temp 
+0x4fca 011332 branch le_xtype_fifo_in 
+:      011334 le_parse_l2cap:
+0x4fcb 011335 fetch 1 ,mem_le_rxbuf + 1 
+0x4fcc 011336 and pdata ,0x1f ,pdata 
+0x4fcd 011337 rtn blank 
+0x4fce 011338 fetch 2 ,mem_le_rxbuf + 2 
+0x4fcf 011339 store 2 ,mem_le_l2cap_pdu_length 
+0x4fd0 011340 fetch 2 ,mem_le_rxbuf + 4 
+0x4fd1 011341 beq le_l2cap_cid_att ,le_parse_att 
+0x4fd2 011342 beq le_l2cap_cid_smp ,le_parse_smp 
+0x4fd3 011343 rtn 
+:      011345 le_parse_continue_att:
+0x4fd4 011346 jam le_continue_flag_rx ,mem_le_continue_flag 
+0x4fd5 011347 fetch 1 ,mem_le_att_opcode 
+0x4fd6 011348 beq attop_write_request ,le_parse_l2cap_continue_write_request 
+0x4fd7 011349 beq attop_prepare_write_request ,le_parse_l2cap_continue_prepare_write_request 
+0x4fd8 011350 beq attop_write_command ,le_parse_l2cap_continue_write_command 
+0x4fd9 011351 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4fda 011352 rtn 
+:      011355 le_parse_l2cap_continue_common:
+0x4fdb 011356 fetch 1 ,mem_le_rxbuf + 1 
+0x4fdc 011357 icopy regb 
+0x4fdd 011358 arg mem_le_rxbuf + 2 ,rega 
+0x4fde 011359 call le_writeatt_cb 
+0x4fdf 011361 fetch 1 ,mem_le_rxbuf + 1 
+0x4fe0 011362 fetcht 2 ,mem_le_buff_len 
+0x4fe1 011363 iadd temp ,pdata 
+0x4fe2 011365 store 2 ,mem_le_buff_len 
+0x4fe3 011366 fetcht 2 ,mem_le_buff_len_all 
+0x4fe4 011367 isub temp ,null 
+0x4fe5 011368 rtn 
+:      011370 le_parse_l2cap_continue_write_command:
+0x4fe6 011371 call le_parse_l2cap_continue_common 
+0x4fe7 011372 nrtn zero 
+0x4fe8 011373 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4fe9 011374 rtn 
+:      011376 le_parse_l2cap_continue_write_request:
+0x4fea 011377 call le_parse_l2cap_continue_common 
+0x4feb 011378 nrtn zero 
+0x4fec 011379 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4fed 011380 branch le_parse_att_write_request_end 
+:      011382 le_parse_l2cap_continue_prepare_write_request:
+0x4fee 011383 fetcht 2 ,mem_prepare_write_len 
+0x4fef 011384 fetch 1 ,mem_le_rxbuf + 1 
+0x4ff0 011385 icopy loopcnt 
+0x4ff1 011386 iadd temp ,pdata 
+0x4ff2 011387 store 2 ,mem_prepare_write_len 
+0x4ff3 011389 arg mem_temp_prepare_write_request ,pdata 
+0x4ff4 011390 iadd temp ,contw 
+0x4ff5 011391 arg mem_le_rxbuf + 2 ,contr 
+0x4ff6 011392 call memcpy_fast 
+0x4ff7 011394 call le_parse_l2cap_continue_common 
+0x4ff8 011395 nrtn zero 
+0x4ff9 011396 jam le_continue_flag_null ,mem_le_continue_flag 
+0x4ffa 011397 branch le_parse_att_prepare_write_request_end 
+:      011403 le_parse_smp:
+0x4ffb 011404 set1 mark_ext_patch ,mark 
+0x4ffc 011405 bpatch patch27_5 ,mem_patch27 
+0x4ffd 011406 ifetch 1 ,contr 
+0x4ffe 011407 beq smp_pairing_request ,le_parse_smp_pairing_request 
+0x4fff 011408 beq smp_pairing_response ,le_parse_smp_pairing_response 
+0x5000 011409 beq smp_pairing_confirm ,le_parse_smp_pairing_confirm 
+0x5001 011410 beq smp_pairing_random ,le_parse_smp_pairing_random 
+0x5002 011411 beq smp_pairing_failed ,le_parse_smp_pairing_failed 
+0x5003 011412 beq smp_encryption_information ,le_parse_smp_encryption_information 
+0x5004 011413 beq smp_master_identification ,le_parse_smp_master_identification 
+0x5005 011414 beq smp_identity_information ,le_parse_smp_identity_information 
+0x5006 011415 beq smp_identity_address_information ,le_parse_smp_identity_address_information 
+0x5007 011416 beq smp_signing_information ,le_parse_smp_signing_information 
+0x5008 011417 beq smp_security_request ,le_parse_smp_security_request 
+0x5009 011418 beq smp_pairing_public_key ,le_parse_smp_public_key 
+0x500a 011419 beq smp_pairing_dhkey_check ,le_parse_smp_dhkey_check 
+0x500b 011420 jam xt_smp_pairing_failed ,mem_fifo_temp 
+0x500c 011421 branch le_xtype_fifo_in 
+:      011423 le_parse_att:
+0x500d 011424 set1 mark_ext_patch ,mark 
+0x500e 011425 bpatch patch27_6 ,mem_patch27 
+0x500f 011426 ifetch 3 ,contr 
+0x5010 011427 store 3 ,mem_le_att_opcode 
+0x5011 011429 beq attop_exchange_mtu_request ,le_parse_att_exchange_mtu_request 
+0x5012 011430 beq attop_exchange_mtu_response ,le_parse_att_exchange_mtu_response 
+0x5013 011431 beq attop_find_information_request ,le_parse_att_find_information_request 
+0x5014 011433 beq attop_find_by_type_value_request ,le_parse_att_find_by_type_value_request 
+0x5015 011435 beq attop_read_by_type_request ,le_parse_att_read_by_type_request 
+0x5016 011437 beq attop_read_request ,le_parse_att_read_request 
+0x5017 011439 beq attop_read_blob_request ,le_parse_att_read_blob_request 
+0x5018 011441 beq attop_read_multiple_request ,le_parse_att_read_multiple_request 
+0x5019 011443 beq attop_read_by_group_type_request ,le_parse_att_read_by_group_type_request 
+0x501a 011445 beq attop_write_request ,le_parse_att_write_request 
+0x501b 011447 beq attop_prepare_write_request ,le_parse_att_prepare_write_request 
+0x501c 011449 beq attop_execute_write_request ,le_parse_att_execute_write_request 
+0x501d 011454 beq attop_write_command ,le_parse_att_write_command 
+0x501e 011456 rtn 
+:      011459 le_parse_connection_update_req:
+0x501f 011460 ifetch 9 ,contr 
+0x5020 011461 store 9 ,mem_le_new_param 
+0x5021 011462 ifetch 2 ,contr 
+0x5022 011463 store 2 ,mem_le_instant 
+0x5023 011464 fetch 1 ,mem_le_state 
+0x5024 011465 set1 lestate_update_param ,pdata 
+0x5025 011466 store 1 ,mem_le_state 
+0x5026 011467 fetch 1 ,mem_device_option 
+0x5027 011468 rtnne dvc_op_shutter 
+0x5028 011469 jam 0 ,mem_lpm_mode 
+0x5029 011470 jam 30 ,mem_shutter_conn_update_timer 
+0x502a 011471 rtn 
+:      011473 le_parse_channel_map_req:
+0x502b 011474 ifetch 5 ,contr 
+0x502c 011475 store 5 ,mem_le_new_map 
+0x502d 011476 ifetch 2 ,contr 
+0x502e 011477 store 2 ,mem_le_instant 
+0x502f 011478 fetch 1 ,mem_le_state 
+0x5030 011479 set1 lestate_update_map ,pdata 
+0x5031 011480 store 1 ,mem_le_state 
+0x5032 011481 rtn 
+:      011483 le_parse_terminate_ind:
+0x5033 011484 fetch 1 ,mem_device_option 
+0x5034 011485 bne dvc_op_shutter ,le_parse_terminate_ind_common 
+0x5035 011486 jam 1 ,mem_shutter_key_data_flag_1 
+:      011487 le_parse_terminate_ind_common:
+0x5036 011488 setarg 20 
+0x5037 011489 store 2 ,mem_le_superto 
+0x5038 011490 rtn 
+:      011492 le_parse_enc_req:
+0x5039 011493 ifetch 8 ,contr 
+0x503a 011494 store 8 ,mem_le_rand 
+0x503b 011495 ifetch 2 ,contr 
+0x503c 011496 store 2 ,mem_le_ediv 
+0x503d 011497 ifetch 8 ,contr 
+0x503e 011498 store 8 ,mem_le_skdm 
+0x503f 011499 ifetch 4 ,contr 
+0x5040 011500 store 4 ,mem_le_ivm 
+0x5041 011501 jam xt_ll_enc_rsp ,mem_fifo_temp 
+0x5042 011502 call le_xtype_fifo_in 
+0x5043 011503 jam flag_le_enc_start ,mem_le_enc_state 
+0x5044 011504 fetch 1 ,mem_le_pairing_state 
+0x5045 011505 rtneq flag_le_pairing_after_auth 
+0x5046 011506 fetch 1 ,mem_device_option 
+0x5047 011507 beq dvc_op_shutter ,load_device_list_mode_4_shutter 
+0x5048 011508 rtnne dvc_op_module 
+0x5049 011509 branch load_device_list_mode_4 
+:      011511 le_parse_enc_rsp:
+0x504a 011512 ifetch 8 ,contr 
+0x504b 011513 store 8 ,mem_le_skds 
+0x504c 011514 ifetch 4 ,contr 
+0x504d 011515 store 4 ,mem_le_ivs 
+0x504e 011516 branch generate_sk 
+:      011518 le_parse_start_enc_req:
+0x504f 011519 fetch 1 ,mem_le_state 
+0x5050 011520 set1 lestate_encryption ,pdata 
+0x5051 011521 store 1 ,mem_le_state 
+0x5052 011522 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+0x5053 011523 branch le_xtype_fifo_in 
+:      011525 le_parse_start_enc_rsp:
+0x5054 011526 rtn master 
+0x5055 011527 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+0x5056 011528 call le_xtype_fifo_in 
+0x5057 011529 jam bt_evt_le_start_enc ,mem_fifo_temp 
+0x5058 011530 branch ui_ipc_send_event 
+:      011532 le_parse_unknown_rsp:
+0x5059 011533 rtn 
+:      011535 le_parse_feature_req:
+0x505a 011536 jam xt_ll_feature_rsp ,mem_fifo_temp 
+0x505b 011537 branch le_xtype_fifo_in 
+:      011539 le_parse_feature_rsp:
+0x505c 011540 rtn 
+:      011542 le_parse_pause_enc_req:
+0x505d 011543 jam flag_le_enc_pause ,mem_le_enc_state 
+0x505e 011544 jam xt_ll_pause_enc_rsp ,mem_fifo_temp 
+0x505f 011545 call le_xtype_fifo_in 
+0x5060 011546 jam bt_evt_le_pause_enc ,mem_fifo_temp 
+0x5061 011547 branch ui_ipc_send_event 
+:      011550 le_parse_pause_enc_rsp:
+0x5062 011551 rtn 
+:      011553 le_parse_ping_req:
+0x5063 011554 jam xt_ll_ping_rsp ,mem_fifo_temp 
+0x5064 011555 branch le_xtype_fifo_in 
+:      011557 le_parse_version_ind:
+0x5065 011558 rtn master 
+0x5066 011559 jam xt_ll_version_ind ,mem_fifo_temp 
+0x5067 011560 branch le_xtype_fifo_in 
+:      011562 le_parse_reject_ind:
+0x5068 011563 rtn 
+:      011566 le_parse_smp_pairing_request:
+0x5069 011567 store 1 ,mem_le_preq 
+0x506a 011568 ifetch 6 ,contr 
+0x506b 011569 istore 6 ,contw 
+0x506c 011570 jam xt_smp_pairing_response ,mem_fifo_temp 
+0x506d 011571 call le_xtype_fifo_in 
+0x506e 011572 fetch 1 ,mem_device_option 
+0x506f 011573 beq dvc_op_shutter ,le_parse_smp_pairing_request_shutter 
+0x5070 011574 call le_check_master_support_secure_connect 
+0x5071 011575 jam flag_le_pairing_start ,mem_le_pairing_state 
+0x5072 011576 fetch 1 ,mem_le_preq_iocap 
+0x5073 011577 beq flag_iocap_displayonly ,le_set_tk_0 
+0x5074 011578 beq flag_iocap_displayyesno ,le_set_tk_0 
+0x5075 011579 beq flag_iocap_noinputnooutput ,le_set_tk_0 
+0x5076 011580 fetch 1 ,mem_le_pairing_mode 
+0x5077 011581 beq le_pairing_mode_lagacy_passkey ,le_genernate_tk 
+:      011582 le_set_tk_0:
+0x5078 011583 arg 0 ,pdata 
+0x5079 011584 store 4 ,mem_le_tk 
+0x507a 011585 rtn 
+:      011586 le_parse_smp_pairing_request_shutter:
+0x507b 011587 jam 1 ,mem_shutter_key_data_flag 
+0x507c 011588 rtn 
+:      011590 le_genernate_tk:
+0x507d 011591 arg mem_le_tk ,rega 
+0x507e 011592 copy rega ,contw 
+0x507f 011593 arg 3 ,loopcnt 
+0x5080 011594 call generate_random_loop 
+0x5081 011595 fetch 2 ,mem_le_tk + 2 
+0x5082 011596 and_into 0x7 ,pdata 
+0x5083 011597 store 2 ,mem_le_tk + 2 
+0x5084 011598 jam bt_evt_le_tk_generate ,mem_fifo_temp 
+0x5085 011599 branch ui_ipc_send_event 
+:      011601 le_check_master_support_secure_connect:
+0x5086 011602 fetch 1 ,mem_le_preq_auth 
+0x5087 011603 rtnbit1 le_auth_secure_connection_pairing_bit 
+0x5088 011604 fetch 1 ,mem_le_pairing_mode 
+0x5089 011605 rtnbit0 le_pairing_mode_secure_connect_bit 
+0x508a 011606 branch app_ble_disconnect 
+:      011609 le_parse_smp_pairing_response:
+0x508b 011610 store 1 ,mem_le_pres 
+0x508c 011611 ifetch 6 ,contr 
+0x508d 011612 istore 6 ,contw 
+0x508e 011613 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x508f 011614 branch le_xtype_fifo_in 
+:      011616 le_parse_smp_pairing_confirm:
+0x5090 011617 copy contr ,rega 
+0x5091 011618 fetch 1 ,mem_le_pairing_mode 
+0x5092 011619 beq le_pairing_mode_secure_connect_passkey ,le_parse_smp_pairing_confirm_secure_passkey 
+0x5093 011620 copy rega ,contr 
+0x5094 011621 arg mem_le_rconfirm ,contw 
+0x5095 011622 call memcpy16 
+0x5096 011623 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x5097 011624 branch le_xtype_fifo_in ,master 
+0x5098 011625 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x5099 011626 branch le_xtype_fifo_in 
+:      011627 le_parse_smp_pairing_confirm_secure_passkey:
+0x509a 011628 copy rega ,contr 
+0x509b 011629 arg mem_le_rconfirm ,contw 
+0x509c 011630 call memcpy16 
+0x509d 011631 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x509e 011632 jam le_sc_stat_passkey_wait_confirm ,mem_le_secure_connect_state 
+0x509f 011633 rtn 
+:      011635 le_parse_smp_pairing_random:
+0x50a0 011636 copy contr ,rega 
+0x50a1 011637 fetch 1 ,mem_le_secure_connect_enable 
+0x50a2 011638 beq 1 ,le_parse_smp_pairing_random_sc 
+0x50a3 011639 copy rega ,contr 
+0x50a4 011640 call authenticate_rconfirm 
+0x50a5 011641 branch le_parse_smp_pairing_random_success ,zero 
+:      011642 le_pairing_failed:
+0x50a6 011643 jam xt_smp_pairing_failed ,mem_fifo_temp 
+0x50a7 011644 call le_xtype_fifo_in 
+:      011645 le_parse_smp_pairing_failed:
+0x50a8 011646 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x50a9 011647 jam bt_evt_le_pairing_fail ,mem_fifo_temp 
+0x50aa 011648 branch ui_ipc_send_event 
+:      011650 le_parse_smp_pairing_random_sc:
+0x50ab 011651 arg mem_le_mrand ,contw 
+0x50ac 011652 copy rega ,contr 
+0x50ad 011653 call memcpy16 
+0x50ae 011654 fetch 1 ,mem_le_pairing_mode 
+0x50af 011655 beq le_pairing_mode_secure_connect_passkey ,le_parse_smp_pairing_random_sc_passkey 
+0x50b0 011656 call function_g2 
+0x50b1 011659 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x50b2 011660 call le_xtype_fifo_in 
+0x50b3 011661 fetch 1 ,mem_le_pairing_mode 
+0x50b4 011662 beq le_pairing_mode_secure_connect_numeric ,module_hci_event_le_gkey 
+0x50b5 011663 rtn 
+:      011665 le_parse_smp_pairing_random_sc_passkey:
+0x50b6 011666 call function_f4_ca 
+0x50b7 011667 arg mem_aes_cmac_temp ,contw 
+0x50b8 011668 call load_inverse_result 
+0x50b9 011669 arg mem_aes_cmac_temp ,rega 
+0x50ba 011670 arg mem_le_rconfirm ,regb 
+0x50bb 011671 arg 16 ,loopcnt 
+0x50bc 011672 call string_compare 
+0x50bd 011673 nbranch le_dhkey_check_fail ,zero 
+0x50be 011674 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x50bf 011675 branch le_xtype_fifo_in 
+:      011677 le_parse_smp_pairing_random_success:
+0x50c0 011678 call generate_stk 
+0x50c1 011679 jam bt_evt_le_pairing_success ,mem_fifo_temp 
+0x50c2 011680 call ui_ipc_send_event 
+0x50c3 011681 jam 1 ,mem_ltk_exists 
+0x50c4 011682 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+0x50c5 011683 jam xt_ll_enc_req ,mem_fifo_temp 
+0x50c6 011684 branch le_xtype_fifo_in ,master 
+0x50c7 011685 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x50c8 011686 branch le_xtype_fifo_in 
+:      011690 le_parse_smp_public_key:
+0x50c9 011691 fetch 1 ,mem_le_rxbuf + 1 
+0x50ca 011692 increase -5 ,pdata 
+0x50cb 011693 store 1 ,mem_le_public_length 
+0x50cc 011694 copy pdata ,loopcnt 
+0x50cd 011695 arg mem_le_pubkey_remote_x_256 ,contw 
+0x50ce 011696 increase 5 ,contr 
+0x50cf 011697 branch memcpy_fast 
+:      011699 le_parse_smp_dhkey_check:
+0x50d0 011700 arg mem_sp_confirm_remote ,contw 
+0x50d1 011701 call memcpy16 
+0x50d2 011702 jam le_sc_stat_receive_dhkey ,mem_le_secure_connect_state 
+0x50d3 011703 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x50d4 011704 rtn 
+:      011705 le_parse_smp_encryption_information:
+0x50d5 011706 arg mem_le_peer_ltk ,contw 
+0x50d6 011707 branch memcpy16 
+:      011709 le_parse_smp_master_identification:
+0x50d7 011710 rtn 
+:      011712 le_parse_smp_identity_information:
+0x50d8 011713 arg mem_le_irk ,contw 
+0x50d9 011714 call memcpy16 
+0x50da 011715 fetch 1 ,mem_le_conn_peer_addr_type 
+0x50db 011716 rtneq master_public_addr 
+0x50dc 011717 fetch 1 ,mem_le_plap + 5 
+0x50dd 011718 compare 0xc0 ,pdata ,0xc0 
+0x50de 011719 rtn true 
+0x50df 011720 branch app_ble_store_reconn_info 
+:      011722 le_parse_smp_identity_address_information:
+0x50e0 011723 jam flag_le_enc_end ,mem_le_enc_state 
+0x50e1 011724 jam flag_le_pairing_end ,mem_le_pairing_state 
+0x50e2 011725 rtn 
+:      011727 le_parse_smp_signing_information:
+0x50e3 011728 rtn 
+:      011730 le_parse_smp_security_request:
+0x50e4 011731 rtn 
+:      011734 le_parse_att_exchange_mtu_response:
+0x50e5 011735 fetch 2 ,mem_le_rxbuf + 7 
+0x50e6 011736 store 2 ,mem_le_remote_mtu 
+0x50e7 011737 rtn 
+:      011739 le_parse_att_exchange_mtu_request:
+0x50e8 011740 call le_parse_att_exchange_mtu_response 
+0x50e9 011741 jam attop_exchange_mtu_response ,mem_fifo_temp 
+0x50ea 011742 branch le_xtype_fifo_in 
+:      011744 le_parse_att_find_information_request:
+0x50eb 011745 call le_get_search_handle_start_end_common 
+0x50ec 011746 jam attop_find_information_response ,mem_fifo_temp 
+0x50ed 011747 branch le_xtype_fifo_in 
+:      011751 le_parse_att_find_by_type_value_request:
+0x50ee 011752 call le_get_search_handle_start_end_common 
+0x50ef 011753 ifetch 2 ,contr 
+0x50f0 011754 store 2 ,mem_le_search_uuid 
+0x50f1 011755 call store_contr 
+0x50f2 011756 arg mem_le_search_att_type_length ,contw 
+0x50f3 011757 fetch 2 ,mem_le_l2cap_pdu_length 
+0x50f4 011758 increase -7 ,pdata 
+0x50f5 011759 call le_get_search_common2 
+0x50f6 011760 jam attop_find_by_type_value_response ,mem_fifo_temp 
+0x50f7 011761 branch le_xtype_fifo_in 
+:      011765 le_parse_att_read_by_type_request:
+0x50f8 011766 call le_get_search_handle_start_end_common 
+0x50f9 011767 call le_get_search_att_uuid 
+0x50fa 011768 jam attop_read_by_type_response ,mem_fifo_temp 
+0x50fb 011769 branch le_xtype_fifo_in 
+:      011772 le_get_search_handle_start_end_common:
+0x50fc 011773 rshift8 pdata ,pdata 
+0x50fd 011774 store 2 ,mem_le_search_handle_start 
+0x50fe 011775 ifetch 2 ,contr 
+0x50ff 011776 store 2 ,mem_le_search_handle_end 
+0x5100 011777 rtn 
+:      011779 le_get_search_att_type:
+0x5101 011780 call store_contr 
+0x5102 011781 arg mem_le_search_att_type_length ,contw 
+:      011782 le_get_search_common:
+0x5103 011783 fetch 2 ,mem_le_l2cap_pdu_length 
+0x5104 011784 increase -5 ,pdata 
+:      011785 le_get_search_common2:
+0x5105 011786 istore 1 ,contw 
+0x5106 011787 copy pdata ,loopcnt 
+0x5107 011788 call get_contr 
+0x5108 011789 branch memcpy_fast 
+:      011791 le_get_search_att_uuid:
+0x5109 011792 call store_contr 
+0x510a 011793 arg mem_le_search_uuid_length ,contw 
+0x510b 011794 branch le_get_search_common 
+:      011799 le_parse_att_read_request:
+0x510c 011800 fetch 2 ,mem_le_rxbuf + 7 
+0x510d 011801 store 2 ,mem_le_att_handle 
+0x510e 011802 jam attop_read_response ,mem_fifo_temp 
+0x510f 011803 branch le_xtype_fifo_in 
+:      011807 le_parse_att_read_blob_request:
+0x5110 011808 ifetch 2 ,contr 
+0x5111 011809 store 2 ,mem_le_att_offset 
+0x5112 011810 jam attop_read_blob_response ,mem_fifo_temp 
+0x5113 011811 branch le_xtype_fifo_in 
+:      011814 le_parse_att_read_multiple_request:
+0x5114 011815 fetch 1 ,mem_le_rxbuf + 1 
+0x5115 011816 increase -5 ,pdata 
+0x5116 011817 rshift pdata ,pdata 
+0x5117 011818 store 1 ,mem_le_temp 
+0x5118 011819 jam attop_read_multiple_response ,mem_fifo_temp 
+0x5119 011820 branch le_xtype_fifo_in 
+:      011823 le_parse_att_read_by_group_type_request:
+0x511a 011824 call le_get_search_handle_start_end_common 
+0x511b 011825 call le_get_search_att_type 
+0x511c 011827 jam attop_read_by_group_type_response ,mem_fifo_temp 
+0x511d 011828 branch le_xtype_fifo_in 
+:      011830 le_parse_att_write_command:
+0x511e 011831 call le_parse_att_write_common 
+0x511f 011832 branch le_check_long_packet_patch 
+:      011834 le_parse_att_write_request:
+0x5120 011835 call le_parse_att_write_common 
+0x5121 011836 call le_check_long_packet_patch 
+0x5122 011837 nrtn zero 
+:      011838 le_parse_att_write_request_end:
+0x5123 011839 jam attop_write_response ,mem_fifo_temp 
+0x5124 011840 branch le_xtype_fifo_in 
+:      011842 le_check_long_packet_patch:
+0x5125 011843 fetch 1 ,mem_le_rxbuf + 1 
+0x5126 011844 increase -4 ,pdata 
+0x5127 011845 store 2 ,mem_le_buff_len 
+0x5128 011846 increase -3 ,pdata 
+0x5129 011848 ifetcht 2 ,contr 
+0x512a 011849 storet 2 ,mem_le_buff_len_all 
+0x512b 011850 storet 2 ,mem_le_buff_data_len_all 
+0x512c 011851 increase -3 ,temp 
+0x512d 011852 isub temp ,null 
+0x512e 011853 rtn 
+:      011855 le_parse_att_write_common:
+0x512f 011856 fetch 1 ,mem_le_rxbuf + 1 
+0x5130 011857 increase -7 ,pdata 
+0x5131 011858 icopy loopcnt 
+0x5132 011859 copy loopcnt ,regb 
+0x5133 011860 fetch 1 ,mem_le_flag 
+0x5134 011861 bbit0 flag_ble_copy_master_data_to_att_list ,le_parse_att_write_common1 
+0x5135 011862 fetcht 2 ,mem_le_att_handle 
+0x5136 011863 call le_att_get_handle_ptr 
+0x5137 011864 rtn blank 
+0x5138 011865 ifetch 1 ,contr 
+0x5139 011866 isub loopcnt ,null 
+0x513a 011867 branch le_parse_att_write_common0 ,positive 
+0x513b 011868 copy pdata ,loopcnt 
+:      011869 le_parse_att_write_common0:
+0x513c 011870 copy contr ,contw 
+0x513d 011871 copy loopcnt ,regb 
+0x513e 011872 arg mem_le_rxbuf + 9 ,contr 
+0x513f 011873 call memcpy_fast 
+:      011874 le_parse_att_write_common1:
+0x5140 011875 arg mem_le_rxbuf + 9 ,rega 
+0x5141 011876 branch le_writeatt_cb 
+:      011879 le_parse_att_prepare_write_request:
+0x5142 011880 fetch 1 ,mem_le_rxbuf + 1 
+0x5143 011881 increase -4 ,pdata 
+0x5144 011882 store 2 ,mem_le_buff_len 
+0x5145 011883 ifetcht 2 ,contr 
+0x5146 011884 storet 2 ,mem_le_buff_len_all 
+0x5147 011885 increase -2 ,temp 
+0x5148 011886 storet 2 ,mem_le_buff_data_len_all 
+0x5149 011888 fetch 1 ,mem_le_rxbuf + 1 
+0x514a 011889 increase -9 ,pdata 
+0x514b 011890 store 2 ,mem_prepare_write_len 
+0x514c 011892 icopy loopcnt 
+0x514d 011893 copy loopcnt ,regb 
+0x514e 011894 fetch 1 ,mem_le_flag 
+0x514f 011895 bbit0 flag_ble_copy_master_data_to_att_list ,le_parse_att_prepare_write_request1 
+0x5150 011896 fetcht 2 ,mem_le_att_handle 
+0x5151 011897 call le_att_get_handle_ptr 
+0x5152 011898 branch le_parse_att_prepare_write_request_end ,blank 
+0x5153 011899 ifetch 1 ,contr 
+0x5154 011900 isub loopcnt ,null 
+0x5155 011901 branch le_parse_att_prepare_write_request0 ,positive 
+0x5156 011902 copy pdata ,loopcnt 
+:      011903 le_parse_att_prepare_write_request0:
+0x5157 011904 copy contr ,contw 
+0x5158 011905 copy loopcnt ,regb 
+0x5159 011906 arg mem_le_rxbuf + 11 ,contr 
+0x515a 011907 call memcpy_fast 
+:      011909 le_parse_att_prepare_write_request1:
+0x515b 011910 copy regb ,loopcnt 
+0x515c 011911 arg mem_temp_prepare_write_request ,contw 
+0x515d 011912 arg mem_le_rxbuf + 11 ,contr 
+0x515e 011913 call memcpy_fast 
+0x515f 011915 arg mem_le_rxbuf + 11 ,rega 
+0x5160 011916 fetch 2 ,mem_le_rxbuf + 9 
+0x5161 011917 store 2 ,mem_le_prepare_write_req_offset 
+0x5162 011918 fetcht 2 ,mem_le_att_handle 
+0x5163 011919 storet 2 ,mem_prepare_handle 
+0x5164 011921 call le_writeatt_cb 
+0x5165 011923 fetch 2 ,mem_le_buff_len 
+0x5166 011924 fetcht 2 ,mem_le_buff_len_all 
+0x5167 011925 isub temp ,null 
+0x5168 011926 nrtn zero 
+:      011927 le_parse_att_prepare_write_request_end:
+0x5169 011928 jam attop_prepare_write_response ,mem_fifo_temp 
+0x516a 011929 branch le_xtype_fifo_in 
+:      011933 le_parse_att_execute_write_request:
+0x516b 011934 jam attop_execute_write_response ,mem_fifo_temp 
+0x516c 011935 branch le_xtype_fifo_in 
+:      011938 le_writeatt_cb:
+0x516d 011939 fetch 2 ,mem_cb_att_write 
+0x516e 011940 rtn blank 
+0x516f 011941 iforce pc 
+:      011943 le_supervision_update:
+0x5170 011944 fetcht 4 ,mem_le_supervision_timer 
+0x5171 011945 call get_clkbt 
+0x5172 011946 isub temp ,timeup 
+0x5173 011947 deposit timeup 
+0x5174 011948 fetcht 2 ,mem_le_superto 
+0x5175 011949 lshift4 temp ,temp 
+0x5176 011950 lshift temp ,temp 
+0x5177 011951 isub temp ,pdata 
+0x5178 011952 rtn 
+:      011954 le_supervision_flush:
+0x5179 011955 call get_clkbt 
+0x517a 011956 store 4 ,mem_le_supervision_timer 
+0x517b 011957 rtn 
+:      011961 le_adv:
+0x517c 011962 jam 36 ,mem_le_ch_mapped 
+:      011963 le_adv_loop:
+0x517d 011964 set1 mark_ext_patch ,mark 
+0x517e 011965 bpatch patch27_7 ,mem_patch27 
+0x517f 011966 fetch 1 ,mem_le_adv_enable 
+0x5180 011967 rtn blank 
+0x5181 011968 arg le_adv_interval_timer ,queue 
+0x5182 011969 call timer_check 
+0x5183 011970 nrtn blank 
+0x5184 011971 disable master 
+0x5185 011972 enable swfine 
+0x5186 011973 call le_init_adv 
+0x5187 011974 call le_next_adv_channel 
+0x5188 011975 call le_send_adv_ind 
+0x5189 011976 nbranch le_adv_not_match ,match 
+0x518a 011977 fetch 1 ,mem_le_req_rcv 
+0x518b 011978 increase 1 ,pdata 
+0x518c 011979 store 1 ,mem_le_req_rcv 
+0x518d 011980 set1 mark_ext_patch ,mark 
+0x518e 011981 bpatch patch28_0 ,mem_patch28 
+0x518f 011982 fetch 1 ,mem_le_rxbuf 
+0x5190 011983 and pdata ,0x0f ,pdata 
+0x5191 011984 beq scan_req ,le_send_scan_response 
+0x5192 011985 beq connect_req ,le_parse_connect_req 
+:      011986 le_adv_not_match:
+0x5193 011987 nop 10000 
+0x5194 011988 fetch 1 ,mem_le_ch_mapped 
+0x5195 011989 bne 39 ,le_adv_loop 
+0x5196 011990 arg le_adv_interval_timer ,queue 
+0x5197 011991 fetch 2 ,mem_le_adv_interval_max 
+0x5198 011992 branch timer_init 
+:      011995 le_receive_window_size:
+0x5199 011996 set1 mark_ext_patch ,mark 
+0x519a 011997 bpatch patch28_1 ,mem_patch28 
+0x519b 011998 fetch 1 ,mem_le_peer_sca 
+0x519c 011999 call le_sca_map 
+0x519d 012000 fetch 2 ,mem_le_tsniff 
+0x519e 012001 imul32 temp ,pdata 
+0x519f 012002 arg 375 ,temp 
+0x51a0 012003 imul32 temp ,pdata 
+0x51a1 012004 arg 100000 ,temp 
+0x51a2 012005 idiv temp 
+0x51a3 012006 fetch 1 ,mem_le_window_size 
+0x51a4 012007 arg 20000 ,temp 
+0x51a5 012008 imul32 temp ,pdata 
+0x51a6 012009 store 4 ,mem_le_transmit_window 
+0x51a7 012010 set1 mark_ext_patch ,mark 
+0x51a8 012011 bpatch patch28_2 ,mem_patch28 
+0x51a9 012012 fetch 2 ,mem_rx_window_sniff 
+0x51aa 012013 call wait_div_end 
+0x51ab 012014 quotient temp 
+0x51ac 012015 iadd temp ,pdata 
+0x51ad 012016 store 2 ,mem_le_receive_window 
+0x51ae 012017 rtn 
+:      012019 le_parse_connect_req:
+0x51af 012020 set1 mark_ext_patch ,mark 
+0x51b0 012021 bpatch patch28_3 ,mem_patch28 
+0x51b1 012022 fetch 6 ,mem_le_rxbuf + 8 
+0x51b2 012023 fetcht 6 ,mem_le_lap 
+0x51b3 012024 isub temp ,null 
+0x51b4 012025 nrtn zero 
+0x51b5 012026 call le_scan_check_sender_addr_type 
+0x51b6 012027 copy rega ,pdata 
+0x51b7 012028 store 1 ,mem_le_conn_peer_addr_type 
+0x51b8 012029 fetch 7 ,mem_le_rxbuf + 21 
+0x51b9 012030 store 7 ,mem_tmp_buffer 
+0x51ba 012031 ifetch 8 ,contr 
+0x51bb 012032 istore 8 ,contw 
+0x51bc 012033 fetch 6 ,mem_le_rxbuf + 2 
+0x51bd 012034 store 6 ,mem_le_plap 
+0x51be 012035 set1 mark_ext_patch ,mark 
+0x51bf 012036 bpatch patch28_4 ,mem_patch28 
+0x51c0 012037 increase 6 ,contr 
+0x51c1 012038 ifetch 8 ,contr 
+0x51c2 012039 store 8 ,mem_le_access 
+0x51c3 012040 ifetcht 2 ,contr 
+0x51c4 012041 lshift2 temp ,temp 
+0x51c5 012042 ifetch 2 ,contr 
+0x51c6 012043 lshift2 pdata ,pdata 
+0x51c7 012044 store 2 ,mem_le_tsniff 
+0x51c8 012045 store 4 ,mem_le_anchor 
+0x51c9 012046 isub temp ,pdata 
+0x51ca 012047 add pdata ,-2 ,clke_bt 
+0x51cb 012048 ifetch 9 ,contr 
+0x51cc 012049 store 9 ,mem_le_slave_latency 
+0x51cd 012050 set1 mark_ext_patch ,mark 
+0x51ce 012051 bpatch patch28_5 ,mem_patch28 
+0x51cf 012052 ifetch 1 ,contr 
+0x51d0 012053 rshift4 pdata ,temp 
+0x51d1 012054 rshift temp ,temp 
+0x51d2 012055 storet 1 ,mem_le_peer_sca 
+0x51d3 012056 and_into 0x1f ,pdata 
+0x51d4 012057 store 1 ,mem_le_hop 
+0x51d5 012058 call le_receive_window_size 
+0x51d6 012059 call le_calc_channel_map 
+0x51d7 012060 call le_init_slave 
+0x51d8 012061 call context_new 
+0x51d9 012062 nrtn zero 
+0x51da 012063 set1 mark_ext_patch ,mark 
+0x51db 012064 bpatch patch28_6 ,mem_patch28 
+0x51dc 012065 call calc_clke_offset 
+0x51dd 012066 jam bt_evt_le_connected ,mem_fifo_temp 
+0x51de 012067 call ui_ipc_send_event 
+0x51df 012069 branch context_save 
+:      012072 le_init_attlist_search:
+0x51e0 012073 set1 mark_ext_patch ,mark 
+0x51e1 012074 bpatch patch28_7 ,mem_patch28 
+0x51e2 012075 fetch 2 ,mem_le_search_handle_start 
+0x51e3 012076 iforce regb 
+0x51e4 012077 fetch 2 ,mem_le_search_handle_end 
+0x51e5 012078 iforce regc 
+0x51e6 012079 fetch 2 ,mem_ui_le_uuid_table 
+0x51e7 012080 iforce contr 
+0x51e8 012081 enable user 
+0x51e9 012082 rtn 
+:      012085 le_att_handle_inrange:
+0x51ea 012086 ifetch 2 ,contr 
+0x51eb 012087 rtn blank 
+0x51ec 012088 isub regb ,null 
+0x51ed 012089 nrtn positive 
+0x51ee 012090 isub regc ,null 
+0x51ef 012091 rtn zero 
+0x51f0 012092 branch le_att_handle_blank ,positive 
+0x51f1 012093 force 1 ,null 
+0x51f2 012094 rtn 
+:      012095 le_att_handle_blank:
+0x51f3 012096 force 0 ,pdata 
+0x51f4 012097 rtn 
+:      012101 le_att_get_handle_ptr:
+0x51f5 012102 call le_att_get_handle_ptr2 
+0x51f6 012103 branch le_att_get_handle_ptr_found ,zero 
+0x51f7 012104 rtn 
+:      012106 le_att_get_handle_ptr2:
+0x51f8 012107 set1 mark_ext_patch ,mark 
+0x51f9 012108 bpatch patch29_0 ,mem_patch29 
+0x51fa 012109 fetch 2 ,mem_ui_le_uuid_table 
+0x51fb 012110 iforce contr 
+:      012111 le_att_get_handle_loop1:
+0x51fc 012112 ifetch 2 ,contr 
+0x51fd 012113 rtn blank 
+0x51fe 012114 isub temp ,null 
+0x51ff 012115 rtn zero 
+0x5200 012116 ifetch 1 ,contr 
+0x5201 012117 iadd contr ,contr 
+0x5202 012118 ifetch 1 ,contr 
+0x5203 012119 iadd contr ,contr 
+0x5204 012120 branch le_att_get_handle_loop1 
+:      012121 le_att_get_handle_ptr_found:
+0x5205 012122 ifetch 1 ,contr 
+0x5206 012123 iadd contr ,contr 
+0x5207 012124 rtn 
+:      012128 le_att_get_short_uuid_ptr:
+0x5208 012129 set1 mark_ext_patch ,mark 
+0x5209 012130 bpatch patch29_1 ,mem_patch29 
+0x520a 012131 fetch 2 ,mem_ui_le_uuid_table 
+0x520b 012132 iforce contr 
+:      012133 le_att_get_short_uuid_loop:
+0x520c 012134 ifetch 2 ,contr 
+0x520d 012135 rtn blank 
+0x520e 012136 ifetch 1 ,contr 
+0x520f 012137 iadd contr ,contr 
+0x5210 012138 increase -2 ,contr 
+0x5211 012139 ifetch 2 ,contr 
+0x5212 012140 isub temp ,null 
+0x5213 012141 rtn zero 
+0x5214 012142 ifetch 1 ,contr 
+0x5215 012143 iadd contr ,contr 
+0x5216 012144 branch le_att_get_short_uuid_loop 
+:      012148 le_att_get_handle_info_from_ptr:
+0x5217 012149 fetch 2 ,mem_le_cur_attlist_start_ptr 
+0x5218 012150 copy pdata ,contr 
+0x5219 012151 branch le_att_get_handle_info + 1 
+:      012153 le_att_get_handle_info:
+0x521a 012154 set1 mark_ext_patch ,mark 
+0x521b 012155 bpatch patch29_2 ,mem_patch29 
+0x521c 012156 fetch 2 ,mem_ui_le_uuid_table 
+0x521d 012157 iforce contr 
+0x521e 012158 copy temp ,rega 
+:      012159 le_att_get_handle_loop:
+0x521f 012160 ifetch 2 ,contr 
+0x5220 012161 branch le_att_unfind_handle ,blank 
+0x5221 012162 isub rega ,null 
+0x5222 012163 branch le_att_finded_handle ,zero 
+0x5223 012164 ifetch 1 ,contr 
+0x5224 012165 iadd contr ,contr 
+0x5225 012166 ifetch 1 ,contr 
+0x5226 012167 iadd contr ,contr 
+0x5227 012168 branch le_att_get_handle_loop 
+:      012169 le_att_unfind_handle:
+0x5228 012170 setarg 1 
+0x5229 012171 rtn 
+:      012172 le_att_finded_handle:
+0x522a 012173 ifetch 1 ,contr 
+0x522b 012174 store 1 ,mem_le_cur_uuid_lenth 
+0x522c 012175 copy pdata ,loopcnt 
+0x522d 012176 arg mem_le_cur_uuid ,contw 
+0x522e 012177 call memcpy_fast 
+0x522f 012178 ifetch 1 ,contr 
+0x5230 012179 store 1 ,mem_le_search_len 
+0x5231 012180 call store_contr 
+0x5232 012181 setarg 0 
+0x5233 012182 rtn 
+:      012186 le_modified_name:
+0x5234 012187 set1 mark_ext_patch ,mark 
+0x5235 012188 bpatch patch29_3 ,mem_patch29 
+0x5236 012189 call le_modified_name_att_list 
+0x5237 012190 branch le_modified_name_adv 
+:      012192 le_modified_name_att_list:
+0x5238 012193 arg uuid_chrctr_device_name ,temp 
+0x5239 012194 call le_att_get_short_uuid_ptr 
+0x523a 012195 rtn blank 
+0x523b 012196 ifetch 1 ,contr 
+0x523c 012197 copy contr ,contw 
+0x523d 012198 fetcht 1 ,mem_le_name_len 
+0x523e 012199 copy temp ,loopcnt 
+0x523f 012200 isub temp ,null 
+0x5240 012201 nbranch le_name_length_longer_than_att ,positive 
+0x5241 012202 isub temp ,temp 
+0x5242 012203 arg mem_le_name ,contr 
+0x5243 012204 call memcpy 
+0x5244 012205 copy temp ,loopcnt 
+0x5245 012206 ncall memcpy_empty ,zero 
+0x5246 012207 rtn 
+:      012208 le_name_length_longer_than_att:
+0x5247 012209 copy pdata ,loopcnt 
+0x5248 012210 arg mem_le_name ,contr 
+0x5249 012211 branch memcpy_fast 
+:      012214 le_modified_name_adv:
+0x524a 012215 arg mem_le_adv_data_len + 32 ,regc 
+0x524b 012216 arg mem_le_adv_data ,rega 
+0x524c 012217 call le_modified_name_adv_and_scan 
+0x524d 012218 setarg 0 
+0x524e 012219 setflag user ,0 ,pdata 
+0x524f 012220 store 1 ,mem_pdatatemp 
+0x5250 012221 arg mem_le_scan_data_len + 32 ,regc 
+0x5251 012222 arg mem_le_scan_data ,rega 
+0x5252 012223 call le_modified_name_adv_and_scan 
+0x5253 012224 rtn user 
+0x5254 012225 fetch 1 ,mem_pdatatemp 
+0x5255 012226 branch assert ,blank 
+0x5256 012227 rtn 
+:      012230 le_modified_name_adv_and_scan:
+0x5257 012231 set1 mark_ext_patch ,mark 
+0x5258 012232 bpatch patch29_4 ,mem_patch29 
+0x5259 012233 call enable_usr 
+0x525a 012234 call clear_temp_block 
+0x525b 012235 arg 0 ,regb 
+0x525c 012236 arg mem_le_data_temp ,contw 
+0x525d 012237 call le_modified_name_adv_loop 
+0x525e 012238 fetch 1 ,mem_le_name_len 
+0x525f 012239 add pdata ,1 ,temp 
+0x5260 012240 iadd regb ,rega 
+0x5261 012241 increase 2 ,rega 
+0x5262 012242 sub rega ,0x1f ,null 
+0x5263 012243 nbranch le_modified_name_adv_and_scan_name_overflow ,positive 
+0x5264 012244 istoret 1 ,contw 
+0x5265 012245 arg 0x09 ,temp 
+0x5266 012246 istoret 1 ,contw 
+0x5267 012247 iforce loopcnt 
+0x5268 012248 call memcpy_fast 
+0x5269 012249 copy rega ,regb 
+:      012250 le_modified_name_adv_and_scan_store_data:
+0x526a 012251 deposit regb 
+0x526b 012252 store 1 ,mem_le_data_len_temp 
+0x526c 012253 arg mem_le_data_len_temp ,contr 
+0x526d 012254 setarg -32 
+0x526e 012255 iadd regc ,contw 
+0x526f 012256 branch memcpy32 
+:      012258 le_modified_name_adv_and_scan_name_overflow:
+0x5270 012259 call disable_usr 
+0x5271 012260 branch le_modified_name_adv_and_scan_store_data 
+:      012262 le_modified_name_adv_loop:
+0x5272 012263 ifetch 1 ,rega 
+0x5273 012264 rtn blank 
+0x5274 012265 pincrease 1 
+0x5275 012266 ifetcht 1 ,contr 
+0x5276 012267 sub temp ,0x09 ,null 
+0x5277 012268 branch le_modified_name_adv_found_name ,zero 
+0x5278 012269 iadd regb ,regb 
+0x5279 012270 copy rega ,contr 
+0x527a 012271 iforce loopcnt 
+0x527b 012272 call memcpy_fast 
+0x527c 012273 copy contr ,rega 
+:      012274 le_modified_name_adv_loop2:
+0x527d 012275 deposit rega 
+0x527e 012276 isub regc ,null 
+0x527f 012277 rtn positive 
+0x5280 012278 branch le_modified_name_adv_loop 
+:      012280 le_modified_name_adv_found_name:
+0x5281 012281 iadd rega ,rega 
+0x5282 012282 branch le_modified_name_adv_loop2 
+:      012285 memcpy_empty:
+0x5283 012286 setarg space 
+0x5284 012287 istore 1 ,contw 
+0x5285 012288 loop memcpy_empty 
+0x5286 012289 rtn 
+:      012292 le_lpm_set_mult:
+0x5287 012293 set1 mark_ext_patch ,mark 
+0x5288 012294 bpatch patch29_5 ,mem_patch29 
+0x5289 012295 disable wake 
+0x528a 012296 branch le_lpm_set_mult_attempt ,attempt 
+0x528b 012297 nbranch le_lpm_lost ,match 
+:      012298 le_lpm_set_mult_attempt:
+0x528c 012299 call lpm_match 
+0x528d 012300 fetch 2 ,mem_rx_window_sniff 
+0x528e 012301 store 2 ,mem_le_receive_window 
+0x528f 012302 fetch 1 ,mem_le_rxbuf 
+0x5290 012303 compare 1 ,pdata ,3 
+0x5291 012304 nbranch lpm_mult_short ,true 
+0x5292 012305 fetch 1 ,mem_le_txheader 
+0x5293 012306 compare 1 ,pdata ,3 
+0x5294 012307 nbranch lpm_mult_short ,true 
+0x5295 012308 fetch 2 ,mem_cb_le_set_mult 
+0x5296 012309 call callback_func 
+0x5297 012310 fetch 1 ,mem_le_state 
+0x5298 012311 bbit1 lestate_update_param ,lpm_mult_short 
+0x5299 012312 branch lpm_mult_wait_timeout 
+:      012314 le_lpm_lost:
+0x529a 012315 fetcht 2 ,mem_rx_window_sniff 
+0x529b 012316 rshift temp ,temp 
+0x529c 012317 fetch 2 ,mem_le_receive_window 
+0x529d 012318 iadd temp ,pdata 
+0x529e 012319 store 2 ,mem_le_receive_window 
+0x529f 012320 branch lpm_lost 
+:      012322 le_clean_att_list_handle_enable:
+0x52a0 012323 set1 mark_ext_patch ,mark 
+0x52a1 012324 bpatch patch29_6 ,mem_patch29 
+0x52a2 012325 jam 0 ,mem_le_switch_send_data 
+0x52a3 012326 fetcht 2 ,mem_le_notify_handle 
+0x52a4 012327 call le_att_check_notification_enable 
+0x52a5 012328 copy rega ,contw 
+0x52a6 012329 setarg 0 
+0x52a7 012330 istore 1 ,contw 
+0x52a8 012331 rtn 
+:      012336 le_secure_connect_sm:
+0x52a9 012337 fetch 1 ,mem_le_secure_connect_enable 
+0x52aa 012338 rtneq 0 
+0x52ab 012339 fetch 1 ,mem_le_secure_connect_flag 
+0x52ac 012340 rtnne le_sp_flag_commit_256 
+0x52ad 012341 set1 mark_ext_patch ,mark 
+0x52ae 012342 bpatch patch2a_0 ,mem_patch2a 
+0x52af 012343 jam sp_flag_standby ,mem_le_secure_connect_flag 
+0x52b0 012344 fetch 1 ,mem_le_secure_connect_state 
+0x52b1 012345 beq le_sc_stat_receive_public_key ,le_sc_receive_public_key 
+0x52b2 012346 beq le_sc_stat_wait_send_public_key ,le_sc_wait_send_public_key 
+0x52b3 012347 beq le_sc_stat_send_public_key ,le_sc_send_public_key 
+0x52b4 012348 beq le_sc_stat_receive_dhkey ,le_sc_receive_dhkey 
+0x52b5 012349 beq le_sc_stat_wait_confirm_gkey ,le_sc_wait_confirm_gkey 
+0x52b6 012350 beq le_sc_stat_passkey_wait_confirm ,le_sc_passkey_wait_confirm 
+0x52b7 012351 rtn 
+:      012354 le_sc_passkey_wait_confirm:
+0x52b8 012355 fetch 1 ,mem_authentication_passkey_times 
+0x52b9 012356 copy pdata ,queue 
+0x52ba 012357 increase 1 ,pdata 
+0x52bb 012358 store 1 ,mem_authentication_passkey_times 
+0x52bc 012359 fetch 4 ,mem_le_tk 
+0x52bd 012360 qisolate1 pdata 
+0x52be 012361 setarg 0x80 
+0x52bf 012362 setflag true ,0 ,pdata 
+0x52c0 012363 store 1 ,mem_passkey_1bit 
+0x52c1 012364 branch le_sc_ready_send_pairing_confirm 
+:      012366 le_sc_wait_confirm_gkey:
+0x52c2 012367 fetch 1 ,mem_le_sc_confirm_gkey_flag 
+0x52c3 012368 jam flag_le_sc_confrim_null ,mem_le_sc_confirm_gkey_flag 
+0x52c4 012369 beq flag_le_sc_confrim_gkey_ok ,le_sc_confirm_gkey_ok 
+0x52c5 012370 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52c6 012371 rtn 
+:      012373 le_sc_confirm_gkey_ok:
+0x52c7 012374 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+0x52c8 012375 jam xt_smp_pairing_dhkey_check ,mem_fifo_temp 
+0x52c9 012376 branch le_xtype_fifo_in 
+:      012378 le_sc_receive_dhkey:
+0x52ca 012379 fetch 1 ,mem_sp_dhkey_invalid 
+0x52cb 012380 beq sp_key_valid_256 ,le_dhkey_ready 
+0x52cc 012381 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52cd 012382 rtn 
+:      012384 le_dhkey_ready:
+0x52ce 012385 call function_f5 
+0x52cf 012389 fetch 1 ,mem_le_pairing_mode 
+0x52d0 012390 beq le_pairing_mode_secure_connect_passkey ,le_sc_confirm_gkey_ok_passkey 
+0x52d1 012391 call le_set_tk_0 
+:      012392 le_dhkey_ready_common:
+0x52d2 012393 call function_f6_ea 
+0x52d3 012394 arg mem_aes_cmac_temp ,rega 
+0x52d4 012395 arg mem_sp_confirm_remote ,regb 
+0x52d5 012396 arg 16 ,loopcnt 
+0x52d6 012397 call string_compare 
+0x52d7 012398 branch le_dhkey_check_ok ,zero 
+:      012399 le_dhkey_check_fail:
+0x52d8 012400 branch le_pairing_failed 
+:      012401 le_sc_confirm_gkey_ok_passkey:
+0x52d9 012404 branch le_dhkey_ready_common 
+:      012406 le_dhkey_check_ok:
+0x52da 012407 jam 1 ,mem_ltk_exists 
+0x52db 012408 fetch 1 ,mem_le_pairing_mode 
+0x52dc 012409 beq le_pairing_mode_secure_connect_justwork ,le_sc_confirm_gkey_ok 
+0x52dd 012410 beq le_pairing_mode_secure_connect_passkey ,le_sc_confirm_gkey_ok 
+0x52de 012411 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52df 012412 jam le_sc_stat_wait_confirm_gkey ,mem_le_secure_connect_state 
+0x52e0 012413 rtn 
+:      012415 le_sc_send_public_key:
+0x52e1 012416 fetch 1 ,mem_le_pairing_mode 
+0x52e2 012417 beq le_pairing_mode_secure_connect_passkey ,le_sc_send_public_key_passkey 
+0x52e3 012418 jam 0 ,mem_passkey_1bit 
+:      012419 le_sc_ready_send_pairing_confirm:
+0x52e4 012420 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x52e5 012421 branch le_xtype_fifo_in 
+:      012423 le_sc_send_public_key_passkey:
+0x52e6 012427 jam 0 ,mem_authentication_passkey_times 
+0x52e7 012429 branch le_genernate_tk 
+:      012431 le_sc_receive_public_key:
+0x52e8 012433 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52e9 012434 fetch 1 ,mem_le_sc_local_key_invalid 
+0x52ea 012435 beq sp_key_valid_256 ,le_public_key_ready 
+0x52eb 012437 rtn 
+:      012439 le_public_key_ready:
+0x52ec 012440 jam sp_key_invalid ,mem_sp_dhkey_invalid 
+0x52ed 012441 call sp_dhkey_calc_256 
+0x52ee 012442 jam le_sc_stat_wait_send_public_key ,mem_le_secure_connect_state 
+0x52ef 012443 rtn 
+:      012447 le_sc_wait_send_public_key:
+0x52f0 012448 call le_xtype_fifo_is_empty 
+0x52f1 012449 branch le_public_key_ready_send ,blank 
+0x52f2 012450 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x52f3 012451 rtn 
+:      012452 le_public_key_ready_send:
+0x52f4 012453 jam xt_smp_pairing_public_key ,mem_fifo_temp 
+0x52f5 012454 call le_xtype_fifo_in 
+0x52f6 012455 jam xt_smp_pairing_public_key ,mem_fifo_temp 
+0x52f7 012456 call le_xtype_fifo_in 
+0x52f8 012457 jam xt_smp_pairing_public_key ,mem_fifo_temp 
+0x52f9 012458 branch le_xtype_fifo_in 
+:      012464 le_pairing_public_key_continue:
+0x52fa 012465 arg mem_le_pubkey_remote_x_256 ,pdata 
+0x52fb 012466 fetcht 1 ,mem_le_public_length 
+0x52fc 012467 iadd temp ,contw 
+0x52fd 012469 fetch 1 ,mem_le_rxbuf + 1 
+0x52fe 012470 copy pdata ,loopcnt 
+0x52ff 012471 iadd temp ,temp 
+0x5300 012472 call memcpy_fast 
+0x5301 012473 storet 1 ,mem_le_public_length 
+0x5302 012474 copy temp ,pdata 
+0x5303 012476 rtnne 64 
+0x5304 012477 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+0x5305 012478 jam le_sc_stat_receive_public_key ,mem_le_secure_connect_state 
+0x5306 012479 rtn 
+:      012480 le_parse_continue:
+0x5307 012481 set1 mark_ext_patch ,mark 
+0x5308 012482 bpatch patch2a_1 ,mem_patch2a 
+0x5309 012483 fetch 1 ,mem_le_public_length 
+0x530a 012484 bne 0 ,le_pairing_public_key_continue 
+0x530b 012485 branch le_parse_continue_att 
+:      012491 init_lmp:
+0x530c 012492 rtn wake 
+:      012493 init_lmp_work:
+0x530d 012494 set1 mark_ext_patch ,mark 
+0x530e 012495 bpatch patch2a_2 ,mem_patch2a 
+0x530f 012496 setarg 0 
+0x5310 012497 store 1 ,mem_lmp_to_send 
+0x5311 012498 store 1 ,mem_conn_sm 
+0x5312 012499 store 1 ,mem_lmo_opcode1 
+0x5313 012500 store 1 ,mem_lmo_opcode2 
+0x5314 012501 store 1 ,mem_esco_addr 
+0x5315 012502 store 1 ,mem_auth_enable 
+0x5316 012503 store 1 ,mem_connection_options 
+0x5317 012504 store 1 ,mem_pairing_auth 
+0x5318 012505 jam switch_flag_init ,mem_switch_flag 
+0x5319 012506 jam 0 ,mem_switch_fail_master_count 
+0x531a 012507 jam null_encryp ,mem_wait_encryption 
+:      012508 init_lmp_reinit:
+0x531b 012509 jam 0 ,mem_pairing_auth 
+0x531c 012510 jam 0 ,mem_sp_localsm 
+0x531d 012511 jam 0 ,mem_lmp_conn_state 
+:      012513 parse_rx_done:
+0x531e 012514 rtn 
+:      012516 parse_lmp:
+0x531f 012517 set1 mark_ext_patch ,mark 
+0x5320 012518 bpatch patch2a_3 ,mem_patch2a 
+0x5321 012519 call setlocalsm_master ,master 
+0x5322 012520 ncall setlocalsm_slave ,master 
+0x5323 012521 call lmo_fifo_check 
+0x5324 012522 nrtn blank 
+0x5325 012523 fetch 1 ,mem_state_map 
+0x5326 012524 rtnbit0 smap_rxlmp 
+0x5327 012525 set0 smap_rxlmp ,pdata 
+0x5328 012526 set0 mark_rxbuf_inuse ,mark 
+0x5329 012527 store 1 ,mem_state_map 
+0x532a 012528 fetch 1 ,mem_rxbuf 
+0x532b 012529 fetcht 1 ,mem_state_map 
+0x532c 012530 isolate1 smap_lmptidinit ,pdata 
+0x532d 012531 setflag true ,smap_lmptid ,temp 
+0x532e 012532 storet 1 ,mem_state_map 
+0x532f 012533 and_into 0x2 ,temp 
+0x5330 012534 storet 1 ,mem_lmo_tid2 
+0x5331 012535 fetcht 1 ,mem_state_map 
+0x5332 012536 rshift pdata ,pdata 
+0x5333 012537 store 1 ,mem_lmi_opcode2 
+0x5334 012538 set1 mark_ext_patch ,mark 
+0x5335 012539 bpatch patch2a_4 ,mem_patch2a 
+0x5336 012540 fetch 1 ,mem_lmi_opcode2 
+0x5337 012541 beq lmp_escape ,parse_lmp_escape 
+0x5338 012542 beq lmp_accepted ,parse_lmp_accepted 
+0x5339 012543 beq lmp_not_accepted ,parse_lmp_not_accepted 
+0x533a 012544 beq lmp_set_afh ,parse_lmp_set_afh 
+0x533b 012545 beq lmp_clkoffset_req ,parse_lmp_clkoffset_req 
+0x533c 012546 beq lmp_encryption_mode_req ,parse_lmp_encryption_mode_req 
+0x533d 012547 beq lmp_encryption_key_size_req ,parse_lmp_crypt_key 
+0x533e 012548 beq lmp_auto_rate ,parse_lmp_auto_rate 
+0x533f 012549 beq lmp_test_control ,parse_lmp_test_control 
+0x5340 012550 beq lmp_test_activate ,parse_lmp_test_activate 
+0x5341 012551 beq lmp_setup_complete ,parse_lmp_setup_complete 
+0x5342 012552 beq lmp_supervision_timeout ,parse_lmp_supervision_timeout 
+0x5343 012553 beq lmp_features_req ,parse_lmp_features_req 
+0x5344 012554 beq lmp_host_connection_req ,parse_lmp_conn_req 
+0x5345 012555 beq lmp_version_req ,parse_lmp_version_req 
+0x5346 012556 beq lmp_version_res ,parse_lmp_version_res 
+0x5347 012557 beq lmp_detach ,parse_lmp_detach 
+0x5348 012558 beq lmp_max_slot ,parse_lmp_max_slot 
+0x5349 012559 beq lmp_max_slot_req ,parse_lmp_max_slot_req 
+0x534a 012560 beq lmp_name_req ,parse_lmp_name_req 
+0x534b 012561 beq lmp_name_res ,parse_lmp_name_res 
+0x534c 012562 beq lmp_features_res ,parse_lmp_features_res 
+0x534d 012563 beq lmp_comb_key ,parse_lmp_comb_key 
+0x534e 012564 beq lmp_au_rand ,parse_lmp_au_rand 
+0x534f 012565 beq lmp_in_rand ,parse_lmp_in_rand 
+0x5350 012566 beq lmp_sres ,parse_lmp_sres 
+0x5351 012567 beq lmp_incr_power_req ,parse_lmp_incr_power 
+0x5352 012568 beq lmp_decr_power_req ,parse_lmp_decr_power 
+0x5353 012569 beq lmp_max_power ,parse_lmp_max_power 
+0x5354 012570 beq lmp_min_power ,parse_lmp_min_power 
+0x5355 012571 beq lmp_page_mode_req ,parse_lmp_page_mode_req 
+0x5356 012572 beq lmp_page_scan_mode_req ,parse_lmp_page_scan_mode_req 
+0x5357 012573 beq lmp_preferred_rate ,parse_lmp_preferred_rate 
+0x5358 012574 beq lmp_slot_offset ,parse_lmp_slot_offset 
+0x5359 012575 beq lmp_sniff_req ,parse_lmp_sniff_req 
+0x535a 012576 beq lmp_start_encryption_req ,parse_lmp_start_encryption_req 
+0x535b 012577 beq lmp_stop_encryption_req ,parse_lmp_stop_encryption_req 
+0x535c 012578 beq lmp_switch_req ,parse_lmp_switch_req 
+0x535d 012579 beq lmp_temp_rand ,parse_lmp_temp_rand 
+0x535e 012580 beq lmp_temp_key ,parse_lmp_temp_key 
+0x535f 012581 beq lmp_timing_accuracy_req ,parse_lmp_timing_accuracy_req 
+0x5360 012582 beq lmp_timing_accuracy_res ,parse_lmp_timing_accuracy_res 
+0x5361 012583 beq lmp_unit_key ,parse_lmp_unit_key 
+0x5362 012584 beq lmp_unsniff_req ,parse_lmp_unsniff_req 
+0x5363 012585 beq lmp_use_semi_permanent_key ,parse_lmp_use_semi_permanend_key 
+0x5364 012586 beq lmp_encapsulated_header ,parse_lmp_encapsulated_header 
+0x5365 012587 beq lmp_encapsulated_payload ,parse_lmp_encapsulated_payload 
+0x5366 012588 beq lmp_simple_pairing_confirm ,parse_simple_pairing_confirm 
+0x5367 012589 beq lmp_simple_pairing_number ,parse_lmp_simple_pairing_number 
+0x5368 012590 beq lmp_dhkey_check ,parse_dhkey_check 
+0x5369 012591 beq lmp_clkoffset_res ,parse_lmp_clkoffset_res 
+0x536a 012592 beq lmp_enc_key_size_mask_req ,parse_enc_key_size_mask_req 
+:      012595 reject_unknown_packet:
+0x536b 012596 jam unknown_lmp_pdu ,mem_lmo_reason2 
+:      012597 reject_lmp_packet:
+0x536c 012598 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x536d 012599 rtn 
+:      012601 parse_lmp_clkoffset_req:
+0x536e 012602 jam lmp_clkoffset_res ,mem_lmo_opcode2 
+0x536f 012603 rtn 
+:      012605 parse_enc_key_size_mask_req:
+0x5370 012606 jam lmp_enc_key_size_mask_res ,mem_lmo_opcode2 
+0x5371 012607 rtn 
+:      012609 parse_lmp_set_afh:
+0x5372 012610 fetch 4 ,mem_rxbuf + 1 
+0x5373 012611 lshift pdata ,pdata 
+0x5374 012612 store 4 ,mem_afh_instant 
+0x5375 012613 fetch 1 ,mem_rxbuf + 5 
+0x5376 012614 store 1 ,mem_afh_new_mod 
+0x5377 012615 fetch 5 ,mem_rxbuf + 6 
+0x5378 012616 store 5 ,mem_afh_map_new 
+0x5379 012617 fetch 5 ,mem_rxbuf + 11 
+0x537a 012618 istore 5 ,contw 
+0x537b 012619 fetch 1 ,mem_mode 
+0x537c 012620 set1 afh_change ,pdata 
+0x537d 012621 store 1 ,mem_mode 
+0x537e 012622 rtn 
+:      012623 parse_lmp_escape:
+0x537f 012624 set1 mark_ext_patch ,mark 
+0x5380 012625 bpatch patch2a_5 ,mem_patch2a 
+0x5381 012626 fetch 1 ,mem_rxbuf + 1 
+0x5382 012627 set1 7 ,pdata 
+0x5383 012628 store 1 ,mem_lmi_opcode2 
+0x5384 012629 beq lmp_ext_accepted ,parse_lmpext_accepted 
+0x5385 012630 beq lmp_not_accepted_ext ,parse_lmpext_not_accepted 
+0x5386 012631 beq lmp_sniff_subrating_req ,parse_lmp_sniff_subrating_req 
+0x5387 012632 beq lmp_sniff_subrating_res ,parse_lmp_sniff_subrating_res 
+0x5388 012633 beq lmp_packet_type_table_req ,parse_lmpext_packet_type_table_req 
+0x5389 012634 beq lmp_ext_features_req ,parse_lmpext_features_req 
+0x538a 012635 beq lmp_ext_features_res ,parse_lmpext_features_res 
+0x538b 012636 beq lmp_ext_chn_classification_req ,parse_lmpext_chn_classification_req 
+0x538c 012637 beq lmp_pause_encryption_req ,parse_lmpext_pause_encrypt 
+0x538d 012638 beq lmp_resume_encryption_req ,parse_lmpext_resume_encrypt 
+0x538e 012639 beq lmp_io_cap_req ,parse_lmpext_iocap_req 
+0x538f 012640 beq lmp_io_cap_res ,parse_lmpext_iocap_res 
+0x5390 012641 rtneq lmp_ext_features_res 
+:      012644 reject_unknown_ext_packet:
+0x5391 012645 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5392 012646 jam unknown_lmp_pdu ,mem_lmo_reason2 
+0x5393 012648 rtn 
+:      012649 parse_lmpext_chn_classification_req:
+0x5394 012650 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5395 012651 jam not_support_chn_classification ,mem_lmo_reason2 
+0x5396 012652 rtn 
+:      012654 parse_lmpext_iocap_req:
+0x5397 012655 call iocap_lmpext_load 
+0x5398 012656 jam lmp_io_cap_res ,mem_lmo_opcode2 
+0x5399 012657 rtn 
+:      012659 parse_lmpext_iocap_res:
+0x539a 012660 call iocap_lmpext_load 
+0x539b 012661 branch iocap_lmpext_common 
+:      012663 iocap_lmpext_load:
+0x539c 012664 arg mem_sp_iocap_remote ,contw 
+0x539d 012665 fetch 3 ,mem_rxbuf + 2 
+0x539e 012666 istore 3 ,contw 
+0x539f 012667 rtn 
+:      012669 iocap_lmpext_common:
+0x53a0 012670 branch master_set_mem_master_sp_flag ,true 
+0x53a1 012671 rtn 
+:      012672 parse_lmpext_accepted:
+0x53a2 012673 fetch 1 ,mem_rxbuf + 3 
+0x53a3 012674 set1 7 ,pdata 
+0x53a4 012675 store 1 ,mem_lmi_accepted_opcode 
+0x53a5 012676 beq lmp_packet_type_table_req ,parse_lmpext_accepted_ptt 
+0x53a6 012677 rtn 
+:      012680 parse_lmpext_not_accepted:
+0x53a7 012681 fetch 1 ,mem_rxbuf + 3 
+0x53a8 012682 set1 7 ,pdata 
+0x53a9 012683 store 1 ,mem_lmi_accepted_opcode 
+0x53aa 012684 beq lmp_packet_type_table_req ,parse_lmpext_not_accepted_ptt 
+0x53ab 012685 rtn 
+:      012687 parse_lmpext_accepted_ptt:
+0x53ac 012688 fetch 1 ,mem_ptt 
+0x53ad 012689 fetcht 1 ,mem_state_map 
+0x53ae 012690 nsetflag blank ,smap_edr ,temp 
+0x53af 012691 storet 1 ,mem_state_map 
+:      012692 parse_lmpext_not_accepted_ptt:
+0x53b0 012693 fetch 1 ,mem_state 
+0x53b1 012694 rtnbit0 state_init_seq 
+0x53b2 012695 set0 state_init_seq ,pdata 
+0x53b3 012696 store 1 ,mem_state 
+0x53b4 012697 fetch 1 ,mem_auth_enable 
+0x53b5 012698 nrtn blank 
+0x53b6 012699 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x53b7 012700 rtn 
+:      012702 parse_lmpext_pause_encrypt:
+0x53b8 012703 nbranch parse_lmpext_pause_encrypt_slave ,master 
+0x53b9 012704 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x53ba 012705 branch tid_reply 
+:      012707 parse_lmpext_pause_encrypt_slave:
+0x53bb 012708 jam lmp_pause_encryption_req ,mem_lmo_opcode2 
+0x53bc 012709 rtn 
+:      012711 parse_lmpext_resume_encrypt:
+0x53bd 012714 call tid_reply 
+0x53be 012715 branch lmp_start_encryption 
+:      012717 parse_lmpext_features_req:
+0x53bf 012718 jam lmp_ext_features_res ,mem_lmo_opcode2 
+0x53c0 012719 rtn 
+:      012721 parse_lmpext_features_res:
+0x53c1 012722 fetcht 1 ,mem_rxbuf + 4 
+0x53c2 012723 and temp ,0x1 ,temp 
+0x53c3 012724 storet 1 ,mem_remote_sppcap 
+0x53c4 012725 fetch 1 ,mem_hci_cmd 
+0x53c5 012726 bne hci_cmd_wait_remote_ext_feature ,parse_lmpext_features_res_not_hci 
+0x53c6 012727 jam 0 ,mem_hci_cmd 
+:      012728 parse_lmpext_features_res_not_hci:
+0x53c7 012729 fetch 1 ,mem_conn_sm 
+0x53c8 012730 rtnne conn_sm_wait_features_ext 
+0x53c9 012731 jam conn_sm_send_conn_req ,mem_conn_sm 
+0x53ca 012732 branch process_conn_sm 
+:      012734 parse_lmp_accepted:
+0x53cb 012735 set1 mark_ext_patch ,mark 
+0x53cc 012736 bpatch patch2a_6 ,mem_patch2a 
+0x53cd 012737 fetch 1 ,mem_rxbuf + 1 
+0x53ce 012738 store 1 ,mem_lmi_accepted_opcode 
+0x53cf 012739 beq lmp_host_connection_req ,parse_lmp_accepted_hostconn 
+0x53d0 012740 beq lmp_in_rand ,parse_lmp_accepted_inrand 
+0x53d1 012741 beq lmp_encryption_mode_req ,parse_lmp_accepted_enc_mode 
+0x53d2 012742 beq lmp_encryption_key_size_req ,parse_lmp_accepted_enc_keysize 
+0x53d3 012743 beq lmp_start_encryption_req ,parse_lmp_accepted_start_enc 
+0x53d4 012744 beq lmp_stop_encryption_req ,parse_lmp_accepted_stop_enc 
+0x53d5 012745 beq lmp_unsniff_req ,parse_lmp_accepted_unsniff_req 
+0x53d6 012746 beq lmp_sniff_req ,parse_lmp_accepted_sniff_req 
+0x53d7 012747 beq lmp_switch_req ,parse_lmp_accepted_switch 
+0x53d8 012749 beq lmp_encapsulated_header ,parse_lmp_accepted_encapsulated_header 
+0x53d9 012750 beq lmp_encapsulated_payload ,parse_lmp_accepted_encapsulated_payload 
+0x53da 012751 beq lmp_simple_pairing_number ,parse_lmp_accepted_simple_pairing_number 
+0x53db 012752 beq lmp_dhkey_check ,parse_lmp_accepted_dhkey_check 
+0x53dc 012753 rtn 
+:      012755 parse_lmp_not_accepted:
+0x53dd 012756 set1 mark_ext_patch ,mark 
+0x53de 012757 bpatch patch2a_7 ,mem_patch2a 
+0x53df 012758 fetch 1 ,mem_rxbuf + 1 
+0x53e0 012759 store 1 ,mem_lmi_accepted_opcode 
+0x53e1 012760 beq lmp_name_req ,parse_lmp_not_accepted_name_req 
+0x53e2 012761 beq lmp_host_connection_req ,parse_lmp_not_accepted_hostconn 
+0x53e3 012762 beq lmp_au_rand ,parse_lmp_not_accepted_aurand 
+0x53e4 012763 beq lmp_in_rand ,parse_lmp_not_accepted_inrand 
+0x53e5 012764 beq lmp_switch_req ,parse_lmp_not_accepted_switch 
+0x53e6 012766 beq lmp_simple_pairing_number ,parse_lmp_not_accepted_simple_pairing_number 
+0x53e7 012767 beq lmp_dhkey_check ,parse_lmp_not_accepted_dhkey_check 
+0x53e8 012768 beq lmp_unsniff_req ,parse_lmp_not_accepted_unsniff_req 
+0x53e9 012769 beq lmp_sniff_req ,parse_lmp_not_acdcept_sniff_req 
+0x53ea 012770 rtn 
+:      012772 parse_lmp_accepted_switch:
+0x53eb 012773 jam bt_evt_switch_accept ,mem_fifo_temp 
+0x53ec 012774 call ui_ipc_send_event 
+0x53ed 012775 branch role_switch_prepare0 
+:      012776 parse_lmp_not_accepted_switch:
+0x53ee 012777 jam bt_evt_switch_not_accept ,mem_fifo_temp 
+0x53ef 012778 call ui_ipc_send_event 
+0x53f0 012779 jam switch_flag_not_accept ,mem_switch_flag 
+0x53f1 012780 setarg timer_switch_waite 
+0x53f2 012781 arg switch_wait_timer ,queue 
+0x53f3 012782 branch timer_init 
+:      012785 parse_lmp_accepted_hostconn:
+0x53f4 012788 fetch 1 ,mem_lmp_conn_state 
+0x53f5 012789 set1 received_conn_req ,pdata 
+0x53f6 012790 store 1 ,mem_lmp_conn_state 
+0x53f7 012791 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x53f8 012792 call ui_ipc_send_event 
+0x53f9 012793 jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+:      012795 parse_lmp_accepted_hostconn_ctn:
+0x53fa 012797 fetch 1 ,mem_conn_sm 
+0x53fb 012798 bne conn_sm_wait_conn_accept ,parse_rx_done 
+0x53fc 012801 jam conn_sm_auth_pair ,mem_conn_sm 
+0x53fd 012802 rtn 
+:      012810 parse_lmp_not_accepted_hostconn:
+0x53fe 012811 jam acl_connection_already_exists ,mem_disconn_reason_send 
+0x53ff 012812 jam lmp_detach ,mem_lmo_opcode2 
+0x5400 012814 jam conn_sm_standby ,mem_conn_sm 
+0x5401 012816 branch parse_rx_done ,true 
+0x5402 012817 rtn 
+:      012819 parse_lmp_accepted_inrand:
+0x5403 012820 fetch 1 ,mem_link_key_exists 
+0x5404 012821 nrtn blank 
+0x5405 012822 call clear_linkkey 
+0x5406 012823 call lmp_generate_key 
+0x5407 012824 rtn master 
+0x5408 012825 set1 mark_slave_in_rand_accepted ,mark 
+0x5409 012826 rtn 
+:      012828 parse_lmp_accepted_enc_mode:
+0x540a 012829 nrtn master 
+0x540b 012830 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+0x540c 012831 fetch 1 ,mem_state_map 
+0x540d 012832 rtnbit0 smap_encryption 
+0x540e 012833 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x540f 012834 rtn 
+:      012836 parse_lmp_accepted_enc_keysize:
+0x5410 012837 branch lmp_start_encryption 
+:      012839 parse_lmp_accepted_start_enc:
+0x5411 012840 call send_create_conn_start_l2cap_timer_sm 
+0x5412 012841 fetch 1 ,mem_state 
+0x5413 012842 rtnbit1 state_conn_comp 
+0x5414 012843 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5415 012844 fetch 1 ,mem_conn_sm 
+0x5416 012845 rtnne conn_sm_encrypt_wait 
+0x5417 012846 jam conn_sm_encrypt_wait_clear ,mem_conn_sm 
+0x5418 012847 rtn 
+:      012849 parse_lmp_accepted_stop_enc:
+0x5419 012857 rtn 
+:      012859 parse_lmp_not_accepted_aurand:
+:      012860 parse_lmp_not_accepted_aurand_send_detach:
+0x541a 012861 jam lmp_detach ,mem_lmo_opcode2 
+0x541b 012862 jam other_end_terminated ,mem_disconn_reason_send 
+0x541c 012863 rtn 
+:      012865 parse_lmp_not_accepted_inrand:
+0x541d 012866 fetch 1 ,mem_rxbuf + 2 
+0x541e 012867 beq key_missing ,parse_lmp_inrand_key_missing 
+0x541f 012868 rtnne pairing_not_allowed 
+0x5420 012869 jam pairing_not_allowed ,mem_disconn_reason_send 
+0x5421 012870 jam lmp_detach ,mem_lmo_opcode2 
+0x5422 012871 rtn 
+:      012872 parse_lmp_inrand_key_missing:
+0x5423 012873 jam key_missing ,mem_disconn_reason_send 
+0x5424 012874 jam lmp_detach ,mem_lmo_opcode2 
+0x5425 012875 rtn 
+:      012877 parse_lmp_not_accepted_name_req:
+0x5426 012878 rtn 
+:      012880 parse_lmp_not_accepted_simple_pairing_number:
+0x5427 012881 jam sp_stat_null ,mem_sp_state 
+0x5428 012882 jam lmp_detach ,mem_lmo_opcode2 
+0x5429 012883 branch parse_rx_done 
+:      012885 parse_lmp_not_accepted_dhkey_check:
+0x542a 012886 jam sp_stat_null ,mem_sp_state 
+0x542b 012887 jam lmp_detach ,mem_lmo_opcode2 
+0x542c 012888 branch parse_rx_done 
+:      012889 parse_lmp_not_accepted_unsniff_req:
+0x542d 012890 jam bt_evt_unsniff_not_accept ,mem_fifo_temp 
+0x542e 012891 branch ui_ipc_send_event 
+:      012893 parse_lmp_accepted_unsniff_req:
+0x542f 012894 jam bt_evt_unsniff_accept ,mem_fifo_temp 
+0x5430 012895 call ui_ipc_send_event 
+0x5431 012896 branch sniff_exit 
+:      012898 parse_lmp_accepted_sniff_req:
+0x5432 012899 jam bt_evt_sniff_accept ,mem_fifo_temp 
+0x5433 012900 call ui_ipc_send_event 
+0x5434 012901 setarg 0 
+0x5435 012902 store 2 ,mem_dsniff 
+0x5436 012903 fetch 2 ,mem_sniff_param_interval 
+0x5437 012904 lshift pdata ,pdata 
+0x5438 012905 store 2 ,mem_tsniff 
+0x5439 012906 fetch 1 ,mem_sniff_param_attempt 
+0x543a 012907 store 1 ,mem_sniff_attempt 
+0x543b 012908 fetch 1 ,mem_sniff_param_timeout 
+0x543c 012909 store 1 ,mem_sniff_timeout 
+0x543d 012910 branch sniff_init 
+:      012912 parse_lmp_not_acdcept_sniff_req:
+0x543e 012913 jam bt_evt_sniff_not_accept ,mem_fifo_temp 
+0x543f 012914 branch ui_ipc_send_event 
+:      012916 parse_lmp_crypt_key:
+0x5440 012917 fetcht 1 ,mem_rxbuf + 1 
+0x5441 012918 storet 1 ,mem_key_size 
+0x5442 012919 branch accept_lmp_msg 
+:      012921 parse_lmp_setup_complete:
+0x5443 012922 fetch 1 ,mem_lmp_conn_state 
+0x5444 012923 set1 received_setup_complete ,pdata 
+0x5445 012924 store 1 ,mem_lmp_conn_state 
+0x5446 012925 rtnbit1 sent_setup_complete 
+0x5447 012926 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5448 012927 branch parse_rx_done 
+:      012929 parse_lmp_max_slot:
+0x5449 012932 rtn 
+:      012934 parse_lmp_max_slot_req:
+0x544a 012935 fetch 1 ,mem_max_slot 
+0x544b 012936 fetcht 1 ,mem_rxbuf + 1 
+0x544c 012937 isub temp ,null 
+0x544d 012939 branch accept_lmp_msg ,positive 
+0x544e 012940 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x544f 012941 jam unspecified_error ,mem_lmo_reason2 
+0x5450 012942 jam lmp_max_slot_req ,mem_lmi_opcode2 
+0x5451 012943 rtn 
+:      012945 parse_lmp_detach:
+0x5452 012946 call prepare_disconnect 
+0x5453 012947 branch accept_lmp_msg 
+:      012949 accept_lmp_msg:
+0x5454 012950 jam lmp_accepted ,mem_lmo_opcode2 
+0x5455 012951 rtn 
+:      012953 parse_lmp_incr_power:
+0x5456 012954 jam lmp_max_power ,mem_lmo_opcode2 
+0x5457 012955 rtn 
+:      012957 parse_lmp_decr_power:
+0x5458 012958 jam lmp_min_power ,mem_lmo_opcode2 
+0x5459 012959 rtn 
+:      012961 parse_lmp_version_res:
+0x545a 012962 fetch 1 ,mem_conn_sm 
+0x545b 012963 rtneq conn_sm_wait_version 
+0x545c 012965 jam conn_sm_send_features ,mem_conn_sm 
+0x545d 012967 rtn 
+:      012970 parse_lmp_auto_rate:
+0x545e 012971 rtn 
+:      012973 parse_lmp_in_rand:
+0x545f 012974 call lmp_copy_rand 
+0x5460 012975 jam pincode_state_wait_pincode ,mem_pincode_state 
+0x5461 012976 jam bt_evt_pincode_req ,mem_fifo_temp 
+0x5462 012977 call ui_ipc_send_event 
+0x5463 012979 call tid_check 
+0x5464 012980 nbranch lmp_accept_inrand ,true 
+0x5465 012982 nbranch parse_lmp_inrand_res ,master 
+0x5466 012983 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5467 012984 jam lmp_in_rand ,mem_lmi_opcode2 
+0x5468 012985 jam transaction_collision ,mem_lmo_reason2 
+0x5469 012986 rtn 
+:      012987 parse_lmp_inrand_res:
+0x546a 012988 fetch 1 ,mem_op 
+0x546b 012989 set1 op_inrand_req ,pdata 
+0x546c 012990 store 1 ,mem_op 
+0x546d 012991 rtn 
+:      012994 pop_tid_follow:
+0x546e 012995 fetcht 1 ,mem_state_map 
+0x546f 012996 nsetflag blank ,smap_lmptid ,temp 
+0x5470 012997 storet 1 ,mem_state_map 
+0x5471 012998 rtn 
+:      013001 push_tid_follow:
+0x5472 013002 fetch 1 ,mem_lmo_tid2 
+0x5473 013003 rshift pdata ,pdata 
+0x5474 013004 and_into 1 ,pdata 
+0x5475 013005 rtn 
+:      013007 parse_lmp_au_rand_moudle:
+0x5476 013008 fetch 1 ,mem_device_option 
+0x5477 013009 rtnne dvc_op_module 
+0x5478 013010 fetch 1 ,mem_pairing_auth 
+0x5479 013011 call load_device_list ,blank 
+0x547a 013012 rtn 
+:      013014 parse_lmp_au_rand:
+0x547b 013015 call parse_lmp_au_rand_moudle 
+0x547c 013016 call push_tid_follow 
+0x547d 013017 store 1 ,mem_sres_tid 
+0x547e 013018 call lmp_copy_rand 
+0x547f 013019 jam lmp_sres ,mem_lmo_opcode2 
+0x5480 013020 fetch 1 ,mem_link_key_exists 
+0x5481 013021 nrtn blank 
+0x5482 013022 fetch 1 ,mem_state 
+0x5483 013023 rtnbit1 state_combkey 
+0x5484 013024 jam key_missing ,mem_lmo_reason2 
+0x5485 013025 branch reject_lmp_packet 
+:      013027 parse_lmp_sres:
+0x5486 013028 arg mem_plap ,rega 
+0x5487 013029 call function_e1 
+0x5488 013030 fetch 4 ,mem_rxbuf + 1 
+0x5489 013031 fetcht 4 ,mem_input_store 
+0x548a 013032 isub temp ,null 
+0x548b 013033 branch authentication_ok ,zero 
+0x548c 013034 jam lmp_detach ,mem_lmo_opcode2 
+0x548d 013035 jam authentication_failure_error ,mem_disconn_reason_send 
+0x548e 013036 rtn 
+:      013037 authentication_ok:
+0x548f 013038 call authentication_ok_common 
+0x5490 013039 fetch 1 ,mem_ssp_enable 
+0x5491 013040 branch pairing_success ,blank 
+0x5492 013041 rtn 
+:      013044 authentication_ok_common:
+0x5493 013045 call copy_aco 
+0x5494 013046 call linkkey_ready 
+0x5495 013047 fetch 1 ,mem_op 
+0x5496 013048 isolate1 op_auth_req ,pdata 
+0x5497 013049 set0 op_auth_req ,pdata 
+0x5498 013050 store 1 ,mem_op 
+0x5499 013051 fetch 1 ,mem_conn_sm 
+0x549a 013052 beq conn_sm_auth_wait ,authentication_ok_conn_sm 
+0x549b 013053 beq conn_sm_pairing_wait ,authentication_ok_conn_sm 
+0x549c 013054 rtn 
+:      013055 authentication_ok_conn_sm:
+0x549d 013056 fetch 1 ,mem_pairing_auth 
+0x549e 013057 rtnne defalt_pairing_auth 
+0x549f 013058 fetch 1 ,mem_state_map 
+0x54a0 013059 rtnbit1 smap_encryption 
+0x54a1 013060 branch host_create_conn_encrypt 
+:      013062 parse_lmp_comb_key:
+0x54a2 013063 arg mem_rxbuf + 1 ,rega 
+0x54a3 013064 arg mem_kinit ,regb 
+0x54a4 013065 arg mem_random_number ,contw 
+0x54a5 013066 call xor16 
+0x54a6 013067 arg mem_plap ,rega 
+0x54a7 013068 call generate_linkkey 
+0x54a8 013069 jam lmp_au_rand ,mem_lmo_opcode2 
+0x54a9 013070 fetch 1 ,mem_state 
+0x54aa 013071 bbit0 state_combkey ,lmp_generate_key 
+0x54ab 013072 rtn 
+:      013074 parse_lmp_name_res:
+0x54ac 013075 fetch 2 ,mem_len 
+0x54ad 013076 add pdata ,-3 ,loopcnt 
+0x54ae 013077 fetcht 1 ,mem_rxbuf + 1 
+0x54af 013078 setarg mem_tmp_buffer 
+0x54b0 013079 iadd temp ,contw 
+0x54b1 013080 arg mem_rxbuf + 3 ,contr 
+0x54b2 013081 call memcpy 
+0x54b3 013082 fetcht 1 ,mem_name_offset 
+0x54b4 013083 fetch 1 ,mem_rxbuf + 2 
+0x54b5 013084 isub temp ,pdata 
+0x54b6 013085 sub pdata ,14 ,null 
+0x54b7 013086 branch parse_lmp_name_res_end ,positive 
+0x54b8 013087 add temp ,14 ,pdata 
+0x54b9 013088 store 1 ,mem_name_offset 
+0x54ba 013089 jam lmp_name_req ,mem_lmo_opcode2 
+0x54bb 013090 rtn 
+:      013091 parse_lmp_name_res_end:
+0x54bc 013092 fetch 1 ,mem_state_map 
+0x54bd 013093 set1 smap_name_res ,pdata 
+0x54be 013094 store 1 ,mem_state_map 
+0x54bf 013095 bbit1 smap_name_req ,lmp_disconnect 
+0x54c0 013096 rtn 
+:      013097 parse_lmp_name_req:
+0x54c1 013098 fetch 1 ,mem_rxbuf + 1 
+0x54c2 013099 store 1 ,mem_lmi_opcode2 
+0x54c3 013100 jam lmp_name_res ,mem_lmo_opcode2 
+0x54c4 013101 rtn 
+:      013103 parse_lmp_conn_req:
+0x54c5 013104 branch accept_lmp_msg 
+:      013106 parse_lmp_timing_accuracy_req:
+0x54c6 013107 jam lmp_timing_accuracy_res ,mem_lmo_opcode2 
+0x54c7 013108 rtn 
+:      013110 parse_lmp_features_req:
+0x54c8 013111 jam lmp_features_res ,mem_lmo_opcode2 
+0x54c9 013112 rtn 
+:      013114 parse_lmp_version_req:
+0x54ca 013115 jam lmp_version_res ,mem_lmo_opcode2 
+0x54cb 013116 rtn 
+:      013118 parse_lmp_supervision_timeout:
+0x54cc 013121 rtn 
+:      013125 parse_lmp_sniff_subrating_req:
+0x54cd 013126 fetch 2 ,mem_tsniff 
+0x54ce 013127 iforce temp 
+0x54cf 013128 fetch 1 ,mem_rxbuf + 2 
+0x54d0 013129 store 1 ,mem_subsniff_rate 
+0x54d1 013130 imul32 temp ,temp 
+0x54d2 013131 fetch 2 ,mem_rxbuf + 3 
+0x54d3 013132 lshift pdata ,pdata 
+0x54d4 013133 store 2 ,mem_subsniff_tcmax 
+0x54d5 013134 fetch 4 ,mem_rxbuf + 5 
+0x54d6 013135 lshift pdata ,pdata 
+0x54d7 013136 store 4 ,mem_subsniff_instant 
+0x54d8 013138 deposit temp 
+0x54d9 013139 store 2 ,mem_subsniff_tsniff 
+0x54da 013140 rtn 
+:      013141 parse_lmpext_packet_type_table_req:
+0x54db 013142 fetcht 1 ,mem_ptt 
+0x54dc 013143 fetch 1 ,mem_rxbuf + 2 
+0x54dd 013144 ixor temp ,null 
+0x54de 013145 nbranch reject_unknown_ext_packet ,zero 
+0x54df 013146 isolate1 0 ,pdata 
+0x54e0 013147 fetch 1 ,mem_state_map 
+0x54e1 013148 setflag true ,smap_edr ,pdata 
+0x54e2 013149 store 1 ,mem_state_map 
+0x54e3 013150 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x54e4 013151 jam lmp_packet_type_table_req ,mem_lmi_opcode2 
+0x54e5 013152 rtn 
+:      013155 parse_lmp_sniff_subrating_res:
+:      013156 parse_lmp_preferred_rate:
+:      013157 parse_lmp_max_power:
+:      013158 parse_lmp_min_power:
+0x54e6 013159 rtn 
+:      013160 parse_lmp_page_mode_req:
+0x54e7 013162 branch accept_lmp_msg 
+:      013163 parse_lmp_page_scan_mode_req:
+0x54e8 013166 branch accept_lmp_msg 
+:      013170 parse_lmp_slot_offset:
+0x54e9 013171 fetch 2 ,mem_rxbuf + 1 
+0x54ea 013172 store 2 ,mem_slot_offset 
+0x54eb 013173 rtn 
+:      013175 parse_lmp_sniff_req_check_sniff_para:
+0x54ec 013176 fetch 2 ,mem_rxbuf + 4 
+0x54ed 013177 fetcht 1 ,mem_lpm_mult 
+0x54ee 013178 imul32 temp ,pdata 
+0x54ef 013179 arg 0x640 ,temp 
+0x54f0 013180 isub temp ,null 
+0x54f1 013182 rtn 
+:      013184 parse_lmp_sniff_req:
+0x54f2 013185 call parse_lmp_sniff_req_check_sniff_para 
+0x54f3 013186 branch lmp_reject_sniff ,positive 
+0x54f4 013187 fetch 1 ,mem_state 
+0x54f5 013188 bbit1 state_insniff ,lmp_reject_sniff 
+0x54f6 013189 fetch 2 ,mem_rxbuf + 2 
+0x54f7 013190 lshift pdata ,pdata 
+0x54f8 013191 store 2 ,mem_dsniff 
+0x54f9 013192 fetch 2 ,mem_rxbuf + 4 
+0x54fa 013193 lshift pdata ,pdata 
+0x54fb 013194 store 2 ,mem_tsniff 
+0x54fc 013195 fetch 2 ,mem_rxbuf + 6 
+0x54fd 013196 store 1 ,mem_sniff_attempt 
+0x54fe 013197 iforce temp 
+0x54ff 013198 fetch 2 ,mem_rxbuf + 8 
+0x5500 013199 store 1 ,mem_sniff_timeout 
+0x5501 013200 isub temp ,null 
+0x5502 013201 nbranch set_big_value_to_attempt ,positive 
+0x5503 013202 store 1 ,mem_sniff_attempt 
+:      013203 set_big_value_to_attempt:
+0x5504 013205 jam lmp_accepted ,mem_lmo_opcode2 
+0x5505 013206 jam lmp_sniff_req ,mem_lmi_opcode2 
+0x5506 013207 rtn 
+:      013209 lmp_reject_sniff:
+0x5507 013210 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5508 013211 branch reject_lmp_packet 
+:      013213 parse_lmp_start_encryption_req:
+0x5509 013214 call accept_lmp_msg 
+0x550a 013215 call lmp_copy_rand 
+0x550b 013216 call function_e3 
+0x550c 013217 branch start_encryption 
+:      013219 parse_lmp_stop_encryption_req:
+0x550d 013220 call accept_lmp_msg 
+0x550e 013221 branch stop_encryption 
+:      013224 parse_lmp_switch_req:
+0x550f 013225 fetch 4 ,mem_rxbuf + 1 
+0x5510 013226 lshift pdata ,pdata 
+0x5511 013228 branch parse_lmp_switch_accept ,master 
+0x5512 013229 fetcht 1 ,mem_link_key_exists 
+0x5513 013230 nbranch parse_lmp_switch_req_clear_mark ,blank 
+:      013231 parse_lmp_switch_req_not_accept:
+0x5514 013232 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5515 013233 jam lmp_switch_req ,mem_lmi_opcode2 
+0x5516 013234 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5517 013235 rtn 
+:      013236 parse_lmp_switch_req_clear_mark:
+0x5518 013237 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x5519 013238 jam 0 ,mem_conn_sm 
+0x551a 013239 branch role_switch_prepare 
+:      013241 parse_lmp_switch_accept:
+0x551b 013242 call role_switch_prepare 
+0x551c 013243 set1 mark_reconn_recieve_switch ,mark 
+0x551d 013244 fetch 1 ,mem_connection_options 
+0x551e 013245 set0 connection_switch ,pdata 
+0x551f 013246 store 1 ,mem_connection_options 
+0x5520 013247 branch accept_lmp_msg 
+:      013251 parse_lmp_temp_rand:
+:      013252 parse_lmp_temp_key:
+:      013253 parse_lmp_timing_accuracy_res:
+:      013254 parse_lmp_unit_key:
+:      013255 parse_lmp_use_semi_permanend_key:
+0x5521 013256 rtn 
+:      013259 parse_lmp_unsniff_req:
+0x5522 013260 jam lmp_accepted ,mem_lmo_opcode2 
+0x5523 013261 jam lmp_unsniff_req ,mem_lmi_opcode2 
+0x5524 013262 jam bt_evt_remote_unsniff ,mem_fifo_temp 
+0x5525 013263 call ui_ipc_send_event 
+0x5526 013264 branch sniff_exit 
+:      013266 parse_lmp_encapsulated_header:
+0x5527 013267 fetch 1 ,mem_rxbuf + 1 
+0x5528 013268 bne encapsulated_major_type_p192 ,parse_lmp_encapsulated_header_reject 
+0x5529 013269 fetch 1 ,mem_rxbuf + 2 
+0x552a 013270 bne encapsulated_minor_type_p192 ,parse_lmp_encapsulated_header_reject 
+0x552b 013271 fetch 1 ,mem_rxbuf + 3 
+0x552c 013272 bne encapsulated_len_p192 ,parse_lmp_encapsulated_header_reject 
+0x552d 013273 call check_localsm 
+0x552e 013274 branch parse_lmp_encapsulated_header_master ,true 
+0x552f 013275 jam sp_stat_key_recv ,mem_sp_state 
+:      013276 parse_lmp_encapsulated_header_master:
+0x5530 013277 jam lmp_accepted ,mem_lmo_opcode2 
+0x5531 013278 jam lmp_encapsulated_header ,mem_lmi_opcode2 
+0x5532 013279 branch parse_rx_done 
+:      013281 parse_lmp_encapsulated_header_reject:
+0x5533 013282 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5534 013283 branch reject_lmp_packet 
+:      013285 parse_lmp_accepted_encapsulated_header:
+0x5535 013288 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+0x5536 013290 rtn 
+:      013291 parse_lmp_accepted_simple_pairing_number:
+0x5537 013292 fetch 1 ,mem_ssp_mode_flag 
+0x5538 013293 beq ssp_mode_ssp_pin_flag ,parse_lmp_accepted_simple_pairing_number_ssp_pin 
+0x5539 013294 beq ssp_mode_passkey_entry_flag ,parse_lmp_accepted_simple_pairing_number_passkey 
+:      013295 parse_lmp_accepted_simple_pairing_number_common:
+0x553a 013296 call check_localsm 
+0x553b 013297 rtn true 
+0x553c 013298 jam sp_stat_confirm_recv ,mem_sp_state 
+0x553d 013299 rtn 
+:      013301 parse_lmp_accepted_simple_pairing_number_ssp_pin:
+0x553e 013302 call g_noninit_number_confirm 
+0x553f 013303 jam bt_evt_bt_gkey_generate ,mem_fifo_temp 
+0x5540 013304 call ui_ipc_send_event 
+0x5541 013305 branch parse_lmp_accepted_simple_pairing_number_common 
+:      013308 parse_lmp_accepted_simple_pairing_number_passkey:
+0x5542 013309 call check_localsm 
+0x5543 013310 rtn true 
+0x5544 013311 fetch 1 ,mem_authentication_passkey_times 
+0x5545 013312 beq 19 ,authentication_passkey_end 
+0x5546 013313 increase 1 ,pdata 
+0x5547 013314 store 1 ,mem_authentication_passkey_times 
+:      013317 authentication_passkey:
+0x5548 013318 jam sp_flag_commit ,mem_sp_flag 
+0x5549 013319 jam sp_stat_commit_calc ,mem_sp_state 
+0x554a 013320 fetch 1 ,mem_authentication_passkey_times 
+0x554b 013321 copy pdata ,queue 
+0x554c 013322 fetch 6 ,mem_pin 
+0x554d 013323 qisolate1 pdata 
+0x554e 013324 setarg 0x80 
+0x554f 013325 setflag true ,0 ,pdata 
+0x5550 013326 store 1 ,mem_passkey_1bit 
+0x5551 013327 rtn 
+:      013329 authentication_passkey_end:
+0x5552 013330 jam sp_stat_confirm_recv ,mem_sp_state 
+0x5553 013331 rtn 
+:      013333 parse_lmp_accepted_dhkey_check:
+0x5554 013334 call parse_lmp_accepted_dhkey_check_common 
+:      013335 pairing_success:
+0x5555 013336 fetch 1 ,mem_flag_pairing_state 
+0x5556 013337 rtn blank 
+0x5557 013338 jam flag_pairing_state_not_pairing ,mem_flag_pairing_state 
+0x5558 013339 jam bt_evt_bt_pairing_success ,mem_fifo_temp 
+0x5559 013340 branch ui_ipc_send_event 
+:      013343 parse_lmp_accepted_dhkey_check_common:
+0x555a 013345 call check_localsm 
+0x555b 013346 ncall g_noninit ,true 
+0x555c 013347 call g_init ,true 
+0x555d 013348 call check_localsm 
+0x555e 013349 rtn true 
+0x555f 013350 jam sp_stat_link_key_calc ,mem_sp_state 
+0x5560 013351 jam sp_flag_commit ,mem_sp_flag 
+0x5561 013352 rtn 
+:      013354 parse_simple_pairing_confirm:
+0x5562 013355 arg mem_sp_confirm_remote ,contw 
+0x5563 013356 arg mem_rxbuf + 1 ,contr 
+0x5564 013357 call memcpy16 
+0x5565 013358 fetch 1 ,mem_ssp_mode_flag 
+0x5566 013359 rtneq ssp_mode_passkey_entry_flag 
+0x5567 013360 branch master_set_mem_master_sp_flag 
+:      013362 parse_lmp_encapsulated_payload:
+0x5568 013363 fetch 1 ,mem_master_sp_state 
+0x5569 013364 beq sp_stat_random_send ,parse_encapsulated_payload_master 
+0x556a 013365 fetch 1 ,mem_sp_state 
+0x556b 013366 bne sp_stat_key_recv ,parse_lmp_encapsulated_payload_reject 
+:      013367 parse_encapsulated_payload_master:
+0x556c 013368 fetch 1 ,mem_sp_remote_key_recv_count 
+0x556d 013369 sub pdata ,0x20 ,contw 
+0x556e 013370 nbranch parse_lmp_encapsulated_payload_reject ,positive 
+0x556f 013371 arg mem_sp_pubkey_remote ,contw 
+0x5570 013372 iadd contw ,contw 
+0x5571 013373 fetch 8 ,mem_rxbuf + 1 
+0x5572 013374 istore 8 ,contw 
+0x5573 013375 fetch 8 ,mem_rxbuf + 9 
+0x5574 013376 istore 8 ,contw 
+0x5575 013377 fetch 1 ,mem_sp_remote_key_recv_count 
+0x5576 013378 increase 16 ,pdata 
+0x5577 013379 store 1 ,mem_sp_remote_key_recv_count 
+0x5578 013380 bne encapsulated_len_p192 ,accept_lmp_msg 
+:      013381 parse_lmp_encapsulated_payload_completed:
+0x5579 013382 call check_localsm 
+0x557a 013383 branch accept_lmp_msg ,true 
+0x557b 013384 jam sp_key_valid ,mem_sp_remote_key_invalid 
+0x557c 013385 jam sp_stat_key_generate ,mem_sp_state 
+0x557d 013386 jam sp_flag_commit ,mem_sp_flag 
+0x557e 013387 branch accept_lmp_msg 
+:      013388 parse_lmp_encapsulated_payload_reject:
+0x557f 013389 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5580 013390 branch reject_lmp_packet 
+:      013391 parse_lmp_accepted_encapsulated_payload:
+0x5581 013392 fetch 1 ,mem_sp_local_key_send_count 
+0x5582 013393 beq encapsulated_len_p192 ,parse_lmp_encapsulated_payload_all_accepted 
+0x5583 013394 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+0x5584 013395 branch parse_rx_done 
+:      013397 parse_lmp_encapsulated_payload_all_accepted:
+0x5585 013398 call check_localsm 
+0x5586 013399 branch parse_lmp_encapsulated_payload_all_accepted_master ,true 
+0x5587 013400 fetch 1 ,mem_ssp_mode_flag 
+0x5588 013401 beq ssp_mode_passkey_entry_flag ,parse_lmp_encapsulated_payload_all_accepted_get_passkey 
+0x5589 013402 jam sp_flag_commit ,mem_sp_flag 
+0x558a 013403 jam sp_stat_commit_calc ,mem_sp_state 
+0x558b 013404 branch parse_rx_done 
+:      013406 parse_lmp_encapsulated_payload_all_accepted_get_passkey:
+0x558c 013407 jam bt_evt_bt_get_passkey ,mem_fifo_temp 
+0x558d 013408 branch ui_ipc_send_event 
+:      013411 parse_lmp_encapsulated_payload_all_accepted_master:
+0x558e 013413 branch parse_rx_done 
+:      013415 parse_lmp_simple_pairing_number:
+0x558f 013416 fetch 1 ,mem_master_sp_state 
+0x5590 013417 beq sp_stat_random_send ,parse_lmp_simple_pairing_number_master 
+0x5591 013418 fetch 1 ,mem_sp_state 
+0x5592 013419 bne sp_stat_random_recv ,parse_lmp_simple_pairing_number_reject 
+:      013420 parse_lmp_simple_pairing_number_master:
+0x5593 013421 arg mem_sp_random_remote ,contw 
+0x5594 013422 fetch 8 ,mem_rxbuf + 1 
+0x5595 013423 istore 8 ,contw 
+0x5596 013424 fetch 8 ,mem_rxbuf + 9 
+0x5597 013425 istore 8 ,contw 
+0x5598 013426 call check_localsm 
+0x5599 013427 branch parse_lmp_simple_pairing_number_master0 ,true 
+0x559a 013428 jam sp_stat_random_send ,mem_sp_state 
+0x559b 013429 jam sp_flag_commit ,mem_sp_flag 
+0x559c 013430 branch accept_lmp_msg 
+:      013431 parse_lmp_simple_pairing_number_master0:
+0x559d 013432 jam sp_stat_commit_calc ,mem_master_sp_state 
+0x559e 013433 branch master_set_mem_master_sp_flag 
+:      013436 parse_lmp_simple_pairing_number_reject:
+0x559f 013437 jam pdu_not_allowed ,mem_lmo_reason2 
+0x55a0 013438 branch reject_lmp_packet 
+:      013440 parse_dhkey_check:
+0x55a1 013441 fetch 1 ,mem_master_sp_state 
+0x55a2 013442 beq sp_stat_confirm_send ,parse_dhkey_check_master 
+0x55a3 013443 fetch 1 ,mem_sp_state 
+0x55a4 013444 bne sp_stat_confirm_recv ,parse_lmp_dhkey_check_reject 
+:      013445 parse_dhkey_check_master:
+0x55a5 013446 arg mem_sp_check_result ,contw 
+0x55a6 013447 arg mem_rxbuf + 1 ,contr 
+0x55a7 013448 call memcpy16 
+0x55a8 013449 call check_localsm 
+0x55a9 013450 branch parse_dhkey_check_master0 ,true 
+0x55aa 013451 fetch 1 ,mem_ssp_mode_flag 
+0x55ab 013452 beq ssp_mode_ssp_pin_flag ,number_comparison_mode 
+:      013453 number_comparison_successed:
+0x55ac 013454 jam 0 ,mem_flag_mode_ssp_pin 
+0x55ad 013455 jam sp_stat_confirm_check ,mem_sp_state 
+0x55ae 013456 jam sp_flag_commit ,mem_sp_flag 
+0x55af 013457 jam lmp_dhkey_check ,mem_lmi_opcode2 
+0x55b0 013458 branch parse_rx_done 
+:      013460 parse_dhkey_check_master0:
+0x55b1 013461 jam sp_stat_confirm_check ,mem_master_sp_state 
+0x55b2 013462 jam sp_flag_commit ,mem_master_sp_flag 
+0x55b3 013463 branch parse_rx_done 
+:      013464 parse_lmp_dhkey_check_reject:
+0x55b4 013465 jam pdu_not_allowed ,mem_lmo_reason2 
+0x55b5 013466 branch reject_lmp_packet 
+:      013468 number_comparison_mode:
+0x55b6 013469 fetch 1 ,mem_flag_mode_ssp_pin 
+0x55b7 013470 bbit1 flag_mode_ssp_pin_reviceve_comparison_bit ,comparison_result 
+0x55b8 013471 set1 flag_mode_ssp_pin_recieve_dhkey_bit ,pdata 
+0x55b9 013472 store 1 ,mem_flag_mode_ssp_pin 
+0x55ba 013473 rtn 
+:      013475 comparison_result:
+0x55bb 013476 bbit1 flag_mode_ssp_pin_comparison_result_bit ,number_comparison_successed 
+0x55bc 013477 jam 0 ,mem_flag_mode_ssp_pin 
+0x55bd 013478 branch parse_lmp_dhkey_check_reject 
+:      013481 parse_lmp_clkoffset_res:
+0x55be 013482 branch parse_rx_done 
+:      013484 parse_lmp_encryption_mode_req:
+0x55bf 013485 fetch 1 ,mem_connection_options 
+0x55c0 013486 set0 connection_encrypt 
+0x55c1 013487 store 1 ,mem_connection_options 
+0x55c2 013488 call accept_lmp_msg 
+0x55c3 013489 nrtn master 
+0x55c4 013490 fetch 1 ,mem_rxbuf + 1 
+0x55c5 013491 fetcht 1 ,mem_op 
+0x55c6 013492 setflag blank ,op_stop_enc ,temp 
+0x55c7 013493 nsetflag blank ,op_start_enc ,temp 
+0x55c8 013494 storet 1 ,mem_op 
+0x55c9 013495 rtn 
+:      013497 parse_lmp_features_res:
+0x55ca 013498 fetcht 8 ,mem_rxbuf + 1 
+:      013499 parse_lmp_features_res_not_hci:
+0x55cb 013500 fetch 1 ,mem_conn_sm 
+0x55cc 013501 rtnne conn_sm_wait_features_res 
+0x55cd 013503 fetch 1 ,mem_connection_options 
+0x55ce 013504 bbit0 connection_feature_ext ,parse_lmp_send_conn 
+0x55cf 013506 jam conn_sm_send_features_ext ,mem_conn_sm 
+0x55d0 013507 rtn 
+:      013508 parse_lmp_send_conn:
+0x55d1 013509 jam conn_sm_send_conn_req ,mem_conn_sm 
+0x55d2 013510 rtn 
+:      013511 parse_lmp_test_activate:
+0x55d3 013512 fetch 1 ,mem_debug_config 
+0x55d4 013513 store 1 ,mem_test_mode_old_debug_config 
+0x55d5 013514 jam lmp_accepted ,mem_lmo_opcode2 
+0x55d6 013515 jam lmp_test_activate ,mem_lmi_opcode2 
+0x55d7 013516 rtn 
+:      013517 parse_lmp_test_control:
+0x55d8 013520 jam lmp_accepted ,mem_lmo_opcode2 
+0x55d9 013521 jam lmp_test_control ,mem_lmi_opcode2 
+0x55da 013522 force 9 ,loopcnt 
+0x55db 013523 arg mem_rxbuf + 1 ,contr 
+0x55dc 013524 arg mem_temp_payload ,contw 
+:      013525 parse_lmp_test_xor:
+0x55dd 013526 ifetch 1 ,contr 
+0x55de 013527 xor_into 0x55 ,pdata 
+0x55df 013528 istore 1 ,contw 
+0x55e0 013529 loop parse_lmp_test_xor 
+0x55e1 013530 fetch 1 ,test_mode_scenario 
+0x55e2 013531 fetcht 1 ,mem_tester_emulate 
+0x55e3 013532 set0 tester_no_whitening ,temp 
+0x55e4 013533 set0 tester_pattern_test ,temp 
+0x55e5 013534 beq exit_test_mode ,parse_lmp_test_control_exit 
+0x55e6 013535 beq pause_test_mode ,parse_lmp_test_control_pause 
+0x55e7 013536 beq closed_loop_back_acl ,parse_lmp_test_control_loopback 
+0x55e8 013537 beq acl_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+0x55e9 013538 beq closed_loop_back_sco ,parse_lmp_test_control_loopback 
+0x55ea 013539 beq sco_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+0x55eb 013540 beq zero_pattern ,parse_lmp_test_control_pattern 
+0x55ec 013541 beq one_pattern ,parse_lmp_test_control_pattern 
+0x55ed 013542 beq alt_pattern ,parse_lmp_test_control_pattern 
+0x55ee 013543 beq alt2_pattern ,parse_lmp_test_control_pattern 
+0x55ef 013544 beq pseudorandom ,parse_lmp_test_control_pattern 
+0x55f0 013545 rtn 
+:      013546 parse_lmp_test_control_exit:
+0x55f1 013548 fetch 1 ,mem_tester_emulate 
+0x55f2 013549 set1 tester_exit ,pdata 
+0x55f3 013550 set1 tester_change ,pdata 
+0x55f4 013551 store 1 ,mem_tester_emulate 
+0x55f5 013552 rtn 
+:      013553 parse_lmp_test_control_pattern:
+0x55f6 013554 set1 tester_pattern_test ,temp 
+0x55f7 013555 jam 5 ,mem_lch_code 
+0x55f8 013556 fetch 2 ,test_mode_data_length 
+0x55f9 013557 iforce loopcnt 
+0x55fa 013558 store 2 ,mem_len 
+0x55fb 013559 arg mem_rxbuf ,contw 
+0x55fc 013560 call pn9 
+:      013561 parse_lmp_test_control_loopback_nowhite:
+0x55fd 013562 set1 tester_no_whitening ,temp 
+:      013563 parse_lmp_test_control_loopback:
+0x55fe 013564 set1 tester_change ,temp 
+0x55ff 013565 force 0 ,pdata 
+0x5600 013566 store 1 ,mem_slave_rcvcnt 
+0x5601 013567 store 2 ,mem_tst_pktcnt_crc 
+0x5602 013568 store 2 ,mem_tst_pktcnt_dmh 
+0x5603 013569 store 2 ,mem_tst_pktcnt_hec 
+0x5604 013570 store 2 ,mem_tst_pktcnt_sync 
+0x5605 013571 fetch 1 ,test_mode_hopping_mode 
+0x5606 013572 compare fixed_freq ,pdata ,0xff 
+0x5607 013573 setflag true ,tester_fixed_freq ,temp 
+0x5608 013574 storet 1 ,mem_tester_emulate 
+0x5609 013575 rtn 
+:      013577 parse_lmp_test_control_pause:
+0x560a 013578 set0 mark_testmode ,mark 
+0x560b 013579 jam 0 ,mem_tester_emulate 
+0x560c 013580 fetch 1 ,mem_debug_config 
+0x560d 013581 set0 debug_tx_pattern ,pdata 
+0x560e 013582 store 1 ,mem_debug_config 
+0x560f 013583 rtn 
+:      013589 lmp_copy_rand:
+0x5610 013590 arg mem_rxbuf + 1 ,contr 
+0x5611 013591 arg mem_random_number ,contw 
+0x5612 013592 branch memcpy16 
+:      013594 lmp_generate_key:
+0x5613 013595 jam lmp_comb_key ,mem_lmo_opcode2 
+0x5614 013596 rtn 
+:      013598 lmp_start_encryption:
+0x5615 013599 nrtn master 
+0x5616 013600 jam lmp_start_encryption_req ,mem_lmo_opcode2 
+0x5617 013601 rtn 
+:      013603 lmp_accept_inrand:
+0x5618 013604 arg mem_lap ,rega 
+0x5619 013605 call generate_kinit 
+0x561a 013606 jam lmp_accepted ,mem_lmo_opcode2 
+0x561b 013607 jam lmp_in_rand ,mem_lmi_opcode2 
+0x561c 013608 rtn 
+:      013610 lmp_disconnect:
+0x561d 013611 jam 10 ,mem_conn_timer 
+0x561e 013612 jam lmp_detach ,mem_lmo_opcode2 
+0x561f 013613 jam local_host ,mem_disconn_reason_send 
+0x5620 013614 rtn 
+:      013620 send_lmp:
+0x5621 013621 set1 mark_ext_patch ,mark 
+0x5622 013622 bpatch patch2b_0 ,mem_patch2b 
+0x5623 013623 disable user 
+0x5624 013624 call lmo_fifo_process 
+0x5625 013625 fetch 1 ,mem_lmp_to_send 
+0x5626 013626 rtn blank 
+0x5627 013631 bbit1 7 ,send_lmp_escape 
+:      013632 send_lmp0:
+0x5628 013633 beq lmp_name_req ,send_lmp_name_req 
+0x5629 013634 beq lmp_name_res ,send_lmp_name_res 
+0x562a 013635 beq lmp_accepted ,send_lmp_accepted 
+0x562b 013636 beq lmp_not_accepted ,send_lmp_not_accepted 
+0x562c 013637 beq lmp_features_req ,send_lmp_features_req 
+0x562d 013638 beq lmp_features_res ,send_lmp_features_res 
+0x562e 013639 beq lmp_timing_accuracy_res ,send_lmp_timing_accuracy_res 
+0x562f 013640 beq lmp_version_req ,send_lmp_version_req 
+0x5630 013641 beq lmp_version_res ,send_lmp_version_res 
+0x5631 013642 beq lmp_setup_complete ,send_lmp_setup_complete 
+0x5632 013643 beq lmp_supervision_timeout ,send_lmp_superto 
+0x5633 013644 beq lmp_host_connection_req ,send_lmp_no_payload 
+0x5634 013645 beq lmp_in_rand ,send_lmp_inrand 
+0x5635 013646 beq lmp_comb_key ,send_lmp_comb_key 
+0x5636 013647 beq lmp_au_rand ,send_lmp_aurand 
+0x5637 013648 beq lmp_sres ,send_lmp_sres 
+0x5638 013649 beq lmp_encryption_mode_req ,send_lmp_encryption_mode_req 
+0x5639 013650 beq lmp_encryption_key_size_req ,send_lmp_encryption_key_size_req 
+0x563a 013651 beq lmp_start_encryption_req ,send_lmp_start_encryption 
+0x563b 013652 beq lmp_detach ,send_lmp_detach 
+0x563c 013653 beq lmp_quality_of_service_req ,send_lmp_quality_of_service_req 
+0x563d 013654 beq lmp_unit_key ,send_lmp_unit_key 
+0x563e 013656 beq lmp_incr_power_req ,send_lmp_inc_power 
+0x563f 013657 beq lmp_clkoffset_res ,send_lmp_clkoffset_res 
+0x5640 013658 beq lmp_max_power ,send_lmp_nopayload_reply 
+0x5641 013659 beq lmp_max_slot ,send_lmp_max_slot 
+0x5642 013660 beq lmp_max_slot_req ,send_lmp_max_slot_req 
+0x5643 013661 beq lmp_min_power ,send_lmp_nopayload_reply 
+0x5644 013662 beq lmp_slot_offset ,send_lmp_slot_offset 
+0x5645 013663 beq lmp_switch_req ,send_lmp_switch_req 
+0x5646 013664 beq lmp_sniff_req ,send_lmp_sniff_req 
+0x5647 013665 beq lmp_stop_encryption_req ,send_lmp_stop_encryption_req 
+0x5648 013666 beq lmp_timing_accuracy_req ,send_lmp_timing_accuracy_req 
+0x5649 013667 beq lmp_unsniff_req ,send_lmp_unsniff_req 
+0x564a 013668 beq lmp_encapsulated_header ,send_lmp_encapsulated_header 
+0x564b 013669 beq lmp_encapsulated_payload ,send_lmp_encapsulated_payload 
+0x564c 013670 beq lmp_simple_pairing_confirm ,send_lmp_simple_pairing_comfirm 
+0x564d 013671 beq lmp_simple_pairing_number ,send_lmp_simple_pairing_number 
+0x564e 013672 beq lmp_dhkey_check ,send_lmp_dhkey_check 
+0x564f 013673 beq lmp_auto_rate ,send_lmp_auto_rate 
+0x5650 013674 beq lmp_enc_key_size_mask_res ,send_lmp_enc_key_size_mask_res 
+0x5651 013676 beq lmp_clkoffset_req ,send_lmp_clkoffset_req 
+0x5652 013677 beq lmp_quality_of_service ,send_lmp_quality_of_service 
+0x5653 013678 beq lmp_test_activate ,send_lmp_test_activate 
+0x5654 013679 beq lmp_test_control ,send_lmp_test_control 
+:      013680 send_lmp_error:
+0x5655 013681 branch assert 
+0x5656 013682 rtn 
+:      013683 send_lmp_escape:
+0x5657 013684 beq lmp_ext_accepted ,send_lmpext_accepted 
+0x5658 013685 beq lmp_ext_features_res ,send_lmpext_features_res 
+0x5659 013686 beq lmp_not_accepted_ext ,send_lmpext_not_accepted 
+0x565a 013687 beq lmp_ext_features_req ,send_lmpext_features_req 
+0x565b 013688 beq lmp_packet_type_table_req ,send_lmpext_packet_type_table_req 
+0x565c 013689 beq lmp_pause_encryption_req ,send_lmpext_pause_encryption_req 
+0x565d 013690 beq lmp_io_cap_req ,send_lmp_io_cap_req 
+0x565e 013691 beq lmp_io_cap_res ,send_lmpext_io_cap_res 
+0x565f 013692 beq lmp_sniff_subrating_req ,send_lmpext_sniff_subrating_req 
+0x5660 013693 beq lmp_sniff_subrating_res ,send_lmpext_sniff_subrating_res 
+0x5661 013694 branch assert 
+:      013700 send_lmp_accepted:
+0x5662 013701 force 2 ,pdata 
+0x5663 013702 call msg_send_lmp 
+0x5664 013703 fetch 1 ,mem_lmi_opcode 
+0x5665 013704 istore 1 ,contw 
+0x5666 013705 call send_lmp_follow 
+0x5667 013706 set1 mark_ext_patch ,mark 
+0x5668 013707 bpatch patch2b_1 ,mem_patch2b 
+0x5669 013708 fetch 1 ,mem_lmi_opcode 
+0x566a 013709 beq lmp_in_rand ,send_lmp_accepted_inrand 
+0x566b 013710 beq lmp_encryption_mode_req ,send_lmp_accepted_enc_mode 
+0x566c 013711 beq lmp_encryption_key_size_req ,send_lmp_accepted_enc_key 
+0x566d 013712 beq lmp_sniff_req ,send_lmp_accept_sniff_req 
+0x566e 013713 beq lmp_host_connection_req ,send_lmp_accepted_connection 
+0x566f 013714 beq lmp_dhkey_check ,send_lmp_accept_dhkey_check 
+0x5670 013715 beq lmp_start_encryption_req ,send_create_conn_start_l2cap_timer_sm 
+0x5671 013716 rtn 
+:      013718 send_create_conn_start_l2cap_timer_sm:
+0x5672 013719 fetch 1 ,mem_conn_sm 
+0x5673 013720 rtn blank 
+0x5674 013721 jam conn_sm_wait_done ,mem_conn_sm 
+0x5675 013722 setarg timer_enpt_waite 
+0x5676 013723 arg enpt_delay_timer ,queue 
+0x5677 013724 branch timer_init 
+:      013726 send_lmp_accept_sniff_req:
+0x5678 013727 branch sniff_init 
+:      013728 send_lmp_not_accepted:
+0x5679 013729 force 3 ,pdata 
+0x567a 013730 call msg_send_lmp 
+0x567b 013731 fetch 1 ,mem_lmi_opcode 
+0x567c 013732 beq lmp_au_rand ,send_not_accept_aurand 
+0x567d 013733 istore 1 ,contw 
+0x567e 013734 fetch 1 ,mem_lmo_reason 
+0x567f 013735 istore 1 ,contw 
+0x5680 013736 branch send_lmp_follow 
+:      013738 send_not_accept_aurand:
+0x5681 013739 istore 1 ,contw 
+0x5682 013740 fetch 1 ,mem_lmo_reason 
+0x5683 013741 istore 1 ,contw 
+0x5684 013742 arg mem_sres_tid ,temp 
+0x5685 013743 branch special_tid_store 
+:      013745 send_lmpext_accepted:
+0x5686 013746 force 4 ,queue 
+0x5687 013747 call send_lmpext 
+0x5688 013748 setarg lmp_escape 
+0x5689 013749 istore 1 ,contw 
+0x568a 013750 fetch 1 ,mem_lmi_opcode 
+0x568b 013751 set0 7 ,pdata 
+0x568c 013752 istore 1 ,contw 
+0x568d 013753 fetch 1 ,mem_lmi_opcode 
+0x568e 013754 branch send_lmp_follow 
+:      013756 send_lmpext_not_accepted:
+0x568f 013757 force 5 ,queue 
+0x5690 013758 call send_lmpext 
+0x5691 013759 setarg lmp_escape 
+0x5692 013760 istore 1 ,contw 
+0x5693 013761 fetch 1 ,mem_lmi_opcode 
+0x5694 013762 set0 7 ,pdata 
+0x5695 013763 istore 1 ,contw 
+0x5696 013764 fetch 1 ,mem_lmo_reason 
+0x5697 013765 istore 1 ,contw 
+0x5698 013766 branch send_lmp_follow 
+:      013769 send_lmp_accepted_inrand:
+0x5699 013770 call clear_linkkey 
+0x569a 013771 call tid_check 
+0x569b 013772 rtn true 
+0x569c 013773 branch lmp_generate_key 
+:      013775 send_lmp_accepted_enc_mode:
+0x569d 013776 fetch 1 ,mem_op 
+0x569e 013777 bbit1 op_start_enc ,send_lmp_accepted_enc_start 
+0x569f 013778 rtnbit0 op_stop_enc 
+0x56a0 013779 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x56a1 013780 set0 op_stop_enc ,pdata 
+0x56a2 013781 call tid_reply 
+0x56a3 013782 branch send_lmp_accepted_enc_exit 
+:      013783 send_lmp_accepted_enc_start:
+0x56a4 013784 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+0x56a5 013785 set0 op_start_enc ,pdata 
+:      013786 send_lmp_accepted_enc_exit:
+0x56a6 013787 store 1 ,mem_op 
+0x56a7 013788 rtn 
+:      013790 send_lmp_accepted_enc_key:
+0x56a8 013791 call check_localsm 
+0x56a9 013792 branch lmp_start_encryption ,true 
+0x56aa 013793 rtn 
+:      013795 send_lmp_accepted_connection:
+0x56ab 013796 jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+0x56ac 013798 fetch 1 ,mem_lmp_conn_state 
+0x56ad 013799 set1 received_conn_req ,pdata 
+0x56ae 013800 store 1 ,mem_lmp_conn_state 
+0x56af 013801 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x56b0 013802 branch ui_ipc_send_event 
+:      013805 send_lmp_accept_dhkey_check:
+0x56b1 013806 rtn 
+:      013810 send_lmpext_features_res:
+0x56b2 013811 force 12 ,queue 
+0x56b3 013812 call send_lmpext 
+0x56b4 013813 setarg 0x01 
+0x56b5 013814 istore 1 ,contw 
+0x56b6 013815 fetch 2 ,mem_lmpext_ssp_enable 
+0x56b7 013816 istore 2 ,contw 
+0x56b8 013817 setarg 0 
+0x56b9 013818 istore 3 ,contw 
+0x56ba 013819 setarg 0x00 
+0x56bb 013820 istore 4 ,contw 
+0x56bc 013821 branch send_lmp_reply 
+:      013822 send_lmpext_io_cap_res:
+0x56bd 013823 force 5 ,queue 
+0x56be 013824 call send_lmpext 
+0x56bf 013825 fetch 3 ,mem_sp_iocap_local 
+0x56c0 013826 istore 3 ,contw 
+0x56c1 013827 call send_lmp_reply 
+0x56c2 013828 jam flag_pairing_state_pairing ,mem_flag_pairing_state 
+0x56c3 013829 fetch 1 ,mem_sp_iocap_local 
+0x56c4 013830 beq display_yesno ,responder_iocap_display_yesno 
+0x56c5 013831 beq keyboard_only ,responder_iocap_keyboard_only 
+0x56c6 013832 beq no_input_no_output ,responder_iocap_no_input_no_output 
+0x56c7 013833 rtn 
+:      013835 responder_iocap_keyboard_only:
+0x56c8 013836 fetch 1 ,mem_sp_iocap_remote 
+0x56c9 013837 beq display_only ,responder_iocap_keyboard_only_initiator_iocap_display_only 
+0x56ca 013838 beq display_yesno ,responder_iocap_keyboard_only_initiator_iocap_display_yesno 
+0x56cb 013839 beq keyboard_only ,responder_iocap_keyboard_only_initiator_iocap_keyboard_only 
+0x56cc 013840 beq no_input_no_output ,responder_iocap_keyboard_only_initiator_iocap_no_input_no_output 
+0x56cd 013841 rtn 
+:      013844 responder_iocap_display_yesno:
+0x56ce 013845 fetch 1 ,mem_sp_iocap_remote 
+0x56cf 013846 beq display_only ,responder_iocap_display_yesno_initiator_iocap_display_only 
+0x56d0 013847 beq display_yesno ,responder_iocap_display_yesno_initiator_iocap_display_yesno 
+0x56d1 013848 beq keyboard_only ,responder_iocap_display_yesno_initiator_iocap_keyboard_only 
+0x56d2 013849 beq no_input_no_output ,responder_iocap_display_yesno_initiator_iocap_no_input_no_output 
+0x56d3 013850 rtn 
+:      013853 responder_iocap_no_input_no_output:
+0x56d4 013854 fetch 1 ,mem_sp_iocap_remote 
+0x56d5 013855 beq display_only ,responder_iocap_no_input_no_output_initiator_iocap_display_only 
+0x56d6 013856 beq display_yesno ,responder_iocap_no_input_no_output_initiator_iocap_display_yesno 
+0x56d7 013857 beq keyboard_only ,responder_iocap_no_input_no_output_initiator_iocap_keyboard_only 
+0x56d8 013858 beq no_input_no_output ,responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output 
+0x56d9 013859 rtn 
+:      013861 responder_iocap_keyboard_only_initiator_iocap_no_input_no_output:
+:      013862 responder_iocap_display_yesno_initiator_iocap_no_input_no_output:
+:      013863 responder_iocap_display_yesno_initiator_iocap_display_only:
+:      013864 responder_iocap_no_input_no_output_initiator_iocap_display_only:
+:      013865 responder_iocap_no_input_no_output_initiator_iocap_display_yesno:
+:      013866 responder_iocap_no_input_no_output_initiator_iocap_keyboard_only:
+:      013867 responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output:
+:      013868 set_ssp_mode_justwork:
+0x56da 013869 jam ssp_mode_just_work_flag ,mem_ssp_mode_flag 
+0x56db 013870 rtn 
+:      013872 responder_iocap_display_yesno_initiator_iocap_display_yesno:
+:      013873 set_ssp_mode_numeric_comparison:
+0x56dc 013874 jam ssp_mode_ssp_pin_flag ,mem_ssp_mode_flag 
+0x56dd 013875 rtn 
+:      013877 responder_iocap_keyboard_only_initiator_iocap_display_yesno:
+:      013878 responder_iocap_keyboard_only_initiator_iocap_keyboard_only:
+:      013879 responder_iocap_keyboard_only_initiator_iocap_display_only:
+:      013880 responder_iocap_display_yesno_initiator_iocap_keyboard_only:
+:      013881 set_ssp_mode_passkey:
+0x56de 013882 jam ssp_mode_passkey_entry_flag ,mem_ssp_mode_flag 
+0x56df 013883 rtn 
+:      013888 send_lmp_io_cap_req:
+0x56e0 013889 force 5 ,queue 
+0x56e1 013890 call send_lmpext 
+0x56e2 013891 fetch 3 ,mem_sp_iocap_local 
+0x56e3 013892 istore 3 ,contw 
+0x56e4 013893 branch send_lmp_request 
+:      013896 send_lmpext_sniff_subrating_req:
+0x56e5 013898 rtn 
+:      013899 send_lmpext_sniff_subrating_res:
+0x56e6 013900 force 9 ,queue 
+0x56e7 013901 call send_lmpext 
+0x56e8 013902 fetch 1 ,mem_subsniff_rate 
+0x56e9 013903 istore 1 ,contw 
+0x56ea 013904 fetch 2 ,mem_subsniff_tcmax 
+0x56eb 013905 istore 2 ,contw 
+0x56ec 013906 fetch 4 ,mem_subsniff_instant 
+0x56ed 013907 istore 4 ,contw 
+0x56ee 013908 branch send_lmp_reply 
+:      013910 send_lmp_name_res:
+0x56ef 013911 force 17 ,pdata 
+0x56f0 013912 call msg_send_lmp 
+0x56f1 013913 fetch 1 ,mem_lmi_opcode 
+0x56f2 013914 copy pdata ,temp 
+0x56f3 013915 beq 0x00 ,send_lmp_name_res_offset_ok 
+0x56f4 013916 beq 0x0e ,send_lmp_name_res_offset_ok 
+0x56f5 013917 beq 0x1c ,send_lmp_name_res_offset_ok 
+0x56f6 013918 rtn 
+:      013919 send_lmp_name_res_offset_ok:
+0x56f7 013920 istore 1 ,contw 
+0x56f8 013921 fetch 1 ,mem_local_name_length 
+0x56f9 013922 istore 1 ,contw 
+0x56fa 013923 arg 14 ,loopcnt 
+0x56fb 013924 setarg mem_local_name 
+0x56fc 013925 iadd temp ,contr 
+0x56fd 013926 call memcpy 
+0x56fe 013927 branch send_lmp_reply 
+:      013930 send_lmp_timing_accuracy_res:
+0x56ff 013931 force 3 ,pdata 
+0x5700 013932 call msg_send_lmp 
+0x5701 013933 setarg 0x0114 
+0x5702 013934 istore 2 ,contw 
+0x5703 013935 branch send_lmp_reply 
+:      013937 send_lmp_clkoffset_res:
+0x5704 013939 force 3 ,pdata 
+0x5705 013940 call msg_send_lmp 
+0x5706 013941 fetch 4 ,mem_clke_bt 
+0x5707 013942 isub clkn_bt ,pdata 
+0x5708 013943 branch send_lmp_clkoffset_res_master ,master 
+0x5709 013944 sub pdata ,0 ,pdata 
+:      013945 send_lmp_clkoffset_res_master:
+0x570a 013947 rshift2 pdata ,pdata 
+0x570b 013948 set0 15 ,pdata 
+0x570c 013949 istore 2 ,contw 
+0x570d 013950 branch send_lmp_reply 
+:      013952 send_lmp_version_res:
+0x570e 013953 force 6 ,pdata 
+0x570f 013954 call msg_send_lmp 
+0x5710 013955 fetch 5 ,mem_lmp_version 
+0x5711 013956 istore 5 ,contw 
+0x5712 013957 branch send_lmp_reply 
+:      013959 send_lmp_features_res:
+0x5713 013960 force 9 ,pdata 
+0x5714 013961 call msg_send_lmp 
+0x5715 013962 fetch 8 ,mem_features 
+0x5716 013963 istore 8 ,contw 
+0x5717 013964 branch send_lmp_reply 
+:      013971 send_lmpext_features_req:
+0x5718 013972 force 12 ,queue 
+0x5719 013973 call send_lmpext 
+0x571a 013974 setarg 0x01 
+0x571b 013975 istore 1 ,contw 
+0x571c 013976 fetch 2 ,mem_lmpext_ssp_enable 
+0x571d 013977 istore 2 ,contw 
+0x571e 013978 setarg 0 
+0x571f 013979 istore 3 ,contw 
+0x5720 013980 setarg 0x00 
+0x5721 013981 istore 4 ,contw 
+0x5722 013982 branch send_lmp_request 
+:      013984 send_lmpext_packet_type_table_req:
+0x5723 013985 force 3 ,queue 
+0x5724 013986 call send_lmpext 
+0x5725 013987 fetch 1 ,mem_ptt 
+0x5726 013988 istore 1 ,contw 
+0x5727 013989 disable user 
+0x5728 013990 call send_lmp_request 
+0x5729 013991 nrtn user 
+0x572a 013992 nrtn master 
+0x572b 013993 fetch 1 ,mem_afh_cfg 
+0x572c 013994 rtnbit0 afh_cfg_on 
+0x572d 013995 call afh_init 
+0x572e 013996 branch afh_open_all_channels 
+:      013999 ssp_enable:
+0x572f 014000 set1 mark_ext_patch ,mark 
+0x5730 014001 bpatch patch2b_2 ,mem_patch2b 
+0x5731 014002 fetch 1 ,mem_features + 6 
+0x5732 014003 set1 param_featrue_ssp ,pdata 
+0x5733 014004 store 1 ,mem_features + 6 
+0x5734 014005 setarg param_lmpext_ssp_enable 
+0x5735 014006 store 2 ,mem_lmpext_ssp_enable 
+0x5736 014007 rtn 
+:      014009 ssp_disable:
+0x5737 014010 set1 mark_ext_patch ,mark 
+0x5738 014011 bpatch patch2b_3 ,mem_patch2b 
+0x5739 014012 fetch 1 ,mem_features + 6 
+0x573a 014013 set0 param_featrue_ssp ,pdata 
+0x573b 014014 store 1 ,mem_features + 6 
+0x573c 014015 setarg 0 
+0x573d 014016 store 2 ,mem_lmpext_ssp_enable 
+0x573e 014017 rtn 
+:      014019 afh_init:
+0x573f 014020 jam 0x3 ,mem_afh_cfg 
+0x5740 014021 setarg 0 
+0x5741 014022 store 4 ,mem_afh_timer 
+0x5742 014023 arg mem_afh_map_lo ,contw 
+0x5743 014024 call afh_reset_map 
+0x5744 014025 arg mem_afh_map_new ,contw 
+0x5745 014026 call afh_reset_map 
+0x5746 014027 arg mem_afh_classify_channel_map ,contw 
+0x5747 014028 call afh_reset_map 
+0x5748 014029 branch afh_clear_error_counter 
+:      014030 afh_open_all_channels:
+0x5749 014031 arg mem_afh_map_new ,contw 
+0x574a 014032 call afh_reset_map 
+0x574b 014033 call afh_clear_error_counter 
+0x574c 014034 branch afh_set_send_flag 
+:      014037 afh_reset_map:
+0x574d 014038 setarg 0xffffff 
+0x574e 014039 istore 3 ,contw 
+0x574f 014040 istore 3 ,contw 
+0x5750 014041 istore 3 ,contw 
+0x5751 014042 setarg 0x7f 
+0x5752 014043 istore 1 ,contw 
+0x5753 014044 rtn 
+:      014045 afh_clear_error_counter:
+0x5754 014046 setarg 0 
+0x5755 014047 store 2 ,mem_afh_error_total 
+0x5756 014048 rtn 
+:      014049 afh_set_send_flag:
+0x5757 014050 fetch 1 ,mem_afh_cfg 
+0x5758 014051 set1 send_lmp_set_afh ,pdata 
+0x5759 014052 store 1 ,mem_afh_cfg 
+0x575a 014053 rtn 
+:      014056 send_lmpext_pause_encryption_req:
+0x575b 014057 force 2 ,queue 
+0x575c 014058 call send_lmpext 
+0x575d 014059 nbranch send_lmp_reply ,master 
+0x575e 014061 branch send_lmp_request 
+:      014065 send_lmp_detach:
+0x575f 014066 force 2 ,pdata 
+0x5760 014067 call msg_send_lmp 
+0x5761 014068 fetch 1 ,mem_disconn_reason_send 
+0x5762 014069 istore 1 ,contw 
+0x5763 014070 call send_lmp_request 
+:      014071 prepare_disconnect:
+0x5764 014072 fetch 1 ,mem_op 
+0x5765 014073 set1 op_disconn ,pdata 
+0x5766 014074 store 1 ,mem_op 
+0x5767 014075 jam 50 ,mem_conn_timer 
+0x5768 014076 rtn 
+:      014079 send_lmp_no_payload:
+0x5769 014080 force 1 ,pdata 
+0x576a 014081 call msg_send_lmp 
+0x576b 014082 branch send_lmp_request 
+:      014083 send_lmp_nopayload_reply:
+0x576c 014084 force 1 ,pdata 
+0x576d 014085 call msg_send_lmp 
+0x576e 014086 branch send_lmp_reply 
+:      014089 send_lmp_encryption_mode_req:
+0x576f 014090 force 2 ,pdata 
+0x5770 014091 call msg_send_lmp 
+0x5771 014092 fetch 1 ,mem_state_map 
+0x5772 014093 isolate0 smap_encryption ,pdata 
+0x5773 014094 setflag true ,0 ,pdata 
+0x5774 014095 and_into 1 ,pdata 
+0x5775 014096 istore 1 ,contw 
+0x5776 014097 branch send_lmp_request 
+:      014100 send_lmp_superto:
+0x5777 014101 force 3 ,pdata 
+0x5778 014102 call msg_send_lmp 
+0x5779 014103 fetch 2 ,mem_supervision_to 
+0x577a 014104 istore 2 ,contw 
+0x577b 014105 branch send_lmp_request 
+:      014107 send_lmp_name_req:
+0x577c 014108 jam 250 ,mem_conn_timer 
+0x577d 014109 force 2 ,pdata 
+0x577e 014110 call msg_send_lmp 
+0x577f 014111 fetch 1 ,mem_name_offset 
+0x5780 014112 istore 1 ,contw 
+0x5781 014113 branch send_lmp_request 
+:      014115 send_lmp_test_control:
+0x5782 014116 force 10 ,pdata 
+0x5783 014117 call msg_send_lmp 
+0x5784 014118 arg mem_temp_payload ,contr 
+0x5785 014119 force 9 ,loopcnt 
+:      014120 send_lmp_test_control_loop:
+0x5786 014121 ifetch 1 ,contr 
+0x5787 014122 xor_into 0x55 ,pdata 
+0x5788 014123 istore 1 ,contw 
+0x5789 014124 loop send_lmp_test_control_loop 
+0x578a 014125 branch send_lmp_request 
+:      014127 send_lmp_quality_of_service_req:
+0x578b 014128 branch send_lmp_request 
+:      014129 send_lmp_unit_key:
+0x578c 014130 branch send_lmp_request 
+:      014132 send_lmp_slot_offset:
+0x578d 014133 rtn master 
+0x578e 014134 call calc_slot_offset 
+0x578f 014135 force 9 ,pdata 
+0x5790 014136 call msg_send_lmp 
+0x5791 014137 fetch 2 ,mem_slot_offset 
+0x5792 014138 istore 2 ,contw 
+0x5793 014139 fetch 3 ,mem_lap 
+0x5794 014140 istore 3 ,contw 
+0x5795 014141 fetch 1 ,mem_uap 
+0x5796 014142 istore 1 ,contw 
+0x5797 014143 fetch 2 ,mem_nap 
+0x5798 014144 istore 2 ,contw 
+0x5799 014145 bmark0 mark_switch_initiated ,send_lmp_slot_offset_reply 
+0x579a 014146 set0 mark_switch_initiated ,mark 
+0x579b 014147 call send_lmp_request 
+0x579c 014148 jam lmp_switch_req ,mem_lmo_opcode2 
+0x579d 014149 rtn 
+:      014150 send_lmp_slot_offset_reply:
+0x579e 014151 call send_lmp_reply 
+0x579f 014152 jam lmp_accepted ,mem_lmo_opcode2 
+0x57a0 014153 jam lmp_switch_req ,mem_lmi_opcode2 
+0x57a1 014154 rtn 
+:      014156 send_lmp_switch_req:
+0x57a2 014157 arg 0x200 ,temp 
+0x57a3 014158 branch switch_on_native ,master 
+0x57a4 014159 deposit clke_bt 
+0x57a5 014160 branch switch_slack 
+:      014161 switch_on_native:
+0x57a6 014162 deposit clkn_bt 
+:      014163 switch_slack:
+0x57a7 014164 deposit bt_clk 
+0x57a8 014165 iadd temp ,pdata 
+0x57a9 014166 and_into 0x1fc ,pdata 
+0x57aa 014167 store 4 ,mem_sniff_anchor 
+0x57ab 014168 force 5 ,pdata 
+0x57ac 014169 call msg_send_lmp 
+0x57ad 014170 fetch 4 ,mem_sniff_anchor 
+0x57ae 014171 rshift pdata ,pdata 
+0x57af 014172 istore 4 ,contw 
+0x57b0 014173 branch send_lmp_request 
+:      014175 send_lmp_sniff_req:
+0x57b1 014176 force 10 ,pdata 
+0x57b2 014177 call msg_send_lmp 
+0x57b3 014178 arg mem_sniff_payload ,contr 
+0x57b4 014179 ifetch 9 ,contr 
+0x57b5 014180 istore 9 ,contw 
+0x57b6 014181 branch send_lmp_request 
+:      014184 send_lmp_timing_accuracy_req:
+0x57b7 014186 force 3 ,pdata 
+0x57b8 014187 call msg_send_lmp 
+0x57b9 014188 setarg 0x0114 
+0x57ba 014189 istore 2 ,contw 
+0x57bb 014190 branch send_lmp_request 
+:      014192 send_lmp_unsniff_req:
+0x57bc 014194 force 1 ,pdata 
+0x57bd 014195 call msg_send_lmp 
+0x57be 014204 branch send_lmp_request 
+:      014207 send_lmp_max_slot:
+0x57bf 014208 force 2 ,pdata 
+0x57c0 014209 call msg_send_lmp 
+0x57c1 014210 fetch 1 ,mem_max_slot 
+0x57c2 014211 istore 1 ,contw 
+0x57c3 014212 branch send_lmp_request 
+:      014215 send_lmp_max_slot_req:
+0x57c4 014216 force 2 ,pdata 
+0x57c5 014217 call msg_send_lmp 
+0x57c6 014218 setarg 0x05 
+0x57c7 014219 istore 1 ,contw 
+0x57c8 014220 branch send_lmp_request 
+:      014223 send_lmp_inc_power:
+0x57c9 014224 force 2 ,pdata 
+0x57ca 014225 call msg_send_lmp 
+0x57cb 014226 setarg 0x00 
+0x57cc 014227 istore 1 ,contw 
+0x57cd 014228 branch send_lmp_request 
+:      014232 send_lmp_setup_complete:
+0x57ce 014233 jam lmp_max_slot_req ,mem_lmo_opcode2 
+0x57cf 014234 fetch 1 ,mem_state 
+0x57d0 014235 set1 state_conn_comp ,pdata 
+0x57d1 014236 store 1 ,mem_state 
+0x57d2 014237 copy clkn_bt ,pdata 
+0x57d3 014238 store 4 ,mem_aurand_send_delay_time 
+0x57d4 014239 fetch 1 ,mem_lmp_conn_state 
+0x57d5 014240 bbit1 sent_setup_complete ,send_lmp_setup_complete_has_sent 
+0x57d6 014241 set1 sent_setup_complete ,pdata 
+0x57d7 014242 store 1 ,mem_lmp_conn_state 
+0x57d8 014243 jam bt_evt_setup_complete ,mem_fifo_temp 
+0x57d9 014244 call ui_ipc_send_event 
+0x57da 014245 force 1 ,pdata 
+0x57db 014246 call msg_send_lmp 
+0x57dc 014247 branch send_lmp_request 
+:      014248 send_lmp_setup_complete_has_sent:
+0x57dd 014249 jam 0 ,mem_lmp_to_send 
+0x57de 014250 rtn 
+:      014252 send_lmp_version_req:
+0x57df 014253 force 6 ,pdata 
+0x57e0 014254 call msg_send_lmp 
+0x57e1 014255 fetch 5 ,mem_lmp_version 
+0x57e2 014256 istore 5 ,contw 
+0x57e3 014257 branch send_lmp_request 
+:      014259 send_lmp_features_req:
+0x57e4 014260 force 9 ,pdata 
+0x57e5 014261 call msg_send_lmp 
+0x57e6 014262 fetch 8 ,mem_features 
+0x57e7 014263 istore 8 ,contw 
+0x57e8 014264 branch send_lmp_request 
+:      014266 sp_master_send_io_cap_get:
+0x57e9 014267 jam sp_flag_commit ,mem_master_sp_flag 
+0x57ea 014268 fetch 1 ,mem_sp_local_key_invalid 
+0x57eb 014269 rtnne sp_key_valid 
+0x57ec 014270 jam sp_master_stat_start_done ,mem_master_sp_state 
+0x57ed 014271 rtn 
+:      014273 sp_master_send_io_cap_send:
+0x57ee 014274 call tid_initiate 
+0x57ef 014275 jam lmp_io_cap_req ,mem_lmo_opcode2 
+0x57f0 014276 jam sp_stat_key_send ,mem_master_sp_state 
+0x57f1 014277 rtn 
+:      014280 sp_master_send_lmp_encapsulated_header:
+0x57f2 014281 call tid_initiate 
+0x57f3 014282 jam lmp_encapsulated_header ,mem_lmo_opcode2 
+0x57f4 014283 jam sp_stat_random_send ,mem_master_sp_state 
+0x57f5 014284 rtn 
+:      014286 sp_master_commitment_compare:
+0x57f6 014287 arg mem_sp_calc_result_high ,rega 
+0x57f7 014288 arg mem_sp_confirm_remote ,regb 
+0x57f8 014289 arg 16 ,loopcnt 
+0x57f9 014290 call string_compare 
+0x57fa 014291 branch sp_master_commitment_compare_success ,zero 
+0x57fb 014292 jam sp_stat_null ,mem_master_sp_state 
+0x57fc 014293 call master_clear_mem_master_sp_flag 
+0x57fd 014294 jam pdu_not_allowed ,mem_lmo_reason2 
+0x57fe 014295 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+0x57ff 014296 branch reject_lmp_packet 
+:      014297 sp_master_commitment_compare_success:
+0x5800 014298 jam sp_stat_confirm_calc ,mem_master_sp_state 
+0x5801 014299 call master_set_mem_master_sp_flag 
+0x5802 014300 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+0x5803 014301 branch accept_lmp_msg 
+:      014305 sp_master_send_lmp_simple_pairing_number:
+0x5804 014306 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+0x5805 014307 rtn 
+:      014311 sp_send_lmp_encapsulated_header:
+0x5806 014314 jam lmp_encapsulated_header ,mem_lmo_opcode2 
+0x5807 014316 rtn 
+:      014322 send_lmp_encapsulated_header:
+0x5808 014323 jam 0 ,mem_sp_local_key_send_count 
+0x5809 014324 force 4 ,pdata 
+0x580a 014325 call msg_send_lmp 
+0x580b 014326 force encapsulated_major_type_p192 ,pdata 
+0x580c 014327 istore 1 ,contw 
+0x580d 014328 force encapsulated_minor_type_p192 ,pdata 
+0x580e 014329 istore 1 ,contw 
+0x580f 014330 force encapsulated_len_p192 ,pdata 
+0x5810 014331 istore 1 ,contw 
+0x5811 014332 call check_localsm 
+0x5812 014333 branch send_lmp_request ,true 
+0x5813 014334 branch send_lmp_reply 
+:      014336 send_lmp_encapsulated_payload:
+0x5814 014338 force 17 ,pdata 
+0x5815 014339 call msg_send_lmp 
+0x5816 014340 fetch 1 ,mem_sp_local_key_send_count 
+0x5817 014341 arg mem_sp_pubkey_local ,contr 
+0x5818 014342 iadd contr ,contr 
+0x5819 014343 ifetch 8 ,contr 
+0x581a 014344 istore 8 ,contw 
+0x581b 014345 ifetch 8 ,contr 
+0x581c 014346 istore 8 ,contw 
+0x581d 014347 fetch 1 ,mem_sp_local_key_send_count 
+0x581e 014348 increase 16 ,pdata 
+0x581f 014349 store 1 ,mem_sp_local_key_send_count 
+0x5820 014350 call check_localsm 
+0x5821 014351 branch send_lmp_request ,true 
+0x5822 014352 branch send_lmp_reply 
+:      014355 sp_send_lmp_simple_pairing_comfirm:
+0x5823 014356 jam sp_stat_random_recv ,mem_sp_state 
+0x5824 014357 jam lmp_simple_pairing_confirm ,mem_lmo_opcode2 
+0x5825 014358 rtn 
+:      014359 send_lmp_simple_pairing_comfirm:
+0x5826 014362 force 17 ,pdata 
+0x5827 014363 call msg_send_lmp 
+0x5828 014364 arg mem_sp_calc_result_high ,contr 
+0x5829 014365 ifetch 8 ,contr 
+0x582a 014366 istore 8 ,contw 
+0x582b 014367 ifetch 8 ,contr 
+0x582c 014368 istore 8 ,contw 
+0x582d 014369 branch send_lmp_reply 
+:      014371 sp_send_lmp_simple_pairing_number:
+0x582e 014372 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+0x582f 014373 rtn 
+:      014375 send_lmp_simple_pairing_number:
+0x5830 014377 call check_localsm 
+0x5831 014378 call sp_local_random_key_generator ,true 
+0x5832 014379 force 17 ,pdata 
+0x5833 014380 call msg_send_lmp 
+0x5834 014381 arg mem_sp_random_local ,contr 
+0x5835 014382 ifetch 8 ,contr 
+0x5836 014383 istore 8 ,contw 
+0x5837 014384 ifetch 8 ,contr 
+0x5838 014385 istore 8 ,contw 
+0x5839 014386 call check_localsm 
+0x583a 014387 nbranch send_lmp_reply ,true 
+0x583b 014388 branch send_lmp_request ,true 
+:      014390 master_sp_sm_end:
+0x583c 014392 jam sp_stat_done ,mem_master_sp_state 
+:      014393 sp_aurand_send:
+0x583d 014394 call tid_initiate 
+0x583e 014395 jam lmp_au_rand ,mem_lmo_opcode2 
+0x583f 014396 call check_localsm_master 
+0x5840 014397 branch sp_master_key_prarm_push ,true 
+0x5841 014398 branch sp_link_key_prarm_push 
+:      014399 master_sp_send_lmp_dhkey_check:
+0x5842 014400 call tid_reply 
+:      014401 sp_send_lmp_dhkey_check:
+0x5843 014402 jam lmp_dhkey_check ,mem_lmo_opcode2 
+0x5844 014403 rtn 
+:      014404 send_lmp_dhkey_check:
+0x5845 014406 force 17 ,pdata 
+0x5846 014407 call msg_send_lmp 
+0x5847 014408 arg mem_sp_calc_result_high ,contr 
+0x5848 014409 ifetch 8 ,contr 
+0x5849 014410 istore 8 ,contw 
+0x584a 014411 ifetch 8 ,contr 
+0x584b 014412 istore 8 ,contw 
+0x584c 014413 call check_localsm 
+0x584d 014414 nbranch send_lmp_reply ,true 
+0x584e 014415 branch send_lmp_request ,true 
+:      014417 send_lmp_enc_key_size_mask_res:
+0x584f 014418 force 3 ,pdata 
+0x5850 014419 call msg_send_lmp 
+0x5851 014420 setarg 0xfffe 
+0x5852 014421 istore 2 ,contw 
+0x5853 014422 branch send_lmp_reply 
+:      014424 send_lmp_auto_rate:
+0x5854 014425 branch send_lmp_request 
+:      014426 send_lmp_clkoffset_req:
+0x5855 014427 branch send_lmp_request 
+:      014428 send_lmp_quality_of_service:
+0x5856 014429 branch send_lmp_request 
+:      014430 send_lmp_test_activate:
+0x5857 014431 branch send_lmp_request 
+:      014436 send_lmp_comb_key:
+0x5858 014437 call generate_random_number 
+0x5859 014438 arg mem_lap ,rega 
+0x585a 014439 call generate_linkkey 
+0x585b 014440 force 17 ,pdata 
+0x585c 014441 call msg_send_lmp 
+0x585d 014442 arg mem_kinit ,rega 
+0x585e 014443 arg mem_random_number ,regb 
+0x585f 014444 call xor16 
+0x5860 014445 nbranch send_lmp_follow ,master 
+0x5861 014446 branch send_lmp_tid 
+:      014448 send_lmp_inrand:
+0x5862 014449 call generate_random_number 
+0x5863 014450 arg mem_plap ,rega 
+0x5864 014451 call generate_kinit 
+:      014452 send_lmp_rand:
+0x5865 014453 force 17 ,pdata 
+0x5866 014454 call msg_send_lmp 
+0x5867 014455 arg mem_random_number ,contr 
+0x5868 014456 call memcpy16 
+0x5869 014457 fetch 1 ,mem_conn_sm 
+0x586a 014458 beq conn_sm_auth_wait ,send_lmp_request 
+0x586b 014459 beq conn_sm_pairing_wait ,send_lmp_request 
+0x586c 014460 branch send_lmp_tid 
+:      014462 send_lmp_aurand:
+0x586d 014463 fetch 1 ,mem_pairing_auth 
+0x586e 014464 branch send_lmp_aurand_notpairing ,blank 
+0x586f 014465 call check_localsm 
+0x5870 014466 call tid_initiate ,true 
+0x5871 014467 ncall tid_reply ,true 
+0x5872 014468 branch send_lmp_aurand_common 
+:      014469 send_lmp_aurand_notpairing:
+0x5873 014470 call tid_initiate 
+:      014471 send_lmp_aurand_common:
+0x5874 014472 call generate_random_number 
+0x5875 014473 branch send_lmp_rand 
+:      014475 send_lmp_sres:
+0x5876 014476 arg mem_lap ,rega 
+0x5877 014477 call function_e1 
+0x5878 014478 force 5 ,pdata 
+0x5879 014479 call msg_send_lmp 
+0x587a 014480 fetch 4 ,mem_input_store 
+0x587b 014481 istore 4 ,contw 
+0x587c 014482 arg mem_sres_tid ,temp 
+0x587d 014483 call special_tid_store 
+0x587e 014484 call copy_aco 
+0x587f 014485 call check_localsm 
+0x5880 014486 branch send_lmp_sres_master ,true 
+0x5881 014487 jam done_encryp ,mem_wait_encryption 
+0x5882 014488 fetch 1 ,mem_pairing_auth 
+0x5883 014489 rtn blank 
+0x5884 014490 jam lmp_au_rand ,mem_lmo_opcode2 
+:      014491 send_lmp_sres_master:
+0x5885 014492 fetch 1 ,mem_link_key_exists 
+0x5886 014493 rtn blank 
+:      014494 send_lmp_sres_startenc:
+0x5887 014495 call check_localsm 
+0x5888 014496 nbranch send_lmp_sres_startenc_slave ,true 
+0x5889 014497 fetch 1 ,mem_auth_enable 
+0x588a 014498 rtn blank 
+0x588b 014499 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x588c 014500 rtn 
+:      014501 send_lmp_sres_startenc_slave:
+0x588d 014502 rtnmark0 mark_slave_in_rand_accepted 
+0x588e 014503 set0 mark_slave_in_rand_accepted ,mark 
+0x588f 014504 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x5890 014505 rtn 
+:      014509 send_lmp_start_encryption:
+0x5891 014510 call generate_random_number 
+0x5892 014511 call function_e3 
+0x5893 014512 force 17 ,pdata 
+0x5894 014513 call msg_send_lmp 
+0x5895 014514 arg mem_random_number ,contr 
+0x5896 014515 call memcpy16 
+0x5897 014516 branch send_lmp_tid 
+:      014518 send_lmp_stop_encryption_req:
+0x5898 014519 force 1 ,pdata 
+0x5899 014520 call msg_send_lmp 
+0x589a 014521 branch send_lmp_tid 
+:      014523 send_lmp_encryption_key_size_req:
+0x589b 014524 force 2 ,pdata 
+0x589c 014525 call msg_send_lmp 
+0x589d 014526 force 16 ,pdata 
+0x589e 014527 istore 1 ,contw 
+0x589f 014528 store 1 ,mem_key_size 
+0x58a0 014529 branch send_lmp_tid 
+:      014531 msg_send_lmp:
+0x58a1 014533 lshift3 pdata ,pdata 
+0x58a2 014534 or_into 0x07 ,pdata 
+0x58a3 014535 store 1 ,mem_lmo_header_length 
+0x58a4 014536 arg 17 ,loopcnt 
+0x58a5 014537 arg mem_lmo_payload ,contw 
+0x58a6 014538 call clear_mem 
+0x58a7 014539 arg mem_lmo_payload ,contw 
+0x58a8 014540 rtn 
+:      014542 send_lmpext:
+0x58a9 014543 and pdata ,0x7f ,rega 
+0x58aa 014544 jam lmp_escape ,mem_lmp_to_send 
+0x58ab 014545 deposit queue 
+0x58ac 014546 call msg_send_lmp 
+0x58ad 014547 deposit rega 
+0x58ae 014548 istore 1 ,contw 
+0x58af 014549 rtn 
+:      014551 send_lmp_follow:
+0x58b0 014552 fetch 1 ,mem_lmp_to_send 
+0x58b1 014553 lshift pdata ,pdata 
+0x58b2 014554 fetcht 1 ,mem_state_map 
+0x58b3 014555 isolate1 smap_lmptid ,temp 
+0x58b4 014556 setflag true ,0 ,pdata 
+0x58b5 014557 branch send_lmp_exit 
+:      014560 send_lmp_tid:
+0x58b6 014561 fetcht 1 ,mem_state_map 
+0x58b7 014562 and_into 1 ,temp 
+0x58b8 014563 branch send_lmp_end 
+:      014565 send_lmp_reply:
+0x58b9 014566 force 0 ,temp 
+0x58ba 014567 branch send_lmp_end 
+:      014569 send_lmp_request:
+0x58bb 014570 force 1 ,temp 
+:      014571 send_lmp_end:
+0x58bc 014572 fetch 1 ,mem_lmp_to_send 
+0x58bd 014573 lshift pdata ,pdata 
+0x58be 014574 setflag master ,0 ,pdata 
+0x58bf 014575 ixor temp ,pdata 
+:      014576 send_lmp_exit:
+0x58c0 014577 store 1 ,mem_lmo_header_opcode 
+0x58c1 014578 jam 0 ,mem_lmp_to_send 
+0x58c2 014579 call lmo_fifo_process_lmo0empty 
+0x58c3 014580 enable user 
+0x58c4 014581 rtn 
+:      014584 lmo_fifo_check:
+0x58c5 014585 fetch 1 ,mem_lmo_opcode2 
+0x58c6 014586 rtn blank 
+0x58c7 014587 call lmo_fifo_process 
+0x58c8 014588 fetch 1 ,mem_lmo_opcode2 
+0x58c9 014589 rtn 
+:      014591 lmo_fifo_process:
+0x58ca 014592 set1 mark_ext_patch ,mark 
+0x58cb 014593 bpatch patch2b_4 ,mem_patch2b 
+0x58cc 014594 fetch 1 ,mem_lmp_to_send 
+0x58cd 014595 branch lmo_fifo_process_lmo0empty ,blank 
+0x58ce 014596 fetch 1 ,mem_lmo_opcode1 
+0x58cf 014597 nrtn blank 
+0x58d0 014598 branch lmo_fifo_process_lmo2to1 
+:      014599 lmo_fifo_process_lmo0empty:
+0x58d1 014600 fetch 1 ,mem_lmo_opcode1 
+0x58d2 014601 branch lmo_fifo_process_lmo1_empty ,blank 
+0x58d3 014602 fetch 3 ,mem_lmo_opcode1 
+0x58d4 014603 store 3 ,mem_lmp_to_send 
+0x58d5 014604 fetcht 1 ,mem_lmo_tid1 
+0x58d6 014605 fetch 1 ,mem_state_map 
+0x58d7 014606 set0 smap_lmptid ,pdata 
+0x58d8 014607 ior temp ,pdata 
+0x58d9 014608 store 1 ,mem_state_map 
+0x58da 014609 jam 0 ,mem_lmo_opcode1 
+:      014610 lmo_fifo_process_lmo2to1:
+0x58db 014611 fetch 1 ,mem_lmo_opcode2 
+0x58dc 014612 rtn blank 
+0x58dd 014613 fetch 4 ,mem_lmo_opcode2 
+0x58de 014614 store 4 ,mem_lmo_opcode1 
+0x58df 014615 jam 0 ,mem_lmo_opcode2 
+0x58e0 014616 rtn 
+:      014617 lmo_fifo_process_lmo1_empty:
+0x58e1 014618 fetch 1 ,mem_lmo_opcode2 
+0x58e2 014619 rtn blank 
+0x58e3 014620 fetch 3 ,mem_lmo_opcode2 
+0x58e4 014621 store 3 ,mem_lmp_to_send 
+0x58e5 014622 fetcht 1 ,mem_lmo_tid2 
+0x58e6 014623 fetch 1 ,mem_state_map 
+0x58e7 014624 set0 smap_lmptid ,pdata 
+0x58e8 014625 ior temp ,pdata 
+0x58e9 014626 store 1 ,mem_state_map 
+0x58ea 014627 jam 0 ,mem_lmo_opcode2 
+0x58eb 014628 rtn 
+:      014631 special_tid_store:
+0x58ec 014632 set1 mark_ext_patch ,mark 
+0x58ed 014633 bpatch patch2b_5 ,mem_patch2b 
+0x58ee 014634 fetch 1 ,mem_state_map 
+0x58ef 014635 copy pdata ,regc 
+0x58f0 014636 ifetch 1 ,temp 
+0x58f1 014637 call pop_tid_follow 
+0x58f2 014638 call send_lmp_follow 
+0x58f3 014639 copy regc ,pdata 
+0x58f4 014640 store 1 ,mem_state_map 
+0x58f5 014641 rtn 
+:      014643 tid_reply:
+0x58f6 014644 fetcht 1 ,mem_state_map 
+0x58f7 014645 set0 smap_lmptidinit ,temp 
+0x58f8 014646 storet 1 ,mem_state_map 
+0x58f9 014647 rtn 
+:      014649 tid_initiate:
+0x58fa 014650 fetcht 1 ,mem_state_map 
+0x58fb 014651 set1 smap_lmptidinit ,temp 
+0x58fc 014652 storet 1 ,mem_state_map 
+0x58fd 014653 rtn 
+:      014656 tid_check:
+0x58fe 014657 nsetflag master ,smap_lmptid ,pdata 
+0x58ff 014658 fetcht 1 ,mem_state_map 
+0x5900 014659 ixor temp ,pdata 
+0x5901 014660 isolate1 smap_lmptid ,pdata 
+0x5902 014661 rtn 
+:      014664 tid_set_reply:
+0x5903 014665 fetch 1 ,mem_state_map 
+0x5904 014666 setflag master ,smap_lmptid ,pdata 
+0x5905 014667 store 1 ,mem_state_map 
+0x5906 014668 rtn 
+:      014671 check_localsm:
+0x5907 014672 fetch 1 ,mem_sp_localsm 
+0x5908 014673 compare local_statemachine ,pdata ,0x7f 
+0x5909 014674 rtn 
+:      014675 setlocalsm_master:
+0x590a 014676 fetch 1 ,mem_sp_localsm 
+0x590b 014677 set1 7 ,pdata 
+0x590c 014678 store 1 ,mem_sp_localsm 
+0x590d 014679 rtn 
+:      014680 setlocalsm_slave:
+0x590e 014681 fetch 1 ,mem_sp_localsm 
+0x590f 014682 set0 7 ,pdata 
+0x5910 014683 store 1 ,mem_sp_localsm 
+0x5911 014684 rtn 
+:      014685 check_localsm_master:
+0x5912 014686 fetch 1 ,mem_sp_localsm 
+0x5913 014687 isolate1 7 ,pdata 
+0x5914 014688 store 1 ,mem_sp_localsm 
+0x5915 014689 rtn 
+:      014691 generate_random_number:
+0x5916 014693 arg mem_random_number ,contw 
+:      014694 generate_random:
+0x5917 014695 force 16 ,loopcnt 
+:      014696 generate_random_another:
+:      014697 generate_random_loop:
+0x5918 014698 random pdata 
+0x5919 014699 istore 1 ,contw 
+0x591a 014700 loop generate_random_another 
+0x591b 014701 rtn 
+:      014703 generate_linkkey:
+0x591c 014704 call function_e21 
+0x591d 014705 arg mem_link_key ,rega 
+0x591e 014706 arg mem_input_store ,regb 
+0x591f 014707 ifetch 8 ,rega 
+0x5920 014708 fetcht 1 ,mem_state 
+0x5921 014709 nsetflag blank ,state_combkey ,temp 
+0x5922 014710 storet 1 ,mem_state 
+0x5923 014711 copy rega ,contw 
+0x5924 014712 call xor16 
+0x5925 014713 branch generate_linkkey_continue 
+:      014719 process_conn_sm:
+0x5926 014721 set1 mark_ext_patch ,mark 
+0x5927 014722 bpatch patch2b_6 ,mem_patch2b 
+0x5928 014724 call lmo_fifo_check 
+0x5929 014725 nrtn blank 
+:      014726 process_conn_sm_continue:
+0x592a 014727 fetch 1 ,mem_conn_sm 
+0x592b 014728 rtn blank 
+0x592c 014732 beq conn_sm_send_conn_req ,host_create_conn_send_conn_req 
+0x592d 014733 beq conn_sm_wait_conn_accept ,host_create_conn_wait_accept 
+0x592e 014734 beq conn_sm_send_features ,host_create_conn_send_features 
+0x592f 014735 beq conn_sm_wait_features_res ,host_create_conn_waiting 
+0x5930 014736 beq conn_sm_send_switch ,host_create_conn_send_switch 
+0x5931 014737 beq conn_sm_auth_pair ,host_create_conn_auth_pair 
+0x5932 014738 beq conn_sm_auth_pair_wait ,host_create_conn_auth_pair_wait 
+0x5933 014739 beq conn_sm_encrypt ,host_create_conn_encrypt 
+0x5934 014740 beq conn_sm_encrypt_wait ,host_create_conn_encrypt_wait 
+0x5935 014741 beq conn_sm_encrypt_wait_clear ,host_create_conn_encrypt_wait_clear 
+0x5936 014742 beq conn_sm_send_setup_complete ,host_create_conn_send_setup_complete 
+0x5937 014743 beq conn_sm_wait_setup_complete ,host_create_conn_wait_setup_complete 
+0x5938 014744 beq conn_sm_detach_delay ,host_create_conn_master_detach 
+0x5939 014745 beq conn_sm_send_version ,host_create_conn_send_version 
+0x593a 014746 beq conn_sm_wait_version ,host_create_conn_waiting 
+0x593b 014747 beq conn_sm_wait_switch_after_host_connection ,host_creat_conn_wait_switch 
+0x593c 014748 beq conn_sm_send_features_ext ,host_creat_conn_send_feat_ext 
+0x593d 014749 beq conn_sm_wait_features_ext ,host_create_conn_waiting 
+0x593e 014750 beq conn_sm_pairing ,host_create_conn_pairing 
+0x593f 014751 beq conn_sm_pairing_wait ,host_create_conn_pairing_wait 
+0x5940 014752 beq conn_sm_auth ,host_create_conn_auth 
+0x5941 014753 beq conn_sm_auth_wait ,host_create_conn_auth_wait 
+0x5942 014754 beq conn_sm_done ,host_create_conn_done 
+0x5943 014755 beq conn_sm_wait_done ,host_create_conn_done_wait 
+0x5944 014756 jam conn_sm_standby ,mem_conn_sm 
+0x5945 014758 rtn 
+:      014759 host_create_conn_done:
+0x5946 014760 fetch 1 ,mem_lmp_conn_state 
+0x5947 014761 rtnbit0 received_setup_complete 
+0x5948 014762 rtnbit0 sent_setup_complete 
+0x5949 014763 jam conn_sm_standby ,mem_conn_sm 
+0x594a 014764 call host_conn_judge_encrypt 
+0x594b 014765 branch scheduler_start_upper_sm 
+:      014767 host_conn_judge_encrypt:
+0x594c 014768 fetch 1 ,mem_connection_options 
+0x594d 014769 rtnbit0 connection_encrypt 
+0x594e 014770 jam conn_sm_encrypt_wait ,mem_conn_sm 
+0x594f 014771 rtn 
+:      014773 host_create_conn_done_wait:
+0x5950 014774 arg enpt_delay_timer ,queue 
+0x5951 014775 call timer_check 
+0x5952 014776 nrtn blank 
+0x5953 014777 jam conn_sm_done ,mem_conn_sm 
+0x5954 014778 rtn 
+:      014780 host_create_conn_auth:
+0x5955 014781 fetch 1 ,mem_connection_options 
+0x5956 014782 set0 connection_auth ,pdata 
+0x5957 014783 store 1 ,mem_connection_options 
+0x5958 014784 jam conn_sm_auth_wait ,mem_conn_sm 
+0x5959 014785 jam lmp_au_rand ,mem_lmo_opcode2 
+0x595a 014786 rtn 
+:      014787 host_create_conn_auth_wait:
+0x595b 014788 rtn 
+:      014789 host_create_conn_pairing:
+0x595c 014790 fetch 1 ,mem_pincode_state 
+0x595d 014791 rtnne pincode_state_pincode_ready 
+0x595e 014792 call host_auth 
+0x595f 014793 jam conn_sm_pairing_wait ,mem_conn_sm 
+0x5960 014794 rtn 
+:      014796 host_create_conn_pairing_wait:
+0x5961 014797 rtn 
+:      014798 host_creat_conn_send_feat_ext:
+0x5962 014799 jam conn_sm_wait_features_ext ,mem_conn_sm 
+0x5963 014800 jam lmp_ext_features_req ,mem_lmo_opcode2 
+0x5964 014801 rtn 
+:      014802 host_create_conn_send_version:
+0x5965 014803 jam conn_sm_wait_version ,mem_conn_sm 
+0x5966 014804 jam lmp_version_req ,mem_lmo_opcode2 
+0x5967 014805 rtn 
+:      014807 host_creat_conn_wait_switch:
+0x5968 014808 fetch 1 ,mem_switch_flag 
+0x5969 014809 rtneq switch_flag_init 
+0x596a 014810 beq switch_flag_accept ,host_create_conn_switch_accept 
+0x596b 014811 arg switch_wait_timer ,queue 
+0x596c 014812 call timer_check 
+0x596d 014813 nrtn blank 
+0x596e 014814 jam switch_flag_init ,mem_switch_flag 
+0x596f 014815 branch host_create_conn_switch 
+:      014816 host_create_conn_switch_accept:
+0x5970 014817 rtn master 
+0x5971 014818 branch host_create_conn_auth_pair 
+:      014820 host_create_conn_send_features:
+0x5972 014821 jam conn_sm_wait_features_res ,mem_conn_sm 
+0x5973 014822 jam lmp_features_req ,mem_lmo_opcode2 
+0x5974 014823 rtn 
+:      014824 host_create_conn_send_switch:
+0x5975 014825 jam lmp_switch_req ,mem_lmo_opcode2 
+0x5976 014826 set1 mark_switch_initiated ,mark 
+0x5977 014827 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+0x5978 014828 setarg 0x1ff 
+0x5979 014829 store 2 ,mem_soft_timer 
+0x597a 014830 rtn 
+:      014831 host_create_conn_send_conn_req:
+0x597b 014832 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+0x597c 014833 jam 0xff ,mem_soft_timer 
+0x597d 014834 set0 mark_reconn_recieve_switch ,mark 
+0x597e 014835 jam lmp_host_connection_req ,mem_lmo_opcode2 
+0x597f 014836 branch init_lmp_reinit 
+:      014837 host_create_conn_wait_accept:
+0x5980 014838 rtnmark1 mark_reconn_recieve_switch 
+0x5981 014839 fetch 2 ,mem_soft_timer 
+0x5982 014840 sub pdata ,1 ,pdata 
+0x5983 014841 branch host_create_conn_resend ,zero 
+0x5984 014842 store 2 ,mem_soft_timer 
+0x5985 014843 rtn 
+:      014844 host_create_conn_resend:
+0x5986 014845 jam conn_sm_send_switch ,mem_conn_sm 
+0x5987 014846 rtn 
+:      014847 host_create_conn_waiting:
+0x5988 014849 rtn 
+:      014851 host_create_conn_switch:
+0x5989 014852 fetch 1 ,mem_lmp_conn_state 
+0x598a 014853 rtnbit0 sent_setup_complete 
+0x598b 014854 rtnbit0 received_setup_complete 
+0x598c 014855 fetch 1 ,mem_connection_options 
+0x598d 014856 set0 connection_switch ,pdata 
+0x598e 014857 store 1 ,mem_connection_options 
+0x598f 014858 jam lmp_switch_req ,mem_lmo_opcode2 
+0x5990 014859 jam conn_sm_wait_switch_after_host_connection ,mem_conn_sm 
+0x5991 014860 rtn 
+:      014862 host_create_conn_send_setup_complete:
+0x5992 014863 jam conn_sm_wait_setup_complete ,mem_conn_sm 
+0x5993 014864 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5994 014865 rtn 
+:      014867 host_create_conn_wait_setup_complete:
+0x5995 014868 fetch 1 ,mem_lmp_conn_state 
+0x5996 014869 rtnbit0 received_setup_complete 
+0x5997 014870 jam conn_sm_standby ,mem_conn_sm 
+0x5998 014872 rtn 
+:      014873 host_create_conn_wait_setup_complete_rtn:
+0x5999 014874 jam conn_sm_auth_pair ,mem_conn_sm 
+0x599a 014875 rtn 
+:      014877 host_create_conn_master_detach:
+0x599b 014878 fetch 1 ,mem_soft_timer 
+0x599c 014879 increase -1 ,pdata 
+0x599d 014880 branch host_create_conn_send_detach ,blank 
+0x599e 014881 store 1 ,mem_soft_timer 
+0x599f 014882 rtn 
+:      014883 host_create_conn_send_detach:
+0x59a0 014884 jam lmp_detach ,mem_lmo_opcode2 
+0x59a1 014885 jam local_host ,mem_disconn_reason_send 
+0x59a2 014886 jam 0 ,mem_conn_sm 
+0x59a3 014887 rtn 
+:      014888 host_create_conn_auth_pair:
+0x59a4 014890 fetch 1 ,mem_connection_options 
+0x59a5 014891 bbit1 connection_switch ,host_create_conn_switch 
+0x59a6 014892 bbit1 connection_auth ,host_create_conn_auth_pair_true 
+:      014893 host_create_conn_sm_done:
+0x59a7 014894 jam conn_sm_done ,mem_conn_sm 
+0x59a8 014895 rtn 
+:      014896 host_create_conn_auth_pair_true:
+0x59a9 014897 fetch 1 ,mem_link_key_exists 
+0x59aa 014898 branch host_create_conn_auth_pair_nokey ,blank 
+0x59ab 014899 fetch 1 ,mem_lmp_conn_state 
+0x59ac 014900 rtnbit0 sent_setup_complete 
+0x59ad 014901 rtnbit0 received_setup_complete 
+0x59ae 014902 fetch 4 ,mem_aurand_send_delay_time 
+0x59af 014903 arg 100 ,temp 
+0x59b0 014904 iadd temp ,temp 
+0x59b1 014905 copy clkn_bt ,pdata 
+0x59b2 014906 isub temp ,null 
+0x59b3 014907 nrtn positive 
+0x59b4 014908 branch host_create_conn_auth 
+:      014912 host_create_conn_auth_pair_nokey:
+0x59b5 014913 jam conn_sm_pairing ,mem_conn_sm 
+0x59b6 014914 jam 4 ,mem_pin_length 
+0x59b7 014915 setarg 0x3030 
+0x59b8 014916 store 2 ,mem_pin 
+0x59b9 014917 istore 2 ,contw 
+0x59ba 014918 jam pincode_state_pincode_ready ,mem_pincode_state 
+0x59bb 014919 branch host_create_conn_pairing 
+:      014921 host_create_conn_auth_pair_wait:
+0x59bc 014922 rtn 
+:      014923 host_create_conn_encrypt:
+0x59bd 014924 fetch 1 ,mem_connection_options 
+0x59be 014925 bbit1 connection_encrypt ,host_create_conn_encrypt_start 
+0x59bf 014926 jam conn_sm_done ,mem_conn_sm 
+0x59c0 014927 rtn 
+:      014929 host_create_conn_encrypt_start:
+0x59c1 014930 fetch 1 ,mem_connection_options 
+0x59c2 014931 set0 connection_encrypt ,pdata 
+0x59c3 014932 store 1 ,mem_connection_options 
+0x59c4 014933 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x59c5 014934 rtn 
+:      014936 host_create_conn_encrypt_wait:
+0x59c6 014937 fetch 1 ,mem_wait_encryption 
+0x59c7 014938 rtn blank 
+0x59c8 014939 jam conn_sm_standby ,mem_conn_sm 
+0x59c9 014940 branch host_create_conn_encrypt_start 
+:      014942 host_create_conn_encrypt_wait_clear:
+0x59ca 014943 jam conn_sm_send_setup_complete ,mem_conn_sm 
+0x59cb 014944 rtn 
+:      014946 host_auth:
+0x59cc 014947 fetch 1 ,mem_op 
+0x59cd 014948 bbit1 op_inrand_req ,remote_auth 
+0x59ce 014949 call tid_initiate 
+0x59cf 014950 jam lmp_in_rand ,mem_lmo_opcode2 
+0x59d0 014951 branch cmd_exit 
+:      014952 remote_auth:
+0x59d1 014953 fetch 1 ,mem_op 
+0x59d2 014954 set0 op_inrand_req ,pdata 
+0x59d3 014955 store 1 ,mem_op 
+0x59d4 014956 call lmp_accept_inrand 
+0x59d5 014957 call tid_set_reply 
+0x59d6 014958 branch cmd_exit 
+:      014960 pincode_reinit:
+0x59d7 014961 setarg 4 
+0x59d8 014962 store 1 ,mem_pin_length 
+0x59d9 014963 setarg 0x3030 
+0x59da 014964 istore 2 ,contw 
+0x59db 014965 istore 2 ,contw 
+0x59dc 014966 rtn 
+:      014974 module_init:
+0x59dd 014975 rtn wake 
+0x59de 014976 jam 0 ,mem_module_task 
+0x59df 014977 call le_modified_name 
+0x59e0 014978 call adc_init_data 
+0x59e1 014979 setarg module_process_idle 
+0x59e2 014980 store 2 ,mem_cb_idle_process 
+0x59e3 014981 setarg module_conn_process 
+0x59e4 014982 store 2 ,mem_cb_bt_process 
+0x59e5 014983 setarg module_process_bb_event 
+0x59e6 014984 store 2 ,mem_cb_bb_event_process 
+0x59e7 014985 setarg module_conn_process 
+0x59e8 014986 store 2 ,mem_cb_le_process 
+0x59e9 014987 setarg module_lpm_lock 
+0x59ea 014988 store 2 ,mem_cb_check_wakelock 
+0x59eb 014989 setarg module_le_tx_update_data 
+0x59ec 014990 store 2 ,mem_cb_update_notify_value 
+0x59ed 014991 setarg module_le_tx_update_notify_continue 
+0x59ee 014992 store 2 ,mem_cb_update_notify_continue 
+0x59ef 014993 setarg module_hci_event_receive_spp_data 
+0x59f0 014994 store 2 ,mem_cb_receive_spp_data 
+0x59f1 014995 setarg module_le_receive_data 
+0x59f2 014996 store 2 ,mem_cb_att_write 
+0x59f3 014997 set1 mark_ext_patch ,mark 
+0x59f4 014998 bpatch patch2b_7 ,mem_patch2b 
+0x59f5 014999 call module_lpm_uart_init 
+0x59f6 015000 call module_gpio_init 
+0x59f7 015001 call check_module_disabled 
+0x59f8 015002 call eeprom_load_reconn_info 
+0x59f9 015003 branch module_hci_event_enter_standby_mode 
+:      015006 module_lpm_uart_init:
+0x59fa 015007 fetch 4 ,mem_module_uart_rx_buffer 
+0x59fb 015008 hstore 4 ,core_uart_rsaddr 
+0x59fc 015010 fetch 4 ,mem_module_uart_tx_buffer 
+0x59fd 015011 hstore 4 ,core_uart_tsaddr 
+0x59fe 015013 hfetch 1 ,core_gpio_sel1 
+0x59ff 015014 or_into 0x04 ,pdata 
+0x5a00 015015 hstore 1 ,core_gpio_sel1 
+0x5a01 015016 jam 0xff ,mem_ucode_id_local 
+0x5a02 015017 hjam 0x0 ,core_uart_ctrl 
+0x5a03 015019 fetch 2 ,mem_module_uart_rx_buffer 
+0x5a04 015020 hstore 2 ,core_uart_rrptr 
+0x5a05 015021 fetch 2 ,mem_module_uart_tx_buffer 
+0x5a06 015022 hstore 2 ,core_uart_twptr 
+0x5a07 015023 hstore 2 ,core_uart_trptrp 
+0x5a08 015025 hfetch 4 ,core_gpio_pu0 
+0x5a09 015026 set1 7 ,pdata 
+0x5a0a 015027 hstore 4 ,core_gpio_pu0 
+0x5a0b 015029 call hci_init_common 
+0x5a0c 015030 fetch 1 ,mem_module_flag 
+0x5a0d 015031 isolate1 module_flag_uart_flow_control ,pdata 
+0x5a0e 015032 hfetcht 1 ,core_uart_ctrl 
+0x5a0f 015033 setflag true ,4 ,temp 
+0x5a10 015034 hstoret 1 ,core_uart_ctrl 
+0x5a11 015035 rtn 
+:      015039 module_lpm_init:
+0x5a12 015040 call module_lpm_uart_init 
+:      015043 module_gpio_init:
+0x5a13 015048 fetcht 1 ,mem_module_connect_state_gpio 
+0x5a14 015049 call gpio_config_output 
+0x5a15 015050 call module_set_conn_pin_low 
+0x5a16 015052 fetcht 1 ,mem_module_wake_up_gpio 
+0x5a17 015053 branch gpio_config_input 
+:      015055 module_lpm_lock:
+0x5a18 015056 fetcht 1 ,mem_module_wake_up_gpio 
+0x5a19 015057 call gpio_get_bit 
+0x5a1a 015058 nbranch app_put_lpm_wake_lock ,true 
+0x5a1b 015059 branch app_get_lpm_wake_lock 
+:      015063 module_process_idle:
+:      015064 module_conn_process:
+:      015065 module_app_dispatch:
+0x5a1c 015066 set1 mark_ext_patch ,mark 
+0x5a1d 015067 bpatch patch2c_0 ,mem_patch2c 
+0x5a1e 015068 call module_control_air_flow 
+0x5a1f 015069 call l2cap_malloc_is_fifo_full 
+0x5a20 015070 nrtn blank 
+0x5a21 015071 branch module_process 
+:      015072 module_process_bb_event:
+0x5a22 015073 copy regc ,pdata 
+0x5a23 015074 beq bt_evt_bb_connected ,module_process_bb_conn 
+0x5a24 015075 beq bt_evt_bb_disconnected ,module_process_bb_event_disconned 
+0x5a25 015076 beq bt_evt_reconn_failed ,module_process_reconn_fail 
+0x5a26 015077 beq bt_evt_setup_complete ,module_process_setup_complete 
+0x5a27 015078 beq bt_evt_spp_connected ,module_process_spp_connected 
+0x5a28 015079 beq bt_evt_spp_disconnected ,module_process_spp_disconnected 
+0x5a29 015080 beq bt_evt_pincode_req ,module_process_evt_pincode_req 
+0x5a2a 015081 beq bt_evt_enter_sniff ,module_process_enter_sniff 
+0x5a2b 015082 beq bt_evt_exit_sniff ,module_process_exit_sniff 
+0x5a2c 015083 beq bt_evt_reconn_page_timeout ,module_process_page_time_out 
+0x5a2d 015084 beq bt_evt_le_connected ,module_process_le_conn 
+0x5a2e 015085 beq bt_evt_le_disconnected ,module_process_bb_even_le_disconn 
+0x5a2f 015086 beq bt_evt_unsniff_accept ,module_process_unsniff_accept 
+0x5a30 015087 beq bt_evt_unsniff_not_accept ,module_process_unsniff_not_accept 
+0x5a31 015088 beq bt_evt_le_pairing_fail ,module_hci_event_le_pairing_fail 
+0x5a32 015089 beq bt_evt_le_pairing_success ,module_hci_event_le_pairing_success 
+0x5a33 015090 beq bt_evt_le_start_enc ,module_hci_event_start_enc 
+0x5a34 015091 beq bt_evt_le_pause_enc ,module_hci_event_pause_enc 
+0x5a35 015092 beq bt_evt_le_tk_generate ,module_hci_event_le_tk 
+0x5a36 015093 beq bt_evt_bt_gkey_generate ,module_hci_event_gkey_generate 
+0x5a37 015094 beq bt_evt_bt_get_passkey ,module_hci_event_passkey_entry_mode 
+0x5a38 015095 beq bt_evt_bt_pairing_fail ,module_hci_event_bt_pairing_fail 
+0x5a39 015096 beq bt_evt_bt_pairing_success ,module_hci_event_bt_pairing_success 
+0x5a3a 015097 and pdata ,0x0f ,temp 
+0x5a3b 015098 and_into bt_evt_timer_mask ,pdata 
+0x5a3c 015099 beq bt_evt_timer_init ,module_bb_event_timer 
+0x5a3d 015100 rtn 
+:      015103 module_process_bb_event_disconned:
+0x5a3e 015104 fetch 1 ,mem_flag_pairing_state 
+0x5a3f 015105 ncall module_hci_event_bt_pairing_fail ,blank 
+0x5a40 015106 call module_disconn_start 
+0x5a41 015107 fetch 2 ,mem_ui_state_map 
+0x5a42 015108 rtnbit0 ui_state_bt_spp_conn 
+0x5a43 015109 branch module_spp_disconnected 
+:      015111 module_process_spp_connected:
+0x5a44 015112 fetch 2 ,mem_ui_state_map 
+0x5a45 015113 set1 ui_state_bt_spp_conn ,pdata 
+0x5a46 015115 store 2 ,mem_ui_state_map 
+0x5a47 015116 fetch 1 ,mem_module_spp_lpm_mult 
+0x5a48 015117 store 1 ,mem_lpm_mult 
+0x5a49 015118 call module_set_conn_pin_low 
+0x5a4a 015119 branch module_hci_event_spp_connect 
+:      015121 module_process_spp_disconnected:
+:      015123 module_spp_disconnected:
+0x5a4b 015124 fetch 2 ,mem_ui_state_map 
+0x5a4c 015125 set0 ui_state_bt_spp_conn ,pdata 
+0x5a4d 015126 store 2 ,mem_ui_state_map 
+0x5a4e 015127 branch module_hci_event_spp_disconnect 
+:      015130 module_process_enter_sniff:
+:      015132 module_sniff_param_check:
+0x5a4f 015135 fetch 2 ,mem_context + coffset_tsniff 
+0x5a50 015136 rshift pdata ,pdata 
+0x5a51 015137 fetcht 2 ,mem_sniff_param_interval 
+0x5a52 015138 isub temp ,null 
+0x5a53 015139 nbranch module_sniff_param_check_unsniff ,zero 
+0x5a54 015140 branch app_lpm_mult_enable 
+:      015141 module_sniff_param_check_unsniff:
+0x5a55 015142 fetch 1 ,mem_module_task 
+0x5a56 015143 rtnbit1 moudle_task_unsinff 
+0x5a57 015144 hfetch 2 ,core_uart_rxitems 
+0x5a58 015145 ncall module_set_unsniff_task_flag ,blank 
+0x5a59 015146 branch app_bt_sniff_exit 
+:      015148 module_process_exit_sniff:
+0x5a5a 015149 branch app_lpm_mult_disable 
+:      015151 module_process_setup_complete:
+0x5a5b 015152 branch module_conn_start 
+:      015154 module_process_bb_even_le_disconn:
+0x5a5c 015155 call module_disconn_start 
+0x5a5d 015156 branch module_hci_event_le_disconnect 
+:      015158 module_process_evt_pincode_req:
+0x5a5e 015159 branch app_bt_set_pincode 
+:      015163 module_process_unsniff_accept:
+0x5a5f 015164 fetch 1 ,mem_module_task 
+0x5a60 015165 bbit0 moudle_task_unsinff ,app_bt_enter_sniff 
+0x5a61 015166 branch module_clear_unsniff_task_flag 
+:      015168 module_process_unsniff_not_accept:
+0x5a62 015169 branch module_clear_unsniff_task_flag 
+:      015172 module_process_le_conn:
+0x5a63 015173 call module_conn_start 
+0x5a64 015174 fetch 1 ,mem_module_le_lpm_mult 
+0x5a65 015175 store 1 ,mem_lpm_mult 
+0x5a66 015176 branch module_hci_event_le_connect 
+:      015179 module_process_bb_conn:
+0x5a67 015180 jam 0 ,mem_flag_mode_ssp_pin 
+0x5a68 015181 rtn 
+:      015183 module_process_page_time_out:
+:      015184 module_process_reconn_fail:
+:      015185 module_disconn_start:
+0x5a69 015186 call module_start_adv_discovery_by_command 
+0x5a6a 015187 branch module_set_conn_pin_high 
+:      015190 module_set_conn_pin_high:
+0x5a6b 015191 fetcht 1 ,mem_module_connect_state_gpio 
+0x5a6c 015192 branch gpio_out_active 
+:      015194 module_conn_start:
+0x5a6d 015195 call module_stop_adv_discovery 
+0x5a6e 015196 branch module_set_conn_pin_low 
+:      015198 module_stop_adv_discovery:
+0x5a6f 015199 fetch 1 ,mem_module_state 
+0x5a70 015200 isolate1 moudle_state_bt_bit ,pdata 
+0x5a71 015201 call app_bt_stop_discovery ,true 
+0x5a72 015202 fetch 1 ,mem_module_state 
+0x5a73 015203 isolate1 moudle_state_ble_bit ,pdata 
+0x5a74 015204 call app_ble_stop_adv ,true 
+0x5a75 015205 rtn 
+:      015206 module_set_conn_pin_low:
+0x5a76 015207 fetcht 1 ,mem_module_connect_state_gpio 
+0x5a77 015208 branch gpio_out_inactive 
+:      015210 module_process_with_credit:
+0x5a78 015211 fetch 1 ,mem_credit_flag 
+0x5a79 015212 rtneq credit_disable 
+0x5a7a 015213 branch rfcomm_send_uih_without_payload 
+:      015215 module_process:
+0x5a7b 015216 set1 mark_ext_patch ,mark 
+0x5a7c 015217 bpatch patch2c_1 ,mem_patch2c 
+0x5a7d 015218 hfetch 1 ,core_uart_status 
+0x5a7e 015219 bbit1 uart_status_rx_fifo_empty ,module_process_with_credit 
+0x5a7f 015220 call get_uart_rrptr 
+0x5a80 015221 ifetch 1 ,contru 
+0x5a81 015222 bne 0x01 ,module_hci_in_excp 
+0x5a82 015223 hfetch 2 ,core_uart_rxitems 
+0x5a83 015224 sub pdata ,2 ,null 
+0x5a84 015225 rtn positive 
+0x5a85 015226 ifetch 1 ,contru 
+0x5a86 015227 store 1 ,mem_uart_opcode 
+0x5a87 015228 ifetcht 1 ,contru 
+0x5a88 015229 copy contru ,rega 
+0x5a89 015230 storet 1 ,mem_uart_len 
+0x5a8a 015231 add temp ,3 ,temp 
+0x5a8b 015232 hfetch 2 ,core_uart_rxitems 
+0x5a8c 015233 isub temp ,temp 
+0x5a8d 015234 nrtn positive 
+0x5a8e 015235 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5a8f 015236 call module_hci_cmd_control 
+0x5a90 015237 fetch 1 ,mem_module_temp_nl_discard_packet 
+0x5a91 015238 rtneq hci_not_discard_packet 
+0x5a92 015239 branch module_hci_dicard_packet 
+:      015241 module_hci_in_excp:
+0x5a93 015242 call module_hci_event_invalid_packet 
+0x5a94 015243 call wait_uarttx 
+0x5a95 015244 branch module_hci_release_except 
+:      015247 module_hci_release_except:
+0x5a96 015248 set1 mark_ext_patch ,mark 
+0x5a97 015249 bpatch patch2c_2 ,mem_patch2c 
+0x5a98 015250 hfetch 2 ,core_uart_rxitems 
+0x5a99 015251 rtn blank 
+0x5a9a 015252 call get_uart_rrptr 
+0x5a9b 015253 ifetch 1 ,contru 
+0x5a9c 015254 sub pdata ,0x01 ,null 
+0x5a9d 015255 ncall module_hci_dicard_bytes ,zero 
+0x5a9e 015256 nbranch module_hci_release_except ,zero 
+0x5a9f 015257 ifetch 1 ,contru 
+0x5aa0 015258 rtneq hci_cmd_spp_data_req 
+0x5aa1 015259 rtneq hci_cmd_set_credit_given 
+0x5aa2 015260 increase -1 ,contru 
+0x5aa3 015261 call module_hci_dicard_bytes 
+0x5aa4 015262 branch module_hci_release_except 
+:      015264 module_hci_dicard_packet:
+0x5aa5 015265 call get_uart_rrptr 
+0x5aa6 015266 increase 2 ,contru 
+0x5aa7 015267 ifetch 1 ,contru 
+0x5aa8 015268 iadd contru ,contru 
+:      015269 module_hci_dicard_bytes:
+0x5aa9 015270 branch uartd_rxdone 
+:      015274 module_hci_cmd_control:
+0x5aaa 015275 set1 mark_ext_patch ,mark 
+0x5aab 015276 bpatch patch2c_3 ,mem_patch2c 
+0x5aac 015277 fetch 1 ,mem_uart_opcode 
+0x5aad 015278 beq hci_cmd_set_bt_addr_req ,module_hci_cmd_set_bt_addr 
+0x5aae 015279 beq hci_cmd_set_le_addr_req ,module_hci_cmd_set_le_addr 
+0x5aaf 015280 beq hci_cmd_set_visibility_req ,module_hci_cmd_set_visibility 
+0x5ab0 015281 beq hci_cmd_set_bt_name_req ,module_hci_cmd_set_bt_name 
+0x5ab1 015282 beq hci_cmd_set_le_name_req ,module_hci_cmd_set_le_name 
+0x5ab2 015283 beq hci_cmd_spp_data_req ,module_hci_cmd_receive_spp_data 
+0x5ab3 015284 beq hci_cmd_le_data_req ,module_hci_cmd_receive_le_data 
+0x5ab4 015285 beq hci_cmd_status_irq ,module_hci_cmd_inquire_status 
+0x5ab5 015286 beq hci_cmd_set_pairing_req ,module_hci_cmd_set_pairing_mode 
+0x5ab6 015287 beq hci_cmd_set_pincode_req ,module_hci_cmd_set_pincode 
+0x5ab7 015288 beq hci_cmd_set_uartcontrol_req ,module_hci_cmd_set_uart_control_mode 
+0x5ab8 015289 beq hci_cmd_set_uart_baud_req ,module_hci_cmd_set_uart_baud 
+0x5ab9 015290 beq hci_cmd_version_req ,module_hci_cmd_version_request 
+0x5aba 015291 beq hci_cmd_bt_disconnect ,module_hci_cmd_bt_disconnect 
+0x5abb 015292 beq hci_cmd_ble_disconnect ,module_hci_cmd_ble_disconnect 
+0x5abc 015293 beq hci_cmd_set_nvram_req ,module_hci_cmd_set_nvram 
+0x5abd 015294 beq hci_cmd_confirm_gkey ,module_hci_cmd_confirm_gkey 
+0x5abe 015295 beq hci_cmd_set_credit_given ,module_hci_cmd_set_credit_given 
+0x5abf 015296 beq hci_cmd_auto_adv_scan ,module_hci_cmd_auto_adv 
+0x5ac0 015297 beq hci_cmd_power_req ,module_hci_cmd_power_request 
+0x5ac1 015298 beq hci_cmd_power_set ,module_hci_cmd_power_set 
+0x5ac2 015299 beq hci_cmd_passkey_entry ,module_hci_cmd_passkey_entry 
+0x5ac3 015300 beq hci_cmd_set_gpio ,module_hci_cmd_set_gpio 
+0x5ac4 015301 beq hci_cmd_read_gpio ,module_hci_cmd_read_gpio 
+0x5ac5 015302 beq hci_cmd_le_set_pairing ,module_hci_cmd_le_set_pairing_mode 
+0x5ac6 015303 beq hci_cmd_le_set_adv_data ,module_hci_cmd_le_set_adv_data 
+0x5ac7 015304 beq hci_cmd_le_set_scan_data ,module_hci_cmd_le_set_scan_data 
+0x5ac8 015305 beq hci_cmd_le_send_conn_update_req ,module_hci_cmd_le_send_conn_update_req 
+0x5ac9 015306 beq hci_cmd_le_start_pairing ,module_hci_cmd_le_start_pairing 
+0x5aca 015307 beq hci_cmd_le_confirm_gkey ,module_hci_cmd_le_confirm_gkey 
+0x5acb 015308 branch module_hci_event_receive_invalid_cmd 
+:      015313 module_hci_cmd_set_bt_addr:
+0x5acc 015314 fetch 1 ,mem_uart_len 
+0x5acd 015315 bne 6 ,module_hci_event_receive_invalid_cmd 
+0x5ace 015316 ifetch 6 ,contru 
+0x5acf 015317 store 6 ,mem_lap 
+0x5ad0 015318 branch module_hci_event_receive_valid_cmd 
+:      015321 module_hci_cmd_set_le_addr:
+0x5ad1 015322 fetch 1 ,mem_uart_len 
+0x5ad2 015323 bne 6 ,module_hci_event_receive_invalid_cmd 
+0x5ad3 015324 ifetch 6 ,contru 
+0x5ad4 015325 store 6 ,mem_le_lap 
+0x5ad5 015326 branch module_hci_event_receive_valid_cmd 
+:      015330 module_hci_cmd_set_visibility:
+0x5ad6 015331 fetch 1 ,mem_uart_len 
+0x5ad7 015332 bne 1 ,module_hci_event_receive_invalid_cmd 
+0x5ad8 015333 copy rega ,contru 
+0x5ad9 015334 call module_hci_event_receive_valid_cmd 
+0x5ada 015335 ifetcht 1 ,contru 
+0x5adb 015336 storet 1 ,mem_module_bluetooth_stauts_by_command 
+0x5adc 015337 fetch 2 ,mem_ui_state_map 
+0x5add 015338 rtnbit1 ui_state_ble_connected 
+0x5ade 015339 rtnbit1 ui_state_bt_connected 
+:      015340 module_start_adv_discovery_by_command:
+0x5adf 015341 fetch 1 ,mem_module_state 
+0x5ae0 015342 isolate1 moudle_state_bt_bit ,pdata 
+0x5ae1 015343 nbranch moudle_start_adv_by_command ,true 
+0x5ae2 015344 fetcht 1 ,mem_module_bluetooth_stauts_by_command 
+0x5ae3 015345 and temp ,0x03 ,pdata 
+0x5ae4 015346 store 1 ,mem_scan_mode 
+:      015347 moudle_start_adv_by_command:
+0x5ae5 015348 fetch 1 ,mem_module_state 
+0x5ae6 015349 isolate1 moudle_state_ble_bit ,pdata 
+0x5ae7 015350 nrtn true 
+0x5ae8 015351 fetcht 1 ,mem_module_bluetooth_stauts_by_command 
+0x5ae9 015352 isolate1 2 ,temp 
+0x5aea 015353 branch app_ble_start_adv ,true 
+0x5aeb 015354 branch app_ble_stop_adv 
+:      015357 module_hci_cmd_set_bt_name:
+0x5aec 015358 fetch 1 ,mem_uart_len 
+0x5aed 015359 sub pdata ,32 ,null 
+0x5aee 015360 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5aef 015361 store 1 ,mem_local_name_length 
+0x5af0 015362 copy pdata ,loopcnt 
+0x5af1 015363 copy rega ,contru 
+0x5af2 015364 arg mem_local_name ,contw 
+0x5af3 015365 call uart_copy_rx_bytes_fast 
+0x5af4 015366 branch module_hci_event_receive_valid_cmd 
+:      015370 module_hci_cmd_set_le_name:
+0x5af5 015371 fetch 1 ,mem_uart_len 
+0x5af6 015372 sub pdata ,0x13 ,null 
+0x5af7 015373 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5af8 015374 store 1 ,mem_le_name_len 
+0x5af9 015375 copy pdata ,loopcnt 
+0x5afa 015376 copy rega ,contru 
+0x5afb 015377 arg mem_le_name ,contw 
+0x5afc 015378 call uart_copy_rx_bytes_fast 
+0x5afd 015379 call le_modified_name 
+0x5afe 015380 branch module_hci_event_receive_valid_cmd 
+:      015384 module_hci_cmd_receive_spp_data:
+0x5aff 015385 fetch 1 ,mem_ui_state_map 
+0x5b00 015386 bbit0 ui_state_bt_spp_conn ,module_hci_event_receive_invalid_cmd 
+0x5b01 015387 call app_check_sniff 
+0x5b02 015388 branch module_hci_cmd_spp_exut_sniff ,true 
+0x5b03 015389 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b04 015391 fetch 1 ,mem_remote_credits 
+0x5b05 015392 rtn blank 
+0x5b06 015393 fetch 2 ,mem_nl_rx_len_all 
+0x5b07 015394 bne 0 ,module_hci_cmd_pass_init_ng_rx_len_all 
+0x5b08 015395 fetch 1 ,mem_uart_len 
+0x5b09 015396 store 2 ,mem_nl_rx_len_all 
+0x5b0a 015398 copy rega ,contru 
+0x5b0b 015401 copy contru ,pdata 
+0x5b0c 015402 store 2 ,mem_nl_rx_data_src 
+:      015403 module_hci_cmd_pass_init_ng_rx_len_all:
+0x5b0d 015404 call module_hci_cmd_get_current_packet_len_and_remain_len 
+0x5b0e 015405 branch spp_tx_rfcomm_packet 
+:      015406 module_hci_cmd_spp_exut_sniff:
+0x5b0f 015407 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b10 015408 branch module_exit_sniff 
+:      015410 module_hci_cmd_get_current_packet_len_and_remain_len:
+0x5b11 015411 call module_hci_cmd_get_current_patcket_len 
+0x5b12 015412 fetch 2 ,mem_nl_rx_len_all 
+0x5b13 015413 fetcht 2 ,mem_current_packet_length 
+0x5b14 015414 isub temp ,pdata 
+0x5b15 015415 store 2 ,mem_nl_rx_len_all 
+0x5b16 015416 rtn 
+:      015418 module_hci_cmd_get_current_patcket_len:
+0x5b17 015419 fetch 2 ,mem_nl_rx_len_all 
+0x5b18 015420 arg dm_refcom_buff_len ,temp 
+0x5b19 015421 call not_greater_than 
+0x5b1a 015422 fetcht 2 ,mem_rfcomm_max_frame_size 
+0x5b1b 015423 call not_greater_than 
+0x5b1c 015424 fetcht 2 ,mem_pn_max_frame_size 
+0x5b1d 015425 call not_greater_than 
+0x5b1e 015426 store 2 ,mem_current_packet_length 
+0x5b1f 015427 rtn 
+:      015430 module_hci_command_tx_spp_tx_complete:
+0x5b20 015431 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b21 015432 jam hci_cmd_spp_data_req ,mem_uart_opcode 
+0x5b22 015433 branch module_hci_event_receive_valid_cmd 
+:      015436 module_hci_cmd_receive_le_data:
+0x5b23 015437 fetch 2 ,mem_ui_state_map 
+0x5b24 015438 rtnbit0 ui_state_ble_connected 
+0x5b25 015440 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b26 015441 fetch 1 ,mem_le_continue_flag 
+0x5b27 015442 nrtn blank 
+0x5b28 015443 fetch 2 ,mem_module_hci_notify_len 
+0x5b29 015444 branch module_hci_cmd_gatt_notify_start_packet ,blank 
+0x5b2a 015445 fetcht 2 ,mem_module_hci_notify_offset 
+0x5b2b 015446 isub temp ,null 
+0x5b2c 015447 nrtn zero 
+0x5b2d 015448 set1 mark_ext_patch ,mark 
+0x5b2e 015449 bpatch patch2c_4 ,mem_patch2c 
+0x5b2f 015450 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b30 015451 fetch 2 ,mem_module_hci_notify_original_len 
+0x5b31 015452 fetcht 2 ,mem_module_hci_notify_len 
+0x5b32 015453 isub temp ,regb 
+0x5b33 015454 nbranch assert ,positive 
+0x5b34 015455 nbranch module_hci_cmd_gatt_notify_seperate ,zero 
+0x5b35 015456 call module_hci_cmd_gatt_notify_clear_len 
+0x5b36 015457 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+0x5b37 015458 branch module_set_le_tx_data_flag 
+:      015462 module_hci_cmd_gatt_notify_seperate:
+0x5b38 015463 fetch 1 ,mem_module_flag 
+0x5b39 015464 rtnbit1 module_flag_ble_send_mtu23 
+0x5b3a 015465 hfetch 2 ,core_uart_rrptr 
+0x5b3b 015466 iforce contru 
+0x5b3c 015467 fetch 2 ,mem_module_hci_notify_len 
+0x5b3d 015468 iadd contru ,contru 
+0x5b3e 015469 copy contru ,rega 
+0x5b3f 015470 setarg 0x0901 
+0x5b40 015471 istore 2 ,contru 
+0x5b41 015472 add regb ,2 ,pdata 
+0x5b42 015473 istore 1 ,contru 
+0x5b43 015474 fetch 2 ,mem_module_hci_notify_att 
+0x5b44 015475 istore 2 ,contru 
+0x5b45 015476 copy rega ,pdata 
+0x5b46 015477 hstore 2 ,core_uart_rrptr 
+:      015478 module_hci_cmd_gatt_notify_clear_len:
+0x5b47 015479 setarg 0 
+0x5b48 015480 store 2 ,mem_module_hci_notify_len 
+0x5b49 015481 rtn 
+:      015483 module_hci_cmd_gatt_notify_start_packet:
+0x5b4a 015484 copy rega ,contru 
+0x5b4b 015485 ifetch 2 ,contru 
+0x5b4c 015486 store 2 ,mem_module_hci_notify_att 
+0x5b4d 015487 fetch 1 ,mem_uart_len 
+0x5b4e 015488 increase -2 ,pdata 
+0x5b4f 015490 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5b50 015491 branch module_hci_event_receive_invalid_cmd ,blank 
+0x5b51 015492 store 2 ,mem_module_hci_notify_original_len 
+0x5b52 015494 fetch 1 ,mem_module_flag 
+0x5b53 015495 bbit1 module_flag_ble_send_mtu23 ,module_hci_cmd_notify_start_packet_mtu23 
+0x5b54 015497 fetcht 2 ,mem_le_remote_mtu 
+:      015498 module_hci_cmd_gatt_notify_start_packet1:
+0x5b55 015499 fetch 2 ,mem_module_hci_notify_original_len 
+0x5b56 015500 call not_greater_than 
+0x5b57 015502 store 2 ,mem_module_hci_notify_len 
+0x5b58 015503 copy contru ,pdata 
+0x5b59 015504 store 2 ,mem_module_hci_notify_start 
+0x5b5a 015505 setarg 0 
+0x5b5b 015506 store 2 ,mem_module_hci_notify_offset 
+0x5b5c 015507 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5b5d 015508 branch le_xtype_fifo_in 
+:      015510 module_hci_cmd_notify_start_packet_mtu23:
+0x5b5e 015511 arg 20 ,temp 
+0x5b5f 015512 branch module_hci_cmd_gatt_notify_start_packet1 
+:      015515 module_le_tx_update_data:
+0x5b60 015516 fetch 1 ,mem_le_notify_type 
+0x5b61 015517 jam 0 ,mem_le_notify_type 
+0x5b62 015518 nbranch module_le_send_md_notify ,blank 
+0x5b63 015520 fetch 2 ,mem_module_hci_notify_len 
+0x5b64 015521 branch assert ,blank 
+0x5b65 015522 add pdata ,3 ,temp 
+0x5b66 015523 storet 2 ,mem_le_txpayload 
+0x5b67 015524 arg 20 ,temp 
+0x5b68 015525 call not_greater_than 
+0x5b69 015526 copy pdata ,loopcnt 
+0x5b6a 015527 store 2 ,mem_module_hci_notify_offset 
+0x5b6b 015530 fetcht 2 ,mem_module_hci_notify_len 
+0x5b6c 015531 isub temp ,temp 
+0x5b6d 015532 fetch 1 ,mem_module_flag 
+0x5b6e 015533 bbit1 module_flag_ble_send_mtu23 ,module_le_tx_no_continue 
+0x5b6f 015534 ncall module_le_send_att_insert_continue ,zero 
+0x5b70 015535 jam le_continue_type_notification ,mem_le_continue_type 
+:      015536 module_le_tx_no_continue:
+0x5b71 015537 set1 mark_ext_patch ,mark 
+0x5b72 015538 bpatch patch2c_5 ,mem_patch2c 
+0x5b73 015539 arg 0x02 ,type 
+0x5b74 015540 fetch 2 ,mem_module_hci_notify_att 
+0x5b75 015541 store 2 ,mem_le_l2cap + 1 
+0x5b76 015542 fetch 2 ,mem_module_hci_notify_start 
+0x5b77 015543 copy pdata ,contru 
+:      015544 module_le_send_att_notify_common:
+0x5b78 015547 call uart_copy_rx_bytes_fast 
+0x5b79 015548 fetch 1 ,mem_module_flag 
+0x5b7a 015549 bbit0 module_flag_ble_send_mtu23 ,module_le_send_not_fill_l2cap_len 
+0x5b7b 015550 setarg mem_le_txpayload 
+0x5b7c 015551 isub contw ,pdata 
+0x5b7d 015552 sub pdata ,0 ,temp 
+0x5b7e 015553 storet 1 ,mem_le_txlen 
+0x5b7f 015554 fetch 2 ,mem_module_hci_notify_original_len 
+0x5b80 015555 fetcht 2 ,mem_module_hci_notify_len 
+0x5b81 015556 call module_le_check_if_send_once_more 
+0x5b82 015557 fetcht 1 ,mem_le_arq 
+0x5b83 015558 fetch 1 ,mem_module_le_md_flag 
+0x5b84 015559 branch module_le_send_non_l2cap_last ,blank 
+0x5b85 015560 nsetflag blank ,md ,temp 
+0x5b86 015561 storet 1 ,mem_le_arq 
+0x5b87 015562 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5b88 015563 call le_xtype_fifo_in 
+0x5b89 015564 jam 1 ,mem_le_notify_type 
+0x5b8a 015565 fetcht 1 ,mem_le_arq 
+0x5b8b 015566 branch le_send_non_l2cap1 
+:      015568 module_le_send_non_l2cap_last:
+0x5b8c 015569 call module_set_le_tx_data_flag 
+0x5b8d 015570 branch le_send_non_l2cap 
+:      015572 module_set_le_tx_data_flag:
+0x5b8e 015573 fetch 1 ,mem_module_flag 
+0x5b8f 015574 set1 module_flag_ble_send_data ,pdata 
+0x5b90 015575 branch module_store_moule_flag 
+:      015577 module_clear_le_tx_data_flag:
+0x5b91 015578 fetch 1 ,mem_module_flag 
+0x5b92 015579 set0 module_flag_ble_send_data ,pdata 
+0x5b93 015580 branch module_store_moule_flag 
+:      015582 module_le_check_if_send_once_more:
+0x5b94 015583 jam 0 ,mem_module_le_md_flag 
+0x5b95 015584 isub temp ,null 
+0x5b96 015585 rtn zero 
+0x5b97 015586 nrtn positive 
+0x5b98 015587 jam 1 ,mem_module_le_md_flag 
+0x5b99 015588 rtn 
+:      015590 module_le_send_att_insert_continue:
+0x5b9a 015591 fetch 3 ,mem_le_xtype_fifo 
+0x5b9b 015592 nbranch module_le_send_att_insert_cont_next ,blank 
+0x5b9c 015593 jam attop_continue ,mem_le_xtype_fifo + 2 
+0x5b9d 015594 rtn 
+:      015595 module_le_send_att_insert_cont_next:
+0x5b9e 015596 call le_xtype_fifo_is_near_full 
+0x5b9f 015597 nbranch assert ,blank 
+0x5ba0 015598 jam attop_continue ,mem_le_xtype_fifo + 1 
+0x5ba1 015599 rtn 
+:      015602 module_le_tx_update_notify_continue:
+0x5ba2 015603 set1 mark_ext_patch ,mark 
+0x5ba3 015604 bpatch patch2c_6 ,mem_patch2c 
+0x5ba4 015605 fetch 2 ,mem_module_hci_notify_len 
+0x5ba5 015606 branch assert ,blank 
+0x5ba6 015607 fetcht 2 ,mem_module_hci_notify_offset 
+0x5ba7 015608 branch assert ,blank 
+0x5ba8 015609 isub temp ,pdata 
+0x5ba9 015610 arg 27 ,temp 
+0x5baa 015611 call not_greater_than 
+0x5bab 015612 copy pdata ,loopcnt 
+0x5bac 015613 fetch 2 ,mem_module_hci_notify_start 
+0x5bad 015614 copy pdata ,contru 
+0x5bae 015615 fetch 2 ,mem_module_hci_notify_offset 
+0x5baf 015616 iadd contru ,contru 
+0x5bb0 015617 iadd loopcnt ,pdata 
+0x5bb1 015618 store 2 ,mem_module_hci_notify_offset 
+0x5bb2 015619 fetcht 2 ,mem_module_hci_notify_len 
+0x5bb3 015620 isub temp ,temp 
+0x5bb4 015621 ncall module_le_send_att_insert_continue ,zero 
+0x5bb5 015622 jam le_continue_type_notification ,mem_le_continue_type 
+0x5bb6 015623 arg mem_le_txpayload ,contw 
+0x5bb7 015624 call uart_copy_rx_bytes_fast 
+0x5bb8 015625 arg 1 ,type 
+:      015626 module_le_send_not_fill_l2cap_len:
+0x5bb9 015627 setarg mem_le_txpayload 
+0x5bba 015628 isub contw ,pdata 
+0x5bbb 015629 sub pdata ,0 ,temp 
+0x5bbc 015630 storet 1 ,mem_le_txlen 
+0x5bbd 015631 branch le_send_non_l2cap 
+:      015634 module_le_send_md_notify:
+0x5bbe 015635 fetch 2 ,mem_module_hci_notify_original_len 
+0x5bbf 015636 fetcht 2 ,mem_module_hci_notify_len 
+0x5bc0 015637 isub temp ,pdata 
+0x5bc1 015638 arg 20 ,temp 
+0x5bc2 015639 call not_greater_than 
+0x5bc3 015640 copy pdata ,loopcnt 
+0x5bc4 015641 add pdata ,3 ,temp 
+0x5bc5 015642 storet 2 ,mem_le_txpayload 
+0x5bc6 015644 fetcht 2 ,mem_module_hci_notify_len 
+0x5bc7 015645 iadd temp ,pdata 
+0x5bc8 015646 store 2 ,mem_module_hci_notify_len 
+0x5bc9 015648 fetch 2 ,mem_module_hci_notify_start 
+0x5bca 015649 copy pdata ,contru 
+0x5bcb 015650 fetch 2 ,mem_module_hci_notify_offset 
+0x5bcc 015651 iadd contru ,contru 
+0x5bcd 015652 iadd loopcnt ,pdata 
+0x5bce 015653 store 2 ,mem_module_hci_notify_offset 
+0x5bcf 015654 arg 0x02 ,type 
+0x5bd0 015655 fetch 2 ,mem_module_hci_notify_att 
+0x5bd1 015656 store 2 ,mem_le_l2cap + 1 
+0x5bd2 015657 branch module_le_send_att_notify_common 
+:      015660 module_hci_cmd_inquire_status:
+0x5bd3 015661 branch module_hci_event_status_res 
+:      015665 module_hci_cmd_set_pairing_mode:
+0x5bd4 015666 copy rega ,contru 
+0x5bd5 015667 ifetch 1 ,contru 
+0x5bd6 015668 beq pairing_pincode ,module_hci_pairing_pincode_mode 
+0x5bd7 015669 beq pairing_justwork ,module_hci_pairing_just_work_mode 
+0x5bd8 015670 beq pairing_passkey ,module_hci_pairing_passkey 
+0x5bd9 015671 beq pairing_confirm ,module_hci_pairing_numeric_comparison 
+0x5bda 015672 branch module_hci_event_receive_invalid_cmd 
+:      015673 module_hci_pairing_pincode_mode:
+0x5bdb 015674 call ssp_disable 
+0x5bdc 015675 jam 0 ,mem_ssp_enable 
+0x5bdd 015676 branch module_hci_event_receive_valid_cmd 
+:      015677 module_hci_pairing_just_work_mode:
+0x5bde 015678 setarg ssp_mode_just_work_io_cap_data 
+:      015679 module_hci_sspairing_mode:
+0x5bdf 015680 store 3 ,mem_sp_iocap_local 
+0x5be0 015681 store 1 ,mem_ssp_mode_flag 
+0x5be1 015682 call ssp_enable 
+0x5be2 015683 jam 1 ,mem_ssp_enable 
+0x5be3 015684 branch module_hci_event_receive_valid_cmd 
+:      015685 module_hci_pairing_passkey:
+0x5be4 015686 setarg ssp_mode_passkey_io_cap_data 
+0x5be5 015687 branch module_hci_sspairing_mode 
+:      015689 module_hci_pairing_numeric_comparison:
+0x5be6 015690 setarg ssp_mode_ssp_pin_io_cap_data 
+0x5be7 015691 branch module_hci_sspairing_mode 
+:      015694 module_hci_cmd_set_pincode:
+0x5be8 015695 fetch 1 ,mem_uart_len 
+0x5be9 015696 sub pdata ,16 ,null 
+0x5bea 015697 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5beb 015698 store 1 ,mem_pin_length 
+0x5bec 015699 copy pdata ,loopcnt 
+0x5bed 015700 arg mem_pin ,contw 
+0x5bee 015701 call uart_copy_rx_bytes 
+0x5bef 015702 branch module_hci_event_receive_valid_cmd 
+:      015706 module_hci_cmd_set_uart_control_mode:
+0x5bf0 015707 copy rega ,contru 
+0x5bf1 015708 ifetch 1 ,contru 
+0x5bf2 015709 hfetcht 1 ,core_uart_ctrl 
+0x5bf3 015710 nsetflag blank ,4 ,temp 
+0x5bf4 015711 hstoret 1 ,core_uart_ctrl 
+0x5bf5 015712 branch module_hci_event_receive_valid_cmd 
+:      015716 module_hci_cmd_set_uart_baud:
+0x5bf6 015717 fetch 1 ,mem_uart_len 
+0x5bf7 015718 copy pdata ,loopcnt 
+0x5bf8 015719 copy rega ,contru 
+0x5bf9 015720 call string2dec_from_uart 
+0x5bfa 015721 setarg uart_clk 
+0x5bfb 015722 idiv temp 
+0x5bfc 015723 call wait_div_end 
+0x5bfd 015724 quotient pdata 
+:      015725 module_hci_cmd_set_uart_baud_ok:
+0x5bfe 015726 store uart_baud_len ,mem_baud 
+0x5bff 015727 call module_hci_event_receive_valid_cmd 
+0x5c00 015728 call wait_uarttx 
+0x5c01 015729 branch uart_set_baud_by_mem 
+:      015733 module_hci_cmd_version_request:
+0x5c02 015734 arg 2 ,rega 
+0x5c03 015735 arg mem_soft_version_num ,regb 
+0x5c04 015736 arg 0 ,temp 
+0x5c05 015737 branch module_hci_event_set_cmd 
+:      015738 module_hci_event_set_cmd_send_response:
+0x5c06 015739 store 2 ,mem_event_cmd_response_content 
+0x5c07 015740 arg mem_event_cmd_response_content ,regb 
+0x5c08 015741 arg 0 ,temp 
+0x5c09 015742 branch module_hci_event_set_cmd 
+:      015746 module_hci_cmd_bt_disconnect:
+0x5c0a 015747 fetch 2 ,mem_ui_state_map 
+0x5c0b 015748 bbit0 ui_state_bt_connected ,module_hci_event_receive_invalid_cmd 
+:      015749 module_hci_cmd_bt_disconnect_doing:
+0x5c0c 015750 call module_hci_event_receive_valid_cmd 
+0x5c0d 015751 branch app_bt_disconnect 
+:      015755 module_hci_cmd_ble_disconnect:
+0x5c0e 015756 fetch 2 ,mem_ui_state_map 
+0x5c0f 015757 bbit0 ui_state_ble_connected ,module_hci_event_receive_invalid_cmd 
+:      015758 module_hci_cmd_ble_disconnect_doing:
+0x5c10 015759 call module_hci_event_receive_valid_cmd 
+0x5c11 015760 branch app_ble_disconnect 
+:      015766 module_hci_cmd_set_nvram:
+0x5c12 015767 fetch 1 ,mem_uart_len 
+0x5c13 015768 copy pdata ,loopcnt 
+0x5c14 015769 copy rega ,contru 
+0x5c15 015770 fetch 2 ,mem_nv_data_ptr 
+0x5c16 015771 icopy contw 
+0x5c17 015772 call uart_copy_rx_bytes_fast 
+0x5c18 015773 branch module_hci_event_receive_valid_cmd 
+:      015777 module_hci_cmd_confirm_gkey:
+0x5c19 015778 fetch 1 ,mem_ui_state_map 
+0x5c1a 015779 bbit0 ui_state_bt_connected ,module_hci_event_receive_invalid_cmd 
+0x5c1b 015780 ifetch 1 ,contru 
+0x5c1c 015781 fetcht 1 ,mem_flag_mode_ssp_pin 
+0x5c1d 015782 setflag blank ,flag_mode_ssp_pin_comparison_result_bit ,temp 
+0x5c1e 015783 set1 flag_mode_ssp_pin_reviceve_comparison_bit ,temp 
+0x5c1f 015784 storet 1 ,mem_flag_mode_ssp_pin 
+0x5c20 015786 call module_hci_event_receive_valid_cmd 
+0x5c21 015788 fetch 1 ,mem_flag_mode_ssp_pin 
+0x5c22 015789 bbit1 flag_mode_ssp_pin_recieve_dhkey_bit ,module_hci_cmd_spp_number_comparison_result_is1 
+0x5c23 015790 rtn 
+:      015792 dhkey_not_accept:
+0x5c24 015793 jam 0 ,mem_flag_mode_ssp_pin 
+0x5c25 015794 jam bt_cmd_dhkey_not_accept ,mem_fifo_temp 
+0x5c26 015795 branch ui_ipc_send_cmd 
+:      015798 module_hci_cmd_spp_number_comparison_result_is1:
+0x5c27 015799 bbit1 flag_mode_ssp_pin_comparison_result_bit ,number_comparison_successed 
+0x5c28 015800 branch dhkey_not_accept 
+:      015804 module_hci_cmd_set_credit_given:
+0x5c29 015805 fetch 1 ,mem_ui_state_map 
+0x5c2a 015806 rtnbit0 ui_state_bt_spp_conn 
+0x5c2b 015807 fetch 1 ,mem_credit_flag 
+0x5c2c 015808 rtneq credit_disable 
+0x5c2d 015809 ifetch 1 ,contru 
+0x5c2e 015810 fetcht 1 ,mem_credit_given 
+0x5c2f 015811 iadd temp ,temp 
+0x5c30 015812 storet 1 ,mem_credit_given 
+0x5c31 015813 rtn 
+:      015817 module_hci_cmd_auto_adv:
+0x5c32 015818 arg 0x40 ,loopcnt 
+0x5c33 015819 arg mem_le_adv_data_len ,contw 
+0x5c34 015820 call clear_mem 
+0x5c35 015821 setarg 0 
+0x5c36 015822 store 1 ,mem_regb 
+0x5c37 015823 copy rega ,contru 
+:      015824 module_hci_cmd_auto_adv_loop:
+0x5c38 015825 copy contru ,pdata 
+0x5c39 015826 store 2 ,mem_regc 
+0x5c3a 015827 call module_hci_cmd_auto_adv_adv_analys 
+0x5c3b 015829 fetch 1 ,mem_regb 
+0x5c3c 015830 fetcht 1 ,mem_temp 
+0x5c3d 015831 increase 1 ,temp 
+0x5c3e 015832 iadd temp ,pdata 
+0x5c3f 015833 store 1 ,mem_regb 
+0x5c40 015835 sub pdata ,32 ,null 
+0x5c41 015836 nbranch module_hci_cmd_auto_adv_store_scan ,positive 
+:      015837 module_hci_cmd_auto_adv_store_adv:
+0x5c42 015838 fetcht 1 ,mem_le_adv_data_len 
+0x5c43 015839 setarg mem_le_adv_data 
+0x5c44 015840 iadd temp ,pdata 
+0x5c45 015841 store 2 ,mem_contw 
+0x5c46 015842 fetcht 1 ,mem_temp 
+0x5c47 015843 increase 1 ,temp 
+0x5c48 015844 fetch 1 ,mem_le_adv_data_len 
+0x5c49 015845 iadd temp ,pdata 
+0x5c4a 015846 store 1 ,mem_le_adv_data_len 
+0x5c4b 015847 branch module_hci_cmd_auto_adv_store_common 
+:      015848 module_hci_cmd_auto_adv_store_scan:
+0x5c4c 015849 fetcht 1 ,mem_le_scan_data_len 
+0x5c4d 015850 setarg mem_le_scan_data 
+0x5c4e 015851 iadd temp ,pdata 
+0x5c4f 015852 store 2 ,mem_contw 
+0x5c50 015853 fetcht 1 ,mem_temp 
+0x5c51 015854 increase 1 ,temp 
+0x5c52 015855 fetch 1 ,mem_le_scan_data_len 
+0x5c53 015856 iadd temp ,pdata 
+0x5c54 015857 store 1 ,mem_le_scan_data_len 
+:      015858 module_hci_cmd_auto_adv_store_common:
+0x5c55 015859 fetch 2 ,mem_contw 
+0x5c56 015860 copy pdata ,contw 
+0x5c57 015861 fetch 2 ,mem_regc 
+0x5c58 015862 copy pdata ,contru 
+0x5c59 015864 copy temp ,loopcnt 
+0x5c5a 015865 call uart_copy_rx_bytes_fast 
+0x5c5b 015867 fetch 1 ,mem_uart_len 
+0x5c5c 015868 fetcht 1 ,mem_regb 
+0x5c5d 015869 isub temp ,null 
+0x5c5e 015870 nbranch module_hci_cmd_auto_adv_loop ,zero 
+0x5c5f 015871 jam 0x1f ,mem_le_adv_data_len 
+0x5c60 015872 jam 0x1f ,mem_le_scan_data_len 
+0x5c61 015873 branch module_hci_event_receive_valid_cmd 
+:      015876 module_hci_cmd_auto_adv_adv_analys:
+0x5c62 015877 ifetch 1 ,contru 
+0x5c63 015878 store 1 ,mem_temp 
+0x5c64 015879 ifetch 1 ,contru 
+0x5c65 015880 store 1 ,mem_rega 
+0x5c66 015881 rtn 
+:      015885 module_hci_cmd_power_request:
+0x5c67 015886 arg 0 ,temp 
+0x5c68 015887 arg 2 ,rega 
+0x5c69 015888 fetch 2 ,mem_module_vdd_quotient 
+0x5c6a 015889 store 2 ,mem_event_cmd_response_content 
+0x5c6b 015890 arg mem_event_cmd_response_content ,regb 
+0x5c6c 015891 branch module_hci_event_set_cmd 
+:      015895 module_hci_cmd_power_set:
+0x5c6d 015896 fetch 1 ,mem_uart_len 
+0x5c6e 015897 bne 1 ,module_hci_event_receive_invalid_cmd 
+0x5c6f 015898 ifetch 1 ,contru 
+0x5c70 015899 store 1 ,mem_module_read_vdd_flag 
+0x5c71 015900 setarg 0x00 
+0x5c72 015901 store 2 ,mem_module_vdd_quotient 
+0x5c73 015902 branch module_hci_event_receive_valid_cmd 
+:      015906 module_hci_cmd_passkey_entry:
+0x5c74 015907 ifetch 4 ,contru 
+0x5c75 015908 store 4 ,mem_pin 
+0x5c76 015909 jam 4 ,mem_pin_length 
+0x5c77 015910 jam 0 ,mem_authentication_passkey_times 
+0x5c78 015911 call module_hci_event_receive_valid_cmd 
+0x5c79 015912 branch authentication_passkey 
+:      015916 module_hci_cmd_set_gpio:
+0x5c7a 015917 fetch 1 ,mem_uart_len 
+0x5c7b 015918 bne 3 ,module_hci_event_receive_invalid_cmd 
+0x5c7c 015919 ifetch 1 ,contru 
+0x5c7d 015920 beq 0x00 ,module_set_gpio_input 
+0x5c7e 015921 beq 0x01 ,module_set_gpio_output 
+0x5c7f 015922 branch module_hci_event_receive_invalid_cmd 
+:      015923 module_set_gpio_input:
+0x5c80 015924 ifetcht 1 ,contru 
+0x5c81 015925 ifetch 1 ,contru 
+0x5c82 015926 nsetflag blank ,7 ,temp 
+0x5c83 015927 call gpio_config_input 
+0x5c84 015928 branch module_hci_event_receive_valid_cmd 
+:      015930 module_set_gpio_output:
+0x5c85 015931 ifetcht 1 ,contru 
+0x5c86 015932 call gpio_config_output0 
+0x5c87 015933 ifetch 1 ,contru 
+0x5c88 015934 isolate1 0 ,pdata 
+0x5c89 015935 call gpio_out_flag 
+0x5c8a 015936 branch module_hci_event_receive_valid_cmd 
+:      015940 module_hci_cmd_read_gpio:
+0x5c8b 015941 fetch 1 ,mem_uart_len 
+0x5c8c 015942 bne 1 ,module_hci_event_receive_invalid_cmd 
+0x5c8d 015943 ifetcht 1 ,contru 
+0x5c8e 015944 call gpio_get_bit 
+0x5c8f 015945 setarg 0x0 
+0x5c90 015946 nsetflag true ,0 ,pdata 
+0x5c91 015947 arg 1 ,rega 
+0x5c92 015948 branch module_hci_event_set_cmd_send_response 
+:      015952 module_hci_cmd_le_set_pairing_mode:
+0x5c93 015953 copy rega ,contru 
+0x5c94 015954 ifetch 1 ,contru 
+0x5c95 015955 store 1 ,mem_le_pairing_mode 
+0x5c96 015956 arg 0 ,temp 
+0x5c97 015957 isolate1 le_pairing_mode_secure_connect_bit ,pdata 
+0x5c98 015958 setflag true ,0 ,temp 
+0x5c99 015959 storet 1 ,mem_le_secure_connect_enable 
+0x5c9a 015960 beq le_pairing_mode_none ,module_le_set_no_pairing 
+0x5c9b 015961 beq le_pairing_mode_lagacy_justwork ,module_le_set_pairing_mode_lagacy_just_work 
+0x5c9c 015962 beq le_pairing_mode_lagacy_passkey ,module_le_set_pairing_mode_lagacy_passkey 
+0x5c9d 015963 beq le_pairing_mode_secure_connect_justwork ,module_le_set_pairing_mode_secure_justwork 
+0x5c9e 015964 beq le_pairing_mode_secure_connect_numeric ,module_le_set_pairing_mode_secure_numeric 
+0x5c9f 015965 beq le_pairing_mode_secure_connect_passkey ,module_le_set_pairing_mode_secure_passkey 
+0x5ca0 015966 jam 0 ,mem_le_secure_connect_enable 
+0x5ca1 015967 branch module_hci_event_receive_invalid_cmd 
+:      015969 module_le_set_pairing_mode_secure_justwork:
+0x5ca2 015970 jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+0x5ca3 015971 branch module_le_set_noinputnooutput 
+:      015972 module_le_set_pairing_mode_secure_numeric:
+0x5ca4 015973 jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+0x5ca5 015974 jam flag_iocap_displayyesno ,mem_le_pres_iocap 
+0x5ca6 015975 branch module_hci_event_receive_valid_cmd 
+:      015976 module_le_set_pairing_mode_secure_passkey:
+0x5ca7 015977 jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+0x5ca8 015978 branch module_le_set_displayonly 
+:      015979 module_le_set_no_pairing:
+0x5ca9 015980 jam flag_le_no_bonding_no_mitm ,mem_le_pres_auth 
+:      015981 module_le_set_noinputnooutput:
+0x5caa 015982 jam flag_iocap_noinputnooutput ,mem_le_pres_iocap 
+0x5cab 015983 branch module_hci_event_receive_valid_cmd 
+:      015984 module_le_set_pairing_mode_lagacy_just_work:
+0x5cac 015985 jam flag_le_bonding_mitm ,mem_le_pres_auth 
+0x5cad 015986 branch module_le_set_noinputnooutput 
+:      015987 module_le_set_pairing_mode_lagacy_passkey:
+0x5cae 015988 jam flag_le_bonding_mitm ,mem_le_pres_auth 
+:      015989 module_le_set_displayonly:
+0x5caf 015990 jam flag_iocap_displayonly ,mem_le_pres_iocap 
+0x5cb0 015991 branch module_hci_event_receive_valid_cmd 
+:      015995 module_hci_cmd_le_set_adv_data:
+0x5cb1 015996 fetch 1 ,mem_uart_len 
+0x5cb2 015997 sub pdata ,31 ,null 
+0x5cb3 015998 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5cb4 015999 copy pdata ,loopcnt 
+0x5cb5 016000 copy rega ,contru 
+0x5cb6 016001 arg mem_le_adv_data ,contw 
+0x5cb7 016002 call uart_copy_rx_bytes_fast 
+0x5cb8 016003 branch module_hci_event_receive_valid_cmd 
+:      016007 module_hci_cmd_le_set_scan_data:
+0x5cb9 016008 fetch 1 ,mem_uart_len 
+0x5cba 016009 sub pdata ,31 ,null 
+0x5cbb 016010 nbranch module_hci_event_receive_invalid_cmd ,positive 
+0x5cbc 016011 copy pdata ,loopcnt 
+0x5cbd 016012 copy rega ,contru 
+0x5cbe 016013 arg mem_le_scan_data ,contw 
+0x5cbf 016014 call uart_copy_rx_bytes_fast 
+0x5cc0 016015 branch module_hci_event_receive_valid_cmd 
+:      016019 module_hci_cmd_le_send_conn_update_req:
+0x5cc1 016020 fetch 2 ,mem_ui_state_map 
+0x5cc2 016021 bbit0 ui_state_ble_connected ,module_hci_event_receive_invalid_cmd 
+0x5cc3 016022 fetch 1 ,mem_uart_len 
+0x5cc4 016023 bne 0x08 ,module_hci_event_receive_invalid_cmd 
+0x5cc5 016024 copy rega ,contru 
+0x5cc6 016025 ifetch 8 ,contru 
+0x5cc7 016026 store 8 ,mem_le_interal_min 
+0x5cc8 016027 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+0x5cc9 016028 call ui_ipc_send_cmd 
+0x5cca 016029 branch module_hci_event_receive_valid_cmd 
+:      016033 module_hci_cmd_le_start_pairing:
+0x5ccb 016034 fetch 1 ,mem_le_pairing_mode 
+0x5ccc 016035 branch module_hci_event_receive_invalid_cmd ,blank 
+0x5ccd 016036 fetch 1 ,mem_le_pairing_state 
+0x5cce 016037 bne flag_le_pairing_null ,module_hci_event_receive_invalid_cmd 
+0x5ccf 016038 fetch 1 ,mem_le_enc_state 
+0x5cd0 016039 bne flag_le_enc_null ,module_hci_event_receive_invalid_cmd 
+0x5cd1 016040 call check_51cmd_le_smp_sec_req 
+0x5cd2 016041 branch module_hci_event_receive_valid_cmd 
+:      016045 module_hci_cmd_le_confirm_gkey:
+0x5cd3 016046 ifetch 1 ,contru 
+0x5cd4 016047 beq 0x01 ,module_hci_cmd_le_confirm_gkey_fail 
+0x5cd5 016048 fetch 1 ,mem_le_secure_connect_state 
+0x5cd6 016049 beq le_sc_stat_send_public_key ,module_hci_cmd_le_confirm_gkey_ok 
+0x5cd7 016050 beq le_sc_stat_receive_dhkey ,module_hci_cmd_le_confirm_gkey_ok 
+0x5cd8 016051 beq le_sc_stat_wait_confirm_gkey ,module_hci_cmd_le_confirm_gkey_ok 
+0x5cd9 016052 branch module_hci_event_receive_invalid_cmd 
+:      016053 module_hci_cmd_le_confirm_gkey_ok:
+0x5cda 016054 jam flag_le_sc_confrim_gkey_ok ,mem_le_sc_confirm_gkey_flag 
+0x5cdb 016055 branch module_hci_event_receive_valid_cmd 
+:      016057 module_hci_cmd_le_confirm_gkey_fail:
+0x5cdc 016058 call le_pairing_failed 
+0x5cdd 016059 branch module_hci_event_receive_valid_cmd 
+:      016062 module_hci_event_receive_invalid_cmd:
+0x5cde 016063 arg 1 ,temp 
+0x5cdf 016064 arg 0 ,rega 
+0x5ce0 016065 branch module_hci_event_set_cmd 
+:      016067 module_hci_event_receive_valid_cmd:
+0x5ce1 016068 arg 0 ,temp 
+0x5ce2 016069 arg 0 ,rega 
+0x5ce3 016070 branch module_hci_event_set_cmd 
+:      016074 module_hci_event_spp_connect:
+0x5ce4 016075 jam hci_event_spp_conn_rep ,mem_uart_opcode 
+0x5ce5 016076 branch module_hci_event_enter_standby_mode_len0 
+:      016079 module_hci_event_le_connect:
+0x5ce6 016080 jam hci_event_le_conn_rep ,mem_uart_opcode 
+0x5ce7 016081 branch module_hci_event_enter_standby_mode_len0 
+:      016084 module_hci_event_spp_disconnect:
+0x5ce8 016085 jam hci_event_spp_dis_rep ,mem_uart_opcode 
+0x5ce9 016086 branch module_hci_event_enter_standby_mode_len0 
+:      016088 module_hci_event_le_disconnect:
+0x5cea 016089 jam hci_event_le_dis_rep ,mem_uart_opcode 
+0x5ceb 016090 branch module_hci_event_enter_standby_mode_len0 
+:      016100 module_hci_event_set_cmd:
+0x5cec 016101 fetch 1 ,mem_uart_opcode 
+0x5ced 016102 copy pdata ,regc 
+0x5cee 016103 jam hci_event_cmd_res ,mem_uart_opcode 
+0x5cef 016104 setarg 2 
+0x5cf0 016105 iadd rega ,pdata 
+0x5cf1 016106 call module_hci_prepare_tx 
+0x5cf2 016107 copy regc ,pdata 
+0x5cf3 016108 istore 1 ,contwu 
+0x5cf4 016109 istoret 1 ,contwu 
+0x5cf5 016110 copy rega ,loopcnt 
+0x5cf6 016111 copy regb ,contr 
+0x5cf7 016112 call uart_copy_tx_bytes 
+0x5cf8 016113 branch uartd_send 
+:      016116 module_hci_event_receive_spp_data:
+0x5cf9 016118 jam hci_event_spp_data_rep ,mem_uart_opcode 
+0x5cfa 016119 fetch 1 ,mem_current_length 
+0x5cfb 016120 rtn blank 
+0x5cfc 016121 call module_hci_prepare_tx 
+0x5cfd 016122 fetch 1 ,mem_current_length 
+0x5cfe 016123 copy pdata ,loopcnt 
+0x5cff 016124 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x5d00 016125 copy pdata ,contr 
+0x5d01 016126 call uart_copy_tx_bytes_fast 
+0x5d02 016127 branch uartd_send 
+:      016131 module_hci_event_receive_le_data:
+0x5d03 016132 jam hci_event_le_data_rep ,mem_uart_opcode 
+0x5d04 016133 fetch 1 ,mem_module_le_rx_data_len 
+0x5d05 016134 icopy loopcnt 
+0x5d06 016135 increase 2 ,pdata 
+0x5d07 016136 call module_hci_prepare_tx 
+0x5d08 016137 fetch 2 ,mem_module_le_rx_data_handle 
+0x5d09 016138 istore 2 ,contwu 
+0x5d0a 016139 fetch 2 ,mem_module_le_rx_data_address 
+0x5d0b 016140 icopy contr 
+0x5d0c 016141 call uart_copy_tx_bytes_fast 
+0x5d0d 016142 branch uartd_send 
+:      016146 module_hci_event_enter_standby_mode:
+0x5d0e 016147 jam hci_event_standby_rep ,mem_uart_opcode 
+:      016148 module_hci_event_enter_standby_mode_len0:
+0x5d0f 016149 setarg 0 
+0x5d10 016150 call module_hci_prepare_tx 
+0x5d11 016151 branch uartd_send 
+:      016155 module_hci_event_status_res:
+0x5d12 016156 jam hci_event_status_res ,mem_uart_opcode 
+0x5d13 016157 setarg 1 
+0x5d14 016158 call module_hci_prepare_tx 
+0x5d15 016160 call module_hci_read_bt_status 
+0x5d16 016162 fetch 2 ,mem_ui_state_map 
+0x5d17 016163 arg ui_state_bt_hid_conn ,queue 
+0x5d18 016164 qisolate1 pdata 
+0x5d19 016165 setflag true ,3 ,temp 
+0x5d1a 016167 arg ui_state_ble_connected ,queue 
+0x5d1b 016168 qisolate1 pdata 
+0x5d1c 016169 setflag true ,5 ,temp 
+0x5d1d 016171 fetch 1 ,mem_ui_state_map 
+0x5d1e 016172 arg ui_state_bt_spp_conn ,queue 
+0x5d1f 016173 qisolate1 pdata 
+0x5d20 016174 setflag true ,4 ,temp 
+0x5d21 016176 istoret 1 ,contwu 
+0x5d22 016177 branch uartd_send 
+:      016181 module_hci_read_bt_status:
+0x5d23 016182 arg 0 ,temp 
+0x5d24 016183 fetch 1 ,mem_scan_mode 
+0x5d25 016184 arg inq_scan_mode ,queue 
+0x5d26 016185 qisolate1 pdata 
+0x5d27 016186 setflag true ,0 ,temp 
+0x5d28 016187 arg page_scan_mode ,queue 
+0x5d29 016188 qisolate1 pdata 
+0x5d2a 016189 setflag true ,1 ,temp 
+0x5d2b 016191 fetch 1 ,mem_le_adv_enable 
+0x5d2c 016192 arg 0 ,queue 
+0x5d2d 016193 qisolate1 pdata 
+0x5d2e 016194 setflag true ,2 ,temp 
+0x5d2f 016195 rtn 
+:      016200 module_hci_event_store_device:
+0x5d30 016201 jam hci_event_nvram_rep ,mem_uart_opcode 
+0x5d31 016202 fetch 1 ,mem_nv_data_number 
+0x5d32 016203 mul32 pdata ,34 ,pdata 
+0x5d33 016204 icopy loopcnt 
+0x5d34 016205 call module_hci_prepare_tx 
+0x5d35 016206 fetch 2 ,mem_nv_data_ptr 
+0x5d36 016207 icopy contr 
+0x5d37 016208 call uart_copy_tx_bytes_fast 
+0x5d38 016209 branch uartd_send 
+:      016214 module_hci_event_gkey_generate:
+0x5d39 016215 jam hci_event_gkey ,mem_uart_opcode 
+0x5d3a 016216 setarg 4 
+0x5d3b 016217 call module_hci_prepare_tx 
+0x5d3c 016218 fetch 4 ,mem_gkey 
+0x5d3d 016219 istore 4 ,contwu 
+0x5d3e 016220 branch uartd_send 
+:      016223 module_hci_event_invalid_packet:
+0x5d3f 016224 jam hci_event_invalid_packet ,mem_uart_opcode 
+0x5d40 016225 branch module_hci_event_enter_standby_mode_len0 
+:      016229 module_hci_event_passkey_entry_mode:
+0x5d41 016230 jam hci_event_get_passkey ,mem_uart_opcode 
+0x5d42 016231 branch module_hci_event_enter_standby_mode_len0 
+:      016234 module_hci_event_le_tk:
+0x5d43 016235 jam hci_event_le_tk ,mem_uart_opcode 
+0x5d44 016236 setarg 4 
+0x5d45 016237 call module_hci_prepare_tx 
+0x5d46 016238 fetch 4 ,mem_le_tk 
+0x5d47 016239 istore 4 ,contwu 
+0x5d48 016240 branch uartd_send 
+:      016243 module_hci_event_le_pairing_fail:
+0x5d49 016244 arg flag_ble_pairing_fail ,rega 
+0x5d4a 016245 branch module_hci_event_pairing_completed 
+:      016246 module_hci_event_le_pairing_success:
+0x5d4b 016247 arg flag_ble_pairing_success ,rega 
+0x5d4c 016248 branch module_hci_event_pairing_completed 
+:      016249 module_hci_event_bt_pairing_fail:
+0x5d4d 016250 arg flag_bt_pairing_fail ,rega 
+0x5d4e 016251 branch module_hci_event_pairing_completed 
+:      016252 module_hci_event_bt_pairing_success:
+0x5d4f 016253 arg flag_bt_pairing_success ,rega 
+:      016254 module_hci_event_pairing_completed:
+0x5d50 016255 jam 0 ,mem_flag_mode_ssp_pin 
+0x5d51 016256 jam hci_event_le_pairing_state ,mem_uart_opcode 
+0x5d52 016257 setarg 2 
+0x5d53 016258 call module_hci_prepare_tx 
+0x5d54 016259 copy rega ,pdata 
+0x5d55 016260 istore 2 ,contwu 
+0x5d56 016261 branch uartd_send 
+:      016264 module_hci_event_pause_enc:
+0x5d57 016265 arg flag_event_pause_enc ,regc 
+0x5d58 016266 branch module_hci_event_enc 
+:      016267 module_hci_event_start_enc:
+0x5d59 016268 arg flag_event_start_enc ,regc 
+:      016269 module_hci_event_enc:
+0x5d5a 016270 jam hci_event_le_encryption_state ,mem_uart_opcode 
+0x5d5b 016271 setarg 1 
+0x5d5c 016272 call module_hci_prepare_tx 
+0x5d5d 016273 copy regc ,pdata 
+0x5d5e 016274 istore 1 ,contwu 
+0x5d5f 016275 branch uartd_send 
+:      016278 module_hci_event_le_gkey:
+0x5d60 016279 jam hci_event_le_gkey ,mem_uart_opcode 
+0x5d61 016280 setarg 4 
+0x5d62 016281 call module_hci_prepare_tx 
+0x5d63 016282 fetch 4 ,mem_gkey 
+0x5d64 016283 istore 4 ,contwu 
+0x5d65 016284 branch uartd_send 
+:      016295 module_hci_prepare_tx:
+0x5d66 016296 jam 0x02 ,mem_uart_cmd 
+0x5d67 016297 store 1 ,mem_uart_len 
+0x5d68 016298 storet 8 ,mem_temp 
+0x5d69 016299 set1 mark_ext_patch ,mark 
+0x5d6a 016300 bpatch patch2c_7 ,mem_patch2c 
+0x5d6b 016301 call module_set_mcu_wake_pin_high_delay 
+0x5d6c 016302 fetcht 8 ,mem_temp 
+0x5d6d 016303 call uartd_prepare_tx 
+0x5d6e 016304 fetch 3 ,mem_uart_cmd 
+0x5d6f 016305 istore 3 ,contwu 
+0x5d70 016306 rtn 
+:      016310 module_set_mcu_wake_pin_high_delay:
+0x5d71 016311 call module_check_mcu_wake_pin_high 
+0x5d72 016312 rtn true 
+:      016313 module_set_mcu_wake_pin_h_delay:
+0x5d73 016314 call module_set_mcu_wake_pin_high 
+0x5d74 016315 fetch 4 ,mem_module_mcu_wake_delay_us 
+0x5d75 016316 rshift2 pdata ,pdata 
+0x5d76 016317 rtn blank 
+0x5d77 016318 branch delay 
+:      016319 module_set_mcu_wake_pin_high:
+0x5d78 016321 fetcht 1 ,mem_module_mcu_wake_pin 
+0x5d79 016322 branch gpio_out_active 
+:      016323 module_check_mcu_wake_pin_high:
+0x5d7a 016324 fetcht 1 ,mem_module_mcu_wake_pin 
+0x5d7b 016325 branch gpio_check_active 
+:      016326 module_set_mcu_wake_pin_low:
+0x5d7c 016327 fetcht 1 ,mem_module_mcu_wake_pin 
+0x5d7d 016328 branch gpio_out_inactive 
+:      016331 delay:
+0x5d7e 016332 increase -1 ,pdata 
+0x5d7f 016333 nbranch delay ,blank 
+0x5d80 016334 rtn 
+:      016344 module_le_receive_data:
+0x5d81 016345 copy rega ,pdata 
+0x5d82 016346 store 2 ,mem_module_le_rx_data_address 
+0x5d83 016347 copy regb ,pdata 
+0x5d84 016348 store 1 ,mem_module_le_rx_data_len 
+0x5d85 016349 fetch 2 ,mem_le_att_handle 
+0x5d86 016350 fetcht 2 ,mem_module_data_write_handle 
+0x5d87 016351 isub temp ,null 
+0x5d88 016352 branch module_le_receive_data_ok ,zero 
+0x5d89 016353 fetcht 2 ,mem_module_data_write_handle2 
+0x5d8a 016354 isub temp ,null 
+0x5d8b 016355 nrtn zero 
+:      016356 module_le_receive_data_ok:
+0x5d8c 016357 store 2 ,mem_module_le_rx_data_handle 
+0x5d8d 016358 branch module_set_le_rx_data_flag 
+:      016361 module_le_transmit:
+0x5d8e 016362 fetch 1 ,mem_module_flag 
+0x5d8f 016363 bbit1 module_flag_ble_send_data ,module_hci_event_send_le_data 
+:      016364 module_le_transmit1:
+0x5d90 016365 fetch 1 ,mem_module_flag 
+0x5d91 016366 rtnbit0 module_flag_ble_received_data 
+0x5d92 016367 call module_hci_event_receive_le_data 
+0x5d93 016368 branch module_clear_le_rx_data_flag 
+:      016370 module_hci_event_send_le_data:
+0x5d94 016371 jam hci_cmd_le_data_req ,mem_uart_opcode 
+0x5d95 016372 call module_hci_event_receive_valid_cmd 
+0x5d96 016373 call module_clear_le_tx_data_flag 
+0x5d97 016374 branch module_le_transmit1 
+:      016377 module_set_le_rx_data_flag:
+0x5d98 016378 fetch 1 ,mem_module_flag 
+0x5d99 016379 set1 module_flag_ble_received_data ,pdata 
+:      016380 module_store_moule_flag:
+0x5d9a 016381 store 1 ,mem_module_flag 
+0x5d9b 016382 rtn 
+:      016384 module_clear_le_rx_data_flag:
+0x5d9c 016385 fetch 1 ,mem_module_flag 
+0x5d9d 016386 set0 module_flag_ble_received_data ,pdata 
+0x5d9e 016387 branch module_store_moule_flag 
+:      016392 module_exit_sniff:
+0x5d9f 016393 fetch 1 ,mem_module_task 
+0x5da0 016394 rtnbit1 moudle_task_unsinff 
+0x5da1 016395 call module_set_unsniff_task_flag 
+0x5da2 016396 branch app_bt_sniff_exit 
+:      016401 module_bb_event_timer:
+0x5da3 016402 storet 1 ,mem_app_evt_timer_count 
+:      016403 module_bb_event_100ms_loop:
+0x5da4 016404 fetch 1 ,mem_app_evt_timer_count 
+0x5da5 016405 rtn blank 
+0x5da6 016406 increase -1 ,pdata 
+0x5da7 016407 store 1 ,mem_app_evt_timer_count 
+0x5da8 016408 set1 mark_ext_patch ,mark 
+0x5da9 016409 bpatch patch2d_0 ,mem_patch2d 
+0x5daa 016410 call module_read_vdd_timer 
+0x5dab 016411 branch module_bb_event_100ms_loop 
+:      016413 module_read_vdd_timer:
+0x5dac 016414 fetch 1 ,mem_module_read_vdd_flag 
+0x5dad 016415 rtn blank 
+0x5dae 016416 fetch 1 ,mem_module_read_vdd_count 
+0x5daf 016417 rtn blank 
+0x5db0 016418 increase -1 ,pdata 
+0x5db1 016419 store 1 ,mem_module_read_vdd_count 
+0x5db2 016420 nrtn blank 
+0x5db3 016421 jam flag_module_read_vdd_count ,mem_module_read_vdd_count 
+0x5db4 016422 call adc_set_mode 
+0x5db5 016423 call vdd_calculate_by_mode 
+0x5db6 016424 div pdata ,0x64 
+0x5db7 016425 call wait_div_end 
+0x5db8 016426 quotient pdata 
+0x5db9 016427 remainder temp 
+0x5dba 016428 store 1 ,mem_module_vdd_quotient 
+0x5dbb 016429 storet 1 ,mem_module_vdd_remainder 
+0x5dbc 016430 rtn 
+:      016434 module_set_unsniff_task_flag:
+0x5dbd 016435 fetch 1 ,mem_module_task 
+0x5dbe 016436 set1 moudle_task_unsinff ,pdata 
+0x5dbf 016437 store 1 ,mem_module_task 
+0x5dc0 016438 rtn 
+:      016440 module_clear_unsniff_task_flag:
+0x5dc1 016441 fetch 1 ,mem_module_task 
+0x5dc2 016442 set0 moudle_task_unsinff ,pdata 
+0x5dc3 016443 store 1 ,mem_module_task 
+0x5dc4 016444 rtn 
+:      016446 module_control_air_flow:
+0x5dc5 016447 set1 mark_ext_patch ,mark 
+0x5dc6 016448 bpatch patch2d_1 ,mem_patch2d 
+0x5dc7 016449 call check_uart_tx_buff 
+0x5dc8 016450 branch app_l2cap_flow_control_enable ,positive 
+0x5dc9 016451 branch app_l2cap_flow_control_disable 
+:      016458 mouse_init:
+0x5dca 016459 set1 mark_ext_patch ,mark 
+0x5dcb 016460 bpatch patch2d_2 ,mem_patch2d 
+0x5dcc 016461 setarg le_mouse 
+0x5dcd 016462 store 2 ,mem_cb_le_process 
+0x5dce 016463 setarg mouse_send_process 
+0x5dcf 016464 store 2 ,mem_cb_bt_process 
+0x5dd0 016465 setarg mouse_process_lpm_before 
+0x5dd1 016466 store 2 ,mem_cb_before_lpm 
+0x5dd2 016467 setarg mouse_priority_bb_event 
+0x5dd3 016468 store 2 ,mem_cb_bb_event_process 
+0x5dd4 016469 setarg mouse_idle 
+0x5dd5 016470 store 2 ,mem_cb_idle_process 
+0x5dd6 016471 setarg mouse_le_notify_update_data 
+0x5dd7 016472 store 2 ,mem_cb_update_notify_value 
+0x5dd8 016473 jam 0 ,mem_sp_flag 
+0x5dd9 016474 jam 0 ,mem_master_sp_flag 
+0x5dda 016475 set1 mark_ext_patch ,mark 
+0x5ddb 016476 bpatch patch2d_3 ,mem_patch2d 
+0x5ddc 016477 call mouse_init_common 
+0x5ddd 016478 rtn wake 
+0x5dde 016479 call mouse_init_environment 
+0x5ddf 016480 call mouse_dpi_init 
+0x5de0 016481 setarg mouse_before_hibernate 
+0x5de1 016482 store 2 ,mem_cb_before_hibernate 
+0x5de2 016483 fetch 2 ,mem_ui_state_map 
+0x5de3 016484 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x5de4 016485 branch mouse_check_reconn_target 
+:      016487 mouse_init_environment:
+0x5de5 016488 call app_initflag_check 
+0x5de6 016489 branch mouse_load_eeprom_param ,zero 
+0x5de7 016490 call eeprom_store_le_local_addr 
+0x5de8 016491 call eeprom_store_mouse_dpi 
+0x5de9 016492 branch app_initflag_store 
+:      016493 mouse_load_eeprom_param:
+0x5dea 016494 call eeprom_load_reconn_info 
+0x5deb 016495 call eeprom_load_le_loacal_addr 
+0x5dec 016496 branch eeprom_load_mouse_dpi 
+:      016498 mouse_dpi_init:
+0x5ded 016499 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+0x5dee 016500 branch mouse_modified_dpi 
+:      016502 mouse_idle:
+0x5def 016503 call ui_check_paring_button 
+0x5df0 016504 call mouse_check_dpi 
+0x5df1 016505 branch mouse_wheel_check 
+:      016507 mouse_check_dpi:
+0x5df2 016508 fetcht 1 ,mem_dpi_button_gpio 
+0x5df3 016509 call gpio_get_bit 
+0x5df4 016510 nbranch mouse_dpi_up ,true 
+:      016511 mouse_dpi_down:
+0x5df5 016512 fetch 1 ,mem_mouse_dpi_button_state 
+0x5df6 016513 rtneq dpi_button_state_down 
+0x5df7 016514 jam dpi_button_state_down ,mem_mouse_dpi_button_state 
+0x5df8 016515 rtn 
+:      016516 mouse_dpi_up:
+0x5df9 016517 fetch 1 ,mem_mouse_dpi_button_state 
+0x5dfa 016518 rtneq dpi_button_state_up 
+0x5dfb 016519 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+0x5dfc 016520 fetch 1 ,mem_mouse_dpi 
+0x5dfd 016521 increase 1 ,pdata 
+0x5dfe 016522 and pdata ,0x03 ,pdata 
+0x5dff 016523 store 1 ,mem_mouse_dpi 
+0x5e00 016524 branch mouse_modified_dpi 
+:      016525 mouse_modified_dpi:
+0x5e01 016526 setarg mouse_dpi_address 
+0x5e02 016527 call twspi_read 
+0x5e03 016528 and pdata ,0xfc ,temp 
+0x5e04 016529 fetch 1 ,mem_mouse_dpi 
+0x5e05 016530 iadd temp ,pdata 
+0x5e06 016531 lshift8 pdata ,pdata 
+0x5e07 016532 add pdata ,mouse_dpi_address ,pdata 
+0x5e08 016533 call twspi_write 
+0x5e09 016534 branch eeprom_store_mouse_dpi 
+:      016536 mouse_init_common:
+0x5e0a 016537 call mouse_init_sunt 
+0x5e0b 016538 call mouse_gpio_init 
+0x5e0c 016539 hfetch 2 ,core_clkoff 
+0x5e0d 016540 set0 clock_off_qdecoder ,pdata 
+0x5e0e 016541 hstore 2 ,core_clkoff 
+0x5e0f 016542 rtn 
+:      016544 mouse_gpio_init:
+0x5e10 016545 rtn wake 
+0x5e11 016546 call lpm_disable_exen_output 
+0x5e12 016547 fetcht 1 ,mem_mwhee_a_data_gpio 
+0x5e13 016548 call gpio_config_input 
+0x5e14 016549 fetcht 1 ,mem_mwhee_b_data_gpio 
+0x5e15 016550 call gpio_config_input 
+0x5e16 016551 fetcht 1 ,mem_lbutton_gpio 
+0x5e17 016552 call gpio_config_input 
+0x5e18 016553 fetcht 1 ,mem_rbutton_gpio 
+0x5e19 016554 call gpio_config_input 
+0x5e1a 016555 fetcht 1 ,mem_mbutton_gpio 
+0x5e1b 016556 call gpio_config_input 
+0x5e1c 016557 fetcht 1 ,mem_sbutton1_gpio 
+0x5e1d 016558 call gpio_config_input 
+0x5e1e 016559 fetcht 1 ,mem_sbutton2_gpio 
+0x5e1f 016560 call gpio_config_input 
+0x5e20 016561 fetcht 1 ,mem_sensor_data_gpio 
+0x5e21 016562 call gpio_config_input 
+0x5e22 016563 fetcht 1 ,mem_dpi_button_gpio 
+0x5e23 016564 branch gpio_config_input 
+:      016567 mouse_before_hibernate:
+0x5e24 016568 setarg 0xbc05 
+0x5e25 016569 call twspi_write 
+0x5e26 016570 jam 1 ,mem_lpm_current_mult 
+:      016572 mouse_process_lpm_before:
+0x5e27 016573 call mouse_wheel_check 
+0x5e28 016574 arg 25 ,temp 
+0x5e29 016575 call gpio_config_output 
+0x5e2a 016576 hjam 0 ,core_gpio_sel1 
+0x5e2b 016577 fetcht 1 ,mem_mwhee_a_data_gpio 
+0x5e2c 016578 call gpio_set_wake_by_current_state 
+0x5e2d 016579 fetcht 1 ,mem_mwhee_b_data_gpio 
+0x5e2e 016580 call gpio_set_wake_by_current_state 
+0x5e2f 016581 fetcht 1 ,mem_lbutton_gpio 
+0x5e30 016582 call gpio_set_wake_by_current_state 
+0x5e31 016583 fetcht 1 ,mem_rbutton_gpio 
+0x5e32 016584 call gpio_set_wake_by_current_state 
+0x5e33 016585 fetcht 1 ,mem_mbutton_gpio 
+0x5e34 016586 call gpio_set_wake_by_current_state 
+0x5e35 016587 fetcht 1 ,mem_sbutton1_gpio 
+0x5e36 016588 call gpio_set_wake_by_current_state 
+0x5e37 016589 fetcht 1 ,mem_sbutton2_gpio 
+0x5e38 016590 call gpio_set_wake_by_current_state 
+0x5e39 016591 fetcht 1 ,mem_sensor_data_gpio 
+0x5e3a 016592 call gpio_set_wake 
+0x5e3b 016593 fetch 1 ,mem_lpm_current_mult 
+0x5e3c 016594 nrtn blank 
+0x5e3d 016595 branch gpio_clr_wake 
+:      016597 mouse_wheel_check:
+0x5e3e 016598 set1 mark_ext_patch ,mark 
+0x5e3f 016599 bpatch patch2d_4 ,mem_patch2d 
+0x5e40 016600 call mouse_t_wheel_scan 
+0x5e41 016601 call mouse_wheel_scan 
+0x5e42 016602 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e43 016603 fetcht 1 ,mem_wheel_tb_old_pinlevel 
+0x5e44 016604 store 1 ,mem_wheel_tb_old_pinlevel 
+0x5e45 016605 isub temp ,null 
+0x5e46 016606 nbranch app_lpm_wake_auto_lock ,zero 
+0x5e47 016607 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5e48 016608 fetcht 1 ,mem_mwheel_b_old_pinlevel 
+0x5e49 016609 store 1 ,mem_mwheel_b_old_pinlevel 
+0x5e4a 016610 isub temp ,null 
+0x5e4b 016611 nbranch app_lpm_wake_auto_lock ,zero 
+0x5e4c 016612 rtn 
+:      016613 mouse_t_wheel_scan:
+0x5e4d 016614 arg 0 ,rega 
+0x5e4e 016615 fetcht 1 ,mem_whee_ta_data_gpio 
+0x5e4f 016616 call gpio_get_bit 
+0x5e50 016617 setflag true ,0 ,rega 
+0x5e51 016618 fetcht 1 ,mem_whee_tb_data_gpio 
+0x5e52 016619 call gpio_get_bit 
+0x5e53 016620 setflag true ,1 ,rega 
+0x5e54 016621 copy rega ,pdata 
+0x5e55 016622 store 1 ,mem_wheel_tb_new_pinlevel 
+0x5e56 016623 beq 0x01 ,p_mouse_t_wheel_scan_judge1 
+0x5e57 016624 beq 0x02 ,p_mouse_t_wheel_scan_judge2 
+0x5e58 016625 fetch 1 ,mem_wheel_tog 
+0x5e59 016626 bbit1 7 ,p_mouse_t_wheel_scan_judge3 
+0x5e5a 016627 rtn 
+:      016629 p_mouse_t_wheel_scan_judge1:
+0x5e5b 016630 fetch 1 ,mem_wheel_tb_old_pinlevel 
+0x5e5c 016631 beq 0 ,p_mouse_t_wheel_scan_judge11 
+0x5e5d 016632 beq 3 ,p_mouse_t_wheel_scan_judge12 
+0x5e5e 016633 rtn 
+:      016634 p_mouse_t_wheel_scan_judge2:
+0x5e5f 016635 fetch 1 ,mem_wheel_tb_old_pinlevel 
+0x5e60 016636 beq 0 ,p_mouse_t_wheel_scan_judge21 
+0x5e61 016637 beq 3 ,p_mouse_t_wheel_scan_judge22 
+0x5e62 016638 rtn 
+:      016639 p_mouse_t_wheel_scan_judge11:
+0x5e63 016640 jam 0x82 ,mem_wheel_tog 
+0x5e64 016641 rtn 
+:      016642 p_mouse_t_wheel_scan_judge12:
+0x5e65 016643 jam 0x81 ,mem_wheel_tog 
+0x5e66 016644 rtn 
+:      016645 p_mouse_t_wheel_scan_judge21:
+0x5e67 016646 jam 0x80 ,mem_wheel_tog 
+0x5e68 016647 rtn 
+:      016648 p_mouse_t_wheel_scan_judge22:
+0x5e69 016649 jam 0x83 ,mem_wheel_tog 
+0x5e6a 016650 rtn 
+:      016651 p_mouse_t_wheel_scan_judge3:
+0x5e6b 016652 fetch 1 ,mem_wheel_tog 
+0x5e6c 016653 set0 7 ,pdata 
+0x5e6d 016654 store 1 ,mem_wheel_tog 
+0x5e6e 016655 fetch 1 ,mem_wheel_tog 
+0x5e6f 016656 beq 0 ,p_mouse_t_wheel_scan_judge30 
+0x5e70 016657 beq 1 ,p_mouse_t_wheel_scan_judge31 
+0x5e71 016658 beq 2 ,p_mouse_t_wheel_scan_judge32 
+0x5e72 016659 beq 3 ,p_mouse_t_wheel_scan_judge33 
+0x5e73 016660 rtn 
+:      016661 p_mouse_t_wheel_scan_judge30:
+0x5e74 016662 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e75 016663 beq 3 ,p_mouse_wheel_t_forward 
+0x5e76 016664 rtn 
+:      016665 p_mouse_t_wheel_scan_judge31:
+0x5e77 016666 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e78 016667 beq 0 ,p_mouse_wheel_t_forward 
+0x5e79 016668 rtn 
+:      016669 p_mouse_t_wheel_scan_judge32:
+0x5e7a 016670 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e7b 016671 beq 3 ,p_mouse_wheel_t_back 
+0x5e7c 016672 rtn 
+:      016673 p_mouse_t_wheel_scan_judge33:
+0x5e7d 016674 fetch 1 ,mem_wheel_tb_new_pinlevel 
+0x5e7e 016675 beq 0 ,p_mouse_wheel_t_back 
+0x5e7f 016676 rtn 
+:      016677 p_mouse_wheel_t_forward:
+0x5e80 016678 fetch 1 ,mem_mouse_tz_data_count1 
+0x5e81 016679 increase 1 ,pdata 
+0x5e82 016680 store 1 ,mem_mouse_tz_data_count1 
+0x5e83 016681 sub pdata ,1 ,null 
+0x5e84 016682 rtn positive 
+0x5e85 016683 jam 0 ,mem_mouse_tz_data_count1 
+0x5e86 016684 fetch 1 ,mem_mouse_tz_data 
+0x5e87 016685 increase 1 ,pdata 
+0x5e88 016686 store 1 ,mem_mouse_tz_data 
+0x5e89 016687 rtn 
+:      016688 p_mouse_wheel_t_back:
+0x5e8a 016689 fetch 1 ,mem_mouse_tz_data_count 
+0x5e8b 016690 increase 1 ,pdata 
+0x5e8c 016691 store 1 ,mem_mouse_tz_data_count 
+0x5e8d 016692 sub pdata ,1 ,null 
+0x5e8e 016693 rtn positive 
+0x5e8f 016694 jam 0 ,mem_mouse_tz_data_count 
+0x5e90 016695 fetch 1 ,mem_mouse_tz_data 
+0x5e91 016696 increase -1 ,pdata 
+0x5e92 016697 store 1 ,mem_mouse_tz_data 
+0x5e93 016698 rtn 
+:      016701 mouse_wheel_scan:
+0x5e94 016702 arg 0 ,rega 
+0x5e95 016703 fetcht 1 ,mem_mwhee_a_data_gpio 
+0x5e96 016704 call gpio_get_bit 
+0x5e97 016705 setflag true ,0 ,rega 
+0x5e98 016706 fetcht 1 ,mem_mwhee_b_data_gpio 
+0x5e99 016707 call gpio_get_bit 
+0x5e9a 016708 setflag true ,1 ,rega 
+0x5e9b 016709 copy rega ,pdata 
+0x5e9c 016710 store 1 ,mem_mwheel_b_new_pinlevel 
+0x5e9d 016711 beq 0x01 ,mouse_wheel_scan_judge1 
+0x5e9e 016712 beq 0x02 ,mouse_wheel_scan_judge2 
+0x5e9f 016713 fetch 1 ,mem_mwheel_tog 
+0x5ea0 016714 bbit1 7 ,mouse_wheel_scan_judge3 
+0x5ea1 016715 rtn 
+:      016717 mouse_wheel_scan_judge1:
+0x5ea2 016718 fetch 1 ,mem_mwheel_b_old_pinlevel 
+0x5ea3 016719 beq 0 ,mouse_wheel_scan_judge11 
+0x5ea4 016720 beq 3 ,mouse_wheel_scan_judge12 
+0x5ea5 016721 rtn 
+:      016722 mouse_wheel_scan_judge2:
+0x5ea6 016723 fetch 1 ,mem_mwheel_b_old_pinlevel 
+0x5ea7 016724 beq 0 ,mouse_wheel_scan_judge21 
+0x5ea8 016725 beq 3 ,mouse_wheel_scan_judge22 
+0x5ea9 016726 rtn 
+:      016727 mouse_wheel_scan_judge11:
+0x5eaa 016728 jam 0x82 ,mem_mwheel_tog 
+0x5eab 016729 rtn 
+:      016730 mouse_wheel_scan_judge12:
+0x5eac 016731 jam 0x81 ,mem_mwheel_tog 
+0x5ead 016732 rtn 
+:      016733 mouse_wheel_scan_judge21:
+0x5eae 016734 jam 0x80 ,mem_mwheel_tog 
+0x5eaf 016735 rtn 
+:      016736 mouse_wheel_scan_judge22:
+0x5eb0 016737 jam 0x83 ,mem_mwheel_tog 
+0x5eb1 016738 rtn 
+:      016739 mouse_wheel_scan_judge3:
+0x5eb2 016740 fetch 1 ,mem_mwheel_tog 
+0x5eb3 016741 set0 7 ,pdata 
+0x5eb4 016742 store 1 ,mem_mwheel_tog 
+0x5eb5 016743 fetch 1 ,mem_mwheel_tog 
+0x5eb6 016744 beq 0 ,mouse_wheel_scan_judge30 
+0x5eb7 016745 beq 1 ,mouse_wheel_scan_judge31 
+0x5eb8 016746 beq 2 ,mouse_wheel_scan_judge32 
+0x5eb9 016747 beq 3 ,mouse_wheel_scan_judge33 
+0x5eba 016748 rtn 
+:      016749 mouse_wheel_scan_judge30:
+0x5ebb 016750 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ebc 016751 beq 3 ,mouse_wheel_forward 
+0x5ebd 016752 rtn 
+:      016753 mouse_wheel_scan_judge31:
+0x5ebe 016754 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ebf 016755 beq 0 ,mouse_wheel_forward 
+0x5ec0 016756 rtn 
+:      016757 mouse_wheel_scan_judge32:
+0x5ec1 016758 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ec2 016759 beq 3 ,mouse_wheel_back 
+0x5ec3 016760 rtn 
+:      016761 mouse_wheel_scan_judge33:
+0x5ec4 016762 fetch 1 ,mem_mwheel_b_new_pinlevel 
+0x5ec5 016763 beq 0 ,mouse_wheel_back 
+0x5ec6 016764 rtn 
+:      016765 mouse_wheel_forward:
+0x5ec7 016766 fetch 1 ,mem_mouse_z_data_count1 
+0x5ec8 016767 increase 1 ,pdata 
+0x5ec9 016768 store 1 ,mem_mouse_z_data_count1 
+0x5eca 016769 sub pdata ,1 ,null 
+0x5ecb 016770 rtn positive 
+0x5ecc 016771 jam 0 ,mem_mouse_z_data_count1 
+0x5ecd 016772 fetch 1 ,mem_mouse_z_data 
+0x5ece 016773 increase 1 ,pdata 
+0x5ecf 016774 store 1 ,mem_mouse_z_data 
+0x5ed0 016775 rtn 
+:      016776 mouse_wheel_back:
+0x5ed1 016777 fetch 1 ,mem_mouse_z_data_count 
+0x5ed2 016778 increase 1 ,pdata 
+0x5ed3 016779 store 1 ,mem_mouse_z_data_count 
+0x5ed4 016780 sub pdata ,1 ,null 
+0x5ed5 016781 rtn positive 
+0x5ed6 016782 jam 0 ,mem_mouse_z_data_count 
+0x5ed7 016783 fetch 1 ,mem_mouse_z_data 
+0x5ed8 016784 increase -1 ,pdata 
+0x5ed9 016785 store 1 ,mem_mouse_z_data 
+0x5eda 016786 rtn 
+:      016789 le_mouse_bb_event_write_request:
+0x5edb 016790 call app_ble_store_reconn_info 
+0x5edc 016791 jam mouse_mode_state_ble ,mem_mouse_mode_state 
+0x5edd 016792 call app_lpm_mult_enable 
+:      016793 le_mouse_bb_event_enc_info:
+0x5ede 016794 branch app_ble_start_write 
+:      016797 mouse_hid_connected:
+0x5edf 016798 setarg hid_handshake_timeout 
+0x5ee0 016799 store 1 ,mem_hid_handshake_timer_count 
+0x5ee1 016800 rtn 
+:      016802 mouse_send_process:
+0x5ee2 016803 fetch 1 ,mem_app_handshake_flag 
+0x5ee3 016804 rtn blank 
+0x5ee4 016805 call l2cap_malloc_is_fifo_nearly_full 
+0x5ee5 016806 nrtn blank 
+0x5ee6 016807 call mouse_motion 
+0x5ee7 016808 nrtn user 
+0x5ee8 016809 call mouse_no_data_timer_init 
+:      016810 mouse_send_data:
+0x5ee9 016811 arg 9 ,rega 
+0x5eea 016812 call hid_malloc_tx_buff 
+0x5eeb 016813 fetch 2 ,mem_hid_int_remote_cid 
+0x5eec 016814 istore 2 ,contw 
+0x5eed 016815 setarg 0x02a1 
+0x5eee 016816 istore 2 ,contw 
+0x5eef 016817 fetch 7 ,mem_mouse_key 
+0x5ef0 016818 istore 7 ,contw 
+0x5ef1 016819 rtn 
+:      016820 bt_send_empty_data:
+0x5ef2 016821 setarg 0 
+0x5ef3 016822 store 6 ,mem_mouse_x 
+0x5ef4 016823 store 1 ,mem_mouse_tz 
+0x5ef5 016824 branch mouse_send_data 
+:      016825 p_le_send_empty_data:
+0x5ef6 016826 setarg 0 
+0x5ef7 016827 store 6 ,mem_mouse_x 
+0x5ef8 016828 store 1 ,mem_mouse_tz 
+0x5ef9 016829 branch mouse_fill_data_le 
+:      016831 mouse_no_data_timer_init:
+0x5efa 016832 fetch 2 ,mem_mouse_no_data_timeout 
+0x5efb 016833 store 2 ,mem_mouse_no_data_timer 
+0x5efc 016834 rtn 
+:      016837 mouse_le_notify_update_data:
+0x5efd 016838 fetcht 2 ,mem_le_notify_handle 
+0x5efe 016839 call le_att_get_handle_ptr 
+0x5eff 016840 ifetch 1 ,contr 
+0x5f00 016841 store 1 ,mem_le_notify_len 
+0x5f01 016842 arg mem_le_l2cap ,contw 
+0x5f02 016843 increase 1 ,contw 
+0x5f03 016844 fetcht 2 ,mem_le_notify_handle 
+0x5f04 016845 istoret 2 ,contw 
+0x5f05 016846 call le_att_get_handle_ptr 
+0x5f06 016847 ifetch 1 ,contr 
+0x5f07 016848 icopy loopcnt 
+0x5f08 016849 call memcpy 
+0x5f09 016850 fetcht 1 ,mem_le_notify_len 
+0x5f0a 016851 increase 7 ,temp 
+0x5f0b 016852 branch le_send_packet 
+:      016855 mouse_fill_data_le:
+0x5f0c 016856 set1 mark_ext_patch ,mark 
+0x5f0d 016857 bpatch patch2d_5 ,mem_patch2d 
+0x5f0e 016858 fetcht 2 ,mem_le_notify_handle 
+0x5f0f 016859 call le_att_get_handle_ptr 
+0x5f10 016860 add contr ,1 ,contw 
+:      016861 mouse_fill_data:
+0x5f11 016862 fetch 7 ,mem_mouse_key 
+0x5f12 016863 istore 7 ,contw 
+0x5f13 016864 rtn 
+:      016866 mouse_motion:
+0x5f14 016867 set1 mark_ext_patch ,mark 
+0x5f15 016868 bpatch patch2d_6 ,mem_patch2d 
+0x5f16 016869 disable user 
+0x5f17 016870 setarg 0 
+0x5f18 016871 store 6 ,mem_mouse_x 
+0x5f19 016872 call sensor_motion 
+0x5f1a 016873 call mouse_sensor_sdio_low 
+0x5f1b 016874 call mouse_zwheel 
+0x5f1c 016875 call mouse_t_zwheel 
+0x5f1d 016876 branch mouse_key 
+:      016878 sensor_motion:
+0x5f1e 016879 fetch 1 ,mem_mouse_move_flag 
+0x5f1f 016880 call mouse_read_sensor_common ,blank 
+0x5f20 016881 jam 1 ,mem_mouse_move_flag 
+0x5f21 016882 disable user 
+0x5f22 016883 fetcht 1 ,mem_sensor_data_gpio 
+0x5f23 016884 call gpio_get_bit 
+0x5f24 016885 nrtn true 
+0x5f25 016886 setarg 0 
+0x5f26 016887 call twspi_read 
+0x5f27 016889 setarg 2 
+0x5f28 016890 call twspi_read 
+0x5f29 016891 rtnbit0 7 
+0x5f2a 016892 setarg 3 
+0x5f2b 016893 call twspi_read 
+0x5f2c 016894 call extsign 
+0x5f2d 016895 store 2 ,mem_mouse_x 
+0x5f2e 016896 setarg 4 
+0x5f2f 016897 call twspi_read 
+0x5f30 016898 call extsign 
+0x5f31 016899 sub pdata ,0 ,pdata 
+0x5f32 016900 store 2 ,mem_mouse_y 
+0x5f33 016901 fetch 4 ,mem_mouse_x 
+0x5f34 016902 enable user 
+0x5f35 016903 rtn 
+:      016905 mouse_read_sensor3610_data:
+0x5f36 016906 call spi_ncs_enable 
+0x5f37 016907 call mouse_read_sensor_common 
+0x5f38 016908 arg 5 ,pdata 
+0x5f39 016909 call twspi_read 
+0x5f3a 016910 store 1 ,mem_mouse_xy_h 
+0x5f3b 016911 arg 7 ,pdata 
+0x5f3c 016912 call twspi_read 
+0x5f3d 016913 store 1 ,mem_sensor_shutter_hi 
+0x5f3e 016914 arg 8 ,pdata 
+0x5f3f 016915 call twspi_read 
+0x5f40 016916 store 1 ,mem_sensor_shutter_lo 
+0x5f41 016917 branch spi_ncs_disable 
+:      016920 mouse_3610_smart_enable:
+0x5f42 016921 fetch 1 ,mem_sensor_shutter_hi 
+0x5f43 016922 rtnne 0 
+0x5f44 016923 fetch 1 ,mem_sensor_shutter_lo 
+0x5f45 016924 sub pdata ,45 ,null 
+0x5f46 016925 rtn positive 
+0x5f47 016926 jam 0 ,mem_sensor_smart_flag 
+0x5f48 016927 setarg 0xba41 
+0x5f49 016928 call sensor_write 
+0x5f4a 016929 setarg 0x0032 
+0x5f4b 016930 call sensor_write 
+0x5f4c 016931 setarg 0xb541 
+0x5f4d 016932 branch sensor_write 
+:      016933 mouse_3610_smart_disable:
+0x5f4e 016934 fetch 1 ,mem_sensor_shutter_hi 
+0x5f4f 016935 rtnne 0 
+0x5f50 016936 fetch 1 ,mem_sensor_shutter_lo 
+0x5f51 016937 sub pdata ,45 ,null 
+0x5f52 016938 nrtn positive 
+0x5f53 016939 jam 1 ,mem_sensor_smart_flag 
+0x5f54 016940 setarg 0xba41 
+0x5f55 016941 call sensor_write 
+0x5f56 016942 setarg 0x8032 
+0x5f57 016943 call sensor_write 
+0x5f58 016944 setarg 0xb541 
+0x5f59 016945 branch sensor_write 
+:      016949 mouse_read_sensor_common:
+0x5f5a 016950 arg 3 ,pdata 
+0x5f5b 016951 call twspi_read 
+0x5f5c 016952 store 2 ,mem_mouse_x 
+0x5f5d 016953 arg 4 ,pdata 
+0x5f5e 016954 call twspi_read 
+0x5f5f 016955 store 2 ,mem_mouse_y 
+0x5f60 016956 rtn 
+:      016958 mouse_zwheel:
+0x5f61 016959 fetch 1 ,mem_mouse_z_data 
+0x5f62 016960 rtn blank 
+0x5f63 016961 store 1 ,mem_mouse_z 
+0x5f64 016962 jam 0 ,mem_mouse_z_data 
+0x5f65 016963 enable user 
+0x5f66 016964 rtn 
+:      016965 mouse_t_zwheel:
+0x5f67 016966 fetch 1 ,mem_mouse_tz_data 
+0x5f68 016967 rtn blank 
+0x5f69 016968 store 1 ,mem_mouse_tz 
+0x5f6a 016969 jam 0 ,mem_mouse_tz_data 
+0x5f6b 016970 enable user 
+0x5f6c 016971 rtn 
+:      016972 mouse_check_key_gpio:
+0x5f6d 016973 arg 0 ,rega 
+0x5f6e 016974 fetcht 1 ,mem_lbutton_gpio 
+0x5f6f 016975 call gpio_get_bit 
+0x5f70 016976 setflag true ,0 ,rega 
+0x5f71 016977 fetcht 1 ,mem_rbutton_gpio 
+0x5f72 016978 call gpio_get_bit 
+0x5f73 016979 setflag true ,1 ,rega 
+0x5f74 016980 fetcht 1 ,mem_mbutton_gpio 
+0x5f75 016981 call gpio_get_bit 
+0x5f76 016982 setflag true ,2 ,rega 
+0x5f77 016983 fetcht 1 ,mem_sbutton1_gpio 
+0x5f78 016984 call gpio_get_bit 
+0x5f79 016985 setflag true ,3 ,rega 
+0x5f7a 016986 fetcht 1 ,mem_sbutton2_gpio 
+0x5f7b 016987 call gpio_get_bit 
+0x5f7c 016988 setflag true ,4 ,rega 
+0x5f7d 016989 copy rega ,pdata 
+0x5f7e 016990 rtn 
+:      016991 mouse_key:
+0x5f7f 016992 call mouse_check_key_gpio 
+0x5f80 016993 fetcht 1 ,mem_mouse_key 
+0x5f81 016994 store 1 ,mem_mouse_key 
+0x5f82 016995 ixor temp ,pdata 
+0x5f83 016996 sub pdata ,0 ,null 
+0x5f84 016997 rtn zero 
+0x5f85 016998 enable user 
+0x5f86 016999 rtn 
+:      017004 mouse_sensor_sdio_low:
+0x5f87 017005 arg 26 ,temp 
+0x5f88 017006 call gpio_get_bit 
+0x5f89 017007 rtn true 
+0x5f8a 017008 setarg 0x0a 
+0x5f8b 017009 call twspi_read 
+0x5f8c 017010 nop 1000 
+0x5f8d 017011 branch mouse_sensor_sdio_low 
+:      017013 mouse_init_sunt:
+0x5f8e 017014 call spid_init 
+0x5f8f 017015 rtn wake 
+:      017016 mouse_init_p3204:
+0x5f90 017017 setarg 0 
+0x5f91 017018 call twspi_read 
+0x5f92 017019 store 1 ,mem_sensor_id 
+0x5f93 017020 beq p3204_id ,mouse_init_p3204_cont 
+0x5f94 017022 beq p3065_id ,mouse_init_p3204_cont 
+0x5f95 017023 call twspi_reset 
+0x5f96 017024 nop 1000 
+0x5f97 017025 branch mouse_init_p3204 
+:      017026 mouse_init_p3204_cont:
+0x5f98 017027 setarg 0x8006 
+0x5f99 017028 call twspi_write 
+0x5f9a 017029 nop 1000 
+0x5f9b 017030 rtn 
+:      017032 mouse_init_sensor_reset:
+0x5f9c 017033 fetcht 1 ,mem_sensor_reset_gpio 
+0x5f9d 017034 call gpio_out_active 
+0x5f9e 017035 call delay_10ms 
+0x5f9f 017036 fetcht 1 ,mem_sensor_reset_gpio 
+0x5fa0 017037 call gpio_out_inactive 
+0x5fa1 017038 branch delay_10ms 
+:      017040 mouse_init_p3610:
+0x5fa2 017041 setarg 0xba41 
+0x5fa3 017042 call sensor_write 
+0x5fa4 017043 setarg 0x0d11 
+0x5fa5 017044 call sensor_write 
+0x5fa6 017045 setarg 0x041b 
+0x5fa7 017046 call sensor_write 
+0x5fa8 017047 setarg 0x041c 
+0x5fa9 017048 call sensor_write 
+0x5faa 017049 setarg 0x0f1d 
+0x5fab 017050 call sensor_write 
+0x5fac 017051 setarg 0x0032 
+0x5fad 017052 call sensor_write 
+0x5fae 017053 setarg 0xb541 
+0x5faf 017054 branch sensor_write 
+:      017058 set_sensor_reg:
+0x5fb0 017059 setarg 0xba41 
+0x5fb1 017060 call sensor_write 
+0x5fb2 017061 nop 4000 
+0x5fb3 017062 setarg 0xff7f 
+0x5fb4 017063 call sensor_write 
+0x5fb5 017064 copy rega ,pdata 
+0x5fb6 017065 call sensor_write 
+0x5fb7 017066 setarg 0x007f 
+0x5fb8 017067 call sensor_write 
+0x5fb9 017068 setarg 0xb541 
+0x5fba 017069 branch sensor_write 
+:      017071 extsign:
+0x5fbb 017072 rtnbit0 7 
+0x5fbc 017073 arg 0xff00 ,temp 
+0x5fbd 017074 ior temp ,pdata 
+0x5fbe 017075 rtn 
+:      017077 extsign_bit3:
+0x5fbf 017078 rtnbit0 3 
+0x5fc0 017079 arg 0xf0 ,temp 
+0x5fc1 017080 ior temp ,pdata 
+0x5fc2 017081 rtn 
+:      017083 le_mouse:
+0x5fc3 017084 call le_xtype_fifo_is_near_full 
+0x5fc4 017085 nrtn blank 
+0x5fc5 017086 fetch 1 ,mem_mouse_le_notify_handle 
+0x5fc6 017087 store 1 ,mem_le_notify_handle 
+0x5fc7 017088 fetcht 2 ,mem_le_notify_handle 
+0x5fc8 017089 call le_att_check_notification_enable 
+0x5fc9 017090 rtnbit0 0 
+0x5fca 017091 fetch 1 ,mem_le_switch_send_data 
+0x5fcb 017092 rtnbit0 0 
+0x5fcc 017093 call mouse_motion 
+0x5fcd 017094 nrtn user 
+0x5fce 017095 call mouse_no_data_timer_init 
+0x5fcf 017096 fetch 1 ,mem_mouse_le_notify_handle 
+0x5fd0 017097 store 1 ,mem_le_notify_handle 
+0x5fd1 017098 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5fd2 017099 call le_xtype_fifo_in 
+0x5fd3 017100 branch mouse_fill_data_le 
+:      017102 mouse_priority_bb_event:
+0x5fd4 017103 copy regc ,pdata 
+0x5fd5 017104 beq bt_evt_le_connected ,le_mouse_bb_event_connected 
+0x5fd6 017105 beq bt_evt_bb_connected ,mouse_stop_discovery 
+0x5fd7 017106 beq bt_evt_le_disconnected ,mouse_bb_disconnected 
+0x5fd8 017107 beq bt_evt_bb_disconnected ,mouse_bb_disconnected 
+0x5fd9 017108 beq bt_evt_setup_complete ,mouse_bt_event_setup_complete 
+0x5fda 017109 beq bt_evt_button_long_pressed ,mouse_bb_event_discovery_btn 
+0x5fdb 017110 beq bt_evt_hid_handshake ,mouse_bt_hid_handshake 
+0x5fdc 017111 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
+0x5fdd 017112 beq bt_evt_le_write_request ,le_mouse_bb_event_write_request 
+0x5fde 017113 beq bt_evt_le_enc_info ,le_mouse_bb_event_enc_info 
+0x5fdf 017114 beq bt_evt_reconn_failed ,mouse_bb_event_reconn_failed 
+0x5fe0 017115 beq bt_evt_reconn_page_timeout ,mouse_bb_event_reconn_failed 
+0x5fe1 017116 beq bt_evt_pincode_req ,mouse_bb_event_pincode 
+0x5fe2 017117 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x5fe3 017118 and pdata ,0x0f ,temp 
+0x5fe4 017119 and_into bt_evt_timer_mask ,pdata 
+0x5fe5 017120 beq bt_evt_timer_init ,mouse_bb_event_timer 
+0x5fe6 017121 rtn 
+:      017123 le_mouse_bb_event_connected:
+0x5fe7 017124 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x5fe8 017125 set0 app_disc_by_button ,pdata 
+0x5fe9 017126 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x5fea 017127 setarg 0 
+0x5feb 017128 store 2 ,mem_mouse_direct_timer 
+0x5fec 017129 call mouse_no_data_timer_init 
+0x5fed 017130 branch mouse_stop_discovery 
+:      017132 mouse_bb_event_pincode:
+0x5fee 017133 call pincode_reinit 
+0x5fef 017134 branch app_bt_set_pincode 
+:      017136 mouse_bb_event_reconn_failed:
+0x5ff0 017137 fetch 2 ,mem_ui_state_map 
+0x5ff1 017138 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x5ff2 017139 branch app_bb_hibernate 
+:      017142 mouse_bt_hid_connected:
+0x5ff3 017143 call mouse_hid_connected 
+0x5ff4 017144 rtn 
+:      017145 mouse_bt_event_setup_complete:
+0x5ff5 017146 rtn 
+:      017148 mouse_bb_disconnected:
+0x5ff6 017149 set1 mark_ext_patch ,mark 
+0x5ff7 017150 bpatch patch2d_7 ,mem_patch2d 
+0x5ff8 017151 call mouse_bb_discon_clear_stack 
+0x5ff9 017152 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x5ffa 017153 bbit1 app_disc_ble ,mouse4_0_event_bb_disconn 
+0x5ffb 017154 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x5ffc 017155 bbit1 app_disc_after_pairing ,mouse_event_light_state_pairing 
+0x5ffd 017156 bbit1 app_disc_after_reconn ,mouse_event_light_state_hibernate 
+0x5ffe 017157 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+0x5fff 017158 branch mouse_start_discovery 
+:      017159 mouse_bb_discon_clear_stack:
+0x6000 017160 setarg 0 
+0x6001 017161 store 8 ,mem_whee_ta_data_gpio 
+0x6002 017162 istore 8 ,contw 
+0x6003 017163 jam 0 ,mem_mouse_send_blank_timer 
+0x6004 017164 jam 0 ,mem_mouse_move_flag 
+0x6005 017165 jam app_handshake_null ,mem_app_handshake_flag 
+0x6006 017166 jam 0 ,mem_ltk_exists 
+0x6007 017167 jam 0 ,mem_mouse_mode_state 
+0x6008 017168 jam 0 ,mem_reconnect_timeout 
+0x6009 017169 rtn 
+:      017171 mouse_event_light_state_pairing:
+0x600a 017172 bbit1 app_disc_after_handshake ,mouse_event_light_state_hibernate 
+0x600b 017173 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+0x600c 017174 branch mouse_start_discovery 
+:      017175 mouse_event_light_state_hibernate:
+0x600d 017176 fetch 2 ,mem_ui_state_map 
+0x600e 017177 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x600f 017178 branch app_bb_hibernate 
+:      017180 mouse4_0_event_bb_disconn:
+0x6010 017181 call le_clean_att_list_handle_enable 
+0x6011 017182 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x6012 017183 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x6013 017184 branch app_bb_hibernate 
+:      017186 mouse_bb_event_timer:
+0x6014 017187 set1 mark_ext_patch ,mark 
+0x6015 017188 bpatch patch2e_0 ,mem_patch2e 
+0x6016 017189 storet 1 ,mem_app_evt_timer_count 
+:      017190 mouse_bb_event_100ms_loop:
+0x6017 017191 fetch 1 ,mem_app_evt_timer_count 
+0x6018 017192 rtn blank 
+0x6019 017193 increase -1 ,pdata 
+0x601a 017194 store 1 ,mem_app_evt_timer_count 
+0x601b 017195 call mouse_check_hid_handshake_timer 
+0x601c 017196 call mouse_check_discovery_timeout_timer 
+0x601d 017197 call mouse_check_direct_timeout_timer 
+0x601e 017198 call mouse_check_no_data_timeout_timer 
+0x601f 017199 call mouse_check_mouse_state_timer 
+0x6020 017200 branch mouse_bb_event_100ms_loop 
+:      017202 mouse_check_mouse_state_timer:
+0x6021 017203 fetch 1 ,mem_mouse_statue_led_timer 
+0x6022 017204 rtn blank 
+0x6023 017205 pincrease -1 
+0x6024 017206 store 1 ,mem_mouse_statue_led_timer 
+0x6025 017207 nrtn blank 
+0x6026 017208 branch mouse_devce_led_off 
+:      017211 mouse_check_hid_handshake_timer:
+0x6027 017212 fetch 1 ,mem_hid_handshake_timer_count 
+0x6028 017213 rtn blank 
+0x6029 017214 increase -1 ,pdata 
+0x602a 017215 store 1 ,mem_hid_handshake_timer_count 
+0x602b 017216 nrtn blank 
+0x602c 017217 branch mouse_bt_hid_handshake 
+:      017219 mouse_check_discovery_timeout_timer:
+0x602d 017220 fetch 2 ,mem_mouse_discovery_timer 
+0x602e 017221 rtn blank 
+0x602f 017222 increase -1 ,pdata 
+0x6030 017223 store 2 ,mem_mouse_discovery_timer 
+0x6031 017224 nrtn blank 
+0x6032 017225 call mouse_stop_discovery 
+0x6033 017226 branch app_enter_hibernate 
+:      017228 mouse_check_direct_timeout_timer:
+0x6034 017229 fetch 2 ,mem_mouse_direct_timer 
+0x6035 017230 rtn blank 
+0x6036 017231 increase -1 ,pdata 
+0x6037 017232 store 2 ,mem_mouse_direct_timer 
+0x6038 017233 nrtn blank 
+0x6039 017234 call app_ble_stop_direct_adv 
+0x603a 017235 branch app_enter_hibernate 
+:      017237 mouse_check_blank_data_timeout_timer:
+0x603b 017238 fetch 2 ,mem_mouse_blank_data_timer 
+0x603c 017239 rtn blank 
+0x603d 017240 increase -1 ,pdata 
+0x603e 017241 store 2 ,mem_mouse_blank_data_timer 
+0x603f 017242 nrtn blank 
+0x6040 017243 jam 0 ,mem_mouse_send_blank_timer 
+0x6041 017244 rtn 
+:      017246 mouse_check_no_data_timeout_timer:
+0x6042 017247 fetch 2 ,mem_mouse_no_data_timer 
+0x6043 017248 rtn blank 
+0x6044 017249 increase -1 ,pdata 
+0x6045 017250 store 2 ,mem_mouse_no_data_timer 
+0x6046 017251 nrtn blank 
+0x6047 017252 branch mouse_disconnect 
+:      017254 mouse_bb_event_discovery_btn:
+0x6048 017255 set1 mark_ext_patch ,mark 
+0x6049 017256 bpatch patch2e_1 ,mem_patch2e 
+0x604a 017257 jam 0 ,mem_mouse_send_blank_timer 
+0x604b 017258 jam 1 ,mem_reconnect_timeout 
+0x604c 017259 setarg 0 
+0x604d 017260 store 2 ,mem_mouse_direct_timer 
+0x604e 017261 call mouse_disconnect 
+0x604f 017262 fetch 1 ,mem_device_option 
+0x6050 017263 isolate1 mode_4_mouse ,pdata 
+0x6051 017264 call mouse4_0_bb_event_discovery_btn ,true 
+0x6052 017265 fetch 1 ,mem_device_option 
+0x6053 017266 isolate1 mode_3_mouse ,pdata 
+0x6054 017267 call mouse3_0_bb_event_discovery_btn ,true 
+0x6055 017268 call app_lpm_mult_disable 
+0x6056 017269 branch mouse_start_discovery 
+:      017273 mouse3_0_check_reconn_target:
+0x6057 017274 fetch 6 ,mem_hci_plap 
+0x6058 017275 branch app_bt_start_discovery_short ,blank 
+0x6059 017276 branch app_bt_start_reconnect 
+:      017278 mouse4_0_check_reconn_target:
+0x605a 017279 fetch 6 ,mem_hci_plap 
+0x605b 017280 branch mouse4_0_no_reconn_target ,blank 
+0x605c 017281 fetch 2 ,mem_mouse_direct_timeout 
+0x605d 017282 store 2 ,mem_mouse_direct_timer 
+0x605e 017283 call app_lpm_mult_enable 
+0x605f 017284 branch app_ble_start_direct_adv 
+:      017285 mouse4_0_no_reconn_target:
+0x6060 017286 call app_led_start_blink 
+0x6061 017287 branch app_ble_start_adv 
+:      017289 mouse3_0_bb_event_discovery_btn:
+0x6062 017290 fetch 2 ,mem_ui_state_map 
+0x6063 017291 isolate1 ui_state_bt_reconnect ,pdata 
+0x6064 017292 call app_bt_reconnect_cancel ,true 
+0x6065 017293 rtn 
+:      017294 mouse4_0_bb_event_discovery_btn:
+0x6066 017295 call le_clean_att_list_handle_enable 
+0x6067 017296 rtn 
+:      017298 mouse_bt_hid_handshake:
+0x6068 017299 jam app_handshake_done ,mem_app_handshake_flag 
+0x6069 017300 call app_lpm_mult_enable 
+0x606a 017301 call app_bt_store_reconn_info 
+0x606b 017302 jam mouse_mode_state_bt ,mem_mouse_mode_state 
+0x606c 017303 setarg 0 
+0x606d 017304 store 2 ,mem_discovery_timeout_timer_count 
+0x606e 017305 store 1 ,mem_hid_handshake_timer_count 
+0x606f 017306 branch app_bt_enter_sniff 
+:      017308 mouse_check_reconn_target:
+0x6070 017309 fetch 1 ,mem_xrecord_mode 
+0x6071 017310 beq rec_3_mode ,mouse3_0_check_reconn_target 
+0x6072 017311 beq rec_4_mode ,mouse4_0_check_reconn_target 
+0x6073 017312 branch mouse_start_discovery 
+:      017314 mouse_start_discovery:
+0x6074 017315 set1 mark_ext_patch ,mark 
+0x6075 017316 bpatch patch2e_2 ,mem_patch2e 
+0x6076 017317 fetch 2 ,mem_ui_state_map 
+0x6077 017318 bbit1 ui_state_ble_adv ,mouse_start_discovery_norandom 
+0x6078 017319 random pdata 
+0x6079 017320 store 1 ,mem_le_lap + 1 
+:      017321 mouse_start_discovery_norandom:
+0x607a 017322 call app_lpm_mult_disable 
+0x607b 017323 fetch 2 ,mem_discovery_timeout 
+0x607c 017324 store 2 ,mem_mouse_discovery_timer 
+0x607d 017325 fetch 1 ,mem_device_option 
+0x607e 017326 isolate1 mode_4_mouse ,pdata 
+0x607f 017327 call app_ble_start_adv ,true 
+0x6080 017328 fetch 1 ,mem_device_option 
+0x6081 017329 isolate1 mode_3_mouse ,pdata 
+0x6082 017330 call app_bt_start_discovery ,true 
+0x6083 017331 branch app_led_start_blink 
+:      017333 mouse_stop_discovery:
+0x6084 017334 set1 mark_ext_patch ,mark 
+0x6085 017335 bpatch patch2e_3 ,mem_patch2e 
+0x6086 017336 setarg 0 
+0x6087 017337 store 2 ,mem_mouse_discovery_timer 
+0x6088 017338 fetch 1 ,mem_device_option 
+0x6089 017339 isolate1 mode_4_mouse ,pdata 
+0x608a 017340 call app_ble_stop_adv ,true 
+0x608b 017341 fetch 1 ,mem_device_option 
+0x608c 017342 isolate1 mode_3_mouse ,pdata 
+0x608d 017343 call app_bt_stop_discovery ,true 
+0x608e 017344 branch app_led_stop_blink 
+:      017346 mouse_disconnect:
+0x608f 017347 set1 mark_ext_patch ,mark 
+0x6090 017348 bpatch patch2e_4 ,mem_patch2e 
+0x6091 017349 setarg 0 
+0x6092 017350 store 2 ,mem_mouse_no_data_timer 
+0x6093 017351 fetch 2 ,mem_ui_state_map 
+0x6094 017352 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+0x6095 017353 fetch 2 ,mem_ui_state_map 
+0x6096 017354 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x6097 017355 rtn 
+:      017357 eeprom_store_mouse_dpi:
+0x6098 017358 set1 mark_ext_patch ,mark 
+0x6099 017359 bpatch patch2e_5 ,mem_patch2e 
+0x609a 017360 arg 1 ,temp 
+0x609b 017361 arg mem_mouse_dpi ,rega 
+0x609c 017362 arg mouse_dpi_eeprom_addr ,regb 
+0x609d 017363 branch iicd_write_eep_data 
+:      017365 eeprom_load_mouse_dpi:
+0x609e 017366 set1 mark_ext_patch ,mark 
+0x609f 017367 bpatch patch2e_6 ,mem_patch2e 
+0x60a0 017368 arg 1 ,temp 
+0x60a1 017369 arg mem_mouse_dpi ,rega 
+0x60a2 017370 arg mouse_dpi_eeprom_addr ,regb 
+0x60a3 017371 branch iicd_read_eep_data 
+:      017375 mouse_check_mouse_statue:
+0x60a4 017376 set1 mark_ext_patch ,mark 
+0x60a5 017377 bpatch patch2e_7 ,mem_patch2e 
+0x60a6 017378 fetch 1 ,mem_sensor_squal_reg 
+0x60a7 017379 call sensor_read 
+0x60a8 017380 beq 0x0 ,mouse_statue_up 
+0x60a9 017381 rtn 
+:      017383 mouse_devce_led_off:
+0x60aa 017384 fetcht 1 ,mem_device1_led_gpio 
+0x60ab 017385 call gpio_out_inactive 
+0x60ac 017386 fetcht 1 ,mem_device2_led_gpio 
+0x60ad 017387 call gpio_out_inactive 
+0x60ae 017388 fetcht 1 ,mem_device3_led_gpio 
+0x60af 017389 branch gpio_out_inactive 
+:      017390 mouse_statue_up:
+0x60b0 017391 fetch 1 ,mem_reconn_mode 
+0x60b1 017392 rtn blank 
+0x60b2 017393 jam 0 ,mem_reconn_mode 
+0x60b3 017394 jam 60 ,mem_mouse_statue_led_timer 
+0x60b4 017395 call mouse_devce_led_off 
+0x60b5 017396 fetch 1 ,mem_device_flag 
+0x60b6 017397 beq 0x01 ,mouse_device1_led_on 
+0x60b7 017398 beq 0x02 ,mouse_device2_led_on 
+0x60b8 017399 beq 0x03 ,mouse_device3_led_on 
+0x60b9 017400 rtn 
+:      017401 mouse_device1_led_on:
+0x60ba 017402 fetcht 1 ,mem_device1_led_gpio 
+0x60bb 017403 branch gpio_out_active 
+:      017404 mouse_device2_led_on:
+0x60bc 017405 fetcht 1 ,mem_device2_led_gpio 
+0x60bd 017406 branch gpio_out_active 
+:      017407 mouse_device3_led_on:
+0x60be 017408 fetcht 1 ,mem_device3_led_gpio 
+0x60bf 017409 branch gpio_out_active 
+:      017419 twspi_reset:
+0x60c0 017420 set1 mark_ext_patch ,mark 
+0x60c1 017421 bpatch patch2f_0 ,mem_patch2f 
+0x60c2 017422 hfetch 1 ,core_gpio_oe3 
+0x60c3 017423 arg 0x06 ,temp 
+0x60c4 017424 ior temp ,pdata 
+0x60c5 017425 hstore 1 ,core_gpio_oe3 
+0x60c6 017426 hfetch 1 ,core_gpio_out3 
+0x60c7 017427 ior temp ,pdata 
+0x60c8 017428 hstore 1 ,core_gpio_out3 
+0x60c9 017429 hjam 0 ,core_gpio_sel1 
+0x60ca 017430 hfetch 1 ,core_gpio_out3 
+0x60cb 017431 set0 1 ,pdata 
+0x60cc 017432 set0 2 ,pdata 
+0x60cd 017433 hstore 1 ,core_gpio_out3 
+0x60ce 017434 nop 30 
+0x60cf 017435 hjam 1 ,core_gpio_sel1 
+0x60d0 017436 rtn 
+:      017440 sensor_read:
+0x60d1 017441 copy pdata ,regb 
+0x60d2 017442 call spi_ncs_enable 
+0x60d3 017443 nop 100 
+0x60d4 017444 copy regb ,pdata 
+0x60d5 017445 call twspi_read 
+0x60d6 017446 copy pdata ,regb 
+0x60d7 017447 call spi_ncs_disable 
+0x60d8 017448 nop 100 
+0x60d9 017449 copy regb ,pdata 
+0x60da 017450 rtn 
+:      017452 sensor_write:
+0x60db 017453 copy pdata ,regb 
+0x60dc 017454 call spi_ncs_enable 
+0x60dd 017455 nop 100 
+0x60de 017456 copy regb ,pdata 
+0x60df 017457 call twspi_write 
+0x60e0 017458 call spi_ncs_disable 
+0x60e1 017459 nop 100 
+0x60e2 017460 rtn 
+:      017463 spi_ncs_gpio_init:
+0x60e3 017464 fetch 1 ,mem_spi_ncs_gpio 
+0x60e4 017465 rtneq 0xff 
+0x60e5 017466 fetcht 1 ,mem_spi_ncs_gpio 
+0x60e6 017467 branch gpio_config_output 
+:      017470 spi_ncs_enable:
+0x60e7 017471 fetcht 1 ,mem_spi_ncs_gpio 
+0x60e8 017472 branch gpio_out_active 
+:      017475 spi_ncs_disable:
+0x60e9 017476 fetcht 1 ,mem_spi_ncs_gpio 
+0x60ea 017477 branch gpio_out_inactive 
+:      017480 twspi_write:
+0x60eb 017481 branch spid_write_reg 
+:      017485 twspi_read:
+0x60ec 017486 branch spid_read_reg 
+:      017493 read_function_aes:
+0x60ed 017494 nbranch read_function ,user 
+0x60ee 017495 hfetch 1 ,core_gpio_key2 
+0x60ef 017496 or_into 0x20 ,pdata 
+0x60f0 017497 hstore 1 ,core_gpio_key2 
+:      017498 read_function:
+0x60f1 017499 copy temp ,null 
+0x60f2 017500 branch read_fuction_zero ,zero 
+0x60f3 017501 copy regc ,pc 
+:      017502 read_fuction_zero:
+0x60f4 017503 isolate0 0 ,null 
+0x60f5 017504 branch set_ucode_status 
+:      017507 get_block_header:
+0x60f6 017508 force 4 ,temp 
+:      017509 get_block_header0:
+0x60f7 017510 arg mem_ucode_buf ,rega 
+0x60f8 017511 hfetch 1 ,core_gpio_key2 
+0x60f9 017512 and_into 0xdf ,pdata 
+0x60fa 017513 hstore 1 ,core_gpio_key2 
+0x60fb 017514 call read_function 
+0x60fc 017515 arg 0x55aa ,rega 
+0x60fd 017516 fetch 2 ,mem_ucode_buf 
+0x60fe 017517 ifetcht 2 ,contr 
+0x60ff 017518 isub rega ,null 
+0x6100 017519 rtn 
+:      017521 read_first_block:
+0x6101 017522 arg 2 ,temp 
+0x6102 017523 arg mem_ucode_ptr ,rega 
+0x6103 017524 call read_function 
+0x6104 017525 fetch 2 ,mem_ucode_ptr 
+0x6105 017526 store 2 ,mem_addr_mi 
+0x6106 017527 call get_iv ,user 
+0x6107 017528 rtn 
+:      017530 get_iv:
+0x6108 017531 arg 16 ,temp 
+0x6109 017532 arg mem_ucode_keybuf ,rega 
+0x610a 017533 hfetch 1 ,core_gpio_key2 
+0x610b 017534 and_into 0xdf ,pdata 
+0x610c 017535 hstore 1 ,core_gpio_key2 
+0x610d 017536 call read_function 
+0x610e 017537 arg mem_ucode_keybuf ,contr 
+0x610f 017538 arg 16 ,loopcnt 
+0x6110 017539 call aes_load_data 
+0x6111 017540 call aes_init 
+0x6112 017541 call aes_clear_data 
+0x6113 017542 branch do_aes_cbc 
+:      017544 load_storage:
+0x6114 017545 disable match 
+0x6115 017546 call get_block_header 
+0x6116 017547 nrtn zero 
+0x6117 017548 enable match 
+0x6118 017549 hjam 0x80 ,core_ucode_ctrl 
+0x6119 017550 hjam 0 ,core_ucode_hi 
+0x611a 017551 hjam 0 ,core_ucode_low 
+0x611b 017552 arg core_ucode_data ,rega 
+0x611c 017553 call read_function_aes 
+0x611d 017554 hjam 0x0 ,core_ucode_ctrl 
+0x611e 017555 call get_block_header 
+0x611f 017556 nrtn zero 
+0x6120 017557 force 0 ,pdata 
+0x6121 017558 hstore 2 ,core_docd_paddr 
+0x6122 017559 arg core_docd_pdata ,rega 
+0x6123 017560 call read_function_aes 
+:      017561 load_storage_loop:
+0x6124 017562 arg 6 ,temp 
+0x6125 017563 call get_block_header0 
+0x6126 017564 nrtn zero 
+0x6127 017565 ifetch 2 ,contr 
+0x6128 017566 iforce rega 
+0x6129 017567 call read_function 
+0x612a 017568 branch load_storage_loop 
+:      017574 reload_eeprom:
+0x612b 017575 set1 mark_ext_patch ,mark 
+0x612c 017576 bpatch patch2f_1 ,mem_patch2f 
+0x612d 017577 call clean_mem 
+0x612e 017578 setarg 0x1000 
+0x612f 017579 store 2 ,mem_addr_mi 
+0x6130 017580 arg iicd_read_eep ,regc 
+0x6131 017581 arg 2 ,loopcnt 
+:      017582 reload_eeprom_loop:
+0x6132 017583 call get_block_header 
+0x6133 017584 nrtn zero 
+0x6134 017585 fetch 2 ,mem_addr_mi 
+0x6135 017586 byteswap pdata ,pdata 
+0x6136 017587 iadd temp ,pdata 
+0x6137 017588 byteswap pdata ,pdata 
+0x6138 017589 store 2 ,mem_addr_mi 
+0x6139 017590 loop reload_eeprom_loop 
+0x613a 017591 branch load_storage_loop 
+:      017593 loadcode:
+0x613b 017594 hjam 0x25 ,core_clkoff 
+0x613c 017595 hjam 5 ,core_docd_ctrl 
+0x613d 017596 call clean_mem 
+0x613e 017597 set1 mark_ext_patch ,mark 
+0x613f 017598 bpatch patch2f_2 ,mem_patch2f 
+:      017599 loadcode_lpm:
+0x6140 017600 disable user 
+0x6141 017601 call otp_enable_chgpump 
+0x6142 017602 setarg otp_ucode_flag 
+0x6143 017603 arg mem_otp_ucode_flag ,rega 
+0x6144 017604 arg 2 ,temp 
+0x6145 017605 call otpd_read_data 
+0x6146 017606 fetch 2 ,mem_otp_ucode_flag 
+0x6147 017607 bbit0 otp_uflag_aes ,loadcode_otp 
+0x6148 017608 setarg otp_ucode_aeskey 
+0x6149 017609 arg mem_ucode_keybuf ,rega 
+0x614a 017610 arg 16 ,temp 
+0x614b 017611 call otpd_read_data 
+0x614c 017612 hjam lock_otp ,core_misc_ctrl 
+0x614d 017613 arg mem_ucode_keybuf ,contr 
+0x614e 017614 call load_key 
+0x614f 017615 enable user 
+:      017616 loadcode_otp:
+0x6150 017617 set1 mark_ext_patch ,mark 
+0x6151 017618 bpatch patch2f_3 ,mem_patch2f 
+0x6152 017619 fetch 2 ,mem_otp_ucode_flag 
+0x6153 017620 byteswap pdata ,pdata 
+0x6154 017621 arg 0x7ff ,temp 
+0x6155 017622 iand temp ,pdata 
+0x6156 017623 branch loadcode_spi ,zero 
+0x6157 017624 call otp_set_addr 
+0x6158 017625 arg otpd_read_code ,regc 
+0x6159 017626 call get_iv ,user 
+0x615a 017627 call load_storage 
+0x615b 017628 fetch 1 ,mem_ucode_status 
+0x615c 017629 compare 3 ,pdata ,3 
+0x615d 017630 nbranch loadcode_otp ,true 
+:      017631 loadcode_spi:
+0x615e 017632 set1 mark_ext_patch ,mark 
+0x615f 017633 bpatch patch2f_4 ,mem_patch2f 
+0x6160 017634 call otp_disable_chgpump 
+0x6161 017635 fetch 1 ,mem_otp_ucode_flag 
+0x6162 017636 bbit1 otp_uflag_skip_flash ,loadcode_iic 
+0x6163 017637 setarg 0x0 
+0x6164 017638 store 3 ,mem_addr_hi 
+0x6165 017639 call spid_init_flash 
+0x6166 017640 arg spid_read_flash ,regc 
+0x6167 017641 call read_first_block 
+0x6168 017642 call load_storage 
+0x6169 017643 nbranch loadcode_iic ,match 
+0x616a 017644 fetch 1 ,mem_ucode_status 
+0x616b 017645 compare 3 ,pdata ,3 
+0x616c 017646 nbranch loadcode_spi ,true 
+:      017647 loadcode_iic:
+0x616d 017648 set1 mark_ext_patch ,mark 
+0x616e 017649 bpatch patch2f_5 ,mem_patch2f 
+0x616f 017650 call clear_eeprom_size_2k 
+0x6170 017651 fetch 1 ,mem_otp_ucode_flag 
+0x6171 017652 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+0x6172 017653 call loadcode_iic_by_eeprom 
+0x6173 017654 nbranch loadcode_iic_eeprom_2k ,match 
+0x6174 017655 fetch 1 ,mem_ucode_status 
+0x6175 017656 compare 3 ,pdata ,3 
+0x6176 017657 nbranch loadcode_iic ,true 
+0x6177 017658 branch loadcode_hci 
+:      017659 loadcode_iic_eeprom_2k:
+0x6178 017660 call set_eeprom_size_2k 
+0x6179 017661 fetch 1 ,mem_otp_ucode_flag 
+0x617a 017662 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+0x617b 017663 call loadcode_iic_by_eeprom 
+0x617c 017664 nbranch loadcode_hci ,match 
+0x617d 017665 fetch 1 ,mem_ucode_status 
+0x617e 017666 compare 3 ,pdata ,3 
+0x617f 017667 nbranch loadcode_iic_eeprom_2k ,true 
+:      017668 loadcode_hci:
+0x6180 017669 force regidx_key ,regext_index 
+0x6181 017670 call aes_clear 
+0x6182 017671 hjam 0x21 ,core_clkoff 
+0x6183 017672 fetch 1 ,mem_otp_ucode_flag 
+0x6184 017673 rtnbit0 otp_uflag_hci 
+0x6185 017674 call hci_init 
+:      017675 loadcode_hci_loop:
+0x6186 017676 call hci_rx_packet 
+0x6187 017677 branch loadcode_hci_loop 
+:      017680 loadcode_iic_by_eeprom:
+0x6188 017681 setarg 0x0 
+0x6189 017682 store 2 ,mem_addr_mi 
+0x618a 017683 arg iicd_read_eep ,regc 
+0x618b 017684 call iicd_init_12m 
+0x618c 017685 call read_first_block 
+0x618d 017686 branch load_storage 
+:      017691 set_ucode_status:
+0x618e 017692 fetch 1 ,mem_ucode_status 
+0x618f 017693 lshift pdata ,pdata 
+0x6190 017694 setflag true ,0 ,pdata 
+0x6191 017695 isolate0 15 ,rega 
+0x6192 017696 rtn true 
+0x6193 017697 store 1 ,mem_ucode_status 
+0x6194 017698 rtn 
+:      017701 decrypt_code:
+0x6195 017702 hfetch 1 ,core_gpio_key2 
+0x6196 017703 rtnbit0 5 
+0x6197 017704 branch decrypt_code_skip 
+:      017705 decrypt_code_loop:
+0x6198 017706 hfetch 1 ,core_dma_status 
+0x6199 017707 qisolate1 pdata 
+0x619a 017708 rtn true 
+:      017709 decrypt_code_skip:
+0x619b 017710 hfetch 1 ,core_misc_status 
+0x619c 017711 bbit0 1 ,decrypt_code_loop 
+0x619d 017712 call do_aes_cbc 
+0x619e 017713 branch decrypt_code_loop 
+:      017717 load_ucode:
+0x619f 017718 fetch 2 ,mem_patch_ptr 
+0x61a0 017719 rtn blank 
+0x61a1 017720 hjam 0x80 ,core_ucode_ctrl 
+0x61a2 017721 hjam 0 ,core_ucode_hi 
+0x61a3 017722 hjam 0 ,core_ucode_low 
+0x61a4 017723 fetcht 2 ,mem_patch_len 
+0x61a5 017724 lshift2 temp ,loopcnt 
+0x61a6 017725 iforce contr 
+:      017726 load_ucode_loop:
+0x61a7 017727 ifetch 1 ,contr 
+0x61a8 017728 hstore 1 ,core_ucode_data 
+0x61a9 017729 loop load_ucode_loop 
+0x61aa 017730 hjam 0x0 ,core_ucode_ctrl 
+0x61ab 017731 rtn 
+:      017736 spid_init:
+0x61ac 017737 set1 mark_ext_patch ,mark 
+0x61ad 017738 bpatch patch2f_6 ,mem_patch2f 
+0x61ae 017739 fetch 1 ,mem_spi_init_clk 
+0x61af 017740 hstore 1 ,core_spid_ctrl 
+0x61b0 017741 fetch 1 ,mem_spi_init_delay_time 
+0x61b1 017742 hstore 1 ,core_spid_delay 
+0x61b2 017743 setarg mem_spid_tbuf 
+0x61b3 017744 hstore 2 ,core_spid_txaddr 
+0x61b4 017745 setarg mem_spid_rbuf 
+0x61b5 017746 hstore 2 ,core_spid_rxaddr 
+0x61b6 017747 hfetch 1 ,core_gpio_sel1 
+0x61b7 017748 set1 0 ,pdata 
+0x61b8 017749 set0 1 ,pdata 
+0x61b9 017750 hstore 1 ,core_gpio_sel1 
+0x61ba 017751 rtn 
+:      017753 spid_reset:
+0x61bb 017754 hfetch 1 ,core_spid_ctrl 
+0x61bc 017755 set1 7 ,pdata 
+0x61bd 017756 hstore 1 ,core_spid_ctrl 
+0x61be 017757 set0 7 ,pdata 
+0x61bf 017758 hstore 1 ,core_spid_ctrl 
+0x61c0 017759 rtn 
+:      017763 spid_write_reg:
+0x61c1 017764 set1 7 ,pdata 
+0x61c2 017765 store 2 ,mem_spid_tbuf 
+0x61c3 017766 set1 mark_ext_patch ,mark 
+0x61c4 017767 bpatch patch2f_7 ,mem_patch2f 
+0x61c5 017768 hjam 2 ,core_spid_txlen 
+0x61c6 017769 hjam 0 ,core_spid_rxlen 
+0x61c7 017770 hjam spid_start ,core_misc_ctrl 
+0x61c8 017771 branch wait_spid_done 
+:      017774 spid_read_reg:
+0x61c9 017775 force 1 ,temp 
+:      017777 spid_read_regs:
+0x61ca 017779 store 1 ,mem_spid_tbuf 
+0x61cb 017780 set1 mark_ext_patch ,mark 
+0x61cc 017781 bpatch patch30_0 ,mem_patch30 
+0x61cd 017782 hjam 1 ,core_spid_txlen 
+0x61ce 017783 hstoret 2 ,core_spid_rxlen 
+0x61cf 017784 hjam spid_start ,core_misc_ctrl 
+0x61d0 017785 call wait_spid_done 
+0x61d1 017786 fetch 1 ,mem_spid_rbuf 
+0x61d2 017787 rtn 
+:      017789 wait_spid_done:
+0x61d3 017790 fetch 2 ,mem_afh_error_total 
+0x61d4 017791 increase 1 ,pdata 
+0x61d5 017792 store 2 ,mem_afh_error_total 
+0x61d6 017793 hfetch 1 ,core_dma_status 
+0x61d7 017794 bbit0 spid_done ,wait_spid_done 
+0x61d8 017795 rtn 
+:      017797 spid_init_flash:
+0x61d9 017798 hjam 0x40 ,core_spid_ctrl 
+0x61da 017799 hjam 0x0 ,core_spid_delay 
+0x61db 017800 hfetch 1 ,core_gpio_sel1 
+0x61dc 017801 set0 0 ,pdata 
+0x61dd 017802 set1 1 ,pdata 
+0x61de 017803 hstore 1 ,core_gpio_sel1 
+0x61df 017804 setarg 0 
+0x61e0 017805 store 4 ,mem_spid_tbuf 
+0x61e1 017806 rtn 
+:      017808 spid_unlock_flash:
+0x61e2 017809 setarg 0 
+0x61e3 017810 hstore 2 ,core_spid_rxlen 
+0x61e4 017811 setarg 1 
+0x61e5 017812 hstore 1 ,core_spid_txlen 
+0x61e6 017813 setarg mem_spid_tbuf 
+0x61e7 017814 hstore 2 ,core_spid_txaddr 
+0x61e8 017815 jam 6 ,mem_spid_tbuf 
+0x61e9 017816 hjam spid_start ,core_misc_ctrl 
+0x61ea 017817 branch wait_spid_done 
+:      017821 spid_write_flash:
+0x61eb 017822 increase 4 ,temp 
+0x61ec 017823 hstoret 2 ,core_spid_txlen 
+0x61ed 017824 increase -4 ,rega 
+0x61ee 017825 arg 2 ,temp 
+0x61ef 017826 istoret 1 ,rega 
+0x61f0 017827 rshift16 pdata ,temp 
+0x61f1 017828 istoret 1 ,contw 
+0x61f2 017829 rshift8 pdata ,temp 
+0x61f3 017830 istoret 1 ,contw 
+0x61f4 017831 istore 1 ,contw 
+0x61f5 017832 deposit rega 
+0x61f6 017833 hstore 2 ,core_spid_txaddr 
+0x61f7 017834 setarg 0 
+0x61f8 017835 hstore 2 ,core_spid_rxlen 
+0x61f9 017836 hjam spid_start ,core_misc_ctrl 
+0x61fa 017837 branch wait_spid_done 
+:      017841 spid_read_flash:
+0x61fb 017842 hstoret 2 ,core_spid_rxlen 
+0x61fc 017843 setarg 4 
+0x61fd 017844 hstore 2 ,core_spid_txlen 
+0x61fe 017845 jam 3 ,mem_spid_tbuf 
+0x61ff 017846 setarg mem_spid_tbuf 
+0x6200 017847 hstore 2 ,core_spid_txaddr 
+0x6201 017848 deposit rega 
+0x6202 017849 hstore 2 ,core_spid_rxaddr 
+0x6203 017850 hfetch 1 ,core_spid_ctrl 
+0x6204 017851 isolate0 15 ,rega 
+0x6205 017852 setflag true ,6 ,pdata 
+0x6206 017853 hstore 1 ,core_spid_ctrl 
+0x6207 017854 hjam spid_start ,core_misc_ctrl 
+:      017855 spi_read_flash_wait:
+0x6208 017856 hfetch 1 ,core_dma_status 
+0x6209 017857 bbit1 7 ,spi_read_flash_wait 
+0x620a 017858 arg spid_done ,queue 
+0x620b 017859 call decrypt_code 
+0x620c 017860 call wait_spid_done 
+0x620d 017861 isolate1 spid_crcok ,pdata 
+0x620e 017862 call set_ucode_status 
+0x620f 017863 fetch 1 ,mem_addr_hi 
+0x6210 017864 lshift16 pdata ,regb 
+0x6211 017865 fetch 1 ,mem_addr_mi 
+0x6212 017866 lshift8 pdata ,pdata 
+0x6213 017867 ior regb ,regb 
+0x6214 017868 fetch 1 ,mem_addr_lo 
+0x6215 017869 ior regb ,pdata 
+0x6216 017870 iadd temp ,pdata 
+0x6217 017871 store 1 ,mem_addr_lo 
+0x6218 017872 rshift8 pdata ,pdata 
+0x6219 017873 store 1 ,mem_addr_mi 
+0x621a 017874 rshift8 pdata ,pdata 
+0x621b 017875 store 1 ,mem_addr_hi 
+0x621c 017876 rtn 
+:      017891 iicd_init_12m:
+0x621d 017892 hjam 5 ,core_iicd_scl_low 
+0x621e 017893 hjam 7 ,core_iicd_scl_high 
+0x621f 017894 hjam 7 ,core_iicd_start_setup 
+0x6220 017895 hjam 7 ,core_iicd_start_hold 
+0x6221 017896 hjam 7 ,core_iicd_stop_setup 
+0x6222 017897 hjam 5 ,core_iicd_data_setup 
+0x6223 017898 rtn 
+:      017902 wait_iicd_done:
+0x6224 017903 hfetch 1 ,core_dma_status 
+0x6225 017904 bbit0 iicd_done ,wait_iicd_done 
+0x6226 017905 rtn 
+:      017913 iicd_read_data:
+0x6227 017914 hstore 2 ,core_iicd_txlen 
+0x6228 017915 deposit rega 
+0x6229 017916 hstore 2 ,core_iicd_txaddr 
+0x622a 017917 deposit regb 
+0x622b 017918 hstore 2 ,core_iicd_rxaddr 
+0x622c 017919 deposit temp 
+0x622d 017920 hstore 2 ,core_iicd_rxlen 
+0x622e 017921 arg 1 ,temp 
+0x622f 017922 nsetflag blank ,1 ,temp 
+0x6230 017923 hstore 1 ,core_iicd_ctrl 
+0x6231 017924 hjam iicd_start ,core_misc_ctrl 
+0x6232 017925 branch wait_iicd_done 
+:      017928 set_eeprom_size_2k:
+0x6233 017929 set1 mark_eeprom_size ,mark 
+0x6234 017930 jam 0x08 ,mem_eeprom_block_size 
+0x6235 017931 rtn 
+:      017933 clear_eeprom_size_2k:
+0x6236 017934 set0 mark_eeprom_size ,mark 
+0x6237 017935 jam 0x20 ,mem_eeprom_block_size 
+0x6238 017936 rtn 
+:      017939 iicd_read_eep_data_size_2k:
+0x6239 017940 fetch 1 ,mem_eeprom_base 
+0x623a 017941 iadd regb ,pdata 
+0x623b 017942 store 1 ,mem_addr_mi 
+0x623c 017943 branch iicd_read_eep_size_2k 
+:      017945 iicd_read_eep_size_2k_lcadcode:
+0x623d 017946 fetch 2 ,mem_addr_mi 
+0x623e 017947 byteswap pdata ,pdata 
+0x623f 017948 store 1 ,mem_addr_mi 
+:      017953 iicd_read_eep_size_2k:
+0x6240 017954 setarg 3 
+0x6241 017955 hstore 2 ,core_iicd_txlen 
+0x6242 017956 jam 0xa0 ,mem_iicd_tbuf 
+0x6243 017957 jam 0xa1 ,mem_iicd_tbuf + 2 
+0x6244 017958 branch iicd_read_eep_common 
+:      017963 iicd_read_eep_data:
+0x6245 017964 set1 mark_ext_patch ,mark 
+0x6246 017965 bpatch patch30_1 ,mem_patch30 
+0x6247 017966 bmark1 mark_eeprom_size ,iicd_read_eep_data_size_2k 
+0x6248 017967 fetch 2 ,mem_eeprom_base 
+0x6249 017968 iadd regb ,pdata 
+0x624a 017969 byteswap pdata ,pdata 
+0x624b 017970 store 2 ,mem_addr_mi 
+:      017973 iicd_read_eep:
+0x624c 017974 set1 mark_ext_patch ,mark 
+0x624d 017975 bpatch patch30_2 ,mem_patch30 
+0x624e 017976 bmark1 mark_eeprom_size ,iicd_read_eep_size_2k_lcadcode 
+0x624f 017977 nop 30000 
+0x6250 017978 setarg 4 
+0x6251 017979 hstore 2 ,core_iicd_txlen 
+0x6252 017980 jam 0xa0 ,mem_iicd_tbuf 
+0x6253 017981 jam 0xa1 ,mem_iicd_tbuf + 3 
+:      017982 iicd_read_eep_common:
+0x6254 017983 setarg mem_iicd_tbuf 
+0x6255 017984 hstore 2 ,core_iicd_txaddr 
+0x6256 017985 hstoret 2 ,core_iicd_rxlen 
+0x6257 017986 deposit rega 
+0x6258 017987 hstore 2 ,core_iicd_rxaddr 
+0x6259 017988 setarg 2 
+0x625a 017989 isolate0 15 ,rega 
+0x625b 017990 setflag true ,0 ,pdata 
+0x625c 017991 hstore 1 ,core_iicd_ctrl 
+0x625d 017992 hjam iicd_start ,core_misc_ctrl 
+0x625e 017993 arg iicd_done ,queue 
+0x625f 017994 call decrypt_code 
+0x6260 017995 call wait_iicd_done 
+0x6261 017996 isolate1 iicd_crcok ,pdata 
+0x6262 017997 call set_ucode_status 
+0x6263 017998 bmark1 mark_eeprom_size ,iicd_read_eep_load_code_size_2k 
+0x6264 017999 fetch 2 ,mem_addr_mi 
+0x6265 018000 byteswap pdata ,pdata 
+0x6266 018001 iadd temp ,pdata 
+0x6267 018002 byteswap pdata ,pdata 
+0x6268 018003 store 2 ,mem_addr_mi 
+0x6269 018004 rtn 
+:      018006 iicd_read_eep_load_code_size_2k:
+0x626a 018007 fetch 1 ,mem_addr_mi 
+0x626b 018008 iadd temp ,pdata 
+0x626c 018009 byteswap pdata ,pdata 
+0x626d 018010 store 2 ,mem_addr_mi 
+0x626e 018011 rtn 
+:      018018 iicd_write_eep_data:
+0x626f 018019 fetch 2 ,mem_eeprom_base 
+0x6270 018020 iadd regb ,pdata 
+:      018023 iicd_write_ota_data:
+0x6271 018024 store 2 ,mem_pdatatemp 
+0x6272 018025 set1 mark_ext_patch ,mark 
+0x6273 018026 bpatch patch30_3 ,mem_patch30 
+0x6274 018027 storet 2 ,mem_temp 
+0x6275 018028 copy rega ,pdata 
+0x6276 018029 store 2 ,mem_contr 
+:      018030 iicd_write_eep_loop:
+0x6277 018031 call iicd_eep_transparency 
+0x6278 018033 fetcht 2 ,mem_regb 
+0x6279 018034 fetch 2 ,mem_contr 
+0x627a 018035 copy pdata ,rega 
+0x627b 018036 fetch 2 ,mem_pdatatemp 
+0x627c 018038 call iicd_write_eep 
+0x627d 018042 fetch 2 ,mem_regb 
+0x627e 018043 fetcht 2 ,mem_contr 
+0x627f 018044 iadd temp ,temp 
+0x6280 018045 storet 2 ,mem_contr 
+0x6281 018046 fetcht 2 ,mem_pdatatemp 
+0x6282 018047 iadd temp ,temp 
+0x6283 018048 storet 2 ,mem_pdatatemp 
+0x6284 018049 fetch 2 ,mem_temp 
+0x6285 018050 nbranch iicd_write_eep_loop ,blank 
+0x6286 018051 rtn 
+:      018059 iicd_eep_transparency:
+0x6287 018060 set1 mark_ext_patch ,mark 
+0x6288 018061 bpatch patch30_4 ,mem_patch30 
+0x6289 018062 fetch 2 ,mem_eeprom_block_size 
+0x628a 018063 increase -1 ,pdata 
+0x628b 018064 fetcht 2 ,mem_pdatatemp 
+0x628c 018065 ior temp ,pdata 
+0x628d 018066 increase 1 ,pdata 
+0x628e 018067 store 3 ,mem_regc 
+0x628f 018069 fetch 2 ,mem_temp 
+0x6290 018070 iadd temp ,pdata 
+0x6291 018072 fetcht 3 ,mem_regc 
+0x6292 018073 isub temp ,pdata 
+0x6293 018074 nbranch iicd_eep_deal_short_packet ,positive 
+0x6294 018075 store 2 ,mem_temp 
+0x6295 018076 fetch 3 ,mem_regc 
+0x6296 018077 fetcht 2 ,mem_pdatatemp 
+0x6297 018078 isub temp ,pdata 
+0x6298 018079 store 2 ,mem_regb 
+0x6299 018080 rtn 
+:      018081 iicd_eep_deal_short_packet:
+0x629a 018082 fetch 2 ,mem_temp 
+0x629b 018083 store 2 ,mem_regb 
+0x629c 018084 setarg 0 
+0x629d 018085 store 2 ,mem_temp 
+0x629e 018086 rtn 
+:      018088 iicd_write_eep_size_2k:
+0x629f 018089 increase 2 ,temp 
+0x62a0 018090 hstoret 2 ,core_iicd_txlen 
+0x62a1 018091 increase -2 ,rega 
+0x62a2 018092 ifetcht 3 ,rega 
+0x62a3 018093 copy temp ,regb 
+0x62a4 018094 arg 0xa0 ,temp 
+0x62a5 018095 istoret 1 ,rega 
+0x62a6 018097 istore 1 ,contw 
+0x62a7 018098 branch iicd_write_eep_common 
+:      018101 iicd_write_eep:
+0x62a8 018102 copy pdata ,regb 
+0x62a9 018103 set1 mark_ext_patch ,mark 
+0x62aa 018104 bpatch patch30_5 ,mem_patch30 
+0x62ab 018105 nop 30000 
+0x62ac 018106 bmark1 mark_eeprom_size ,iicd_write_eep_size_2k 
+0x62ad 018107 copy regb ,pdata 
+0x62ae 018108 increase 3 ,temp 
+0x62af 018109 hstoret 2 ,core_iicd_txlen 
+0x62b0 018110 increase -3 ,rega 
+0x62b1 018111 ifetcht 3 ,rega 
+0x62b2 018112 copy temp ,regb 
+0x62b3 018113 arg 0xa0 ,temp 
+0x62b4 018114 istoret 1 ,rega 
+0x62b5 018115 byteswap pdata ,pdata 
+0x62b6 018116 istore 2 ,contw 
+:      018117 iicd_write_eep_common:
+0x62b7 018118 deposit rega 
+0x62b8 018119 hstore 2 ,core_iicd_txaddr 
+0x62b9 018120 setarg 0 
+0x62ba 018121 hstore 2 ,core_iicd_rxlen 
+0x62bb 018122 hjam 1 ,core_iicd_ctrl 
+0x62bc 018123 hjam iicd_start ,core_misc_ctrl 
+0x62bd 018124 call wait_iicd_done 
+0x62be 018125 copy regb ,pdata 
+0x62bf 018126 istore 3 ,rega 
+0x62c0 018127 nop 10000 
+0x62c1 018128 nop 10000 
+0x62c2 018129 nop 10000 
+0x62c3 018130 rtn 
+:      018134 otp_enable_chgpump:
+0x62c4 018135 hjam 0x70 ,rfen_chgpump 
+0x62c5 018136 nop param_chgpump_delay 
+0x62c6 018137 rtn 
+:      018139 otp_disable_chgpump:
+0x62c7 018140 hjam 0x30 ,rfen_chgpump 
+0x62c8 018141 rtn 
+:      018143 otp_set_addr:
+0x62c9 018144 lshift3 pdata ,pdata 
+0x62ca 018145 hstore 2 ,core_otp_addr 
+0x62cb 018146 hjam 0 ,core_otpd_ctrl 
+0x62cc 018147 rtn 
+:      018150 otp_write:
+0x62cd 018151 call otp_set_addr 
+0x62ce 018152 call otp_ce 
+:      018153 otp_program:
+0x62cf 018154 ifetcht 1 ,rega 
+0x62d0 018155 increase 1 ,rega 
+0x62d1 018156 force 0 ,queue 
+:      018157 otp_program_bit:
+0x62d2 018158 qisolate0 temp 
+0x62d3 018159 branch otp_skip_0 ,true 
+0x62d4 018160 hfetch 1 ,core_otp_din 
+0x62d5 018161 set1 6 ,pdata 
+0x62d6 018162 set1 7 ,pdata 
+0x62d7 018163 hstore 1 ,core_otp_din 
+0x62d8 018164 hjam 0x02 ,core_otp_ctrl 
+0x62d9 018165 hjam 0x82 ,core_otp_ctrl 
+0x62da 018166 set0 7 ,pdata 
+0x62db 018167 hstore 1 ,core_otp_din 
+0x62dc 018168 hjam 0x8a ,core_otp_ctrl 
+0x62dd 018169 nop 11 
+0x62de 018170 hjam 0xca ,core_otp_ctrl 
+0x62df 018171 nop 33 
+0x62e0 018172 hjam 0x4a ,core_otp_ctrl 
+0x62e1 018173 nop 44 
+0x62e2 018174 hjam 0xca ,core_otp_ctrl 
+0x62e3 018175 nop 22 
+0x62e4 018176 hjam 0x8a ,core_otp_ctrl 
+0x62e5 018177 nop 33 
+0x62e6 018178 hjam 0x82 ,core_otp_ctrl 
+0x62e7 018179 nop 1 
+0x62e8 018180 hjam 0x92 ,core_otp_ctrl 
+0x62e9 018181 nop 10 
+0x62ea 018182 hjam 0xb2 ,core_otp_ctrl 
+0x62eb 018183 hfetch 1 ,core_otp_rdata 
+0x62ec 018184 hjam 0x92 ,core_otp_ctrl 
+0x62ed 018185 nop 1 
+0x62ee 018186 hjam 0x82 ,core_otp_ctrl 
+0x62ef 018187 qisolate0 pdata 
+0x62f0 018188 branch otp_program_bit ,true 
+:      018189 otp_skip_0:
+0x62f1 018190 hfetch 2 ,core_otp_addr 
+0x62f2 018191 increase 1 ,pdata 
+0x62f3 018192 hstore 2 ,core_otp_addr 
+0x62f4 018193 increase 1 ,queue 
+0x62f5 018194 compare 8 ,queue ,0xf 
+0x62f6 018195 nbranch otp_program_bit ,true 
+0x62f7 018196 loop otp_program 
+0x62f8 018197 hjam 0x83 ,core_otp_ctrl 
+0x62f9 018198 rtn 
+:      018200 otp_ce:
+0x62fa 018201 hjam 0x82 ,core_otp_ctrl 
+0x62fb 018202 nop 12 
+0x62fc 018203 hjam 0x80 ,core_otp_ctrl 
+0x62fd 018204 hjam 0x82 ,core_otp_ctrl 
+0x62fe 018205 nop 150 
+0x62ff 018206 rtn 
+:      018209 otpd_read_init:
+0x6300 018210 call otp_ce 
+0x6301 018211 hjam 0xa2 ,core_otp_ctrl 
+0x6302 018212 deposit rega 
+0x6303 018213 hstore 2 ,core_otpd_addr 
+0x6304 018214 set1 11 ,temp 
+0x6305 018215 isolate0 15 ,pdata 
+0x6306 018216 setflag true ,15 ,temp 
+0x6307 018217 hstoret 2 ,core_otpd_len 
+0x6308 018218 hjam otpd_start ,core_misc_ctrl 
+0x6309 018219 rtn 
+:      018221 otpd_wait_end:
+0x630a 018222 hfetch 1 ,core_dma_status 
+0x630b 018223 bbit0 otpd_done ,otpd_wait_end 
+0x630c 018224 rtn 
+:      018227 otpd_read_data:
+0x630d 018228 call otp_set_addr 
+0x630e 018229 call otpd_read_init 
+0x630f 018230 call otpd_wait_end 
+0x6310 018231 hjam 0x83 ,core_otp_ctrl 
+0x6311 018232 rtn 
+:      018237 otpd_read_code:
+0x6312 018238 hfetch 2 ,core_current_otp_addr 
+0x6313 018239 hstore 2 ,core_otp_addr 
+0x6314 018240 call otpd_read_init 
+0x6315 018241 arg otpd_done ,queue 
+0x6316 018242 call decrypt_code 
+0x6317 018243 call otpd_wait_end 
+0x6318 018244 isolate1 otpd_crcok ,pdata 
+0x6319 018245 call set_ucode_status 
+0x631a 018246 hjam 0x83 ,core_otp_ctrl 
+0x631b 018247 rtn 
+:      018250 uartd_prepare_tx:
+0x631c 018251 hfetch 2 ,core_uart_twptr 
+0x631d 018252 iforce contwu 
+0x631e 018253 rtn 
+:      018255 uartd_send:
+0x631f 018256 deposit contwu 
+0x6320 018257 hstore 2 ,core_uart_twptr 
+0x6321 018258 rtn 
+:      018260 uartd_rxdone:
+0x6322 018261 deposit contru 
+0x6323 018262 hstore 2 ,core_uart_rrptr 
+0x6324 018263 rtn 
+:      018265 uart_set_baud_by_mem:
+0x6325 018266 fetch uart_baud_len ,mem_baud 
+0x6326 018267 hstore uart_baud_len ,core_uart_baud 
+0x6327 018268 rtn 
+:      018270 uart_copy_tx_bytes_fast:
+0x6328 018271 deposit loopcnt 
+0x6329 018272 rtn blank 
+:      018273 uart_copy_tx_bytes_fast_loop:
+0x632a 018274 increase -8 ,loopcnt 
+0x632b 018275 call uart_tx_8_bytes ,positive 
+0x632c 018276 rtn zero 
+0x632d 018277 branch uart_copy_tx_bytes_fast_loop ,positive 
+0x632e 018278 increase 8 ,loopcnt 
+:      018279 uart_copy_tx_bytes_fast_loop_four:
+0x632f 018280 increase -4 ,loopcnt 
+0x6330 018281 call uart_tx_4_bytes ,positive 
+0x6331 018282 rtn zero 
+0x6332 018283 branch uart_copy_tx_bytes_fast_loop_four ,positive 
+0x6333 018284 increase 4 ,loopcnt 
+0x6334 018285 branch uart_copy_tx_bytes 
+:      018287 uart_tx_8_bytes:
+0x6335 018288 ifetch 8 ,contr 
+0x6336 018289 istore 8 ,contwu 
+0x6337 018290 rtn 
+:      018292 uart_tx_4_bytes:
+0x6338 018293 ifetch 4 ,contr 
+0x6339 018294 istore 4 ,contwu 
+0x633a 018295 rtn 
+:      018297 uart_copy_tx_bytes:
+0x633b 018298 deposit loopcnt 
+0x633c 018299 rtn blank 
+:      018300 uart_copy_tx_bytes_loop:
+0x633d 018301 ifetch 1 ,contr 
+0x633e 018302 istore 1 ,contwu 
+0x633f 018303 loop uart_copy_tx_bytes_loop 
+0x6340 018304 rtn 
+:      018306 uart_copy_rx_bytes_fast:
+0x6341 018307 deposit loopcnt 
+0x6342 018308 rtn blank 
+:      018309 uart_copy_rx_bytes_fast_loop:
+0x6343 018310 increase -8 ,loopcnt 
+0x6344 018311 call uart_rx_8_bytes ,positive 
+0x6345 018312 rtn zero 
+0x6346 018313 branch uart_copy_rx_bytes_fast_loop ,positive 
+0x6347 018314 increase 8 ,loopcnt 
+:      018315 uart_copy_rx_bytes_fast_loop_four:
+0x6348 018316 increase -4 ,loopcnt 
+0x6349 018317 call uart_rx_4_bytes ,positive 
+0x634a 018318 rtn zero 
+0x634b 018319 branch uart_copy_rx_bytes_fast_loop_four ,positive 
+0x634c 018320 increase 4 ,loopcnt 
+0x634d 018321 branch uart_copy_rx_bytes 
+:      018323 uart_rx_8_bytes:
+0x634e 018324 ifetch 8 ,contru 
+0x634f 018325 istore 8 ,contw 
+0x6350 018326 rtn 
+:      018328 uart_rx_4_bytes:
+0x6351 018329 ifetch 4 ,contru 
+0x6352 018330 istore 4 ,contw 
+0x6353 018331 rtn 
+:      018334 uart_copy_rx_bytes:
+0x6354 018335 deposit loopcnt 
+0x6355 018336 rtn blank 
+:      018337 uart_copy_rx_bytes_loop:
+0x6356 018338 ifetch 1 ,contru 
+0x6357 018339 istore 1 ,contw 
+0x6358 018340 loop uart_copy_rx_bytes_loop 
+0x6359 018341 rtn 
+:      018346 check_51cmd_update_device_record:
+0x635a 018347 set1 mark_ext_patch ,mark 
+0x635b 018348 bpatch patch30_6 ,mem_patch30 
+0x635c 018349 fetch 1 ,mem_nv_data_number 
+0x635d 018350 rtn blank 
+0x635e 018351 call check_nvram 
+0x635f 018352 call init_device_list ,zero 
+0x6360 018353 call nvram_find_addr_from_bd_list 
+:      018354 write_device_record:
+0x6361 018355 fetch 1 ,mem_nv_data_number 
+0x6362 018356 icopy regc 
+0x6363 018357 fetcht 2 ,mem_nv_data_ptr 
+0x6364 018358 storet 2 ,mem_list_item_ptr 
+:      018359 write_device_loop_find:
+0x6365 018360 copy regc ,pdata 
+0x6366 018361 branch module_hci_event_store_device ,blank 
+0x6367 018362 increase -1 ,regc 
+0x6368 018363 copy temp ,rega 
+0x6369 018364 ifetch 1 ,rega 
+0x636a 018365 fetcht 1 ,mem_select_list_item 
+0x636b 018366 isub temp ,null 
+0x636c 018367 call set_index_finded_device ,zero 
+0x636d 018368 branch write_device_loop_find0 ,positive 
+0x636e 018369 ifetch 1 ,rega 
+0x636f 018370 increase 1 ,pdata 
+0x6370 018371 istore 1 ,rega 
+:      018372 write_device_loop_find0:
+0x6371 018373 fetcht 2 ,mem_list_item_ptr 
+0x6372 018374 increase nv_data_len ,temp 
+0x6373 018375 storet 2 ,mem_list_item_ptr 
+0x6374 018376 branch write_device_loop_find 
+:      018378 set_index_finded_device:
+0x6375 018379 setarg 0 
+0x6376 018380 istore 1 ,rega 
+0x6377 018381 fetch 1 ,mem_temp_reconn_record 
+0x6378 018382 istore 1 ,contw 
+0x6379 018383 bne rec_3_mode ,set_index_finded_device_ble_mode 
+0x637a 018384 arg mem_link_key ,regb 
+:      018385 set_index_find_device_master_addr:
+0x637b 018386 ifetch 6 ,contr 
+0x637c 018387 istore 8 ,contw 
+0x637d 018388 setarg 0 
+0x637e 018389 istore 8 ,contw 
+0x637f 018390 copy regb ,contr 
+:      018391 store_rec_data_common:
+0x6380 018392 call memcpy16 
+0x6381 018393 force 1 ,null 
+0x6382 018394 rtn 
+:      018396 set_index_finded_device_ble_mode:
+0x6383 018397 beq rec_4_mode_random_resolvable_private_address ,set_index_finded_device_irk 
+0x6384 018398 beq rec_4_mode_random_non_resolvable_private_address ,set_index_finded_device_ediv 
+0x6385 018399 arg mem_le_ltk ,regb 
+0x6386 018400 branch set_index_find_device_master_addr 
+:      018402 set_index_finded_device_irk:
+0x6387 018403 arg mem_le_irk ,contr 
+0x6388 018404 call memcpy16 
+:      018405 store_ble_rec_data_common:
+0x6389 018406 arg mem_le_ltk ,contr 
+0x638a 018407 branch store_rec_data_common 
+:      018409 set_index_finded_device_ediv:
+0x638b 018410 arg mem_le_rand ,contr 
+0x638c 018411 call memcpy16 
+0x638d 018412 branch store_ble_rec_data_common 
+:      018415 nvram_find_addr_from_bd_list:
+0x638e 018416 call disable_usr 
+0x638f 018417 fetch 1 ,mem_nv_data_number 
+0x6390 018418 rtn blank 
+0x6391 018419 fetch 2 ,mem_ui_state_map 
+0x6392 018420 bbit1 ui_state_bt_connected ,find_addr_from_bd_list_spp_mode 
+:      018422 find_addr_from_bd_list_ble_mode:
+0x6393 018423 fetch 1 ,mem_le_conn_peer_addr_type 
+0x6394 018424 beq master_public_addr ,find_addr_from_bd_list_static_addr 
+0x6395 018425 fetch 1 ,mem_le_plap + 5 
+0x6396 018426 compare 0xc0 ,pdata ,0xc0 
+0x6397 018427 branch find_addr_from_bd_list_static_addr ,true 
+0x6398 018428 compare 0x40 ,pdata ,0xc0 
+0x6399 018429 branch find_addr_from_bd_list_random_addr ,true 
+0x639a 018430 compare 0x00 ,pdata ,0xc0 
+0x639b 018431 branch find_addr_from_bd_list_random_non_resolvable_private_address ,true 
+:      018432 find_addr_from_bd_list_static_addr:
+0x639c 018433 jam rec_4_mode_static_address ,mem_temp_reconn_record 
+0x639d 018434 fetch 6 ,mem_le_plap 
+0x639e 018435 branch find_addr_from_bd_list_common 
+:      018437 find_addr_from_bd_list_random_non_resolvable_private_address:
+0x639f 018438 jam rec_4_mode_random_non_resolvable_private_address ,mem_temp_reconn_record 
+0x63a0 018439 branch find_addr_from_bd_list_common 
+:      018442 find_addr_from_bd_list_random_addr:
+0x63a1 018443 jam rec_4_mode_random_resolvable_private_address ,mem_temp_reconn_record 
+0x63a2 018444 branch find_addr_from_bd_list_common 
+:      018447 find_addr_from_bd_list_spp_mode:
+0x63a3 018448 set1 mark_ext_patch ,mark 
+0x63a4 018449 bpatch patch30_7 ,mem_patch30 
+0x63a5 018450 jam rec_3_mode ,mem_temp_reconn_record 
+0x63a6 018451 fetch 6 ,mem_plap 
+:      018452 find_addr_from_bd_list_common:
+0x63a7 018453 store 6 ,mem_temp_reconn_record + 1 
+0x63a8 018454 fetch 2 ,mem_nv_data_ptr 
+0x63a9 018455 ifetcht 1 ,pdata 
+0x63aa 018456 pincrease 1 
+0x63ab 018457 store 2 ,mem_list_item_ptr 
+0x63ac 018458 storet 1 ,mem_select_list_item 
+0x63ad 018459 fetch 1 ,mem_nv_data_number 
+0x63ae 018460 icopy regc 
+:      018461 nvram_find_addr_from_list:
+0x63af 018462 fetch 2 ,mem_list_item_ptr 
+0x63b0 018463 copy pdata ,rega 
+0x63b1 018464 call nvram_find_addr_from_list_compare 
+0x63b2 018465 rtn user 
+0x63b3 018466 fetcht 2 ,mem_list_item_ptr 
+0x63b4 018467 increase nv_data_len ,temp 
+0x63b5 018468 storet 2 ,mem_list_item_ptr 
+0x63b6 018469 increase -1 ,temp 
+0x63b7 018470 ifetch 1 ,temp 
+0x63b8 018471 store 1 ,mem_select_list_item 
+0x63b9 018472 increase -1 ,regc 
+0x63ba 018473 nbranch nvram_find_addr_from_list ,zero 
+0x63bb 018474 fetch 1 ,mem_nv_data_number 
+0x63bc 018475 pincrease decreased_one 
+0x63bd 018476 store 1 ,mem_select_list_item 
+0x63be 018477 rtn 
+:      018478 nvram_find_addr_from_list_compare:
+0x63bf 018479 fetch 1 ,mem_temp_reconn_record 
+0x63c0 018480 bne rec_3_mode ,find_addr_from_list_compare_ble_mode 
+:      018481 find_master_addr_from_list_compare:
+0x63c1 018482 arg mem_temp_reconn_record ,regb 
+0x63c2 018483 arg 7 ,loopcnt 
+0x63c3 018484 call string_compare 
+0x63c4 018485 branch enable_usr ,zero 
+0x63c5 018486 rtn 
+:      018488 find_addr_from_list_compare_ble_mode:
+0x63c6 018489 beq rec_4_mode_random_resolvable_private_address ,find_irk_form_list_compare 
+0x63c7 018490 beq rec_4_mode_random_non_resolvable_private_address ,find_ediv_form_list_compare 
+0x63c8 018491 branch find_master_addr_from_list_compare 
+:      018493 find_irk_form_list_compare:
+0x63c9 018494 ifetcht 1 ,rega 
+0x63ca 018495 isub temp ,null 
+0x63cb 018496 nrtn zero 
+0x63cc 018497 arg mem_le_prand ,contw 
+0x63cd 018498 arg 16 ,loopcnt 
+0x63ce 018499 call clear_mem 
+0x63cf 018500 fetch 3 ,mem_le_plap + 3 
+0x63d0 018501 store 3 ,mem_le_prand 
+0x63d1 018502 call genernate_master_macaddress 
+0x63d2 018503 fetch 2 ,mem_le_aes_128 + 13 
+0x63d3 018504 byteswap pdata ,pdata 
+0x63d4 018505 lshift8 pdata ,temp 
+0x63d5 018506 ifetch 1 ,contr 
+0x63d6 018507 iadd temp ,pdata 
+0x63d7 018508 fetcht 3 ,mem_le_plap 
+0x63d8 018509 isub temp ,null 
+0x63d9 018510 branch enable_usr ,zero 
+0x63da 018511 rtn 
+:      018514 genernate_master_macaddress:
+0x63db 018515 arg mem_le_prand ,contr 
+0x63dc 018516 call load_data128 
+0x63dd 018518 ifetch 1 ,rega 
+0x63de 018519 call load_regext 
+0x63df 018520 force 0x38 ,aes_ctrl 
+0x63e0 018521 force 0x0 ,aes_ctrl 
+0x63e1 018522 call wait_aes 
+0x63e2 018523 arg mem_le_aes_128 ,contw 
+0x63e3 018524 branch store_aes_result 
+:      018526 find_ediv_form_list_compare:
+0x63e4 018527 ifetcht 1 ,rega 
+0x63e5 018528 isub temp ,null 
+0x63e6 018529 nrtn zero 
+0x63e7 018530 copy contr ,rega 
+0x63e8 018531 add contr ,8 ,regc 
+0x63e9 018532 arg mem_le_rand ,regb 
+0x63ea 018533 arg 8 ,loopcnt 
+0x63eb 018534 call string_compare 
+0x63ec 018535 branch enable_usr ,zero 
+0x63ed 018536 copy regc ,rega 
+0x63ee 018537 arg mem_le_irk ,regb 
+0x63ef 018538 arg 8 ,loopcnt 
+0x63f0 018539 call string_compare 
+0x63f1 018540 branch enable_usr ,zero 
+0x63f2 018541 rtn 
+:      018543 check_nvram:
+0x63f3 018544 fetch 2 ,mem_nv_data_ptr 
+0x63f4 018545 ifetcht 1 ,pdata 
+0x63f5 018546 pincrease nv_data_len 
+0x63f6 018547 ifetch 1 ,pdata 
+0x63f7 018548 isub temp ,null 
+0x63f8 018549 rtn 
+:      018551 init_device_list:
+0x63f9 018552 fetch 1 ,mem_nv_data_number 
+0x63fa 018553 icopy loopcnt 
+0x63fb 018554 fetcht 2 ,mem_nv_data_ptr 
+0x63fc 018555 setarg 0 
+:      018556 init_device_list_loop:
+0x63fd 018557 istore 1 ,temp 
+0x63fe 018558 increase nv_data_len ,temp 
+0x63ff 018559 pincrease 1 
+0x6400 018560 loop init_device_list_loop 
+0x6401 018561 rtn 
+:      018563 load_device_list:
+0x6402 018564 set1 mark_ext_patch ,mark 
+0x6403 018565 bpatch patch31_0 ,mem_patch31 
+0x6404 018566 call nvram_find_addr_from_bd_list 
+0x6405 018567 nbranch clear_key_exists ,user 
+0x6406 018568 add rega ,10 ,contr 
+0x6407 018570 arg mem_link_key ,contw 
+0x6408 018571 call memcpy16 
+0x6409 018572 branch check_link_key_load 
+:      018573 clear_key_exists:
+0x640a 018574 jam 0 ,mem_link_key_exists 
+0x640b 018575 rtn 
+:      018577 load_device_list_mode_4:
+0x640c 018578 fetch 9 ,mem_le_ediv 
+0x640d 018579 branch clear_ltk_exists ,blank 
+0x640e 018580 call nvram_find_addr_from_bd_list 
+0x640f 018581 nbranch clear_ltk_exists ,user 
+0x6410 018582 fetch 2 ,mem_list_item_ptr 
+0x6411 018583 add pdata ,1 ,contr 
+0x6412 018584 arg mem_le_irk ,contw 
+0x6413 018585 call memcpy16 
+0x6414 018586 arg mem_le_ltk ,contw 
+0x6415 018587 call memcpy16 
+0x6416 018588 jam 1 ,mem_ltk_exists 
+0x6417 018589 rtn 
+:      018591 load_device_list_mode_4_shutter:
+0x6418 018592 fetch 2 ,mem_le_ediv 
+0x6419 018593 nbranch load_device_list_mode_4_shutter_label ,blank 
+0x641a 018594 fetch 6 ,mem_le_rand 
+0x641b 018595 branch clear_ltk_exists_iphone_lost_ltk ,blank 
+:      018596 load_device_list_mode_4_shutter_label:
+0x641c 018597 jam ltk_not_lost ,mem_ltk_states 
+0x641d 018598 setarg 0x112233 
+0x641e 018599 store 3 ,mem_le_ltk 
+0x641f 018600 setarg 0x445566 
+0x6420 018601 istore 3 ,contw 
+0x6421 018602 setarg 0x778899 
+0x6422 018603 istore 3 ,contw 
+0x6423 018604 setarg 0x001122 
+0x6424 018605 istore 3 ,contw 
+0x6425 018606 setarg 0x334455 
+0x6426 018607 istore 3 ,contw 
+0x6427 018608 setarg 0x66 
+0x6428 018609 istore 1 ,contw 
+0x6429 018610 jam 1 ,mem_ltk_exists 
+0x642a 018611 rtn 
+:      018613 clear_ltk_exists_iphone_lost_ltk:
+0x642b 018614 jam iphone_lost_ltk ,mem_ltk_states 
+:      018615 clear_ltk_exists:
+0x642c 018616 jam 0 ,mem_ltk_exists 
+0x642d 018617 rtn 
+:      018620 eeprom_store_le_reconn_info:
+0x642e 018621 fetch 6 ,mem_le_plap 
+0x642f 018622 store 6 ,mem_temp_lap 
+0x6430 018623 jam rec_4_mode ,mem_record_bt_mode 
+0x6431 018624 branch eeprom_store_reconn_info 
+:      018625 eeprom_store_bd_reconn_info:
+0x6432 018626 fetch 6 ,mem_plap 
+0x6433 018627 store 6 ,mem_temp_lap 
+0x6434 018628 jam rec_3_mode ,mem_record_bt_mode 
+:      018629 eeprom_store_reconn_info:
+0x6435 018630 set1 mark_ext_patch ,mark 
+0x6436 018631 bpatch patch31_1 ,mem_patch31 
+0x6437 018632 fetch 1 ,mem_device_option 
+0x6438 018633 beq dvc_op_module ,check_51cmd_update_device_record 
+0x6439 018634 call eeprom_store_remote_bdaddr 
+0x643a 018635 call eeprom_store_last_record_index 
+0x643b 018636 fetch 1 ,mem_record_bt_mode 
+0x643c 018637 beq rec_4_mode ,eeprom_store_rec_4_mode 
+0x643d 018638 beq rec_3_mode ,eeprom_store_link_key 
+0x643e 018639 rtn 
+:      018640 eeprom_store_rec_4_mode:
+0x643f 018641 call eeprom_store_le_ltl 
+0x6440 018642 branch eeprom_store_le_local_addr 
+:      018645 eeprom_load_reconn_info:
+0x6441 018646 set1 mark_ext_patch ,mark 
+0x6442 018647 bpatch patch31_2 ,mem_patch31 
+0x6443 018648 call eeprom_load_reconn_bdaddr 
+0x6444 018649 fetch 1 ,mem_select_list_item 
+0x6445 018650 rtneq 0xff 
+0x6446 018651 fetch 6 ,mem_temp_lap 
+0x6447 018652 store 6 ,mem_hci_plap 
+0x6448 018653 fetch 1 ,mem_record_bt_mode 
+0x6449 018654 store 1 ,mem_xrecord_mode 
+0x644a 018655 beq rec_3_mode ,eeprom_load_rec_3_mode 
+0x644b 018656 beq rec_4_mode ,eeprom_load_rec_4_mode 
+0x644c 018657 rtn 
+:      018658 eeprom_load_reconn_bdaddr:
+0x644d 018659 call eeprom_load_last_record_index 
+0x644e 018660 fetch 1 ,mem_select_list_item 
+0x644f 018661 rtneq 0xff 
+0x6450 018662 branch eeprom_load_remote_bdaddr 
+:      018663 eeprom_load_rec_3_mode:
+0x6451 018664 call eeprom_load_link_key 
+0x6452 018665 branch check_link_key_load 
+:      018666 eeprom_load_rec_4_mode:
+0x6453 018667 call eeprom_load_ltk_key 
+0x6454 018668 branch check_ltk_load 
+:      018672 eeprom_erase_reconn_info:
+0x6455 018673 set1 mark_ext_patch ,mark 
+0x6456 018674 bpatch patch31_4 ,mem_patch31 
+0x6457 018675 setarg 0x0 
+0x6458 018676 store 3 ,mem_plap 
+0x6459 018677 istore 3 ,contw 
+0x645a 018678 branch eeprom_store_remote_bdaddr 
+:      018680 eeprom_load_last_record_index:
+0x645b 018681 arg 1 ,temp 
+0x645c 018682 arg mem_select_list_item ,rega 
+0x645d 018683 arg eeprom_last_record ,regb 
+0x645e 018684 branch iicd_read_eep_data 
+:      018686 eeprom_store_last_record_index:
+0x645f 018687 arg 1 ,temp 
+0x6460 018688 arg mem_select_list_item ,rega 
+0x6461 018689 arg eeprom_last_record ,regb 
+0x6462 018690 branch iicd_write_eep_data 
+:      018693 eeprom_store_remote_bdaddr:
+0x6463 018694 set1 mark_ext_patch ,mark 
+0x6464 018695 bpatch patch31_5 ,mem_patch31 
+0x6465 018696 call eeprom_load_bdaddr_list 
+0x6466 018697 disable user 
+0x6467 018698 call find_addr_from_bd_list 
+0x6468 018699 rtn user 
+:      018700 eeprom_store_remote_addr_unfind:
+0x6469 018701 jam 0 ,mem_select_list_item 
+0x646a 018702 fetch 6 ,mem_temp_lap 
+0x646b 018703 store 6 ,mem_bdaddr_list_buff + 1 
+0x646c 018704 fetch 1 ,mem_record_bt_mode 
+0x646d 018705 store 1 ,mem_bdaddr_list_buff 
+0x646e 018706 arg 28 ,temp 
+0x646f 018707 arg mem_bdaddr_list_buff ,rega 
+0x6470 018708 arg eeprom_bdaddr_list ,regb 
+0x6471 018709 branch iicd_write_eep_data 
+:      018712 eeprom_store_le_local_addr:
+0x6472 018713 arg 6 ,temp 
+0x6473 018714 arg mem_le_lap ,rega 
+0x6474 018715 arg eeprom_le_reconn_local_addr ,regb 
+0x6475 018716 branch iicd_write_eep_data 
+:      018718 eeprom_load_le_loacal_addr:
+0x6476 018719 arg 6 ,temp 
+0x6477 018720 arg mem_le_lap ,rega 
+0x6478 018721 arg eeprom_le_reconn_local_addr ,regb 
+0x6479 018722 branch iicd_read_eep_data 
+:      018725 eeprom_load_remote_bdaddr:
+0x647a 018726 set1 mark_ext_patch ,mark 
+0x647b 018727 bpatch patch31_6 ,mem_patch31 
+0x647c 018728 arg 7 ,temp 
+0x647d 018729 arg mem_temp_reconn_record ,rega 
+0x647e 018730 arg eeprom_bdaddr_list ,regb 
+0x647f 018731 fetch 1 ,mem_select_list_item 
+0x6480 018732 mul32 pdata ,7 ,pdata 
+0x6481 018733 iadd regb ,regb 
+0x6482 018734 branch iicd_read_eep_data 
+:      018736 eeprom_linkkey_addr:
+0x6483 018737 arg 0x10 ,temp 
+0x6484 018738 arg eeprom_linkkey_list ,regb 
+0x6485 018739 fetch 1 ,mem_select_list_item 
+0x6486 018740 lshift4 pdata ,pdata 
+0x6487 018741 iadd regb ,regb 
+0x6488 018742 rtn 
+:      018744 eeprom_store_le_ltl:
+0x6489 018745 arg mem_le_ltk ,rega 
+0x648a 018746 branch eeprom_store_link_key_common 
+:      018747 eeprom_store_link_key:
+0x648b 018748 arg mem_link_key ,rega 
+:      018749 eeprom_store_link_key_common:
+0x648c 018750 set1 mark_ext_patch ,mark 
+0x648d 018751 bpatch patch31_7 ,mem_patch31 
+0x648e 018752 call eeprom_linkkey_addr 
+0x648f 018753 branch iicd_write_eep_data 
+:      018755 eeprom_load_ltk_key:
+0x6490 018756 arg mem_le_ltk ,rega 
+0x6491 018757 branch eeprom_load_link_key_common 
+:      018758 eeprom_load_link_key:
+0x6492 018759 arg mem_link_key ,rega 
+:      018760 eeprom_load_link_key_common:
+0x6493 018761 set1 mark_ext_patch ,mark 
+0x6494 018762 bpatch patch32_0 ,mem_patch32 
+0x6495 018763 call eeprom_linkkey_addr 
+0x6496 018764 branch iicd_read_eep_data 
+:      018768 eeprom_load_bdaddr_list:
+0x6497 018769 arg 28 ,temp 
+0x6498 018770 arg mem_bdaddr_list_buff + 7 ,rega 
+0x6499 018771 arg eeprom_bdaddr_list ,regb 
+0x649a 018772 branch iicd_read_eep_data 
+:      018775 find_addr_from_bd_list:
+0x649b 018776 set1 mark_ext_patch ,mark 
+0x649c 018777 bpatch patch32_1 ,mem_patch32 
+0x649d 018778 setarg mem_bdaddr_list_buff + 7 
+0x649e 018779 store 2 ,mem_list_item_ptr 
+0x649f 018780 jam 0 ,mem_select_list_item 
+0x64a0 018781 arg 4 ,loopcnt 
+:      018782 find_addr_from_list:
+0x64a1 018783 copy loopcnt ,pdata 
+0x64a2 018784 store 1 ,mem_pdatatemp 
+0x64a3 018785 fetch 2 ,mem_list_item_ptr 
+0x64a4 018786 copy pdata ,rega 
+0x64a5 018787 call find_addr_from_list_compare 
+0x64a6 018788 rtn user 
+0x64a7 018789 fetch 2 ,mem_list_item_ptr 
+0x64a8 018790 increase 7 ,pdata 
+0x64a9 018791 store 2 ,mem_list_item_ptr 
+0x64aa 018792 fetch 1 ,mem_select_list_item 
+0x64ab 018793 increase 1 ,pdata 
+0x64ac 018794 store 1 ,mem_select_list_item 
+0x64ad 018795 fetch 1 ,mem_pdatatemp 
+0x64ae 018796 copy pdata ,loopcnt 
+0x64af 018797 loop find_addr_from_list 
+0x64b0 018798 rtn 
+:      018801 check_link_key_load:
+0x64b1 018802 fetch 8 ,mem_link_key 
+0x64b2 018803 fetcht 8 ,mem_link_key + 8 
+0x64b3 018804 ior temp ,pdata 
+0x64b4 018805 rtn blank 
+0x64b5 018806 jam 1 ,mem_link_key_exists 
+0x64b6 018807 rtn 
+:      018808 check_ltk_load:
+0x64b7 018809 fetch 6 ,mem_hci_plap 
+0x64b8 018810 rtn blank 
+0x64b9 018811 jam 1 ,mem_ltk_exists 
+0x64ba 018812 rtn 
+:      018814 find_addr_from_list_compare:
+0x64bb 018815 arg mem_temp_reconn_record ,regb 
+0x64bc 018816 arg 7 ,loopcnt 
+0x64bd 018817 call string_compare 
+0x64be 018818 branch enable_usr ,zero 
+0x64bf 018819 rtn 
+:      018820 enable_usr:
+0x64c0 018821 enable user 
+0x64c1 018822 rtn 
+:      018829 gpio_set_wake_by_current_state:
+0x64c2 018830 set1 mark_ext_patch ,mark 
+0x64c3 018831 bpatch patch32_2 ,mem_patch32 
+0x64c4 018832 set1 7 ,temp 
+0x64c5 018833 call gpio_get_bit 
+0x64c6 018834 nsetflag true ,7 ,temp 
+:      018839 gpio_set_wake:
+0x64c7 018840 set1 mark_ext_patch ,mark 
+0x64c8 018841 bpatch patch32_3 ,mem_patch32 
+0x64c9 018842 isolate0 7 ,temp 
+0x64ca 018843 and temp ,0x1f ,queue 
+0x64cb 018844 fetch 4 ,mem_gpio_wakeup_low 
+0x64cc 018845 qsetflag true ,pdata 
+0x64cd 018846 store 4 ,mem_gpio_wakeup_low 
+0x64ce 018847 fetch 4 ,mem_gpio_wakeup_high 
+0x64cf 018848 nqsetflag true ,pdata 
+0x64d0 018849 store 4 ,mem_gpio_wakeup_high 
+0x64d1 018850 rtn 
+:      018853 gpio_clr_wake:
+0x64d2 018854 set1 mark_ext_patch ,mark 
+0x64d3 018855 bpatch patch32_4 ,mem_patch32 
+0x64d4 018856 isolate0 7 ,temp 
+0x64d5 018857 and temp ,0x1f ,queue 
+0x64d6 018858 fetch 4 ,mem_gpio_wakeup_low 
+0x64d7 018859 qset0 pdata 
+0x64d8 018860 store 4 ,mem_gpio_wakeup_low 
+0x64d9 018861 fetch 4 ,mem_gpio_wakeup_high 
+0x64da 018862 qset0 pdata 
+0x64db 018863 store 4 ,mem_gpio_wakeup_high 
+0x64dc 018864 rtn 
+:      018867 gpio_config_input_nowake:
+0x64dd 018868 call gpio_clr_wake 
+0x64de 018869 branch gpio_config_input_without_wake 
+:      018872 gpio_config_input:
+0x64df 018873 ncall gpio_set_wake ,wake 
+:      018875 gpio_config_input_without_wake:
+0x64e0 018876 arg core_gpio_pd0 ,contw 
+0x64e1 018877 call gpio_set_bit 
+0x64e2 018878 setflip gpio_active_bit ,temp 
+0x64e3 018879 arg core_gpio_pu0 ,contw 
+0x64e4 018880 call gpio_set_bit 
+0x64e5 018881 set0 gpio_active_bit ,temp 
+0x64e6 018882 arg core_gpio_oe0 ,contw 
+0x64e7 018883 branch gpio_set_bit 
+:      018886 gpio_config_output:
+0x64e8 018887 setflip gpio_active_bit ,temp 
+0x64e9 018888 call gpio_out 
+:      018889 gpio_config_output0:
+0x64ea 018890 set1 gpio_active_bit ,temp 
+0x64eb 018891 arg core_gpio_oe0 ,contw 
+0x64ec 018892 branch gpio_set_bit 
+:      018894 gpio_common:
+0x64ed 018895 and temp ,0x07 ,queue 
+0x64ee 018896 rshift3 temp ,pdata 
+0x64ef 018897 and_into 3 ,pdata 
+0x64f0 018898 iadd contw ,contw 
+0x64f1 018899 ifetch 1 ,contw 
+0x64f2 018900 rtn 
+:      018902 gpio_check_active:
+0x64f3 018903 arg core_gpio_out0 ,contw 
+0x64f4 018904 branch get_bit_common 
+:      018908 gpio_get_bit:
+0x64f5 018909 arg core_gpio_in ,contw 
+:      018910 get_bit_common:
+0x64f6 018911 call gpio_common 
+0x64f7 018912 isolate1 gpio_active_bit ,temp 
+0x64f8 018913 branch gpio_get_bit_reverse ,true 
+0x64f9 018914 qisolate0 pdata 
+0x64fa 018915 rtn 
+:      018916 gpio_get_bit_reverse:
+0x64fb 018917 qisolate1 pdata 
+0x64fc 018918 rtn 
+:      018920 gpio_out_inactive:
+0x64fd 018921 isolate1 7 ,null 
+0x64fe 018922 branch gpio_out_flag 
+:      018924 gpio_out_active:
+0x64ff 018925 isolate0 7 ,null 
+:      018928 gpio_out_flag:
+0x6500 018929 setarg 0 
+0x6501 018930 nsetflag true ,gpio_active_bit ,pdata 
+0x6502 018931 ixor temp ,temp 
+:      018934 gpio_out:
+0x6503 018935 arg core_gpio_out0 ,contw 
+:      018938 gpio_set_bit:
+0x6504 018939 call gpio_common 
+0x6505 018940 isolate1 gpio_active_bit ,temp 
+0x6506 018941 qsetflag true ,pdata 
+0x6507 018942 istore 1 ,contw 
+0x6508 018943 rtn 
+:      018945 gpio_set_before_lpm_common:
+0x6509 018946 arg -1 ,rega 
+0x650a 018947 hfetch 1 ,core_gpio_sel1 
+0x650b 018948 isolate1 1 ,pdata 
+0x650c 018949 call neglact4_from_23_pin ,true 
+0x650d 018951 and pdata ,0x3 ,regb 
+0x650e 018952 sub regb ,1 ,null 
+0x650f 018953 call neglact2_form_25_pin ,zero 
+0x6510 018955 isolate1 2 ,pdata 
+0x6511 018956 call neglect2_from_6_pin ,true 
+0x6512 018958 isolate1 3 ,pdata 
+0x6513 018959 call neglect4_from_9_pin ,true 
+0x6514 018961 isolate1 5 ,pdata 
+0x6515 018962 call neglact2_form_27_pin ,true 
+0x6516 018964 isolate1 6 ,pdata 
+0x6517 018965 arg 4 ,queue 
+0x6518 018966 call neglact_1_pin ,true 
+0x6519 018967 nsetflag true ,4 ,rega 
+0x651a 018969 isolate1 7 ,pdata 
+0x651b 018970 arg 5 ,queue 
+0x651c 018971 call neglact_1_pin ,true 
+0x651d 018973 hfetch 1 ,core_gpio_sel2 
+0x651e 018974 isolate1 0 ,pdata 
+0x651f 018975 arg 3 ,queue 
+0x6520 018976 call neglact_1_pin ,true 
+0x6521 018978 hfetcht 1 ,core_gpio_sel 
+0x6522 018979 isolate1 0 ,temp 
+0x6523 018980 arg 5 ,queue 
+0x6524 018981 call neglact_1_pin ,true 
+0x6525 018983 ior temp ,pdata 
+0x6526 018985 isolate1 1 ,pdata 
+0x6527 018986 arg 6 ,queue 
+0x6528 018987 call neglact_1_pin ,true 
+0x6529 018989 isolate1 2 ,pdata 
+0x652a 018990 arg 7 ,queue 
+0x652b 018991 call neglact_1_pin ,true 
+0x652c 018993 isolate1 3 ,pdata 
+0x652d 018994 arg 18 ,queue 
+0x652e 018995 call neglact_1_pin ,true 
+0x652f 018997 isolate1 4 ,pdata 
+0x6530 018998 arg 19 ,queue 
+0x6531 018999 call neglact_1_pin ,true 
+0x6532 019001 isolate1 5 ,pdata 
+0x6533 019002 arg 20 ,queue 
+0x6534 019003 call neglact_1_pin ,true 
+0x6535 019005 isolate1 6 ,pdata 
+0x6536 019006 arg 21 ,queue 
+0x6537 019007 call neglact_1_pin ,true 
+0x6538 019009 isolate1 7 ,pdata 
+0x6539 019010 arg 22 ,queue 
+0x653a 019011 call neglact_1_pin ,true 
+0x653b 019013 hfetch 1 ,core_uart_ctrl 
+0x653c 019014 isolate1 4 ,pdata 
+0x653d 019015 call neglact2_form_2_pin ,true 
+0x653e 019016 set1 mark_ext_patch ,mark 
+0x653f 019017 bpatch patch32_5 ,mem_patch32 
+0x6540 019019 hfetch 4 ,core_gpio_pu0 
+0x6541 019020 hfetcht 4 ,core_gpio_pd0 
+0x6542 019021 ior temp ,pdata 
+0x6543 019022 invert pdata ,pdata 
+0x6544 019023 iand rega ,pdata 
+0x6545 019025 hfetcht 4 ,core_gpio_pd0 
+0x6546 019026 ior temp ,pdata 
+0x6547 019027 hstore 4 ,core_gpio_pd0 
+0x6548 019028 rtn 
+:      019029 neglect2_from_6_pin:
+0x6549 019030 arg 6 ,queue 
+0x654a 019031 branch neglect_2_pin 
+:      019032 neglect4_from_9_pin:
+0x654b 019033 arg 9 ,queue 
+0x654c 019034 branch neglact_4_pin 
+:      019035 neglact4_from_23_pin:
+0x654d 019036 arg 23 ,queue 
+0x654e 019037 branch neglact_4_pin 
+:      019038 neglact2_form_25_pin:
+0x654f 019039 arg 25 ,queue 
+0x6550 019040 branch neglect_2_pin 
+:      019041 neglact2_form_27_pin:
+0x6551 019042 arg 27 ,queue 
+0x6552 019043 branch neglect_2_pin 
+:      019044 neglact2_form_2_pin:
+0x6553 019045 arg 2 ,queue 
+0x6554 019046 branch neglect_2_pin 
+:      019047 neglact_1_pin:
+0x6555 019048 arg 1 ,loopcnt 
+0x6556 019049 branch neglect_pin_loop 
+:      019050 neglact_4_pin:
+0x6557 019051 arg 4 ,loopcnt 
+0x6558 019052 branch neglect_pin_loop 
+:      019053 neglect_2_pin:
+0x6559 019054 arg 2 ,loopcnt 
+:      019055 neglect_pin_loop:
+0x655a 019056 qset0 rega 
+0x655b 019057 increase 1 ,queue 
+0x655c 019058 loop neglect_pin_loop 
+0x655d 019059 rtn 
+:      019067 gpio_cfg_uart_tx_output:
+0x655e 019068 call gpio_uart2gpio 
+0x655f 019069 arg uart_wakeup_tx ,temp 
+0x6560 019070 branch gpio_config_output 
+:      019072 gpio_pu_uart_tx:
+0x6561 019073 call gpio_cfg_uart_tx_output 
+0x6562 019074 arg uart_wakeup_tx ,temp 
+0x6563 019075 branch gpio_out_inactive 
+:      019079 gpio_rx_config_input_with_pu:
+0x6564 019080 call gpio_uart2gpio 
+0x6565 019081 hfetch 1 ,core_gpio_pu0 
+0x6566 019082 set1 uart_wakeup_rx ,pdata 
+0x6567 019083 hstore 1 ,core_gpio_pu0 
+0x6568 019084 arg uart_wakeup_rx ,temp 
+0x6569 019085 branch gpio_config_input 
+:      019087 gpio_uart2gpio:
+0x656a 019088 hfetch 1 ,core_gpio_sel1 
+0x656b 019089 and_into 0xfb ,pdata 
+0x656c 019090 hstore 1 ,core_gpio_sel1 
+0x656d 019091 rtn 
+:      019093 gpio_check_uart_state:
+0x656e 019094 hfetch 1 ,core_gpio_sel1 
+0x656f 019095 isolate1 2 ,pdata 
+0x6570 019096 rtn 
+:      019098 load_chip_option:
+0x6571 019099 call otp_enable_chgpump 
+0x6572 019100 setarg otp_chip_functions 
+0x6573 019101 arg mem_chip_functions ,rega 
+0x6574 019102 arg 0x02 ,temp 
+0x6575 019103 call otpd_read_data 
+0x6576 019104 branch otp_disable_chgpump 
+:      019108 adc_init_data:
+0x6577 019109 set1 mark_ext_patch ,mark 
+0x6578 019110 bpatch patch32_6 ,mem_patch32 
+0x6579 019112 call otp_enable_chgpump 
+0x657a 019113 setarg otp_adc_io_0_5v_addr 
+0x657b 019114 arg mem_0_5_adc_io_data ,rega 
+0x657c 019115 arg 14 ,temp 
+0x657d 019116 call otpd_read_data 
+0x657e 019117 call otp_disable_chgpump 
+0x657f 019119 fetch 1 ,mem_adc_config_flag 
+0x6580 019120 bbit1 adc_config_vinlpm ,adc_init_data_vinlpm 
+0x6581 019121 bbit1 adc_config_hvin ,adc_init_data_hvin 
+0x6582 019122 bbit1 adc_config_gpio ,adc_init_data_io 
+0x6583 019123 rtn 
+:      019125 adc_init_data_vinlpm:
+0x6584 019126 fetcht 2 ,mem_otp_adc_flag 
+0x6585 019127 setarg otp_adc_flag 
+0x6586 019128 isub temp ,null 
+0x6587 019129 branch adc_check_data_vinlpm ,zero 
+0x6588 019130 setarg 0x4dfa 
+0x6589 019131 store 2 ,mem_3v_adc_vinlpm_data 
+0x658a 019132 setarg 0x4894 
+0x658b 019133 store 2 ,mem_2v_adc_vinlpm_data 
+0x658c 019134 branch set_vdd_reference_voltage_1v 
+:      019136 adc_check_data_vinlpm:
+0x658d 019137 fetch 2 ,mem_3v_adc_vinlpm_data 
+0x658e 019138 nbranch adc_check_2v_vinlpm ,blank 
+0x658f 019139 setarg 0x4dfa 
+0x6590 019140 store 2 ,mem_3v_adc_vinlpm_data 
+:      019141 adc_check_2v_vinlpm:
+0x6591 019142 fetch 2 ,mem_2v_adc_vinlpm_data 
+0x6592 019143 nbranch set_vdd_reference_voltage_1v ,blank 
+0x6593 019144 setarg 0x4894 
+0x6594 019145 store 2 ,mem_2v_adc_vinlpm_data 
+:      019146 set_vdd_reference_voltage_1v:
+0x6595 019147 setarg 100 
+0x6596 019148 store 2 ,mem_reference_voltage 
+0x6597 019149 rtn 
+:      019151 adc_init_data_hvin:
+0x6598 019152 fetcht 2 ,mem_otp_adc_flag 
+0x6599 019153 setarg otp_adc_flag 
+0x659a 019154 isub temp ,null 
+0x659b 019155 branch adc_check_data_hvin ,zero 
+0x659c 019156 setarg 0x5932 
+0x659d 019157 store 2 ,mem_5v_adc_hvin_data 
+0x659e 019158 setarg 0x4323 
+0x659f 019159 store 2 ,mem_1v_adc_hvin_data 
+0x65a0 019160 branch set_vdd_reference_voltage_4v 
+:      019162 adc_check_data_hvin:
+0x65a1 019163 fetch 2 ,mem_5v_adc_hvin_data 
+0x65a2 019164 nbranch adc_check_1v_hvin ,blank 
+0x65a3 019165 setarg 0x5932 
+0x65a4 019166 store 2 ,mem_5v_adc_hvin_data 
+:      019167 adc_check_1v_hvin:
+0x65a5 019168 fetch 2 ,mem_1v_adc_hvin_data 
+0x65a6 019169 nbranch set_vdd_reference_voltage_4v ,blank 
+0x65a7 019170 setarg 0x4323 
+0x65a8 019171 store 2 ,mem_1v_adc_hvin_data 
+:      019172 set_vdd_reference_voltage_4v:
+0x65a9 019173 setarg 400 
+0x65aa 019174 store 2 ,mem_reference_voltage 
+0x65ab 019175 rtn 
+:      019177 adc_init_data_io:
+0x65ac 019178 fetcht 2 ,mem_otp_adc_flag 
+0x65ad 019179 setarg otp_adc_flag 
+0x65ae 019180 isub temp ,null 
+0x65af 019181 branch adc_check_data_io ,zero 
+0x65b0 019182 setarg 0x6946 
+0x65b1 019183 store 2 ,mem_1v_adc_io_data 
+0x65b2 019184 setarg 0x5377 
+0x65b3 019185 store 2 ,mem_0_5_adc_io_data 
+0x65b4 019186 branch set_vdd_reference_voltage_0_5v 
+:      019188 adc_check_data_io:
+0x65b5 019189 fetch 2 ,mem_1v_adc_io_data 
+0x65b6 019190 nbranch adc_check_0_5v_io ,blank 
+0x65b7 019191 setarg 0x6946 
+0x65b8 019192 store 2 ,mem_1v_adc_io_data 
+:      019193 adc_check_0_5v_io:
+0x65b9 019194 fetch 2 ,mem_0_5_adc_io_data 
+0x65ba 019195 nbranch set_vdd_reference_voltage_0_5v ,blank 
+0x65bb 019196 setarg 0x5377 
+0x65bc 019197 store 2 ,mem_0_5_adc_io_data 
+:      019198 set_vdd_reference_voltage_0_5v:
+0x65bd 019199 setarg 50 
+0x65be 019200 store 2 ,mem_reference_voltage 
+0x65bf 019201 rtn 
+:      019204 adc_set_mode:
+0x65c0 019205 fetch 1 ,mem_adc_config_flag 
+0x65c1 019206 bbit1 adc_config_vinlpm ,adc_check_vinlpm 
+0x65c2 019207 bbit1 adc_config_hvin ,adc_check_hvin 
+0x65c3 019208 bbit1 adc_config_gpio ,adc_check_gpio 
+0x65c4 019209 rtn 
+:      019210 adc_check_vinlpm:
+0x65c5 019211 hjam 0xbf ,rf_adc_mode 
+0x65c6 019212 branch read_adc 
+:      019213 adc_check_hvin:
+0x65c7 019214 hjam 0xaf ,rf_adc_mode 
+0x65c8 019215 branch read_adc 
+:      019216 adc_check_gpio:
+0x65c9 019217 hjam 0x8f ,rf_adc_mode 
+0x65ca 019218 fetch 1 ,mem_adc_channel 
+0x65cb 019219 hstore 1 ,rf_adc_ch 
+0x65cc 019220 branch read_adc 
+:      019221 read_adc:
+0x65cd 019222 set1 mark_ext_patch ,mark 
+0x65ce 019223 bpatch patch32_7 ,mem_patch32 
+0x65cf 019224 hfetch 1 ,core_uart_baud + 1 
+0x65d0 019225 set1 7 ,pdata 
+0x65d1 019226 hstore 1 ,core_uart_baud + 1 
+0x65d2 019227 hfetch 1 ,rf_adc_ch 
+0x65d3 019228 or_into 0x30 ,pdata 
+0x65d4 019229 hstore 1 ,rf_adc_ch 
+0x65d5 019230 hjam 0x7c ,rfen_adc 
+0x65d6 019231 hjam 0xaa ,rf_adc_gc 
+0x65d7 019232 nop 5000 
+0x65d8 019233 hfetcht 2 ,core_adc_sum 
+0x65d9 019234 hfetch 1 ,core_uart_baud + 1 
+0x65da 019235 set0 7 ,pdata 
+0x65db 019236 hstore 1 ,core_uart_baud + 1 
+0x65dc 019237 storet 2 ,mem_adc_current_value 
+0x65dd 019238 rtn 
+:      019240 vdd_calculate_by_mode:
+0x65de 019241 set1 mark_ext_patch ,mark 
+0x65df 019242 bpatch patch33_0 ,mem_patch33 
+0x65e0 019243 fetch 1 ,mem_adc_config_flag 
+0x65e1 019244 bbit1 adc_config_vinlpm ,vdd_calculate_vinlpm 
+0x65e2 019245 bbit1 adc_config_hvin ,vdd_calculate_hvin 
+0x65e3 019246 bbit1 adc_config_gpio ,vdd_calculate_io 
+0x65e4 019247 rtn 
+:      019249 vdd_calculate_vinlpm:
+0x65e5 019250 fetch 2 ,mem_3v_adc_vinlpm_data 
+0x65e6 019251 fetcht 2 ,mem_2v_adc_vinlpm_data 
+0x65e7 019252 arg 200 ,regc 
+0x65e8 019253 branch vdd_calculate 
+:      019255 vdd_calculate_hvin:
+0x65e9 019256 fetch 2 ,mem_5v_adc_hvin_data 
+0x65ea 019257 fetcht 2 ,mem_1v_adc_hvin_data 
+0x65eb 019258 arg 100 ,regc 
+0x65ec 019259 branch vdd_calculate 
+:      019261 vdd_calculate_io:
+0x65ed 019262 fetch 2 ,mem_1v_adc_io_data 
+0x65ee 019263 fetcht 2 ,mem_0_5_adc_io_data 
+0x65ef 019264 arg 50 ,regc 
+0x65f0 019265 branch vdd_calculate 
+:      019267 vdd_calculate:
+0x65f1 019268 isub temp ,rega 
+0x65f2 019269 fetch 2 ,mem_adc_current_value 
+0x65f3 019270 isub temp ,pdata 
+0x65f4 019271 nbranch vdd_calculate1 ,positive 
+0x65f5 019272 fetcht 2 ,mem_reference_voltage 
+0x65f6 019273 imul32 temp ,regb 
+0x65f7 019274 copy regc ,pdata 
+0x65f8 019275 imul32 rega ,pdata 
+0x65f9 019276 iadd regb ,pdata 
+:      019277 vdd_calculate2:
+0x65fa 019278 idiv rega 
+0x65fb 019279 call wait_div_end 
+0x65fc 019280 quotient pdata 
+0x65fd 019281 rtn 
+:      019283 vdd_calculate1:
+0x65fe 019284 copy temp ,pdata 
+0x65ff 019285 fetcht 2 ,mem_adc_current_value 
+0x6600 019286 isub temp ,pdata 
+0x6601 019287 fetcht 2 ,mem_reference_voltage 
+0x6602 019288 imul32 temp ,regb 
+0x6603 019289 copy regc ,pdata 
+0x6604 019290 imul32 rega ,pdata 
+0x6605 019291 isub regb ,pdata 
+0x6606 019292 branch vdd_calculate2 
+:      019297 rfcomm_init:
+0x6607 019298 rtn wake 
+0x6608 019299 jam 0 ,mem_rfcomm_send_more_pkt 
+0x6609 019300 jam bits9600 ,memremoterpnbitrate 
+0x660a 019301 jam databits8 ,memremoteprndatabits 
+0x660b 019302 jam 0x11 ,memremoteprnxon 
+0x660c 019303 jam 0x13 ,memremoteprnxoff 
+0x660d 019304 setarg 0 
+0x660e 019305 store 3 ,memremoteprnstopbit 
+0x660f 019306 store 1 ,mem_spp_state 
+0x6610 019307 jam 0 ,memui_reconnect_mode 
+:      019309 rfcomm_init_spp:
+0x6611 019310 set1 mark_ext_patch ,mark 
+0x6612 019311 bpatch patch33_1 ,mem_patch33 
+0x6613 019312 setarg 0 
+0x6614 019313 store 1 ,mem_spp_state 
+0x6615 019314 store 1 ,mem_remote_spp_channel 
+0x6616 019315 store 1 ,mem_pn_dlci 
+0x6617 019316 fetch 1 ,mem_credit_flag 
+0x6618 019317 beq credit_enable ,rfcomm_init_spp_with_credit 
+0x6619 019318 jam 0x50 ,mem_credit_given 
+0x661a 019319 rtn 
+:      019321 rfcomm_init_spp_with_credit:
+0x661b 019322 jam 0x00 ,mem_credit_given 
+0x661c 019323 rtn 
+:      019325 set_cr_bit:
+0x661d 019326 or_into 0x02 ,temp 
+0x661e 019327 rtn 
+:      019339 rfcomm_calculate_fcs_sabm:
+0x661f 019340 copy temp ,pdata 
+0x6620 019341 reverse pdata ,pdata 
+0x6621 019342 store 1 ,memfcstemp3 
+0x6622 019343 force ini_tx_sabm ,pdata 
+0x6623 019344 reverse pdata ,pdata 
+0x6624 019345 store 1 ,memfcstemp2 
+0x6625 019346 force 0x01 ,pdata 
+0x6626 019347 reverse pdata ,pdata 
+0x6627 019348 store 1 ,memfcstemp1 
+0x6628 019349 call caculate_fcs 
+0x6629 019350 copy temp ,pdata 
+0x662a 019351 rtn 
+:      019352 rfcomm_calculate_fcs_ua:
+0x662b 019353 reverse pdata ,pdata 
+0x662c 019354 store 1 ,memfcstemp3 
+0x662d 019355 force rsp_tx_ua ,pdata 
+0x662e 019356 reverse pdata ,pdata 
+0x662f 019357 store 1 ,memfcstemp2 
+0x6630 019358 force 0x01 ,pdata 
+0x6631 019359 reverse pdata ,pdata 
+0x6632 019360 store 1 ,memfcstemp1 
+0x6633 019361 branch caculate_fcs 
+:      019363 rfcomm_calculate_fcs_dlci0:
+0x6634 019364 fetch 1 ,mem_rfcomm_initiator 
+0x6635 019365 branch rfcomm_calculate_fcs_dlci0_res ,blank 
+0x6636 019366 setarg 0x70 
+0x6637 019367 rtn 
+:      019368 rfcomm_calculate_fcs_dlci0_res:
+0x6638 019369 setarg 0xaa 
+0x6639 019370 rtn 
+:      019372 rfcomm_save_fcs_uih:
+0x663a 019373 reverse pdata ,pdata 
+0x663b 019374 store 1 ,memfcstemp3 
+0x663c 019375 force rsp_rx_uih ,pdata 
+0x663d 019376 call caculate_uihdata_fcs 
+0x663e 019377 fetcht 2 ,mem_contw_temp 
+0x663f 019378 copy temp ,contw 
+0x6640 019379 istore 1 ,contw 
+0x6641 019380 copy contw ,temp 
+0x6642 019381 storet 2 ,mem_contw_temp 
+0x6643 019382 force rsp_rx_uih_wdata ,pdata 
+0x6644 019383 call caculate_uihdata_fcs 
+0x6645 019384 fetcht 2 ,mem_contw_temp 
+0x6646 019385 copy temp ,contw 
+0x6647 019386 istore 1 ,contw 
+0x6648 019387 rtn 
+:      019396 caculate_uihdata_fcs:
+0x6649 019397 reverse pdata ,pdata 
+0x664a 019398 store 1 ,memfcstemp2 
+0x664b 019399 fetch 2 ,memfcstemp2 
+0x664c 019400 lshift8 pdata ,pdata 
+0x664d 019401 store 3 ,mem_mod2div_temp 
+0x664e 019402 arg 0x107 ,rega 
+0x664f 019403 arg 0xf ,regb 
+0x6650 019404 call mod2div 
+0x6651 019405 xor_into 0xd7 ,pdata 
+0x6652 019406 invert pdata ,pdata 
+0x6653 019407 reverse pdata ,pdata 
+0x6654 019408 rtn 
+:      019418 caculate_fcs:
+0x6655 019419 fetch 3 ,memfcstemp1 
+0x6656 019420 store 3 ,mem_mod2div_temp 
+0x6657 019421 arg 0x107 ,rega 
+0x6658 019422 arg 0xf ,regb 
+0x6659 019423 call mod2div 
+0x665a 019424 lshift8 pdata ,pdata 
+0x665b 019425 arg 0x7 ,regb 
+0x665c 019426 call mod2div 
+0x665d 019427 xor_into 0x2b ,pdata 
+0x665e 019428 invert pdata ,pdata 
+0x665f 019429 reverse pdata ,pdata 
+0x6660 019430 copy pdata ,temp 
+0x6661 019431 rtn 
+:      019433 mod2div:
+0x6662 019434 arg 0 ,regc 
+0x6663 019435 copy regb ,loopcnt 
+0x6664 019436 call right_shift_n 
+0x6665 019437 icopy temp 
+:      019438 mod2div_loop:
+0x6666 019443 copy temp ,pdata 
+0x6667 019444 lshift regc ,regc 
+0x6668 019445 bbit0 8 ,mod2div_not_enough_reduction 
+0x6669 019446 ixor rega ,temp 
+0x666a 019447 increase 1 ,regc 
+:      019448 mod2div_not_enough_reduction:
+0x666b 019449 lshift temp ,temp 
+0x666c 019450 fetch 3 ,mem_mod2div_temp 
+0x666d 019451 increase -1 ,regb 
+0x666e 019452 compare 0xff ,regb ,0xff 
+0x666f 019453 branch mod2div_end ,true 
+0x6670 019454 copy regb ,loopcnt 
+0x6671 019455 call right_shift_n 
+0x6672 019456 isolate1 0 ,pdata 
+0x6673 019457 setflag true ,0 ,temp 
+0x6674 019458 branch mod2div_loop 
+:      019459 mod2div_end:
+0x6675 019461 rshift temp ,pdata 
+0x6676 019462 rtn 
+:      019464 get_rfcomm_snd_adss:
+0x6677 019465 fetcht 1 ,mem_pn_dlci 
+:      019466 dlci_to_address_cmd:
+0x6678 019468 lshift2 temp ,temp 
+0x6679 019469 set1 rfcomm_address_ext_len ,temp 
+0x667a 019470 fetch 1 ,mem_rfcomm_initiator 
+0x667b 019471 ncall set_cr_bit ,blank 
+0x667c 019472 storet 1 ,mem_rfcomm_send_adss 
+0x667d 019473 rtn 
+:      019475 channel_to_dlci:
+0x667e 019477 lshift temp ,temp 
+0x667f 019478 fetch 1 ,mem_rfcomm_initiator 
+0x6680 019479 setflag blank ,0 ,temp 
+0x6681 019481 rtn 
+:      019482 rfcomm_rx_process_dlci0_sabm:
+0x6682 019483 fetcht 1 ,mem_current_channel 
+0x6683 019484 jam 0xd7 ,mem_current_fcs 
+0x6684 019485 call rfcomm_send_ua 
+0x6685 019486 fetch 1 ,mem_rfcomm_state 
+0x6686 019487 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+0x6687 019488 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+0x6688 019489 store 1 ,mem_rfcomm_state 
+0x6689 019490 jam 0 ,mem_rfcomm_initiator 
+0x668a 019491 branch rfcomm_rx_process_end 
+:      019492 rfcomm_rx_process_dlci0_ua:
+0x668b 019493 fetch 1 ,mem_rfcomm_state 
+0x668c 019494 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+0x668d 019495 store 1 ,mem_rfcomm_state 
+0x668e 019496 branch rfcomm_rx_process_end 
+:      019499 rfcomm_rx_process:
+0x668f 019500 set1 mark_ext_patch ,mark 
+0x6690 019501 bpatch patch33_2 ,mem_patch33 
+0x6691 019502 fetch 1 ,memui_reconnect_mode 
+0x6692 019503 beq no_reconnection ,rfcomm_rx_process_remote_page 
+0x6693 019504 branch rfcomm_rx_process_reconn 
+:      019506 rfcomm_rx_process_remote_page:
+0x6694 019507 fetch 2 ,mem_l2cap_payload_ptr 
+0x6695 019508 copy pdata ,contr 
+0x6696 019509 call get_rfcomm_head_struct 
+0x6697 019510 fetch 1 ,mem_current_channel 
+0x6698 019511 beq 0 ,parse_dlci0_rp 
+0x6699 019512 branch parse_uih_rp 
+:      019513 parse_dlci0_rp:
+0x669a 019514 set1 mark_ext_patch ,mark 
+0x669b 019515 bpatch patch33_3 ,mem_patch33 
+0x669c 019516 fetch 1 ,mem_current_frame_type 
+0x669d 019517 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+0x669e 019518 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+0x669f 019519 beq rfcomm_frame_type_uih ,parse_dlci0_rp_uih 
+0x66a0 019520 beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn_send_event 
+0x66a1 019521 rtn 
+:      019524 parse_dlci0_rp_uih:
+0x66a2 019525 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x66a3 019526 copy pdata ,contr 
+0x66a4 019527 call get_rfcomm_uih_head_struct 
+0x66a5 019528 fetch 1 ,mem_uih_cmd_type 
+0x66a6 019529 beq uih_param_neg_cmd ,parse_dlci0_rp_uih_pn_cmd 
+0x66a7 019530 beq uih_param_neg_res ,parse_dlci0_rp_uih_pn_res 
+0x66a8 019531 beq uih_modem_status_cmd ,parse_dlci0_rp_uih_ms_cmd 
+0x66a9 019532 beq uih_modem_status_res ,parse_dlci0_rp_uih_ms_res 
+0x66aa 019533 beq uih_param_cmd_remove_port ,parse_dlci0_rp_uih_cmd_port 
+0x66ab 019534 branch rfcomm_rx_process_end 
+:      019536 parse_dlci0_rp_uih_pn_cmd:
+0x66ac 019537 call parse_dlci0_rp_uih_pn_res_common 
+0x66ad 019539 branch parse_dlci0_rp_uih_pn_cmd_spp 
+:      019541 parse_dlci0_rp_uih_pn_cmd_spp:
+0x66ae 019542 fetch 1 ,mem_spp_state 
+0x66af 019543 set1 rfcomm_channel_state_pn_cmd ,pdata 
+0x66b0 019544 set1 rfcomm_channel_state_pn_res ,pdata 
+0x66b1 019545 store 1 ,mem_spp_state 
+0x66b2 019546 call rfcomm_send_param_neg_res 
+0x66b3 019547 branch rfcomm_rx_process_end 
+:      019549 parse_dlci0_rp_uih_pn_res:
+0x66b4 019550 call parse_dlci0_rp_uih_pn_res_common 
+0x66b5 019551 branch rfcomm_rx_process_end 
+:      019553 parse_dlci0_rp_uih_pn_res_common:
+0x66b6 019554 call get_param_payload_ptr 
+0x66b7 019555 branch get_rfcomm_prarmer_negotiation 
+:      019557 get_rfcomm_param_modem_status:
+0x66b8 019558 call get_param_payload_ptr 
+0x66b9 019559 ifetch 1 ,contr 
+0x66ba 019560 rshift3 pdata ,pdata 
+0x66bb 019561 store 1 ,mem_ms_channel 
+0x66bc 019562 ifetch 1 ,contr 
+0x66bd 019563 store 1 ,mem_ms_param 
+0x66be 019564 rtn 
+:      019567 get_rfcomm_head_struct:
+0x66bf 019568 ifetch 1 ,contr 
+0x66c0 019569 store 1 ,mem_current_adss 
+0x66c1 019570 rshift3 pdata ,pdata 
+0x66c2 019571 store 1 ,mem_current_channel 
+0x66c3 019572 ifetch 1 ,contr 
+0x66c4 019573 store 1 ,mem_current_frame_type 
+:      019574 get_rfcomm_current_length:
+0x66c5 019575 call get_rfcomm_length_common 
+0x66c6 019576 storet 2 ,mem_current_length 
+0x66c7 019577 copy contr ,pdata 
+0x66c8 019578 store 2 ,mem_rfcomm_uih_payload_ptr 
+0x66c9 019579 rtn 
+:      019581 get_rfcomm_uih_head_struct:
+0x66ca 019582 ifetch 1 ,contr 
+0x66cb 019583 rshift pdata ,pdata 
+0x66cc 019584 store 1 ,mem_uih_cmd_type 
+0x66cd 019585 call get_rfcomm_length_common 
+0x66ce 019586 storet 2 ,mem_uih_length 
+0x66cf 019587 copy contr ,pdata 
+0x66d0 019588 store 2 ,mem_param_payload_ptr 
+0x66d1 019589 rtn 
+:      019592 get_param_payload_ptr:
+0x66d2 019593 fetch 2 ,mem_param_payload_ptr 
+0x66d3 019594 copy pdata ,contr 
+0x66d4 019595 rtn 
+:      019597 get_rfcomm_length_common:
+0x66d5 019598 ifetch 1 ,contr 
+0x66d6 019599 copy pdata ,temp 
+0x66d7 019600 rshift temp ,temp 
+0x66d8 019601 rtnbit1 0 
+0x66d9 019602 ifetch 1 ,contr 
+0x66da 019603 lshift3 pdata ,pdata 
+0x66db 019604 lshift4 pdata ,pdata 
+0x66dc 019605 iadd temp ,temp 
+0x66dd 019606 rtn 
+:      019608 get_rfcomm_prarmer_negotiation:
+0x66de 019609 ifetch 1 ,contr 
+0x66df 019610 store 1 ,mem_pn_dlci 
+0x66e0 019611 ifetch 1 ,contr 
+0x66e1 019612 store 1 ,mem_pn_credit_flow_type_info 
+0x66e2 019613 ifetch 1 ,contr 
+0x66e3 019614 store 1 ,mem_pn_priority 
+0x66e4 019615 ifetch 1 ,contr 
+0x66e5 019616 store 1 ,mem_pn_acknowledg_timer 
+0x66e6 019617 ifetch 2 ,contr 
+0x66e7 019618 store 2 ,mem_pn_max_frame_size 
+0x66e8 019619 ifetch 1 ,contr 
+0x66e9 019620 store 1 ,mem_pn_max_retrans 
+0x66ea 019621 ifetch 1 ,contr 
+0x66eb 019622 store 1 ,mem_remote_credits 
+0x66ec 019623 rtn 
+:      019626 parse_dlci0_rp_uih_ms_cmd:
+0x66ed 019627 call get_rfcomm_param_modem_status 
+0x66ee 019629 branch parse_dlci0_rp_uih_ms_cmd_spp 
+:      019631 parse_dlci0_rp_uih_ms_cmd_spp:
+0x66ef 019632 fetch 1 ,mem_spp_state 
+0x66f0 019633 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+0x66f1 019634 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+0x66f2 019635 store 1 ,mem_spp_state 
+0x66f3 019636 fetcht 1 ,mem_pn_dlci 
+0x66f4 019637 lshift2 temp ,temp 
+0x66f5 019638 or_into 3 ,temp 
+0x66f6 019639 call rfcomm_send_modem_status_res 
+0x66f7 019640 jam more_pkt_msc_cmd_spp ,mem_rfcomm_send_more_pkt 
+0x66f8 019641 branch rfcomm_rx_process_end 
+:      019643 parse_dlci0_rp_uih_ms_res:
+0x66f9 019644 jam bt_evt_spp_connected ,mem_fifo_temp 
+0x66fa 019645 call ui_ipc_send_event 
+0x66fb 019646 call get_rfcomm_param_modem_status 
+0x66fc 019647 fetch 1 ,mem_ms_channel 
+0x66fd 019648 sub pdata ,1 ,null 
+0x66fe 019649 branch parse_dlci0_rp_uih_ms_res_spp ,zero 
+0x66ff 019650 branch assert 
+:      019651 parse_dlci0_rp_uih_ms_res_spp:
+0x6700 019652 fetch 1 ,mem_spp_state 
+0x6701 019653 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+0x6702 019654 store 1 ,mem_spp_state 
+0x6703 019655 branch rfcomm_rx_process_end 
+:      019657 parse_dlci0_rp_uih_cmd_port:
+0x6704 019658 call get_param_payload_ptr 
+0x6705 019659 ifetch 1 ,contr 
+0x6706 019660 store 1 ,mem_rpn_dlci 
+0x6707 019661 call l2cap_malloc_rfcomm_channel 
+0x6708 019662 call l2cap_get_rfcomm_tx_buff 
+0x6709 019663 setarg 0x000e 
+0x670a 019664 istore 2 ,contw 
+0x670b 019665 fetch 2 ,mem_rfcomm_remote_cid 
+0x670c 019666 istore 2 ,contw 
+0x670d 019667 fetch 1 ,mem_rfcomm_initiator 
+0x670e 019669 lshift pdata ,pdata 
+0x670f 019670 set1 0 ,pdata 
+0x6710 019671 istore 1 ,contw 
+0x6711 019672 set1 mark_ext_patch ,mark 
+0x6712 019673 bpatch patch33_4 ,mem_patch33 
+0x6713 019674 setarg 0x15ef 
+0x6714 019675 istore 2 ,contw 
+0x6715 019676 setarg 0x1191 
+0x6716 019677 istore 2 ,contw 
+0x6717 019680 fetch 1 ,mem_rpn_dlci 
+0x6718 019681 istore 1 ,contw 
+0x6719 019682 setarg 0x000007 
+0x671a 019683 istore 5 ,contw 
+0x671b 019686 setarg 0x01 
+0x671c 019687 istore 2 ,contw 
+0x671d 019690 call rfcomm_calculate_fcs_dlci0 
+0x671e 019691 istore 1 ,contw 
+0x671f 019692 rtn 
+:      019696 parse_uih_rp:
+0x6720 019697 branch parse_uih_rp_spp 
+:      019699 parse_uih_rp_spp:
+0x6721 019700 set1 mark_ext_patch ,mark 
+0x6722 019701 bpatch patch33_5 ,mem_patch33 
+0x6723 019702 fetch 1 ,mem_current_frame_type 
+0x6724 019703 beq rfcomm_frame_type_ua ,parse_uih_rp_spp_ua 
+0x6725 019704 beq rfcomm_frame_type_sabm ,parse_uih_rp_spp_sabm 
+0x6726 019705 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+0x6727 019706 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+0x6728 019707 beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn 
+0x6729 019708 rtn 
+:      019709 parse_uih_rp_spp_ua:
+0x672a 019710 fetch 1 ,mem_spp_state 
+0x672b 019711 set1 rfcomm_channel_state_ua ,pdata 
+0x672c 019712 store 1 ,mem_spp_state 
+0x672d 019713 branch rfcomm_rx_process_end 
+:      019714 parse_uih_rp_spp_sabm:
+0x672e 019715 fetch 1 ,mem_spp_state 
+0x672f 019716 set1 rfcomm_channel_state_ua ,pdata 
+0x6730 019717 set1 rfcomm_channel_state_sabm ,pdata 
+0x6731 019718 store 1 ,mem_spp_state 
+0x6732 019719 fetch 1 ,mem_current_adss 
+0x6733 019720 call rfcomm_calculate_fcs_ua 
+0x6734 019721 store 1 ,mem_current_fcs 
+0x6735 019722 call rfcomm_send_ua 
+0x6736 019723 fetch 1 ,mem_current_adss 
+0x6737 019724 rshift2 pdata ,pdata 
+0x6738 019725 store 1 ,mem_pn_dlci 
+0x6739 019726 lshift2 pdata ,pdata 
+0x673a 019727 set0 rfcomm_address_cr ,pdata 
+0x673b 019728 set1 rfcomm_address_ext_len ,pdata 
+0x673c 019729 arg mem_hiufcs_spp ,temp 
+0x673d 019730 storet 2 ,mem_contw_temp 
+0x673e 019731 call rfcomm_save_fcs_uih 
+0x673f 019732 branch rfcomm_rx_process_end 
+:      019734 parse_uih_spp_uih_credits:
+0x6740 019735 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6741 019736 copy pdata ,contr 
+0x6742 019737 increase 1 ,pdata 
+0x6743 019738 store 2 ,mem_rfcomm_uih_payload_ptr 
+0x6744 019739 ifetch 1 ,contr 
+0x6745 019740 fetcht 1 ,mem_remote_credits 
+0x6746 019741 iadd temp ,pdata 
+0x6747 019742 store 1 ,mem_remote_credits 
+:      019743 parse_uih_spp_uih:
+0x6748 019744 call rfcomm_increase_credit_given 
+:      019745 parse_uih_spp_uih_cont:
+0x6749 019746 call get_rfcomm_snd_adss 
+0x674a 019747 call rfcomm_send_uih_without_payload 
+0x674b 019748 call spp_process_rx_data 
+0x674c 019749 branch rfcomm_rx_process_end 
+:      019751 parse_uih_rp_spp_disconn_send_event:
+0x674d 019752 jam bt_evt_spp_disconnected ,mem_fifo_temp 
+0x674e 019753 call ui_ipc_send_event 
+:      019754 parse_uih_rp_spp_disconn:
+0x674f 019755 call rfcomm_init_spp 
+0x6750 019756 fetch 1 ,mem_current_adss 
+0x6751 019757 call rfcomm_calculate_fcs_ua 
+0x6752 019758 store 1 ,mem_current_fcs 
+0x6753 019759 call rfcomm_send_ua 
+0x6754 019760 branch rfcomm_rx_process_end 
+:      019765 rfcomm_rx_process_reconn:
+0x6755 019766 fetch 2 ,mem_l2cap_payload_ptr 
+0x6756 019767 copy pdata ,contr 
+0x6757 019768 call get_rfcomm_head_struct 
+0x6758 019769 fetch 1 ,mem_current_channel 
+0x6759 019770 beq 0 ,parse_dlci0_reconn 
+0x675a 019771 branch parse_uih_reconn 
+:      019773 parse_dlci0_reconn:
+0x675b 019774 set1 mark_ext_patch ,mark 
+0x675c 019775 bpatch patch33_6 ,mem_patch33 
+0x675d 019776 fetch 1 ,mem_current_frame_type 
+0x675e 019777 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+0x675f 019778 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+0x6760 019779 beq rfcomm_frame_type_uih ,parse_dlci0_reconn_uih 
+0x6761 019780 branch rfcomm_rx_process_end 
+:      019781 parse_dlci0_reconn_uih:
+0x6762 019782 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6763 019783 copy pdata ,contr 
+0x6764 019784 call get_rfcomm_uih_head_struct 
+0x6765 019785 fetch 1 ,mem_uih_cmd_type 
+0x6766 019786 beq uih_param_neg_cmd ,parse_dlci0_reconn_uih_pn_cmd 
+0x6767 019787 beq uih_param_neg_res ,parse_dlci0_reconn_uih_pn_cmd 
+0x6768 019788 beq uih_modem_status_cmd ,parse_dlci0_reconn_uih_ms_cmd 
+0x6769 019789 beq uih_modem_status_res ,parse_dlci0_reconn_uih_ms_res 
+0x676a 019790 branch rfcomm_rx_process_end 
+:      019792 parse_dlci0_reconn_uih_pn_cmd:
+0x676b 019793 call parse_dlci0_rp_uih_pn_res_common 
+0x676c 019794 fetch 1 ,mem_pn_dlci 
+0x676d 019795 rshift pdata ,pdata 
+0x676e 019796 fetcht 1 ,mem_remote_spp_channel 
+0x676f 019797 isub temp ,null 
+0x6770 019798 branch parse_dlci0_reconn_uih_pn_cmd_spp ,zero 
+0x6771 019799 branch assert 
+:      019800 parse_dlci0_reconn_uih_pn_cmd_spp:
+0x6772 019801 fetch 1 ,mem_spp_state 
+0x6773 019802 set1 rfcomm_channel_state_pn_res ,pdata 
+0x6774 019803 store 1 ,mem_spp_state 
+0x6775 019804 branch rfcomm_rx_process_end 
+:      019806 parse_dlci0_reconn_uih_ms_cmd:
+0x6776 019807 call get_rfcomm_param_modem_status 
+0x6777 019808 fetch 1 ,mem_ms_channel 
+0x6778 019809 fetcht 1 ,mem_remote_spp_channel 
+0x6779 019810 isub temp ,null 
+0x677a 019811 branch parse_dlci0_reconn_uih_ms_cmd_spp ,zero 
+0x677b 019812 branch assert 
+0x677c 019813 branch rfcomm_rx_process_end 
+:      019814 parse_dlci0_reconn_uih_ms_cmd_spp:
+0x677d 019815 fetch 1 ,mem_spp_state 
+0x677e 019816 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+0x677f 019817 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+0x6780 019818 store 1 ,mem_spp_state 
+0x6781 019819 fetcht 1 ,mem_pn_dlci 
+0x6782 019820 lshift2 temp ,temp 
+0x6783 019821 or_into 3 ,temp 
+0x6784 019822 call rfcomm_send_modem_status_res 
+0x6785 019823 branch rfcomm_rx_process_end 
+:      019825 parse_dlci0_reconn_uih_ms_res:
+0x6786 019826 call get_rfcomm_param_modem_status 
+0x6787 019827 fetch 1 ,mem_ms_channel 
+0x6788 019828 fetcht 1 ,mem_remote_spp_channel 
+0x6789 019829 isub temp ,null 
+0x678a 019830 branch parse_dlci0_reconn_uih_ms_res_spp ,zero 
+0x678b 019831 branch assert 
+:      019832 parse_dlci0_reconn_uih_ms_res_spp:
+0x678c 019833 fetch 1 ,mem_spp_state 
+0x678d 019834 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+0x678e 019835 store 1 ,mem_spp_state 
+0x678f 019836 branch rfcomm_rx_process_end 
+:      019838 parse_uih_reconn:
+0x6790 019839 fetch 1 ,mem_current_channel 
+0x6791 019840 fetcht 1 ,mem_remote_spp_channel 
+0x6792 019841 isub temp ,null 
+0x6793 019842 branch parse_uih_reconn_spp ,zero 
+0x6794 019843 branch assert 
+0x6795 019844 branch rfcomm_rx_process_end 
+:      019846 parse_uih_reconn_spp:
+0x6796 019847 fetch 1 ,mem_current_frame_type 
+0x6797 019848 beq rfcomm_frame_type_ua ,parse_uih_reconn_spp_ua 
+0x6798 019849 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+0x6799 019850 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+0x679a 019851 beq rfcomm_frame_type_disconn ,parse_uih_reconn_spp_disconn 
+:      019852 parse_uih_reconn_spp_ua:
+0x679b 019853 fetch 1 ,mem_spp_state 
+0x679c 019854 set1 rfcomm_channel_state_ua ,pdata 
+0x679d 019855 store 1 ,mem_spp_state 
+0x679e 019856 branch rfcomm_rx_process_end 
+:      019857 parse_uih_reconn_spp_sabm:
+0x679f 019858 branch parse_uih_reconn_spp_sabm 
+:      019859 parse_uih_reconn_spp_disconn:
+0x67a0 019860 branch parse_uih_rp_spp_disconn 
+:      019861 rfcomm_rx_process_end:
+0x67a1 019862 rtn 
+:      019864 rfcomm_send_more_pkt:
+0x67a2 019865 fetch 1 ,mem_rfcomm_send_more_pkt 
+0x67a3 019866 rtn blank 
+0x67a4 019867 beq more_pkt_msc_cmd_spp ,rfcomm_send_more_pkt_msc_cmd_spp 
+0x67a5 019868 branch assert 
+:      019870 rfcomm_send_more_pkt_msc_cmd_spp:
+0x67a6 019871 jam 0 ,mem_rfcomm_send_more_pkt 
+0x67a7 019872 call l2cap_malloc_rfcomm_channel 
+0x67a8 019873 arg spp_slave_channel ,temp 
+0x67a9 019874 fetcht 1 ,mem_pn_dlci 
+0x67aa 019875 lshift2 temp ,temp 
+:      019876 rfcomm_send_more_pkt_msc_cmd_spp0:
+0x67ab 019877 or_into 0x03 ,temp 
+0x67ac 019878 arg 0xaa ,rega 
+0x67ad 019879 call rfcomm_send_modem_status_cmd 
+0x67ae 019880 call l2cap_get_rfcomm_tx_buff 
+0x67af 019881 copy contw ,contr 
+0x67b0 019882 ifetch 2 ,contr 
+0x67b1 019883 branch assert ,blank 
+0x67b2 019884 rtn 
+:      019886 rfcomm_send_sabm:
+0x67b3 019887 call l2cap_get_rfcomm_tx_buff 
+0x67b4 019888 setarg 0x0004 
+0x67b5 019889 istore 2 ,contw 
+0x67b6 019890 fetch 2 ,mem_rfcomm_remote_cid 
+0x67b7 019891 istore 2 ,contw 
+0x67b8 019892 fetch 1 ,mem_current_adss 
+0x67b9 019893 istore 1 ,contw 
+0x67ba 019894 set1 mark_ext_patch ,mark 
+0x67bb 019895 bpatch patch33_7 ,mem_patch33 
+0x67bc 019896 setarg 0x013f 
+0x67bd 019897 istore 2 ,contw 
+0x67be 019898 fetch 1 ,mem_current_fcs 
+0x67bf 019899 istore 1 ,contw 
+0x67c0 019900 rtn 
+:      019901 rfcomm_send_ua:
+0x67c1 019902 call l2cap_malloc_rfcomm_channel 
+0x67c2 019903 call l2cap_get_rfcomm_tx_buff 
+0x67c3 019904 setarg 0x0004 
+0x67c4 019905 istore 2 ,contw 
+0x67c5 019906 fetch 2 ,mem_rfcomm_remote_cid 
+0x67c6 019907 istore 2 ,contw 
+0x67c7 019908 fetch 1 ,mem_current_adss 
+0x67c8 019909 istore 1 ,contw 
+0x67c9 019910 set1 mark_ext_patch ,mark 
+0x67ca 019911 bpatch patch34_0 ,mem_patch34 
+0x67cb 019912 setarg 0x0173 
+0x67cc 019913 istore 2 ,contw 
+0x67cd 019914 fetch 1 ,mem_current_fcs 
+0x67ce 019915 istore 1 ,contw 
+0x67cf 019916 rtn 
+:      019917 rfcomm_send_param_neg_cmd:
+0x67d0 019918 call l2cap_get_rfcomm_tx_buff 
+0x67d1 019919 setarg 0x000e 
+0x67d2 019920 istore 2 ,contw 
+0x67d3 019921 fetch 2 ,mem_rfcomm_remote_cid 
+0x67d4 019922 istore 2 ,contw 
+0x67d5 019923 fetch 1 ,mem_rfcomm_initiator 
+0x67d6 019924 lshift pdata ,pdata 
+0x67d7 019925 set1 0 ,pdata 
+0x67d8 019926 istore 1 ,contw 
+0x67d9 019927 set1 mark_ext_patch ,mark 
+0x67da 019928 bpatch patch34_1 ,mem_patch34 
+0x67db 019929 setarg 0x15ef 
+0x67dc 019930 istore 2 ,contw 
+0x67dd 019931 setarg 0x1183 
+0x67de 019932 istore 2 ,contw 
+0x67df 019933 copy temp ,pdata 
+0x67e0 019934 istore 1 ,contw 
+0x67e1 019935 setarg 0x0000f0 
+0x67e2 019936 istore 3 ,contw 
+0x67e3 019937 setarg rfcomm_max_frame_size 
+0x67e4 019938 istore 2 ,contw 
+0x67e5 019939 setarg 0 
+0x67e6 019940 istore 1 ,contw 
+0x67e7 019941 setarg 0x01 
+0x67e8 019942 istore 1 ,contw 
+0x67e9 019943 call rfcomm_calculate_fcs_dlci0 
+0x67ea 019944 istore 1 ,contw 
+0x67eb 019945 jam 0x10 ,mem_credit_given 
+0x67ec 019946 rtn 
+:      019947 rfcomm_send_param_neg_res:
+0x67ed 019948 call l2cap_malloc_rfcomm_channel 
+0x67ee 019949 call l2cap_get_rfcomm_tx_buff 
+0x67ef 019950 setarg 0x000e 
+0x67f0 019951 istore 2 ,contw 
+0x67f1 019952 fetch 2 ,mem_rfcomm_remote_cid 
+0x67f2 019953 istore 2 ,contw 
+0x67f3 019954 fetch 1 ,mem_rfcomm_initiator 
+0x67f4 019955 lshift pdata ,pdata 
+0x67f5 019956 set1 0 ,pdata 
+0x67f6 019957 istore 1 ,contw 
+0x67f7 019958 set1 mark_ext_patch ,mark 
+0x67f8 019959 bpatch patch34_2 ,mem_patch34 
+0x67f9 019960 setarg 0x15ef 
+0x67fa 019961 istore 2 ,contw 
+0x67fb 019962 setarg 0x1181 
+0x67fc 019963 istore 2 ,contw 
+0x67fd 019964 fetch 1 ,mem_pn_dlci 
+0x67fe 019965 istore 1 ,contw 
+0x67ff 019966 setarg 0x0000e0 
+0x6800 019967 istore 3 ,contw 
+0x6801 019968 fetch 2 ,mem_rfcomm_max_frame_size 
+0x6802 019969 istore 2 ,contw 
+0x6803 019970 setarg 0x00 
+0x6804 019971 istore 1 ,contw 
+0x6805 019972 fetch 1 ,mem_rfcomm_credit_init_data 
+0x6806 019973 istore 1 ,contw 
+0x6807 019974 call rfcomm_calculate_fcs_dlci0 
+0x6808 019975 istore 1 ,contw 
+0x6809 019976 rtn 
+:      019977 rfcomm_send_modem_status_cmd:
+0x680a 019978 call l2cap_get_rfcomm_tx_buff 
+0x680b 019979 setarg 0x0008 
+0x680c 019980 istore 2 ,contw 
+0x680d 019981 fetch 2 ,mem_rfcomm_remote_cid 
+0x680e 019982 istore 2 ,contw 
+0x680f 019983 fetch 1 ,mem_rfcomm_initiator 
+0x6810 019984 lshift pdata ,pdata 
+0x6811 019985 set1 0 ,pdata 
+0x6812 019986 istore 1 ,contw 
+0x6813 019987 set1 mark_ext_patch ,mark 
+0x6814 019988 bpatch patch34_3 ,mem_patch34 
+0x6815 019989 setarg 0x09ef 
+0x6816 019990 istore 2 ,contw 
+0x6817 019991 setarg 0x05e3 
+0x6818 019992 istore 2 ,contw 
+0x6819 019993 copy temp ,pdata 
+0x681a 019994 istore 1 ,contw 
+0x681b 019995 setarg 0x8d 
+0x681c 019996 istore 1 ,contw 
+0x681d 019997 call rfcomm_calculate_fcs_dlci0 
+0x681e 019998 istore 1 ,contw 
+0x681f 019999 rtn 
+:      020001 rfcomm_send_modem_status_res:
+0x6820 020002 call l2cap_malloc_rfcomm_channel 
+0x6821 020003 call l2cap_get_rfcomm_tx_buff 
+0x6822 020004 setarg 0x0008 
+0x6823 020005 istore 2 ,contw 
+0x6824 020006 fetch 2 ,mem_rfcomm_remote_cid 
+0x6825 020007 istore 2 ,contw 
+0x6826 020008 copy temp ,timeup 
+0x6827 020009 fetch 1 ,mem_rfcomm_initiator 
+0x6828 020010 lshift pdata ,pdata 
+0x6829 020011 set1 0 ,pdata 
+0x682a 020012 istore 1 ,contw 
+0x682b 020013 set1 mark_ext_patch ,mark 
+0x682c 020014 bpatch patch34_4 ,mem_patch34 
+0x682d 020015 setarg 0x09ef 
+0x682e 020016 istore 2 ,contw 
+0x682f 020017 setarg 0x05e1 
+0x6830 020018 istore 2 ,contw 
+0x6831 020019 copy timeup ,pdata 
+0x6832 020020 istore 1 ,contw 
+0x6833 020021 setarg 0x8d 
+0x6834 020022 istore 1 ,contw 
+0x6835 020023 call rfcomm_calculate_fcs_dlci0 
+0x6836 020024 istore 1 ,contw 
+0x6837 020025 rtn 
+:      020027 rfcomm_send_uih_without_payload:
+0x6838 020028 set1 mark_ext_patch ,mark 
+0x6839 020029 bpatch patch34_5 ,mem_patch34 
+0x683a 020030 fetch 1 ,mem_credit_given 
+0x683b 020031 rtn blank 
+0x683c 020032 hfetch 2 ,core_uart_rxitems 
+0x683d 020033 nrtn blank 
+0x683e 020034 copy rega ,pdata 
+0x683f 020035 store 1 ,mem_pdatatemp + 1 
+0x6840 020036 storet 1 ,mem_pdatatemp 
+0x6841 020037 call l2cap_malloc_is_fifo_full 
+0x6842 020038 nrtn blank 
+0x6843 020039 call l2cap_malloc_rfcomm_channel 
+0x6844 020040 call l2cap_get_rfcomm_tx_buff 
+0x6845 020041 setarg 0x05 
+0x6846 020042 istore 2 ,contw 
+0x6847 020043 fetch 2 ,mem_rfcomm_remote_cid 
+0x6848 020044 istore 2 ,contw 
+0x6849 020045 fetch 1 ,mem_rfcomm_send_adss 
+0x684a 020046 istore 1 ,contw 
+0x684b 020047 setarg 0x01ff 
+0x684c 020048 istore 2 ,contw 
+0x684d 020049 fetch 1 ,mem_credit_given 
+0x684e 020050 istore 1 ,contw 
+0x684f 020051 fetch 1 ,mem_hiufcs_spp_wcredits 
+0x6850 020052 istore 1 ,contw 
+0x6851 020053 jam 0 ,mem_credit_given 
+0x6852 020054 rtn 
+:      020056 rfcomm_increase_credit_given:
+0x6853 020057 set1 mark_ext_patch ,mark 
+0x6854 020058 bpatch patch34_6 ,mem_patch34 
+0x6855 020059 fetch 1 ,mem_credit_flag 
+0x6856 020060 rtneq credit_enable 
+0x6857 020061 fetch 2 ,mem_current_length 
+0x6858 020062 rtn blank 
+0x6859 020063 fetch 1 ,mem_credit_given 
+0x685a 020064 increase 1 ,pdata 
+0x685b 020065 store 1 ,mem_credit_given 
+0x685c 020066 rtn 
+:      020068 spp_process_rx_data:
+0x685d 020069 fetch 2 ,mem_cb_receive_spp_data 
+0x685e 020070 branch callback_func 
+:      020072 spp_tx_rfcomm_packet:
+0x685f 020073 set1 mark_ext_patch ,mark 
+0x6860 020074 bpatch patch34_7 ,mem_patch34 
+0x6861 020076 fetch 1 ,mem_remote_credits 
+0x6862 020077 rtn blank 
+0x6863 020078 increase -1 ,pdata 
+0x6864 020079 store 1 ,mem_remote_credits 
+0x6865 020080 fetch 2 ,mem_pn_max_frame_size 
+0x6866 020081 fetcht 2 ,mem_current_packet_length 
+0x6867 020082 isub temp ,null 
+0x6868 020083 branch ssp_tx_rfcomm_from_uart ,positive 
+0x6869 020084 store 2 ,mem_current_packet_length 
+:      020085 ssp_tx_rfcomm_from_uart:
+0x686a 020086 fetch 1 ,mem_credit_given 
+0x686b 020087 branch ssp_tx_rfcomm_from_uart_without_credit ,blank 
+0x686c 020088 jam 1 ,mem_rfcomm_send_offset 
+0x686d 020089 fetch 1 ,mem_hiufcs_spp_wcredits 
+0x686e 020090 store 1 ,mem_rfcomm_send_fcs 
+0x686f 020091 setarg rsp_rx_uih_wdata 
+0x6870 020092 store 1 ,mem_rfcomm_send_frame_type 
+0x6871 020093 branch ssp_tx_rfcomm_from_uart_common 
+:      020094 ssp_tx_rfcomm_from_uart_without_credit:
+0x6872 020095 jam 0 ,mem_rfcomm_send_offset 
+0x6873 020096 fetch 1 ,mem_hiufcs_spp 
+0x6874 020097 store 1 ,mem_rfcomm_send_fcs 
+0x6875 020098 setarg rsp_tx_uih 
+0x6876 020099 store 1 ,mem_rfcomm_send_frame_type 
+:      020100 ssp_tx_rfcomm_from_uart_common:
+0x6877 020101 set1 mark_ext_patch ,mark 
+0x6878 020102 bpatch patch35_0 ,mem_patch35 
+0x6879 020103 fetch 2 ,mem_current_packet_length 
+0x687a 020104 sub pdata ,127 ,null 
+0x687b 020105 branch ssp_tx_rfcomm_from_uart_common0 ,positive 
+0x687c 020106 fetch 1 ,mem_rfcomm_send_offset 
+0x687d 020107 increase 1 ,pdata 
+0x687e 020108 store 1 ,mem_rfcomm_send_offset 
+:      020109 ssp_tx_rfcomm_from_uart_common0:
+0x687f 020110 call get_rfcomm_snd_adss 
+0x6880 020111 fetch 2 ,mem_current_packet_length 
+0x6881 020112 increase 8 ,pdata 
+0x6882 020113 fetcht 1 ,mem_rfcomm_send_offset 
+0x6883 020114 iadd temp ,rega 
+0x6884 020116 call l2cap_malloc 
+0x6885 020117 store 2 ,mem_rfcomm_tx_buff_ptr 
+0x6886 020118 increase 4 ,pdata 
+0x6887 020119 store 2 ,mem_rfcomm_tx_payload_ptr 
+0x6888 020120 copy pdata ,contw 
+0x6889 020121 fetch 1 ,mem_rfcomm_send_adss 
+0x688a 020122 istore 1 ,contw 
+0x688b 020123 fetch 1 ,mem_rfcomm_send_frame_type 
+0x688c 020124 istore 1 ,contw 
+0x688d 020125 call ssp_tx_write_length 
+0x688e 020126 call ssp_tx_write_given_credit 
+0x688f 020127 set1 mark_ext_patch ,mark 
+0x6890 020128 bpatch patch35_1 ,mem_patch35 
+0x6891 020129 fetch 2 ,mem_nl_rx_data_src 
+0x6892 020130 copy pdata ,contru 
+0x6893 020131 fetch 2 ,mem_current_packet_length 
+0x6894 020132 copy pdata ,loopcnt 
+0x6895 020133 call uart_copy_rx_bytes_fast 
+0x6896 020134 copy contw ,temp 
+0x6897 020135 copy contru ,pdata 
+0x6898 020136 store 2 ,mem_nl_rx_data_src 
+0x6899 020137 copy temp ,contw 
+0x689a 020138 fetch 1 ,mem_rfcomm_send_fcs 
+0x689b 020139 istore 1 ,contw 
+0x689c 020140 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+0x689d 020141 copy pdata ,contw 
+0x689e 020142 fetch 2 ,mem_current_packet_length 
+0x689f 020143 fetcht 1 ,mem_rfcomm_send_offset 
+0x68a0 020144 iadd temp ,pdata 
+0x68a1 020145 increase 4 ,pdata 
+0x68a2 020146 istore 2 ,contw 
+0x68a3 020147 fetch 2 ,mem_rfcomm_remote_cid 
+0x68a4 020148 istore 2 ,contw 
+0x68a5 020149 jam 0 ,mem_credit_given 
+0x68a6 020150 fetch 2 ,mem_nl_rx_len_all 
+0x68a7 020151 beq 0 ,module_hci_command_tx_spp_tx_complete 
+0x68a8 020152 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+0x68a9 020153 rtn 
+:      020155 ssp_tx_write_length:
+0x68aa 020156 set1 mark_ext_patch ,mark 
+0x68ab 020157 bpatch patch35_2 ,mem_patch35 
+0x68ac 020158 fetch 2 ,mem_current_packet_length 
+0x68ad 020159 sub pdata ,0x7f ,null 
+0x68ae 020160 nbranch ssp_tx_write_long_packet ,positive 
+0x68af 020161 lshift pdata ,pdata 
+0x68b0 020162 set1 0 ,pdata 
+0x68b1 020163 istore 1 ,contw 
+0x68b2 020164 rtn 
+:      020165 ssp_tx_write_long_packet:
+0x68b3 020166 fetch 2 ,mem_current_packet_length 
+0x68b4 020167 rshift3 pdata ,pdata 
+0x68b5 020168 rshift4 pdata ,temp 
+0x68b6 020169 and_into 0x7f ,pdata 
+0x68b7 020170 lshift pdata ,pdata 
+0x68b8 020171 set0 0 ,pdata 
+0x68b9 020172 istore 1 ,contw 
+0x68ba 020173 istoret 1 ,contw 
+0x68bb 020174 rtn 
+:      020175 ssp_tx_write_given_credit:
+0x68bc 020176 fetch 1 ,mem_credit_given 
+0x68bd 020177 rtn blank 
+0x68be 020178 istore 1 ,contw 
+0x68bf 020179 rtn 
+:      020184 scheduler_process:
+0x68c0 020185 set1 mark_ext_patch ,mark 
+0x68c1 020186 bpatch patch35_3 ,mem_patch35 
+0x68c2 020187 call check_51cmd 
+0x68c3 020188 call app_process_bb_event 
+0x68c4 020189 call process_conn_sm 
+0x68c5 020191 set1 mark_ext_patch ,mark 
+0x68c6 020192 bpatch patch35_4 ,mem_patch35 
+0x68c7 020193 call sp_calc_sequence 
+0x68c8 020194 call simple_pairing_sequence 
+0x68c9 020195 call master_simple_paring_sequence 
+0x68ca 020198 call l2cap_malloc_is_fifo_full 
+0x68cb 020199 nrtn blank 
+0x68cc 020201 call l2cap_call_proc_sigal_pending 
+0x68cd 020202 call l2cap_malloc_is_fifo_full 
+0x68ce 020203 nrtn blank 
+0x68cf 020204 set1 mark_ext_patch ,mark 
+0x68d0 020205 bpatch patch35_5 ,mem_patch35 
+0x68d1 020207 call process_upper_sm 
+0x68d2 020208 call l2cap_send_config_req 
+0x68d3 020209 call rfcomm_send_more_pkt 
+:      020210 scheduler_process0:
+0x68d4 020211 call scheduler_tx_disconnect_hid 
+0x68d5 020212 set1 mark_ext_patch ,mark 
+0x68d6 020213 bpatch patch35_6 ,mem_patch35 
+0x68d7 020216 branch app_process_bt 
+:      020218 scheduler_tx_disconnect_hid:
+0x68d8 020219 fetch 1 ,mem_control_tasks 
+0x68d9 020220 bbit1 l2cap_disconnect_interrupt ,l2cap_disconnect_interrupt_req 
+0x68da 020221 bbit1 l2cap_disconnect_control ,l2cap_disconnect_control_req 
+0x68db 020222 rtn 
+:      020224 scheduler_tx_l2cap_pkt:
+0x68dc 020225 set1 mark_ext_patch ,mark 
+0x68dd 020226 bpatch patch35_7 ,mem_patch35 
+0x68de 020227 call l2cap_malloc_is_fifo_empty 
+0x68df 020228 rtn blank 
+0x68e0 020229 fetch 1 ,mem_op 
+0x68e1 020230 rtnbit1 op_txl2cap 
+0x68e2 020231 call l2cap_malloc_fifo_out 
+0x68e3 020232 store 2 ,mem_txptr 
+0x68e4 020233 copy pdata ,contr 
+0x68e5 020234 ifetch 2 ,contr 
+0x68e6 020235 increase 4 ,pdata 
+0x68e7 020236 store 2 ,mem_tx_len 
+0x68e8 020237 jam 6 ,mem_tx_lch 
+0x68e9 020238 set1 mark_ext_patch ,mark 
+0x68ea 020239 bpatch patch36_0 ,mem_patch36 
+0x68eb 020240 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x68ec 020241 branch scheduler_tx_l2cap_start_pkt ,blank 
+0x68ed 020242 fetch 1 ,mem_op 
+0x68ee 020243 rtnbit0 op_pkt_comp 
+0x68ef 020244 set0 op_pkt_comp ,pdata 
+0x68f0 020245 store 1 ,mem_op 
+0x68f1 020246 jam 5 ,mem_tx_lch 
+0x68f2 020247 fetcht 2 ,mem_l2cap_tx_multi_offset 
+0x68f3 020248 fetch 2 ,mem_txptr 
+0x68f4 020249 iadd temp ,pdata 
+0x68f5 020250 store 2 ,mem_txptr 
+0x68f6 020251 fetch 2 ,mem_tx_len 
+0x68f7 020252 isub temp ,pdata 
+0x68f8 020253 store 2 ,mem_tx_len 
+:      020254 scheduler_tx_l2cap_start_pkt:
+0x68f9 020255 set1 mark_ext_patch ,mark 
+0x68fa 020256 bpatch patch36_1 ,mem_patch36 
+0x68fb 020257 fetch 2 ,mem_tx_len 
+0x68fc 020258 branch assert ,blank 
+0x68fd 020259 arg l2cap_max_pkt_len ,temp 
+0x68fe 020260 isub temp ,pdata 
+0x68ff 020261 nbranch scheduler_tx_l2cap_last_pkt ,positive 
+0x6900 020262 set1 mark_ext_patch ,mark 
+0x6901 020263 bpatch patch36_2 ,mem_patch36 
+0x6902 020264 storet 2 ,mem_tx_len 
+0x6903 020265 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x6904 020266 iadd temp ,pdata 
+0x6905 020267 store 2 ,mem_l2cap_tx_multi_offset 
+0x6906 020268 branch scheduler_tx_l2cap_pkt_end 
+:      020269 scheduler_tx_l2cap_last_pkt:
+0x6907 020270 setarg 0 
+0x6908 020271 store 2 ,mem_l2cap_tx_multi_offset 
+:      020272 scheduler_tx_l2cap_pkt_end:
+0x6909 020273 fetch 1 ,mem_op 
+0x690a 020274 set1 op_txl2cap ,pdata 
+0x690b 020275 store 1 ,mem_op 
+0x690c 020276 rtn 
+:      020278 scheduler_start_upper_sm:
+0x690d 020279 fetch 1 ,mem_ui_profile_supported 
+0x690e 020280 bbit1 support_hid ,scheduler_start_upper_sm_hid 
+0x690f 020281 jam uppersm_reconn_sdp_conn ,mem_upper_sm_reconn 
+0x6910 020282 rtn 
+:      020283 scheduler_start_upper_sm_hid:
+0x6911 020284 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+0x6912 020285 rtn 
+:      020287 process_upper_sm:
+0x6913 020288 fetch 1 ,memui_reconnect_mode 
+0x6914 020289 nbranch process_upper_sm_reconn ,blank 
+:      020290 process_upper_sm_remote_page:
+0x6915 020291 fetch 1 ,mem_upper_sm_remote_page 
+0x6916 020293 rtn blank 
+0x6917 020295 jam 0 ,mem_upper_sm_remote_page 
+:      020296 process_upper_sm_rp_wait:
+0x6918 020297 rtn 
+:      020300 process_upper_sm_reconn:
+0x6919 020301 set1 mark_ext_patch ,mark 
+0x691a 020302 bpatch patch36_3 ,mem_patch36 
+0x691b 020303 fetch 1 ,mem_upper_sm_reconn 
+0x691c 020304 rtn blank 
+0x691d 020305 beq uppersm_reconn_sdp_conn ,process_upper_sm_reconn_sdp_conn 
+0x691e 020306 beq uppersm_reconn_sdp_conn_wait ,process_upper_sm_reconn_sdp_conn_wait 
+0x691f 020307 beq uppersm_reconn_sdp_cfg ,process_upper_sm_reconn_sdp_cfg 
+0x6920 020308 beq uppersm_reconn_sdp_cfg_wait ,process_upper_sm_reconn_sdp_cfg_wait 
+0x6921 020309 beq uppersm_reconn_ss_spp ,process_upper_sm_reconn_ss_spp 
+0x6922 020310 beq uppersm_reconn_ss_spp_wait ,process_upper_sm_reconn_ss_spp_wait 
+0x6923 020311 beq uppersm_reconn_sdp_disconn ,process_upper_sm_reconn_sdp_disconn 
+0x6924 020312 beq uppersm_reconn_sdp_disconn_wait ,process_upper_sm_reconn_sdp_disconn_wait 
+0x6925 020313 beq uppersm_reconn_hid_ctrl_conn ,process_upper_sm_reconn_hid_ctrl_conn 
+0x6926 020314 beq uppersm_reconn_hid_ctrl_conn_wait ,process_upper_sm_reconn_hid_ctrl_conn_wait 
+0x6927 020315 beq uppersm_reconn_hid_ctrl_cfg ,process_upper_sm_reconn_hid_ctrl_cfg 
+0x6928 020316 beq uppersm_reconn_hid_ctrl_cfg_wait ,process_upper_sm_reconn_hid_ctrl_cfg_wait 
+0x6929 020317 beq uppersm_reconn_hid_int_conn ,process_upper_sm_reconn_hid_int_conn 
+0x692a 020318 beq uppersm_reconn_hid_int_conn_wait ,process_upper_sm_reconn_hid_int_conn_wait 
+0x692b 020319 beq uppersm_reconn_hid_int_cfg ,process_upper_sm_reconn_hid_int_cfg 
+0x692c 020320 beq uppersm_reconn_hid_int_cfg_wait ,process_upper_sm_reconn_hid_int_cfg_wait 
+0x692d 020321 beq uppersm_reconn_rfcomm_conn ,process_upper_sm_reconn_rfcomm_conn 
+0x692e 020322 beq uppersm_reconn_rfcomm_conn_wait ,process_upper_sm_reconn_rfcomm_conn_wait 
+0x692f 020323 beq uppersm_reconn_rfcomm_cfg ,process_upper_sm_reconn_rfcomm_cfg 
+0x6930 020324 beq uppersm_reconn_rfcomm_cfg_wait ,process_upper_sm_reconn_rfcomm_cfg_wait 
+0x6931 020325 beq uppersm_reconn_rfcomm_sabm ,process_upper_sm_reconn_rfcomm_sabm 
+0x6932 020326 beq uppersm_reconn_rfcomm_sabm_wait ,process_upper_sm_reconn_rfcomm_sabm_wait 
+0x6933 020327 beq uppersm_reconn_spp_cmd_pn ,process_upper_sm_reconn_spp_cmd_pn 
+0x6934 020328 beq uppersm_reconn_spp_cmd_pn_wait ,process_upper_sm_reconn_spp_cmd_pn_wait 
+0x6935 020329 beq uppersm_reconn_spp_sabm ,process_upper_sm_reconn_spp_sabm 
+0x6936 020330 beq uppersm_reconn_spp_sabm_wait ,process_upper_sm_reconn_spp_sabm_wait 
+0x6937 020331 beq uppersm_reconn_spp_cmd_ms ,process_upper_sm_reconn_spp_cmd_ms 
+0x6938 020332 beq uppersm_reconn_spp_cmd_ms_wait ,process_upper_sm_reconn_spp_cmd_ms_wait 
+:      020333 process_upper_sm_reconn_wait:
+0x6939 020334 rtn 
+:      020335 process_upper_sm_reconn_sdp_conn:
+0x693a 020336 call upper_sm_send_sdp_conn 
+0x693b 020337 jam uppersm_reconn_sdp_conn_wait ,mem_upper_sm_reconn 
+0x693c 020338 fetch 1 ,mem_sdp_state 
+0x693d 020339 set1 l2cap_channel_state_conn_req ,pdata 
+0x693e 020340 store 1 ,mem_sdp_state 
+0x693f 020341 rtn 
+:      020342 process_upper_sm_reconn_sdp_cfg:
+0x6940 020343 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+0x6941 020344 fetch 1 ,mem_sdp_state 
+0x6942 020345 rtnbit1 l2cap_channel_state_snd_cfg_req 
+0x6943 020346 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+0x6944 020347 call upper_sm_send_sdp_cfg 
+0x6945 020348 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+0x6946 020349 fetch 1 ,mem_sdp_state 
+0x6947 020350 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6948 020351 store 1 ,mem_sdp_state 
+0x6949 020352 rtn 
+:      020353 process_upper_sm_reconn_ss_spp:
+0x694a 020354 call l2cap_malloc_is_fifo_empty 
+0x694b 020355 nrtn blank 
+0x694c 020356 call upper_sm_send_ss_spp 
+0x694d 020357 jam uppersm_reconn_ss_spp_wait ,mem_upper_sm_reconn 
+0x694e 020358 rtn 
+:      020359 process_upper_sm_reconn_sdp_disconn:
+0x694f 020360 call upper_sm_send_sdp_disconn 
+0x6950 020361 jam uppersm_reconn_sdp_disconn_wait ,mem_upper_sm_reconn 
+0x6951 020362 rtn 
+:      020363 process_upper_sm_reconn_hid_ctrl_conn:
+0x6952 020364 call upper_sm_send_hid_ctrl_conn 
+0x6953 020365 jam uppersm_reconn_hid_ctrl_conn_wait ,mem_upper_sm_reconn 
+0x6954 020366 fetch 1 ,mem_hid_control_state 
+0x6955 020367 set1 l2cap_channel_state_conn_req ,pdata 
+0x6956 020368 store 1 ,mem_hid_control_state 
+0x6957 020369 rtn 
+:      020370 process_upper_sm_reconn_hid_ctrl_cfg:
+0x6958 020371 call upper_sm_send_hid_ctrl_cfg 
+0x6959 020372 jam uppersm_reconn_hid_ctrl_cfg_wait ,mem_upper_sm_reconn 
+0x695a 020373 fetch 1 ,mem_hid_control_state 
+0x695b 020374 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x695c 020375 store 1 ,mem_hid_control_state 
+0x695d 020376 rtn 
+:      020377 process_upper_sm_reconn_hid_int_conn:
+0x695e 020378 call upper_sm_send_hid_int_conn 
+0x695f 020379 jam uppersm_reconn_hid_int_conn_wait ,mem_upper_sm_reconn 
+0x6960 020380 fetch 1 ,mem_hid_interrupt_state 
+0x6961 020381 set1 l2cap_channel_state_conn_req ,pdata 
+0x6962 020382 store 1 ,mem_hid_interrupt_state 
+0x6963 020383 rtn 
+:      020384 process_upper_sm_reconn_hid_int_cfg:
+0x6964 020385 call upper_sm_send_hid_int_cfg 
+0x6965 020386 jam uppersm_reconn_hid_int_cfg_wait ,mem_upper_sm_reconn 
+0x6966 020387 fetch 1 ,mem_hid_interrupt_state 
+0x6967 020388 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6968 020389 store 1 ,mem_hid_interrupt_state 
+0x6969 020390 rtn 
+:      020391 process_upper_sm_reconn_rfcomm_conn:
+0x696a 020392 call upper_sm_send_rfcomm_conn 
+0x696b 020393 jam uppersm_reconn_rfcomm_conn_wait ,mem_upper_sm_reconn 
+0x696c 020394 fetch 1 ,mem_rfcomm_state 
+0x696d 020395 set1 l2cap_channel_state_conn_req ,pdata 
+0x696e 020396 store 1 ,mem_rfcomm_state 
+0x696f 020397 rtn 
+:      020398 process_upper_sm_reconn_rfcomm_cfg:
+0x6970 020399 call upper_sm_send_rfcomm_cfg 
+0x6971 020400 jam uppersm_reconn_rfcomm_cfg_wait ,mem_upper_sm_reconn 
+0x6972 020401 fetch 1 ,mem_rfcomm_state 
+0x6973 020402 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6974 020403 store 1 ,mem_rfcomm_state 
+0x6975 020404 rtn 
+:      020405 process_upper_sm_reconn_rfcomm_sabm:
+0x6976 020406 call upper_sm_send_rfcomm_sabm 
+0x6977 020407 jam uppersm_reconn_rfcomm_sabm_wait ,mem_upper_sm_reconn 
+0x6978 020408 fetch 1 ,mem_rfcomm_state 
+0x6979 020409 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+0x697a 020410 store 1 ,mem_rfcomm_state 
+0x697b 020411 rtn 
+:      020412 process_upper_sm_reconn_spp_cmd_pn:
+0x697c 020413 call upper_sm_send_spp_cmd_pn 
+0x697d 020414 fetch 1 ,mem_spp_state 
+0x697e 020415 set1 rfcomm_channel_state_pn_cmd 
+0x697f 020416 store 1 ,mem_spp_state 
+0x6980 020417 jam uppersm_reconn_spp_cmd_pn_wait ,mem_upper_sm_reconn 
+0x6981 020418 rtn 
+:      020419 process_upper_sm_reconn_spp_sabm:
+0x6982 020420 call upper_sm_send_spp_sabm 
+0x6983 020421 fetch 1 ,mem_spp_state 
+0x6984 020422 set1 rfcomm_channel_state_sabm 
+0x6985 020423 store 1 ,mem_spp_state 
+0x6986 020424 jam uppersm_reconn_spp_sabm_wait ,mem_upper_sm_reconn 
+0x6987 020425 fetch 1 ,mem_remote_spp_channel 
+0x6988 020426 lshift3 pdata ,pdata 
+0x6989 020427 or_into 3 ,pdata 
+0x698a 020428 arg mem_hiufcs_spp ,temp 
+0x698b 020429 storet 2 ,mem_contw_temp 
+0x698c 020430 branch rfcomm_save_fcs_uih 
+:      020431 process_upper_sm_reconn_spp_cmd_ms:
+0x698d 020432 call upper_sm_send_spp_cmd_ms 
+0x698e 020433 fetch 1 ,mem_spp_state 
+0x698f 020434 set1 rfcomm_channel_state_snd_ms_cmd 
+0x6990 020435 store 1 ,mem_spp_state 
+0x6991 020436 jam uppersm_reconn_spp_cmd_ms_wait ,mem_upper_sm_reconn 
+0x6992 020437 rtn 
+:      020439 process_upper_sm_reconn_sdp_conn_wait:
+0x6993 020440 fetch 1 ,mem_sdp_state 
+0x6994 020441 rtnbit0 l2cap_channel_state_conn_res 
+0x6995 020442 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+0x6996 020443 branch process_upper_sm_reconn 
+:      020444 process_upper_sm_reconn_sdp_cfg_wait:
+0x6997 020445 fetch 1 ,mem_sdp_state 
+0x6998 020446 rtnne l2cap_channel_setup_complete 
+0x6999 020447 jam uppersm_reconn_ss_spp ,mem_upper_sm_reconn 
+:      020448 process_upper_sm_reconn_ss_spp_wait:
+0x699a 020449 fetch 1 ,mem_message_to_uppersm 
+0x699b 020450 rtnne recieve_ss_reasult_hf 
+0x699c 020451 jam 0 ,mem_message_to_uppersm 
+0x699d 020452 jam uppersm_reconn_sdp_disconn ,mem_upper_sm_reconn 
+0x699e 020453 branch process_upper_sm_reconn 
+:      020454 process_upper_sm_reconn_sdp_disconn_wait:
+0x699f 020455 fetch 1 ,mem_sdp_state 
+0x69a0 020456 nrtn blank 
+0x69a1 020457 fetch 1 ,mem_ui_profile_supported 
+0x69a2 020458 bbit1 support_hid ,process_upper_sm_reconn_setup_hid 
+0x69a3 020459 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+0x69a4 020460 branch process_upper_sm_reconn_termination 
+:      020461 process_upper_sm_reconn_hid_ctrl_conn_wait:
+0x69a5 020462 fetch 1 ,mem_hid_control_state 
+0x69a6 020463 rtnbit0 l2cap_channel_state_conn_res 
+0x69a7 020464 jam uppersm_reconn_hid_ctrl_cfg ,mem_upper_sm_reconn 
+0x69a8 020465 branch process_upper_sm_reconn 
+:      020466 process_upper_sm_reconn_hid_ctrl_cfg_wait:
+0x69a9 020467 fetch 1 ,mem_hid_control_state 
+0x69aa 020468 rtnne l2cap_channel_setup_complete 
+0x69ab 020469 jam uppersm_reconn_hid_int_conn ,mem_upper_sm_reconn 
+0x69ac 020470 branch process_upper_sm_reconn 
+:      020471 process_upper_sm_reconn_hid_int_conn_wait:
+0x69ad 020472 fetch 1 ,mem_hid_interrupt_state 
+0x69ae 020473 rtnbit0 l2cap_channel_state_conn_res 
+0x69af 020474 jam uppersm_reconn_hid_int_cfg ,mem_upper_sm_reconn 
+0x69b0 020475 branch process_upper_sm_reconn 
+:      020476 process_upper_sm_reconn_hid_int_cfg_wait:
+0x69b1 020477 fetch 1 ,mem_hid_interrupt_state 
+0x69b2 020478 rtnne l2cap_channel_setup_complete 
+0x69b3 020479 fetch 1 ,mem_ui_profile_supported 
+0x69b4 020480 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+0x69b5 020481 branch process_upper_sm_reconn_termination 
+:      020482 process_upper_sm_reconn_rfcomm_conn_wait:
+0x69b6 020483 fetch 1 ,mem_rfcomm_state 
+0x69b7 020484 rtnbit0 l2cap_channel_state_conn_res 
+0x69b8 020485 jam uppersm_reconn_rfcomm_cfg ,mem_upper_sm_reconn 
+0x69b9 020486 branch process_upper_sm_reconn 
+:      020487 process_upper_sm_reconn_rfcomm_cfg_wait:
+0x69ba 020488 fetch 1 ,mem_rfcomm_state 
+0x69bb 020489 rtnne l2cap_channel_setup_complete 
+0x69bc 020490 jam uppersm_reconn_rfcomm_sabm ,mem_upper_sm_reconn 
+0x69bd 020491 branch process_upper_sm_reconn 
+:      020492 process_upper_sm_reconn_rfcomm_sabm_wait:
+0x69be 020493 fetch 1 ,mem_rfcomm_state 
+0x69bf 020494 rtnne l2cap_channel_rfcomm_dlci0_opened 
+0x69c0 020495 fetch 1 ,mem_ui_profile_supported 
+0x69c1 020496 bbit1 support_spp ,process_upper_sm_reconn_setup_spp 
+0x69c2 020497 branch process_upper_sm_reconn_termination 
+:      020498 process_upper_sm_reconn_spp_cmd_pn_wait:
+0x69c3 020499 fetch 1 ,mem_spp_state 
+0x69c4 020500 rtnbit0 rfcomm_channel_state_pn_res 
+0x69c5 020501 jam uppersm_reconn_spp_sabm ,mem_upper_sm_reconn 
+0x69c6 020502 branch process_upper_sm_reconn 
+:      020503 process_upper_sm_reconn_spp_sabm_wait:
+0x69c7 020504 fetch 1 ,mem_spp_state 
+0x69c8 020505 rtnbit0 rfcomm_channel_state_ua 
+0x69c9 020506 jam uppersm_reconn_spp_cmd_ms ,mem_upper_sm_reconn 
+0x69ca 020507 branch process_upper_sm_reconn 
+:      020508 process_upper_sm_reconn_spp_cmd_ms_wait:
+0x69cb 020509 fetch 1 ,mem_spp_state 
+0x69cc 020510 rtnne rfcomm_channel_setup_complete 
+0x69cd 020511 branch process_upper_sm_reconn_termination 
+:      020513 process_upper_sm_reconn_setup_hid:
+0x69ce 020514 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+0x69cf 020515 branch process_upper_sm_reconn 
+:      020517 process_upper_sm_reconn_setup_rfcomm:
+0x69d0 020518 jam uppersm_reconn_rfcomm_conn ,mem_upper_sm_reconn 
+0x69d1 020519 branch process_upper_sm_reconn 
+:      020520 process_upper_sm_reconn_setup_spp:
+0x69d2 020521 jam uppersm_reconn_spp_cmd_pn ,mem_upper_sm_reconn 
+0x69d3 020522 branch process_upper_sm_reconn 
+:      020526 process_upper_sm_reconn_termination:
+0x69d4 020527 jam 0 ,mem_upper_sm_reconn 
+0x69d5 020528 rtn 
+:      020529 upper_sm_send_sdp_conn:
+0x69d6 020530 set1 mark_ext_patch ,mark 
+0x69d7 020531 bpatch patch36_4 ,mem_patch36 
+0x69d8 020532 call l2cap_malloc_signal_channel 
+0x69d9 020533 setarg psm_sdp 
+0x69da 020534 copy pdata ,temp 
+0x69db 020535 setarg l2cap_sdp_channel 
+0x69dc 020536 copy pdata ,timeup 
+0x69dd 020537 branch ml2cap_send_signal_connect_req 
+:      020539 upper_sm_send_sdp_cfg:
+0x69de 020540 set1 mark_ext_patch ,mark 
+0x69df 020541 bpatch patch36_5 ,mem_patch36 
+0x69e0 020542 call l2cap_malloc_signal_channel 
+0x69e1 020543 fetch 2 ,mem_sdp_remote_cid 
+0x69e2 020544 copy pdata ,temp 
+0x69e3 020545 branch ml2cap_send_signal_config_req 
+:      020547 upper_sm_send_sdp_disconn:
+0x69e4 020548 set1 mark_ext_patch ,mark 
+0x69e5 020549 bpatch patch36_6 ,mem_patch36 
+0x69e6 020550 call l2cap_malloc_signal_channel 
+0x69e7 020551 fetch 2 ,mem_sdp_remote_cid 
+0x69e8 020552 copy pdata ,temp 
+0x69e9 020553 arg l2cap_sdp_channel ,timeup 
+0x69ea 020554 call ml2cap_send_signal_disconn_req 
+0x69eb 020555 fetch 1 ,mem_sdp_state 
+0x69ec 020556 set0 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x69ed 020557 store 1 ,mem_sdp_state 
+0x69ee 020558 rtn 
+:      020560 upper_sm_send_ss_spp:
+0x69ef 020561 set1 mark_ext_patch ,mark 
+0x69f0 020562 bpatch patch36_7 ,mem_patch36 
+0x69f1 020563 call l2cap_malloc_sdp_channel 
+0x69f2 020564 call sdp_send_spp_request 
+0x69f3 020565 branch msdp_send_req_done 
+:      020567 upper_sm_send_rfcomm_conn:
+0x69f4 020568 set1 mark_ext_patch ,mark 
+0x69f5 020569 bpatch patch37_0 ,mem_patch37 
+0x69f6 020570 call l2cap_malloc_signal_channel 
+0x69f7 020571 setarg psm_rfcomm 
+0x69f8 020572 copy pdata ,temp 
+0x69f9 020573 setarg l2cap_rfcomm_channel 
+0x69fa 020574 copy pdata ,timeup 
+0x69fb 020575 branch ml2cap_send_signal_connect_req 
+:      020577 upper_sm_send_rfcomm_cfg:
+0x69fc 020578 set1 mark_ext_patch ,mark 
+0x69fd 020579 bpatch patch37_1 ,mem_patch37 
+0x69fe 020580 call l2cap_malloc_signal_channel 
+0x69ff 020581 fetch 2 ,mem_rfcomm_remote_cid 
+0x6a00 020582 copy pdata ,temp 
+0x6a01 020583 branch ml2cap_send_signal_config_req 
+:      020585 upper_sm_send_hid_ctrl_conn:
+0x6a02 020586 set1 mark_ext_patch ,mark 
+0x6a03 020587 bpatch patch37_2 ,mem_patch37 
+0x6a04 020588 call l2cap_malloc_signal_channel 
+0x6a05 020589 setarg psm_hid_control 
+0x6a06 020590 copy pdata ,temp 
+0x6a07 020591 setarg l2cap_hid_control_channel 
+0x6a08 020592 copy pdata ,timeup 
+0x6a09 020593 branch ml2cap_send_signal_connect_req 
+:      020595 upper_sm_send_hid_ctrl_cfg:
+0x6a0a 020596 set1 mark_ext_patch ,mark 
+0x6a0b 020597 bpatch patch37_3 ,mem_patch37 
+0x6a0c 020598 call l2cap_malloc_signal_channel 
+0x6a0d 020599 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x6a0e 020600 copy pdata ,temp 
+0x6a0f 020601 branch ml2cap_send_signal_config_req 
+:      020603 upper_sm_send_hid_int_conn:
+0x6a10 020604 set1 mark_ext_patch ,mark 
+0x6a11 020605 bpatch patch37_4 ,mem_patch37 
+0x6a12 020606 call l2cap_malloc_signal_channel 
+0x6a13 020607 setarg psm_hid_interrupt 
+0x6a14 020608 copy pdata ,temp 
+0x6a15 020609 setarg l2cap_hid_interrupt_channel 
+0x6a16 020610 copy pdata ,timeup 
+0x6a17 020611 branch ml2cap_send_signal_connect_req 
+:      020613 upper_sm_send_hid_int_cfg:
+0x6a18 020614 set1 mark_ext_patch ,mark 
+0x6a19 020615 bpatch patch37_5 ,mem_patch37 
+0x6a1a 020616 call l2cap_malloc_signal_channel 
+0x6a1b 020617 fetch 2 ,mem_hid_int_remote_cid 
+0x6a1c 020618 copy pdata ,temp 
+0x6a1d 020619 branch ml2cap_send_signal_config_req 
+:      020621 upper_sm_send_rfcomm_sabm:
+0x6a1e 020622 set1 mark_ext_patch ,mark 
+0x6a1f 020623 bpatch patch37_6 ,mem_patch37 
+0x6a20 020624 call l2cap_malloc_rfcomm_channel 
+0x6a21 020626 jam 3 ,mem_current_adss 
+0x6a22 020627 jam 0x1c ,mem_current_fcs 
+0x6a23 020628 call rfcomm_send_sabm 
+0x6a24 020629 jam 1 ,mem_rfcomm_initiator 
+0x6a25 020630 rtn 
+:      020632 upper_sm_send_spp_cmd_pn:
+0x6a26 020633 set1 mark_ext_patch ,mark 
+0x6a27 020634 bpatch patch37_7 ,mem_patch37 
+0x6a28 020635 call l2cap_malloc_rfcomm_channel 
+0x6a29 020636 fetcht 1 ,mem_remote_spp_channel 
+0x6a2a 020637 call channel_to_dlci 
+0x6a2b 020638 storet 1 ,mem_pn_dlci 
+0x6a2c 020639 branch rfcomm_send_param_neg_cmd 
+:      020641 upper_sm_send_spp_sabm:
+0x6a2d 020642 set1 mark_ext_patch ,mark 
+0x6a2e 020643 bpatch patch38_0 ,mem_patch38 
+0x6a2f 020644 call l2cap_malloc_rfcomm_channel 
+0x6a30 020645 fetcht 1 ,mem_pn_dlci 
+0x6a31 020646 call dlci_to_address_cmd 
+0x6a32 020647 call rfcomm_calculate_fcs_sabm 
+0x6a33 020648 store 1 ,mem_current_fcs 
+0x6a34 020649 fetcht 1 ,mem_pn_dlci 
+0x6a35 020650 call dlci_to_address_cmd 
+0x6a36 020651 storet 1 ,mem_current_adss 
+0x6a37 020652 branch rfcomm_send_sabm 
+:      020654 upper_sm_send_spp_cmd_ms:
+0x6a38 020655 set1 mark_ext_patch ,mark 
+0x6a39 020656 bpatch patch38_1 ,mem_patch38 
+0x6a3a 020657 call l2cap_malloc_rfcomm_channel 
+0x6a3b 020658 fetcht 1 ,mem_pn_dlci 
+0x6a3c 020659 call dlci_to_address_cmd 
+0x6a3d 020660 branch rfcomm_send_modem_status_cmd 
+:      020673 sdp_process:
+0x6a3e 020674 set1 mark_ext_patch ,mark 
+0x6a3f 020675 bpatch patch38_2 ,mem_patch38 
+0x6a40 020676 fetch 2 ,mem_l2cap_payload_ptr 
+0x6a41 020677 iforce contr 
+0x6a42 020678 ifetch 1 ,contr 
+0x6a43 020679 copy pdata ,regb 
+0x6a44 020680 store 1 ,mem_sdp_pduid 
+0x6a45 020681 ifetch 2 ,contr 
+0x6a46 020682 store 2 ,mem_sdp_transactionid 
+0x6a47 020683 ifetch 1 ,contr 
+0x6a48 020684 lshift8 pdata ,timeup 
+0x6a49 020685 ifetch 1 ,contr 
+0x6a4a 020686 iadd timeup ,timeup 
+0x6a4b 020687 set1 mark_ext_patch ,mark 
+0x6a4c 020688 bpatch patch38_3 ,mem_patch38 
+0x6a4d 020689 deposit regb 
+0x6a4e 020690 beq 2 ,servicesearch_req 
+0x6a4f 020691 beq 4 ,patch_serviceattribute_req 
+0x6a50 020692 beq 6 ,patch_servicesearchattribute_req 
+0x6a51 020693 beq 7 ,servicesearchattribute_res 
+0x6a52 020694 branch sdp_insufficient_resource 
+:      020705 servicesearch_req:
+0x6a53 020706 call ask_serviceclassid 
+0x6a54 020707 compare 1 ,temp ,0xff 
+0x6a55 020708 branch empth_sa_rsp ,true 
+0x6a56 020709 compare 0xff ,temp ,0xff 
+0x6a57 020710 branch sdp_invalid_reqest_syntax ,true 
+0x6a58 020712 ifetch 2 ,contr 
+0x6a59 020713 store 2 ,mem_sdp_record_maxcnt 
+0x6a5a 020714 increase -2 ,timeup 
+0x6a5b 020716 increase -1 ,timeup 
+0x6a5c 020717 nbranch sdp_invalid_pdu_size ,zero 
+0x6a5d 020718 arg mem_uuid_search_pat ,timeup 
+0x6a5e 020719 ifetch 2 ,timeup 
+0x6a5f 020720 rtn blank 
+0x6a60 020721 increase 2 ,timeup 
+0x6a61 020722 call search_uuid 
+0x6a62 020723 call l2cap_get_sdp_tx_payload 
+0x6a63 020724 force 3 ,pdata 
+0x6a64 020725 istore 1 ,contw 
+0x6a65 020726 fetch 2 ,mem_sdp_transactionid 
+0x6a66 020727 istore 2 ,contw 
+0x6a67 020728 lshift2 queue ,pdata 
+0x6a68 020729 add pdata ,5 ,pdata 
+0x6a69 020730 add pdata ,5 ,regc 
+0x6a6a 020731 byteswap pdata ,pdata 
+0x6a6b 020732 istore 2 ,contw 
+0x6a6c 020733 deposit queue 
+0x6a6d 020734 byteswap pdata ,pdata 
+0x6a6e 020735 istore 2 ,contw 
+0x6a6f 020736 istore 2 ,contw 
+0x6a70 020737 arg mem_handle_list ,contr 
+0x6a71 020738 copy queue ,loopcnt 
+0x6a72 020739 branch servicesearch_req_blank ,zero 
+:      020740 servicesearch_req_loop:
+0x6a73 020741 ifetch 4 ,contr 
+0x6a74 020742 istore 4 ,contw 
+0x6a75 020743 loop servicesearch_req_loop 
+:      020744 servicesearch_req_blank:
+0x6a76 020745 force 0 ,pdata 
+0x6a77 020746 istore 1 ,contw 
+0x6a78 020747 deposit regc 
+0x6a79 020748 store 1 ,mem_sdp_tx_pkt_length 
+0x6a7a 020749 branch assert ,blank 
+0x6a7b 020750 rtn 
+:      020761 patch_serviceattribute_req:
+0x6a7c 020762 ifetch 4 ,contr 
+0x6a7d 020763 store 4 ,mem_sdp_record_handle 
+0x6a7e 020764 increase -4 ,timeup 
+0x6a7f 020765 iforce temp 
+0x6a80 020766 ifetch 2 ,contr 
+0x6a81 020767 byteswap pdata ,pdata 
+0x6a82 020768 increase -18 ,pdata 
+0x6a83 020769 store 2 ,mem_sdp_attribute_maxbyte 
+0x6a84 020770 increase -2 ,timeup 
+0x6a85 020771 call dataelementtype6 
+0x6a86 020772 branch sdp_invalid_reqest_syntax ,zero 
+0x6a87 020773 compare 5 ,rega ,0xff 
+0x6a88 020775 branch patch_serviceattribute_judge_wholerangle ,true 
+:      020776 patch_serviceattribute_isnot_wholerangle:
+0x6a89 020777 arg mem_attrib_list ,contw 
+0x6a8a 020778 force 0 ,queue 
+0x6a8b 020779 branch patch_serviceattribute_req_loop 
+:      020780 patch_serviceattribute_judge_wholerangle:
+0x6a8c 020781 ifetch 1 ,contr 
+0x6a8d 020782 bne 0xa ,sdp_invalid_reqest_syntax 
+0x6a8e 020783 ifetch 2 ,contr 
+0x6a8f 020784 nbranch patch_serviceattribute_judge_wholerangle_false1 ,blank 
+0x6a90 020785 ifetch 1 ,contr 
+0x6a91 020786 bne 0xff ,patch_serviceattribute_judge_wholerangle_false2 
+0x6a92 020787 ifetch 1 ,contr 
+0x6a93 020788 bne 0xff ,patch_serviceattribute_judge_wholerangle_false3 
+0x6a94 020789 increase -5 ,contr 
+0x6a95 020790 branch serviceattribute_req_all 
+:      020791 patch_serviceattribute_judge_wholerangle_false3:
+0x6a96 020792 increase -5 ,contr 
+0x6a97 020793 branch patch_serviceattribute_isnot_wholerangle 
+:      020794 patch_serviceattribute_judge_wholerangle_false2:
+0x6a98 020795 increase -4 ,contr 
+0x6a99 020796 branch patch_serviceattribute_isnot_wholerangle 
+:      020797 patch_serviceattribute_judge_wholerangle_false1:
+0x6a9a 020798 increase -3 ,contr 
+0x6a9b 020799 branch patch_serviceattribute_isnot_wholerangle 
+:      020800 patch_serviceattribute_req_loop:
+0x6a9c 020801 ifetch 1 ,contr 
+0x6a9d 020802 beq 0x09 ,patch_serviceattribute_req_one_id 
+0x6a9e 020803 beq 0x0a ,patch_serviceattribute_req_range_id 
+:      020804 patch_serviceattribute_req_range_id:
+0x6a9f 020805 ifetch 2 ,contr 
+0x6aa0 020806 istore 2 ,contw 
+0x6aa1 020807 increase 1 ,queue 
+0x6aa2 020808 byteswap pdata ,regb 
+0x6aa3 020809 ifetch 2 ,contr 
+0x6aa4 020810 byteswap pdata ,pdata 
+:      020811 patch_serviceattribute_req_range_id_increase:
+0x6aa5 020812 increase 1 ,regb 
+0x6aa6 020813 isub regb ,null 
+0x6aa7 020814 nbranch patch_serviceattribute_req_range_id_finish ,positive 
+0x6aa8 020815 copy pdata ,regc 
+0x6aa9 020816 byteswap regb ,pdata 
+0x6aaa 020817 istore 2 ,contw 
+0x6aab 020818 increase 1 ,queue 
+0x6aac 020819 copy regc ,pdata 
+0x6aad 020820 branch patch_serviceattribute_req_range_id_increase 
+:      020821 patch_serviceattribute_req_range_id_finish:
+0x6aae 020822 increase -5 ,timeup 
+0x6aaf 020823 increase -5 ,rega 
+0x6ab0 020824 branch patch_serviceattribute_req_check_next_id 
+:      020825 patch_serviceattribute_req_one_id:
+0x6ab1 020826 ifetch 2 ,contr 
+0x6ab2 020827 istore 2 ,contw 
+0x6ab3 020828 increase 1 ,queue 
+0x6ab4 020829 increase -3 ,timeup 
+0x6ab5 020830 increase -3 ,rega 
+:      020831 patch_serviceattribute_req_check_next_id:
+0x6ab6 020832 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6ab7 020833 nbranch patch_serviceattribute_req_loop ,zero 
+0x6ab8 020834 increase -1 ,timeup 
+0x6ab9 020835 nbranch sdp_invalid_reqest_syntax ,zero 
+0x6aba 020837 call l2cap_get_sdp_tx_payload 
+0x6abb 020838 increase 10 ,contw 
+0x6abc 020839 arg mem_attrib_list ,rega 
+:      020840 patch_answer_handle_attributelist_next:
+0x6abd 020841 set1 mark_ext_patch ,mark 
+0x6abe 020842 bpatch patch38_4 ,mem_patch38 
+0x6abf 020843 copy queue ,pdata 
+0x6ac0 020844 branch answer_handle_attributelist_end ,blank 
+0x6ac1 020845 ifetch 2 ,rega 
+0x6ac2 020846 branch answer_handle_attributelist_end ,blank 
+0x6ac3 020847 iforce regb 
+0x6ac4 020848 fetch 4 ,mem_sdp_record_handle 
+0x6ac5 020849 iforce temp 
+0x6ac6 020850 call search_handle_attrib 
+0x6ac7 020851 branch patch_answer_handle_attributelist_notfound ,blank 
+0x6ac8 020852 increase -3 ,contr 
+0x6ac9 020853 ifetch 3 ,contr 
+0x6aca 020854 istore 3 ,contw 
+0x6acb 020855 call patch_sdp_data_len 
+0x6acc 020856 branch patch_answer_handle_attributelist_notfound ,blank 
+0x6acd 020857 iforce loopcnt 
+0x6ace 020858 call memcpy 
+:      020859 patch_answer_handle_attributelist_notfound:
+0x6acf 020860 increase 2 ,rega 
+0x6ad0 020861 increase -1 ,queue 
+0x6ad1 020862 branch patch_answer_handle_attributelist_next 
+:      020864 answer_handle_attributelist_end:
+0x6ad2 020865 set1 mark_ext_patch ,mark 
+0x6ad3 020866 bpatch patch38_5 ,mem_patch38 
+0x6ad4 020867 force 0 ,pdata 
+0x6ad5 020868 istore 1 ,contw 
+0x6ad6 020869 increase -1 ,contw 
+0x6ad7 020870 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6ad8 020871 add temp ,10 ,pdata 
+0x6ad9 020872 isub contw ,pdata 
+0x6ada 020873 sub pdata ,0 ,rega 
+0x6adb 020874 byteswap rega ,pdata 
+0x6adc 020875 add temp ,8 ,regb 
+0x6add 020876 istore 2 ,regb 
+0x6ade 020877 increase 3 ,rega 
+0x6adf 020878 byteswap rega ,pdata 
+0x6ae0 020879 add temp ,5 ,regb 
+0x6ae1 020880 istore 2 ,regb 
+0x6ae2 020881 increase 3 ,rega 
+0x6ae3 020882 byteswap rega ,pdata 
+0x6ae4 020883 add temp ,3 ,regb 
+0x6ae5 020884 istore 2 ,regb 
+0x6ae6 020885 increase 5 ,rega 
+0x6ae7 020886 copy rega ,pdata 
+0x6ae8 020887 store 2 ,mem_sdp_tx_pkt_length 
+0x6ae9 020888 setarg 0x36 
+0x6aea 020889 add temp ,7 ,regb 
+0x6aeb 020890 istore 1 ,regb 
+0x6aec 020891 setarg 5 
+0x6aed 020892 istore 1 ,temp 
+0x6aee 020893 fetch 2 ,mem_sdp_transactionid 
+0x6aef 020894 add temp ,1 ,regb 
+0x6af0 020895 istore 2 ,regb 
+0x6af1 020896 rtn 
+:      020897 serviceattribute_req_all:
+0x6af2 020898 ifetch 1 ,contr 
+0x6af3 020899 bne 0xa ,sdp_invalid_reqest_syntax 
+0x6af4 020900 ifetch 2 ,contr 
+0x6af5 020901 nbranch sdp_invalid_reqest_syntax ,blank 
+0x6af6 020902 ifetch 1 ,contr 
+0x6af7 020903 bne 0xff ,sdp_invalid_reqest_syntax 
+0x6af8 020904 ifetch 1 ,contr 
+0x6af9 020905 bne 0xff ,sdp_invalid_reqest_syntax 
+0x6afa 020906 increase -5 ,timeup 
+0x6afb 020907 ifetch 1 ,contr 
+0x6afc 020908 beq 0 ,continue_zero 
+0x6afd 020909 beq 1 ,continue_one_byte 
+0x6afe 020910 beq 2 ,continue_two_byte 
+:      020911 continue_zero:
+0x6aff 020912 store 2 ,mem_sdp_continue_byte 
+0x6b00 020913 increase -1 ,timeup 
+0x6b01 020914 branch continue_end 
+:      020915 continue_one_byte:
+0x6b02 020916 ifetch 1 ,contr 
+0x6b03 020917 store 2 ,mem_sdp_continue_byte 
+0x6b04 020918 increase -2 ,timeup 
+0x6b05 020919 branch continue_end 
+:      020920 continue_two_byte:
+0x6b06 020921 ifetch 2 ,contr 
+0x6b07 020922 byteswap pdata ,pdata 
+0x6b08 020923 store 2 ,mem_sdp_continue_byte 
+0x6b09 020924 increase -3 ,timeup 
+:      020925 continue_end:
+0x6b0a 020926 nbranch sdp_invalid_pdu_size ,zero 
+0x6b0b 020927 set1 mark_ext_patch ,mark 
+0x6b0c 020928 bpatch patch38_6 ,mem_patch38 
+0x6b0d 020929 call search_handle 
+0x6b0e 020930 nbranch sdp_invalid_service_record_handle ,zero 
+0x6b0f 020931 copy contr ,rega 
+0x6b10 020932 call l2cap_get_sdp_tx_payload 
+0x6b11 020933 copy rega ,contr 
+0x6b12 020934 increase 3 ,contw 
+0x6b13 020935 copy contr ,timeup 
+0x6b14 020936 call sdp_get_data 
+0x6b15 020937 copy pdata ,rega 
+0x6b16 020938 fetch 2 ,mem_sdp_continue_byte 
+0x6b17 020939 copy pdata ,regb 
+0x6b18 020940 copy rega ,pdata 
+0x6b19 020941 isub regb ,regb 
+0x6b1a 020942 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6b1b 020943 isub regb ,null 
+0x6b1c 020944 nbranch fragment_sdp ,positive 
+0x6b1d 020946 disable user 
+0x6b1e 020947 fetch 2 ,mem_sdp_continue_byte 
+0x6b1f 020948 branch fisrt_fragment ,blank 
+0x6b20 020949 iadd timeup ,contr 
+0x6b21 020950 increase 3 ,regb 
+0x6b22 020951 copy regb ,loopcnt 
+0x6b23 020952 copy loopcnt ,pdata 
+0x6b24 020953 increase 3 ,pdata 
+0x6b25 020954 byteswap pdata ,pdata 
+0x6b26 020955 istore 2 ,contw 
+0x6b27 020956 copy loopcnt ,pdata 
+0x6b28 020957 byteswap pdata ,pdata 
+0x6b29 020958 istore 2 ,contw 
+0x6b2a 020959 branch answer_attributelist_full_loop 
+:      020960 fisrt_fragment:
+0x6b2b 020961 add rega ,6 ,loopcnt 
+0x6b2c 020962 branch parlength_continue_byte ,user 
+0x6b2d 020963 byteswap loopcnt ,pdata 
+0x6b2e 020964 branch parlength_continue_byte_end 
+:      020965 parlength_continue_byte:
+0x6b2f 020966 copy loopcnt ,pdata 
+0x6b30 020967 increase 2 ,pdata 
+0x6b31 020968 byteswap pdata ,pdata 
+:      020969 parlength_continue_byte_end:
+0x6b32 020970 istore 2 ,contw 
+0x6b33 020971 increase -3 ,loopcnt 
+0x6b34 020972 byteswap loopcnt ,pdata 
+0x6b35 020973 istore 2 ,contw 
+0x6b36 020974 copy timeup ,contr 
+0x6b37 020975 branch answer_attributelist_full_loop 
+:      020976 fragment_sdp:
+0x6b38 020977 enable user 
+0x6b39 020978 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6b3a 020979 copy pdata ,rega 
+0x6b3b 020980 copy pdata ,loopcnt 
+0x6b3c 020981 fetch 2 ,mem_sdp_continue_byte 
+0x6b3d 020982 branch fisrt_fragment ,blank 
+0x6b3e 020983 iadd timeup ,contr 
+0x6b3f 020984 copy rega ,pdata 
+0x6b40 020985 increase 5 ,pdata 
+0x6b41 020986 byteswap pdata ,pdata 
+0x6b42 020987 istore 2 ,contw 
+0x6b43 020988 copy rega ,pdata 
+0x6b44 020989 byteswap pdata ,pdata 
+0x6b45 020990 istore 2 ,contw 
+:      020991 answer_attributelist_full_loop:
+0x6b46 020992 ifetch 1 ,contr 
+0x6b47 020993 istore 1 ,contw 
+0x6b48 020994 loop answer_attributelist_full_loop 
+0x6b49 020995 nbranch last_frag_continue ,user 
+0x6b4a 020996 force 2 ,pdata 
+0x6b4b 020997 istore 1 ,contw 
+0x6b4c 020998 copy contr ,pdata 
+0x6b4d 020999 isub timeup ,pdata 
+0x6b4e 021000 byteswap pdata ,pdata 
+0x6b4f 021001 istore 2 ,contw 
+0x6b50 021002 branch sdp_frag_end 
+:      021003 last_frag_continue:
+0x6b51 021004 force 0 ,pdata 
+0x6b52 021005 istore 1 ,contw 
+:      021006 sdp_frag_end:
+0x6b53 021007 fetch 2 ,mem_sdp_tx_payload_ptr 
+0x6b54 021008 isub contw ,pdata 
+0x6b55 021009 sub pdata ,0 ,pdata 
+0x6b56 021010 store 2 ,mem_sdp_tx_pkt_length 
+0x6b57 021011 call l2cap_get_sdp_tx_payload 
+0x6b58 021012 setarg 5 
+0x6b59 021013 istore 1 ,contw 
+0x6b5a 021014 fetch 2 ,mem_sdp_transactionid 
+0x6b5b 021015 istore 2 ,contw 
+0x6b5c 021016 rtn 
+:      021026 patch_servicesearchattribute_req:
+0x6b5d 021029 call ask_serviceclassid 
+0x6b5e 021030 compare 0xff ,temp ,0xff 
+0x6b5f 021031 branch patch_servicesearchattribute_req_all ,true 
+0x6b60 021032 ifetch 2 ,contr 
+0x6b61 021033 byteswap pdata ,pdata 
+0x6b62 021034 increase -18 ,pdata 
+0x6b63 021035 store 2 ,mem_sdp_attribute_maxbyte 
+0x6b64 021036 increase -2 ,timeup 
+0x6b65 021037 call dataelementtype6 
+0x6b66 021038 arg mem_attrib_list ,contw 
+0x6b67 021039 force 0 ,queue 
+:      021040 patch_servicesearchattribute_req_loop:
+0x6b68 021041 ifetch 3 ,contr 
+0x6b69 021042 bne 0x09 ,patch_servicesearchattribute_req_all 
+:      021043 patch_servicesearchattribute_req_uuid:
+0x6b6a 021044 rshift8 pdata ,pdata 
+0x6b6b 021045 istore 2 ,contw 
+0x6b6c 021046 increase 1 ,queue 
+0x6b6d 021047 increase -3 ,timeup 
+0x6b6e 021048 increase -3 ,rega 
+0x6b6f 021049 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6b70 021050 nbranch patch_servicesearchattribute_req_loop ,zero 
+0x6b71 021051 increase -1 ,timeup 
+0x6b72 021052 nbranch sdp_invalid_reqest_syntax ,zero 
+:      021053 patch_servicesearchattribute_req_search:
+0x6b73 021054 call l2cap_get_sdp_tx_payload 
+0x6b74 021055 increase 13 ,contw 
+0x6b75 021056 fetch 2 ,mem_uuid_search_pat 
+0x6b76 021057 iforce regc 
+0x6b77 021058 arg mem_attrib_list ,rega 
+:      021059 patch_answer_attributelist_next:
+0x6b78 021060 ifetch 4 ,rega 
+0x6b79 021061 branch patch_answer_attributelist_end ,blank 
+0x6b7a 021062 ifetch 2 ,rega 
+0x6b7b 021063 iforce regb 
+0x6b7c 021064 call search_attrib 
+0x6b7d 021065 branch patch_answer_attributelist_notfound ,blank 
+0x6b7e 021066 increase -3 ,contr 
+0x6b7f 021067 ifetch 3 ,contr 
+0x6b80 021068 istore 3 ,contw 
+0x6b81 021069 call patch_sdp_data_len 
+0x6b82 021070 iforce loopcnt 
+:      021071 patch_answer_attributelist_attrib_loop:
+0x6b83 021072 ifetch 1 ,contr 
+0x6b84 021073 istore 1 ,contw 
+0x6b85 021074 loop patch_answer_attributelist_attrib_loop 
+:      021075 patch_answer_attributelist_notfound:
+0x6b86 021076 increase 2 ,rega 
+0x6b87 021077 branch patch_answer_attributelist_next 
+:      021078 patch_servicesearchattribute_req_all:
+0x6b88 021079 set1 mark_ext_patch ,mark 
+0x6b89 021080 bpatch patch38_7 ,mem_patch38 
+0x6b8a 021084 ifetch 1 ,contr 
+0x6b8b 021086 ifetch 1 ,contr 
+0x6b8c 021088 increase -5 ,timeup 
+0x6b8d 021089 increase -5 ,rega 
+0x6b8e 021090 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6b8f 021091 ifetch 1 ,contr 
+0x6b90 021092 increase -1 ,timeup 
+0x6b91 021093 jam 0 ,mem_sdp_continue_byte 
+0x6b92 021094 jam 0 ,mem_sdp_continue_byte + 1 
+0x6b93 021095 nbranch patch_servicesearchattribute_req_all_continue ,blank 
+0x6b94 021096 arg mem_uuid_search_pat ,timeup 
+0x6b95 021097 ifetch 2 ,timeup 
+0x6b96 021099 increase 2 ,timeup 
+0x6b97 021100 call search_uuid 
+0x6b98 021101 deposit queue 
+0x6b99 021102 store 1 ,mem_handle_humber 
+0x6b9a 021103 branch empty_ssa_rsp ,blank 
+0x6b9b 021104 arg 0 ,queue 
+0x6b9c 021105 call l2cap_get_sdp_tx_payload 
+0x6b9d 021106 increase 10 ,contw 
+0x6b9e 021107 branch servicesearchattribute_req_next_handle 
+:      021109 patch_servicesearchattribute_req_all_continue:
+0x6b9f 021110 ifetch 2 ,contr 
+0x6ba0 021111 increase -2 ,timeup 
+0x6ba1 021112 byteswap pdata ,pdata 
+0x6ba2 021113 store 2 ,mem_sdp_continue_byte 
+0x6ba3 021114 arg mem_uuid_search_pat ,timeup 
+0x6ba4 021115 ifetch 2 ,timeup 
+0x6ba5 021117 increase 2 ,timeup 
+0x6ba6 021118 call search_uuid 
+0x6ba7 021119 deposit queue 
+0x6ba8 021120 store 1 ,mem_handle_humber 
+0x6ba9 021121 branch empty_ssa_rsp ,blank 
+0x6baa 021122 arg 0 ,queue 
+0x6bab 021123 call l2cap_get_sdp_tx_payload 
+0x6bac 021124 increase 7 ,contw 
+0x6bad 021125 branch servicesearchattribute_req_next_handle_continue 
+:      021127 patch_answer_attributelist_end:
+0x6bae 021128 force 0 ,pdata 
+0x6baf 021129 istore 1 ,contw 
+0x6bb0 021130 increase -1 ,contw 
+0x6bb1 021131 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6bb2 021132 add temp ,13 ,pdata 
+0x6bb3 021133 isub contw ,pdata 
+0x6bb4 021134 branch patch_no_attribute_return ,zero 
+0x6bb5 021135 sub pdata ,0 ,pdata 
+0x6bb6 021136 add temp ,12 ,regb 
+0x6bb7 021137 istore 1 ,regb 
+0x6bb8 021138 increase 3 ,pdata 
+0x6bb9 021139 add temp ,9 ,regb 
+0x6bba 021140 istore 1 ,regb 
+0x6bbb 021141 increase 3 ,pdata 
+0x6bbc 021142 byteswap pdata ,pdata 
+0x6bbd 021143 add temp ,5 ,regb 
+0x6bbe 021144 istore 2 ,regb 
+0x6bbf 021145 rshift8 pdata ,pdata 
+0x6bc0 021146 increase 3 ,pdata 
+0x6bc1 021147 byteswap pdata ,pdata 
+0x6bc2 021148 add temp ,3 ,regb 
+0x6bc3 021149 istore 2 ,regb 
+0x6bc4 021150 rshift8 pdata ,pdata 
+0x6bc5 021151 increase 5 ,pdata 
+0x6bc6 021152 store 1 ,mem_sdp_tx_pkt_length 
+0x6bc7 021154 fetch 2 ,mem_sdp_transactionid 
+0x6bc8 021155 add temp ,1 ,regb 
+0x6bc9 021156 istore 2 ,regb 
+0x6bca 021157 setarg 7 
+0x6bcb 021158 istore 1 ,temp 
+0x6bcc 021163 setarg 0x0036 
+0x6bcd 021164 add temp ,7 ,regb 
+0x6bce 021165 istore 2 ,regb 
+0x6bcf 021166 add temp ,10 ,regb 
+0x6bd0 021167 istore 2 ,regb 
+0x6bd1 021168 rtn 
+:      021169 patch_no_attribute_return:
+0x6bd2 021170 jam 10 ,mem_sdp_tx_pkt_length 
+0x6bd3 021171 call l2cap_get_sdp_tx_payload 
+0x6bd4 021173 setarg 7 
+0x6bd5 021174 istore 1 ,contw 
+0x6bd6 021175 fetch 2 ,mem_sdp_transactionid 
+0x6bd7 021176 istore 2 ,contw 
+0x6bd8 021180 setarg 0x0500 
+0x6bd9 021181 istore 2 ,contw 
+0x6bda 021184 setarg 0x0200 
+0x6bdb 021185 istore 2 ,contw 
+0x6bdc 021189 setarg 0x000035 
+0x6bdd 021190 istore 3 ,contw 
+0x6bde 021191 rtn 
+:      021193 servicesearchattribute_req_attributelist_loop:
+0x6bdf 021194 ifetch 1 ,contr 
+0x6be0 021195 istore 1 ,contw 
+0x6be1 021196 increase 1 ,regb 
+0x6be2 021197 increase -1 ,rega 
+0x6be3 021198 branch servicesearchattribute_req_check_next_ctn ,zero 
+0x6be4 021199 loop servicesearchattribute_req_attributelist_loop 
+:      021200 servicesearchattribute_req_check_next_ctn:
+0x6be5 021201 copy contw ,timeup 
+0x6be6 021202 copy regb ,pdata 
+0x6be7 021203 store 2 ,mem_sdp_continue_byte 
+0x6be8 021204 copy rega ,pdata 
+0x6be9 021205 store 2 ,mem_sdp_attribute_maxbyte 
+0x6bea 021206 branch answer_attributelist_with_ctn_bytes ,blank 
+0x6beb 021207 branch answer_attributelist_with_ctn_end ,user 
+0x6bec 021208 copy timeup ,contw 
+:      021209 servicesearchattribute_req_check_handle:
+0x6bed 021210 increase 1 ,queue 
+0x6bee 021211 fetch 1 ,mem_handle_humber 
+0x6bef 021212 isub queue ,null 
+0x6bf0 021213 nbranch servicesearchattribute_req_next_handle ,zero 
+0x6bf1 021214 branch answer_attributelist_end_long 
+:      021216 servicesearchattribute_req_attributelist_loop_continue:
+0x6bf2 021217 ifetch 1 ,contr 
+0x6bf3 021218 istore 1 ,contw 
+0x6bf4 021219 increase 1 ,regb 
+0x6bf5 021220 increase -1 ,rega 
+0x6bf6 021221 branch servicesearchattribute_req_check_next_ctn_continue ,zero 
+0x6bf7 021222 loop servicesearchattribute_req_attributelist_loop_continue 
+:      021223 servicesearchattribute_req_check_next_ctn_continue:
+0x6bf8 021224 copy contw ,timeup 
+0x6bf9 021225 copy regb ,pdata 
+0x6bfa 021226 store 2 ,mem_sdp_continue_byte 
+0x6bfb 021227 copy rega ,pdata 
+0x6bfc 021228 store 2 ,mem_sdp_attribute_maxbyte 
+0x6bfd 021229 branch answer_attributelist_with_ctn_bytes_continue ,blank 
+0x6bfe 021230 branch answer_attributelist_with_ctn_end ,user 
+0x6bff 021231 copy timeup ,contw 
+:      021232 servicesearchattribute_req_check_handle_continue:
+0x6c00 021233 increase 1 ,queue 
+0x6c01 021234 fetch 1 ,mem_handle_humber 
+0x6c02 021235 isub queue ,null 
+0x6c03 021236 nbranch servicesearchattribute_req_next_handle_continue ,zero 
+0x6c04 021237 branch answer_attributelist_end_long_continue 
+:      021239 servicesearchattribute_req_next_handle:
+0x6c05 021240 arg mem_handle_list ,contr 
+0x6c06 021241 lshift2 queue ,pdata 
+0x6c07 021242 iadd contr ,contr 
+0x6c08 021243 ifetch 4 ,contr 
+0x6c09 021244 iforce temp 
+0x6c0a 021245 call search_handle 
+0x6c0b 021246 copy contr ,timeup 
+0x6c0c 021247 call sdp_get_data 
+0x6c0d 021248 add pdata ,3 ,loopcnt 
+0x6c0e 021249 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6c0f 021250 copy pdata ,rega 
+0x6c10 021251 fetch 2 ,mem_sdp_continue_byte 
+0x6c11 021252 copy pdata ,regb 
+0x6c12 021253 copy timeup ,contr 
+0x6c13 021254 branch servicesearchattribute_req_attributelist_loop 
+:      021256 servicesearchattribute_req_next_handle_continue:
+0x6c14 021257 arg mem_handle_list ,contr 
+0x6c15 021258 lshift2 queue ,pdata 
+0x6c16 021259 iadd contr ,contr 
+0x6c17 021260 ifetch 4 ,contr 
+0x6c18 021261 iforce temp 
+0x6c19 021262 call search_handle 
+0x6c1a 021263 copy contr ,timeup 
+0x6c1b 021264 call sdp_get_data 
+0x6c1c 021265 add pdata ,3 ,pdata 
+0x6c1d 021266 fetcht 2 ,mem_sdp_continue_byte 
+0x6c1e 021267 isub temp ,loopcnt 
+0x6c1f 021268 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x6c20 021269 copy pdata ,rega 
+0x6c21 021270 fetch 2 ,mem_sdp_continue_byte 
+0x6c22 021271 copy pdata ,regb 
+0x6c23 021272 copy timeup ,contr 
+0x6c24 021273 iadd contr ,contr 
+0x6c25 021274 branch servicesearchattribute_req_attributelist_loop_continue 
+:      021276 answer_attributelist_with_ctn_bytes:
+0x6c26 021277 arg 0 ,queue 
+0x6c27 021278 arg 0 ,regb 
+:      021279 answer_attributelist_calc_attribute_length:
+0x6c28 021280 arg mem_handle_list ,contr 
+0x6c29 021281 lshift2 queue ,pdata 
+0x6c2a 021282 iadd contr ,contr 
+0x6c2b 021283 ifetch 4 ,contr 
+0x6c2c 021284 iforce temp 
+0x6c2d 021285 call search_handle 
+0x6c2e 021286 call sdp_get_data 
+0x6c2f 021287 add pdata ,3 ,pdata 
+0x6c30 021288 iadd regb ,regb 
+0x6c31 021289 increase 1 ,queue 
+0x6c32 021290 fetch 1 ,mem_handle_humber 
+0x6c33 021291 isub queue ,null 
+0x6c34 021292 nbranch answer_attributelist_calc_attribute_length ,zero 
+0x6c35 021294 copy timeup ,contw 
+0x6c36 021295 force 2 ,pdata 
+0x6c37 021296 istore 1 ,contw 
+0x6c38 021297 fetch 2 ,mem_sdp_continue_byte 
+0x6c39 021298 byteswap pdata ,pdata 
+0x6c3a 021299 istore 2 ,contw 
+0x6c3b 021300 increase -3 ,contw 
+0x6c3c 021301 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6c3d 021302 add temp ,10 ,pdata 
+0x6c3e 021303 isub contw ,pdata 
+0x6c3f 021304 sub pdata ,0 ,pdata 
+0x6c40 021305 iforce rega 
+0x6c41 021307 deposit regb 
+0x6c42 021308 add temp ,9 ,regb 
+0x6c43 021309 istore 1 ,regb 
+0x6c44 021310 rshift8 pdata ,pdata 
+0x6c45 021311 add temp ,8 ,regb 
+0x6c46 021312 istore 1 ,regb 
+0x6c47 021313 increase 3 ,rega 
+0x6c48 021314 deposit rega 
+0x6c49 021315 add temp ,6 ,regb 
+0x6c4a 021316 istore 1 ,regb 
+0x6c4b 021317 rshift8 pdata ,pdata 
+0x6c4c 021318 add temp ,5 ,regb 
+0x6c4d 021319 istore 1 ,regb 
+0x6c4e 021320 increase 5 ,rega 
+0x6c4f 021321 deposit rega 
+0x6c50 021322 add temp ,4 ,regb 
+0x6c51 021323 istore 1 ,regb 
+0x6c52 021324 rshift8 pdata ,pdata 
+0x6c53 021325 add temp ,3 ,regb 
+0x6c54 021326 istore 1 ,regb 
+0x6c55 021327 increase 5 ,rega 
+0x6c56 021328 deposit rega 
+0x6c57 021329 store 2 ,mem_sdp_tx_pkt_length 
+0x6c58 021330 setarg 7 
+0x6c59 021331 istore 1 ,temp 
+0x6c5a 021332 setarg 0x36 
+0x6c5b 021333 add temp ,7 ,regb 
+0x6c5c 021334 istore 1 ,regb 
+0x6c5d 021335 add temp ,1 ,regb 
+0x6c5e 021336 fetch 2 ,mem_sdp_transactionid 
+0x6c5f 021337 istore 2 ,regb 
+0x6c60 021338 rtn 
+:      021340 answer_attributelist_with_ctn_bytes_continue:
+0x6c61 021341 arg 0 ,queue 
+0x6c62 021342 arg 0 ,regb 
+:      021343 answer_attributelist_calc_attribute_length_continue:
+0x6c63 021344 copy timeup ,contw 
+0x6c64 021345 force 2 ,pdata 
+0x6c65 021346 istore 1 ,contw 
+0x6c66 021347 fetch 2 ,mem_sdp_continue_byte 
+0x6c67 021348 byteswap pdata ,pdata 
+0x6c68 021349 istore 2 ,contw 
+0x6c69 021350 increase -3 ,contw 
+0x6c6a 021351 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6c6b 021352 add temp ,7 ,pdata 
+0x6c6c 021353 isub contw ,pdata 
+0x6c6d 021354 sub pdata ,0 ,pdata 
+0x6c6e 021355 iforce rega 
+0x6c6f 021357 deposit rega 
+0x6c70 021358 add temp ,6 ,regb 
+0x6c71 021359 istore 1 ,regb 
+0x6c72 021360 rshift8 pdata ,pdata 
+0x6c73 021361 add temp ,5 ,regb 
+0x6c74 021362 istore 1 ,regb 
+0x6c75 021363 increase 5 ,rega 
+0x6c76 021364 deposit rega 
+0x6c77 021365 add temp ,4 ,regb 
+0x6c78 021366 istore 1 ,regb 
+0x6c79 021367 rshift8 pdata ,pdata 
+0x6c7a 021368 add temp ,3 ,regb 
+0x6c7b 021369 istore 1 ,regb 
+0x6c7c 021370 increase 5 ,rega 
+0x6c7d 021371 deposit rega 
+0x6c7e 021372 store 2 ,mem_sdp_tx_pkt_length 
+0x6c7f 021373 setarg 7 
+0x6c80 021374 istore 1 ,temp 
+0x6c81 021375 add temp ,1 ,regb 
+0x6c82 021376 fetch 2 ,mem_sdp_transactionid 
+0x6c83 021377 istore 2 ,regb 
+0x6c84 021378 rtn 
+:      021380 answer_attributelist_with_ctn_end:
+0x6c85 021381 copy timeup ,contw 
+0x6c86 021382 force 0 ,pdata 
+0x6c87 021383 istore 1 ,contw 
+0x6c88 021384 increase -1 ,contw 
+0x6c89 021385 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6c8a 021386 add temp ,7 ,pdata 
+0x6c8b 021387 isub contw ,pdata 
+0x6c8c 021388 sub pdata ,0 ,pdata 
+0x6c8d 021389 iforce rega 
+0x6c8e 021391 deposit rega 
+0x6c8f 021392 add temp ,6 ,regb 
+0x6c90 021393 istore 1 ,regb 
+0x6c91 021394 rshift8 pdata ,pdata 
+0x6c92 021395 add temp ,5 ,regb 
+0x6c93 021396 istore 1 ,regb 
+0x6c94 021397 increase 3 ,rega 
+0x6c95 021398 deposit rega 
+0x6c96 021399 add temp ,4 ,regb 
+0x6c97 021400 istore 1 ,regb 
+0x6c98 021401 rshift8 pdata ,pdata 
+0x6c99 021402 add temp ,3 ,regb 
+0x6c9a 021403 istore 1 ,regb 
+0x6c9b 021404 increase 5 ,rega 
+0x6c9c 021405 deposit rega 
+0x6c9d 021406 store 2 ,mem_sdp_tx_pkt_length 
+0x6c9e 021408 setarg 7 
+0x6c9f 021409 istore 1 ,temp 
+0x6ca0 021411 fetch 2 ,mem_sdp_transactionid 
+0x6ca1 021412 add temp ,1 ,regb 
+0x6ca2 021413 istore 2 ,regb 
+0x6ca3 021414 rtn 
+:      021416 answer_attributelist_end_long:
+0x6ca4 021417 force 0 ,pdata 
+0x6ca5 021418 istore 1 ,contw 
+0x6ca6 021419 increase -1 ,contw 
+0x6ca7 021420 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6ca8 021421 add temp ,10 ,pdata 
+0x6ca9 021422 isub contw ,pdata 
+0x6caa 021423 sub pdata ,0 ,pdata 
+0x6cab 021424 iforce rega 
+0x6cac 021426 deposit rega 
+0x6cad 021427 add temp ,9 ,regb 
+0x6cae 021428 istore 1 ,regb 
+0x6caf 021429 rshift8 pdata ,pdata 
+0x6cb0 021430 add temp ,8 ,regb 
+0x6cb1 021431 istore 1 ,regb 
+0x6cb2 021433 increase 3 ,rega 
+0x6cb3 021434 deposit rega 
+0x6cb4 021435 add temp ,6 ,regb 
+0x6cb5 021436 istore 1 ,regb 
+0x6cb6 021437 rshift8 pdata ,pdata 
+0x6cb7 021438 add temp ,5 ,regb 
+0x6cb8 021439 istore 1 ,regb 
+0x6cb9 021440 increase 3 ,rega 
+0x6cba 021441 deposit rega 
+0x6cbb 021442 add temp ,4 ,regb 
+0x6cbc 021443 istore 1 ,regb 
+0x6cbd 021444 rshift8 pdata ,pdata 
+0x6cbe 021445 add temp ,3 ,regb 
+0x6cbf 021446 istore 1 ,regb 
+0x6cc0 021447 increase 5 ,rega 
+0x6cc1 021448 deposit rega 
+0x6cc2 021449 store 2 ,mem_sdp_tx_pkt_length 
+0x6cc3 021450 setarg 0x36 
+0x6cc4 021451 add temp ,7 ,regb 
+0x6cc5 021452 istore 1 ,regb 
+0x6cc6 021453 setarg 7 
+0x6cc7 021454 istore 1 ,temp 
+0x6cc8 021455 fetch 2 ,mem_sdp_transactionid 
+0x6cc9 021456 add temp ,1 ,regb 
+0x6cca 021457 istore 2 ,regb 
+0x6ccb 021458 rtn 
+:      021460 answer_attributelist_end_long_continue:
+0x6ccc 021461 force 0 ,pdata 
+0x6ccd 021462 istore 1 ,contw 
+0x6cce 021463 increase -1 ,contw 
+0x6ccf 021464 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x6cd0 021465 add temp ,7 ,pdata 
+0x6cd1 021466 isub contw ,pdata 
+0x6cd2 021467 sub pdata ,0 ,pdata 
+0x6cd3 021468 iforce rega 
+0x6cd4 021471 deposit rega 
+0x6cd5 021472 add temp ,6 ,regb 
+0x6cd6 021473 istore 1 ,regb 
+0x6cd7 021474 rshift8 pdata ,pdata 
+0x6cd8 021475 add temp ,5 ,regb 
+0x6cd9 021476 istore 1 ,regb 
+0x6cda 021477 increase 3 ,rega 
+0x6cdb 021478 deposit rega 
+0x6cdc 021479 add temp ,4 ,regb 
+0x6cdd 021480 istore 1 ,regb 
+0x6cde 021481 rshift8 pdata ,pdata 
+0x6cdf 021482 add temp ,3 ,regb 
+0x6ce0 021483 istore 1 ,regb 
+0x6ce1 021484 increase 5 ,rega 
+0x6ce2 021485 deposit rega 
+0x6ce3 021486 store 2 ,mem_sdp_tx_pkt_length 
+0x6ce4 021490 setarg 7 
+0x6ce5 021491 istore 1 ,temp 
+0x6ce6 021492 fetch 2 ,mem_sdp_transactionid 
+0x6ce7 021493 add temp ,1 ,regb 
+0x6ce8 021494 istore 2 ,regb 
+0x6ce9 021495 rtn 
+:      021497 patch_sdp_data_len:
+0x6cea 021498 copy contr ,timeup 
+0x6ceb 021499 ifetch 1 ,contr 
+0x6cec 021500 and pdata ,0x07 ,loopcnt 
+0x6ced 021501 rshift3 pdata ,pdata 
+0x6cee 021502 beq 6 ,patch_sdp_data_len_6 
+0x6cef 021503 beq 1 ,sdp_data_len_1 
+0x6cf0 021504 beq 4 ,sdp_data_len_6 
+0x6cf1 021505 beq 5 ,sdp_data_len_5 
+0x6cf2 021506 branch sdp_data_len_rtn 
+:      021507 patch_sdp_data_len_6:
+0x6cf3 021508 call patch_sdp_get_data_6 
+0x6cf4 021509 branch sdp_data_len_rtn 
+:      021510 patch_sdp_get_data_6:
+0x6cf5 021511 deposit loopcnt 
+0x6cf6 021512 beq 5 ,patch_sdp_get_data_6_8bit 
+0x6cf7 021513 beq 6 ,patch_sdp_get_data_6_16bit 
+0x6cf8 021514 force 3 ,loopcnt 
+0x6cf9 021515 branch sdp_get_data_1 
+:      021516 patch_sdp_get_data_6_8bit:
+0x6cfa 021517 ifetch 1 ,contr 
+0x6cfb 021518 increase 2 ,pdata 
+0x6cfc 021519 rtn 
+:      021520 patch_sdp_get_data_6_16bit:
+0x6cfd 021521 ifetch 2 ,contr 
+0x6cfe 021522 byteswap pdata ,pdata 
+0x6cff 021523 increase 3 ,pdata 
+0x6d00 021524 rtn 
+:      021526 sdp_send_spp_request:
+0x6d01 021527 call l2cap_get_sdp_tx_payload 
+0x6d02 021528 copy pdata ,contw 
+0x6d03 021529 setarg 6 
+0x6d04 021530 istore 1 ,contw 
+0x6d05 021531 setarg sdp_tid_spp 
+0x6d06 021532 istore 2 ,contw 
+0x6d07 021533 setarg 0x0f00 
+0x6d08 021534 istore 2 ,contw 
+0x6d09 021535 setarg 0x1a0535 
+0x6d0a 021536 istore 3 ,contw 
+0x6d0b 021537 setarg 0x0111 
+0x6d0c 021538 lshift16 pdata ,pdata 
+0x6d0d 021539 istore 4 ,contw 
+0x6d0e 021540 setarg 0x2600 
+0x6d0f 021541 istore 2 ,contw 
+0x6d10 021542 setarg 0x0335 
+0x6d11 021543 istore 2 ,contw 
+0x6d12 021544 setarg 0x0009 
+0x6d13 021545 istore 2 ,contw 
+0x6d14 021546 setarg 0x0004 
+0x6d15 021547 istore 2 ,contw 
+0x6d16 021548 jam 0x14 ,mem_sdp_tx_pkt_length 
+0x6d17 021549 rtn 
+:      021559 servicesearchattribute_res:
+0x6d18 021560 copy contr ,temp 
+0x6d19 021561 fetch 2 ,mem_sdp_transactionid 
+0x6d1a 021562 beq sdp_tid_spp ,servicesearchattribute_res_spp 
+0x6d1b 021565 branch srchfail 
+:      021567 servicesearchattribute_res_spp:
+0x6d1c 021568 copy temp ,contr 
+0x6d1d 021569 increase -3 ,timeup 
+0x6d1e 021570 copy timeup ,pdata 
+0x6d1f 021571 beq 2 ,srchfail 
+0x6d20 021572 call find_rfcomm_channel_number 
+0x6d21 021573 rtn user 
+0x6d22 021574 store 1 ,mem_remote_spp_channel 
+0x6d23 021575 jam recieve_ss_reasult_hf ,mem_message_to_uppersm 
+0x6d24 021576 rtn 
+:      021578 srchfail:
+0x6d25 021579 rtn 
+:      021585 find_rfcomm_channel_number:
+0x6d26 021586 enable user 
+0x6d27 021587 copy pdata ,loopcnt 
+0x6d28 021588 arg 0x0400 ,temp 
+:      021589 find_rfcomm_channel_number_loop:
+0x6d29 021590 ifetch 2 ,contr 
+0x6d2a 021591 isub temp ,null 
+0x6d2b 021592 branch find_rfcomm_channel_number_find_adl ,zero 
+0x6d2c 021593 increase -1 ,contr 
+0x6d2d 021594 loop find_rfcomm_channel_number_loop 
+0x6d2e 021595 rtn 
+:      021596 find_rfcomm_channel_number_find_adl:
+0x6d2f 021597 arg 0x0300 ,temp 
+:      021598 find_rfcomm_channel_number_loop2:
+0x6d30 021599 ifetch 2 ,contr 
+0x6d31 021600 isub temp ,null 
+0x6d32 021601 branch find_rfcomm_channel_number_find_rfcomm ,zero 
+0x6d33 021602 increase -1 ,contr 
+0x6d34 021603 loop find_rfcomm_channel_number_loop2 
+0x6d35 021604 rtn 
+:      021605 find_rfcomm_channel_number_find_rfcomm:
+0x6d36 021606 ifetch 1 ,contr 
+0x6d37 021607 ifetch 1 ,contr 
+0x6d38 021608 disable user 
+0x6d39 021609 rtn 
+:      021611 sdp_invalid_service_record_handle:
+0x6d3a 021612 setarg 0x0200 
+0x6d3b 021613 store 2 ,mem_sdp_error_code 
+0x6d3c 021614 branch sdp_error_response 
+:      021615 sdp_invalid_pdu_size:
+0x6d3d 021616 setarg 0x0400 
+0x6d3e 021617 store 2 ,mem_sdp_error_code 
+0x6d3f 021618 branch sdp_error_response 
+:      021619 sdp_insufficient_resource:
+0x6d40 021620 setarg 0x0600 
+0x6d41 021621 store 2 ,mem_sdp_error_code 
+0x6d42 021622 branch sdp_error_response 
+:      021623 sdp_invalid_reqest_syntax:
+0x6d43 021624 setarg 0x0300 
+0x6d44 021625 store 2 ,mem_sdp_error_code 
+:      021626 sdp_error_response:
+0x6d45 021627 call l2cap_get_sdp_tx_payload 
+0x6d46 021628 istore 1 ,contw 
+0x6d47 021629 fetch 2 ,mem_sdp_transactionid 
+0x6d48 021630 istore 2 ,contw 
+0x6d49 021631 setarg 0x0200 
+0x6d4a 021632 istore 2 ,contw 
+0x6d4b 021633 fetch 2 ,mem_sdp_error_code 
+0x6d4c 021634 istore 2 ,contw 
+0x6d4d 021635 jam 7 ,mem_sdp_tx_pkt_length 
+0x6d4e 021636 rtn 
+:      021638 ask_serviceclassid:
+0x6d4f 021639 set1 mark_ext_patch ,mark 
+0x6d50 021640 bpatch patch39_0 ,mem_patch39 
+0x6d51 021641 force 0 ,temp 
+0x6d52 021642 arg mem_uuid_search_pat ,contw 
+0x6d53 021643 call dataelementtype6 
+0x6d54 021644 branch asksrv_error ,zero 
+:      021645 classidloop:
+0x6d55 021646 ifetch 1 ,contr 
+0x6d56 021647 increase -1 ,rega 
+0x6d57 021648 increase -1 ,timeup 
+0x6d58 021649 compare 0x18 ,pdata ,0xf8 
+0x6d59 021650 nbranch asksrv_error ,true 
+0x6d5a 021651 compare 0x04 ,pdata ,0x07 
+0x6d5b 021652 nbranch cmp032 ,true 
+0x6d5c 021653 force 1 ,temp 
+:      021654 skip2bytes:
+0x6d5d 021655 ifetch 1 ,contr 
+0x6d5e 021656 increase -1 ,rega 
+0x6d5f 021657 increase -1 ,timeup 
+0x6d60 021658 bne 0x00 ,frstbwrong 
+0x6d61 021659 ifetch 1 ,contr 
+0x6d62 021660 increase -1 ,rega 
+0x6d63 021661 increase -1 ,timeup 
+0x6d64 021662 beq 0x00 ,cmpuuid 
+0x6d65 021663 branch scndbwrong 
+:      021664 frstbwrong:
+0x6d66 021665 increase 1 ,contr 
+0x6d67 021666 increase -1 ,rega 
+0x6d68 021667 increase -1 ,timeup 
+:      021668 scndbwrong:
+0x6d69 021669 increase 2 ,contr 
+0x6d6a 021670 increase -2 ,rega 
+0x6d6b 021671 increase -2 ,timeup 
+0x6d6c 021672 compare 0x00 ,temp ,0xff 
+0x6d6d 021673 branch loopornot ,true 
+0x6d6e 021674 increase 12 ,contr 
+0x6d6f 021675 increase -12 ,rega 
+0x6d70 021676 increase -12 ,timeup 
+0x6d71 021677 branch loopornot 
+:      021678 cmp032:
+0x6d72 021679 compare 0x02 ,pdata ,0x07 
+0x6d73 021680 nbranch cmp016 ,true 
+0x6d74 021681 branch skip2bytes 
+:      021682 cmp016:
+0x6d75 021683 compare 0x01 ,pdata ,0x07 
+0x6d76 021684 nbranch asksrv_error ,true 
+:      021685 cmpuuid:
+0x6d77 021686 ifetch 2 ,contr 
+0x6d78 021687 increase -2 ,rega 
+0x6d79 021688 increase -2 ,timeup 
+0x6d7a 021689 istore 2 ,contw 
+:      021690 uuidsize:
+0x6d7b 021691 compare 0x00 ,temp ,0xff 
+0x6d7c 021692 branch loopornot ,true 
+0x6d7d 021693 copy contr ,temp 
+0x6d7e 021694 set1 mark_ext_patch ,mark 
+0x6d7f 021695 bpatch patch39_1 ,mem_patch39 
+0x6d80 021696 ifetch 1 ,contr 
+0x6d81 021697 bne 0x00 ,wrong12b 
+0x6d82 021698 ifetch 1 ,contr 
+0x6d83 021699 bne 0x00 ,wrong12b 
+0x6d84 021700 ifetch 1 ,contr 
+0x6d85 021701 bne 0x10 ,wrong12b 
+0x6d86 021702 ifetch 1 ,contr 
+0x6d87 021703 bne 0x00 ,wrong12b 
+0x6d88 021704 ifetch 1 ,contr 
+0x6d89 021705 bne 0x80 ,wrong12b 
+0x6d8a 021706 ifetch 1 ,contr 
+0x6d8b 021707 bne 0x00 ,wrong12b 
+0x6d8c 021708 ifetch 1 ,contr 
+0x6d8d 021709 bne 0x00 ,wrong12b 
+0x6d8e 021710 ifetch 1 ,contr 
+0x6d8f 021711 bne 0x80 ,wrong12b 
+0x6d90 021712 ifetch 1 ,contr 
+0x6d91 021713 bne 0x5f ,wrong12b 
+0x6d92 021714 ifetch 1 ,contr 
+0x6d93 021715 bne 0x9b ,wrong12b 
+0x6d94 021716 ifetch 1 ,contr 
+0x6d95 021717 bne 0x34 ,wrong12b 
+0x6d96 021718 ifetch 1 ,contr 
+0x6d97 021719 beq 0xfb ,chck12dn 
+:      021720 wrong12b:
+0x6d98 021721 copy temp ,contr 
+:      021722 wrong12b1:
+0x6d99 021723 increase 12 ,contr 
+0x6d9a 021724 force 0x00 ,queue 
+0x6d9b 021725 force 0x00 ,temp 
+0x6d9c 021726 branch chck12dn 
+:      021727 chck12dn:
+0x6d9d 021728 increase -12 ,timeup 
+0x6d9e 021729 increase -12 ,rega 
+:      021730 loopornot:
+0x6d9f 021731 compare 0x00 ,rega ,0xff 
+0x6da0 021732 nbranch classidloop ,true 
+0x6da1 021733 force 0 ,pdata 
+0x6da2 021734 istore 2 ,contw 
+0x6da3 021735 rtn ,
+:      021736 asksrv_error:
+0x6da4 021737 arg 0xff ,temp 
+0x6da5 021738 rtn 
+:      021748 dataelementtype6:
+0x6da6 021749 ifetch 1 ,contr 
+0x6da7 021750 increase -1 ,timeup 
+0x6da8 021751 compare 0x30 ,pdata ,0xf8 
+0x6da9 021752 nbranch dsize_error ,true 
+0x6daa 021753 compare 0x07 ,pdata ,0x07 
+0x6dab 021754 branch dsize32 ,true 
+0x6dac 021755 compare 0x06 ,pdata ,0x07 
+0x6dad 021756 branch dsize16 ,true 
+0x6dae 021757 compare 0x05 ,pdata ,0x07 
+0x6daf 021758 nbranch dsize_error ,true 
+0x6db0 021759 ifetch 1 ,contr 
+0x6db1 021760 copy pdata ,rega 
+0x6db2 021761 increase -1 ,timeup 
+0x6db3 021762 branch dsize 
+:      021763 dsize32:
+0x6db4 021764 increase 2 ,contr 
+0x6db5 021765 increase -2 ,timeup 
+:      021766 dsize16:
+0x6db6 021767 ifetch 2 ,contr 
+0x6db7 021768 byteswap pdata ,rega 
+0x6db8 021769 increase -2 ,timeup 
+:      021770 dsize:
+0x6db9 021771 force 0x01 ,pdata 
+0x6dba 021772 rtn 
+:      021773 dsize_error:
+0x6dbb 021774 force 0x00 ,pdata 
+0x6dbc 021775 rtn 
+:      021785 empth_sa_rsp:
+0x6dbd 021786 setarg 0x03 
+0x6dbe 021787 store 1 ,mem_sdp_pduid 
+0x6dbf 021788 branch empty_response 
+:      021789 empty_ssa_rsp:
+0x6dc0 021790 setarg 0x07 
+0x6dc1 021791 store 1 ,mem_sdp_pduid 
+:      021792 empty_response:
+0x6dc2 021793 call l2cap_get_sdp_tx_payload 
+0x6dc3 021794 fetch 1 ,mem_sdp_pduid 
+0x6dc4 021795 istore 1 ,contw 
+0x6dc5 021796 copy pdata ,regb 
+0x6dc6 021797 fetch 2 ,mem_sdp_transactionid 
+0x6dc7 021798 istore 2 ,contw 
+0x6dc8 021800 setarg 0x0500 
+0x6dc9 021801 istore 2 ,contw 
+0x6dca 021802 compare 0x05 ,regb ,0xff 
+0x6dcb 021803 branch fullsearch ,true 
+0x6dcc 021804 compare 0x07 ,regb ,0xff 
+0x6dcd 021805 branch fullsearch ,true 
+0x6dce 021806 setarg 0x000000 
+0x6dcf 021807 istore 3 ,contw 
+0x6dd0 021808 istore 2 ,contw 
+0x6dd1 021809 branch outempty 
+:      021811 fullsearch:
+0x6dd2 021818 setarg 0x350200 
+0x6dd3 021819 istore 3 ,contw 
+0x6dd4 021824 setarg 0 
+0x6dd5 021825 istore 2 ,contw 
+:      021826 outempty:
+0x6dd6 021827 jam 10 ,mem_sdp_tx_pkt_length 
+0x6dd7 021828 rtn 
+:      021830 sdp_data_len:
+0x6dd8 021831 copy contr ,timeup 
+0x6dd9 021832 ifetch 1 ,contr 
+0x6dda 021833 and pdata ,0x7 ,loopcnt 
+0x6ddb 021834 rshift3 pdata ,pdata 
+0x6ddc 021835 beq 6 ,sdp_data_len_6 
+0x6ddd 021836 beq 1 ,sdp_data_len_1 
+0x6dde 021837 beq 4 ,sdp_data_len_6 
+0x6ddf 021838 beq 5 ,sdp_data_len_5 
+:      021839 sdp_data_len_rtn:
+0x6de0 021840 copy timeup ,contr 
+0x6de1 021841 rtn 
+:      021842 sdp_data_len_1:
+0x6de2 021843 call sdp_data_size 
+0x6de3 021844 increase 1 ,pdata 
+0x6de4 021845 branch sdp_data_len_rtn 
+:      021846 sdp_data_len_5:
+0x6de5 021847 force 2 ,pdata 
+0x6de6 021848 branch sdp_data_len_rtn 
+:      021849 sdp_data_len_6:
+0x6de7 021850 call sdp_get_data_6 
+0x6de8 021851 increase 2 ,pdata 
+0x6de9 021852 branch sdp_data_len_rtn 
+:      021854 sdp_get_data:
+0x6dea 021855 ifetch 1 ,contr 
+0x6deb 021856 and pdata ,0x7 ,loopcnt 
+0x6dec 021857 rshift3 pdata ,pdata 
+0x6ded 021858 beq 6 ,sdp_get_data_6 
+0x6dee 021859 beq 1 ,sdp_get_data_1 
+0x6def 021860 beq 5 ,sdp_get_data_6_8bit 
+0x6df0 021861 rtn 
+:      021862 sdp_get_data_1:
+0x6df1 021863 call sdp_data_size 
+0x6df2 021864 iforce loopcnt 
+0x6df3 021865 force 0 ,temp 
+:      021866 sdp_get_data_1_loop:
+0x6df4 021867 lshift8 temp ,temp 
+0x6df5 021868 ifetch 1 ,contr 
+0x6df6 021869 ior temp ,temp 
+0x6df7 021870 loop sdp_get_data_1_loop 
+0x6df8 021871 rtn 
+:      021872 sdp_get_data_6:
+0x6df9 021873 deposit loopcnt 
+0x6dfa 021874 beq 5 ,sdp_get_data_6_8bit 
+0x6dfb 021875 beq 6 ,sdp_get_data_6_16bit 
+0x6dfc 021876 force 3 ,loopcnt 
+0x6dfd 021877 branch sdp_get_data_1 
+:      021878 sdp_get_data_6_8bit:
+0x6dfe 021879 ifetch 1 ,contr 
+0x6dff 021880 rtn 
+:      021881 sdp_get_data_6_16bit:
+0x6e00 021882 ifetch 2 ,contr 
+0x6e01 021883 byteswap pdata ,pdata 
+0x6e02 021884 rtn 
+:      021887 sdp_data_size:
+0x6e03 021888 force 1 ,pdata 
+0x6e04 021889 copy loopcnt ,null 
+0x6e05 021890 rtn zero 
+:      021891 sdp_data_size_loop:
+0x6e06 021892 lshift pdata ,pdata 
+0x6e07 021893 loop sdp_data_size_loop 
+0x6e08 021894 rtn 
+:      021899 search_uuid:
+0x6e09 021900 iforce regc 
+0x6e0a 021901 set1 mark_ext_patch ,mark 
+0x6e0b 021902 bpatch patch39_2 ,mem_patch39 
+0x6e0c 021903 force 0 ,queue 
+0x6e0d 021904 fetch 2 ,mem_ui_uuid_table 
+0x6e0e 021905 iforce contr 
+0x6e0f 021906 arg mem_handle_list ,contw 
+:      021907 search_uuid_next:
+0x6e10 021908 disable user 
+0x6e11 021909 ifetch 1 ,contr 
+0x6e12 021910 rtn blank 
+0x6e13 021911 iforce loopcnt 
+:      021912 search_uuid_loop:
+0x6e14 021913 ifetch 2 ,contr 
+0x6e15 021914 isub regc ,null 
+0x6e16 021915 nbranch search_uuid_not_found ,zero 
+0x6e17 021916 enable user 
+:      021917 search_uuid_not_found:
+0x6e18 021918 loop search_uuid_loop 
+0x6e19 021919 ifetch 4 ,contr 
+0x6e1a 021920 nbranch search_uuid_nomatch ,user 
+0x6e1b 021921 istore 4 ,contw 
+0x6e1c 021922 increase 1 ,queue 
+:      021923 search_uuid_nomatch:
+0x6e1d 021924 call sdp_get_data 
+0x6e1e 021925 iadd contr ,contr 
+0x6e1f 021926 branch search_uuid_next 
+:      021929 search_handle:
+0x6e20 021930 set1 mark_ext_patch ,mark 
+0x6e21 021931 bpatch patch39_3 ,mem_patch39 
+0x6e22 021932 fetch 2 ,mem_ui_uuid_table 
+0x6e23 021933 iforce contr 
+:      021934 search_handle_loop:
+0x6e24 021935 ifetch 1 ,contr 
+0x6e25 021936 rtn blank 
+0x6e26 021937 lshift pdata ,pdata 
+0x6e27 021938 iadd contr ,contr 
+0x6e28 021939 ifetch 4 ,contr 
+0x6e29 021940 isub temp ,null 
+0x6e2a 021941 rtn zero 
+0x6e2b 021942 call sdp_get_data 
+0x6e2c 021943 iadd contr ,contr 
+0x6e2d 021944 branch search_handle_loop 
+:      021951 search_attrib:
+0x6e2e 021952 set1 mark_ext_patch ,mark 
+0x6e2f 021953 bpatch patch39_4 ,mem_patch39 
+0x6e30 021954 fetch 2 ,mem_ui_uuid_table 
+0x6e31 021955 iforce contr 
+:      021956 search_attrib_next:
+0x6e32 021957 ifetch 1 ,contr 
+0x6e33 021958 branch search_attrib_end ,blank 
+0x6e34 021959 iforce loopcnt 
+:      021960 search_attrib_loop:
+0x6e35 021961 ifetch 2 ,contr 
+0x6e36 021962 isub regc ,null 
+0x6e37 021963 branch search_attrib_found_uuid ,zero 
+0x6e38 021964 loop search_attrib_loop 
+0x6e39 021965 increase 4 ,contr 
+0x6e3a 021966 call sdp_get_data 
+0x6e3b 021967 iadd contr ,contr 
+0x6e3c 021968 branch search_attrib_next 
+:      021969 search_attrib_found_uuid:
+0x6e3d 021970 increase -1 ,loopcnt 
+0x6e3e 021971 lshift loopcnt ,pdata 
+0x6e3f 021972 iadd contr ,contr 
+0x6e40 021973 increase 4 ,contr 
+0x6e41 021974 call sdp_get_data 
+0x6e42 021975 iadd contr ,temp 
+:      021976 search_attrib_loop_attribs:
+0x6e43 021977 increase 1 ,contr 
+0x6e44 021978 ifetch 2 ,contr 
+0x6e45 021979 isub regb ,timeup 
+0x6e46 021981 setflag zero ,0 ,pdata 
+0x6e47 021982 copy timeup ,timeup 
+0x6e48 021983 rtn zero 
+0x6e49 021984 call sdp_data_len 
+0x6e4a 021985 iadd contr ,contr 
+0x6e4b 021986 deposit temp 
+0x6e4c 021987 isub contr ,null 
+0x6e4d 021988 branch search_attrib_end ,zero 
+0x6e4e 021989 branch search_attrib_loop_attribs 
+:      021990 search_attrib_end:
+0x6e4f 021991 force 0 ,contr 
+0x6e50 021992 force 0 ,pdata 
+0x6e51 021993 rtn 
+:      021999 search_handle_attrib:
+0x6e52 022000 set1 mark_ext_patch ,mark 
+0x6e53 022001 bpatch patch39_5 ,mem_patch39 
+0x6e54 022002 fetch 2 ,mem_ui_uuid_table 
+0x6e55 022003 iforce contr 
+:      022004 search_handle_attrib_next:
+0x6e56 022005 ifetch 1 ,contr 
+0x6e57 022006 branch search_handle_attrib_end ,blank 
+0x6e58 022007 lshift pdata ,pdata 
+0x6e59 022008 iadd contr ,contr 
+0x6e5a 022009 ifetch 4 ,contr 
+0x6e5b 022010 isub temp ,null 
+0x6e5c 022011 branch search_handl_attrib_found_handle ,zero 
+0x6e5d 022012 call sdp_get_data 
+0x6e5e 022013 iadd contr ,contr 
+0x6e5f 022014 branch search_handle_attrib_next 
+:      022015 search_handl_attrib_found_handle:
+0x6e60 022016 call sdp_get_data 
+0x6e61 022017 iadd contr ,temp 
+:      022018 search_handle_attrib_loop_attribs:
+0x6e62 022019 increase 1 ,contr 
+0x6e63 022020 ifetch 2 ,contr 
+0x6e64 022021 isub regb ,null 
+0x6e65 022022 rtn zero 
+0x6e66 022023 call sdp_data_len 
+0x6e67 022024 iadd contr ,contr 
+0x6e68 022025 deposit temp 
+0x6e69 022026 isub contr ,null 
+0x6e6a 022027 branch search_handle_attrib_end ,zero 
+0x6e6b 022028 branch search_handle_attrib_loop_attribs 
+:      022029 search_handle_attrib_end:
+0x6e6c 022030 force 0 ,contr 
+0x6e6d 022031 rtn 
+:      022036 function_g2:
+0x6e6e 022037 set1 mark_ext_patch ,mark 
+0x6e6f 022038 bpatch patch39_6 ,mem_patch39 
+0x6e70 022039 jam 80 ,mem_aes_cmac_data_length 
+0x6e71 022040 arg memdat ,contw 
+0x6e72 022041 arg mem_le_srand ,contr 
+0x6e73 022042 call memcpy16 
+0x6e74 022043 arg mem_le_pubkey_local_x_256 ,contr 
+0x6e75 022044 call memcpy32 
+0x6e76 022045 arg mem_le_pubkey_remote_x_256 ,contr 
+0x6e77 022046 call memcpy32 
+0x6e78 022047 call inverse_memdat 
+0x6e79 022048 arg mem_le_mrand ,contr 
+0x6e7a 022049 call store_inverse_k 
+0x6e7b 022050 call function_aes_cmac 
+0x6e7c 022052 arg mem_aes_cmac_temp ,contw 
+0x6e7d 022053 call load_inverse_result 
+0x6e7e 022054 setarg 1000000 
+0x6e7f 022055 copy pdata ,rega 
+0x6e80 022056 fetch 4 ,mem_aes_cmac_temp 
+0x6e81 022057 idiv rega 
+0x6e82 022058 call wait_div_end 
+0x6e83 022059 remainder pdata 
+0x6e84 022060 store 4 ,mem_gkey 
+0x6e85 022062 rtn 
+:      022064 function_f6_eb:
+0x6e86 022065 jam 65 ,mem_aes_cmac_data_length 
+0x6e87 022066 arg memdat ,contw 
+0x6e88 022067 call store_addr_common_a 
+0x6e89 022068 call store_addr_common_b 
+0x6e8a 022069 fetch 3 ,mem_le_pres + 1 
+0x6e8b 022070 istore 3 ,contw 
+0x6e8c 022073 call get_r 
+0x6e8d 022075 arg mem_le_mrand ,contr 
+0x6e8e 022076 call memcpy16 
+0x6e8f 022077 arg mem_le_srand ,contr 
+0x6e90 022078 call memcpy16 
+0x6e91 022079 call inverse_memdat 
+0x6e92 022080 arg mem_le_mackey ,contr 
+0x6e93 022081 arg mem_aes_cmac_k ,contw 
+0x6e94 022082 call memcpy16 
+0x6e95 022084 branch function_aes_cmac 
+:      022088 get_r:
+0x6e96 022089 fetch 4 ,mem_le_tk 
+0x6e97 022090 istore 4 ,contw 
+0x6e98 022091 call memset0_4 
+0x6e99 022092 branch memset0_8 
+:      022094 function_f6_ea:
+0x6e9a 022095 set1 mark_ext_patch ,mark 
+0x6e9b 022096 bpatch patch39_7 ,mem_patch39 
+0x6e9c 022097 jam 65 ,mem_aes_cmac_data_length 
+0x6e9d 022098 arg memdat ,contw 
+0x6e9e 022099 call store_addr_common_b 
+0x6e9f 022100 call store_addr_common_a 
+0x6ea0 022101 fetch 3 ,mem_le_preq + 1 
+0x6ea1 022102 istore 3 ,contw 
+0x6ea2 022105 call get_r 
+0x6ea3 022106 arg mem_le_srand ,contr 
+0x6ea4 022107 call memcpy16 
+0x6ea5 022108 arg mem_le_mrand ,contr 
+0x6ea6 022109 call memcpy16 
+0x6ea7 022110 call inverse_memdat 
+0x6ea8 022111 arg mem_le_mackey ,contr 
+0x6ea9 022112 arg mem_aes_cmac_k ,contw 
+0x6eaa 022113 call memcpy16 
+0x6eab 022115 call function_aes_cmac 
+0x6eac 022116 arg mem_aes_cmac_temp ,contw 
+0x6ead 022117 branch load_inverse_result 
+:      022119 function_f5:
+0x6eae 022120 jam 32 ,mem_aes_cmac_data_length 
+0x6eaf 022121 arg mem_le_dhkey_256 ,contr 
+0x6eb0 022122 arg memdat ,contw 
+0x6eb1 022123 call memcpy32 
+0x6eb2 022124 call inverse_memdat 
+0x6eb3 022125 arg mem_le_slat ,contr 
+0x6eb4 022126 call store_inverse_k 
+0x6eb5 022127 call function_aes_cmac 
+0x6eb6 022128 arg mem_aes_cmac_k ,contw 
+0x6eb7 022129 call store_aes_result 
+0x6eb8 022130 arg 1 ,temp 
+0x6eb9 022131 call function_f5_common 
+0x6eba 022132 arg mem_le_ltk ,contw 
+0x6ebb 022133 call load_inverse_result 
+0x6ebc 022134 arg 0 ,temp 
+0x6ebd 022135 call function_f5_common 
+0x6ebe 022136 arg mem_le_mackey ,contw 
+0x6ebf 022138 branch store_aes_result 
+:      022141 function_f5_common:
+0x6ec0 022142 set1 mark_ext_patch ,mark 
+0x6ec1 022143 bpatch patch3a_0 ,mem_patch3a 
+0x6ec2 022144 jam 53 ,mem_aes_cmac_data_length 
+0x6ec3 022145 setarg 0x100 
+0x6ec4 022146 store 2 ,memdat 
+0x6ec5 022147 call store_addr_common_b 
+0x6ec6 022148 call store_addr_common_a 
+0x6ec7 022149 arg mem_le_srand ,contr 
+0x6ec8 022150 call memcpy16 
+0x6ec9 022151 arg mem_le_mrand ,contr 
+0x6eca 022152 call memcpy16 
+0x6ecb 022154 setarg 0x6c65 
+0x6ecc 022155 istore 2 ,contw 
+0x6ecd 022156 setarg 0x6274 
+0x6ece 022157 istore 2 ,contw 
+0x6ecf 022158 istoret 1 ,contw 
+0x6ed0 022159 call inverse_memdat 
+0x6ed1 022160 branch function_aes_cmac 
+:      022162 store_addr_common_b:
+0x6ed2 022163 fetch 6 ,mem_le_lap 
+0x6ed3 022164 istore 6 ,contw 
+0x6ed4 022165 fetch 1 ,mem_le_conn_own_addr_type 
+0x6ed5 022166 istore 1 ,contw 
+0x6ed6 022167 rtn 
+:      022169 store_addr_common_a:
+0x6ed7 022170 fetch 6 ,mem_le_plap 
+0x6ed8 022171 istore 6 ,contw 
+0x6ed9 022176 fetch 1 ,mem_le_conn_peer_addr_type 
+0x6eda 022177 istore 1 ,contw 
+0x6edb 022178 rtn 
+:      022180 function_f4_ca:
+0x6edc 022181 jam 65 ,mem_aes_cmac_data_length 
+0x6edd 022182 fetch 1 ,mem_passkey_1bit 
+0x6ede 022183 store 1 ,memdat 
+0x6edf 022184 arg mem_le_pubkey_local_x_256 ,contr 
+0x6ee0 022185 call memcpy32 
+0x6ee1 022186 arg mem_le_pubkey_remote_x_256 ,contr 
+0x6ee2 022187 call memcpy32 
+0x6ee3 022188 call inverse_memdat 
+0x6ee4 022189 arg mem_le_mrand ,contr 
+0x6ee5 022190 call store_inverse_k 
+0x6ee6 022191 branch function_aes_cmac 
+:      022194 function_f4_cb:
+0x6ee7 022195 jam 65 ,mem_aes_cmac_data_length 
+0x6ee8 022196 fetch 1 ,mem_passkey_1bit 
+0x6ee9 022197 store 1 ,memdat 
+0x6eea 022198 arg mem_le_pubkey_remote_x_256 ,contr 
+0x6eeb 022199 call memcpy32 
+0x6eec 022200 arg mem_le_pubkey_local_x_256 ,contr 
+0x6eed 022201 call memcpy32 
+0x6eee 022202 call inverse_memdat 
+0x6eef 022203 arg mem_le_srand ,contr 
+0x6ef0 022204 call store_inverse_k 
+0x6ef1 022205 branch function_aes_cmac 
+:      022207 function_aes_cmac:
+0x6ef2 022208 set1 mark_ext_patch ,mark 
+0x6ef3 022209 bpatch patch3a_1 ,mem_patch3a 
+0x6ef4 022210 call function_aes_cmac_generate_subkey 
+0x6ef5 022214 fetch 1 ,mem_aes_cmac_data_length 
+0x6ef6 022215 copy pdata ,temp 
+:      022216 function_ceil16:
+0x6ef7 022217 increase 15 ,pdata 
+0x6ef8 022218 rshift4 pdata ,pdata 
+0x6ef9 022219 copy pdata ,regb 
+0x6efa 022220 branch function_aes_cmac_set_flag_0_balnk ,blank 
+0x6efb 022221 and temp ,0x0f ,pdata 
+0x6efc 022222 nbranch function_aes_cmac_set_flag_0 ,blank 
+0x6efd 022224 arg mem_aes_cmac_k1 ,regc 
+0x6efe 022225 arg memdat ,pdata 
+0x6eff 022226 increase -16 ,pdata 
+0x6f00 022229 iadd temp ,rega 
+0x6f01 022230 arg mem_aes_cmac_m_last ,contw 
+0x6f02 022231 arg 4 ,loopcnt 
+0x6f03 022232 call xor_loop 
+0x6f04 022236 branch function_aes_cmac_aes 
+:      022238 function_aes_cmac_set_flag_0_balnk:
+0x6f05 022239 arg 1 ,regb 
+0x6f06 022240 arg 0 ,rega 
+0x6f07 022242 branch function_aes_cmac_set_flag_0_common 
+:      022245 function_aes_cmac_set_flag_0:
+0x6f08 022247 and temp ,0x0f ,rega 
+:      022248 function_aes_cmac_set_flag_0_common:
+0x6f09 022249 arg memdat ,pdata 
+0x6f0a 022250 iadd temp ,pdata 
+0x6f0b 022251 isub rega ,contr 
+0x6f0c 022253 arg mem_aes_cmac_temp ,contw 
+0x6f0d 022254 call function_aes_cmac_padding 
+0x6f0e 022256 arg mem_aes_cmac_k2 ,regc 
+0x6f0f 022257 arg mem_aes_cmac_temp ,rega 
+0x6f10 022258 arg mem_aes_cmac_m_last ,contw 
+0x6f11 022259 arg 4 ,loopcnt 
+0x6f12 022260 call xor_loop 
+:      022267 function_aes_cmac_aes:
+0x6f13 022272 call aes_clear_data 
+0x6f14 022273 call aes_init 
+0x6f15 022276 arg memdat ,contr 
+:      022277 function_aes_cmac_aes_loop:
+0x6f16 022279 increase -1 ,regb 
+0x6f17 022280 deposit regb 
+0x6f18 022281 branch function_aes_cmac_aes_loop_end ,blank 
+0x6f19 022282 call load_data128 
+0x6f1a 022283 call do_aes_cbc 
+0x6f1b 022284 branch function_aes_cmac_aes_loop 
+:      022286 function_aes_cmac_aes_loop_end:
+0x6f1c 022287 arg mem_aes_cmac_temp ,contw 
+0x6f1d 022288 call store_aes_result 
+0x6f1e 022289 arg mem_aes_cmac_m_last ,contr 
+0x6f1f 022290 call load_data128 
+0x6f20 022291 call aes_init 
+0x6f21 022292 arg mem_aes_cmac_temp ,contr 
+0x6f22 022293 call load_data128 
+0x6f23 022294 branch do_aes_cbc 
+:      022298 load_inverse_result:
+0x6f24 022300 copy contw ,rega 
+0x6f25 022301 call store_aes_result 
+0x6f26 022303 arg 16 ,loopcnt 
+0x6f27 022304 branch inverse_data 
+:      022306 store_inverse_k:
+0x6f28 022307 arg mem_aes_cmac_k ,contw 
+0x6f29 022308 call memcpy16 
+:      022309 inverse_k:
+0x6f2a 022310 arg 16 ,loopcnt 
+0x6f2b 022311 arg mem_aes_cmac_k ,rega 
+0x6f2c 022312 branch inverse_data 
+:      022314 inverse_memdat:
+0x6f2d 022315 fetch 1 ,mem_aes_cmac_data_length 
+0x6f2e 022316 copy pdata ,loopcnt 
+0x6f2f 022317 arg memdat ,rega 
+0x6f30 022318 branch inverse_data 
+:      022320 bn_lshift_0_inverse:
+0x6f31 022321 ifetch 1 ,rega 
+0x6f32 022322 lshift pdata ,pdata 
+0x6f33 022323 isolate1 0 ,regc 
+0x6f34 022324 setflag true ,0 ,pdata 
+0x6f35 022325 isolate1 8 ,pdata 
+0x6f36 022326 setflag true ,0 ,regc 
+0x6f37 022327 istore 1 ,rega 
+0x6f38 022328 increase -1 ,rega 
+0x6f39 022329 loop bn_lshift_0_inverse 
+0x6f3a 022330 rtn 
+:      022332 function_aes_cmac_k1_inverse:
+0x6f3b 022333 arg mem_aes_cmac_k1 ,rega 
+:      022334 function_aes_cmac_inverse_common:
+0x6f3c 022335 increase 15 ,rega 
+0x6f3d 022336 force 16 ,loopcnt 
+0x6f3e 022337 force 0 ,regc 
+0x6f3f 022338 branch bn_lshift_0_inverse 
+:      022340 function_aes_cmac_k2_inverse:
+0x6f40 022341 arg mem_aes_cmac_k2 ,rega 
+0x6f41 022342 branch function_aes_cmac_inverse_common 
+:      022345 function_aes_cmac_generate_subkey:
+0x6f42 022346 arg mem_aes_cmac_k ,contr 
+0x6f43 022347 call load_key 
+0x6f44 022350 force regidx_xor ,regext_index 
+0x6f45 022351 call aes_clear 
+0x6f46 022352 call aes_clear_data 
+0x6f47 022353 call do_aes_ocb 
+0x6f48 022358 arg mem_aes_cmac_k1 ,contw 
+0x6f49 022359 call store_aes_result 
+:      022360 function_aes_cmac_k1:
+0x6f4a 022361 set1 mark_ext_patch ,mark 
+0x6f4b 022362 bpatch patch3a_2 ,mem_patch3a 
+0x6f4c 022363 fetch 1 ,mem_aes_cmac_k1 
+0x6f4d 022364 isolate1 7 ,pdata 
+0x6f4e 022365 nbranch function_aes_cmac_k1_0 ,true 
+0x6f4f 022366 call function_aes_cmac_k1_inverse 
+0x6f50 022369 arg mem_aes_cmac_k1 ,regc 
+0x6f51 022371 arg mem_aes_cmac_k1 ,contw 
+0x6f52 022374 call function_aes_cmac_xor_rb 
+0x6f53 022375 branch function_aes_cmac_k2 
+:      022376 function_aes_cmac_k1_0:
+0x6f54 022377 call function_aes_cmac_k1_inverse 
+:      022378 function_aes_cmac_k2:
+0x6f55 022380 arg mem_aes_cmac_k1 ,contr 
+0x6f56 022381 arg mem_aes_cmac_k2 ,contw 
+0x6f57 022382 call memcpy16 
+0x6f58 022383 fetch 1 ,mem_aes_cmac_k2 
+0x6f59 022384 isolate1 7 ,pdata 
+0x6f5a 022385 nbranch function_aes_cmac_k2_inverse ,true 
+0x6f5b 022386 call function_aes_cmac_k2_inverse 
+0x6f5c 022388 arg mem_aes_cmac_k2 ,regc 
+0x6f5d 022390 arg mem_aes_cmac_k2 ,contw 
+:      022396 function_aes_cmac_xor_rb:
+0x6f5e 022397 arg 3 ,loopcnt 
+:      022398 function_aes_cmac_xor_rb_loop:
+0x6f5f 022399 arg 0 ,temp 
+0x6f60 022400 call function_aes_cmac_xor_loop_common 
+0x6f61 022401 increase 4 ,regc 
+0x6f62 022402 loop function_aes_cmac_xor_rb_loop 
+0x6f63 022403 arg 0x8700 ,temp 
+0x6f64 022404 lshift16 temp ,temp 
+:      022405 function_aes_cmac_xor_loop_common:
+0x6f65 022406 ifetch 4 ,regc 
+0x6f66 022407 ixor temp ,pdata 
+0x6f67 022408 istore 4 ,contw 
+0x6f68 022409 rtn 
+:      022415 function_aes_cmac_padding:
+0x6f69 022416 set1 mark_ext_patch ,mark 
+0x6f6a 022417 bpatch patch3a_3 ,mem_patch3a 
+0x6f6b 022418 arg 16 ,loopcnt 
+0x6f6c 022419 arg 0 ,pdata 
+:      022420 function_aes_cmac_padding_loop:
+0x6f6d 022421 isub rega ,null 
+0x6f6e 022422 branch function_aes_cmac_padding_beq_length ,zero 
+0x6f6f 022423 branch function_aes_cmac_padding_big_length ,positive 
+0x6f70 022424 ifetcht 1 ,contr 
+0x6f71 022425 istoret 1 ,contw 
+:      022426 function_aes_cmac_padding_loop2:
+0x6f72 022427 increase 1 ,pdata 
+0x6f73 022428 loop function_aes_cmac_padding_loop 
+0x6f74 022429 rtn 
+:      022430 function_aes_cmac_padding_beq_length:
+0x6f75 022431 arg 0x80 ,temp 
+:      022432 function_aes_cmac_padding_common:
+0x6f76 022433 istoret 1 ,contw 
+0x6f77 022434 branch function_aes_cmac_padding_loop2 
+:      022436 function_aes_cmac_padding_big_length:
+0x6f78 022437 arg 0 ,temp 
+0x6f79 022438 branch function_aes_cmac_padding_common 
+:      022441 generate_kinit:
+0x6f7a 022442 call function_e22 
+0x6f7b 022443 arg mem_input_store ,contr 
+0x6f7c 022444 arg mem_kinit ,contw 
+0x6f7d 022445 branch memcpy16 
+:      022448 function_e21:
+0x6f7e 022449 disable user 
+0x6f7f 022450 call function_expand 
+0x6f80 022451 arg mem_random_number ,contr 
+0x6f81 022452 arg mem_x ,contw 
+0x6f82 022453 force 15 ,loopcnt 
+0x6f83 022454 call memcpy 
+0x6f84 022455 ifetch 1 ,contr 
+0x6f85 022456 xor_into 6 ,pdata 
+0x6f86 022457 istore 1 ,contw 
+0x6f87 022458 setarg mem_y 
+0x6f88 022459 store 2 ,memp_ar_input 
+0x6f89 022460 setarg mem_x 
+0x6f8a 022461 store 2 ,memp_ar_key 
+0x6f8b 022462 set1 mark_ar2 ,mark 
+0x6f8c 022463 branch function_ar 
+:      022467 function_e22:
+0x6f8d 022468 fetcht 1 ,mem_pin_length 
+0x6f8e 022469 force 16 ,regb 
+0x6f8f 022470 add temp ,6 ,regc 
+0x6f90 022471 sub regc ,16 ,null 
+0x6f91 022472 branch function_e22_pin_init ,positive 
+0x6f92 022473 force 16 ,regc 
+:      022474 function_e22_pin_init:
+0x6f93 022475 arg mem_x ,contw 
+:      022476 function_e22_genx_pin:
+0x6f94 022477 arg mem_pin ,contr 
+0x6f95 022478 copy temp ,loopcnt 
+0x6f96 022479 disable user 
+:      022480 function_e22_genx_loop:
+0x6f97 022481 ifetch 1 ,contr 
+0x6f98 022482 istore 1 ,contw 
+0x6f99 022483 increase -1 ,regb 
+0x6f9a 022484 branch function_e22_genx_end ,zero 
+0x6f9b 022485 loop function_e22_genx_loop 
+0x6f9c 022486 branch function_e22_genx_pin ,user 
+0x6f9d 022487 enable user 
+0x6f9e 022488 force 6 ,loopcnt 
+0x6f9f 022489 copy rega ,contr 
+0x6fa0 022490 branch function_e22_genx_loop 
+:      022491 function_e22_genx_end:
+0x6fa1 022492 arg mem_random_number ,contr 
+0x6fa2 022493 arg mem_y ,contw 
+0x6fa3 022494 call memcpy16 
+0x6fa4 022495 fetch 1 ,mem_y15 
+0x6fa5 022496 ixor regc ,pdata 
+0x6fa6 022497 store 1 ,mem_y15 
+0x6fa7 022498 setarg mem_y 
+0x6fa8 022499 store 2 ,memp_ar_input 
+0x6fa9 022500 setarg mem_x 
+0x6faa 022501 store 2 ,memp_ar_key 
+0x6fab 022502 set1 mark_ar2 ,mark 
+0x6fac 022503 branch function_ar 
+:      022508 function_e1:
+0x6fad 022509 disable user 
+0x6fae 022510 call function_expand 
+0x6faf 022511 branch function_hash 
+:      022513 function_e3:
+0x6fb0 022514 arg mem_aco ,rega 
+0x6fb1 022515 enable user 
+0x6fb2 022516 call function_expand 
+0x6fb3 022517 call function_hash 
+0x6fb4 022518 arg mem_input_store ,contr 
+0x6fb5 022519 arg mem_kc ,contw 
+0x6fb6 022520 branch memcpy16 
+:      022523 function_hash:
+0x6fb7 022524 setarg mem_random_number 
+0x6fb8 022525 store 2 ,memp_ar_input 
+0x6fb9 022526 setarg mem_link_key 
+0x6fba 022527 store 2 ,memp_ar_key 
+0x6fbb 022528 set0 mark_ar2 ,mark 
+0x6fbc 022529 call function_ar 
+0x6fbd 022530 arg mem_input_store ,rega 
+0x6fbe 022531 arg mem_random_number ,regb 
+0x6fbf 022532 arg mem_x ,contw 
+0x6fc0 022533 call xor16 
+0x6fc1 022534 arg mem_x ,rega 
+0x6fc2 022535 arg mem_y ,regb 
+0x6fc3 022536 copy regb ,contw 
+0x6fc4 022537 enable user 
+0x6fc5 022538 call add16 
+0x6fc6 022539 call key_offset 
+0x6fc7 022540 setarg mem_y 
+0x6fc8 022541 store 2 ,memp_ar_input 
+0x6fc9 022542 setarg mem_x 
+0x6fca 022543 store 2 ,memp_ar_key 
+0x6fcb 022544 set1 mark_ar2 ,mark 
+0x6fcc 022545 branch function_ar 
+:      022549 function_ar:
+0x6fcd 022550 jam 0 ,mem_ar_hround 
+0x6fce 022551 fetch 2 ,memp_ar_key 
+0x6fcf 022552 iforce contr 
+0x6fd0 022553 arg mem_key_store ,contw 
+0x6fd1 022554 call memcpy16 
+0x6fd2 022555 fetch 2 ,memp_ar_input 
+0x6fd3 022556 iforce contr 
+0x6fd4 022557 arg mem_input_store ,contw 
+0x6fd5 022558 call memcpy16 
+:      022560 function_ar_loop:
+0x6fd6 022561 call key_scheduling 
+0x6fd7 022562 disable user 
+0x6fd8 022563 bmark0 mark_ar2 ,function_ar_original 
+0x6fd9 022564 fetch 1 ,mem_ar_hround 
+0x6fda 022565 bne 4 ,function_ar_original 
+0x6fdb 022566 fetch 2 ,memp_ar_input 
+0x6fdc 022567 iforce regb 
+0x6fdd 022568 call xor_mod32_ar2 
+:      022569 function_ar_original:
+0x6fde 022570 call xor_mod32 
+0x6fdf 022571 call el_boxes 
+0x6fe0 022572 fetch 1 ,mem_ar_hround 
+0x6fe1 022573 increase 1 ,pdata 
+0x6fe2 022574 store 1 ,mem_ar_hround 
+0x6fe3 022576 call key_scheduling 
+0x6fe4 022577 enable user 
+0x6fe5 022578 call xor_mod32 
+0x6fe6 022579 call pht 
+0x6fe7 022580 call permute 
+0x6fe8 022581 call pht 
+0x6fe9 022582 call permute 
+0x6fea 022583 call pht 
+0x6feb 022584 call permute 
+0x6fec 022585 call pht 
+0x6fed 022586 fetch 1 ,mem_ar_hround 
+0x6fee 022587 increase 1 ,pdata 
+0x6fef 022588 store 1 ,mem_ar_hround 
+0x6ff0 022589 bne 16 ,function_ar_loop 
+0x6ff1 022590 call key_scheduling 
+0x6ff2 022591 disable user 
+0x6ff3 022592 branch xor_mod32 
+:      022596 key_scheduling:
+0x6ff4 022597 fetch 1 ,mem_ar_hround 
+0x6ff5 022598 arg mem_key_store ,contr 
+0x6ff6 022599 branch key_sched_zero ,blank 
+0x6ff7 022600 iforce regb 
+0x6ff8 022601 force 17 ,loopcnt 
+0x6ff9 022602 copy contr ,contw 
+:      022603 key_rotateloop:
+0x6ffa 022604 ifetch 1 ,contr 
+0x6ffb 022605 lshift3 pdata ,temp 
+0x6ffc 022606 rshift2 pdata ,pdata 
+0x6ffd 022607 rshift3 pdata ,pdata 
+0x6ffe 022608 ior temp ,pdata 
+0x6fff 022609 istore 1 ,contw 
+0x7000 022610 loop key_rotateloop 
+0x7001 022611 setarg mem_key_store 
+0x7002 022612 iadd regb ,contr 
+0x7003 022613 force 16 ,loopcnt 
+0x7004 022614 arg mem_round_key ,contw 
+:      022615 key_select_octet_loop:
+0x7005 022616 ifetch 1 ,contr 
+0x7006 022617 istore 1 ,contw 
+0x7007 022618 compare mem_key_store_end ,contr ,0xff 
+0x7008 022619 nbranch key_select_octet_nwrap ,true 
+0x7009 022620 increase -17 ,contr 
+:      022621 key_select_octet_nwrap:
+0x700a 022622 loop key_select_octet_loop 
+0x700b 022623 force 0 ,rega 
+0x700c 022624 add regb ,-1 ,regc 
+0x700d 022625 lshift2 regc ,regc 
+0x700e 022626 lshift2 regc ,regc 
+0x700f 022627 call enable_authrom 
+0x7010 022628 setarg mem_b_box 
+0x7011 022629 iadd regc ,regc 
+0x7012 022630 arg mem_round_key ,contw 
+0x7013 022631 force 16 ,loopcnt 
+:      022632 bias_round_key_loop:
+0x7014 022633 ifetcht 1 ,regc 
+0x7015 022634 ifetch 1 ,contw 
+0x7016 022635 iadd temp ,pdata 
+0x7017 022636 istore 1 ,contw 
+0x7018 022637 increase 1 ,regc 
+0x7019 022638 loop bias_round_key_loop 
+0x701a 022639 branch disable_authrom 
+:      022641 key_sched_zero:
+0x701b 022642 force 16 ,loopcnt 
+0x701c 022643 force 0 ,temp 
+:      022644 create_byte_16_loop:
+0x701d 022645 ifetch 1 ,contr 
+0x701e 022646 ixor temp ,temp 
+0x701f 022647 loop create_byte_16_loop 
+0x7020 022648 deposit temp 
+0x7021 022649 istore 1 ,contr 
+0x7022 022650 arg mem_key_store ,contr 
+0x7023 022651 arg mem_round_key ,contw 
+0x7024 022652 branch memcpy16 
+:      022654 xor_mod32:
+0x7025 022655 arg mem_round_key ,regb 
+:      022656 xor_mod32_ar2:
+0x7026 022657 force 16 ,loopcnt 
+0x7027 022658 arg mem_input_store ,rega 
+0x7028 022659 copy rega ,contw 
+:      022660 xor_mod32_loop:
+0x7029 022661 ifetcht 1 ,rega 
+0x702a 022662 ifetch 1 ,regb 
+0x702b 022663 ixor temp ,alarm 
+0x702c 022664 and loopcnt ,3 ,regc 
+0x702d 022665 nbranch xor_mod32_invert ,user 
+0x702e 022666 xor_into 3 ,regc 
+:      022667 xor_mod32_invert:
+0x702f 022668 sub regc ,1 ,regc 
+0x7030 022669 branch xor_even ,positive 
+0x7031 022670 iadd temp ,alarm 
+:      022671 xor_even:
+0x7032 022672 deposit alarm 
+0x7033 022673 istore 1 ,contw 
+0x7034 022674 increase 1 ,rega 
+0x7035 022675 increase 1 ,regb 
+0x7036 022676 loop xor_mod32_loop 
+0x7037 022677 rtn 
+:      022679 el_boxes:
+0x7038 022680 call enable_authrom 
+0x7039 022681 force 16 ,loopcnt 
+0x703a 022682 arg mem_input_store ,rega 
+:      022683 el_box_loop:
+0x703b 022684 ifetch 1 ,rega 
+0x703c 022685 arg mem_e_box ,contr 
+0x703d 022686 and loopcnt ,3 ,regc 
+0x703e 022687 sub regc ,1 ,null 
+0x703f 022688 branch e_boxes ,positive 
+0x7040 022689 arg mem_l_box ,contr 
+:      022690 e_boxes:
+0x7041 022691 iadd contr ,contr 
+0x7042 022692 ifetch 1 ,contr 
+0x7043 022693 istore 1 ,rega 
+0x7044 022694 increase 1 ,rega 
+0x7045 022695 loop el_box_loop 
+0x7046 022696 branch disable_authrom 
+:      022698 pht:
+0x7047 022699 force 8 ,loopcnt 
+0x7048 022700 arg mem_input_store ,contr 
+0x7049 022701 copy contr ,contw 
+:      022702 pht_loop:
+0x704a 022703 ifetch 1 ,contr 
+0x704b 022704 iforce rega 
+0x704c 022705 ifetch 1 ,contr 
+0x704d 022706 iforce regb 
+0x704e 022707 lshift rega ,pdata 
+0x704f 022708 iadd regb ,pdata 
+0x7050 022709 istore 1 ,contw 
+0x7051 022710 deposit rega 
+0x7052 022711 iadd regb ,pdata 
+0x7053 022712 istore 1 ,contw 
+0x7054 022713 loop pht_loop 
+0x7055 022714 rtn 
+:      022717 permute:
+0x7056 022718 setarg 0x8ae42c 
+0x7057 022719 iforce temp 
+0x7058 022720 force 7 ,loopcnt 
+0x7059 022721 call permute_exchange 
+0x705a 022722 setarg 0xd751b 
+0x705b 022723 iforce temp 
+0x705c 022724 force 5 ,loopcnt 
+0x705d 022725 call permute_exchange 
+0x705e 022726 fetch 1 ,mem_input_store + 15 
+0x705f 022727 iforce rega 
+0x7060 022728 fetch 1 ,mem_input_store + 3 
+0x7061 022729 store 1 ,mem_input_store + 15 
+0x7062 022730 deposit rega 
+0x7063 022731 store 1 ,mem_input_store + 3 
+0x7064 022732 rtn 
+:      022734 permute_exchange:
+0x7065 022735 and temp ,0xf ,regb 
+:      022736 permute_loop:
+0x7066 022737 and temp ,0xf ,pdata 
+0x7067 022738 arg mem_input_store ,contw 
+0x7068 022739 iadd contw ,contw 
+0x7069 022740 ifetch 1 ,contw 
+0x706a 022741 iforce regc 
+0x706b 022742 deposit rega 
+0x706c 022743 istore 1 ,contw 
+0x706d 022744 copy regc ,rega 
+0x706e 022745 rshift4 temp ,temp 
+0x706f 022746 loop permute_loop 
+0x7070 022747 setarg mem_input_store 
+0x7071 022748 iadd regb ,contw 
+0x7072 022749 deposit rega 
+0x7073 022750 istore 1 ,contw 
+0x7074 022751 rtn 
+:      022753 add16:
+0x7075 022754 enable user 
+0x7076 022755 branch xor_add16 
+:      022757 xor16:
+0x7077 022758 disable user 
+:      022759 xor_add16:
+0x7078 022760 force 16 ,loopcnt 
+:      022761 xoradd_loop:
+0x7079 022762 ifetcht 1 ,rega 
+0x707a 022763 ifetch 1 ,regb 
+0x707b 022764 branch xoradd_add ,user 
+0x707c 022765 ixor temp ,pdata 
+0x707d 022766 branch xoradd_store 
+:      022767 xoradd_add:
+0x707e 022768 iadd temp ,pdata 
+:      022769 xoradd_store:
+0x707f 022770 istore 1 ,contw 
+0x7080 022771 increase 1 ,rega 
+0x7081 022772 increase 1 ,regb 
+0x7082 022773 loop xoradd_loop 
+0x7083 022774 rtn 
+:      022777 function_expand:
+0x7084 022778 arg mem_y ,contw 
+0x7085 022779 ifetch 6 ,rega 
+0x7086 022780 istore 6 ,contw 
+0x7087 022781 branch expand_12 ,user 
+0x7088 022782 ifetch 6 ,rega 
+0x7089 022783 branch expand_cont 
+:      022784 expand_12:
+0x708a 022785 ifetch 6 ,contr 
+:      022786 expand_cont:
+0x708b 022787 istore 6 ,contw 
+0x708c 022788 ifetch 4 ,rega 
+0x708d 022789 istore 4 ,contw 
+0x708e 022790 rtn 
+:      022792 key_offset:
+0x708f 022793 arg mem_link_key ,contr 
+0x7090 022794 arg mem_x ,contw 
+0x7091 022795 arg 0 ,temp 
+0x7092 022796 setarg 0x8395a7 
+0x7093 022797 call concatenate_temp24 
+0x7094 022798 setarg 0xb3c1df 
+0x7095 022799 call concatenate_temp24 
+0x7096 022800 setarg 0xe5e9 
+0x7097 022801 call concatenate_temp16 
+0x7098 022802 copy temp ,regab 
+0x7099 022803 disable user 
+0x709a 022804 call key_addxor 
+0x709b 022805 copy regab ,temp 
+0x709c 022806 enable user 
+0x709d 022807 branch key_addxor 
+:      022809 key_addxor:
+0x709e 022810 force 8 ,loopcnt 
+:      022811 key_addxor_loop:
+0x709f 022812 ifetch 1 ,contr 
+0x70a0 022813 compare 1 ,loopcnt ,1 
+0x70a1 022814 branch key_high ,user 
+0x70a2 022815 branch key_xor ,true 
+:      022816 key_add:
+0x70a3 022817 iadd temp ,pdata 
+0x70a4 022818 branch key_store 
+:      022819 key_high:
+0x70a5 022820 branch key_add ,true 
+:      022821 key_xor:
+0x70a6 022822 ixor temp ,pdata 
+:      022823 key_store:
+0x70a7 022824 istore 1 ,contw 
+0x70a8 022825 rshift8 temp ,temp 
+0x70a9 022826 loop key_addxor_loop 
+0x70aa 022827 rtn 
+:      022829 copy_aco:
+0x70ab 022830 fetch 6 ,mem_input_store + 4 
+0x70ac 022831 store 6 ,mem_aco 
+0x70ad 022832 ifetch 6 ,contr 
+0x70ae 022833 istore 6 ,contw 
+0x70af 022834 rtn 
+:      022836 concatenate_temp24:
+0x70b0 022837 lshift8 temp ,temp 
+:      022838 concatenate_temp16:
+0x70b1 022839 lshift16 temp ,temp 
+0x70b2 022840 ior temp ,temp 
+0x70b3 022841 rtn 
+:      022844 loop1:
+0x70b4 022845 branch loop1 
+:      022849 generate_stk:
+0x70b5 022850 set1 mark_ext_patch ,mark 
+0x70b6 022851 bpatch patch3a_4 ,mem_patch3a 
+0x70b7 022852 call function_s1 
+0x70b8 022853 arg mem_le_ltk ,contw 
+0x70b9 022854 branch store_aes_result 
+:      022857 authenticate_rconfirm:
+0x70ba 022858 arg mem_le_srand ,contw 
+0x70bb 022859 branch authenticate_mconfirm ,master 
+0x70bc 022860 arg mem_le_mrand ,contw 
+:      022861 authenticate_mconfirm:
+0x70bd 022862 copy contr ,rega 
+0x70be 022863 call memcpy16 
+0x70bf 022864 call function_c1 
+0x70c0 022865 arg mem_le_rconfirm ,contr 
+0x70c1 022866 branch compare_res 
+:      022868 generate_confirm:
+0x70c2 022869 arg mem_le_mrand ,rega 
+0x70c3 022870 branch generate_mrand ,master 
+0x70c4 022871 arg mem_le_srand ,rega 
+:      022872 generate_mrand:
+0x70c5 022873 copy rega ,contw 
+0x70c6 022874 call generate_random 
+0x70c7 022875 branch function_c1 
+:      022877 generate_sk:
+0x70c8 022878 arg mem_le_skdm ,contr 
+0x70c9 022879 call load_data128 
+0x70ca 022880 arg mem_le_ltk ,contr 
+0x70cb 022881 call load_regext 
+0x70cc 022882 force 0x38 ,aes_ctrl 
+0x70cd 022883 force 0x0 ,aes_ctrl 
+0x70ce 022884 call wait_aes 
+0x70cf 022885 arg mem_le_sk ,contw 
+0x70d0 022886 branch store_aes_result 
+:      022889 first_block_counter:
+0x70d1 022890 force 0x49 ,pdata 
+0x70d2 022891 branch first_block 
+:      022892 first_block_data:
+0x70d3 022893 force 1 ,pdata 
+:      022894 first_block:
+0x70d4 022895 force regidx_data ,regext_index 
+0x70d5 022896 lshift8 temp ,regext 
+0x70d6 022897 ior regext ,regext 
+0x70d7 022898 increase 1 ,regext_index 
+0x70d8 022899 rshift8 temp ,regext 
+0x70d9 022900 rshift16 regext ,regext 
+0x70da 022901 fetch 2 ,mem_le_ivm 
+0x70db 022902 lshift16 ,pdata ,pdata 
+0x70dc 022903 ior regext ,regext 
+0x70dd 022904 increase 1 ,regext_index 
+0x70de 022905 ifetch 4 ,contr 
+0x70df 022906 iforce regext 
+0x70e0 022907 increase 1 ,regext_index 
+0x70e1 022908 ifetch 2 ,contr 
+0x70e2 022909 byteswap rega ,regext 
+0x70e3 022910 lshift16 regext ,regext 
+0x70e4 022911 ior regext ,regext 
+0x70e5 022912 increase 1 ,regext_index 
+0x70e6 022913 rtn 
+:      022917 generate_mic:
+0x70e7 022918 add regc ,1 ,contr 
+0x70e8 022919 ifetch 1 ,contr 
+0x70e9 022920 iforce rega 
+0x70ea 022921 call first_block_counter 
+0x70eb 022922 call do_aes_ocb 
+0x70ec 022924 force regidx_data ,regext_index 
+0x70ed 022925 ifetch 1 ,regc 
+0x70ee 022926 and_into 0x3 ,pdata 
+0x70ef 022927 lshift16 pdata ,regext 
+0x70f0 022928 set1 8 ,regext 
+0x70f1 022929 call clear_hidata 
+0x70f2 022930 call do_aes_cbc 
+0x70f3 022932 copy rega ,loopcnt 
+0x70f4 022933 add regc ,2 ,contr 
+0x70f5 022934 call padding_data 
+:      022935 generate_mic_loop:
+0x70f6 022936 call aes_load_data 
+0x70f7 022937 call do_aes_cbc 
+0x70f8 022938 deposit loopcnt 
+0x70f9 022939 branch generate_mic_end ,blank 
+0x70fa 022940 branch generate_mic_loop 
+:      022941 generate_mic_end:
+0x70fb 022942 force regidx_result ,regext_index 
+0x70fc 022943 deposit regext 
+0x70fd 022944 store 4 ,mem_le_mic 
+0x70fe 022945 rtn 
+:      022947 aes_crypt_data:
+0x70ff 022948 increase 1 ,rega 
+0x7100 022949 call first_block_data 
+0x7101 022950 copy regc ,contr 
+0x7102 022951 call aes_load_xor 
+0x7103 022952 call do_aes_ctr 
+0x7104 022953 call store_enc_data 
+0x7105 022954 increase 16 ,regc 
+0x7106 022955 increase -16 ,regb 
+0x7107 022956 branch aes_crypt_data ,positive 
+0x7108 022957 rtn 
+:      022959 le_encrypt:
+0x7109 022960 set1 mark_ext_patch ,mark 
+0x710a 022961 bpatch patch3a_5 ,mem_patch3a 
+0x710b 022962 arg mem_le_txheader ,regc 
+0x710c 022963 fetcht 5 ,mem_le_pcnt_tx 
+0x710d 022964 call generate_mic 
+0x710e 022965 force regidx_xor ,regext_index 
+0x710f 022966 iforce regext 
+0x7110 022967 force 0 ,rega 
+0x7111 022968 call first_block_data 
+0x7112 022969 call do_aes_ctr 
+0x7113 022970 arg mem_le_txpayload ,regc 
+0x7114 022971 fetch 1 ,mem_le_txlen 
+0x7115 022972 add pdata ,-1 ,regb 
+0x7116 022973 iadd regc ,contw 
+0x7117 022974 force regidx_result ,regext_index 
+0x7118 022975 deposit regext 
+0x7119 022976 istore 4 ,contw 
+0x711a 022977 call aes_crypt_data 
+0x711b 022978 fetch 1 ,mem_le_txlen 
+0x711c 022979 increase 4 ,pdata 
+0x711d 022980 store 1 ,mem_le_txlen 
+0x711e 022981 fetcht 5 ,mem_le_pcnt_tx 
+0x711f 022982 increase 1 ,temp 
+0x7120 022983 storet 5 ,mem_le_pcnt_tx 
+0x7121 022984 rtn 
+:      022986 le_decrypt:
+0x7122 022987 set1 mark_ext_patch ,mark 
+0x7123 022988 bpatch patch3a_6 ,mem_patch3a 
+0x7124 022989 fetch 1 ,mem_le_rxbuf + 1 
+0x7125 022990 sub pdata ,20 ,null 
+0x7126 022991 branch le_dec_cont ,positive 
+:      022992 le_dec_cont:
+0x7127 022993 arg mem_le_rxbuf + 2 ,regc 
+0x7128 022994 add pdata ,-1 ,regb 
+0x7129 022995 increase -4 ,pdata 
+0x712a 022996 store 1 ,mem_le_rxbuf + 1 
+0x712b 022997 iadd regc ,contr 
+0x712c 022998 ifetch 4 ,contr 
+0x712d 022999 force regidx_xor ,regext_index 
+0x712e 023000 iforce regext 
+0x712f 023001 force 0 ,rega 
+0x7130 023002 fetcht 5 ,mem_le_pcnt_rx 
+0x7131 023003 call first_block_data 
+0x7132 023004 call do_aes_ctr 
+0x7133 023005 force regidx_result ,regext_index 
+0x7134 023006 deposit regext 
+0x7135 023007 store 4 ,mem_le_peer_mic 
+0x7136 023008 call aes_crypt_data 
+0x7137 023009 arg mem_le_rxbuf ,regc 
+0x7138 023010 call generate_mic 
+0x7139 023011 fetcht 4 ,mem_le_peer_mic 
+0x713a 023012 isub temp ,pdata 
+0x713b 023013 nrtn blank 
+0x713c 023014 fetch 4 ,mem_le_last_mic 
+0x713d 023015 isub temp ,pdata 
+0x713e 023016 rtn blank 
+0x713f 023017 storet 4 ,mem_le_last_mic 
+0x7140 023018 fetch 5 ,mem_le_pcnt_rx 
+0x7141 023019 increase 1 ,pdata 
+0x7142 023020 store 5 ,mem_le_pcnt_rx 
+0x7143 023021 force 0 ,pdata 
+0x7144 023022 rtn 
+:      023024 wait_aes:
+0x7145 023025 nbranch wait_aes ,aes_ready 
+0x7146 023026 rtn 
+:      023028 do_aes_ocb:
+0x7147 023029 force 0x30 ,aes_ctrl 
+0x7148 023030 force 0x0 ,aes_ctrl 
+0x7149 023031 branch wait_aes 
+:      023033 do_aes_cbc:
+0x714a 023034 force 0x32 ,aes_ctrl 
+0x714b 023035 force 0x2 ,aes_ctrl 
+0x714c 023036 branch wait_aes 
+:      023038 do_aes_ctr:
+0x714d 023039 force 0x34 ,aes_ctrl 
+0x714e 023040 force 0x4 ,aes_ctrl 
+0x714f 023041 branch wait_aes 
+:      023044 aes_init:
+0x7150 023045 force 1 ,aes_ctrl 
+0x7151 023046 force 0 ,aes_ctrl 
+0x7152 023047 rtn 
+:      023048 function_s1:
+0x7153 023049 force regidx_data ,regext_index 
+0x7154 023050 fetch 4 ,mem_le_mrand 
+0x7155 023051 iforce regext 
+0x7156 023052 increase 1 ,regext_index 
+0x7157 023053 ifetch 4 ,contr 
+0x7158 023054 iforce regext 
+0x7159 023055 increase 1 ,regext_index 
+0x715a 023056 fetch 4 ,mem_le_srand 
+0x715b 023057 iforce regext 
+0x715c 023058 increase 1 ,regext_index 
+0x715d 023059 ifetch 4 ,contr 
+0x715e 023060 iforce regext 
+0x715f 023061 increase 1 ,regext_index 
+0x7160 023062 call aes_clear 
+0x7161 023063 increase -4 ,regext_index 
+0x7162 023064 fetch 4 ,mem_le_tk 
+0x7163 023065 copy pdata ,regext 
+0x7164 023066 increase 4 ,regext_index 
+0x7165 023067 force 0x38 ,aes_ctrl 
+0x7166 023068 force 0x8 ,aes_ctrl 
+0x7167 023069 branch wait_aes 
+:      023072 function_c1:
+0x7168 023073 set1 mark_ext_patch ,mark 
+0x7169 023074 bpatch patch3a_7 ,mem_patch3a 
+0x716a 023075 fetch 6 ,mem_le_lap 
+0x716b 023076 fetcht 6 ,mem_le_plap 
+0x716c 023077 branch function_c1_master ,master 
+0x716d 023078 fetch 6 ,mem_le_plap 
+0x716e 023079 fetcht 6 ,mem_le_lap 
+:      023080 function_c1_master:
+0x716f 023081 force regidx_xor ,regext_index 
+0x7170 023082 copy temp ,regext 
+0x7171 023083 increase 1 ,regext_index 
+0x7172 023084 rshift32 temp ,regext 
+0x7173 023085 lshift16 pdata ,pdata 
+0x7174 023086 ior regext ,regext 
+0x7175 023087 increase 1 ,regext_index 
+0x7176 023088 rshift32 pdata ,regext 
+0x7177 023089 increase 1 ,regext_index 
+0x7178 023090 force 0 ,regext 
+0x7179 023091 force 0 ,pdata 
+0x717a 023092 fetch 1 ,mem_le_conn_peer_addr_type 
+0x717b 023093 fetcht 1 ,mem_le_adv_own_addr_type 
+0x717c 023094 nbranch function_c1_irat ,master 
+0x717d 023096 fetch 1 ,mem_le_conn_own_addr_type 
+0x717e 023097 fetcht 1 ,mem_le_conn_peer_addr_type 
+:      023098 function_c1_irat:
+0x717f 023099 store 1 ,mem_le_iat 
+0x7180 023100 storet 1 ,mem_le_rat 
+0x7181 023101 force regidx_data ,regext_index 
+0x7182 023102 arg mem_le_iat ,regb 
+0x7183 023103 force 4 ,loopcnt 
+:      023104 function_c1_loop1:
+0x7184 023105 ifetch 4 ,rega 
+0x7185 023106 ifetcht 4 ,regb 
+0x7186 023107 ixor temp ,regext 
+0x7187 023108 increase 1 ,regext_index 
+0x7188 023109 increase 4 ,rega 
+0x7189 023110 increase 4 ,regb 
+0x718a 023111 loop function_c1_loop1 
+0x718b 023112 call aes_clear 
+0x718c 023113 increase -4 ,regext_index 
+0x718d 023114 fetch 4 ,mem_le_tk 
+0x718e 023115 copy pdata ,regext 
+0x718f 023116 increase 4 ,regext_index 
+0x7190 023117 force 0x38 ,aes_ctrl 
+0x7191 023118 force 0xc ,aes_ctrl 
+0x7192 023119 call wait_aes 
+0x7193 023121 call aes_clear_data 
+0x7194 023122 force 0x3a ,aes_ctrl 
+0x7195 023123 force 0x8 ,aes_ctrl 
+0x7196 023124 branch wait_aes 
+:      023126 padding_data:
+0x7197 023127 compare 0 ,loopcnt ,3 
+0x7198 023128 rtn true 
+0x7199 023129 deposit contr 
+0x719a 023130 iadd loopcnt ,contw 
+0x719b 023131 force 0 ,pdata 
+:      023132 padding_loop:
+0x719c 023133 istore 1 ,contw 
+0x719d 023134 increase 1 ,loopcnt 
+0x719e 023135 compare 0 ,loopcnt ,3 
+0x719f 023136 rtn true 
+0x71a0 023137 branch padding_loop 
+:      023139 aes_load_data:
+0x71a1 023140 force regidx_data ,regext_index 
+:      023141 load_data_loop:
+0x71a2 023142 deposit loopcnt 
+0x71a3 023143 branch load_data_padding ,blank 
+0x71a4 023144 ifetch 4 ,contr 
+0x71a5 023145 increase -4 ,loopcnt 
+:      023146 load_data_padding:
+0x71a6 023147 iforce regext 
+0x71a7 023148 increase 1 ,regext_index 
+0x71a8 023149 compare regidx_key ,regext_index ,0xf 
+0x71a9 023150 rtn true 
+0x71aa 023151 branch load_data_loop 
+:      023153 aes_load_xor:
+0x71ab 023154 force regidx_xor ,regext_index 
+0x71ac 023155 branch load_regext 
+:      023156 load_key:
+0x71ad 023157 force regidx_key ,regext_index 
+0x71ae 023158 branch load_regext 
+:      023159 load_data128:
+0x71af 023160 force regidx_data ,regext_index 
+:      023161 load_regext:
+0x71b0 023162 force 4 ,loopcnt 
+:      023163 load_regext_loop:
+0x71b1 023164 ifetch 4 ,contr 
+0x71b2 023165 iforce regext 
+0x71b3 023166 increase 1 ,regext_index 
+0x71b4 023167 loop load_regext_loop 
+0x71b5 023168 rtn 
+:      023170 load_sk:
+0x71b6 023171 arg mem_le_sk ,contr 
+0x71b7 023172 branch load_key 
+:      023174 clear_hidata:
+0x71b8 023175 force 4 ,loopcnt 
+0x71b9 023176 branch clear_data_rest 
+:      023178 aes_clear_data:
+0x71ba 023179 force regidx_data ,regext_index 
+:      023180 aes_clear:
+0x71bb 023181 force 4 ,loopcnt 
+:      023182 clear_loop:
+0x71bc 023183 force 0 ,regext 
+:      023184 clear_data_rest:
+0x71bd 023185 increase 1 ,regext_index 
+0x71be 023186 loop clear_loop 
+0x71bf 023187 rtn 
+:      023189 store_aes_result:
+0x71c0 023190 force regidx_result ,regext_index 
+0x71c1 023191 force 4 ,loopcnt 
+:      023192 send_aes_result_loop:
+0x71c2 023193 deposit regext 
+0x71c3 023194 istore 4 ,contw 
+0x71c4 023195 increase 1 ,regext_index 
+0x71c5 023196 loop send_aes_result_loop 
+0x71c6 023197 rtn 
+:      023199 store_enc_data:
+0x71c7 023200 force regidx_result ,regext_index 
+0x71c8 023201 copy regc ,contw 
+0x71c9 023202 add regb ,1 ,loopcnt 
+0x71ca 023203 sub loopcnt ,15 ,null 
+0x71cb 023204 branch store_enc_loop ,positive 
+0x71cc 023205 force 16 ,loopcnt 
+:      023206 store_enc_loop:
+0x71cd 023207 deposit regext 
+0x71ce 023208 sub loopcnt ,3 ,null 
+0x71cf 023209 branch store_enc_byte ,positive 
+0x71d0 023210 istore 4 ,contw 
+0x71d1 023211 increase -4 ,loopcnt 
+0x71d2 023212 rtn zero 
+0x71d3 023213 increase 1 ,regext_index 
+0x71d4 023214 branch store_enc_loop 
+:      023215 store_enc_byte:
+0x71d5 023216 istore 1 ,contw 
+0x71d6 023217 rshift8 pdata ,pdata 
+0x71d7 023218 loop store_enc_byte 
+0x71d8 023219 rtn 
+:      023222 compare_res:
+0x71d9 023223 force regidx_result ,regext_index 
+0x71da 023224 force 4 ,loopcnt 
+:      023225 compare_res_loop:
+0x71db 023226 ifetch 4 ,contr 
+0x71dc 023227 isub regext ,null 
+0x71dd 023228 nrtn zero 
+0x71de 023229 increase 1 ,regext_index 
+0x71df 023230 loop compare_res_loop 
+0x71e0 023231 force 0 ,null 
+0x71e1 023232 rtn 
+:      023234 enable_authrom:
+0x71e2 023235 hfetch 1 ,core_clkoff 
+0x71e3 023236 set0 clock_off_auth_rom ,pdata 
+0x71e4 023237 hstore 1 ,core_clkoff 
+0x71e5 023238 rtn 
+:      023240 disable_authrom:
+0x71e6 023241 hfetch 1 ,core_clkoff 
+0x71e7 023242 set1 clock_off_auth_rom ,pdata 
+0x71e8 023243 hstore 1 ,core_clkoff 
+0x71e9 023244 rtn 
+:      023246 init_memp:
+0x71ea 023247 arg mem_p ,contw 
+0x71eb 023248 setsect 0 ,0x3ffff 
+0x71ec 023249 setsect 1 ,0x3ffff 
+0x71ed 023250 setsect 2 ,0x3ffff 
+0x71ee 023251 setsect 3 ,0x3fbff 
+0x71ef 023252 istore 9 ,contw 
+0x71f0 023253 setsect 0 ,0x3ffff 
+0x71f1 023254 setsect 1 ,0x3ffff 
+0x71f2 023255 setsect 2 ,0x3ffff 
+0x71f3 023256 setsect 3 ,0x3ffff 
+0x71f4 023257 istore 9 ,contw 
+0x71f5 023258 setsect 0 ,0x3ffff 
+0x71f6 023259 setsect 1 ,0x3ffff 
+0x71f7 023260 setsect 2 ,0x3cfff 
+0x71f8 023261 setsect 3 ,0x3ffff 
+0x71f9 023262 istore 9 ,contw 
+0x71fa 023263 setsect 0 ,0x3ffff 
+0x71fb 023264 setsect 1 ,0x3ffff 
+0x71fc 023265 setsect 2 ,0x3ffef 
+0x71fd 023266 setsect 3 ,0x3ffff 
+0x71fe 023267 istore 9 ,contw 
+0x71ff 023268 setsect 0 ,0x3ffff 
+0x7200 023269 setsect 1 ,0x3ffff 
+0x7201 023270 setsect 2 ,0x3ffff 
+0x7202 023271 setsect 3 ,0x3ffff 
+0x7203 023272 istore 9 ,contw 
+0x7204 023273 setsect 0 ,0x3ffff 
+0x7205 023274 setsect 1 ,0x26c7f 
+0x7206 023275 setsect 2 ,0x146b 
+0x7207 023276 setsect 3 ,0x37bb3 
+0x7208 023277 istore 9 ,contw 
+0x7209 023278 setsect 0 ,0x1feb8 
+0x720a 023279 setsect 1 ,0x10c12 
+0x720b 023280 setsect 2 ,0x2b722 
+0x720c 023281 setsect 3 ,0x29fa6 
+0x720d 023282 istore 9 ,contw 
+0x720e 023283 setsect 0 ,0xe70f 
+0x720f 023284 setsect 1 ,0x16720 
+0x7210 023285 setsect 2 ,0x519e 
+0x7211 023286 setsect 3 ,0x19084 
+0x7212 023287 istore 9 ,contw 
+0x7213 023288 setsect 0 ,0x31012 
+0x7214 023289 setsect 1 ,0x360bf 
+0x7215 023290 setsect 2 ,0x3f0af 
+0x7216 023291 setsect 3 ,0x3d3 
+0x7217 023292 istore 9 ,contw 
+0x7218 023293 setsect 0 ,0x3a188 
+0x7219 023294 setsect 1 ,0x3ad0 
+0x721a 023295 setsect 2 ,0x3cbf2 
+0x721b 023296 setsect 3 ,0x243d9 
+0x721c 023297 istore 9 ,contw 
+0x721d 023298 setsect 0 ,0x2b030 
+0x721e 023299 setsect 1 ,0x36a03 
+0x721f 023300 setsect 2 ,0x11188 
+0x7220 023301 setsect 3 ,0x1e520 
+0x7221 023302 istore 9 ,contw 
+0x7222 023303 setsect 0 ,0x3a11e 
+0x7223 023304 setsect 1 ,0xfe5d 
+0x7224 023305 setsect 2 ,0xdd57 
+0x7225 023306 setsect 3 ,0x1ac93 
+0x7226 023307 istore 9 ,contw 
+0x7227 023308 setsect 0 ,0x11ed 
+0x7228 023309 setsect 1 ,0x218c4 
+0x7229 023310 setsect 2 ,0x8da7 
+0x722a 023311 setsect 3 ,0x257ff 
+0x722b 023312 istore 9 ,contw 
+0x722c 023313 setsect 0 ,0x3192b 
+0x722d 023314 setsect 1 ,0x34641 
+0x722e 023315 setsect 2 ,0x1be0c 
+0x722f 023316 setsect 3 ,0x366ad 
+0x7230 023317 istore 9 ,contw 
+0x7231 023318 setsect 0 ,0x1f83 
+0x7232 023319 setsect 1 ,0x15a23 
+0x7233 023320 setsect 2 ,0x3f9b0 
+0x7234 023321 setsect 3 ,0x3949 
+0x7235 023322 istore 9 ,contw 
+0x7236 023323 setsect 0 ,0x13a51 
+0x7237 023324 setsect 1 ,0x153fd 
+0x7238 023325 setsect 2 ,0x3372a 
+0x7239 023326 setsect 3 ,0xf1bb 
+0x723a 023327 istore 9 ,contw 
+0x723b 023328 setsect 0 ,0x3ae85 
+0x723c 023329 setsect 1 ,0x1eed9 
+0x723d 023330 setsect 2 ,0x9e66 
+0x723e 023331 setsect 3 ,0x1a8 
+0x723f 023332 istore 8 ,contw 
+0x7240 023333 rtn 
+:      023337 init_memp_256:
+0x7241 023338 arg mem_p_256 ,contw 
+0x7242 023339 setsect 0 ,0x3ffff 
+0x7243 023340 setsect 1 ,0x3ffff 
+0x7244 023341 setsect 2 ,0x3ffff 
+0x7245 023342 setsect 3 ,0x3ffff 
+0x7246 023343 istore 9 ,contw 
+0x7247 023344 setsect 0 ,0x3ffff 
+0x7248 023345 setsect 1 ,0x3f 
+0x7249 023346 setsect 2 ,0x0 
+0x724a 023347 setsect 3 ,0x0 
+0x724b 023348 istore 9 ,contw 
+0x724c 023349 setsect 0 ,0x0 
+0x724d 023350 setsect 1 ,0x0 
+0x724e 023351 setsect 2 ,0x1000 
+0x724f 023352 setsect 3 ,0x0 
+0x7250 023353 istore 9 ,contw 
+0x7251 023354 setsect 0 ,0x3ff00 
+0x7252 023355 setsect 1 ,0x3ffff 
+0x7253 023356 setsect 2 ,0x3ffcf 
+0x7254 023357 setsect 3 ,0x3ffff 
+0x7255 023358 istore 9 ,contw 
+0x7256 023359 setsect 0 ,0x3ffff 
+0x7257 023360 setsect 1 ,0x3ffff 
+0x7258 023361 setsect 2 ,0x3ffff 
+0x7259 023362 setsect 3 ,0x3ff 
+0x725a 023363 istore 9 ,contw 
+0x725b 023364 setsect 0 ,0x0 
+0x725c 023365 setsect 1 ,0x0 
+0x725d 023366 setsect 2 ,0x0 
+0x725e 023367 setsect 3 ,0x0 
+0x725f 023368 istore 9 ,contw 
+0x7260 023369 setsect 0 ,0x10000 
+0x7261 023370 setsect 1 ,0x0 
+0x7262 023371 setsect 2 ,0x3f000 
+0x7263 023372 setsect 3 ,0x3ffff 
+0x7264 023373 istore 9 ,contw 
+0x7265 023374 setsect 0 ,0x296ff 
+0x7266 023375 setsect 1 ,0x22630 
+0x7267 023376 setsect 2 ,0x3945d 
+0x7268 023377 setsect 3 ,0x3d284 
+0x7269 023378 istore 9 ,contw 
+0x726a 023379 setsect 0 ,0x333a0 
+0x726b 023380 setsect 1 ,0x4b7a 
+0x726c 023381 setsect 2 ,0x37d8 
+0x726d 023382 setsect 3 ,0x3c9dc 
+0x726e 023383 istore 9 ,contw 
+0x726f 023384 setsect 0 ,0x3a440 
+0x7270 023385 setsect 1 ,0x1b958 
+0x7271 023386 setsect 2 ,0x38bce 
+0x7272 023387 setsect 3 ,0x1091f 
+0x7273 023388 istore 9 ,contw 
+0x7274 023389 setsect 0 ,0x2e12c 
+0x7275 023390 setsect 1 ,0x1f47c 
+0x7276 023391 setsect 2 ,0x356b1 
+0x7277 023392 setsect 3 ,0x2fd47 
+0x7278 023393 istore 9 ,contw 
+0x7279 023394 setsect 0 ,0x6837 
+0x727a 023395 setsect 1 ,0x2ed90 
+0x727b 023396 setsect 2 ,0x1ecec 
+0x727c 023397 setsect 3 ,0x1acc5 
+0x727d 023398 istore 9 ,contw 
+0x727e 023399 setsect 0 ,0x23357 
+0x727f 023400 setsect 1 ,0x18af3 
+0x7280 023401 setsect 2 ,0xf9e1 
+0x7281 023402 setsect 3 ,0x129f0 
+0x7282 023403 istore 9 ,contw 
+0x7283 023404 setsect 0 ,0x2e7eb 
+0x7284 023405 setsect 1 ,0x3e6e3 
+0x7285 023406 setsect 2 ,0x3e1a7 
+0x7286 023407 setsect 3 ,0x10b8b 
+0x7287 023408 istore 9 ,contw 
+0x7288 023409 setsect 0 ,0x24fe3 
+0x7289 023410 setsect 1 ,0x20ef 
+0x728a 023411 setsect 2 ,0x1b5a6 
+0x728b 023412 setsect 3 ,0xdc2f 
+0x728c 023413 istore 9 ,contw 
+0x728d 023414 setsect 0 ,0x13860 
+0x728e 023415 setsect 1 ,0x2bd69 
+0x728f 023416 setsect 2 ,0x391a 
+0x7290 023417 setsect 3 ,0x1b222 
+0x7291 023418 istore 9 ,contw 
+0x7292 023419 rtn 
+:      023423 shutter_init:
+0x7293 023425 rtn wake 
+0x7294 023426 call init_shutter_le_att_list 
+0x7295 023427 call shutter_init_param 
+0x7296 023428 hjam 0x00 ,core_gpio_sel1 
+0x7297 023429 call shutter_key_init 
+0x7298 023430 setarg shutter_le_before_hibernate 
+0x7299 023431 store 2 ,mem_cb_before_hibernate 
+0x729a 023433 setarg shutter_le_process_lpm_before 
+0x729b 023434 store 2 ,mem_cb_before_lpm 
+0x729c 023436 setarg shutter_le_discovery_timeout_sleep 
+0x729d 023437 store 2 ,mem_cb_discovry_timeout 
+0x729e 023439 setarg scale_process_idle 
+0x729f 023440 store 2 ,mem_cb_idle_process 
+0x72a0 023442 setarg scale_process 
+0x72a1 023443 store 2 ,mem_cb_le_process 
+0x72a2 023445 setarg scale_process_bb_event 
+0x72a3 023446 store 2 ,mem_cb_bb_event_process 
+0x72a4 023448 setarg shutter_le_scale_lpm_lock 
+0x72a5 023449 store 2 ,mem_cb_check_wakelock 
+0x72a6 023451 setarg shutter_le_send_att_handle_value_notification 
+0x72a7 023452 store 2 ,mem_cb_update_notify_value 
+:      023454 shutter_init0:
+0x72a8 023455 setarg shutter_le_receive_data 
+0x72a9 023456 store 2 ,mem_cb_att_write 
+0x72aa 023457 call shutter_le_queue_init 
+0x72ab 023458 jam 0 ,mem_lpm_mult 
+0x72ac 023459 jam 0 ,mem_shutter_conn_update_timer 
+0x72ad 023460 set1 mark_ext_patch ,mark 
+0x72ae 023461 bpatch patch3b_0 ,mem_patch3b 
+0x72af 023462 fetch 1 ,mem_hard_soft_switch_case 
+0x72b0 023463 beq hard_switch ,shutter_le_hard_switch_power_on_signal 
+0x72b1 023464 call shutter_ui_led_init 
+0x72b2 023465 call ui_button_init 
+0x72b3 023466 call ui_button_polling 
+0x72b4 023467 jam shutter_power_up ,mem_shutter_powerup_flag 
+0x72b5 023468 fetch 2 ,mem_ui_state_map 
+0x72b6 023469 rtnbit1 ui_state_btn_down 
+0x72b7 023470 branch app_enter_hibernate 
+:      023472 shutter_le_hard_switch_power_on_signal:
+0x72b8 023474 jam shutter_power_on ,mem_shutter_powerup_flag 
+0x72b9 023475 jam 1 ,mem_enable_key_scan 
+0x72ba 023476 call shutter_ui_led_init 
+0x72bb 023477 setarg mem_power_on_led_style 
+0x72bc 023478 call shutter_ui_led_send 
+:      023479 in_poweron_hard_switch_led:
+0x72bd 023480 call ui_led_blink_polling 
+0x72be 023481 fetch 1 ,mem_led_blink_count 
+0x72bf 023482 nbranch in_poweron_hard_switch_led ,blank 
+:      023483 shutter_le_soft_switch_power_on_signal:
+0x72c0 023485 jam on ,mem_le_adv_enable 
+0x72c1 023486 setarg 0 
+0x72c2 023487 store 4 ,mem_shutter_send_data 
+0x72c3 023488 call shutter_ui_led_init 
+0x72c4 023491 fetch 2 ,mem_le_sleep_timeout 
+0x72c5 023492 store 2 ,mem_le_sleep_timeout_timer_count 
+0x72c6 023493 call shutter_le_fast_advertise 
+0x72c7 023495 jam pair_unknown ,mem_pair_state 
+0x72c8 023496 call le_modified_name 
+0x72c9 023497 fetch 6 ,mem_le_lap 
+0x72ca 023498 call shutter_byteswap 
+0x72cb 023499 call shutter_updata_mac 
+0x72cc 023500 rtn 
+:      023504 shutter_le_adv_interval_set:
+0x72cd 023505 store 2 ,mem_lpm_interval 
+0x72ce 023506 increase -4 ,pdata 
+0x72cf 023507 store 2 ,mem_le_adv_interval_min 
+0x72d0 023508 store 2 ,mem_le_adv_interval_max 
+0x72d1 023509 rtn 
+:      023511 shutter_updata_mac:
+0x72d2 023512 fetcht 2 ,mem_adv_lap_ptr 
+0x72d3 023513 rtn blank 
+0x72d4 023514 istore 6 ,temp 
+0x72d5 023515 rtn 
+:      023517 shutter_byteswap:
+0x72d6 023518 store 6 ,mem_tmp_buffer 
+0x72d7 023519 fetch 1 ,mem_tmp_buffer 
+0x72d8 023520 store 1 ,mem_tmp_buffer + 11 
+0x72d9 023521 ifetch 1 ,contr 
+0x72da 023522 store 1 ,mem_tmp_buffer + 10 
+0x72db 023523 ifetch 1 ,contr 
+0x72dc 023524 store 1 ,mem_tmp_buffer + 9 
+0x72dd 023525 ifetch 1 ,contr 
+0x72de 023526 store 1 ,mem_tmp_buffer + 8 
+0x72df 023527 ifetch 1 ,contr 
+0x72e0 023528 store 1 ,mem_tmp_buffer + 7 
+0x72e1 023529 ifetch 1 ,contr 
+0x72e2 023530 store 1 ,mem_tmp_buffer + 6 
+0x72e3 023531 fetch 6 ,mem_tmp_buffer + 6 
+0x72e4 023532 rtn 
+:      023534 shutter_le_fast_advertise:
+0x72e5 023535 jam 0 ,mem_shutter_key_data_flag_1 
+0x72e6 023536 fetch 2 ,mem_le_fast_adv_timeout_timer_count 
+0x72e7 023537 nbranch in_shutter_skip_set ,blank 
+0x72e8 023538 setarg mem_fast_adv_led_style 
+0x72e9 023539 call shutter_ui_led_send 
+0x72ea 023540 setarg fast_adv_interval_value 
+0x72eb 023541 call shutter_le_adv_interval_set 
+:      023542 in_shutter_skip_set:
+0x72ec 023543 fetch 2 ,mem_le_fast_adv_timeout 
+0x72ed 023544 store 2 ,mem_le_fast_adv_timeout_timer_count 
+0x72ee 023545 rtn 
+:      023547 shutter_le_scale_lpm_lock:
+0x72ef 023554 fetch 1 ,mem_scale_txbuff_inuse 
+0x72f0 023555 beq 1 ,app_get_lpm_wake_lock 
+0x72f1 023556 fetch 1 ,mem_queue_ele_num 
+0x72f2 023557 nbranch app_get_lpm_wake_lock ,blank 
+0x72f3 023558 branch app_put_lpm_wake_lock 
+:      023560 scale_process_bb_event:
+0x72f4 023561 copy regc ,pdata 
+0x72f5 023563 beq bt_evt_button_up ,shutter_bb_event_button_up 
+0x72f6 023564 beq bt_evt_button_long_pressed ,shutter_evt_button_long_pressed 
+0x72f7 023565 beq bt_evt_le_connected ,scale_process_le_conn 
+0x72f8 023566 beq bt_evt_le_disconnected ,scale_process_le_discon 
+0x72f9 023567 and pdata ,0x0f ,temp 
+0x72fa 023568 and_into bt_evt_timer_mask ,pdata 
+0x72fb 023569 beq bt_evt_timer_init ,shutter_le_bb_event_timer 
+0x72fc 023570 rtn 
+:      023572 shutter_le_bb_event_timer:
+0x72fd 023573 storet 1 ,mem_app_evt_timer_count 
+:      023574 shutter_le_bb_event_100ms_loop:
+0x72fe 023575 fetch 1 ,mem_app_evt_timer_count 
+0x72ff 023576 rtn blank 
+0x7300 023577 increase -1 ,pdata 
+0x7301 023578 store 1 ,mem_app_evt_timer_count 
+0x7302 023579 set1 mark_ext_patch ,mark 
+0x7303 023580 bpatch patch3b_1 ,mem_patch3b 
+0x7304 023581 call ui_button_check_long_press 
+0x7305 023582 call shutter_le_shutter_fast_adv_timer 
+0x7306 023583 call shutter_le_sleep_timer 
+0x7307 023584 call shutter_ui_button_timeout_timer 
+0x7308 023585 call shutter_ui_power_timeout_timer 
+0x7309 023586 call shutter_app_updata_le_param_timer 
+0x730a 023587 call shutter_conn_update_timer 
+0x730b 023588 branch shutter_le_bb_event_100ms_loop 
+:      023590 shutter_conn_update_timer:
+0x730c 023591 fetch 1 ,mem_shutter_conn_update_timer 
+0x730d 023592 rtn blank 
+0x730e 023593 increase -1 ,pdata 
+0x730f 023594 store 1 ,mem_shutter_conn_update_timer 
+0x7310 023595 nrtn blank 
+0x7311 023596 jam 0x05 ,mem_lpm_mult 
+0x7312 023597 rtn 
+:      023599 shutter_app_updata_le_param_timer:
+0x7313 023600 fetch 1 ,mem_send_updata_le_param_timer 
+0x7314 023601 rtn blank 
+0x7315 023602 increase -1 ,pdata 
+0x7316 023603 store 1 ,mem_send_updata_le_param_timer 
+0x7317 023604 nrtn blank 
+0x7318 023605 fetch 1 ,mem_le_state 
+0x7319 023606 bbit0 lestate_encryption ,shutter_app_updata_le_param 
+0x731a 023607 jam 1 ,mem_send_updata_le_param_timer 
+0x731b 023608 rtn 
+:      023610 shutter_app_updata_le_param:
+0x731c 023611 call app_lpm_mult_enable 
+0x731d 023612 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+0x731e 023613 branch ui_ipc_send_cmd 
+:      023616 shutter_le_shutter_fast_adv_timer:
+0x731f 023617 fetch 1 ,mem_shutter_powerup_flag 
+0x7320 023618 rtnne shutter_power_on 
+0x7321 023619 fetch 2 ,mem_le_fast_adv_timeout_timer_count 
+0x7322 023620 rtn blank 
+0x7323 023621 increase -1 ,pdata 
+0x7324 023622 store 2 ,mem_le_fast_adv_timeout_timer_count 
+0x7325 023623 nrtn blank 
+0x7326 023624 fetch 2 ,mem_ui_state_map 
+0x7327 023625 bbit1 ui_state_ble_connected ,in_is_connected 
+0x7328 023626 setarg mem_slow_adv_led_style 
+0x7329 023627 call shutter_ui_led_send 
+:      023628 in_is_connected:
+0x732a 023629 setarg slow_adv_interval_value 
+0x732b 023630 branch shutter_le_adv_interval_set 
+:      023632 shutter_le_sleep_timer:
+0x732c 023633 fetch 2 ,mem_le_sleep_timeout_timer_count 
+0x732d 023634 rtn blank 
+0x732e 023635 increase -1 ,pdata 
+0x732f 023636 store 2 ,mem_le_sleep_timeout_timer_count 
+0x7330 023637 nrtn blank 
+0x7331 023639 jam shutter_power_off ,mem_shutter_powerup_flag 
+0x7332 023640 call shutter_shutter_power_off_end 
+0x7333 023643 rtn 
+:      023645 scale_process_le_conn:
+0x7334 023646 jam 0 ,mem_lpm_mode 
+0x7335 023647 fetch 2 ,mem_le_sleep_timeout 
+0x7336 023648 store 2 ,mem_le_sleep_timeout_timer_count 
+0x7337 023649 jam pair_unknown ,mem_pair_state 
+0x7338 023651 call app_ble_stop_adv 
+0x7339 023655 setarg 0x112233 
+0x733a 023656 store 3 ,mem_le_ltk 
+0x733b 023657 setarg 0x445566 
+0x733c 023658 istore 3 ,contw 
+0x733d 023659 setarg 0x778899 
+0x733e 023660 istore 3 ,contw 
+0x733f 023661 setarg 0x001122 
+0x7340 023662 istore 3 ,contw 
+0x7341 023663 setarg 0x334455 
+0x7342 023664 istore 3 ,contw 
+0x7343 023665 setarg 0x66 
+0x7344 023666 istore 1 ,contw 
+0x7345 023668 call app_ble_stop_adv 
+0x7346 023671 call app_lpm_mult_enable 
+0x7347 023673 jam 0 ,mem_le_fast_adv_timeout_timer_count 
+0x7348 023674 setarg mem_connected_led_style 
+0x7349 023675 call shutter_ui_led_send 
+0x734a 023676 jam 0 ,mem_led_gpio 
+0x734b 023677 rtn 
+:      023679 scale_process_le_discon:
+0x734c 023682 jam 0 ,mem_lpm_mult 
+0x734d 023683 jam 0 ,mem_shutter_conn_update_timer 
+0x734e 023684 jam 0 ,mem_ltk_exists 
+0x734f 023685 jam default_states ,mem_ltk_states 
+0x7350 023686 jam 0 ,mem_shutter_find_type_value_flag 
+0x7351 023687 call shutter_le_queue_clear 
+0x7352 023688 fetch 2 ,mem_le_sleep_timeout 
+0x7353 023689 store 2 ,mem_le_sleep_timeout_timer_count 
+0x7354 023690 fetch 1 ,mem_le_sleep_flag 
+0x7355 023691 bne 0 ,shutter_le_sleep_enter 
+0x7356 023692 call shutter_le_fast_advertise 
+0x7357 023693 jam pair_unknown ,mem_pair_state 
+0x7358 023694 setarg 0 
+0x7359 023695 store 2 ,mem_l2cap_rxbuff1_len 
+0x735a 023696 setarg 0 
+0x735b 023697 store 2 ,mem_l2cap_rxbuff2_len 
+0x735c 023699 call shutter_le_tx_buff_unuse 
+0x735d 023701 call app_ble_start_adv 
+0x735e 023705 rtn 
+:      023707 shutter_le_tx_buff_inuse:
+0x735f 023709 jam 1 ,mem_scale_txbuff_inuse 
+0x7360 023710 rtn 
+:      023711 shutter_le_check_tx_buff:
+0x7361 023712 fetch 1 ,mem_scale_txbuff_inuse 
+0x7362 023713 rtn 
+:      023714 shutter_le_tx_buff_unuse:
+0x7363 023716 jam 0 ,mem_scale_txbuff_inuse 
+0x7364 023717 rtn 
+:      023719 shutter_le_discovery_timeout_sleep:
+0x7365 023720 branch app_enter_hibernate 
+:      023722 shutter_le_sleep_req_hibernate:
+0x7366 023723 jam 0x01 ,mem_le_sleep_flag 
+:      023724 shutter_le_sleep_req_ok:
+0x7367 023725 fetch 2 ,mem_ui_state_map 
+0x7368 023726 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+:      023727 shutter_le_sleep_enter:
+0x7369 023728 call shutter_le_sleep_clr 
+0x736a 023729 call wait_uarttx 
+0x736b 023730 jam 0x00 ,mem_le_sleep_flag 
+0x736c 023731 branch app_bb_hibernate 
+:      023733 shutter_le_sleep_clr:
+0x736d 023734 setarg 0 
+0x736e 023735 store 2 ,mem_l2cap_rxbuff1_len 
+0x736f 023736 store 2 ,mem_l2cap_rxbuff2_len 
+0x7370 023737 branch shutter_le_tx_buff_unuse 
+:      023740 scale_process:
+0x7371 023741 fetch 1 ,mem_exchange_mtu_req 
+0x7372 023742 ncall shutter_le_parse_att_exchange_mtu_request ,blank 
+0x7373 023743 call shutter_le_send_packet 
+0x7374 023744 branch shutter_le_key_process 
+:      023746 shutter_le_parse_att_exchange_mtu_request:
+0x7375 023749 jam 0 ,mem_exchange_mtu_req 
+0x7376 023750 jam attop_exchange_mtu_response ,mem_fifo_temp 
+0x7377 023751 branch le_xtype_fifo_in 
+:      023752 shutter_le_parse_att_exchange_mtu_request_save:
+0x7378 023753 jam 1 ,mem_exchange_mtu_req 
+0x7379 023754 rtn 
+:      023756 scale_process_idle:
+0x737a 023757 call shutter_le_send_packet 
+0x737b 023758 branch shutter_le_key_process 
+:      023760 shutter_le_before_hibernate:
+0x737c 023761 call shutter_shutter_scan_key 
+0x737d 023762 fetch 2 ,mem_key_value_temp 
+0x737e 023763 branch in_enter_hibernate ,blank 
+0x737f 023764 branch app_enter_hibernate 
+:      023765 in_enter_hibernate:
+0x7380 023766 call gpio_set_before_lpm_common 
+0x7381 023767 branch shutter_le_process_lpm_before 
+:      023773 shutter_ui_led_init:
+0x7382 023774 fetch 1 ,mem_shutter_led_num 
+0x7383 023775 copy pdata ,loopcnt 
+0x7384 023776 setarg mem_led_map 
+0x7385 023777 copy pdata ,rega 
+:      023778 in_lp1:
+0x7386 023779 copy rega ,contr 
+0x7387 023780 ifetch 1 ,contr 
+0x7388 023781 beq invalid_pin_num ,in_lp1_end 
+0x7389 023782 copy pdata ,temp 
+0x738a 023783 store 1 ,mem_led_gpio 
+0x738b 023785 call ui_led_init 
+:      023786 in_lp1_end:
+0x738c 023787 loop in_lp1 
+:      023788 shutter_ui_led_init_end:
+0x738d 023789 rtn 
+:      023794 shutter_ui_led_send:
+0x738e 023795 copy pdata ,contr 
+0x738f 023796 force 7 ,loopcnt 
+0x7390 023799 arg mem_temp_led_style ,contw 
+0x7391 023800 call memcpy 
+0x7392 023801 set1 mark_ext_patch ,mark 
+0x7393 023802 bpatch patch3b_2 ,mem_patch3b 
+0x7394 023803 fetch 1 ,mem_temp_led_type 
+0x7395 023804 rtneq led_invalid 
+0x7396 023805 fetcht 2 ,mem_temp_led_on_time 
+0x7397 023806 storet 2 ,mem_led_light_time 
+0x7398 023807 fetcht 2 ,mem_temp_led_off_time 
+0x7399 023808 storet 2 ,mem_led_dark_time 
+0x739a 023809 fetcht 1 ,mem_temp_blink_count 
+0x739b 023810 storet 1 ,mem_led_blink_count 
+0x739c 023812 call ui_led_blink_stop 
+0x739d 023813 fetcht 1 ,mem_temp_led_pin 
+0x739e 023814 storet 1 ,mem_led_gpio 
+0x739f 023815 fetch 1 ,mem_temp_led_type 
+0x73a0 023816 beq led_off ,shutter_ui_led_send_end 
+0x73a1 023817 beq led_on ,ui_led_on 
+0x73a2 023818 beq led_blink ,ui_led_blink_start1 
+:      023819 shutter_ui_led_send_end:
+0x73a3 023820 rtn 
+:      023822 shutter_ui_led_off:
+0x73a4 023823 branch ui_led_blink_stop 
+:      023826 shutter_key_init:
+0x73a5 023827 fetch 1 ,mem_shutter_key_num 
+0x73a6 023828 rtn blank 
+0x73a7 023829 copy pdata ,loopcnt 
+0x73a8 023830 setarg mem_key_conf0_pin 
+0x73a9 023831 copy pdata ,rega 
+:      023832 shutter_key_lp1:
+0x73aa 023833 ifetcht 1 ,rega 
+0x73ab 023834 call gpio_config_input 
+0x73ac 023835 increase key_conf_struct_len ,rega 
+0x73ad 023836 loop shutter_key_lp1 
+:      023837 shutter_key_init_end:
+0x73ae 023838 rtn 
+:      023841 shutter_shutter_scan_key:
+0x73af 023844 arg mem_key_conf0_pin ,rega 
+0x73b0 023845 force 0 ,regb 
+0x73b1 023846 jam 0 ,mem_key_value_temp 
+:      023847 in_scan_key_lp1:
+0x73b2 023848 ifetcht 1 ,rega 
+0x73b3 023849 call gpio_get_bit 
+0x73b4 023850 set1 mark_ext_patch ,mark 
+0x73b5 023851 bpatch patch3b_3 ,mem_patch3b 
+0x73b6 023852 fetch 2 ,mem_key_value_temp 
+0x73b7 023853 copy regb ,queue 
+0x73b8 023854 qsetflag true ,pdata 
+0x73b9 023855 store 2 ,mem_key_value_temp 
+0x73ba 023856 increase key_conf_struct_len ,rega 
+0x73bb 023857 increase 1 ,regb 
+0x73bc 023858 fetch 1 ,mem_shutter_key_num 
+0x73bd 023859 ixor regb ,null 
+0x73be 023860 nbranch in_scan_key_lp1 ,zero 
+0x73bf 023862 fetch 2 ,mem_key_value_temp 
+0x73c0 023863 fetcht 2 ,mem_key_value 
+0x73c1 023864 ixor temp ,null 
+0x73c2 023865 rtn zero 
+0x73c3 023866 enable user 
+0x73c4 023867 rtn 
+:      023869 shutter_le_key_process:
+0x73c5 023870 arg temp_timer ,queue 
+0x73c6 023871 call timer_check 
+0x73c7 023872 nrtn blank 
+0x73c8 023873 call shutter_le_packet_interval_set 
+0x73c9 023874 fetch 1 ,mem_enable_key_scan 
+0x73ca 023875 rtn blank 
+0x73cb 023876 disable user 
+0x73cc 023877 call shutter_le_process_lpm_before 
+0x73cd 023878 set1 mark_ext_patch ,mark 
+0x73ce 023879 bpatch patch3b_4 ,mem_patch3b 
+0x73cf 023880 fetch 1 ,mem_shutter_key_num 
+0x73d0 023881 rtn blank 
+0x73d1 023882 call shutter_shutter_scan_key 
+0x73d2 023883 nbranch lpm_button_clean_wake_lock ,user 
+0x73d3 023884 call lpm_button_get_wake_lock 
+0x73d4 023885 disable user 
+0x73d5 023886 fetch 2 ,mem_le_sleep_timeout 
+0x73d6 023887 store 2 ,mem_le_sleep_timeout_timer_count 
+0x73d7 023888 fetch 2 ,mem_ui_state_map 
+0x73d8 023889 bbit0 ui_state_ble_connected ,shutter_le_fast_advertise 
+0x73d9 023890 call shutter_shutter_cancel_key_shake 
+0x73da 023891 branch in_le_key_process_end ,positive 
+0x73db 023892 fetch 2 ,mem_key_value_temp 
+0x73dc 023893 store 2 ,mem_key_value_temp4 
+0x73dd 023894 jam 0 ,mem_key_value_temp6 
+0x73de 023895 force 0 ,queue 
+:      023897 shutter_le_key_lp1:
+0x73df 023898 set1 mark_ext_patch ,mark 
+0x73e0 023899 bpatch patch3b_5 ,mem_patch3b 
+0x73e1 023900 fetch 2 ,mem_key_value 
+0x73e2 023901 rshift pdata ,temp 
+0x73e3 023902 storet 2 ,mem_key_value 
+0x73e4 023903 and pdata ,0x01 ,pdata 
+0x73e5 023904 fetcht 2 ,mem_key_value_temp4 
+0x73e6 023905 and temp ,0x01 ,rega 
+0x73e7 023906 rshift temp ,temp 
+0x73e8 023907 storet 2 ,mem_key_value_temp4 
+0x73e9 023908 ixor rega ,null 
+0x73ea 023909 ncall shutter_le_send_key_data ,zero 
+0x73eb 023910 fetch 1 ,mem_shutter_key_num 
+0x73ec 023911 fetcht 1 ,mem_key_value_temp6 
+0x73ed 023912 increase 1 ,temp 
+0x73ee 023913 storet 1 ,mem_key_value_temp6 
+0x73ef 023914 copy temp ,queue 
+0x73f0 023915 ixor queue ,null 
+0x73f1 023917 nbranch shutter_le_key_lp1 ,zero 
+0x73f2 023918 fetch 2 ,mem_key_value_temp 
+0x73f3 023919 store 2 ,mem_key_value 
+0x73f4 023920 rtn 
+:      023921 in_le_key_process_end:
+0x73f5 023922 setarg 0 
+0x73f6 023923 store 2 ,mem_key_value_temp 
+0x73f7 023924 store 2 ,mem_key_value 
+0x73f8 023925 rtn 
+:      023929 shutter_le_send_key_data:
+0x73f9 023931 deposit rega 
+0x73fa 023932 branch in_le_key_is_release ,blank 
+0x73fb 023933 set1 mark_ext_patch ,mark 
+0x73fc 023934 bpatch patch3b_6 ,mem_patch3b 
+0x73fd 023935 copy queue ,pdata 
+0x73fe 023936 beq 0 ,in_le_send_key0_press 
+0x73ff 023937 beq 1 ,in_le_send_key1_press 
+0x7400 023938 beq 2 ,in_le_send_key2_press 
+0x7401 023939 beq 3 ,in_le_send_key3_press 
+0x7402 023940 beq 4 ,in_le_send_key4_press 
+0x7403 023941 beq 5 ,in_le_send_key5_press 
+:      023942 in_le_send_lable:
+0x7404 023943 fetch 1 ,mem_le_enc_state 
+0x7405 023944 rtnne flag_le_enc_end 
+0x7406 023945 fetch 1 ,mem_shutter_key_data_flag_1 
+0x7407 023946 nrtn blank 
+0x7408 023947 ifetch 1 ,temp 
+0x7409 023948 rtn blank 
+0x740a 023949 store 1 ,mem_key_packet_count 
+0x740b 023950 increase 1 ,temp 
+0x740c 023951 storet 2 ,mem_key_next_addr 
+:      023952 in_le_send_lp1:
+0x740d 023953 fetch 2 ,mem_key_next_addr 
+0x740e 023954 ifetcht 1 ,pdata 
+0x740f 023955 copy temp ,loopcnt 
+0x7410 023956 iadd temp ,temp 
+0x7411 023957 storet 2 ,mem_key_next_addr 
+0x7412 023958 copy pdata ,temp 
+0x7413 023959 call shutter_le_queue_put 
+0x7414 023960 fetch 1 ,mem_key_packet_count 
+0x7415 023961 increase -1 ,pdata 
+0x7416 023962 store 1 ,mem_key_packet_count 
+0x7417 023963 nbranch in_le_send_lp1 ,zero 
+0x7418 023964 branch shutter_le_send_packet 
+:      023967 in_le_key_is_release:
+0x7419 023968 set1 mark_ext_patch ,mark 
+0x741a 023969 bpatch patch3b_7 ,mem_patch3b 
+0x741b 023970 copy queue ,pdata 
+0x741c 023971 beq 0 ,in_le_send_key0_rel 
+0x741d 023972 beq 1 ,in_le_send_key1_rel 
+0x741e 023973 beq 2 ,in_le_send_key2_rel 
+0x741f 023974 beq 3 ,in_le_send_key3_rel 
+0x7420 023975 beq 4 ,in_le_send_key4_rel 
+0x7421 023976 beq 5 ,in_le_send_key5_rel 
+0x7422 023977 branch in_le_send_lable 
+:      023979 in_le_send_key0_press:
+0x7423 023980 fetch 1 ,mem_key_conf0_led 
+0x7424 023981 call shutter_le_key_led_index 
+0x7425 023982 arg mem_key0_press ,temp 
+0x7426 023983 branch in_le_send_lable 
+:      023984 in_le_send_key1_press:
+0x7427 023989 fetch 1 ,mem_key_conf1_led 
+0x7428 023990 call shutter_le_key_led_index 
+0x7429 023991 arg mem_key1_press ,temp 
+0x742a 023992 branch in_le_send_lable 
+:      023993 in_le_send_key2_press:
+0x742b 023994 fetch 1 ,mem_key_conf2_led 
+0x742c 023995 call shutter_le_key_led_index 
+0x742d 023996 arg mem_key2_press ,temp 
+0x742e 023997 branch in_le_send_lable 
+:      023998 in_le_send_key3_press:
+0x742f 023999 fetch 1 ,mem_key_conf3_led 
+0x7430 024000 call shutter_le_key_led_index 
+0x7431 024001 arg mem_key3_press ,temp 
+0x7432 024002 branch in_le_send_lable 
+:      024003 in_le_send_key4_press:
+0x7433 024004 fetch 1 ,mem_key_conf4_led 
+0x7434 024005 call shutter_le_key_led_index 
+0x7435 024006 arg mem_key4_press ,temp 
+0x7436 024007 branch in_le_send_lable 
+:      024008 in_le_send_key5_press:
+0x7437 024009 fetch 1 ,mem_key_conf5_led 
+0x7438 024010 call shutter_le_key_led_index 
+0x7439 024011 arg mem_key5_press ,temp 
+0x743a 024012 branch in_le_send_lable 
+:      024014 in_le_send_key0_rel:
+0x743b 024015 fetch 1 ,mem_key_conf0_led 
+0x743c 024016 call shutter_le_disble_key_led 
+0x743d 024017 arg mem_key0_release ,temp 
+0x743e 024018 branch in_le_send_lable 
+:      024019 in_le_send_key1_rel:
+0x743f 024024 fetch 1 ,mem_key_conf1_led 
+0x7440 024025 call shutter_le_disble_key_led 
+0x7441 024026 arg mem_key1_release ,temp 
+0x7442 024027 branch in_le_send_lable 
+:      024028 in_le_send_key2_rel:
+0x7443 024029 fetch 1 ,mem_key_conf2_led 
+0x7444 024030 call shutter_le_disble_key_led 
+0x7445 024031 arg mem_key2_release ,temp 
+0x7446 024032 branch in_le_send_lable 
+:      024033 in_le_send_key3_rel:
+0x7447 024034 fetch 1 ,mem_key_conf3_led 
+0x7448 024035 call shutter_le_disble_key_led 
+0x7449 024036 arg mem_key3_release ,temp 
+0x744a 024037 branch in_le_send_lable 
+:      024038 in_le_send_key4_rel:
+0x744b 024039 fetch 1 ,mem_key_conf4_led 
+0x744c 024040 call shutter_le_disble_key_led 
+0x744d 024041 arg mem_key4_release ,temp 
+0x744e 024042 branch in_le_send_lable 
+:      024043 in_le_send_key5_rel:
+0x744f 024044 fetch 1 ,mem_key_conf5_led 
+0x7450 024045 call shutter_le_disble_key_led 
+0x7451 024046 arg mem_key5_release ,temp 
+0x7452 024047 branch in_le_send_lable 
+:      024049 shutter_le_disble_key_led:
+0x7453 024050 compare led_on ,pdata ,0xff 
+0x7454 024051 rtn true 
+0x7455 024052 force 3 ,pdata 
+0x7456 024053 branch shutter_le_key_led_index 
+:      024057 shutter_le_key_led_index:
+0x7457 024058 beq 0 ,in_le_key_led_0 
+0x7458 024059 beq 1 ,in_le_key_led_1 
+0x7459 024060 beq 2 ,in_le_key_led_2 
+0x745a 024061 beq 3 ,in_le_key_led_3 
+:      024063 in_le_light_led:
+0x745b 024064 branch shutter_ui_led_send 
+:      024067 in_le_key_led_0:
+0x745c 024068 setarg mem_key_led_style_ind_0 
+0x745d 024069 branch shutter_ui_led_send 
+:      024070 in_le_key_led_1:
+0x745e 024071 setarg mem_key_led_style_ind_1 
+0x745f 024072 branch shutter_ui_led_send 
+:      024073 in_le_key_led_2:
+0x7460 024074 setarg mem_key_led_style_ind_2 
+0x7461 024075 branch shutter_ui_led_send 
+:      024076 in_le_key_led_3:
+0x7462 024077 setarg mem_key_led_style_ind_3 
+0x7463 024078 branch shutter_ui_led_send 
+:      024082 shutter_ui_power_timeout_timer:
+0x7464 024083 fetch 1 ,mem_power_timer 
+0x7465 024084 rtn blank 
+0x7466 024085 increase -1 ,pdata 
+0x7467 024086 store 1 ,mem_power_timer 
+0x7468 024087 nrtn blank 
+0x7469 024088 fetch 1 ,mem_shutter_powerup_flag 
+0x746a 024089 beq shutter_power_on ,shutter_le_soft_switch_power_on_signal 
+0x746b 024090 branch shutter_shutter_power_off_signal 
+:      024092 shutter_ui_button_timeout_timer:
+0x746c 024093 fetch 1 ,mem_shutter_button_timer 
+0x746d 024094 rtn blank 
+0x746e 024095 increase -1 ,pdata 
+0x746f 024096 store 1 ,mem_shutter_button_timer 
+0x7470 024097 nrtn blank 
+0x7471 024098 branch app_led_off 
+:      024100 shutter_shuuter_led_on:
+0x7472 024101 fetch 1 ,mem_shutter_button_timeout 
+0x7473 024102 store 1 ,mem_shutter_button_timer 
+0x7474 024103 branch app_led_on 
+:      024105 shutter_bb_event_button_up:
+0x7475 024109 fetch 1 ,mem_shutter_powerup_flag 
+0x7476 024110 beq shutter_power_on ,in_power_release 
+0x7477 024111 branch app_enter_hibernate 
+:      024112 in_power_release:
+0x7478 024113 jam 1 ,mem_enable_key_scan 
+0x7479 024114 rtn 
+:      024116 shutter_evt_button_long_pressed:
+0x747a 024118 fetch 1 ,mem_shutter_powerup_flag 
+0x747b 024119 beq shutter_power_on ,shutter_le_power_off 
+0x747c 024120 jam shutter_power_on ,mem_shutter_powerup_flag 
+0x747d 024122 setarg mem_power_on_led_style 
+:      024123 shutter_shutter_power_on:
+:      024124 shutter_shutter_power_on_off:
+0x747e 024125 fetcht 1 ,mem_power_timeout 
+0x747f 024126 storet 1 ,mem_power_timer 
+0x7480 024127 branch shutter_ui_led_send 
+:      024129 shutter_le_power_off:
+0x7481 024131 jam shutter_power_off ,mem_shutter_powerup_flag 
+0x7482 024132 jam 0 ,mem_enable_key_scan 
+0x7483 024133 jam off ,mem_le_adv_enable 
+0x7484 024134 fetch 2 ,mem_ui_state_map 
+0x7485 024135 bbit0 ui_state_ble_connected ,shutter_shutter_power_off_end 
+0x7486 024136 call app_ble_disconnect 
+:      024137 shutter_shutter_power_off_end:
+0x7487 024138 jam off ,mem_le_adv_enable 
+0x7488 024139 setarg mem_powe_off_led_style 
+0x7489 024140 branch shutter_shutter_power_on_off 
+:      024142 shutter_shutter_power_off_signal:
+0x748a 024143 call shutter_ui_led_init 
+0x748b 024144 branch app_enter_hibernate 
+:      024147 shutter_le_process_lpm_before:
+0x748c 024148 fetch 1 ,mem_shutter_key_num 
+0x748d 024149 rtn blank 
+0x748e 024150 copy pdata ,loopcnt 
+0x748f 024151 setarg mem_key_conf0_pin 
+0x7490 024152 copy pdata ,rega 
+:      024153 in_shutter_process_lpm_before_lp1:
+0x7491 024154 ifetcht 1 ,rega 
+0x7492 024155 call gpio_set_wake_by_current_state 
+0x7493 024156 increase key_conf_struct_len ,rega 
+0x7494 024157 loop in_shutter_process_lpm_before_lp1 
+:      024158 shutter_le_process_lpm_before_end:
+0x7495 024159 rtn 
+:      024162 shutter_le_queue_init:
+0x7496 024163 jam 0 ,mem_queue_ele_num 
+0x7497 024164 setarg mem_queue_start 
+0x7498 024165 store 2 ,mem_queue_read 
+0x7499 024166 store 2 ,mem_queue_write 
+0x749a 024167 rtn 
+:      024170 shutter_le_queue_clear:
+0x749b 024171 branch shutter_le_queue_init 
+:      024175 shutter_le_queue_put:
+0x749c 024176 disable user 
+0x749d 024177 fetch 1 ,mem_queue_ele_num 
+0x749e 024178 compare queue_ele_count ,pdata ,0xff 
+0x749f 024179 rtn true 
+0x74a0 024181 enable user 
+0x74a1 024182 fetch 2 ,mem_queue_write 
+0x74a2 024183 copy pdata ,contw 
+0x74a3 024184 copy temp ,contr 
+0x74a4 024185 call memcpy 
+0x74a5 024187 fetch 1 ,mem_queue_ele_num 
+0x74a6 024188 increase 1 ,pdata 
+0x74a7 024189 store 1 ,mem_queue_ele_num 
+0x74a8 024191 setarg mem_queue_write 
+0x74a9 024192 call shutter_le_queue_increase 
+0x74aa 024193 rtn 
+:      024196 shutter_le_queue_increase:
+0x74ab 024197 copy pdata ,rega 
+0x74ac 024198 arg mem_queue_end ,temp 
+0x74ad 024199 ifetch 2 ,rega 
+0x74ae 024200 increase queue_ele_length ,pdata 
+0x74af 024201 isub temp ,null 
+0x74b0 024202 nbranch shutter_le_queue_put_end ,positive 
+0x74b1 024203 setarg mem_queue_start 
+:      024204 shutter_le_queue_put_end:
+0x74b2 024205 istore 2 ,rega 
+0x74b3 024206 rtn 
+:      024210 shutter_le_queue_get:
+0x74b4 024211 disable user 
+0x74b5 024212 fetch 1 ,mem_queue_ele_num 
+0x74b6 024213 rtn blank 
+0x74b7 024214 enable user 
+0x74b8 024215 fetch 1 ,mem_queue_ele_num 
+0x74b9 024216 increase -1 ,pdata 
+0x74ba 024217 store 1 ,mem_queue_ele_num 
+0x74bb 024219 fetch 2 ,mem_queue_read 
+0x74bc 024220 store 2 ,mem_queue_temp 
+0x74bd 024222 setarg mem_queue_read 
+0x74be 024223 call shutter_le_queue_increase 
+0x74bf 024224 fetch 2 ,mem_queue_temp 
+0x74c0 024225 rtn 
+:      024227 shutter_le_queue_read_point:
+0x74c1 024228 disable user 
+0x74c2 024229 fetch 1 ,mem_queue_ele_num 
+0x74c3 024230 rtn blank 
+0x74c4 024231 enable user 
+0x74c5 024232 fetch 2 ,mem_queue_read 
+0x74c6 024233 rtn 
+:      024235 shutter_le_packet_interval_set:
+0x74c7 024236 fetch 2 ,mem_packet_interval_set 
+0x74c8 024237 arg temp_timer ,queue 
+0x74c9 024238 branch timer_init 
+:      024240 shutter_le_send_packet:
+0x74ca 024249 call shutter_le_queue_read_point 
+0x74cb 024250 nrtn user 
+0x74cc 024251 disable user 
+0x74cd 024260 force 0x0013 ,temp 
+0x74ce 024261 storet 2 ,mem_le_notify_handle 
+0x74cf 024262 branch shutter_le_shutter_send_keydata 
+:      024264 shutter_le_shutter_send_keydata:
+0x74d0 024265 arg 2 ,loopcnt 
+0x74d1 024266 fetcht 2 ,mem_le_notify_handle 
+0x74d2 024267 arg mem_shutter_send_data ,contr 
+0x74d3 024268 call shutter_le_tx_notification 
+0x74d4 024274 rtn 
+:      024276 shutter_le_tx_indication:
+0x74d5 024277 jam attop_handle_value_indication ,mem_fifo_temp 
+0x74d6 024278 branch shutter_le_tx_common 
+:      024279 shutter_le_tx_notification:
+0x74d7 024280 call le_xtype_fifo_is_empty 
+0x74d8 024281 nrtn blank 
+0x74d9 024282 fetch 1 ,mem_shutter_key_data_flag 
+0x74da 024283 nrtn blank 
+0x74db 024284 jam attop_handle_value_notification ,mem_fifo_temp 
+:      024285 shutter_le_tx_common:
+0x74dc 024291 call le_xtype_fifo_in 
+0x74dd 024292 branch shutter_le_tx_buff_inuse 
+:      024294 shutter_shutter_cancel_key_shake:
+0x74de 024295 fetcht 4 ,mem_shutter_clkn_bt_last 
+0x74df 024296 deposit clkn_bt 
+0x74e0 024297 store 4 ,mem_shutter_clkn_bt_last 
+0x74e1 024298 isub temp ,pdata 
+0x74e2 024299 nrtn positive 
+0x74e3 024300 sub pdata ,20 ,pdata 
+0x74e4 024301 rtn 
+:      024303 shutter_le_send_att_handle_value_notification:
+0x74e5 024305 call shutter_le_queue_get 
+0x74e6 024306 nrtn user 
+0x74e7 024307 disable user 
+0x74e8 024308 copy pdata ,contr 
+0x74e9 024309 ifetcht 1 ,contr 
+0x74ea 024310 increase -3 ,temp 
+0x74eb 024311 copy temp ,loopcnt 
+0x74ec 024313 ifetcht 2 ,contr 
+0x74ed 024315 add loopcnt ,7 ,pdata 
+0x74ee 024316 store 1 ,mem_scale_tx_length 
+0x74ef 024317 arg mem_le_l2cap + 1 ,contw 
+0x74f0 024318 istoret 2 ,contw 
+0x74f1 024319 call memcpy 
+0x74f2 024320 fetcht 1 ,mem_scale_tx_length 
+0x74f3 024321 branch le_send_packet 
+:      024323 shutter_le_receive_data:
+0x74f4 024324 fetch 1 ,mem_le_att_opcode 
+0x74f5 024325 beq attop_write_request ,shutter_le_parse_att_write_request 
+0x74f6 024326 beq attop_write_command ,shutter_le_parse_att_write_command 
+0x74f7 024327 rtn 
+:      024328 shutter_le_parse_att_write_request:
+0x74f8 024329 fetch 2 ,mem_le_att_handle 
+0x74f9 024330 beq att_write_request_handle ,shutter_key_data_send 
+0x74fa 024331 rtn 
+:      024332 shutter_le_parse_att_write_command:
+:      024333 shutter_key_data_send:
+0x74fb 024334 jam 0 ,mem_shutter_key_data_flag 
+0x74fc 024335 rtn 
+:      024337 init_shutter_le_att_list:
+0x74fd 024338 arg mem_shutter_le_att_list ,contw 
+0x74fe 024339 setsect 0 ,0x20001 
+0x74ff 024340 setsect 1 ,0x20000 
+0x7500 024341 setsect 2 ,0x1022 
+0x7501 024342 setsect 3 ,0x860 
+0x7502 024343 istore 9 ,contw 
+0x7503 024344 setsect 0 ,0x30200 
+0x7504 024345 setsect 1 ,0x4a00 
+0x7505 024346 setsect 2 ,0x3200 
+0x7506 024347 setsect 3 ,0x800 
+0x7507 024348 istore 9 ,contw 
+0x7508 024349 setsect 0 ,0x12a05 
+0x7509 024350 setsect 1 ,0x10000 
+0x750a 024351 setsect 2 ,0x2000 
+0x750b 024352 setsect 3 ,0xa408 
+0x750c 024353 istore 9 ,contw 
+0x750d 024354 setsect 0 ,0x2 
+0x750e 024355 setsect 1 ,0x140 
+0x750f 024356 setsect 2 ,0x20 
+0x7510 024357 setsect 3 ,0x8a0 
+0x7511 024358 istore 9 ,contw 
+0x7512 024359 setsect 0 ,0x21800 
+0x7513 024360 setsect 1 ,0x8001 
+0x7514 024361 setsect 2 ,0x28030 
+0x7515 024362 setsect 3 ,0x804 
+0x7516 024363 istore 9 ,contw 
+0x7517 024364 setsect 0 ,0x20007 
+0x7518 024365 setsect 1 ,0x28000 
+0x7519 024366 setsect 2 ,0x3132 
+0x751a 024367 setsect 3 ,0x1a5a1 
+0x751b 024368 istore 9 ,contw 
+0x751c 024369 setsect 0 ,0x17370 
+0x751d 024370 setsect 1 ,0x35859 
+0x751e 024371 setsect 2 ,0xc422 
+0x751f 024372 setsect 3 ,0x8115 
+0x7520 024373 istore 9 ,contw 
+0x7521 024374 setsect 0 ,0x2020 
+0x7522 024375 setsect 1 ,0x808 
+0x7523 024376 setsect 2 ,0x20202 
+0x7524 024377 setsect 3 ,0x20 
+0x7525 024378 istore 9 ,contw 
+0x7526 024379 setsect 0 ,0x302 
+0x7527 024380 setsect 1 ,0x804a 
+0x7528 024381 setsect 2 ,0x90 
+0x7529 024382 setsect 3 ,0x408 
+0x752a 024383 istore 9 ,contw 
+0x752b 024384 setsect 0 ,0x22a 
+0x752c 024385 setsect 1 ,0x28032 
+0x752d 024386 setsect 2 ,0x2000 
+0x752e 024387 setsect 3 ,0xa00c 
+0x752f 024388 istore 9 ,contw 
+0x7530 024389 setsect 0 ,0x30201 
+0x7531 024390 setsect 1 ,0x8002 
+0x7532 024391 setsect 2 ,0x2a040 
+0x7533 024392 setsect 3 ,0x1820 
+0x7534 024393 istore 9 ,contw 
+0x7535 024394 setsect 0 ,0x600 
+0x7536 024395 setsect 1 ,0x1900 
+0x7537 024396 setsect 2 ,0x12c0 
+0x7538 024397 setsect 3 ,0x30 
+0x7539 024398 istore 9 ,contw 
+0x753a 024399 setsect 0 ,0x2 
+0x753b 024400 setsect 1 ,0x2808a 
+0x753c 024401 setsect 2 ,0xd180 
+0x753d 024402 setsect 3 ,0x800 
+0x753e 024403 istore 9 ,contw 
+0x753f 024404 setsect 0 ,0x12803 
+0x7540 024405 setsect 1 ,0x38080 
+0x7541 024406 setsect 2 ,0x2000 
+0x7542 024407 setsect 3 ,0xa940 
+0x7543 024408 istore 9 ,contw 
+0x7544 024409 setsect 0 ,0x20207 
+0x7545 024410 setsect 1 ,0x18922 
+0x7546 024411 setsect 2 ,0x1826 
+0x7547 024412 setsect 3 ,0x3c00 
+0x7548 024413 istore 9 ,contw 
+0x7549 024414 setsect 0 ,0x200 
+0x754a 024415 setsect 1 ,0x8a00 
+0x754b 024416 setsect 2 ,0x18120 
+0x754c 024417 setsect 3 ,0x40 
+0x754d 024418 istore 9 ,contw 
+0x754e 024419 setsect 0 ,0x302 
+0x754f 024420 setsect 1 ,0x1804a 
+0x7550 024421 setsect 2 ,0x110 
+0x7551 024422 setsect 3 ,0x13808 
+0x7552 024423 istore 9 ,contw 
+0x7553 024424 setarg 0x1012a 
+0x7554 024425 istore 3 ,contw 
+0x7555 024426 setsect 0 ,0x20012 
+0x7556 024427 setsect 1 ,0x200c0 
+0x7557 024428 setsect 2 ,0x12012 
+0x7558 024429 setsect 3 ,0x4c 
+0x7559 024430 istore 9 ,contw 
+0x755a 024431 setsect 0 ,0x24d02 
+0x755b 024432 setsect 1 ,0x8a 
+0x755c 024433 setsect 2 ,0x14280 
+0x755d 024434 setsect 3 ,0x800 
+0x755e 024435 istore 9 ,contw 
+0x755f 024436 setsect 0 ,0x22902 
+0x7560 024437 setsect 1 ,0x0 
+0x7561 024438 setsect 2 ,0x150 
+0x7562 024439 setsect 3 ,0x2008 
+0x7563 024440 istore 9 ,contw 
+0x7564 024441 setsect 0 ,0x20229 
+0x7565 024442 setsect 1 ,0x18040 
+0x7566 024443 setsect 2 ,0x2001 
+0x7567 024444 setsect 3 ,0xa00c 
+0x7568 024445 istore 9 ,contw 
+0x7569 024446 setsect 0 ,0x31201 
+0x756a 024447 setsect 1 ,0x8005 
+0x756b 024448 setsect 2 ,0x2a4d0 
+0x756c 024449 setsect 3 ,0x8 
+0x756d 024450 istore 9 ,contw 
+0x756e 024451 setsect 0 ,0x1828 
+0x756f 024452 setsect 1 ,0x8080 
+0x7570 024453 setsect 2 ,0x2290 
+0x7571 024454 setsect 3 ,0x0 
+0x7572 024455 istore 9 ,contw 
+0x7573 024456 setsect 0 ,0x20019 
+0x7574 024457 setsect 1 ,0x24200 
+0x7575 024458 setsect 2 ,0x3022 
+0x7576 024459 setsect 3 ,0x6804 
+0x7577 024460 istore 9 ,contw 
+0x7578 024461 setsect 0 ,0x30200 
+0x7579 024462 setsect 1 ,0x4a00 
+0x757a 024463 setsect 2 ,0x1b020 
+0x757b 024464 setsect 3 ,0x800 
+0x757c 024465 istore 9 ,contw 
+0x757d 024466 setsect 0 ,0x2a4b 
+0x757e 024467 setsect 1 ,0x30151 
+0x757f 024468 setsect 2 ,0x1090 
+0x7580 024469 setsect 3 ,0x684 
+0x7581 024470 istore 9 ,contw 
+0x7582 024471 setsect 0 ,0x10285 
+0x7583 024472 setsect 1 ,0x27a42 
+0x7584 024473 setsect 2 ,0x9ea0 
+0x7585 024474 setsect 3 ,0x2788 
+0x7586 024475 istore 9 ,contw 
+0x7587 024476 setsect 0 ,0x11530 
+0x7588 024477 setsect 1 ,0x30940 
+0x7589 024478 setsect 2 ,0x10750 
+0x758a 024479 setsect 3 ,0x654 
+0x758b 024480 istore 9 ,contw 
+0x758c 024481 setsect 0 ,0x81 
+0x758d 024482 setsect 1 ,0x4170 
+0x758e 024483 setsect 2 ,0x6090 
+0x758f 024484 setsect 3 ,0x684 
+0x7590 024485 istore 9 ,contw 
+0x7591 024486 setsect 0 ,0x10385 
+0x7592 024487 setsect 1 ,0x241c1 
+0x7593 024488 setsect 2 ,0x29e01 
+0x7594 024489 setsect 3 ,0x579c 
+0x7595 024490 istore 9 ,contw 
+0x7596 024491 setsect 0 ,0x12500 
+0x7597 024492 setsect 1 ,0x5d40 
+0x7598 024493 setsect 2 ,0x8950 
+0x7599 024494 setsect 3 ,0xa04 
+0x759a 024495 istore 9 ,contw 
+0x759b 024496 setsect 0 ,0x10875 
+0x759c 024497 setsect 1 ,0x14065 
+0x759d 024498 setsect 2 ,0x25001 
+0x759e 024499 setsect 3 ,0x17d0 
+0x759f 024500 istore 9 ,contw 
+0x75a0 024501 setsect 0 ,0x1907 
+0x75a1 024502 setsect 1 ,0x10a40 
+0x75a2 024503 setsect 2 ,0x81f 
+0x75a3 024504 setsect 3 ,0x300 
+0x75a4 024505 istore 8 ,contw 
+0x75a5 024506 setsect 0 ,0x2001c 
+0x75a6 024507 setsect 1 ,0x200c0 
+0x75a7 024508 setsect 2 ,0x2012 
+0x75a8 024509 setsect 3 ,0x74 
+0x75a9 024510 istore 9 ,contw 
+0x75aa 024511 setsect 0 ,0x24a02 
+0x75ab 024512 setsect 1 ,0x410a 
+0x75ac 024513 setsect 2 ,0x11 
+0x75ad 024514 setsect 3 ,0x7804 
+0x75ae 024515 istore 9 ,contw 
+0x75af 024516 setsect 0 ,0x30200 
+0x75b0 024517 setsect 1 ,0x4a00 
+0x75b1 024518 setsect 2 ,0x1f040 
+0x75b2 024519 setsect 3 ,0x800 
+0x75b3 024520 istore 9 ,contw 
+0x75b4 024521 setsect 0 ,0x12a4c 
+0x75b5 024522 setsect 1 ,0x0 
+0x75b6 024523 setsect 2 ,0x2002 
+0x75b7 024524 setsect 3 ,0xa000 
+0x75b8 024525 istore 9 ,contw 
+0x75b9 024526 setsect 0 ,0xf02 
+0x75ba 024527 setsect 1 ,0x846 
+0x75bb 024528 setsect 2 ,0x3020 
+0x75bc 024529 setsect 3 ,0x4a0 
+0x75bd 024530 istore 9 ,contw 
+0x75be 024531 setsect 0 ,0x2212 
+0x75bf 024532 setsect 1 ,0x24080 
+0x75c0 024533 setsect 2 ,0x12a1 
+0x75c1 024534 setsect 3 ,0x8c00 
+0x75c2 024535 istore 9 ,contw 
+0x75c3 024536 setsect 0 ,0x20200 
+0x75c4 024537 setsect 1 ,0x8a40 
+0x75c5 024538 setsect 2 ,0x0 
+0x75c6 024539 setsect 3 ,0x0 
+0x75c7 024540 istore 9 ,contw 
+0x75c8 024541 rtn 
+:      024543 shutter_init_param:
+0x75c9 024544 jam 1 ,mem_le_pres_auth 
+0x75ca 024545 jam 1 ,mem_le_flag 
+0x75cb 024546 jam 1 ,mem_le_pairing_mode 
+0x75cc 024547 setarg 0x1b 
+0x75cd 024548 store 2 ,mem_le_pairing_handle 
+0x75ce 024549 jam 1 ,mem_le_adv_direct_addr_type 
+0x75cf 024550 jam 3 ,mem_empty_count 
+0x75d0 024551 jam 0x50 ,mem_le_transmit_window 
+0x75d1 024553 jam 0x17 ,mem_le_local_mtu 
+0x75d2 024554 jam 0x17 ,mem_le_remote_mtu 
+0x75d3 024555 arg mem_le_pres ,contw 
+0x75d4 024556 setsect 0 ,0x302 
+0x75d5 024557 setsect 1 ,0x40 
+0x75d6 024558 setsect 2 ,0x1021 
+0x75d7 024559 setsect 3 ,0x0 
+0x75d8 024560 istore 7 ,contw 
+0x75d9 024561 arg mem_le_interal_min ,contw 
+0x75da 024562 setsect 0 ,0x8 
+0x75db 024563 setsect 1 ,0x4 
+0x75dc 024564 setsect 2 ,0x2c000 
+0x75dd 024565 setsect 3 ,0x4 
+0x75de 024566 istore 8 ,contw 
+0x75df 024567 rtn 
+:      024571 publickey_init:
+0x75e0 024572 fetch 1 ,mem_ssp_enable 
+0x75e1 024573 nbranch sp_initialize ,blank 
+0x75e2 024574 branch sp_initialize_256 
+:      024576 publickey_calc:
+0x75e3 024577 set1 mark_ext_patch ,mark 
+0x75e4 024578 bpatch patch3c_0 ,mem_patch3c 
+0x75e5 024579 fetch 1 ,mem_ssp_enable 
+0x75e6 024580 rtn blank 
+0x75e7 024581 fetch 1 ,mem_sp_local_key_invalid 
+0x75e8 024582 rtnne sp_key_valid 
+0x75e9 024583 fetch 1 ,mem_le_secure_connect_enable 
+0x75ea 024584 rtn blank 
+0x75eb 024585 fetch 1 ,mem_le_sc_local_key_invalid 
+0x75ec 024586 rtneq sp_key_valid_256 
+0x75ed 024587 fetch 2 ,mem_ui_state_map 
+0x75ee 024588 bbit1 ui_state_bt_connected ,stop_publickey_calc_256 
+0x75ef 024589 fetch 1 ,mem_le_sc_calc 
+0x75f0 024590 beq sp_calc_standby ,sp_initialize_256 
+0x75f1 024591 rtn 
+:      024592 stop_publickey_calc_256:
+0x75f2 024593 jam sp_calc_standby ,mem_le_sc_calc 
+0x75f3 024594 rtn 
+:      024597 sp_initialize:
+0x75f4 024598 set1 mark_ext_patch ,mark 
+0x75f5 024599 bpatch patch3c_1 ,mem_patch3c 
+0x75f6 024600 fetch 1 ,mem_ssp_enable 
+0x75f7 024601 branch ssp_disable ,blank 
+0x75f8 024602 call ssp_enable 
+0x75f9 024603 call sp_clear_flags 
+0x75fa 024604 branch sp_pubkey_calc 
+:      024606 sp_clear_flags:
+0x75fb 024607 setarg 0 
+0x75fc 024608 store 8 ,mem_sp_state_start 
+0x75fd 024609 store 4 ,mem_sp_flag_start 
+0x75fe 024610 store 7 ,mem_sp_iocap_remote 
+0x75ff 024611 rtn 
+:      024613 sp_generate_local_key:
+0x7600 024614 jam sp_flag_commit ,mem_sp_flag 
+0x7601 024615 branch sp_generate_local_key0 
+:      024616 sp_master_generate_local_key:
+0x7602 024617 fetch 1 ,mem_sp_local_key_invalid 
+0x7603 024618 beq sp_key_valid ,sp_dhkey_calc 
+0x7604 024619 branch assert 
+:      024620 sp_generate_local_key0:
+0x7605 024621 fetch 1 ,mem_sp_local_key_invalid 
+0x7606 024622 beq sp_key_valid ,sp_start_send_pubkey 
+0x7607 024623 branch sp_pubkey_calc 
+:      024625 sp_start_send_pubkey:
+0x7608 024626 call sp_dhkey_calc 
+0x7609 024627 fetch 1 ,mem_master_sp_state 
+0x760a 024628 nrtn blank 
+0x760b 024629 jam sp_stat_key_send ,mem_sp_state 
+0x760c 024630 rtn 
+:      024632 sp_calculate_commitment:
+0x760d 024633 fetch 1 ,mem_sp_calc 
+0x760e 024634 bne sp_calc_standby ,sp_calculate_commitment_wait_dhkey_calc 
+0x760f 024635 call sp_local_random_key_generator 
+0x7610 024636 arg mem_sp_prarm_stack ,contw 
+0x7611 024637 setarg mem_sp_random_local_end 
+0x7612 024638 istore 2 ,contw 
+0x7613 024639 setarg mem_sp_pubkey_local_x_end 
+0x7614 024640 istore 2 ,contw 
+0x7615 024641 setarg mem_sp_pubkey_remote_x_end 
+0x7616 024642 istore 2 ,contw 
+0x7617 024643 branch sp_calculate_commitment0 
+:      024644 master_sp_calculate_commitment:
+0x7618 024645 arg mem_sp_prarm_stack ,contw 
+0x7619 024646 setarg mem_sp_random_remote_end 
+0x761a 024647 istore 2 ,contw 
+0x761b 024648 setarg mem_sp_pubkey_remote_x_end 
+0x761c 024649 istore 2 ,contw 
+0x761d 024650 setarg mem_sp_pubkey_local_x_end 
+0x761e 024651 istore 2 ,contw 
+:      024652 sp_calculate_commitment0:
+0x761f 024653 call function_f1 
+0x7620 024654 fetch 1 ,mem_master_sp_state 
+0x7621 024655 beq sp_stat_commit_calc ,master_sp_calculate_commitment0 
+0x7622 024656 jam sp_flag_commit ,mem_sp_flag 
+0x7623 024657 jam sp_stat_commit_send ,mem_sp_state 
+0x7624 024658 rtn 
+:      024659 master_sp_calculate_commitment0:
+0x7625 024660 jam sp_stat_commitment_compare ,mem_master_sp_state 
+0x7626 024661 call sp_master_generate_local_key 
+0x7627 024662 branch master_set_mem_master_sp_flag 
+:      024664 sp_local_random_key_generator:
+0x7628 024665 arg mem_sp_random_local ,contw 
+0x7629 024666 force 8 ,queue 
+0x762a 024667 branch random_generator 
+:      024669 sp_calculate_commitment_wait_dhkey_calc:
+0x762b 024670 jam sp_flag_commit ,mem_sp_flag 
+0x762c 024671 rtn 
+:      024673 sp_confirm_check:
+0x762d 024675 set1 mark_ext_patch ,mark 
+0x762e 024676 bpatch patch3c_2 ,mem_patch3c 
+0x762f 024677 arg mem_addr_value ,contw 
+0x7630 024678 fetch 6 ,mem_lap 
+0x7631 024679 istore 6 ,contw 
+0x7632 024680 fetch 6 ,mem_plap 
+0x7633 024681 istore 6 ,contw 
+0x7634 024682 fetch 3 ,mem_sp_iocap_remote 
+0x7635 024683 istore 3 ,contw 
+0x7636 024685 call function_f3a 
+0x7637 024687 arg mem_sp_calc_result_high ,rega 
+0x7638 024688 arg mem_sp_check_result ,regb 
+0x7639 024689 force 4 ,queue 
+0x763a 024690 call compare4 
+0x763b 024691 nbranch sp_confirm_check_failed ,true 
+0x763c 024693 call sp_confirm_check_success 
+0x763d 024694 jam lmp_dhkey_check ,mem_lmi_opcode2 
+0x763e 024695 branch tid_set_reply 
+:      024697 sp_confirm_check_success:
+0x763f 024698 fetch 1 ,mem_master_sp_state 
+0x7640 024699 beq sp_stat_confirm_check ,sp_confirm_check_success_master 
+0x7641 024700 jam sp_stat_confirm_calc ,mem_sp_state 
+0x7642 024701 jam sp_flag_commit ,mem_sp_flag 
+0x7643 024702 jam lmp_accepted ,mem_lmo_opcode2 
+0x7644 024703 rtn 
+:      024704 sp_confirm_check_success_master:
+0x7645 024705 jam lmp_accepted ,mem_lmo_opcode2 
+0x7646 024706 jam sp_state_end ,mem_master_sp_state 
+0x7647 024707 branch master_set_mem_master_sp_flag 
+:      024710 sp_confirm_check_failed:
+0x7648 024711 fetch 1 ,mem_master_sp_state 
+0x7649 024712 beq sp_stat_confirm_check ,sp_confirm_check_failed_master 
+0x764a 024713 jam sp_stat_null ,mem_sp_state 
+0x764b 024714 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x764c 024716 jam authentication_failure_error ,mem_lmo_reason2 
+0x764d 024717 rtn 
+:      024718 sp_confirm_check_failed_master:
+0x764e 024719 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x764f 024720 jam sp_stat_null ,mem_master_sp_state 
+0x7650 024721 rtn 
+:      024723 sp_confirm_calc:
+0x7651 024724 fetch 1 ,mem_sp_dh_ready 
+0x7652 024725 beq sp_flag_commit ,sp_confirm_calc_ready 
+0x7653 024726 jam sp_stat_confirm_calc ,mem_master_sp_state 
+0x7654 024727 branch master_set_mem_master_sp_flag 
+:      024728 sp_confirm_calc_ready:
+0x7655 024729 arg mem_addr_value ,contw 
+0x7656 024730 fetch 6 ,mem_plap 
+0x7657 024731 istore 6 ,contw 
+0x7658 024732 fetch 6 ,mem_lap 
+0x7659 024733 istore 6 ,contw 
+0x765a 024734 fetch 3 ,mem_sp_iocap_local 
+0x765b 024735 istore 3 ,contw 
+0x765c 024737 call function_f3b 
+0x765d 024738 fetch 1 ,mem_master_sp_state 
+0x765e 024739 beq sp_stat_confirm_calc ,sp_confirm_calc_master 
+0x765f 024740 jam sp_stat_confirm_send ,mem_sp_state 
+0x7660 024741 jam sp_flag_commit ,mem_sp_flag 
+0x7661 024742 rtn 
+:      024743 sp_confirm_calc_master:
+0x7662 024744 jam sp_stat_confirm_send ,mem_master_sp_state 
+0x7663 024745 jam sp_flag_commit ,mem_master_sp_flag 
+0x7664 024746 rtn 
+:      024748 sp_master_key_prarm_push:
+0x7665 024749 arg mem_sp_prarm_stack ,contw 
+0x7666 024750 fetch 6 ,mem_plap 
+0x7667 024751 istore 6 ,contw 
+0x7668 024752 fetch 6 ,mem_lap 
+0x7669 024753 istore 6 ,contw 
+0x766a 024754 setarg mem_sp_random_local_end 
+0x766b 024755 istore 2 ,contw 
+0x766c 024756 setarg mem_sp_random_remote_end 
+0x766d 024757 istore 2 ,contw 
+0x766e 024758 branch sp_link_key_calc 
+:      024759 sp_link_key_prarm_push:
+0x766f 024760 jam sp_stat_done ,mem_sp_state 
+0x7670 024761 arg mem_sp_prarm_stack ,contw 
+0x7671 024762 fetch 6 ,mem_lap 
+0x7672 024763 istore 6 ,contw 
+0x7673 024764 fetch 6 ,mem_plap 
+0x7674 024765 istore 6 ,contw 
+0x7675 024766 setarg mem_sp_random_remote_end 
+0x7676 024767 istore 2 ,contw 
+0x7677 024768 setarg mem_sp_random_local_end 
+0x7678 024769 istore 2 ,contw 
+:      024770 sp_link_key_calc:
+0x7679 024772 arg mem_addr_value ,contw 
+0x767a 024773 fetch 6 ,mem_sp_prarm_stack 
+0x767b 024774 istore 6 ,contw 
+0x767c 024775 fetch 6 ,mem_sp_prarm_stack + 6 
+0x767d 024776 istore 6 ,contw 
+0x767e 024778 call function_f2 
+0x767f 024781 jam 1 ,mem_link_key_exists 
+0x7680 024782 arg mem_link_key ,contw 
+0x7681 024783 arg mem_sp_calc_result_high ,contr 
+0x7682 024784 call memcpy16 
+0x7683 024785 branch generate_linkkey_continue 
+:      024788 sp_pubkey_calc:
+0x7684 024789 set1 mark_ext_patch ,mark 
+0x7685 024790 bpatch patch3c_3 ,mem_patch3c 
+0x7686 024791 fetch 1 ,mem_sp_local_key_invalid 
+0x7687 024792 rtnne sp_key_invalid 
+0x7688 024793 fetch 1 ,mem_sp_calc 
+0x7689 024794 rtnne sp_calc_standby 
+0x768a 024795 arg mem_sp_private_key ,contw 
+0x768b 024796 force 11 ,queue 
+0x768c 024797 call random_generator 
+0x768d 024798 random pdata 
+0x768e 024799 rshift pdata ,pdata 
+0x768f 024800 istore 2 ,contw 
+0x7690 024802 arg mem_k ,contw 
+0x7691 024803 arg mem_sp_private_key ,contr 
+0x7692 024804 call memcpy24 
+0x7693 024806 arg mem_ax ,contw 
+0x7694 024807 arg mem_gx ,contr 
+0x7695 024808 call memcpy48 
+0x7696 024810 arg mem_az ,contw 
+0x7697 024811 call bn_zero 
+0x7698 024812 jam 1 ,mem_az 
+0x7699 024814 call eckp_calc_init 
+0x769a 024815 jam sp_calc_pubkey ,mem_sp_calc 
+0x769b 024816 rtn 
+:      024818 sp_pubkey_generated:
+0x769c 024819 arg mem_sp_pubkey_local ,contw 
+0x769d 024820 arg mem_bx ,contr 
+0x769e 024821 call memcpy48 
+0x769f 024822 jam sp_key_valid ,mem_sp_local_key_invalid 
+0x76a0 024823 jam sp_calc_standby ,mem_sp_calc 
+0x76a1 024824 rtn 
+:      024826 sp_dhkey_calc:
+0x76a2 024827 set1 mark_ext_patch ,mark 
+0x76a3 024828 bpatch patch3c_4 ,mem_patch3c 
+0x76a4 024829 fetch 1 ,mem_sp_dhkey_invalid 
+0x76a5 024830 rtnne sp_key_invalid 
+0x76a6 024831 fetch 1 ,mem_sp_calc 
+0x76a7 024832 rtnne sp_calc_standby 
+0x76a8 024834 arg mem_k ,contw 
+0x76a9 024835 arg mem_sp_private_key ,contr 
+0x76aa 024836 call memcpy24 
+0x76ab 024838 arg mem_ax ,contw 
+0x76ac 024839 arg mem_sp_pubkey_remote ,contr 
+0x76ad 024840 call memcpy48 
+0x76ae 024842 arg mem_az ,contw 
+0x76af 024843 call bn_zero 
+0x76b0 024844 jam 1 ,mem_az 
+0x76b1 024846 call eckp_calc_init 
+0x76b2 024847 jam sp_calc_dhkey ,mem_sp_calc 
+0x76b3 024848 rtn 
+:      024850 sp_dhkey_generated:
+0x76b4 024851 jam sp_flag_commit ,mem_sp_dh_ready 
+0x76b5 024852 arg mem_sp_dhkey ,contw 
+0x76b6 024853 arg mem_bx ,contr 
+0x76b7 024854 call memcpy24 
+0x76b8 024855 jam sp_key_valid ,mem_sp_dhkey_invalid 
+0x76b9 024856 jam sp_calc_standby ,mem_sp_calc 
+0x76ba 024857 rtn 
+:      024859 random_generator:
+0x76bb 024860 increase -1 ,queue 
+0x76bc 024861 nrtn positive 
+0x76bd 024862 random pdata 
+0x76be 024863 istore 2 ,contw 
+0x76bf 024864 branch random_generator 
+:      024865 compare4:
+0x76c0 024866 increase -1 ,queue 
+0x76c1 024867 nbranch compare4_success ,positive 
+0x76c2 024868 ifetch 4 ,rega 
+0x76c3 024869 copy pdata ,temp 
+0x76c4 024870 ifetch 4 ,regb 
+0x76c5 024871 iflip temp ,pdata 
+0x76c6 024872 nbranch compare4_failed ,zero 
+0x76c7 024873 increase 4 ,rega 
+0x76c8 024874 increase 4 ,regb 
+0x76c9 024875 branch compare4 
+:      024876 compare4_failed:
+0x76ca 024877 disable true 
+0x76cb 024878 rtn 
+:      024879 compare4_success:
+0x76cc 024880 enable true 
+0x76cd 024881 rtn 
+:      024888 simple_pairing_sequence:
+0x76ce 024889 set1 mark_ext_patch ,mark 
+0x76cf 024890 bpatch patch3c_5 ,mem_patch3c 
+0x76d0 024891 fetch 1 ,mem_sp_flag 
+0x76d1 024892 rtn blank 
+0x76d2 024893 call lmo_fifo_check 
+0x76d3 024894 nrtn blank 
+0x76d4 024895 jam sp_flag_standby ,mem_sp_flag 
+0x76d5 024896 fetch 1 ,mem_sp_state 
+0x76d6 024897 beq sp_stat_key_send ,sp_send_lmp_encapsulated_header 
+0x76d7 024898 beq sp_stat_commit_send ,sp_send_lmp_simple_pairing_comfirm 
+0x76d8 024899 beq sp_stat_random_send ,sp_send_lmp_simple_pairing_number 
+0x76d9 024900 beq sp_stat_confirm_send ,sp_send_lmp_dhkey_check 
+0x76da 024901 beq sp_stat_key_generate ,sp_generate_local_key 
+0x76db 024902 beq sp_stat_commit_calc ,sp_calculate_commitment 
+0x76dc 024903 beq sp_stat_confirm_check ,sp_confirm_check 
+0x76dd 024904 beq sp_stat_confirm_calc ,sp_confirm_calc 
+0x76de 024905 beq sp_stat_link_key_calc ,sp_link_key_prarm_push 
+0x76df 024907 rtn 
+:      024909 master_simple_paring_sequence:
+0x76e0 024910 set1 mark_ext_patch ,mark 
+0x76e1 024911 bpatch patch3c_6 ,mem_patch3c 
+0x76e2 024912 fetch 1 ,mem_master_sp_flag 
+0x76e3 024913 rtn blank 
+0x76e4 024914 call lmo_fifo_check 
+0x76e5 024915 nrtn blank 
+0x76e6 024916 jam sp_flag_standby ,mem_master_sp_flag 
+0x76e7 024917 fetch 1 ,mem_master_sp_state 
+0x76e8 024918 beq sp_master_stat_start_skip ,sp_master_send_io_cap_get 
+0x76e9 024919 beq sp_master_stat_start_done ,sp_master_send_io_cap_send 
+0x76ea 024920 beq sp_stat_key_send ,sp_master_send_lmp_encapsulated_header 
+0x76eb 024921 beq sp_stat_commit_calc ,master_sp_calculate_commitment 
+0x76ec 024922 beq sp_stat_commitment_compare ,sp_master_commitment_compare 
+0x76ed 024923 beq sp_stat_random_send ,sp_master_send_lmp_simple_pairing_number 
+0x76ee 024924 beq sp_stat_confirm_calc ,sp_confirm_calc 
+0x76ef 024925 beq sp_stat_confirm_send ,master_sp_send_lmp_dhkey_check 
+0x76f0 024926 beq sp_stat_confirm_check ,sp_confirm_check 
+0x76f1 024927 beq sp_state_end ,master_sp_sm_end 
+0x76f2 024928 rtn 
+:      024930 master_set_mem_master_sp_flag:
+0x76f3 024931 jam sp_flag_commit ,mem_master_sp_flag 
+0x76f4 024932 rtn 
+:      024934 master_clear_mem_master_sp_flag:
+0x76f5 024935 jam sp_flag_standby ,mem_master_sp_flag 
+0x76f6 024936 rtn 
+:      024937 sp_calc_sequence:
+0x76f7 024938 set1 mark_ext_patch ,mark 
+0x76f8 024939 bpatch patch3c_7 ,mem_patch3c 
+0x76f9 024940 fetch 1 ,mem_ssp_enable 
+0x76fa 024941 rtn blank 
+0x76fb 024942 fetch 1 ,mem_sp_calc 
+0x76fc 024943 rtn blank 
+0x76fd 024944 increase 0x80 ,pdata 
+0x76fe 024945 store 1 ,mem_sp_calc 
+0x76ff 024946 rtnbit1 7 
+0x7700 024947 fetch 1 ,mem_ec_loopc 
+0x7701 024948 branch sp_calc_sequence_done ,blank 
+0x7702 024949 branch eckp_calc 
+:      024951 sp_calc_sequence_done:
+0x7703 024952 call ecunmapz 
+0x7704 024953 fetch 1 ,mem_sp_calc 
+0x7705 024954 beq sp_calc_pubkey ,sp_pubkey_generated 
+0x7706 024955 beq sp_calc_dhkey ,sp_dhkey_generated 
+0x7707 024956 rtn 
+:      024959 bn_testbit:
+0x7708 024960 and pdata ,7 ,queue 
+0x7709 024961 rshift3 pdata ,pdata 
+0x770a 024962 iadd contr ,contr 
+0x770b 024963 ifetch 1 ,contr 
+0x770c 024964 qisolate0 pdata 
+0x770d 024965 rtn 
+:      024968 ec_copy:
+0x770e 024969 call memcpy24 
+0x770f 024970 call memcpy24 
+0x7710 024971 branch memcpy24 
+:      024974 bn_eq_zero:
+0x7711 024975 ifetch 8 ,contr 
+0x7712 024976 nrtn blank 
+0x7713 024977 ifetch 8 ,contr 
+0x7714 024978 nrtn blank 
+0x7715 024979 ifetch 8 ,contr 
+0x7716 024980 rtn 
+:      024985 bn_eq_0:
+0x7717 024986 ifetch 4 ,rega 
+0x7718 024987 iforce temp 
+0x7719 024988 ifetch 4 ,regb 
+0x771a 024989 isub temp ,null 
+0x771b 024990 nrtn zero 
+0x771c 024991 increase 4 ,rega 
+0x771d 024992 increase 4 ,regb 
+0x771e 024993 loop bn_eq_0 
+0x771f 024994 rtn 
+:      024997 bn_bigeq:
+0x7720 024998 force 6 ,loopcnt 
+0x7721 024999 increase 20 ,rega 
+0x7722 025000 increase 20 ,regb 
+:      025001 bn_bigeq_0:
+0x7723 025002 ifetch 4 ,regb 
+0x7724 025003 iforce temp 
+0x7725 025004 ifetch 4 ,rega 
+0x7726 025005 isub temp ,pdata 
+0x7727 025006 nrtn positive 
+0x7728 025007 nrtn blank 
+0x7729 025008 increase -4 ,rega 
+0x772a 025009 increase -4 ,regb 
+0x772b 025010 loop bn_bigeq_0 
+0x772c 025011 rtn 
+:      025013 bn_add:
+0x772d 025014 force 6 ,loopcnt 
+0x772e 025015 force 0 ,regc 
+:      025016 bn_add_0:
+0x772f 025017 ifetch 4 ,rega 
+0x7730 025018 iforce temp 
+0x7731 025019 ifetch 4 ,regb 
+0x7732 025020 iadd temp ,pdata 
+0x7733 025021 iadd regc ,pdata 
+0x7734 025022 istore 4 ,contw 
+0x7735 025023 isolate1 32 ,pdata 
+0x7736 025024 setflag true ,0 ,regc 
+0x7737 025025 increase 4 ,rega 
+0x7738 025026 increase 4 ,regb 
+0x7739 025027 loop bn_add_0 
+0x773a 025028 rtn 
+:      025030 bn_sub:
+0x773b 025031 force 6 ,loopcnt 
+0x773c 025032 force 0 ,regc 
+:      025033 bn_sub_0:
+0x773d 025034 ifetch 4 ,regb 
+0x773e 025035 iforce temp 
+0x773f 025036 ifetch 4 ,rega 
+0x7740 025037 isub temp ,pdata 
+0x7741 025038 isub regc ,pdata 
+0x7742 025039 istore 4 ,contw 
+0x7743 025040 isolate1 32 ,pdata 
+0x7744 025041 setflag true ,0 ,regc 
+0x7745 025042 increase 4 ,rega 
+0x7746 025043 increase 4 ,regb 
+0x7747 025044 loop bn_sub_0 
+0x7748 025045 rtn 
+:      025047 bn_rshift6:
+0x7749 025048 force 6 ,loopcnt 
+0x774a 025049 increase 20 ,rega 
+:      025050 bn_rshift:
+0x774b 025051 force 0 ,regc 
+:      025052 bn_rshift_0:
+0x774c 025053 ifetch 4 ,rega 
+0x774d 025054 isolate1 0 ,pdata 
+0x774e 025055 setflag true ,1 ,regc 
+0x774f 025056 rshift pdata ,pdata 
+0x7750 025057 isolate1 0 ,regc 
+0x7751 025058 setflag true ,31 ,pdata 
+0x7752 025059 istore 4 ,rega 
+0x7753 025060 increase -4 ,rega 
+0x7754 025061 rshift regc ,regc 
+0x7755 025062 loop bn_rshift_0 
+0x7756 025063 rtn 
+:      025065 bn_lshift:
+0x7757 025066 force 6 ,loopcnt 
+0x7758 025067 force 0 ,regc 
+:      025068 bn_lshift_0:
+0x7759 025069 ifetch 4 ,rega 
+0x775a 025070 isolate1 31 ,pdata 
+0x775b 025071 setflag true ,1 ,regc 
+0x775c 025072 lshift pdata ,pdata 
+0x775d 025073 isolate1 0 ,regc 
+0x775e 025074 setflag true ,0 ,pdata 
+0x775f 025075 istore 4 ,rega 
+0x7760 025076 increase 4 ,rega 
+0x7761 025077 rshift regc ,regc 
+0x7762 025078 loop bn_lshift_0 
+0x7763 025079 rtn 
+:      025081 bn_lshiftmod:
+0x7764 025082 call bn_lshift 
+:      025083 bn_lshiftmod_ismod:
+0x7765 025084 isolate1 0 ,regc 
+0x7766 025085 branch bn_lshiftmod_0 ,true 
+0x7767 025086 arg mem_p ,regb 
+0x7768 025087 copy rega ,regc 
+0x7769 025088 increase -24 ,rega 
+0x776a 025089 call bn_bigeq 
+0x776b 025090 nrtn positive 
+0x776c 025091 copy regc ,rega 
+:      025092 bn_lshiftmod_0:
+0x776d 025093 increase -24 ,rega 
+0x776e 025094 arg mem_p ,regb 
+0x776f 025095 copy rega ,contw 
+0x7770 025096 branch bn_sub 
+:      025099 bn_addmod:
+0x7771 025100 call bn_add 
+0x7772 025101 copy contw ,rega 
+0x7773 025102 branch bn_lshiftmod_ismod 
+:      025104 bn_submod:
+0x7774 025105 call bn_sub 
+0x7775 025106 isolate0 0 ,regc 
+0x7776 025107 rtn true 
+0x7777 025108 arg mem_p ,regb 
+0x7778 025109 add contw ,-24 ,rega 
+0x7779 025110 copy rega ,contw 
+0x777a 025111 branch bn_add 
+:      025114 bn_p192mod:
+0x777b 025115 copy contw ,timeup 
+0x777c 025116 copy rega ,alarm 
+0x777d 025117 arg mem_tmp2 ,regb 
+0x777e 025118 copy regb ,contw 
+0x777f 025119 add rega ,24 ,contr 
+0x7780 025120 ifetch 8 ,contr 
+0x7781 025121 istore 8 ,contw 
+0x7782 025122 istore 8 ,contw 
+0x7783 025123 force 0 ,pdata 
+0x7784 025124 istore 8 ,contw 
+0x7785 025125 copy timeup ,contw 
+0x7786 025126 call bn_addmod 
+0x7787 025127 arg mem_tmp2 ,regb 
+0x7788 025128 copy regb ,contw 
+0x7789 025129 force 0 ,pdata 
+0x778a 025130 istore 8 ,contw 
+0x778b 025131 add alarm ,32 ,contr 
+0x778c 025132 ifetch 8 ,contr 
+0x778d 025133 istore 8 ,contw 
+0x778e 025134 istore 8 ,contw 
+0x778f 025135 copy timeup ,rega 
+0x7790 025136 copy rega ,contw 
+0x7791 025137 call bn_addmod 
+0x7792 025138 arg mem_tmp2 ,regb 
+0x7793 025139 copy regb ,contw 
+0x7794 025140 add alarm ,40 ,contr 
+0x7795 025141 ifetch 8 ,contr 
+0x7796 025142 istore 8 ,contw 
+0x7797 025143 istore 8 ,contw 
+0x7798 025144 istore 8 ,contw 
+0x7799 025145 copy timeup ,rega 
+0x779a 025146 copy rega ,contw 
+0x779b 025147 branch bn_addmod 
+:      025150 bn_load:
+0x779c 025151 force 6 ,loopcnt 
+:      025152 bn_load_0:
+0x779d 025153 ifetch 4 ,contr 
+0x779e 025154 iforce regext 
+0x779f 025155 increase 1 ,regext_index 
+0x77a0 025156 loop bn_load_0 
+0x77a1 025157 rtn 
+:      025161 bn_mulmod:
+0x77a2 025162 copy contw ,timeup 
+0x77a3 025163 arg mem_tmp1 ,contw 
+0x77a4 025164 call bn_zero 
+0x77a5 025165 arg mem_tmp1 ,contw 
+0x77a6 025166 copy rega ,contr 
+0x77a7 025167 force 0 ,regext_index 
+0x77a8 025168 call bn_load 
+0x77a9 025169 copy regb ,contr 
+0x77aa 025170 call bn_load 
+0x77ab 025171 force 0 ,regb 
+:      025172 bn_mulmod_1:
+0x77ac 025173 force 0 ,temp 
+0x77ad 025174 force 6 ,regc 
+:      025175 bn_mulmod_0:
+0x77ae 025176 ifetch 4 ,contw 
+0x77af 025177 iforce rega 
+0x77b0 025178 copy regb ,regext_index 
+0x77b1 025179 deposit regext 
+0x77b2 025180 copy regc ,regext_index 
+0x77b3 025181 imul32 regext ,pdata 
+0x77b4 025182 iadd rega ,pdata 
+0x77b5 025183 iadd temp ,pdata 
+0x77b6 025184 istore 4 ,contw 
+0x77b7 025185 rshift32 pdata ,temp 
+0x77b8 025186 increase 1 ,regc 
+0x77b9 025187 compare 12 ,regc ,0xff 
+0x77ba 025188 nbranch bn_mulmod_0 ,true 
+0x77bb 025189 deposit temp 
+0x77bc 025190 istore 4 ,contw 
+0x77bd 025191 increase -24 ,contw 
+0x77be 025192 increase 1 ,regb 
+0x77bf 025193 compare 6 ,regb ,0xff 
+0x77c0 025194 nbranch bn_mulmod_1 ,true 
+0x77c1 025195 arg mem_tmp1 ,rega 
+0x77c2 025196 copy timeup ,contw 
+0x77c3 025197 branch bn_p192mod 
+:      025200 bn_sqrmod:
+0x77c4 025201 copy rega ,regb 
+0x77c5 025202 branch bn_mulmod 
+:      025204 bn_rshifteven:
+0x77c6 025205 copy rega ,alarm 
+:      025206 bn_rshifteven_1:
+0x77c7 025207 copy alarm ,rega 
+0x77c8 025208 ifetch 1 ,rega 
+0x77c9 025209 isolate1 0 ,pdata 
+0x77ca 025210 rtn true 
+0x77cb 025211 call bn_rshift6 
+0x77cc 025212 ifetch 1 ,regb 
+0x77cd 025213 isolate0 0 ,pdata 
+0x77ce 025214 branch bn_rshifteven_0 ,true 
+0x77cf 025215 arg mem_p ,rega 
+0x77d0 025216 copy regb ,contw 
+0x77d1 025217 call bn_add 
+0x77d2 025218 ifetch 1 ,regb 
+0x77d3 025219 iadd regc ,pdata 
+0x77d4 025220 istore 1 ,regb 
+0x77d5 025221 increase -24 ,regb 
+:      025222 bn_rshifteven_0:
+0x77d6 025223 add regb ,24 ,rega 
+0x77d7 025224 force 7 ,loopcnt 
+0x77d8 025225 call bn_rshift 
+0x77d9 025226 branch bn_rshifteven_1 
+:      025229 bn_invmod:
+0x77da 025230 copy contw ,timeup 
+0x77db 025231 arg mem_tmp0 ,contw 
+0x77dc 025232 call bn_zero 
+0x77dd 025233 force 0 ,pdata 
+0x77de 025234 store 4 ,mem_tmp5 
+0x77df 025235 store 4 ,mem_t2 
+0x77e0 025236 jam 1 ,mem_tmp0 
+0x77e1 025237 arg mem_tmp1 ,contw 
+0x77e2 025238 call bn_zero 
+0x77e3 025239 arg mem_p ,contr 
+0x77e4 025240 arg mem_tmp2 ,contw 
+0x77e5 025241 call memcpy24 
+0x77e6 025242 copy rega ,contr 
+0x77e7 025243 arg mem_tmp3 ,contw 
+0x77e8 025244 call memcpy24 
+:      025245 bn_invmod_2:
+0x77e9 025246 arg mem_tmp3 ,contr 
+0x77ea 025247 call bn_eq_zero 
+0x77eb 025248 branch bn_invmod_0 ,blank 
+0x77ec 025249 arg mem_tmp3 ,rega 
+0x77ed 025250 arg mem_tmp0 ,regb 
+0x77ee 025251 call bn_rshifteven 
+0x77ef 025253 arg mem_tmp2 ,rega 
+0x77f0 025254 arg mem_tmp1 ,regb 
+0x77f1 025255 call bn_rshifteven 
+0x77f2 025256 arg mem_tmp3 ,rega 
+0x77f3 025257 arg mem_tmp2 ,regb 
+0x77f4 025258 call bn_bigeq 
+0x77f5 025259 branch bn_invmod_1 ,positive 
+0x77f6 025260 arg mem_tmp2 ,rega 
+0x77f7 025261 arg mem_tmp3 ,regb 
+0x77f8 025262 copy rega ,contw 
+0x77f9 025263 call bn_sub 
+0x77fa 025264 arg mem_tmp0 ,rega 
+0x77fb 025265 arg mem_tmp1 ,regb 
+0x77fc 025266 copy regb ,contw 
+0x77fd 025267 call bn_add 
+0x77fe 025268 ifetch 1 ,rega 
+0x77ff 025269 iadd regc ,regc 
+0x7800 025270 ifetch 1 ,regb 
+0x7801 025271 iadd regc ,pdata 
+0x7802 025272 istore 1 ,regb 
+0x7803 025273 branch bn_invmod_2 
+:      025274 bn_invmod_1:
+0x7804 025275 arg mem_tmp3 ,rega 
+0x7805 025276 arg mem_tmp2 ,regb 
+0x7806 025277 copy rega ,contw 
+0x7807 025278 call bn_sub 
+0x7808 025279 arg mem_tmp1 ,rega 
+0x7809 025280 arg mem_tmp0 ,regb 
+0x780a 025281 copy regb ,contw 
+0x780b 025282 call bn_add 
+0x780c 025283 ifetch 1 ,rega 
+0x780d 025284 iadd regc ,regc 
+0x780e 025285 ifetch 1 ,regb 
+0x780f 025286 iadd regc ,pdata 
+0x7810 025287 istore 1 ,regb 
+0x7811 025288 branch bn_invmod_2 
+:      025289 bn_invmod_0:
+0x7812 025290 arg mem_tmp0 ,contw 
+0x7813 025291 call bn_zero 
+0x7814 025292 fetch 1 ,mem_tmp5 
+0x7815 025293 store 1 ,mem_tmp0 
+0x7816 025294 store 1 ,mem_tmp0a 
+0x7817 025295 arg mem_tmp0 ,rega 
+0x7818 025296 arg mem_tmp1 ,regb 
+0x7819 025297 copy regb ,contw 
+0x781a 025298 call bn_addmod 
+0x781b 025299 arg mem_p ,rega 
+0x781c 025300 arg mem_tmp1 ,regb 
+0x781d 025301 copy timeup ,contw 
+0x781e 025302 branch bn_submod 
+:      025307 ecdbl:
+0x781f 025308 arg mem_cz ,rega 
+0x7820 025309 arg mem_t2 ,contw 
+0x7821 025310 call bn_sqrmod 
+0x7822 025311 arg mem_t2 ,rega 
+0x7823 025312 arg mem_t3 ,contw 
+0x7824 025313 call bn_sqrmod 
+0x7825 025314 arg mem_a ,rega 
+0x7826 025315 arg mem_t3 ,regb 
+0x7827 025316 arg mem_t3 ,contw 
+0x7828 025317 call bn_mulmod 
+0x7829 025318 arg mem_cx ,rega 
+0x782a 025319 arg mem_t2 ,contw 
+0x782b 025320 call bn_sqrmod 
+0x782c 025321 arg mem_t2 ,contr 
+0x782d 025322 arg mem_t1 ,contw 
+0x782e 025323 call memcpy24 
+0x782f 025324 arg mem_t1 ,rega 
+0x7830 025325 call bn_lshiftmod 
+0x7831 025326 arg mem_t2 ,rega 
+0x7832 025327 arg mem_t1 ,regb 
+0x7833 025328 arg mem_t2 ,contw 
+0x7834 025329 call bn_addmod 
+0x7835 025330 arg mem_t2 ,rega 
+0x7836 025331 arg mem_t3 ,regb 
+0x7837 025332 arg mem_t2 ,contw 
+0x7838 025333 call bn_addmod 
+0x7839 025334 arg mem_cx ,contr 
+0x783a 025335 arg mem_t1 ,contw 
+0x783b 025336 call memcpy24 
+0x783c 025337 arg mem_cy ,rega 
+0x783d 025338 arg mem_t3 ,contw 
+0x783e 025339 call bn_sqrmod 
+0x783f 025340 arg mem_t1 ,rega 
+0x7840 025341 call bn_lshiftmod 
+0x7841 025342 arg mem_t1 ,rega 
+0x7842 025343 call bn_lshiftmod 
+0x7843 025344 arg mem_t1 ,rega 
+0x7844 025345 arg mem_t3 ,regb 
+0x7845 025346 arg mem_t1 ,contw 
+0x7846 025347 call bn_mulmod 
+0x7847 025348 arg mem_t3 ,rega 
+0x7848 025349 arg mem_t0 ,contw 
+0x7849 025350 call bn_sqrmod 
+0x784a 025351 arg mem_t0 ,rega 
+0x784b 025352 call bn_lshiftmod 
+0x784c 025353 arg mem_t0 ,rega 
+0x784d 025354 call bn_lshiftmod 
+0x784e 025355 arg mem_t0 ,rega 
+0x784f 025356 call bn_lshiftmod 
+0x7850 025357 arg mem_cy ,contr 
+0x7851 025358 arg mem_t3 ,contw 
+0x7852 025359 call memcpy24 
+0x7853 025360 arg mem_t3 ,rega 
+0x7854 025361 call bn_lshiftmod 
+0x7855 025362 arg mem_t3 ,rega 
+0x7856 025363 arg mem_cz ,regb 
+0x7857 025364 arg mem_cz ,contw 
+0x7858 025365 call bn_mulmod 
+0x7859 025366 arg mem_t2 ,rega 
+0x785a 025367 arg mem_t3 ,contw 
+0x785b 025368 call bn_sqrmod 
+0x785c 025369 arg mem_t3 ,rega 
+0x785d 025370 arg mem_t1 ,regb 
+0x785e 025371 arg mem_t3 ,contw 
+0x785f 025372 call bn_submod 
+0x7860 025373 arg mem_t3 ,rega 
+0x7861 025374 arg mem_t1 ,regb 
+0x7862 025375 arg mem_cx ,contw 
+0x7863 025376 call bn_submod 
+0x7864 025377 arg mem_t1 ,rega 
+0x7865 025378 arg mem_cx ,regb 
+0x7866 025379 arg mem_t3 ,contw 
+0x7867 025380 call bn_submod 
+0x7868 025381 arg mem_t3 ,rega 
+0x7869 025382 arg mem_t2 ,regb 
+0x786a 025383 arg mem_t3 ,contw 
+0x786b 025384 call bn_mulmod 
+0x786c 025385 arg mem_t3 ,rega 
+0x786d 025386 arg mem_t0 ,regb 
+0x786e 025387 arg mem_cy ,contw 
+0x786f 025388 branch bn_submod 
+:      025392 ecadd:
+0x7870 025393 arg mem_az ,rega 
+0x7871 025394 arg mem_t7 ,contw 
+0x7872 025395 call bn_sqrmod 
+0x7873 025396 arg mem_cx ,rega 
+0x7874 025397 arg mem_t7 ,regb 
+0x7875 025398 arg mem_t0 ,contw 
+0x7876 025399 call bn_mulmod 
+0x7877 025400 arg mem_az ,rega 
+0x7878 025401 arg mem_t7 ,regb 
+0x7879 025402 arg mem_t7 ,contw 
+0x787a 025403 call bn_mulmod 
+0x787b 025404 arg mem_cy ,rega 
+0x787c 025405 arg mem_t7 ,regb 
+0x787d 025406 arg mem_t1 ,contw 
+0x787e 025407 call bn_mulmod 
+0x787f 025408 arg mem_cz ,rega 
+0x7880 025409 arg mem_t7 ,contw 
+0x7881 025410 call bn_sqrmod 
+0x7882 025411 arg mem_ax ,rega 
+0x7883 025412 arg mem_t7 ,regb 
+0x7884 025413 arg mem_t2 ,contw 
+0x7885 025414 call bn_mulmod 
+0x7886 025415 arg mem_cz ,rega 
+0x7887 025416 arg mem_t7 ,regb 
+0x7888 025417 arg mem_t7 ,contw 
+0x7889 025418 call bn_mulmod 
+0x788a 025419 arg mem_ay ,rega 
+0x788b 025420 arg mem_t7 ,regb 
+0x788c 025421 arg mem_t3 ,contw 
+0x788d 025422 call bn_mulmod 
+0x788e 025423 arg mem_t0 ,rega 
+0x788f 025424 arg mem_t2 ,regb 
+0x7890 025425 arg mem_t7 ,contw 
+0x7891 025426 call bn_submod 
+0x7892 025427 arg mem_t0 ,rega 
+0x7893 025428 arg mem_t2 ,regb 
+0x7894 025429 arg mem_t0 ,contw 
+0x7895 025430 call bn_addmod 
+0x7896 025431 arg mem_t1 ,rega 
+0x7897 025432 arg mem_t3 ,regb 
+0x7898 025433 arg mem_t2 ,contw 
+0x7899 025434 call bn_submod 
+0x789a 025435 arg mem_t1 ,rega 
+0x789b 025436 arg mem_t3 ,regb 
+0x789c 025437 arg mem_t1 ,contw 
+0x789d 025438 call bn_addmod 
+0x789e 025439 arg mem_t1 ,rega 
+0x789f 025440 arg mem_t7 ,regb 
+0x78a0 025441 arg mem_t1 ,contw 
+0x78a1 025442 call bn_mulmod 
+0x78a2 025443 arg mem_cz ,rega 
+0x78a3 025444 arg mem_az ,regb 
+0x78a4 025445 arg mem_t3 ,contw 
+0x78a5 025446 call bn_mulmod 
+0x78a6 025447 arg mem_t3 ,rega 
+0x78a7 025448 arg mem_t7 ,regb 
+0x78a8 025449 arg mem_cz ,contw 
+0x78a9 025450 call bn_mulmod 
+0x78aa 025451 arg mem_t7 ,rega 
+0x78ab 025452 arg mem_t7 ,contw 
+0x78ac 025453 call bn_sqrmod 
+0x78ad 025454 arg mem_t7 ,rega 
+0x78ae 025455 arg mem_t0 ,regb 
+0x78af 025456 arg mem_t3 ,contw 
+0x78b0 025457 call bn_mulmod 
+0x78b1 025458 arg mem_t7 ,rega 
+0x78b2 025459 arg mem_t1 ,regb 
+0x78b3 025460 arg mem_t1 ,contw 
+0x78b4 025461 call bn_mulmod 
+0x78b5 025462 arg mem_t2 ,rega 
+0x78b6 025463 arg mem_cx ,contw 
+0x78b7 025464 call bn_sqrmod 
+0x78b8 025465 arg mem_cx ,rega 
+0x78b9 025466 arg mem_t3 ,regb 
+0x78ba 025467 arg mem_cx ,contw 
+0x78bb 025468 call bn_submod 
+0x78bc 025469 arg mem_cx ,contr 
+0x78bd 025470 arg mem_t7 ,contw 
+0x78be 025471 call memcpy24 
+0x78bf 025472 arg mem_t7 ,rega 
+0x78c0 025473 call bn_lshiftmod 
+0x78c1 025474 arg mem_t3 ,rega 
+0x78c2 025475 arg mem_t7 ,regb 
+0x78c3 025476 arg mem_t3 ,contw 
+0x78c4 025477 call bn_submod 
+0x78c5 025478 arg mem_t3 ,rega 
+0x78c6 025479 arg mem_t2 ,regb 
+0x78c7 025480 arg mem_t2 ,contw 
+0x78c8 025481 call bn_mulmod 
+0x78c9 025482 arg mem_t2 ,rega 
+0x78ca 025483 arg mem_t1 ,regb 
+0x78cb 025484 arg mem_cy ,contw 
+0x78cc 025485 call bn_submod 
+0x78cd 025486 arg mem_cy ,rega 
+0x78ce 025487 arg mem_p ,regb 
+0x78cf 025488 arg mem_cy ,contw 
+0x78d0 025489 force 0 ,regc 
+0x78d1 025490 fetch 1 ,mem_cy 
+0x78d2 025491 isolate1 0 ,pdata 
+0x78d3 025492 call bn_add ,true 
+0x78d4 025493 copy regc ,alarm 
+0x78d5 025494 arg mem_cy ,rega 
+0x78d6 025495 call bn_rshift6 
+0x78d7 025496 fetch 1 ,mem_cy5 
+0x78d8 025497 isolate1 0 ,alarm 
+0x78d9 025498 setflag true ,7 ,pdata 
+0x78da 025499 store 1 ,mem_cy5 
+0x78db 025500 rtn 
+:      025504 eckp_0:
+0x78dc 025505 fetch 1 ,mem_ec_loopc 
+0x78dd 025506 increase -1 ,pdata 
+0x78de 025507 nrtn positive 
+0x78df 025508 store 1 ,mem_ec_loopc 
+0x78e0 025509 fetch 1 ,mem_ec_infinite 
+0x78e1 025510 call ecdbl ,blank 
+0x78e2 025511 fetch 1 ,mem_ec_loopc 
+0x78e3 025512 arg mem_k ,contr 
+0x78e4 025513 call bn_testbit 
+0x78e5 025514 branch eckp_0 ,true 
+0x78e6 025515 fetch 1 ,mem_ec_infinite 
+0x78e7 025516 nbranch eckp_1 ,blank 
+0x78e8 025517 call ecadd 
+0x78e9 025518 branch eckp_0 
+:      025519 eckp_1:
+0x78ea 025520 jam 0 ,mem_ec_infinite 
+0x78eb 025521 arg mem_ax ,contr 
+0x78ec 025522 arg mem_cx ,contw 
+0x78ed 025523 call ec_copy 
+0x78ee 025524 branch eckp_0 
+:      025527 ecunmapz:
+0x78ef 025528 arg mem_cz ,rega 
+0x78f0 025529 arg mem_t3 ,contw 
+0x78f1 025530 call bn_invmod 
+0x78f2 025531 arg mem_t3 ,rega 
+0x78f3 025532 arg mem_t1 ,contw 
+0x78f4 025533 call bn_sqrmod 
+0x78f5 025534 arg mem_cx ,rega 
+0x78f6 025535 arg mem_t1 ,regb 
+0x78f7 025536 arg mem_bx ,contw 
+0x78f8 025537 call bn_mulmod 
+0x78f9 025538 arg mem_t3 ,rega 
+0x78fa 025539 arg mem_t1 ,regb 
+0x78fb 025540 arg mem_t2 ,contw 
+0x78fc 025541 call bn_mulmod 
+0x78fd 025542 arg mem_cy ,rega 
+0x78fe 025543 arg mem_t2 ,regb 
+0x78ff 025544 arg mem_by ,contw 
+0x7900 025545 branch bn_mulmod 
+:      025549 sha_endian_swap2:
+0x7901 025550 ifetch 4 ,contr 
+0x7902 025551 force 4 ,rega 
+0x7903 025552 increase 3 ,contw 
+:      025553 sha_endian_loop:
+0x7904 025554 istore 1 ,contw 
+0x7905 025555 rshift8 pdata ,pdata 
+0x7906 025556 increase -2 ,contw 
+0x7907 025557 increase -1 ,rega 
+0x7908 025558 nbranch sha_endian_loop ,zero 
+0x7909 025559 increase 5 ,contw 
+0x790a 025560 loop sha_endian_swap2 
+0x790b 025561 rtn 
+:      025564 sha_getw:
+0x790c 025565 lshift2 queue ,pdata 
+0x790d 025566 iadd timeup ,contr 
+0x790e 025567 ifetch 4 ,contr 
+0x790f 025568 rtn 
+:      025570 sha_r:
+0x7910 025571 force 16 ,alarm 
+0x7911 025572 arg memdat ,timeup 
+:      025573 sha_r_loop:
+0x7912 025574 add alarm ,-7 ,queue 
+0x7913 025575 call sha_getw 
+0x7914 025576 iforce temp 
+0x7915 025577 add alarm ,-16 ,queue 
+0x7916 025578 call sha_getw 
+0x7917 025579 iadd temp ,temp 
+0x7918 025580 add alarm ,-2 ,queue 
+0x7919 025581 call sha_getw 
+0x791a 025582 shasx pdata ,1 ,pdata 
+0x791b 025583 iadd temp ,temp 
+0x791c 025584 add alarm ,-15 ,queue 
+0x791d 025585 call sha_getw 
+0x791e 025586 shasx pdata ,0 ,pdata 
+0x791f 025587 iadd temp ,temp 
+0x7920 025588 lshift2 alarm ,pdata 
+0x7921 025589 iadd timeup ,contw 
+0x7922 025590 istoret 4 ,contw 
+0x7923 025591 increase 1 ,alarm 
+0x7924 025592 compare 64 ,alarm ,0xff 
+0x7925 025593 nbranch sha_r_loop ,true 
+0x7926 025594 rtn 
+:      025597 sha_init:
+0x7927 025598 arg memh0 ,contr 
+0x7928 025599 force 7 ,regext_index 
+:      025600 sha_init_0:
+0x7929 025601 ifetch 4 ,contr 
+0x792a 025602 iforce regext 
+0x792b 025603 increase -1 ,regext_index 
+0x792c 025604 branch sha_init_0 ,positive 
+0x792d 025605 rtn 
+:      025607 sha:
+0x792e 025608 set1 mark_ext_patch ,mark 
+0x792f 025609 bpatch patch3d_0 ,mem_patch3d 
+0x7930 025610 call sha_r 
+0x7931 025611 arg memahbak ,contw 
+0x7932 025612 force 0 ,regext_index 
+:      025613 sha_0:
+0x7933 025614 deposit regext 
+0x7934 025615 istore 4 ,contw 
+0x7935 025616 increase 1 ,regext_index 
+0x7936 025617 compare 8 ,regext_index ,0xff 
+0x7937 025618 nbranch sha_0 ,true 
+0x7938 025619 call enable_authrom 
+0x7939 025620 arg memk ,timeup 
+0x793a 025621 arg memdat ,alarm 
+0x793b 025622 force 64 ,loopcnt 
+:      025623 sha_loop:
+0x793c 025624 ifetcht 4 ,alarm 
+0x793d 025625 ifetch 4 ,timeup 
+0x793e 025626 increase 4 ,timeup 
+0x793f 025627 increase 4 ,alarm 
+0x7940 025628 iadd temp ,pdata 
+0x7941 025629 force 7 ,regext_index 
+0x7942 025630 iadd regext ,temp 
+0x7943 025631 force 4 ,regext_index 
+0x7944 025632 shasx regext ,3 ,pdata 
+0x7945 025633 iadd temp ,temp 
+0x7946 025634 force 5 ,regext_index 
+0x7947 025635 deposit regext 
+0x7948 025636 force 6 ,regext_index 
+0x7949 025637 ixor regext ,pdata 
+0x794a 025638 force 4 ,regext_index 
+0x794b 025639 iand regext ,pdata 
+0x794c 025640 force 6 ,regext_index 
+0x794d 025641 ixor regext ,pdata 
+0x794e 025642 iadd temp ,temp 
+0x794f 025643 force 7 ,regext_index 
+0x7950 025644 copy temp ,regext 
+0x7951 025645 force 3 ,regext_index 
+0x7952 025646 deposit regext 
+0x7953 025647 iadd temp ,regext 
+0x7954 025648 force 0 ,regext_index 
+0x7955 025649 deposit regext 
+0x7956 025650 force 1 ,regext_index 
+0x7957 025651 iand regext ,temp 
+0x7958 025652 ior regext ,pdata 
+0x7959 025653 force 2 ,regext_index 
+0x795a 025654 iand regext ,pdata 
+0x795b 025655 ior temp ,temp 
+0x795c 025656 force 0 ,regext_index 
+0x795d 025657 shasx regext ,2 ,pdata 
+0x795e 025658 iadd temp ,pdata 
+0x795f 025659 force 7 ,regext_index 
+0x7960 025660 iadd regext ,regext 
+0x7961 025661 regexrot 
+0x7962 025662 loop sha_loop 
+0x7963 025663 arg memahbak ,contr 
+0x7964 025664 force 0 ,regext_index 
+:      025665 sha_1:
+0x7965 025666 ifetch 4 ,contr 
+0x7966 025667 iadd regext ,regext 
+0x7967 025668 increase 1 ,regext_index 
+0x7968 025669 compare 8 ,regext_index ,0xff 
+0x7969 025670 nbranch sha_1 ,true 
+0x796a 025671 branch disable_authrom 
+:      025674 sha_result:
+0x796b 025675 arg memresult ,contw 
+0x796c 025676 force 7 ,regext_index 
+:      025677 sha_regext_save:
+0x796d 025678 deposit regext 
+0x796e 025679 istore 4 ,contw 
+0x796f 025680 increase -1 ,regext_index 
+0x7970 025681 branch sha_regext_save ,positive 
+0x7971 025682 rtn 
+:      025684 pad_xor:
+0x7972 025686 arg memdat ,contw 
+0x7973 025687 increase -4 ,contr 
+0x7974 025688 sub loopcnt ,16 ,rega 
+:      025689 pad_xor_0:
+0x7975 025690 ifetch 4 ,contr 
+0x7976 025691 ixor temp ,pdata 
+0x7977 025692 istore 4 ,contw 
+0x7978 025693 increase -8 ,contr 
+0x7979 025694 loop pad_xor_0 
+0x797a 025695 copy rega ,loopcnt 
+0x797b 025696 deposit temp 
+:      025697 pad_xor_1:
+0x797c 025698 istore 4 ,contw 
+0x797d 025699 loop pad_xor_1 
+0x797e 025700 rtn 
+:      025702 g_noninit_number_confirm:
+0x797f 025703 call g_noninit0 
+0x7980 025704 call sha_result 
+0x7981 025705 branch g_common0 
+:      025707 g_noninit:
+0x7982 025708 call g_noninit0 
+0x7983 025709 branch g_common0 
+:      025711 g_noninit0:
+0x7984 025712 arg mem_sp_pubkey_remote_x_end ,contr 
+0x7985 025713 arg memdat ,contw 
+0x7986 025714 force 6 ,loopcnt 
+0x7987 025715 call memcpy_dword_swap 
+0x7988 025716 arg mem_sp_pubkey_local_x_end ,contr 
+0x7989 025717 force 6 ,loopcnt 
+0x798a 025718 call memcpy_dword_swap 
+0x798b 025719 arg mem_sp_random_remote_end ,contr 
+0x798c 025720 call memcpy_dword_swap4 
+0x798d 025721 call sha_init 
+0x798e 025722 call sha 
+0x798f 025723 arg mem_sp_random_local_end ,contr 
+0x7990 025724 arg memdat ,contw 
+0x7991 025725 branch g_common 
+:      025727 g_init:
+0x7992 025728 arg mem_sp_pubkey_local_x_end ,contr 
+0x7993 025729 arg memdat ,contw 
+0x7994 025730 force 6 ,loopcnt 
+0x7995 025731 call memcpy_dword_swap 
+0x7996 025732 arg mem_sp_pubkey_remote_x_end ,contr 
+0x7997 025733 force 6 ,loopcnt 
+0x7998 025734 call memcpy_dword_swap 
+0x7999 025735 arg mem_sp_random_local_end ,contr 
+0x799a 025736 call memcpy_dword_swap4 
+0x799b 025737 call sha_init 
+0x799c 025738 call sha 
+0x799d 025739 arg mem_sp_random_remote_end ,contr 
+0x799e 025740 arg memdat ,contw 
+0x799f 025741 call g_common 
+0x79a0 025742 branch g_common0 
+:      025744 g_common:
+0x79a1 025745 call memcpy_dword_swap4 
+0x79a2 025746 setarg 0x800000 
+0x79a3 025747 lshift8 pdata ,pdata 
+0x79a4 025748 istore 4 ,contw 
+0x79a5 025749 force 5 ,loopcnt 
+0x79a6 025750 call memset0 
+0x79a7 025751 setarg 640 
+0x79a8 025752 istore 4 ,contw 
+0x79a9 025753 branch sha 
+:      025754 g_common0:
+0x79aa 025755 fetch 4 ,memresult 
+0x79ab 025757 arg 1000 ,rega 
+0x79ac 025758 idiv rega 
+0x79ad 025759 call wait_div_end 
+0x79ae 025760 remainder pdata 
+0x79af 025761 store 4 ,mem_gkey 
+0x79b0 025762 quotient pdata 
+0x79b1 025763 arg 1000 ,rega 
+0x79b2 025764 idiv rega 
+0x79b3 025765 call wait_div_end 
+0x79b4 025766 remainder pdata 
+0x79b5 025767 arg 1000 ,rega 
+0x79b6 025768 imul32 rega ,pdata 
+0x79b7 025769 fetcht 4 ,mem_gkey 
+0x79b8 025770 iadd temp ,pdata 
+0x79b9 025771 store 4 ,mem_gkey 
+0x79ba 025772 rtn 
+:      025774 function_f1_no_key:
+0x79bb 025775 jam 0 ,mem_passkey_1bit 
+0x79bc 025776 branch function_f1_common 
+:      025778 function_f1:
+0x79bd 025779 fetch 1 ,mem_ssp_mode_flag 
+0x79be 025780 bne ssp_mode_passkey_entry_flag ,function_f1_no_key 
+:      025781 function_f1_common:
+0x79bf 025782 set1 mark_ext_patch ,mark 
+0x79c0 025783 bpatch patch3d_1 ,mem_patch3d 
+0x79c1 025784 setarg 0x363636 
+0x79c2 025785 lshift8 pdata ,temp 
+0x79c3 025786 or_into 0x36 ,temp 
+0x79c4 025787 fetch 2 ,mem_sp_prarm_stack 
+0x79c5 025788 copy pdata ,contr 
+0x79c6 025789 force 4 ,loopcnt 
+0x79c7 025790 call pad_xor 
+0x79c8 025791 call sha_init 
+0x79c9 025792 call sha 
+0x79ca 025793 fetch 2 ,mem_sp_prarm_stack + 2 
+0x79cb 025794 copy pdata ,contr 
+0x79cc 025795 arg memdat ,contw 
+0x79cd 025796 force 6 ,loopcnt 
+0x79ce 025797 call memcpy_dword_swap 
+0x79cf 025798 fetch 2 ,mem_sp_prarm_stack + 4 
+0x79d0 025799 copy pdata ,contr 
+0x79d1 025800 force 6 ,loopcnt 
+0x79d2 025801 call memcpy_dword_swap 
+0x79d3 025802 setarg 0x800000 
+0x79d4 025803 istore 3 ,contw 
+0x79d5 025805 fetch 1 ,mem_passkey_1bit 
+0x79d6 025807 istore 1 ,contw 
+0x79d7 025808 force 0 ,pdata 
+0x79d8 025809 istore 8 ,contw 
+0x79d9 025810 setarg 0x0388 
+0x79da 025811 istore 4 ,contw 
+0x79db 025812 call sha 
+0x79dc 025813 call sha_result 
+0x79dd 025814 arg memresult ,contr 
+0x79de 025815 arg memahsave ,contw 
+0x79df 025816 call memcpy32 
+0x79e0 025818 setarg 0x5c5c5c 
+0x79e1 025819 lshift8 pdata ,temp 
+0x79e2 025820 or_into 0x5c ,temp 
+0x79e3 025821 fetch 2 ,mem_sp_prarm_stack 
+0x79e4 025822 copy pdata ,contr 
+0x79e5 025823 force 4 ,loopcnt 
+0x79e6 025824 call pad_xor 
+0x79e7 025825 call sha_init 
+0x79e8 025826 call sha 
+0x79e9 025827 arg memahsave_end ,contr 
+0x79ea 025828 arg memdat ,contw 
+0x79eb 025829 force 8 ,loopcnt 
+0x79ec 025830 call memcpy_dword_swap 
+0x79ed 025831 setarg 0x800000 
+0x79ee 025832 lshift8 pdata ,pdata 
+0x79ef 025833 istore 4 ,contw 
+0x79f0 025834 call bn_zero 
+0x79f1 025835 setarg 0x0300 
+0x79f2 025836 istore 4 ,contw 
+0x79f3 025837 call sha 
+0x79f4 025838 branch sha_result 
+:      025841 function_f2:
+0x79f5 025842 setarg 0x363636 
+0x79f6 025843 lshift8 pdata ,temp 
+0x79f7 025844 or_into 0x36 ,temp 
+0x79f8 025845 arg mem_sp_dhkey_end ,contr 
+0x79f9 025846 force 6 ,loopcnt 
+0x79fa 025847 call pad_xor 
+0x79fb 025848 call sha_init 
+0x79fc 025849 call sha 
+0x79fd 025850 fetch 2 ,mem_sp_prarm_stack + 12 
+0x79fe 025851 copy pdata ,contr 
+0x79ff 025852 arg memdat ,contw 
+0x7a00 025853 call memcpy_dword_swap4 
+0x7a01 025854 fetch 2 ,mem_sp_prarm_stack + 14 
+0x7a02 025855 copy pdata ,contr 
+0x7a03 025856 call memcpy_dword_swap4 
+0x7a04 025858 setarg 0x62746c 
+0x7a05 025859 lshift8 pdata ,pdata 
+0x7a06 025860 or_into 0x6b ,pdata 
+0x7a07 025861 istore 4 ,contw 
+0x7a08 025862 arg mem_addr_value_end ,contr 
+0x7a09 025863 force 3 ,loopcnt 
+0x7a0a 025864 call memcpy_dword_swap 
+0x7a0b 025866 setarg 0x800000 
+0x7a0c 025867 lshift8 pdata ,pdata 
+0x7a0d 025868 istore 4 ,contw 
+0x7a0e 025869 force 0 ,pdata 
+0x7a0f 025870 istore 8 ,contw 
+0x7a10 025871 setarg 0x0380 
+0x7a11 025872 istore 4 ,contw 
+0x7a12 025873 call sha 
+0x7a13 025875 call sha_result 
+0x7a14 025876 arg memresult ,contr 
+0x7a15 025877 arg memahsave ,contw 
+0x7a16 025878 call memcpy32 
+0x7a17 025880 setarg 0x5c5c5c 
+0x7a18 025881 lshift8 pdata ,temp 
+0x7a19 025882 or_into 0x5c ,temp 
+0x7a1a 025883 arg mem_sp_dhkey_end ,contr 
+0x7a1b 025884 force 6 ,loopcnt 
+0x7a1c 025885 call pad_xor 
+0x7a1d 025886 call sha_init 
+0x7a1e 025887 call sha 
+0x7a1f 025888 arg memahsave_end ,contr 
+0x7a20 025889 arg memdat ,contw 
+0x7a21 025890 force 8 ,loopcnt 
+0x7a22 025891 call memcpy_dword_swap 
+0x7a23 025892 setarg 0x800000 
+0x7a24 025893 lshift8 pdata ,pdata 
+0x7a25 025894 istore 4 ,contw 
+0x7a26 025895 call bn_zero 
+0x7a27 025896 setarg 0x0300 
+0x7a28 025897 istore 4 ,contw 
+0x7a29 025898 call sha 
+0x7a2a 025899 branch sha_result 
+:      025902 function_f3a:
+0x7a2b 025903 fetch 1 ,mem_ssp_mode_flag 
+0x7a2c 025904 bne ssp_mode_passkey_entry_flag ,function_f3a_no_pin 
+:      025905 function_f3a_common:
+0x7a2d 025906 set1 mark_ext_patch ,mark 
+0x7a2e 025907 bpatch patch3d_2 ,mem_patch3d 
+0x7a2f 025908 setarg 0x363636 
+0x7a30 025909 lshift8 pdata ,temp 
+0x7a31 025910 or_into 0x36 ,temp 
+0x7a32 025911 arg mem_sp_dhkey_end ,contr 
+0x7a33 025912 force 6 ,loopcnt 
+0x7a34 025913 call pad_xor 
+0x7a35 025914 call sha_init 
+0x7a36 025915 call sha 
+0x7a37 025916 arg mem_sp_random_remote_end ,contr 
+0x7a38 025917 arg memdat ,contw 
+0x7a39 025918 call memcpy_dword_swap4 
+0x7a3a 025919 arg mem_sp_random_local_end ,contr 
+0x7a3b 025920 call memcpy_dword_swap4 
+0x7a3c 025921 branch function_f3_common 
+:      025923 function_f3a_no_pin:
+0x7a3d 025924 setarg 0 
+0x7a3e 025925 store 4 ,mem_pin 
+0x7a3f 025926 branch function_f3a_common 
+:      025928 function_f3b_no_pin:
+0x7a40 025929 setarg 0 
+0x7a41 025930 store 4 ,mem_pin 
+0x7a42 025931 branch function_f3b_common 
+:      025934 function_f3b:
+0x7a43 025935 fetch 1 ,mem_ssp_mode_flag 
+0x7a44 025936 bne ssp_mode_passkey_entry_flag ,function_f3b_no_pin 
+:      025937 function_f3b_common:
+0x7a45 025938 setarg 0x363636 
+0x7a46 025939 lshift8 pdata ,temp 
+0x7a47 025940 or_into 0x36 ,temp 
+0x7a48 025941 arg mem_sp_dhkey_end ,contr 
+0x7a49 025942 force 6 ,loopcnt 
+0x7a4a 025943 call pad_xor 
+0x7a4b 025944 call sha_init 
+0x7a4c 025945 call sha 
+0x7a4d 025947 arg mem_sp_random_local_end ,contr 
+0x7a4e 025948 arg memdat ,contw 
+0x7a4f 025949 call memcpy_dword_swap4 
+0x7a50 025950 arg mem_sp_random_remote_end ,contr 
+0x7a51 025951 call memcpy_dword_swap4 
+:      025952 function_f3_common:
+0x7a52 025953 setarg 0x0 
+0x7a53 025954 istore 8 ,contw 
+0x7a54 025955 istore 4 ,contw 
+0x7a55 025956 fetch 4 ,mem_pin 
+0x7a56 025957 istore 4 ,contw 
+0x7a57 025959 copy contw ,temp 
+0x7a58 025960 jam 0x80 ,mem_addr_padding 
+0x7a59 025961 copy temp ,contw 
+0x7a5a 025962 arg mem_addr_iocap_end ,contr 
+0x7a5b 025963 call memcpy_dword_swap4 
+0x7a5c 025965 call sha 
+0x7a5d 025967 arg memdat ,contw 
+0x7a5e 025968 force 7 ,loopcnt 
+0x7a5f 025969 call memset0 
+0x7a60 025970 istore 4 ,contw 
+0x7a61 025971 setarg 0x03F8 
+0x7a62 025972 istore 4 ,contw 
+0x7a63 025973 call sha 
+0x7a64 025974 call sha_result 
+0x7a65 025976 arg memresult ,contr 
+0x7a66 025977 arg memahsave ,contw 
+0x7a67 025978 call memcpy32 
+0x7a68 025980 setarg 0x5c5c5c 
+0x7a69 025981 lshift8 pdata ,temp 
+0x7a6a 025982 or_into 0x5c ,temp 
+0x7a6b 025983 arg mem_sp_dhkey_end ,contr 
+0x7a6c 025984 force 6 ,loopcnt 
+0x7a6d 025985 call pad_xor 
+0x7a6e 025986 call sha_init 
+0x7a6f 025987 call sha 
+0x7a70 025988 arg memahsave_end ,contr 
+0x7a71 025989 arg memdat ,contw 
+0x7a72 025990 force 8 ,loopcnt 
+0x7a73 025991 call memcpy_dword_swap 
+0x7a74 025992 setarg 0x800000 
+0x7a75 025993 lshift8 pdata ,pdata 
+0x7a76 025994 istore 4 ,contw 
+0x7a77 025995 call bn_zero 
+0x7a78 025996 setarg 0x0300 
+0x7a79 025997 istore 4 ,contw 
+0x7a7a 025998 call sha 
+0x7a7b 025999 branch sha_result 
+:      026006 eckp_calc_init:
+0x7a7c 026007 jam 192 ,mem_ec_loopc 
+:      026008 eckp_calc_init_1:
+0x7a7d 026009 fetch 1 ,mem_ec_loopc 
+0x7a7e 026010 rtn blank 
+0x7a7f 026011 increase -1 ,pdata 
+0x7a80 026012 store 1 ,mem_ec_loopc 
+0x7a81 026013 arg mem_k ,contr 
+0x7a82 026014 call bn_testbit 
+0x7a83 026015 branch eckp_calc_init_1 ,true 
+0x7a84 026016 arg mem_ax ,contr 
+0x7a85 026017 arg mem_cx ,contw 
+0x7a86 026018 branch ec_copy 
+:      026020 eckp_calc:
+0x7a87 026021 call ecdbl 
+0x7a88 026022 fetch 1 ,mem_ec_loopc 
+0x7a89 026023 increase -1 ,pdata 
+0x7a8a 026024 store 1 ,mem_ec_loopc 
+0x7a8b 026025 arg mem_k ,contr 
+0x7a8c 026026 call bn_testbit 
+0x7a8d 026027 rtn true 
+0x7a8e 026028 branch ecadd 
+:      026030 memcpy_dword_swap4:
+0x7a8f 026031 force 4 ,loopcnt 
+:      026032 memcpy_dword_swap:
+0x7a90 026033 increase -4 ,contr 
+:      026034 memcpy_dword_swap_loop:
+0x7a91 026035 ifetch 4 ,contr 
+0x7a92 026036 istore 4 ,contw 
+0x7a93 026037 increase -8 ,contr 
+0x7a94 026038 loop memcpy_dword_swap_loop 
+0x7a95 026039 rtn 
+:      026044 sp_initialize_256:
+0x7a96 026045 set1 mark_ext_patch ,mark 
+0x7a97 026046 bpatch patch3d_3 ,mem_patch3d 
+0x7a98 026047 fetch 1 ,mem_le_secure_connect_enable 
+0x7a99 026048 branch le_secure_connection_disable ,blank 
+0x7a9a 026049 call le_secure_connection_enable 
+0x7a9b 026050 call sp_clear_flags 
+0x7a9c 026052 branch sp_pubkey_calc_256 
+:      026057 sp_pubkey_calc_256:
+0x7a9d 026058 fetch 1 ,mem_le_sc_local_key_invalid 
+0x7a9e 026059 rtnne sp_key_invalid 
+0x7a9f 026060 fetch 1 ,mem_le_sc_calc 
+0x7aa0 026061 rtnne sp_calc_standby 
+0x7aa1 026063 arg mem_le_private_key_256 ,contw 
+0x7aa2 026064 force 15 ,queue 
+0x7aa3 026065 call random_generator 
+0x7aa4 026066 random pdata 
+0x7aa5 026067 rshift pdata ,pdata 
+0x7aa6 026068 istore 2 ,contw 
+0x7aa7 026070 arg mem_k_256 ,contw 
+0x7aa8 026071 arg mem_le_private_key_256 ,contr 
+0x7aa9 026072 call memcpy32 
+0x7aaa 026074 arg mem_ax_256 ,contw 
+0x7aab 026075 arg mem_gx_256 ,contr 
+0x7aac 026076 call memcpy64 
+0x7aad 026078 arg mem_az_256 ,contw 
+0x7aae 026079 call clear_mem_256 
+0x7aaf 026080 jam 1 ,mem_az_256 
+0x7ab0 026082 call eckp_calc_init_256 
+0x7ab1 026083 jam sp_calc_pubkey_256 ,mem_le_sc_calc 
+0x7ab2 026084 rtn 
+:      026086 sp_pubkey_generated_256:
+0x7ab3 026087 arg mem_le_pubkey_local_x_256 ,contw 
+0x7ab4 026088 arg mem_bx_256 ,contr 
+0x7ab5 026089 call memcpy64 
+0x7ab6 026090 jam sp_key_valid_256 ,mem_le_sc_local_key_invalid 
+0x7ab7 026091 jam sp_calc_standby ,mem_le_sc_calc 
+0x7ab8 026092 rtn 
+:      026096 sp_dhkey_calc_256:
+0x7ab9 026097 fetch 1 ,mem_sp_dhkey_invalid 
+0x7aba 026098 rtnne sp_key_invalid 
+0x7abb 026099 fetch 1 ,mem_le_sc_calc 
+0x7abc 026100 rtnne sp_calc_standby 
+0x7abd 026102 arg mem_k_256 ,contw 
+0x7abe 026103 arg mem_le_private_key_256 ,contr 
+0x7abf 026104 call memcpy32 
+0x7ac0 026106 arg mem_ax_256 ,contw 
+0x7ac1 026107 arg mem_le_pubkey_remote_x_256 ,contr 
+0x7ac2 026108 call memcpy64 
+0x7ac3 026110 arg mem_az_256 ,contw 
+0x7ac4 026111 call clear_mem_256 
+0x7ac5 026112 jam 1 ,mem_az_256 
+0x7ac6 026114 call eckp_calc_init_256 
+0x7ac7 026115 jam sp_calc_dhkey_256 ,mem_le_sc_calc 
+0x7ac8 026116 rtn 
+:      026119 sp_dhkey_generated_256:
+0x7ac9 026121 arg mem_le_dhkey_256 ,contw 
+0x7aca 026122 arg mem_bx_256 ,contr 
+0x7acb 026123 call memcpy32 
+0x7acc 026124 jam sp_key_valid_256 ,mem_sp_dhkey_invalid 
+0x7acd 026125 jam sp_calc_standby ,mem_le_sc_calc 
+0x7ace 026126 rtn 
+:      026130 sp_calc_sequence_256:
+0x7acf 026131 fetch 1 ,mem_le_secure_connect_enable 
+0x7ad0 026132 rtn blank 
+0x7ad1 026133 fetch 1 ,mem_le_sc_calc 
+0x7ad2 026134 rtn blank 
+0x7ad3 026135 increase 0x80 ,pdata 
+0x7ad4 026136 store 1 ,mem_le_sc_calc 
+0x7ad5 026137 rtnbit1 7 
+0x7ad6 026138 fetch 2 ,mem_ec_loopc 
+0x7ad7 026139 branch sp_calc_sequence_done_256 ,blank 
+0x7ad8 026140 branch eckp_calc_256 
+:      026142 sp_calc_sequence_done_256:
+0x7ad9 026143 set1 mark_ext_patch ,mark 
+0x7ada 026144 bpatch patch3d_4 ,mem_patch3d 
+0x7adb 026145 call ecunmapz_256 
+0x7adc 026146 fetch 1 ,mem_le_sc_calc 
+0x7add 026147 beq sp_calc_pubkey_256 ,sp_pubkey_generated_256 
+0x7ade 026148 beq sp_calc_dhkey_256 ,sp_dhkey_generated_256 
+0x7adf 026149 rtn 
+:      026152 eckp_calc_256:
+0x7ae0 026153 call ecdbl_256 
+0x7ae1 026154 fetch 2 ,mem_ec_loopc 
+0x7ae2 026155 increase -1 ,pdata 
+0x7ae3 026156 store 2 ,mem_ec_loopc 
+0x7ae4 026157 arg mem_k_256 ,contr 
+0x7ae5 026158 call bn_testbit 
+0x7ae6 026159 rtn true 
+0x7ae7 026160 branch ecadd_256 
+:      026162 eckp_calc_init_256:
+0x7ae8 026163 set1 mark_ext_patch ,mark 
+0x7ae9 026164 bpatch patch3d_5 ,mem_patch3d 
+0x7aea 026165 setarg 256 ,pdata 
+0x7aeb 026166 store 2 ,mem_ec_loopc 
+:      026167 eckp_calc_init_256_1:
+0x7aec 026168 fetch 2 ,mem_ec_loopc 
+0x7aed 026169 rtn blank 
+0x7aee 026170 increase -1 ,pdata 
+0x7aef 026171 store 2 ,mem_ec_loopc 
+0x7af0 026172 arg mem_k_256 ,contr 
+0x7af1 026173 call bn_testbit 
+0x7af2 026174 branch eckp_calc_init_256_1 ,true 
+0x7af3 026175 arg mem_ax_256 ,contr 
+0x7af4 026176 arg mem_cx_256 ,contw 
+0x7af5 026177 branch memcpy96 
+:      026180 ecunmapz_256:
+0x7af6 026181 arg mem_cz_256 ,rega 
+0x7af7 026182 arg mem_t3_256 ,contw 
+0x7af8 026183 call bn_invmod_256 
+0x7af9 026184 arg mem_t3_256 ,rega 
+0x7afa 026185 arg mem_t1_256 ,contw 
+0x7afb 026186 call bn_sqrmod_256 
+0x7afc 026187 arg mem_cx_256 ,rega 
+0x7afd 026188 arg mem_t1_256 ,regb 
+0x7afe 026189 arg mem_bx_256 ,contw 
+0x7aff 026190 call bn_mulmod_256 
+0x7b00 026191 arg mem_t3_256 ,rega 
+0x7b01 026192 arg mem_t1_256 ,regb 
+0x7b02 026193 arg mem_t2_256 ,contw 
+0x7b03 026194 call bn_mulmod_256 
+0x7b04 026195 arg mem_cy_256 ,rega 
+0x7b05 026196 arg mem_t2_256 ,regb 
+0x7b06 026197 arg mem_by_256 ,contw 
+0x7b07 026198 branch bn_mulmod_256 
+:      026200 ecdbl_256:
+0x7b08 026201 arg mem_cz_256 ,rega 
+0x7b09 026202 arg mem_t2_256 ,contw 
+0x7b0a 026203 call bn_sqrmod_256 
+0x7b0b 026204 arg mem_t2_256 ,rega 
+0x7b0c 026205 arg mem_t3_256 ,contw 
+0x7b0d 026206 call bn_sqrmod_256 
+0x7b0e 026208 arg mem_a_256 ,rega 
+0x7b0f 026209 arg mem_t3_256 ,regb 
+0x7b10 026210 arg mem_t3_256 ,contw 
+0x7b11 026211 call bn_mulmod_256 
+0x7b12 026212 arg mem_cx_256 ,rega 
+0x7b13 026213 arg mem_t2_256 ,contw 
+0x7b14 026214 call bn_sqrmod_256 
+0x7b15 026216 arg mem_t2_256 ,contr 
+0x7b16 026217 arg mem_t1_256 ,contw 
+0x7b17 026218 call memcpy32 
+0x7b18 026219 arg mem_t1_256 ,rega 
+0x7b19 026220 call bn_lshiftmod_256 
+0x7b1a 026221 arg mem_t2_256 ,rega 
+0x7b1b 026222 arg mem_t1_256 ,regb 
+0x7b1c 026223 arg mem_t2_256 ,contw 
+0x7b1d 026224 call bn_addmod_256 
+0x7b1e 026226 arg mem_t2_256 ,rega 
+0x7b1f 026227 arg mem_t3_256 ,regb 
+0x7b20 026228 arg mem_t2_256 ,contw 
+0x7b21 026229 call bn_addmod_256 
+0x7b22 026231 arg mem_cx_256 ,contr 
+0x7b23 026232 arg mem_t1_256 ,contw 
+0x7b24 026233 call memcpy32 
+0x7b25 026234 arg mem_cy_256 ,rega 
+0x7b26 026235 arg mem_t3_256 ,contw 
+0x7b27 026236 call bn_sqrmod_256 
+0x7b28 026237 arg mem_t1_256 ,rega 
+0x7b29 026238 call bn_lshiftmod_256 
+0x7b2a 026239 arg mem_t1_256 ,rega 
+0x7b2b 026240 call bn_lshiftmod_256 
+0x7b2c 026241 arg mem_t1_256 ,rega 
+0x7b2d 026242 arg mem_t3_256 ,regb 
+0x7b2e 026243 arg mem_t1_256 ,contw 
+0x7b2f 026244 call bn_mulmod_256 
+0x7b30 026245 arg mem_t3_256 ,rega 
+0x7b31 026246 arg mem_t0_256 ,contw 
+0x7b32 026247 call bn_sqrmod_256 
+0x7b33 026248 arg mem_t0_256 ,rega 
+0x7b34 026249 call bn_lshiftmod_256 
+0x7b35 026250 arg mem_t0_256 ,rega 
+0x7b36 026251 call bn_lshiftmod_256 
+0x7b37 026252 arg mem_t0_256 ,rega 
+0x7b38 026253 call bn_lshiftmod_256 
+0x7b39 026254 arg mem_cy_256 ,contr 
+0x7b3a 026255 arg mem_t3_256 ,contw 
+0x7b3b 026256 call memcpy32 
+0x7b3c 026257 arg mem_t3_256 ,rega 
+0x7b3d 026258 call bn_lshiftmod_256 
+0x7b3e 026259 arg mem_t3_256 ,rega 
+0x7b3f 026260 arg mem_cz_256 ,regb 
+0x7b40 026261 arg mem_cz_256 ,contw 
+0x7b41 026262 call bn_mulmod_256 
+0x7b42 026265 arg mem_t2_256 ,rega 
+0x7b43 026266 arg mem_t3_256 ,contw 
+0x7b44 026267 call bn_sqrmod_256 
+0x7b45 026269 arg mem_t3_256 ,rega 
+0x7b46 026270 arg mem_t1_256 ,regb 
+0x7b47 026271 arg mem_t3_256 ,contw 
+0x7b48 026272 call bn_submod_256 
+0x7b49 026273 arg mem_t3_256 ,rega 
+0x7b4a 026274 arg mem_t1_256 ,regb 
+0x7b4b 026275 arg mem_cx_256 ,contw 
+0x7b4c 026276 call bn_submod_256 
+0x7b4d 026277 arg mem_t1_256 ,rega 
+0x7b4e 026278 arg mem_cx_256 ,regb 
+0x7b4f 026279 arg mem_t3_256 ,contw 
+0x7b50 026280 call bn_submod_256 
+0x7b51 026281 arg mem_t3_256 ,rega 
+0x7b52 026282 arg mem_t2_256 ,regb 
+0x7b53 026283 arg mem_t3_256 ,contw 
+0x7b54 026284 call bn_mulmod_256 
+0x7b55 026285 arg mem_t3_256 ,rega 
+0x7b56 026286 arg mem_t0_256 ,regb 
+0x7b57 026287 arg mem_cy_256 ,contw 
+0x7b58 026288 branch bn_submod_256 
+:      026290 ecadd_256:
+0x7b59 026292 arg mem_az_256 ,rega 
+0x7b5a 026293 arg mem_t7_256 ,contw 
+0x7b5b 026294 call bn_sqrmod_256 
+0x7b5c 026295 arg mem_cx_256 ,rega 
+0x7b5d 026296 arg mem_t7_256 ,regb 
+0x7b5e 026297 arg mem_t0_256 ,contw 
+0x7b5f 026298 call bn_mulmod_256 
+0x7b60 026301 arg mem_az_256 ,rega 
+0x7b61 026302 arg mem_t7_256 ,regb 
+0x7b62 026303 arg mem_t7_256 ,contw 
+0x7b63 026304 call bn_mulmod_256 
+0x7b64 026305 arg mem_cy_256 ,rega 
+0x7b65 026306 arg mem_t7_256 ,regb 
+0x7b66 026307 arg mem_t1_256 ,contw 
+0x7b67 026308 call bn_mulmod_256 
+0x7b68 026311 arg mem_cz_256 ,rega 
+0x7b69 026312 arg mem_t7_256 ,contw 
+0x7b6a 026313 call bn_sqrmod_256 
+0x7b6b 026314 arg mem_ax_256 ,rega 
+0x7b6c 026315 arg mem_t7_256 ,regb 
+0x7b6d 026316 arg mem_t2_256 ,contw 
+0x7b6e 026317 call bn_mulmod_256 
+0x7b6f 026319 arg mem_cz_256 ,rega 
+0x7b70 026320 arg mem_t7_256 ,regb 
+0x7b71 026321 arg mem_t7_256 ,contw 
+0x7b72 026322 call bn_mulmod_256 
+0x7b73 026323 arg mem_ay_256 ,rega 
+0x7b74 026324 arg mem_t7_256 ,regb 
+0x7b75 026325 arg mem_t3_256 ,contw 
+0x7b76 026326 call bn_mulmod_256 
+0x7b77 026331 arg mem_t0_256 ,regb 
+0x7b78 026332 arg mem_t2_256 ,rega 
+0x7b79 026333 arg mem_t7_256 ,contw 
+0x7b7a 026334 call bn_submod_256 
+0x7b7b 026335 arg mem_t0_256 ,rega 
+0x7b7c 026336 arg mem_t2_256 ,regb 
+0x7b7d 026337 arg mem_t0_256 ,contw 
+0x7b7e 026338 call bn_addmod_256 
+0x7b7f 026341 arg mem_t1_256 ,regb 
+0x7b80 026342 arg mem_t3_256 ,rega 
+0x7b81 026343 arg mem_t2_256 ,contw 
+0x7b82 026344 call bn_submod_256 
+0x7b83 026345 arg mem_t1_256 ,rega 
+0x7b84 026346 arg mem_t3_256 ,regb 
+0x7b85 026347 arg mem_t1_256 ,contw 
+0x7b86 026348 call bn_addmod_256 
+0x7b87 026349 arg mem_t1_256 ,rega 
+0x7b88 026350 arg mem_t7_256 ,regb 
+0x7b89 026351 arg mem_t1_256 ,contw 
+0x7b8a 026352 call bn_mulmod_256 
+0x7b8b 026353 arg mem_cz_256 ,rega 
+0x7b8c 026354 arg mem_az_256 ,regb 
+0x7b8d 026355 arg mem_t3_256 ,contw 
+0x7b8e 026356 call bn_mulmod_256 
+0x7b8f 026357 arg mem_t3_256 ,rega 
+0x7b90 026358 arg mem_t7_256 ,regb 
+0x7b91 026359 arg mem_cz_256 ,contw 
+0x7b92 026360 call bn_mulmod_256 
+0x7b93 026362 arg mem_t7_256 ,rega 
+0x7b94 026363 arg mem_t7_256 ,contw 
+0x7b95 026364 call bn_sqrmod_256 
+0x7b96 026365 arg mem_t7_256 ,rega 
+0x7b97 026366 arg mem_t0_256 ,regb 
+0x7b98 026367 arg mem_t3_256 ,contw 
+0x7b99 026368 call bn_mulmod_256 
+0x7b9a 026369 arg mem_t7_256 ,rega 
+0x7b9b 026370 arg mem_t1_256 ,regb 
+0x7b9c 026371 arg mem_t1_256 ,contw 
+0x7b9d 026372 call bn_mulmod_256 
+0x7b9e 026373 arg mem_t2_256 ,rega 
+0x7b9f 026374 arg mem_cx_256 ,contw 
+0x7ba0 026375 call bn_sqrmod_256 
+0x7ba1 026376 arg mem_cx_256 ,rega 
+0x7ba2 026377 arg mem_t3_256 ,regb 
+0x7ba3 026378 arg mem_cx_256 ,contw 
+0x7ba4 026379 call bn_submod_256 
+0x7ba5 026380 arg mem_cx_256 ,contr 
+0x7ba6 026381 arg mem_t7_256 ,contw 
+0x7ba7 026382 call memcpy32 
+0x7ba8 026383 arg mem_t7_256 ,rega 
+0x7ba9 026384 call bn_lshiftmod_256 
+0x7baa 026385 arg mem_t3_256 ,rega 
+0x7bab 026386 arg mem_t7_256 ,regb 
+0x7bac 026387 arg mem_t3_256 ,contw 
+0x7bad 026388 call bn_submod_256 
+0x7bae 026389 arg mem_t3_256 ,rega 
+0x7baf 026390 arg mem_t2_256 ,regb 
+0x7bb0 026391 arg mem_t2_256 ,contw 
+0x7bb1 026392 call bn_mulmod_256 
+0x7bb2 026393 arg mem_t2_256 ,rega 
+0x7bb3 026394 arg mem_t1_256 ,regb 
+0x7bb4 026395 arg mem_cy_256 ,contw 
+0x7bb5 026396 call bn_submod_256 
+0x7bb6 026397 arg mem_cy_256 ,rega 
+0x7bb7 026398 arg mem_p_256 ,regb 
+0x7bb8 026399 arg mem_cy_256 ,contw 
+0x7bb9 026400 force 0 ,regc 
+0x7bba 026401 fetch 1 ,mem_cy_256 
+0x7bbb 026402 isolate1 0 ,pdata 
+0x7bbc 026403 call bn_add_256 ,true 
+0x7bbd 026404 copy regc ,alarm 
+0x7bbe 026405 arg mem_cy_256 ,rega 
+0x7bbf 026406 call bn_rshift_256 
+0x7bc0 026407 fetch 1 ,mem_cy5_256 
+0x7bc1 026408 isolate1 0 ,alarm 
+0x7bc2 026409 setflag true ,7 ,pdata 
+0x7bc3 026410 store 1 ,mem_cy5_256 
+0x7bc4 026411 rtn 
+:      026413 bn_invmod_256:
+0x7bc5 026414 copy contw ,timeup 
+0x7bc6 026415 arg mem_tmp0_256 ,contw 
+0x7bc7 026416 call clear_mem_256 
+0x7bc8 026417 force 0 ,pdata 
+0x7bc9 026419 store 4 ,mem_t2_256 
+0x7bca 026420 jam 1 ,mem_tmp0_256 
+0x7bcb 026421 arg mem_tmp1_256 ,contw 
+0x7bcc 026422 call clear_mem_512 
+0x7bcd 026423 arg mem_p_256 ,contr 
+0x7bce 026424 arg mem_tmp2_256 ,contw 
+0x7bcf 026425 call memcpy32 
+0x7bd0 026426 copy rega ,contr 
+0x7bd1 026427 arg mem_tmp3_256 ,contw 
+0x7bd2 026428 call memcpy32 
+:      026434 bn_invmod_256_2:
+0x7bd3 026435 arg mem_tmp3_256 ,contr 
+0x7bd4 026436 call bn_eq_zero_256 
+0x7bd5 026437 branch bn_invmod_256_0 ,blank 
+0x7bd6 026442 arg mem_tmp3_256 ,rega 
+0x7bd7 026443 arg mem_tmp0_256 ,regb 
+0x7bd8 026444 call bn_rshifteven_256 
+0x7bd9 026445 arg mem_tmp2_256 ,rega 
+0x7bda 026446 arg mem_tmp1_256 ,regb 
+0x7bdb 026447 call bn_rshifteven_256 
+0x7bdc 026449 arg mem_tmp3_256 ,rega 
+0x7bdd 026450 arg mem_tmp2_256 ,regb 
+0x7bde 026451 call bn_bigeq_256 
+0x7bdf 026452 branch bn_invmod_256_1 ,positive 
+0x7be0 026453 arg mem_tmp2_256 ,rega 
+0x7be1 026454 arg mem_tmp3_256 ,regb 
+0x7be2 026455 copy rega ,contw 
+0x7be3 026456 call bn_sub_256 
+0x7be4 026457 arg mem_tmp0_256 ,rega 
+0x7be5 026458 arg mem_tmp1_256 ,regb 
+0x7be6 026459 copy regb ,contw 
+0x7be7 026460 call bn_add_256 
+0x7be8 026461 ifetch 1 ,rega 
+0x7be9 026462 iadd regc ,regc 
+0x7bea 026463 ifetch 1 ,regb 
+0x7beb 026464 iadd regc ,pdata 
+0x7bec 026465 istore 1 ,regb 
+0x7bed 026466 branch bn_invmod_256_2 
+:      026467 bn_invmod_256_1:
+0x7bee 026468 arg mem_tmp3_256 ,rega 
+0x7bef 026469 arg mem_tmp2_256 ,regb 
+0x7bf0 026470 copy rega ,contw 
+0x7bf1 026471 call bn_sub_256 
+0x7bf2 026472 arg mem_tmp1_256 ,rega 
+0x7bf3 026473 arg mem_tmp0_256 ,regb 
+0x7bf4 026474 copy regb ,contw 
+0x7bf5 026475 call bn_add_256 
+0x7bf6 026476 ifetch 1 ,rega 
+0x7bf7 026477 iadd regc ,regc 
+0x7bf8 026478 ifetch 1 ,regb 
+0x7bf9 026479 iadd regc ,pdata 
+0x7bfa 026480 istore 1 ,regb 
+0x7bfb 026481 branch bn_invmod_256_2 
+:      026482 bn_invmod_256_0:
+0x7bfc 026484 arg mem_tmp1_256 ,rega 
+0x7bfd 026485 copy timeup ,contw 
+0x7bfe 026486 call bn_p256mod 
+0x7bff 026488 arg mem_p_256 ,rega 
+0x7c00 026489 copy timeup ,regb 
+0x7c01 026490 copy timeup ,contw 
+0x7c02 026491 branch bn_submod_256 
+:      026494 bn_mulmod_256:
+0x7c03 026495 copy contw ,timeup 
+0x7c04 026497 force 0 ,regext_index 
+0x7c05 026499 arg mem_tmp1_256 ,contw 
+0x7c06 026500 call clear_mem_512 
+0x7c07 026501 arg mem_regext ,contw 
+0x7c08 026502 call clear_mem_512 
+0x7c09 026506 copy rega ,contr 
+0x7c0a 026508 jam 0 ,mem_regext 
+0x7c0b 026509 setarg 0 
+0x7c0c 026510 call bn_load_mem 
+0x7c0d 026511 copy regb ,contr 
+0x7c0e 026512 call bn_load_256 
+0x7c0f 026515 force 0 ,queue 
+0x7c10 026516 arg mem_tmp1_256 ,contw 
+:      026517 bn_mulmod_256_1:
+0x7c11 026520 arg mem_regext ,temp 
+0x7c12 026521 copy queue ,regb 
+0x7c13 026522 lshift2 regb ,pdata 
+0x7c14 026524 iadd temp ,regb 
+0x7c15 026525 force 0 ,temp 
+0x7c16 026526 force 0 ,regc 
+:      026527 bn_mulmod_256_0:
+0x7c17 026532 ifetch 4 ,contw 
+0x7c18 026533 iforce rega 
+0x7c19 026536 ifetch 4 ,regb 
+0x7c1a 026537 copy regc ,regext_index 
+0x7c1b 026538 imul32 regext ,pdata 
+0x7c1c 026539 iadd rega ,pdata 
+0x7c1d 026540 iadd temp ,pdata 
+0x7c1e 026541 istore 4 ,contw 
+0x7c1f 026542 rshift32 pdata ,temp 
+0x7c20 026543 increase 1 ,regc 
+0x7c21 026544 compare 8 ,regc ,0xff 
+0x7c22 026545 nbranch bn_mulmod_256_0 ,true 
+0x7c23 026547 deposit temp 
+0x7c24 026548 istore 4 ,contw 
+0x7c25 026549 increase -32 ,contw 
+0x7c26 026552 increase 1 ,queue 
+0x7c27 026553 compare 8 ,queue ,0xff 
+0x7c28 026554 nbranch bn_mulmod_256_1 ,true 
+0x7c29 026555 arg mem_tmp1_256 ,rega 
+0x7c2a 026556 copy timeup ,contw 
+0x7c2b 026557 branch bn_p256mod 
+:      026559 bn_p256mod:
+0x7c2c 026560 set1 mark_ext_patch ,mark 
+0x7c2d 026561 bpatch patch3d_6 ,mem_patch3d 
+0x7c2e 026562 copy contw ,timeup 
+0x7c2f 026563 copy rega ,alarm 
+0x7c30 026564 arg mem_tmp2_256 ,regb 
+0x7c31 026565 copy regb ,contw 
+0x7c32 026566 call memset0_4 
+0x7c33 026567 istore 8 ,contw 
+0x7c34 026568 add rega ,44 ,contr 
+0x7c35 026569 call memcpy8 
+0x7c36 026570 call memcpy12 
+0x7c37 026571 copy regb ,rega 
+0x7c38 026572 call bn_lshiftmod_256 
+0x7c39 026573 arg mem_tmp2_256 ,regb 
+0x7c3a 026574 copy alarm ,rega 
+0x7c3b 026575 copy timeup ,contw 
+0x7c3c 026576 call bn_addmod_256 
+0x7c3d 026578 arg mem_tmp2_256 ,regb 
+0x7c3e 026579 copy regb ,contw 
+0x7c3f 026580 call memset0_4 
+0x7c40 026581 istore 8 ,contw 
+0x7c41 026582 add alarm ,48 ,contr 
+0x7c42 026583 call memcpy16 
+0x7c43 026584 call memset0_4 
+0x7c44 026585 copy regb ,rega 
+0x7c45 026586 call bn_lshiftmod_256 
+0x7c46 026590 arg mem_tmp2_256 ,regb 
+0x7c47 026591 copy timeup ,rega 
+0x7c48 026592 copy rega ,contw 
+0x7c49 026593 call bn_addmod_256 
+0x7c4a 026597 arg mem_tmp2_256 ,regb 
+0x7c4b 026598 copy regb ,contw 
+0x7c4c 026599 add alarm ,32 ,contr 
+0x7c4d 026600 call memcpy12 
+0x7c4e 026601 call memset0_4 
+0x7c4f 026602 istore 8 ,contw 
+0x7c50 026603 add alarm ,56 ,contr 
+0x7c51 026604 call memcpy8 
+0x7c52 026605 copy timeup ,rega 
+0x7c53 026606 copy rega ,contw 
+0x7c54 026607 call bn_addmod_256 
+0x7c55 026611 arg mem_tmp2_256 ,regb 
+0x7c56 026612 copy regb ,contw 
+0x7c57 026613 add alarm ,36 ,contr 
+0x7c58 026614 call memcpy12 
+0x7c59 026615 add alarm ,52 ,contr 
+0x7c5a 026616 call memcpy12 
+0x7c5b 026617 add alarm ,52 ,contr 
+0x7c5c 026618 call memcpy4 
+0x7c5d 026619 add alarm ,32 ,contr 
+0x7c5e 026620 call memcpy4 
+0x7c5f 026621 copy timeup ,rega 
+0x7c60 026622 copy rega ,contw 
+0x7c61 026623 call bn_addmod_256 
+0x7c62 026626 arg mem_tmp2_256 ,regb 
+0x7c63 026627 copy regb ,contw 
+0x7c64 026628 add alarm ,44 ,contr 
+0x7c65 026629 call memcpy12 
+0x7c66 026630 call memset0_4 
+0x7c67 026631 istore 8 ,contw 
+0x7c68 026632 add alarm ,32 ,contr 
+0x7c69 026633 call memcpy4 
+0x7c6a 026634 add alarm ,40 ,contr 
+0x7c6b 026635 call memcpy4 
+0x7c6c 026636 copy timeup ,rega 
+0x7c6d 026637 copy rega ,contw 
+0x7c6e 026638 call bn_submod_256 
+0x7c6f 026641 arg mem_tmp2_256 ,regb 
+0x7c70 026642 copy regb ,contw 
+0x7c71 026643 add alarm ,48 ,contr 
+0x7c72 026644 call memcpy8 
+0x7c73 026645 call memcpy8 
+0x7c74 026646 force 0 ,pdata 
+0x7c75 026647 istore 8 ,contw 
+0x7c76 026648 add alarm ,36 ,contr 
+0x7c77 026649 call memcpy4 
+0x7c78 026650 add alarm ,44 ,contr 
+0x7c79 026651 call memcpy4 
+0x7c7a 026652 copy timeup ,rega 
+0x7c7b 026653 copy rega ,contw 
+0x7c7c 026654 call bn_submod_256 
+0x7c7d 026657 arg mem_tmp2_256 ,regb 
+0x7c7e 026658 copy regb ,contw 
+0x7c7f 026659 add alarm ,52 ,contr 
+0x7c80 026660 call memcpy12 
+0x7c81 026661 add alarm ,32 ,contr 
+0x7c82 026662 call memcpy12 
+0x7c83 026663 call memset0_4 
+0x7c84 026664 add alarm ,48 ,contr 
+0x7c85 026665 call memcpy4 
+0x7c86 026666 copy timeup ,rega 
+0x7c87 026667 copy rega ,contw 
+0x7c88 026668 call bn_submod_256 
+0x7c89 026671 arg mem_tmp2_256 ,regb 
+0x7c8a 026672 copy regb ,contw 
+0x7c8b 026673 add alarm ,56 ,contr 
+0x7c8c 026674 call memcpy8 
+0x7c8d 026675 call memset0_4 
+0x7c8e 026676 add alarm ,36 ,contr 
+0x7c8f 026677 call memcpy12 
+0x7c90 026678 call memset0_4 
+0x7c91 026679 add alarm ,52 ,contr 
+0x7c92 026680 call memcpy4 
+0x7c93 026681 copy timeup ,rega 
+0x7c94 026682 copy rega ,contw 
+0x7c95 026683 branch bn_submod_256 
+:      026686 bn_load_mem:
+0x7c96 026687 force 32 ,loopcnt 
+0x7c97 026688 arg mem_regext ,contw 
+0x7c98 026689 iadd contw ,contw 
+0x7c99 026690 branch memcpy 
+:      026692 bn_load_256:
+0x7c9a 026693 force 8 ,loopcnt 
+0x7c9b 026694 branch bn_load_0 
+:      026696 bn_sqrmod_256:
+0x7c9c 026697 copy rega ,regb 
+0x7c9d 026698 branch bn_mulmod_256 
+:      026700 bn_add_256:
+0x7c9e 026701 force 8 ,loopcnt 
+0x7c9f 026702 branch bn_add + 1 
+:      026704 bn_addmod_256:
+0x7ca0 026705 call bn_add_256 
+0x7ca1 026706 copy contw ,rega 
+0x7ca2 026707 branch bn_lshiftmod_ismod_256 
+:      026709 bn_lshiftmod_256:
+0x7ca3 026710 call bn_lshift_256 
+:      026711 bn_lshiftmod_ismod_256:
+0x7ca4 026712 isolate1 0 ,regc 
+0x7ca5 026713 branch bn_lshiftmod_p_256 ,true 
+0x7ca6 026714 arg mem_p_256 ,regb 
+0x7ca7 026715 copy rega ,regc 
+0x7ca8 026716 increase -32 ,rega 
+0x7ca9 026717 call bn_bigeq_256 
+0x7caa 026718 nrtn positive 
+0x7cab 026719 copy regc ,rega 
+0x7cac 026720 branch sub_p2_256 
+:      026722 bn_lshiftmod_p_256:
+0x7cad 026723 call sub_p2_256 
+0x7cae 026725 copy rega ,regc 
+0x7caf 026726 increase -32 ,rega 
+0x7cb0 026727 arg mem_p_256 ,regb 
+0x7cb1 026728 call bn_bigeq_256 
+0x7cb2 026729 nrtn positive 
+0x7cb3 026730 copy regc ,rega 
+0x7cb4 026731 branch sub_p2_256 
+:      026734 sub_p2_256:
+0x7cb5 026735 increase -32 ,rega 
+0x7cb6 026736 arg mem_p_256 ,regb 
+0x7cb7 026737 copy rega ,contw 
+0x7cb8 026738 branch bn_sub_256 
+:      026743 bn_submod_256:
+0x7cb9 026744 call bn_sub_256 
+0x7cba 026746 branch bn_submod_256_np ,true 
+0x7cbb 026749 add contw ,-32 ,rega 
+0x7cbc 026750 arg mem_p_256 ,regb 
+0x7cbd 026751 call bn_bigeq_256 
+0x7cbe 026752 nrtn positive 
+0x7cbf 026753 arg mem_p_256 ,regb 
+0x7cc0 026754 add contw ,-32 ,rega 
+0x7cc1 026756 copy rega ,contw 
+0x7cc2 026757 branch bn_sub_256 
+:      026758 bn_submod_256_np:
+0x7cc3 026759 add contw ,-32 ,rega 
+0x7cc4 026760 arg mem_p_256 ,regb 
+0x7cc5 026761 copy rega ,contw 
+0x7cc6 026762 call bn_add_256 
+0x7cc7 026764 rtn true 
+0x7cc8 026765 add contw ,-32 ,rega 
+0x7cc9 026766 arg mem_p_256 ,regb 
+0x7cca 026767 copy rega ,contw 
+0x7ccb 026768 branch bn_add_256 
+:      026772 bn_sub_256:
+0x7ccc 026773 force 8 ,loopcnt 
+0x7ccd 026774 branch bn_sub + 1 
+:      026776 bn_rshift_256:
+0x7cce 026777 force 8 ,loopcnt 
+0x7ccf 026778 increase 28 ,rega 
+0x7cd0 026779 branch bn_rshift 
+:      026781 bn_lshift_256:
+0x7cd1 026782 force 8 ,loopcnt 
+0x7cd2 026783 force 0 ,regc 
+0x7cd3 026784 branch bn_lshift_0 
+:      026786 bn_bigeq_256:
+0x7cd4 026787 force 8 ,loopcnt 
+0x7cd5 026788 increase 28 ,rega 
+0x7cd6 026789 increase 28 ,regb 
+0x7cd7 026790 branch bn_bigeq_0 
+:      026793 bn_eq_zero_256:
+0x7cd8 026794 ifetch 8 ,contr 
+0x7cd9 026795 nrtn blank 
+0x7cda 026796 branch bn_eq_zero 
+:      026801 bn_rshifteven_256:
+0x7cdb 026802 copy rega ,alarm 
+:      026803 bn_rshifteven_256_1:
+0x7cdc 026804 copy alarm ,rega 
+0x7cdd 026805 ifetch 1 ,rega 
+0x7cde 026806 isolate1 0 ,pdata 
+0x7cdf 026807 rtn true 
+0x7ce0 026808 call bn_rshift_256 
+0x7ce1 026809 ifetch 1 ,regb 
+0x7ce2 026810 isolate0 0 ,pdata 
+0x7ce3 026811 branch bn_rshifteven_256_0 ,true 
+0x7ce4 026812 arg mem_p_256 ,rega 
+0x7ce5 026813 copy regb ,contw 
+0x7ce6 026814 call bn_add_256 
+0x7ce7 026815 ifetch 1 ,regb 
+0x7ce8 026816 iadd regc ,pdata 
+0x7ce9 026817 istore 1 ,regb 
+0x7cea 026818 increase -32 ,regb 
+:      026819 bn_rshifteven_256_0:
+0x7ceb 026820 add regb ,32 ,rega 
+0x7cec 026821 force 9 ,loopcnt 
+0x7ced 026822 call bn_rshift 
+0x7cee 026823 branch bn_rshifteven_256_1 
+:      026827 ui_init:
+0x7cef 026828 call lpm_disable_exen_output 
+0x7cf0 026829 rtn wake 
+0x7cf1 026830 call ui_button_init 
+0x7cf2 026831 call ui_timer_init 
+0x7cf3 026832 branch ui_led_init 
+:      026834 ui_dispatch:
+0x7cf4 026835 call ui_led_blink_polling 
+0x7cf5 026837 branch ui_timer_check 
+:      026839 ui_button_init:
+0x7cf6 026840 set1 mark_ext_patch ,mark 
+0x7cf7 026841 bpatch patch3d_7 ,mem_patch3d 
+0x7cf8 026842 fetch 1 ,mem_ui_button_gpio 
+0x7cf9 026843 rtneq ui_button_gpio_disable 
+0x7cfa 026844 iforce temp 
+0x7cfb 026845 call gpio_config_output 
+0x7cfc 026846 fetcht 1 ,mem_ui_button_gpio 
+0x7cfd 026847 call gpio_out_inactive 
+0x7cfe 026848 nop 100 
+0x7cff 026849 fetcht 1 ,mem_ui_button_gpio 
+0x7d00 026850 call gpio_config_input 
+0x7d01 026851 branch ui_button_polling 
+:      026855 ui_button_polling:
+0x7d02 026856 set1 mark_ext_patch ,mark 
+0x7d03 026857 bpatch patch3e_0 ,mem_patch3e 
+0x7d04 026858 fetch 1 ,mem_ui_button_gpio 
+0x7d05 026859 rtneq ui_button_gpio_disable 
+0x7d06 026860 copy pdata ,temp 
+0x7d07 026861 call gpio_get_bit 
+0x7d08 026862 nbranch ui_button_up ,true 
+:      026864 ui_button_down:
+0x7d09 026865 call ui_button_check_long_press 
+0x7d0a 026866 fetch 2 ,mem_ui_state_map 
+0x7d0b 026867 set1 ui_state_btn_down 
+0x7d0c 026868 store 2 ,mem_ui_state_map 
+0x7d0d 026869 fetch 1 ,mem_ui_button_last_state 
+0x7d0e 026870 rtneq ui_button_state_down 
+0x7d0f 026871 jam ui_button_state_down ,mem_ui_button_last_state 
+0x7d10 026873 fetch 1 ,mem_ui_button_timeout 
+0x7d11 026874 store 1 ,mem_ui_button_timer 
+0x7d12 026875 call lpm_button_get_wake_lock 
+0x7d13 026876 jam bt_evt_button_down ,mem_fifo_temp 
+0x7d14 026877 branch ui_ipc_send_event 
+:      026878 ui_button_up:
+0x7d15 026879 fetch 2 ,mem_ui_state_map 
+0x7d16 026880 set0 ui_state_btn_down 
+0x7d17 026881 store 2 ,mem_ui_state_map 
+0x7d18 026882 fetch 1 ,mem_ui_button_last_state 
+0x7d19 026883 rtneq ui_button_state_up 
+0x7d1a 026884 jam ui_button_state_up ,mem_ui_button_last_state 
+0x7d1b 026886 jam 0 ,mem_ui_button_timer 
+0x7d1c 026887 call lpm_button_clean_wake_lock 
+0x7d1d 026888 jam bt_evt_button_up ,mem_fifo_temp 
+0x7d1e 026889 branch ui_ipc_send_event 
+:      026891 ui_button_check_long_press:
+0x7d1f 026892 fetch 1 ,mem_ui_button_timer 
+0x7d20 026893 rtn blank 
+0x7d21 026894 increase -1 ,pdata 
+0x7d22 026895 store 1 ,mem_ui_button_timer 
+0x7d23 026896 nrtn blank 
+0x7d24 026898 jam bt_evt_button_long_pressed ,mem_fifo_temp 
+0x7d25 026899 branch ui_ipc_send_event 
+:      026901 lpm_button_get_wake_lock:
+0x7d26 026902 arg wake_lock_button ,queue 
+0x7d27 026903 branch lpm_get_wake_lock 
+:      026905 lpm_button_clean_wake_lock:
+0x7d28 026906 arg wake_lock_button ,queue 
+0x7d29 026907 branch lpm_put_wake_lock 
+:      026909 ui_led_init:
+0x7d2a 026910 fetch 1 ,mem_led_gpio 
+0x7d2b 026911 rtneq ui_button_gpio_disable 
+0x7d2c 026912 iforce temp 
+0x7d2d 026913 call gpio_config_output 
+0x7d2e 026914 branch ui_led_off 
+:      026916 ui_led_blink_stop:
+0x7d2f 026917 fetch 2 ,mem_ui_state_map 
+0x7d30 026918 set0 ui_state_led_blink 
+0x7d31 026919 store 2 ,mem_ui_state_map 
+0x7d32 026920 jam ui_led_stop ,mem_led_switch 
+:      026921 ui_led_off:
+0x7d33 026922 fetch 2 ,mem_ui_state_map 
+0x7d34 026923 set0 ui_state_led_on 
+0x7d35 026924 store 2 ,mem_ui_state_map 
+0x7d36 026925 fetcht 1 ,mem_led_gpio 
+0x7d37 026926 branch gpio_out_inactive 
+:      026928 ui_led_on:
+0x7d38 026929 fetch 2 ,mem_ui_state_map 
+0x7d39 026930 set1 ui_state_led_on 
+0x7d3a 026931 store 2 ,mem_ui_state_map 
+0x7d3b 026932 jam ui_led_stop ,mem_led_switch 
+0x7d3c 026933 fetcht 1 ,mem_led_gpio 
+0x7d3d 026934 branch gpio_out_active 
+:      026936 ui_led_blink_start:
+0x7d3e 026937 jam 0xff ,mem_led_blink_count 
+:      026938 ui_led_blink_start1:
+0x7d3f 026939 fetch 2 ,mem_ui_state_map 
+0x7d40 026940 set1 ui_state_led_blink 
+0x7d41 026941 store 2 ,mem_ui_state_map 
+0x7d42 026942 jam ui_led_start ,mem_led_switch 
+0x7d43 026943 rtn 
+:      026945 ui_led_blink_polling:
+0x7d44 026946 set1 mark_ext_patch ,mark 
+0x7d45 026947 bpatch patch3e_1 ,mem_patch3e 
+0x7d46 026948 fetch 1 ,mem_led_blink_count 
+0x7d47 026949 rtn blank 
+0x7d48 026950 fetch 1 ,mem_led_switch 
+0x7d49 026951 rtneq ui_led_stop 
+0x7d4a 026952 arg ui_led_blink ,queue 
+0x7d4b 026953 call timer_check 
+0x7d4c 026954 nrtn blank 
+0x7d4d 026955 fetch 1 ,mem_led_switch 
+0x7d4e 026956 beq ui_led_dark_time ,in_ui_led_blink_polling_dark 
+0x7d4f 026957 call ui_led_on 
+0x7d50 026958 jam ui_led_dark_time ,mem_led_switch 
+0x7d51 026959 fetch 2 ,mem_led_light_time 
+0x7d52 026960 branch in_ui_led_blink_timer_start 
+:      026961 in_ui_led_blink_polling_dark:
+0x7d53 026962 call ui_led_off 
+0x7d54 026963 fetch 1 ,mem_led_blink_count 
+0x7d55 026964 beq led_flash_infinite ,in_ui_led_infinite 
+0x7d56 026965 increase -1 ,pdata 
+0x7d57 026966 store 1 ,mem_led_blink_count 
+:      026967 in_ui_led_infinite:
+0x7d58 026968 jam ui_led_light_time ,mem_led_switch 
+0x7d59 026969 fetch 2 ,mem_led_dark_time 
+:      026970 in_ui_led_blink_timer_start:
+0x7d5a 026971 arg ui_led_blink ,queue 
+0x7d5b 026972 branch timer_init 
+:      026974 ui_timer_timeout:
+0x7d5c 026975 setarg 0x1000 
+0x7d5d 026976 lshift16 pdata ,pdata 
+0x7d5e 026977 iadd regb ,regb 
+0x7d5f 026978 rtn 
+:      026980 ui_timer_check:
+0x7d60 026981 set1 mark_ext_patch ,mark 
+0x7d61 026982 bpatch patch3e_2 ,mem_patch3e 
+0x7d62 026983 arg 0 ,rega 
+0x7d63 026984 fetcht 4 ,mem_ui_timer_last_btclk 
+0x7d64 026985 copy clkn_bt ,regb 
+0x7d65 026986 copy regb ,pdata 
+0x7d66 026987 isub temp ,null 
+0x7d67 026988 ncall ui_timer_timeout ,positive 
+:      026990 ui_timer_check_loop:
+0x7d68 026991 copy regb ,pdata 
+0x7d69 026992 increase 160 ,temp 
+0x7d6a 026993 increase 160 ,temp 
+0x7d6b 026994 isub temp ,null 
+0x7d6c 026995 nbranch ui_timer_check_end ,positive 
+0x7d6d 026996 increase 1 ,rega 
+0x7d6e 026997 and rega ,0x0f ,pdata 
+0x7d6f 026998 nbranch ui_timer_check_loop ,blank 
+0x7d70 026999 arg 0 ,rega 
+0x7d71 027000 call ui_timer_check_send_evt 
+:      027001 ui_timer_init:
+0x7d72 027002 copy clkn_bt ,pdata 
+0x7d73 027003 store 4 ,mem_ui_timer_last_btclk 
+0x7d74 027004 rtn 
+:      027005 ui_timer_check_end:
+0x7d75 027006 set1 mark_ext_patch ,mark 
+0x7d76 027007 bpatch patch3e_3 ,mem_patch3e 
+0x7d77 027008 copy rega ,pdata 
+0x7d78 027009 rtn blank 
+0x7d79 027010 increase -160 ,temp 
+0x7d7a 027011 increase -160 ,temp 
+0x7d7b 027012 set0 28 ,temp 
+0x7d7c 027013 storet 4 ,mem_ui_timer_last_btclk 
+:      027014 ui_timer_check_send_evt:
+0x7d7d 027015 increase bt_evt_timer_init ,pdata 
+0x7d7e 027016 store 1 ,mem_fifo_temp 
+0x7d7f 027017 branch ui_ipc_send_event 
+:      027023 ui_ipc_get_lock:
+0x7d80 027024 jam 1 ,mem_ipc_lock_bt 
+:      027025 ui_ipc_get_lock_wait:
+0x7d81 027026 fetch 1 ,mem_ipc_lock_c51 
+0x7d82 027027 nbranch ui_ipc_get_lock_wait ,blank 
+0x7d83 027028 rtn 
+:      027030 ui_ipc_put_lock:
+0x7d84 027031 jam 0 ,mem_ipc_lock_bt 
+0x7d85 027032 rtn 
+:      027036 ui_ipc_send_event:
+0x7d86 027037 set1 mark_ext_patch ,mark 
+0x7d87 027038 bpatch patch3e_4 ,mem_patch3e 
+0x7d88 027039 call ui_ipc_get_lock 
+0x7d89 027040 copy rega ,pdata 
+0x7d8a 027041 store 4 ,mem_ipc_rega_temp 
+0x7d8b 027042 arg mem_ipc_fifo_bt2c51 ,rega 
+0x7d8c 027043 call fifo_in 
+0x7d8d 027044 fetch 4 ,mem_ipc_rega_temp 
+0x7d8e 027045 copy pdata ,rega 
+0x7d8f 027046 branch ui_ipc_put_lock 
+:      027048 ui_ipc_send_cmd:
+0x7d90 027049 set1 mark_ext_patch ,mark 
+0x7d91 027050 bpatch patch3e_5 ,mem_patch3e 
+0x7d92 027051 call ui_ipc_get_lock 
+0x7d93 027052 copy rega ,pdata 
+0x7d94 027053 store 4 ,mem_ipc_rega_temp 
+0x7d95 027054 arg mem_ipc_fifo_c512bt ,rega 
+0x7d96 027055 call fifo_in 
+0x7d97 027056 fetch 4 ,mem_ipc_rega_temp 
+0x7d98 027057 copy pdata ,rega 
+0x7d99 027058 branch ui_ipc_put_lock 
+:      027060 ui_ipc_clean_all_fifo:
+0x7d9a 027061 setarg 0 
+0x7d9b 027062 store util_fifo_len ,mem_ipc_fifo_c512bt 
+0x7d9c 027063 store util_fifo_len ,mem_ipc_fifo_bt2c51 
+0x7d9d 027064 rtn 
+:      027066 check_51cmd:
+0x7d9e 027067 set1 mark_ext_patch ,mark 
+0x7d9f 027068 bpatch patch3e_6 ,mem_patch3e 
+0x7da0 027069 fetch 1 ,mem_hci_cmd 
+0x7da1 027070 nrtn blank 
+0x7da2 027071 arg mem_ipc_fifo_c512bt ,rega 
+0x7da3 027072 call fifo_is_empty 
+0x7da4 027073 rtn blank 
+0x7da5 027074 jam ipc_continue_process ,mem_ipc_skip_continue_proc 
+0x7da6 027075 call check_51cmd_once 
+0x7da7 027076 fetch 1 ,mem_ipc_skip_continue_proc 
+0x7da8 027077 branch check_51cmd ,blank 
+0x7da9 027078 rtn 
+:      027080 check_51cmd_once:
+0x7daa 027081 set1 mark_ext_patch ,mark 
+0x7dab 027082 bpatch patch3e_7 ,mem_patch3e 
+0x7dac 027083 call ui_ipc_get_lock 
+0x7dad 027084 arg mem_ipc_fifo_c512bt ,rega 
+0x7dae 027085 call fifo_out 
+0x7daf 027086 copy pdata ,temp 
+0x7db0 027087 call ui_ipc_put_lock 
+0x7db1 027088 copy temp ,pdata 
+0x7db2 027089 rtn blank 
+0x7db3 027090 beq bt_cmd_start_discovery ,check_51cmd_start_discovery 
+0x7db4 027091 beq bt_cmd_stop_discovery ,check_51cmd_stop_discovery 
+0x7db5 027092 beq bt_cmd_reconnect ,check_51cmd_reconnect 
+0x7db6 027093 beq bt_cmd_enter_sniff_subrating ,check_51cmd_enter_sniff_subrating 
+0x7db7 027094 beq bt_cmd_exit_sniff_subrating ,check_51cmd_exit_sniff_subrating 
+0x7db8 027095 beq bt_cmd_sniff_test ,check_51cmd_sniff_test 
+0x7db9 027096 beq bt_cmd_start_inquiry ,check_51cmd_inq 
+0x7dba 027097 beq bt_cmd_stop_inquiry ,check_51cmd_stop_inq 
+0x7dbb 027098 beq bt_cmd_start_adv ,check_51cmd_adv 
+0x7dbc 027099 beq bt_cmd_stop_adv ,check_51cmd_stop_adv 
+0x7dbd 027100 beq bt_cmd_start_direct_adv ,check_51cmd_direct_adv 
+0x7dbe 027101 beq bt_cmd_stop_direct_adv ,check_51cmd_stop_direct_adv 
+0x7dbf 027102 beq bt_cmd_led_blink ,ui_led_blink_start 
+0x7dc0 027103 beq bt_cmd_led_on ,ui_led_on 
+0x7dc1 027104 beq bt_cmd_led_off ,ui_led_blink_stop 
+0x7dc2 027105 beq bt_cmd_le_start_conn ,check_51cmd_le_start_con 
+0x7dc3 027106 beq bt_cmd_le_start_scan ,check_51cmd_start_scan 
+0x7dc4 027107 beq bt_cmd_le_stop_scan ,check_51cmd_stop_scan 
+0x7dc5 027108 beq bt_cmd_enter_hibernate ,check_51cmd_hibernate 
+0x7dc6 027109 beq bt_cmd_le_smp_security_request ,check_51cmd_le_smp_sec_req 
+0x7dc7 027110 beq bt_cmd_le_start_write ,check_51cmd_le_start_write 
+0x7dc8 027111 beq bt_cmd_bb_reconn_cancel ,check_51cmd_bb_reconn_cancel 
+0x7dc9 027113 store 1 ,mem_fifo_temp 
+0x7dca 027114 set1 mark_ext_patch ,mark 
+0x7dcb 027115 bpatch patch3f_0 ,mem_patch3f 
+0x7dcc 027116 call lmo_fifo_check 
+0x7dcd 027117 nbranch check_51cmd_restore ,blank 
+:      027118 check_51cmd_once_continue:
+0x7dce 027119 fetch 1 ,mem_fifo_temp 
+0x7dcf 027120 bmark0 mark_context ,check_51cmd_check_idle 
+0x7dd0 027121 beq bt_cmd_enter_sniff ,cmd_in_sniff 
+0x7dd1 027122 beq bt_cmd_exit_sniff ,cmd_exit_sniff 
+0x7dd2 027123 beq bt_cmd_set_pin_code ,check_51cmd_pincode 
+0x7dd3 027124 beq bt_cmd_disconnect ,check_51cmd_disconnect 
+0x7dd4 027125 beq bt_cmd_le_disconnect ,check_51cmd_le_disconnect 
+0x7dd5 027126 beq bt_cmd_role_switch ,check_51cmd_role_switch 
+0x7dd6 027127 beq bt_cmd_store_reconn_info_le ,eeprom_store_le_reconn_info 
+0x7dd7 027128 beq bt_cmd_store_reconn_info_bt ,eeprom_store_bd_reconn_info 
+0x7dd8 027129 beq bt_cmd_le_update_conn ,check_51cmd_ble_update_connect_param 
+0x7dd9 027130 beq bt_cmd_dhkey_not_accept ,check_51cmd_dhkey_not_accept 
+0x7dda 027131 rtn 
+:      027133 check_51cmd_dhkey_not_accept:
+0x7ddb 027134 call tid_set_reply 
+0x7ddc 027135 jam lmp_dhkey_check ,mem_lmi_opcode2 
+0x7ddd 027136 branch parse_lmp_dhkey_check_reject 
+:      027138 check_51cmd_ble_update_connect_param:
+0x7dde 027139 jam xt_ll_connection_param_req ,mem_fifo_temp 
+0x7ddf 027140 branch le_xtype_fifo_in 
+:      027141 check_51cmd_check_idle:
+0x7de0 027142 store 1 ,mem_fifo_temp 
+0x7de1 027143 call context_check_idle 
+0x7de2 027144 branch check_51cmd_restore ,zero 
+0x7de3 027145 call context_search_plap 
+0x7de4 027146 nrtn zero 
+:      027147 check_51cmd_restore:
+0x7de5 027148 jam ipc_skip_continue_process ,mem_ipc_skip_continue_proc 
+0x7de6 027149 branch ui_ipc_send_cmd 
+:      027152 check_51cmd_role_switch:
+0x7de7 027153 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x7de8 027154 set1 mark_switch_initiated ,mark 
+0x7de9 027155 nrtn master 
+0x7dea 027156 jam switch_flag_init ,mem_switch_flag 
+0x7deb 027157 jam lmp_switch_req ,mem_lmo_opcode2 
+0x7dec 027158 fetch 1 ,mem_connection_options 
+0x7ded 027159 set0 connection_switch ,pdata 
+0x7dee 027160 store 1 ,mem_connection_options 
+0x7def 027161 rtn 
+:      027163 check_51cmd_start_discovery:
+0x7df0 027164 fetch 2 ,mem_ui_state_map 
+0x7df1 027165 set1 ui_state_bt_discovery 
+0x7df2 027166 store 2 ,mem_ui_state_map 
+0x7df3 027167 jam 3 ,mem_scan_mode 
+0x7df4 027168 rtn 
+:      027170 check_51cmd_stop_discovery:
+0x7df5 027171 jam 0 ,mem_hid_handshake_timer_count 
+0x7df6 027172 jam 0 ,mem_scan_mode 
+0x7df7 027173 fetch 2 ,mem_ui_state_map 
+0x7df8 027174 set0 ui_state_bt_discovery 
+0x7df9 027175 store 2 ,mem_ui_state_map 
+0x7dfa 027176 rtn 
+:      027178 check_51cmd_reconnect:
+0x7dfb 027179 jam hci_cmd_create_conn ,mem_hci_cmd 
+0x7dfc 027180 rtn 
+:      027182 check_51cmd_disconnect:
+0x7dfd 027183 jam lmp_detach ,mem_lmo_opcode2 
+0x7dfe 027184 jam other_end_terminated ,mem_disconn_reason_send 
+0x7dff 027185 rtn 
+:      027188 check_51cmd_enter_sniff_subrating:
+0x7e00 027189 rtn 
+:      027191 check_51cmd_exit_sniff_subrating:
+0x7e01 027192 rtn 
+:      027194 check_51cmd_sniff_test:
+0x7e02 027195 rtn 
+:      027197 check_51cmd_pincode:
+0x7e03 027198 jam pincode_state_pincode_ready ,mem_pincode_state 
+0x7e04 027199 branch cmd_pair 
+:      027201 check_51cmd_inq:
+0x7e05 027202 rtn 
+:      027203 check_51cmd_stop_inq:
+0x7e06 027204 rtn 
+:      027205 check_51cmd_adv:
+0x7e07 027206 jam on ,mem_le_adv_enable 
+0x7e08 027207 jam adv_ind ,mem_le_adv_type 
+0x7e09 027208 fetch 2 ,mem_ui_state_map 
+0x7e0a 027209 set1 ui_state_ble_adv ,pdata 
+0x7e0b 027210 store 2 ,mem_ui_state_map 
+0x7e0c 027211 rtn 
+:      027212 check_51cmd_stop_adv:
+0x7e0d 027213 fetch 2 ,mem_ui_state_map 
+0x7e0e 027214 set0 ui_state_ble_adv ,pdata 
+0x7e0f 027215 store 2 ,mem_ui_state_map 
+0x7e10 027216 jam off ,mem_le_adv_enable 
+0x7e11 027217 rtn 
+:      027218 check_51cmd_direct_adv:
+0x7e12 027219 jam on ,mem_le_adv_enable 
+0x7e13 027220 jam adv_direct_ind ,mem_le_adv_type 
+0x7e14 027221 fetch 2 ,mem_ui_state_map 
+0x7e15 027222 set1 ui_state_ble_adv ,pdata 
+0x7e16 027223 store 2 ,mem_ui_state_map 
+0x7e17 027224 rtn 
+:      027225 check_51cmd_stop_direct_adv:
+0x7e18 027226 fetch 2 ,mem_ui_state_map 
+0x7e19 027227 set0 ui_state_ble_adv ,pdata 
+0x7e1a 027228 store 2 ,mem_ui_state_map 
+0x7e1b 027229 jam off ,mem_le_adv_enable 
+0x7e1c 027230 rtn 
+:      027231 check_51cmd_le_disconnect:
+0x7e1d 027232 setarg 10 
+0x7e1e 027233 store 2 ,mem_le_superto 
+0x7e1f 027234 jam xt_ll_terminate_ind ,mem_fifo_temp 
+0x7e20 027235 branch le_xtype_fifo_in 
+:      027236 check_51cmd_le_start_con:
+0x7e21 027237 jam on ,mem_le_scan_enable 
+0x7e22 027238 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x7e23 027241 rtn 
+:      027242 check_51cmd_start_scan:
+0x7e24 027243 jam on ,mem_le_scan_enable 
+0x7e25 027244 rtn 
+:      027245 check_51cmd_stop_scan:
+0x7e26 027246 jam off ,mem_le_scan_enable 
+0x7e27 027247 jam 0 ,mem_hci_cmd 
+0x7e28 027248 rtn 
+:      027249 check_51cmd_le_smp_sec_req:
+0x7e29 027250 jam xt_smp_security_request ,mem_fifo_temp 
+0x7e2a 027251 branch le_xtype_fifo_in 
+:      027252 check_51cmd_hibernate:
+0x7e2b 027253 set1 mark_ext_patch ,mark 
+0x7e2c 027254 bpatch patch3f_1 ,mem_patch3f 
+0x7e2d 027255 fetch 2 ,mem_cb_before_hibernate 
+0x7e2e 027256 call callback_func 
+0x7e2f 027257 enable user 
+0x7e30 027258 hfetch 4 ,0x8138 
+0x7e31 027259 setflag user ,26 ,pdata 
+0x7e32 027260 hstore 4 ,core_lpm_reg 
+0x7e33 027261 call lpm_write_ctrl 
+0x7e34 027262 fetch 1 ,mem_ui_button_gpio 
+0x7e35 027263 beq ui_button_gpio_disable ,check_51cmd_hibernate_btn_disabled 
+0x7e36 027264 copy pdata ,temp 
+0x7e37 027265 call gpio_config_input 
+:      027266 check_51cmd_hibernate_btn_disabled:
+0x7e38 027267 call ui_led_off 
+0x7e39 027268 call ui_ipc_clean_all_fifo 
+0x7e3a 027269 branch lpm_hibernate 
+:      027271 check_51cmd_le_start_write:
+0x7e3b 027272 jam 1 ,mem_le_switch_send_data 
+0x7e3c 027273 rtn 
+:      027275 check_51cmd_bb_reconn_cancel:
+0x7e3d 027276 force page_length_timer ,queue 
+0x7e3e 027277 branch timer_stop 
+:      027280 ui_check_paring_button:
+0x7e3f 027281 fetch 1 ,mem_ui_state_map 
+0x7e40 027282 rtnbit0 ui_state_btn_down 
+0x7e41 027283 rtnbit0 ui_state_bt_reconnect 
+0x7e42 027284 branch check_51cmd_bb_reconn_cancel 
+:      027288 right_shift_n:
+0x7e43 027289 sub loopcnt ,0 ,null 
+0x7e44 027290 rtn zero 
+:      027291 right_shift_n_loop:
+0x7e45 027292 rshift pdata ,pdata 
+0x7e46 027293 loop right_shift_n_loop 
+0x7e47 027294 rtn 
+:      027296 push_stack:
+0x7e48 027297 deposit contw 
+0x7e49 027298 store 2 ,mem_contw 
+0x7e4a 027299 storet 8 ,mem_temp 
+0x7e4b 027300 deposit timeup 
+0x7e4c 027301 store 4 ,mem_timeup 
+0x7e4d 027302 deposit rega 
+0x7e4e 027303 store 4 ,mem_rega 
+0x7e4f 027304 deposit regb 
+0x7e50 027305 store 4 ,mem_regb 
+0x7e51 027306 deposit regc 
+0x7e52 027307 store 3 ,mem_regc 
+0x7e53 027308 deposit contr 
+0x7e54 027309 store 2 ,mem_contr 
+0x7e55 027310 rtn 
+:      027311 pop_stack:
+0x7e56 027312 fetcht 8 ,mem_temp 
+0x7e57 027313 fetch 4 ,mem_timeup 
+0x7e58 027314 iforce timeup 
+0x7e59 027315 fetch 4 ,mem_rega 
+0x7e5a 027316 iforce rega 
+0x7e5b 027317 fetch 4 ,mem_regb 
+0x7e5c 027318 iforce regb 
+0x7e5d 027319 fetch 3 ,mem_regc 
+0x7e5e 027320 iforce regc 
+0x7e5f 027321 fetch 2 ,mem_contw 
+0x7e60 027322 iforce contw 
+0x7e61 027323 fetch 2 ,mem_contr 
+0x7e62 027324 iforce contr 
+0x7e63 027325 rtn 
+:      027327 get_contw:
+0x7e64 027328 fetch 2 ,mem_contw 
+0x7e65 027329 copy pdata ,contw 
+0x7e66 027330 rtn 
+:      027331 get_contr:
+0x7e67 027332 fetch 2 ,mem_contr 
+0x7e68 027333 copy pdata ,contr 
+0x7e69 027334 rtn 
+:      027335 store_contw:
+0x7e6a 027336 copy contw ,pdata 
+0x7e6b 027337 store 2 ,mem_contw 
+0x7e6c 027338 rtn 
+:      027339 store_contr:
+0x7e6d 027340 copy contr ,pdata 
+0x7e6e 027341 store 2 ,mem_contr 
+0x7e6f 027342 rtn 
+:      027346 save_cont_pointers:
+0x7e70 027347 copy contw ,pdata 
+0x7e71 027348 store 2 ,mem_hold_contw 
+0x7e72 027349 copy contr ,pdata 
+0x7e73 027350 store 2 ,mem_hold_contr 
+0x7e74 027351 rtn 
+:      027352 load_cont_pointers:
+0x7e75 027353 fetch 2 ,mem_hold_contw 
+0x7e76 027354 copy pdata ,contw 
+0x7e77 027355 fetch 2 ,mem_hold_contr 
+0x7e78 027356 copy pdata ,contr 
+0x7e79 027357 rtn 
+:      027359 memcpy96:
+0x7e7a 027360 call memcpy32 
+:      027361 memcpy64:
+0x7e7b 027362 call memcpy32 
+0x7e7c 027363 branch memcpy32 
+:      027364 memcpy12:
+0x7e7d 027365 call memcpy8 
+:      027366 memcpy4:
+0x7e7e 027367 ifetch 4 ,contr 
+0x7e7f 027368 istore 4 ,contw 
+0x7e80 027369 rtn 
+:      027370 memcpy8:
+0x7e81 027371 ifetch 8 ,contr 
+0x7e82 027372 istore 8 ,contw 
+0x7e83 027373 rtn 
+:      027375 memcpy48:
+0x7e84 027376 call memcpy16 
+:      027377 memcpy32:
+0x7e85 027378 call memcpy8 
+:      027379 memcpy24:
+0x7e86 027380 call memcpy8 
+:      027381 memcpy16:
+0x7e87 027382 call memcpy8 
+0x7e88 027383 branch memcpy8 
+:      027387 delay_10ms:
+0x7e89 027388 copy clkn_bt ,pdata 
+0x7e8a 027389 increase 16 ,pdata 
+0x7e8b 027390 increase 16 ,pdata 
+:      027391 delay_ms_wait:
+0x7e8c 027392 copy clkn_bt ,temp 
+0x7e8d 027393 isub temp ,null 
+0x7e8e 027394 branch delay_ms_wait ,positive 
+0x7e8f 027395 rtn 
+:      027397 bn_zero:
+0x7e90 027398 force 3 ,loopcnt 
+:      027399 memset0:
+0x7e91 027400 force 0 ,pdata 
+:      027401 memset8:
+0x7e92 027402 istore 8 ,contw 
+0x7e93 027403 loop memset8 
+0x7e94 027404 rtn 
+:      027406 memset0_8:
+0x7e95 027407 force 0 ,pdata 
+0x7e96 027408 istore 8 ,contw 
+0x7e97 027409 rtn 
+:      027410 memset0_4:
+0x7e98 027411 force 0 ,pdata 
+0x7e99 027412 istore 4 ,contw 
+0x7e9a 027413 rtn 
+:      027415 clear_mem_256:
+0x7e9b 027416 force 4 ,loopcnt 
+0x7e9c 027417 branch memset0 
+:      027418 clear_mem_512:
+0x7e9d 027419 force 8 ,loopcnt 
+0x7e9e 027420 branch memset0 
+:      027422 clear_mem:
+0x7e9f 027423 deposit loopcnt 
+0x7ea0 027424 rtn blank 
+0x7ea1 027425 setarg 0 
+:      027426 clear_mem_loop:
+0x7ea2 027427 istore 1 ,contw 
+0x7ea3 027428 loop clear_mem_loop 
+0x7ea4 027429 rtn 
+:      027432 clear_temp_block:
+0x7ea5 027433 arg 32 ,loopcnt 
+0x7ea6 027434 arg mem_temp_block0 ,contw 
+0x7ea7 027435 branch clear_mem 
+:      027437 xor_loop:
+0x7ea8 027438 ifetch 4 ,regc 
+0x7ea9 027439 ifetcht 4 ,rega 
+0x7eaa 027440 ixor temp ,pdata 
+0x7eab 027441 istore 4 ,contw 
+0x7eac 027442 increase 4 ,rega 
+0x7ead 027443 increase 4 ,regc 
+0x7eae 027444 loop xor_loop 
+0x7eaf 027445 rtn 
+:      027449 inverse_data:
+0x7eb0 027450 set1 mark_ext_patch ,mark 
+0x7eb1 027451 bpatch patch3f_2 ,mem_patch3f 
+0x7eb2 027452 copy loopcnt ,pdata 
+0x7eb3 027453 sub pdata ,1 ,null 
+0x7eb4 027454 rtn positive 
+0x7eb5 027455 iadd rega ,regb 
+0x7eb6 027456 increase -1 ,regb 
+0x7eb7 027457 rshift loopcnt ,loopcnt 
+:      027458 inverse_loop:
+0x7eb8 027459 ifetcht 1 ,rega 
+0x7eb9 027460 ifetch 1 ,regb 
+0x7eba 027461 istore 1 ,rega 
+0x7ebb 027462 istoret 1 ,regb 
+0x7ebc 027463 increase -1 ,regb 
+0x7ebd 027464 increase 1 ,rega 
+0x7ebe 027465 loop inverse_loop 
+0x7ebf 027466 rtn 
+:      027469 memcpy_fast:
+0x7ec0 027470 deposit loopcnt 
+0x7ec1 027471 rtn blank 
+:      027472 memcpy_fast_loop:
+0x7ec2 027473 increase -8 ,loopcnt 
+0x7ec3 027474 call memcpy8 ,positive 
+0x7ec4 027475 rtn zero 
+0x7ec5 027476 branch memcpy_fast_loop ,positive 
+0x7ec6 027477 increase 8 ,loopcnt 
+:      027478 memcpy_fast_loop_four:
+0x7ec7 027479 increase -4 ,loopcnt 
+0x7ec8 027480 call memcpy4 ,positive 
+0x7ec9 027481 rtn zero 
+0x7eca 027482 branch memcpy_fast_loop_four ,positive 
+0x7ecb 027483 increase 4 ,loopcnt 
+0x7ecc 027484 branch memcpy 
+:      027486 memcpy:
+0x7ecd 027487 deposit loopcnt 
+0x7ece 027488 rtn blank 
+:      027489 memcpy_loop:
+0x7ecf 027490 ifetch 1 ,contr 
+0x7ed0 027491 istore 1 ,contw 
+0x7ed1 027492 loop memcpy_loop 
+0x7ed2 027493 rtn 
+:      027495 timer_stop:
+0x7ed3 027496 setarg 0 
+:      027497 timer_init:
+0x7ed4 027498 rshift clkn_bt ,temp 
+0x7ed5 027499 storet 4 ,mem_last_clkn 
+0x7ed6 027500 arg mem_timers ,contw 
+0x7ed7 027501 iforce temp 
+0x7ed8 027502 lshift queue ,pdata 
+0x7ed9 027503 iadd contw ,contw 
+0x7eda 027504 istoret 2 ,contw 
+0x7edb 027505 set1 mark_ext_patch ,mark 
+0x7edc 027506 bpatch patch3f_3 ,mem_patch3f 
+0x7edd 027507 rtn 
+:      027509 timer_check_timeout:
+0x7ede 027510 arg 0x800 ,timeup 
+0x7edf 027511 lshift16 timeup ,timeup 
+0x7ee0 027512 iadd timeup ,pdata 
+0x7ee1 027513 rtn 
+:      027516 timer_check:
+0x7ee2 027517 set1 mark_ext_patch ,mark 
+0x7ee3 027518 bpatch patch3f_4 ,mem_patch3f 
+0x7ee4 027519 fetcht 4 ,mem_last_clkn 
+0x7ee5 027520 rshift clkn_bt ,pdata 
+0x7ee6 027521 store 4 ,mem_last_clkn 
+0x7ee7 027522 isub temp ,null 
+0x7ee8 027523 ncall timer_check_timeout ,positive 
+0x7ee9 027524 isub temp ,timeup 
+0x7eea 027525 copy timeup ,temp 
+0x7eeb 027526 arg mem_timers ,contr 
+0x7eec 027527 copy contr ,contw 
+0x7eed 027528 arg 16 ,loopcnt 
+:      027529 timer_loop:
+0x7eee 027530 ifetch 2 ,contr 
+0x7eef 027531 isub temp ,pdata 
+0x7ef0 027532 branch timer_counting ,positive 
+0x7ef1 027533 force 0 ,pdata 
+:      027534 timer_counting:
+0x7ef2 027535 istore 2 ,contw 
+0x7ef3 027536 loop timer_loop 
+0x7ef4 027537 arg mem_timers ,contr 
+0x7ef5 027538 lshift queue ,pdata 
+0x7ef6 027539 iadd contr ,contr 
+0x7ef7 027540 ifetch 2 ,contr 
+0x7ef8 027541 rtn 
+:      027546 clk_add:
+0x7ef9 027547 iadd temp ,temp 
+0x7efa 027548 copy temp ,loopcnt 
+0x7efb 027549 setarg 3750 
+0x7efc 027550 isub loopcnt ,pdata 
+0x7efd 027551 rtn positive 
+0x7efe 027552 sub pdata ,0 ,pdata 
+0x7eff 027553 rshift16 temp ,temp 
+0x7f00 027554 increase 1 ,temp 
+0x7f01 027555 lshift16 temp ,temp 
+0x7f02 027556 ior temp ,temp 
+0x7f03 027557 rtn 
+:      027559 clk_diff_rt:
+0x7f04 027560 call clk_diff 
+0x7f05 027561 branch clk2rt 
+:      027564 clk_diff:
+0x7f06 027565 disable user 
+0x7f07 027566 isub temp ,pdata 
+0x7f08 027567 branch clk_diff_pos ,positive 
+0x7f09 027568 enable user 
+0x7f0a 027569 sub pdata ,0 ,pdata 
+:      027570 clk_diff_pos:
+0x7f0b 027571 rtnbit0 15 
+0x7f0c 027572 arg -61786 ,temp 
+0x7f0d 027573 iadd temp ,pdata 
+0x7f0e 027574 set0 64 ,pdata 
+0x7f0f 027575 rtn 
+:      027577 clk2rt:
+0x7f10 027578 iforce contr 
+0x7f11 027579 rshift16 pdata ,pdata 
+0x7f12 027580 arg 3750 ,temp 
+0x7f13 027581 imul32 temp ,pdata 
+0x7f14 027582 iadd contr ,pdata 
+0x7f15 027583 rtn 
+:      027586 clk2lpo:
+0x7f16 027587 lshift8 pdata ,pdata 
+0x7f17 027588 lshift4 pdata ,pdata 
+0x7f18 027589 fetcht 3 ,mem_clks_per_lpo 
+0x7f19 027590 idiv temp 
+0x7f1a 027591 call wait_div_end 
+0x7f1b 027592 quotient temp 
+0x7f1c 027593 rtn 
+:      027596 clk2bt:
+0x7f1d 027597 arg 3750 ,temp 
+0x7f1e 027598 idiv temp 
+0x7f1f 027599 call wait_div_end 
+0x7f20 027600 quotient pdata 
+0x7f21 027601 lshift16 pdata ,pdata 
+0x7f22 027602 remainder temp 
+0x7f23 027603 ior temp ,temp 
+0x7f24 027604 rtn 
+:      027611 string2dec_from_uart:
+0x7f25 027612 arg 0 ,temp 
+:      027613 string2dec_from_uart_done:
+0x7f26 027614 copy temp ,regc 
+0x7f27 027615 ifetch 1 ,contru 
+0x7f28 027616 call uchar2dialog 
+0x7f29 027617 copy regc ,temp 
+0x7f2a 027618 call swap 
+0x7f2b 027619 arg 10 ,regb 
+0x7f2c 027620 imul32 regb ,pdata 
+0x7f2d 027621 iadd temp ,pdata 
+0x7f2e 027622 copy pdata ,temp 
+0x7f2f 027623 loop string2dec_from_uart_done 
+0x7f30 027624 rtn 
+:      027628 uchar2dialog:
+0x7f31 027629 arg 0x3a ,temp 
+0x7f32 027630 isub temp ,null 
+0x7f33 027631 nbranch uchar2dialog_number ,positive 
+0x7f34 027632 arg 0x61 ,temp 
+0x7f35 027633 isub temp ,null 
+0x7f36 027634 branch uchar2dialog_a2f ,positive 
+0x7f37 027635 arg 0x37 ,temp 
+0x7f38 027636 isub temp ,pdata 
+0x7f39 027637 rtn 
+:      027638 uchar2dialog_number:
+0x7f3a 027639 arg 0x30 ,temp 
+0x7f3b 027640 isub temp ,pdata 
+0x7f3c 027641 rtn 
+:      027642 uchar2dialog_a2f:
+0x7f3d 027643 arg 0x57 ,temp 
+0x7f3e 027644 isub temp ,pdata 
+0x7f3f 027645 rtn 
+:      027647 pn9:
+0x7f40 027648 copy temp ,alarm 
+0x7f41 027649 setarg 0x1ff 
+0x7f42 027650 force 0 ,regb 
+:      027651 pn9_loop:
+0x7f43 027652 rshift3 pdata ,rega 
+0x7f44 027653 rshift rega ,rega 
+0x7f45 027654 ixor rega ,rega 
+0x7f46 027655 isolate1 0 ,rega 
+0x7f47 027656 setflag true ,9 ,pdata 
+0x7f48 027657 rshift temp ,temp 
+0x7f49 027658 isolate1 0 ,pdata 
+0x7f4a 027659 setflag true ,7 ,temp 
+0x7f4b 027660 rshift pdata ,pdata 
+0x7f4c 027661 increase 1 ,regb 
+0x7f4d 027662 compare 0 ,regb ,0x7 
+0x7f4e 027663 nbranch pn9_loop ,true 
+0x7f4f 027664 istoret 1 ,contw 
+0x7f50 027665 loop pn9_loop 
+0x7f51 027666 copy alarm ,temp 
+0x7f52 027667 rtn 
+:      027670 wait_div_end:
+0x7f53 027671 rtn modone 
+0x7f54 027672 branch wait_div_end 
+:      027683 string_compare:
+0x7f55 027684 ifetch 1 ,rega 
+0x7f56 027685 ifetcht 1 ,regb 
+0x7f57 027686 isub temp ,null 
+0x7f58 027687 nrtn zero 
+0x7f59 027688 increase 1 ,rega 
+0x7f5a 027689 increase 1 ,regb 
+0x7f5b 027690 loop string_compare 
+0x7f5c 027691 force 0 ,null 
+0x7f5d 027692 rtn 
+:      027695 ceiling:
+0x7f5e 027696 isub temp ,null 
+0x7f5f 027697 nrtn positive 
+0x7f60 027698 deposit temp 
+0x7f61 027699 rtn 
+:      027701 swap:
+0x7f62 027702 iadd temp ,pdata 
+0x7f63 027703 isub temp ,temp 
+0x7f64 027704 isub temp ,pdata 
+0x7f65 027705 rtn 
+:      027707 clean_mem:
+0x7f66 027708 arg 0x200 ,loopcnt 
+0x7f67 027709 arg 0x4000 ,contw 
+0x7f68 027710 branch memset0 
+:      027762 callback_func:
+0x7f69 027763 rtn blank 
+0x7f6a 027764 copy pdata ,pc 
+:      027767 wait_uarttx:
+0x7f6b 027768 hfetch 2 ,core_uart_txitems 
+0x7f6c 027769 nbranch wait_uarttx ,blank 
+0x7f6d 027770 rtn 
+:      027772 get_uart_rrptr:
+0x7f6e 027773 hfetch 2 ,core_uart_rrptr 
+0x7f6f 027774 copy pdata ,contru 
+0x7f70 027775 rtn 
+:      027778 ice_break:
+0x7f71 027779 hjam 0x1 ,core_ice_ctrl 
+0x7f72 027780 rtn 
+:      027782 ice_setbp:
+0x7f73 027783 hstore 2 ,core_ice_break0 
+0x7f74 027784 hfetch 1 ,core_ice_ctrl 
+0x7f75 027785 set1 4 ,pdata 
+0x7f76 027786 hstore 1 ,core_ice_ctrl 
+0x7f77 027787 rtn 
+:      027788 ice_setbp2:
+0x7f78 027789 hstore 2 ,core_ice_break1 
+0x7f79 027790 hfetch 1 ,core_ice_ctrl 
+0x7f7a 027791 set1 6 ,pdata 
+0x7f7b 027792 hstore 1 ,core_ice_ctrl 
+0x7f7c 027793 rtn 
+:      027795 ice_set_write_bp:
+0x7f7d 027796 hstore 2 ,core_ice_break0 
+0x7f7e 027797 hjam 0x30 ,core_ice_ctrl 
+0x7f7f 027798 rtn 
+:      027802 test_enable_white:
+0x7f80 027803 hfetch 1 ,core_config 
+0x7f81 027804 set0 whiteoff_bit ,pdata 
+0x7f82 027805 hstore 1 ,core_config 
+0x7f83 027806 rtn 
+:      027808 check_uart_tx_buff:
+0x7f84 027809 hfetch 2 ,core_uart_txitems 
+0x7f85 027810 arg uart_air_control_threshold ,temp 
+:      027811 pdata_sub_temp:
+0x7f86 027812 isub temp ,null 
+0x7f87 027813 rtn 
+:      027819 fifo_in:
+0x7f88 027820 set1 mark_ext_patch ,mark 
+0x7f89 027821 bpatch patch3f_5 ,mem_patch3f 
+0x7f8a 027822 ifetcht util_fifo_len ,rega 
+0x7f8b 027823 and temp ,0xff ,pdata 
+0x7f8c 027824 nbranch fifo_in_push ,blank 
+0x7f8d 027825 rshift8 temp ,pdata 
+0x7f8e 027826 istore util_fifo_len ,rega 
+:      027827 fifo_in_push:
+0x7f8f 027828 increase util_fifo_len + util_fifo_offset ,rega 
+0x7f90 027829 ifetch 1 ,rega 
+0x7f91 027830 nbranch assert ,blank 
+0x7f92 027831 fetch 1 ,mem_fifo_temp 
+0x7f93 027832 istore 1 ,rega 
+0x7f94 027833 rtn 
+:      027838 fifo_out:
+0x7f95 027839 set1 mark_ext_patch ,mark 
+0x7f96 027840 bpatch patch3f_6 ,mem_patch3f 
+0x7f97 027841 arg util_fifo_len ,loopcnt 
+0x7f98 027842 ifetch util_fifo_len ,rega 
+0x7f99 027843 rtn blank 
+:      027844 fifo_out_loop:
+0x7f9a 027845 ifetch 1 ,rega 
+0x7f9b 027846 nbranch fifo_out_end ,blank 
+0x7f9c 027847 increase 1 ,rega 
+0x7f9d 027848 loop fifo_out_loop 
+0x7f9e 027849 branch assert 
+:      027850 fifo_out_end:
+0x7f9f 027851 arg 0 ,temp 
+0x7fa0 027852 istoret 1 ,rega 
+0x7fa1 027853 rtn 
+:      027858 fifo_is_empty:
+0x7fa2 027859 ifetch util_fifo_len ,rega 
+0x7fa3 027860 rtn 
+:      027865 fifo_is_full:
+0x7fa4 027866 ifetch 1 ,rega 
+0x7fa5 027867 rtn 
+:      027870 fifo_is_near_full:
+0x7fa6 027871 ifetch 2 ,rega 
+0x7fa7 027872 rtn 
+:      027876 fifo_content_count:
+0x7fa8 027877 arg 0 ,temp 
+:      027878 fifo_content_count_loop:
+0x7fa9 027879 fetch 1 ,contr 
+0x7faa 027880 loop fifo_content_count_loop ,blank 
+0x7fab 027881 increase 1 ,temp 
+0x7fac 027882 loop fifo_content_count_loop 
+0x7fad 027883 copy temp ,pdata 
+0x7fae 027884 rtn 
+:      027886 not_greater_than:
+0x7faf 027887 isub temp ,null 
+0x7fb0 027888 nrtn positive 
+0x7fb1 027889 copy temp ,pdata 
+0x7fb2 027890 rtn 
Index: Receive_Code/output/bt_program23.meta
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/bt_program23.meta	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/bt_program23.meta	(working copy)
@@ -0,0 +1,27892 @@
+define REVD
+//define FPGA
+define ROMCODE
+define PATCH
+define ADC
+//define RAM_VERSION
+//define CLK6M
+//define DEBUG_MALLOC
+//define DEBUG_H4LOG_ENABLE
+//define DEBUG_LIGHT_STATE
+//define E2_LOG
+//define LMP_DBG
+//define ACL_DEBUG
+//define DCDC
+define NVRAM
+define RELEASE
+define SECURE_CONNECTION
+define DEBUG_RF_INIT
+//define SPI_SIMULATE
+//define ROM_RESPIN_OPTIONAL
+
+define SIMPLE_PAIRING
+define COMPILE_RFCOMM
+define COMPILE_SHUTTER
+//define COMPILE_IR
+define COMPILE_KEYBOARD
+define COMPILE_MOUSE
+define COMPILE_MODULE
+//define COMPILE_AT
+//define COMPILE_PRCP
+//define COMPILE_USB
+//define COMPILE_DONGLE
+define COMPILE_LE
+//define COMPILE_24G
+
+INCLUDE "bt_format"
+
+org 0x0000		// start from patch ram address start
+
+	bmark1 mark_ext_patch,patch_ext
+	beq patch00_3,p_main_loop
+	beq patch10_6,p_shutdown_radio
+	beq patch11_2,p_set_freq_tx
+	beq patch11_3,p_initialize_radio_cont	
+	beq patch16_4,p_app_init
+	branch assert
+	
+patch_ext:
+	beq patch20_3,p_le_master_dispatch_end
+	beq patch23_1,p_le_transmit
+	beq patch25_3,p_le_scan
+	beq patch25_6,p_le_conn
+	beq patch26_2,p_le_prepare_smp1
+	beq patch26_3,p_le_prepare_att
+	beq patch27_4,p_le_parse0
+	beq patch27_6,p_le_parse_att
+	beq patch32_5,p_gpio_set_before_lpm_common
+	beq patch3b_0,p_shutter_init_end
+	beq patch3b_1,p_shutter_le_bb_event_100ms_loop
+	beq patch3b_4,p_shutter_le_key_process
+	beq patch3e_7,p_check_51cmd_once
+	branch assert
+
+p_main_loop:
+	arg uart_rx_timer,queue
+	call timer_check
+	ncall p_main_loop_next,blank
+	call p_uart_send_data_timer_init
+	call p_le_parse_att
+p_main_loop_next:
+	branch main_loop+2
+
+p_uart_send_data_timer_init:
+	setarg TIMER_UART_SEND_DATA_DELAY
+	arg uart_rx_timer,queue
+	branch timer_init
+
+p_le_prepare_smp1:
+	fetch 1,mem_le_l2cap
+p_le_prepare_smp0:
+	beq SMP_PAIRING_REQUEST,le_send_smp_pairing_request             
+	beq SMP_PAIRING_RESPONSE,p_le_send_smp_pairing_response            
+	beq SMP_PAIRING_CONFIRM,le_send_smp_pairing_confirm             
+	beq SMP_PAIRING_RANDOM,le_send_smp_pairing_random              
+	beq SMP_PAIRING_FAILED,le_send_smp_pairing_failed              
+	beq SMP_ENCRYPTION_INFORMATION,le_send_smp_encryption_information      
+	beq SMP_MASTER_IDENTIFICATION,le_send_smp_master_identification       
+	beq SMP_IDENTITY_INFORMATION,le_send_smp_identity_information        
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_send_smp_identity_address_information
+	beq SMP_SIGNING_INFORMATION,le_send_smp_signing_information         
+	beq SMP_SECURITY_REQUEST,le_send_smp_security_request            
+	beq SMP_PAIRING_PUBLIC_KEY,le_send_smp_pairing_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_send_smp_pairing_dhkey_check
+	branch assert
+	
+p_le_send_smp_pairing_response:
+	setarg param_smp_paring_response	
+	store 4,mem_le_pres
+	setarg param_smp_key_dist2
+	istore 3,contw
+	fetch 6,mem_le_pres+1
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+p_app_init:
+	fetch 1,mem_device_option
+	branch app_init,blank				/* wait ram to be initialized */
+//	beq dvc_op_ukey,le_ukey_init
+//	beq dvc_op_ir,le_ir_init
+//	beq dvc_op_dongle,le_dongle_init
+	beq dvc_op_kb,kb_init
+	beq dvc_op_shutter,p_shutter_init
+	beq dvc_op_module,module_init
+//	beq dvc_op_test,test_init
+	bbit1 dvc_op_mouse,mouse_init
+	bbit1 dvc_op_keyboard,kb_init
+	rtn
+
+p_shutter_init:
+	rtn wake	
+	call init_shutter_le_att_list
+	arg 135,loopcnt
+	arg mem_shutter_le_att_list+230,contw
+	arg mem_shutter_att_list_patch,contr
+	call memcpy
+	call shutter_init_param	
+
+	hjam 0x00,core_gpio_sel1//1: GPIO[26:25] is two wire SPI, 2: GPIO[26:23] is SPI, 3: GPIO[26:23] is PCM
+	call shutter_key_init
+
+	setarg shutter_le_before_hibernate
+	store 2,mem_cb_before_hibernate
+
+	setarg shutter_le_process_lpm_before
+	store 2,mem_cb_before_lpm
+	
+	setarg shutter_le_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+	
+	setarg scale_process_idle	//
+	store 2,mem_cb_idle_process
+	
+	setarg scale_process	//
+	store 2,mem_cb_le_process
+	
+	setarg p_scale_process_bb_event 
+	store 2,mem_cb_bb_event_process
+
+	call p_shutter_uart_init
+	
+	setarg shutter_le_scale_lpm_lock
+	store 2,mem_cb_check_wakelock
+	setarg shutter_le_receive_data
+	store 2,mem_cb_att_write
+	call p_shutter_le_queue_init
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	branch shutter_init0+5
+
+p_shutter_init_end:
+	fetch 1, mem_hard_soft_switch_case
+	beq HARD_SWITCH,p_shutter_le_hard_switch_power_on_signal
+	branch shutter_init0+9
+
+p_shutter_le_hard_switch_power_on_signal:
+	//call ice_break
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	jam 1,mem_enable_key_scan
+	call shutter_ui_led_init
+	setarg mem_power_on_led_style
+	call shutter_ui_led_send
+p_in_poweron_hard_switch_led:
+	call ui_led_blink_polling
+	fetch 1,mem_led_blink_count
+	nbranch p_in_poweron_hard_switch_led,blank
+p_shutter_le_soft_switch_power_on_signal:
+	jam ON,mem_le_scan_enable
+	setarg 0
+	store 4,mem_shutter_send_data
+	call shutter_ui_led_init
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	branch p_shutter_le_fast_scan
+	
+
+p_shutter_le_fast_scan:
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	jam 0,mem_shutter_key_data_flag_1
+	jam ON,mem_le_scan_enable
+	setarg mem_fast_adv_led_style
+	branch shutter_ui_led_send
+
+p_le_scan:
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+	fetch 6,mem_le_plap
+//	rshift16 pdata,pdata
+//	rshift8 pdata,pdata
+	fetcht 6,mem_le_conn_peer_addr
+	isub temp,null
+	branch le_create_conn,zero
+	branch p_le_addr_compare
+
+p_le_addr_compare:
+	fetch 6,mem_le_plap
+//	rshift16 pdata,pdata
+//	rshift8 pdata,pdata
+	fetcht 6,mem_le_slave_peer_addr
+	isub temp,null
+	nrtn zero
+	fetch 6,mem_le_plap
+	store 6,mem_app_peer_addr 	
+	jam 28,mem_le_conn_interval
+	setarg 0x100
+	store 2,mem_le_conn_superto
+	jam OFF,mem_le_scan_enable
+	jam 1,mem_le_conn_state
+	branch app_ble_start_conn
+
+p_check_51cmd_once:
+	call ui_ipc_get_lock
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_out
+	copy pdata,temp
+	call ui_ipc_put_lock
+	copy temp,pdata
+	rtn blank
+	beq BT_CMD_LE_START_CONN,p_check_51cmd_le_start_con
+	branch check_51cmd_once+9
+p_check_51cmd_le_start_con:
+	jam ON,mem_le_scan_enable
+	jam hci_cmd_le_create_conn,mem_hci_cmd
+	fetch 6,mem_app_peer_addr
+	store 6,mem_le_conn_peer_addr
+	rtn
+
+p_le_parse0:
+	copy regc,pdata
+	beq LL_TERMINATE_IND,p_le_parse_terminate_ind
+	branch le_parse0+6
+p_le_parse_terminate_ind:
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,p_le_parse_terminate_ind_common
+	jam 1,mem_shutter_key_data_flag_1
+p_le_parse_terminate_ind_common:
+	setarg 3 
+	store 2,mem_le_superto
+	rtn
+
+p_le_parse_att:
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+	beq ATTOP_WRITE_RESPONSE,p_le_parse_att_write_response
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,p_le_parse_att_handle_value_notify
+	rtn
+
+p_le_parse_att_handle_value_notify:
+	branch p_shutter_uart_tx_prepare
+	
+
+p_le_parse_att_write_response:
+	fetch 1,mem_le_send_write_request_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_le_send_write_request_count
+	beq 1,p_le_att_send_write_request1
+	beq 0,p_le_att_send_write_request0
+	rtn
+	
+p_le_att_send_write_request1:
+	setarg 0x27
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+p_le_att_send_write_request0:
+	setarg 0x60
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+p_le_prepare_att:
+ 	fetch 1,mem_le_l2cap
+	beq ATTOP_WRITE_REQUEST,p_le_send_att_write_request
+	branch le_prepare_att+5
+
+p_le_send_att_write_request:
+// 	fetch 1,mem_le_work_data_send_flag
+//	branch p_le_send_att_write_request_end,blank
+	
+/*
+//	call shutter_le_tx_buff_unuse
+//	call p_shutter_le_queue_get
+//	nrtn user
+//	disable user
+	copy pdata,contr						//handle
+	ifetcht 1,contr
+	increase -3,temp
+	copy temp,loopcnt
+	storet 1,mem_le_handle_data_len
+	ifetch 2,contr
+	store 2,mem_le_notify_handle
+	arg mem_le_handle_data,contw
+	call memcpy
+	*/
+p_le_send_att_write_request_end:
+  	fetch 2,mem_le_notify_handle
+	store 2,mem_le_l2cap_response
+	fetch 1,mem_le_handle_data_len
+	copy pdata,loopcnt
+	arg mem_le_handle_data,contr
+	call memcpy
+	branch le_send_autolen
+
+
+p_scale_process_bb_event:
+	copy regc,pdata
+	//beq BT_EVT_BUTTON_LONG_PRESSED,app_ble_disconnect
+	beq BT_EVT_BUTTON_UP,shutter_bb_event_button_up
+	beq BT_EVT_BUTTON_LONG_PRESSED,shutter_evt_button_long_pressed
+	beq BT_EVT_LE_CONNECTED,scale_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,p_scale_process_le_discon
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,shutter_le_bb_event_timer
+	rtn
+
+p_le_conn:
+	fetch 2,mem_le_sleep_conn_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	setarg mem_connected_led_style
+	call shutter_ui_led_send
+	jam 1,mem_le_conn_state
+	//jam 0x12,mem_le_xtype_fifo+4
+	jam 1,mem_enable_key_scan
+	jam CONN_SM_SEND_WRITE_REQ,mem_le_conn_sm
+	call le_create_conn+14
+	rtn
+
+p_le_master_dispatch_end:
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	call le_acknowledge
+	call p_le_master_sm
+	disable master
+	rtn
+
+	
+p_le_master_sm:
+ 	fetch 1,mem_le_conn_sm
+	beq CONN_SM_SEND_WRITE_REQ,p_le_data_send_write_req
+	beq CONN_SM_WAIT_WRITE_RES,p_le_data_wait_write_res
+	beq CONN_SM_WAIT_WRITE_RES1,p_le_data_wait_write_res1
+	rtn
+
+p_le_data_send_write_req:
+	setarg 0x1a
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	rtn
+	
+p_le_data_wait_write_res:
+	jam CONN_SM_WAIT_WRITE_RES1,mem_le_conn_sm
+	jam ATTOP_EXCHANGE_MTU_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+p_le_data_wait_write_res1:
+	rtn
+
+p_scale_process_le_discon:
+	//setarg 0
+	//store 1,mem_hci_curr_len
+	setarg 0
+	store 6,mem_le_conn_peer_addr
+	jam 2,mem_le_send_write_request_count
+	jam 0,mem_le_conn_state
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	jam 0,mem_ltk_exists
+	jam DEFAULT_STATES,mem_ltk_states
+	jam 0,mem_shutter_find_type_value_flag
+	call p_shutter_le_queue_clear
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 1, mem_le_sleep_flag
+	bne 0,shutter_le_sleep_enter
+	call p_shutter_le_fast_scan
+	jam PAIR_UNKNOWN,mem_pair_state
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	setarg 0 
+	store 2, mem_l2cap_rxbuff2_len
+	branch shutter_le_tx_buff_unuse
+
+p_shutter_le_queue_init:
+	jam 0,mem_queue_ele_num_patch
+	setarg mem_queue_start_patch
+	store 2, mem_queue_read_patch
+	store 2, mem_queue_write_patch
+	rtn
+//end
+
+p_shutter_le_queue_clear:
+	branch p_shutter_le_queue_init
+
+//output:user flag
+//input:temp,loopcnt
+p_shutter_le_queue_put:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	compare  QUEUE_ELE_COUNT_PATCH,pdata,0xff
+	rtn true
+
+	enable user
+	fetch 2, mem_queue_write_patch
+	copy pdata,contw
+	copy temp,contr
+	call memcpy
+	
+	fetch 1,mem_queue_ele_num_patch
+	increase 1,pdata
+	store 1, mem_queue_ele_num_patch
+	
+	setarg mem_queue_write_patch
+	branch p_shutter_le_queue_increase
+
+//pdata
+p_shutter_le_queue_increase:
+	copy pdata,rega
+	arg mem_queue_end_patch,temp
+	ifetch 2,rega
+	increase QUEUE_ELE_LENGTH_PATCH,pdata
+	isub temp,null
+	nbranch p_shutter_le_queue_put_end,positive
+	setarg mem_queue_start_patch
+p_shutter_le_queue_put_end:
+	istore 2,rega
+	rtn
+	
+//output: pdata
+//output: user flag
+p_shutter_le_queue_get:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	rtn blank
+	enable user
+	fetch 1,mem_queue_ele_num_patch
+	increase -1,pdata
+	store 1, mem_queue_ele_num_patch
+
+	fetch 2,mem_queue_read_patch
+	store 2,mem_queue_temp_patch
+
+	setarg mem_queue_read_patch
+	call p_shutter_le_queue_increase
+	fetch 2,mem_queue_temp_patch
+	rtn
+
+p_shutter_le_queue_read_point:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	rtn blank
+	enable user
+	fetch 2,mem_queue_read_patch
+	rtn
+
+p_shutter_le_key_process:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	call shutter_shutter_scan_key
+	nbranch lpm_button_clean_wake_lock,user
+	call lpm_button_get_wake_lock
+	disable user
+	fetch 2,mem_le_sleep_conn_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+//	fetch 1,mem_le_conn_state
+//	rtn blank
+	fetch 1,mem_le_conn_state
+	beq 0,p_shutter_le_fast_scan
+	call shutter_shutter_cancel_key_shake
+	branch p_in_le_key_process_end,positive
+	fetch 2, mem_key_value_temp
+	store 2,mem_key_value_temp4
+	jam 0,mem_key_value_temp6
+	force 0,queue
+	//call ice_break
+p_shutter_le_key_lp1:
+	fetch 2, mem_key_value
+	rshift pdata,temp
+	storet 2,mem_key_value
+	and pdata,0x01,pdata
+	fetcht 2, mem_key_value_temp4
+	and temp,0x01,rega
+	rshift temp,temp
+	storet 2,mem_key_value_temp4
+	ixor rega,null
+	ncall p_shutter_le_send_key_data,zero
+	fetch 1,mem_shutter_key_num
+	fetcht 1, mem_key_value_temp6
+	increase 1,temp
+	storet 1, mem_key_value_temp6
+	copy temp,queue
+	ixor queue,null
+	//call ice_break
+	nbranch p_shutter_le_key_lp1,zero
+	fetch 2,mem_key_value_temp
+	store 2, mem_key_value
+	rtn
+p_in_le_key_process_end:
+	setarg 0
+	store 2,mem_key_value_temp
+	store 2,mem_key_value
+	rtn
+
+//queue = key index
+//rega =1 press, =0 release
+p_shutter_le_send_key_data:
+	//call ice_break
+	deposit rega
+	branch p_in_le_key_is_release,blank
+	copy queue,pdata
+	beq 0,p_in_le_send_key0_press
+	beq 1,p_in_le_send_key1_press
+	beq 2,p_in_le_send_key2_press
+	beq 3,p_in_le_send_key3_press
+p_in_le_send_lable:
+	ifetch 1,temp
+	rtn blank
+	store 1, mem_key_packet_count
+	increase 1,temp
+	storet 2,mem_key_next_addr
+p_in_le_send_lp1:
+	fetch 2, mem_key_next_addr
+	ifetcht 1, pdata //length
+	copy temp,loopcnt
+	iadd temp,temp
+	storet 2, mem_key_next_addr
+	copy pdata,temp
+	call p_shutter_le_queue_put
+	fetch 1, mem_key_packet_count
+	increase -1,pdata
+	store 1, mem_key_packet_count
+	nbranch p_in_le_send_lp1,zero
+	branch p_le_send_packet
+//function end
+p_le_send_packet:
+ 	call p_shutter_le_queue_read_point
+	nrtn user
+	disable user
+//	force 0x0013,temp
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch  shutter_le_tx_buff_inuse
+
+
+p_in_le_key_is_release:
+	copy queue,pdata
+	beq 0,p_in_le_send_key0_rel
+	beq 1,p_in_le_send_key1_rel
+	beq 2,p_in_le_send_key2_rel
+	beq 3,p_in_le_send_key3_rel
+	branch p_in_le_send_lable
+
+p_in_le_send_key0_press:
+	jam 0x01,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key1_press:
+	jam 0x02,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key2_press:
+	jam 0x01,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key3_press:
+	jam 0x02,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+
+p_in_le_send_key0_rel:
+	jam 0x00,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key1_rel:
+	jam 0x00,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key2_rel:
+	jam 0x00,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key3_rel:
+	jam 0x00,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+
+////////////////////////check sum////////////////////////
+//loopcnt = sum number,contr = ptr
+p_calc_check_sum_start:
+	arg 0,rega
+p_calc_check_sum_loop:
+	ifetch 1,contr
+	iadd rega,rega
+	loop p_calc_check_sum_loop
+p_calc_check_sum_and:
+	and rega,0xff,pdata
+	rtn
+
+	
+p_shutter_le_bb_event_100ms_loop:
+ //      call ui_button_check_long_press
+	call shutter_le_shutter_fast_adv_timer
+//	call p_shutter_le_sleep_timer
+//	call shutter_ui_button_timeout_timer
+//	call p_shutter_ui_power_timeout_timer
+	call shutter_app_updata_le_param_timer
+//	call shutter_conn_update_timer
+	branch shutter_le_bb_event_100ms_loop	
+
+p_shutter_ui_power_timeout_timer:
+	fetch 1,mem_power_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_power_timer
+	nrtn blank
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,p_shutter_le_soft_switch_power_on_signal
+	branch shutter_shutter_power_off_signal
+
+/*
+p_shutter_le_sleep_timer:
+	fetch 2,mem_le_sleep_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_sleep_timeout_timer_count
+	nrtn blank
+	//call shutter_ui_led_init
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	branch shutter_shutter_power_off_end	*/
+	
+
+p_shutter_uart_init:
+	hjam 0x4,core_gpio_sel1	//ÉèÖĂIO¿Ú
+	hfetch 4,core_gpio_pu0	//½«IO¸´ÓĂÎªUART¹¦ÄÜ
+	set1 7,pdata				//gpio7ÉèÖĂÉÏÀ­µç×è
+	hstore 4,core_gpio_pu0
+
+	hjam 0x01,core_uart_clksel	//Ñ¡ÔñUARTÊ±ÖÓ48M
+	setarg mem_shutter_rx_buf	//ÉèÖĂRing Buffer
+	hstore 2,core_uart_rsaddr	//RX buffer ÆđÊ¼µØÖ·
+	setarg mem_shutter_rx_buf_end
+	hstore 2,core_uart_readdr	//RX buffer½áÊøµØÖ·
+	setarg mem_shutter_tx_buf
+	hstore 2,core_uart_tsaddr	//TX bufferÆđÊ¼µØÖ·
+	setarg mem_shutter_tx_buf_end
+	hstore 2,core_uart_teaddr	//TX buffer½áÊøµØÖ·
+	setarg mem_shutter_rx_buf
+	hstore 2,core_uart_rrptr	//RX buffer¶ÁÖ¸Ơë
+	setarg mem_shutter_tx_buf
+	hstore 2,core_uart_twptr	//TX bufferĐ´Ö¸Ơë
+	hstore 2,core_uart_trptrp 	//TX buffer¶ÁÖ¸Ơë
+
+	setarg uart_baud_115200		//ÉèÖĂ²῭ØÂÊ
+	hstore 2,core_uart_baud
+	
+	hfetch 2,core_clkoff		//½«core_clkoff(0x8050)µÄµÚ15Î»ÖĂÁă,Ê¹ÄÜUARTÊ±ÖÓ
+	set0 CLOCK_OFF_UART,pdata
+	hstore 2,core_clkoff
+	hjam 0x81,core_uart_ctrl //ÉèÖĂ8bits¡¢Î̃Đ£Ñé¡¢Î̃Á÷¿ØÄ£Ê½
+	rtn
+
+p_shutter_uart_tx_prepare:
+	fetch 7,mem_le_rxbuf+9
+	store 7,mem_uart_mouse_data_buff+3
+p_shutter_uart_tx_prepare_next:	
+	jam 0x02,mem_uart_mouse_data_buff
+	jam 0x29,mem_uart_mouse_data_buff+1
+	jam 0x08,mem_uart_mouse_data_buff+2
+	
+	hfetch 2,core_uart_twptr
+	copy pdata,contwu
+	arg 0x0b,loopcnt
+	arg mem_uart_mouse_data_buff,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+	
+p_gpio_set_before_lpm_common:
+	hfetch 4,core_gpio_pu0
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata
+	invert pdata,pdata
+	iand rega,pdata
+	//set0 4,pdata //revc
+	hstore 4,core_gpio_oe0
+	rtn
+
+p_set_freq_tx:
+	storet 1,mem_last_freq
+	add temp,0,rega			// bt 2M Medium Frequency
+	call rf_write_freq
+	setarg param_pll_setup
+	call sleep
+p_txon:	
+	hjam 0x1,rfen_adc
+	hjam 0x3c,rfen_rx
+	hjam 0xe0,rfen_tx
+	hjam 0x12,0x96d
+	nop 10
+	hjam 0x01,rfen_mdm
+	hjam 0x3d,rfen_mdm
+	nop 10
+	hjam 0xb7,rfen_sn
+	nop 10
+	hjam 0x7f, rfen_mdm
+	fetch 1,mem_le_conn_state
+//	beq 0,p_txon_scan
+	beq 0,p_set_tx_power_5db
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,p_set_tx_power_0db
+	bbit1 TX_POWER_3DB,p_set_tx_power_3db	
+	bbit1 TX_POWER_5DB,p_set_tx_power_5db
+	bbit1 TX_POWER_f3DB,p_set_tx_power_f3db	
+	bbit1 TX_POWER_f5DB,p_set_tx_power_f5db
+p_set_tx_power_0db:	
+	hjam 0xf0,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_set_tx_power_3db:
+	hjam 0xdf,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+p_set_tx_power_5db:
+	hjam 0xff,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+p_set_tx_power_f3db:
+	hjam 0xce,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_set_tx_power_f5db:
+	hjam 0xcb,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_txon_scan:
+	hjam 0xc0,0x956
+	hjam 0xd8,0x955
+	rtn
+
+p_le_transmit:
+	call le_prep
+	call p_letx_setfreq
+	call le_transmit0
+	fetch 1,mem_device_option
+	beq dvc_op_module,module_le_transmit
+	rtn
+p_letx_setfreq:
+	branch p_txon,match
+	branch letx_setfreq0
+
+p_shutdown_radio:
+	branch p_shutdown_radio0,is_rx
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4	
+	fetch 1,mem_le_conn_state
+	beq 0,p_shutdowm_radio_scan
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,p_shutdown_radio_0db
+	bbit1 TX_POWER_3DB,p_shutdown_radio_3db
+	bbit1 TX_POWER_5DB,p_shutdown_radio_5db
+	bbit1 TX_POWER_f3DB,p_shutdown_radio_f3db
+	bbit1 TX_POWER_f5DB,p_shutdown_radio_f5db
+p_shutdown_radio_5db:	
+p_shutdown_radio_0db:
+	hjam 0xd0, 0x955
+	hjam 0xe0, 0x956
+p_shutdown_radio0:
+	force 0,radio_ctrl
+	disable is_rx
+	disable is_tx
+	pulse packet_end
+	hjam 0x0,rfen_mdm
+	hjam 0x0,rfen_tx
+	hjam 0x0,rfen_rx
+	hjam 0,rfen_sn
+	hjam 0x70,rfen_msc
+	hjam 0x0,rfen_adc
+	rtn	
+
+p_shutdown_radio_f5db:
+p_shutdown_radio_f3db:
+p_shutdown_radio_3db:
+	hjam 0xd0,0x955
+	hjam 0xc0,0x956
+	branch p_shutdown_radio0
+p_shutdowm_radio_scan:
+	hjam 0xd0, 0x955
+	hjam 0xc0, 0x956
+	rtn
+
+
+p_initialize_radio_cont:
+	fetch 1,mem_lpm_xtalcnt
+	nbranch p_switchdpll_nocal,blank
+	call lpm_cal_xtal_startup
+	nop 30000
+	nop 30000
+	nop 30000
+p_switchdpll_nocal:
+	call switchto_dpllclk
+	hjam clksel_dpll,core_clksel
+	nop 1
+	hjam clksel_xtal,core_clksel
+	hfetch 1,rf_clkpll_frac+2
+	and_into 0xcf,pdata
+	hstore 1,rf_clkpll_frac+2
+	or_into 0x30,pdata
+	hstore 1,rf_clkpll_frac+2
+	rtn	
+
+
+
+/******************************************/
+/***********   ROM Start   ***************/
+/******************************************/
+
+org 0x3000		// start from rom address start
+start:
+	call lpmstate
+
+
+soft_reset:
+	hjam lock_otp,core_misc_ctrl	// disable further read/write of key
+	set0 mark_ext_patch,mark
+	bpatch patch00_0,mem_patch00
+	hfetch 1,0x813b
+	store 1,mem_wakup_from_power_flag //bit2  1:wake from hibnate 0:wake from power
+	call spi_ncs_gpio_init  // 0xff disable spi ncs gpio init
+	clear_stack
+	ncall wait_uarttx,wake	
+	call initialize_radio
+	call iicd_init_12m
+	call init_param
+	call l2cap_init
+	set0 mark_ext_patch,mark
+	bpatch patch00_1,mem_patch00
+	call rfcomm_init
+	call init_lmp
+	call ui_init
+	call app_init
+	ncall load_chip_option,wake
+	set0 mark_ext_patch,mark
+	bpatch patch00_2,mem_patch00
+	call app_lpm_init,wake
+	call publickey_init
+	call lpm_recover_clk,wake
+main_loop:	
+	set0 mark_ext_patch,mark
+	bpatch patch00_3,mem_patch00
+	call sp_calc_sequence
+	call sp_calc_sequence_256
+	call publickey_calc
+	call le_dispatch
+	set0 mark_ext_patch,mark
+	bpatch patch00_4,mem_patch00
+	call idle_dispatch
+	call app_process_idle
+	call inquiry_dispatch
+	call inquiry_scan_dispatch
+	call page_scan_dispatch
+	call connection_dispatch
+	call lpm_dispatch
+	branch main_loop
+
+connection_dispatch:
+	call connection_incontext
+	rtnmark0 mark_context
+	set0 mark_context,mark
+	call context_save
+	branch le_disable
+	
+connection_incontext:
+	set0 mark_ext_patch,mark
+	bpatch patch00_5,mem_patch00
+	call context_search_insniff
+	nbranch connection_nosniff,zero
+	call context_load
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,le_conn_dispatch
+	bbit1 mode_master, master_dispatch
+	branch slave_dispatch
+connection_nosniff:
+	set0 mark_ext_patch,mark
+	bpatch patch00_6,mem_patch00
+	call context_get_next
+	copy loopcnt,null
+	rtn zero
+	call context_load
+	fetch 1,mem_state
+	bbit1 state_inpage,master_page
+	fetch 1,mem_mode
+	bbit1 mode_master, master_dispatch
+	branch slave_dispatch
+
+
+
+/**************************************/
+/**************idle dispatch*********/
+/**************************************/
+	
+idle_dispatch:
+	fetch 1,mem_hci_cmd
+	rtn blank
+	beq hci_cmd_inquiry,idle_inquiry
+	beq hci_cmd_inquiry_cancel,idle_inquiry_cancel
+	beq hci_cmd_remote_name_req,idle_remote_name_req
+	beq hci_cmd_create_conn,idle_create_conn
+	beq hci_cmd_le_create_conn,idle_le_create_conn
+	call context_search_conn_handle
+	rtn zero
+	call context_search_plap
+	rtn zero
+idle_exit:
+	jam 0,mem_hci_cmd
+	rtn
+
+idle_le_create_conn:
+	jam hci_cmd_le_create_conn,mem_cmd_le_create_conn
+	jam 0,mem_hci_cmd
+	rtn
+	
+idle_inquiry:
+	set1 mark_inquiry_on,mark
+	set0 mark_inquiry_trainb,mark
+	jam param_ninquiry,mem_ninqy_index
+	jam 31,mem_nfreq_index_inq
+	branch idle_exit
+
+idle_inquiry_cancel:
+	set0 mark_inquiry_on,mark
+	force 0,stop_watch
+	branch idle_exit
+
+idle_remote_name_req:
+	call context_search_plap
+	rtn zero
+	force LMP_NAME_REQ,temp
+	jam 5,mem_nameres_cnt
+	branch idle_start_page
+
+idle_create_conn:
+	set0 mark_ext_patch,mark
+	bpatch patch00_7,mem_patch00
+idle_create_conn_device:
+	fetch 6,mem_hci_plap
+	branch idle_exit,blank
+	jam RECONNECT_HID,memui_reconnect_mode
+	//jam HS_INIT_CALL,mem_hs_mode //init as master
+	jam CONN_SM_WAIT_FEATURES_RES,mem_conn_sm
+	branch idle_create_conn_cont
+	
+idle_create_conn_cont:
+	force LMP_VERSION_REQ,temp
+idle_start_page:
+	set0 mark_ext_patch,mark
+	bpatch patch01_0,mem_patch01
+	fetch 1,mem_page_mode
+	branch idle_page_mode_r0,blank
+	lshift3 pdata,pdata
+	lshift4 pdata,pdata
+	increase -1,pdata
+idle_page_mode_r0:
+	store 1,mem_npage
+	store 1,mem_npage_index
+	jam 31,mem_nfreq_index_page
+	set0 mark_page_trainb,mark
+	call context_new
+	nbranch idle_page_fail,zero
+	call get_free_amaddr
+	store 1,mem_amaddr
+	storet 1,mem_lmo_opcode2
+	fetch 6,mem_hci_plap
+	store 6,mem_plap
+	set0 mark_ext_patch,mark
+	bpatch patch01_1,mem_patch01
+	call timer_check
+	force 0,pdata
+	compare LMP_NAME_REQ,temp,0xff
+	nsetflag true,state_init_seq,pdata
+	set1 state_inpage,pdata
+	store 1,mem_state
+	jam BT_EVT_RECONN_STARTED,mem_fifo_temp
+	call ui_ipc_send_event
+	force 0,pdata
+	setflag true,smap_name_req,pdata
+	store 1,mem_state_map
+	setarg 0
+	set1 mode_master,pdata
+	store 1,mem_mode
+	enable master
+	call context_save
+	disable master
+	force page_length_timer,queue
+	fetch 2,mem_page_to
+	call timer_init
+	branch idle_exit
+idle_page_fail:
+	set0 mark_ext_patch,mark
+	bpatch patch01_2,mem_patch01
+	fetch 6,mem_hci_plap
+	store 6,mem_plap
+	compare LMP_NAME_REQ,temp,0xff
+	branch idle_name_fail,true
+	branch idle_exit
+idle_name_fail:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+	jam BT_EVT_RECONN_FAILED,mem_fifo_temp
+	call ui_ipc_send_event
+	branch idle_exit
+	
+
+/******************************************/
+/**************  Inquiry  *****************/
+/******************************************/
+
+inquiry_dispatch:
+	rtnmark0 mark_inquiry_on
+	force inquiry_length_timer,queue
+	call timer_check
+	nsetflag blank,mark_inquiry_on,mark
+	nbranch inquiry_start,blank
+	rtn
+	
+
+
+inquiry_start:
+	set0 mark_ext_patch,mark
+	bpatch patch01_3,mem_patch01
+	fetcht 2,mem_inq_window
+	force 4,queue
+	call sniff_check_window
+	rtn user
+	call afh_clear
+	force 0,freq_mode
+inquiry_restart:
+	rtn timeout
+	set0 mark_fhs_already_good,mark
+	set0 mark_fhs_eir,mark
+inquiry_rx_restart:
+	add clkn_bt,1,bt_clk
+	isolate1 mark_inquiry_trainb,mark
+	setflag true,2,freq_mode
+	compare 0x00,bt_clk,0x02      /* see if this is even slot */
+	nbranch inquiry_receive,true
+
+inquiry_transmit:
+	set0 mark_ext_patch,mark
+	bpatch patch01_4,mem_patch01
+	fetch 1,mem_inquiry_transmit
+	increase 1,pdata
+	store 1,mem_inquiry_transmit
+	call fetch_giac
+	call tx_radio_freq
+	call fetch_diac
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	call end_of_packet
+	call inquiry_check_train
+	branch inquiry_restart
+
+inquiry_check_train:
+	set0 mark_ext_patch,mark
+	bpatch patch01_5,mem_patch01
+	fetch 1,mem_nfreq_index_inq
+	increase -1,pdata
+	store 1,mem_nfreq_index_inq
+	rtn positive  /* if it's time to incremnt N */
+	jam 31,mem_nfreq_index_inq
+	fetch 1,mem_ninqy_index
+	increase -1,pdata
+	store 1,mem_ninqy_index
+	rtn positive      /* if it's time to change train */
+	setflip mark_inquiry_trainb,mark
+	jam param_ninquiry,mem_ninqy_index
+	rtn
+
+inquiry_receive:
+	set0 mark_ext_patch,mark
+	bpatch patch01_6,mem_patch01
+	call fetch_giac
+	call rx_radio_freq
+	call fetch_diac
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt
+	branch inquiry_sync,sync   /* try look for id packet again if not found */
+	call inquiry_check_train
+	branch inquiry_rx_restart
+inquiry_sync:
+	set0 mark_ext_patch,mark
+	bpatch patch01_7,mem_patch01
+	call save_rssi
+	call scan_mode_whiten
+	call receive_packet_whitened
+	set0 mark_rxbuf_inuse,mark
+	rtnmark0 mark_fhs_already_good
+inquiry_receive_rtn:
+	set0 mark_ext_patch,mark
+	bpatch patch02_0,mem_patch02
+inquiry_receive_eir_rtn:
+	fetch 1,mem_inquiry_rcv
+	increase 1,pdata
+	store 1,mem_inquiry_rcv
+	rtn
+		
+/******************************************/
+/**************  Master Dispatch  *************/
+/******************************************/
+
+
+
+master_page:
+	set0 mark_ext_patch,mark
+	bpatch patch02_1,mem_patch02
+	enable master
+	enable clknt
+	fetch 2,mem_page_interval
+	branch master_page_no_interval,blank
+	force page_interval_timer,queue
+	call timer_check               
+	nrtn blank
+master_page_no_interval:
+	set0 mark_ext_patch,mark
+	bpatch patch02_2,mem_patch02
+	fetcht 2,mem_page_window
+	force 40,queue
+	call sniff_check_window
+	branch page_exit,user
+	force page_length_timer,queue
+	call timer_check
+	nbranch page_start,blank
+	fetch 1,mem_state_map
+	bbit1 smap_name_req,master_npage_timeout
+	branch master_page_timeout
+master_npage_timeout:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+master_page_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch02_3,mem_patch02
+	jam 0,mem_state
+	call init_lmp_work
+	jam 0,memui_reconnect_mode
+	jam BT_EVT_RECONN_PAGE_TIMEOUT,mem_fifo_temp
+	call ui_ipc_send_event	
+	branch page_exit
+
+page_start:
+	set0 mark_ext_patch,mark
+	bpatch patch02_4,mem_patch02
+	force 0,timeup
+	until clkn_rt,meet
+	fetch 1,mem_page_clk
+	increase -1,pdata
+	ixor clkn_bt,pdata
+	compare 0,pdata,3
+	nbranch page_start,true
+	deposit am_addr
+	store 1,mem_fhs_am_addr
+	force 0,N_tx_slot
+	force 0,freq_mode
+
+page_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch02_5,mem_patch02
+	branch page_exit,timeout
+	call fetch_page_bt_adr
+	arg param_rf_setup, timeup
+	until clkn_rt,meet         /* wait for the start_receiver time against native real clk  */
+page_rx_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch02_6,mem_patch02
+	fetch 4,mem_page_clk    /* deposit clk_estimate */
+	iforce bt_clk
+	increase 1,pdata
+	store 4,mem_page_clk
+	isolate1 mark_page_trainb,mark
+	setflag true,2,freq_mode
+	compare 0x00,bt_clk,0x02      /* see if this is even slot */
+	nbranch page_receive,true
+	fetch 1, mem_page_transmit
+	increase 1,pdata
+	store 1, mem_page_transmit
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	call end_of_packet
+	call page_check_train
+	branch page_restart	
+page_exit:
+	set0 mark_ext_patch,mark
+	bpatch patch02_7,mem_patch02
+	disable master
+	fetch 2,mem_page_interval      
+	rtn blank
+	force page_interval_timer,queue
+	branch timer_init              
+
+page_check_train:
+	set0 mark_ext_patch,mark
+	bpatch patch03_0,mem_patch03
+	fetch 1,mem_nfreq_index_page
+	increase -1,pdata
+	store 1,mem_nfreq_index_page
+	rtn positive
+	jam 31,mem_nfreq_index_page
+	fetch 1,mem_npage_index
+	increase -1,pdata                 /* increment N */
+	store 1,mem_npage_index
+	rtn positive      			/* if it's time to change train */
+	setflip mark_page_trainb,mark             /* change train */
+	fetch 1,mem_npage
+	store 1,mem_npage_index
+	rtn
+	
+page_receive:
+	set0 mark_ext_patch,mark
+	bpatch patch03_1,mem_patch03
+	call rx_radio_freq
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt	/* try id look for id packet again */
+	branch page_sync,sync         /* restart if didn't receive anything */
+	call page_check_train
+	branch page_rx_restart
+page_sync:
+	call end_of_packet
+	fetch 1, mem_page_rcv
+	increase 1,pdata
+	store 1, mem_page_rcv
+	force 0,stop_watch
+	fetch 4,mem_page_clk
+page_send_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch03_2,mem_patch03
+	call rf_setup_time_master_slot
+	call fetch_page_bt_adr
+	increase 1,N_tx_slot
+page_send_fhs_continue:
+	and_into 0x1fd,bt_clk
+	and_into 0x1fc,freq_mode               /* master response = x00, even_train settin must remain the same */
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	force 0,am_addr
+	force type_fhs,type
+	call scan_mode_whiten
+	call transmit_packet_whitened
+page_wait_fhs_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch03_3,mem_patch03
+	call rf_setup_time_slave_slot
+	or_into 0x02,bt_clk
+	and_into 0x1fc,freq_mode               /* master response sequence = x00, even train setting must be preserved */
+	call rx_radio_freq
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt	/* look for that reply */
+	call end_of_packet,sync              /* id reply is enough */
+	branch page_wait_fhs_reply_ok,sync           /* no reply then send fhs again */
+	fetch 1,mem_fhs_wait_counter
+	branch page_restart,blank
+	increase -1,pdata
+	store 1,mem_fhs_wait_counter
+	branch page_send_fhs
+	
+page_wait_fhs_reply_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch03_4,mem_patch03
+	fetch 1, mem_page_rcv_fhs
+	increase 1,pdata
+	store 1, mem_page_rcv_fhs
+	call prepare_newconn
+master_newconn_loop:
+	call master_newconn_once
+	branch newconn_poll_responded,sync
+	call new_conn_timeout
+	nbranch master_newconn_loop,blank
+	branch page_restart
+
+newconn_poll_responded:
+	set0 mark_ext_patch,mark
+	bpatch patch03_5,mem_patch03
+	fetch 1,mem_state
+	set0 state_inpage,pdata
+	store 1,mem_state
+	call newconn_init
+	disable master
+	rtn
+	
+
+master_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch03_6,mem_patch03
+	enable master
+	enable clknt
+	call role_switch_master
+	rtn user
+	call check_bt_disabled
+	call rf_setup_time_master_slot
+	add clkn_bt,1,bt_clk
+	call fetch_self_bt_adr
+	force 0x03,freq_mode
+	call scheduler_tx_l2cap_pkt
+	call prepare_tx
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_native
+	call send_access_word
+	call transmit_packet
+master_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch03_7,mem_patch03
+	call parse_lmp
+	call master_conn_recv_packet
+	nbranch master_notmatch,match
+	call supervision_flush
+	call parse_l2cap
+	fetch 1,mem_master_rcvcnt
+	increase 1,pdata
+	store 1,mem_master_rcvcnt
+master_notmatch:
+	set0 mark_ext_patch,mark
+	bpatch patch04_0,mem_patch04
+	call scheduler_process
+	call check_master_disconnect
+	nrtn master					/* disconnected */
+	call check_attempt
+	nbranch master_attempt,blank
+master_exit:
+	disable master
+	rtn
+
+master_attempt:
+	call prepare_tx
+	call master_conn_send_packet
+	branch master_loop
+
+
+check_master_disconnect:
+	branch check_master_match,match
+	call supervision_update
+	branch master_disconnect,positive
+check_master_match:
+	call check_disconnect_timeout
+	nbranch master_disconnect,user
+	fetch 1,mem_state_map
+	rtnbit0 smap_name_req
+	rtnbit1 smap_name_res
+	fetch 1,mem_op
+	rtnbit1 op_disconn
+	call conn_timer_expired
+	nrtn blank
+	fetch 1,mem_nameres_cnt
+	increase -1,pdata
+	store 1,mem_nameres_cnt
+	nrtn blank
+	branch lmp_disconnect
+
+master_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch04_1,mem_patch04
+	call quit_connection
+	disable master
+	fetch 1,mem_state_map
+	bbit1 smap_name_req,master_name_disconnect
+	rtn
+	
+master_name_disconnect:
+	fetch 1,mem_state_map
+	rtnbit1 smap_name_res
+master_name_error:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	branch memset0
+	
+check_disconnect_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch04_2,mem_patch04
+	enable user
+	fetch 1,mem_op
+	rtnbit0 op_disconn
+	call conn_timer_expired
+	nrtn blank
+disable_usr:
+	disable user
+	rtn
+
+conn_timer_expired:
+	fetch 1,mem_conn_timer
+	increase -1,pdata
+	store 1,mem_conn_timer
+	rtn
+
+linkkey_ready:
+	set0 mark_ext_patch,mark
+	bpatch patch04_3,mem_patch04
+	fetch 1,mem_state
+	bbit1 state_linkkey,linkkey_set
+	fetch 1,mem_pairing_auth
+	branch linkkey_set,blank
+	jam DEFALT_PAIRING_AUTH,mem_pairing_auth
+	jam BT_EVT_LINKKEY_GENERATE,mem_fifo_temp
+	call ui_ipc_send_event
+	branch linkkey_set
+linkkey_set:
+	set0 mark_ext_patch,mark
+	bpatch patch04_4,mem_patch04
+	call context_traverse_linkkey
+	fetch 1,mem_state
+	set1 state_linkkey,pdata
+	store 1,mem_state
+	jam 1,mem_link_key_exists
+	fetch 1,mem_conn_sm
+	bne CONN_SM_PAIRING,linkkey_set_continue
+linkkey_set_continue:
+	rtn
+
+generate_linkkey_continue:
+	jam PAIRING_AUTH,mem_pairing_auth
+clear_linkstate:
+	fetch 1,mem_state
+	set0 state_linkkey,pdata
+	store 1,mem_state
+	rtn
+	
+
+	/* rtn user if switch */
+role_switch_check:
+	set0 mark_ext_patch,mark
+	bpatch patch04_5,mem_patch04
+	disable user
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	fetch 2,mem_tsniff
+	nrtn blank
+	fetch 4,mem_sniff_anchor
+	branch role_switch_clkn,clknt
+	isub clke_bt,pdata
+	branch role_switch_clke
+role_switch_clkn:
+	isub clkn_bt,pdata
+role_switch_clke:
+	sub pdata,4,null
+	nrtn positive
+	fetch 1,mem_state
+	set0 state_insniff,pdata
+	store 1,mem_state
+	enable user
+	rtn
+
+	/* pdata: switch instant, set tsniff=0 for special sniff */	
+role_switch_prepare:
+	copy pdata,temp
+	set0 mark_ext_patch,mark
+	bpatch patch04_6,mem_patch04
+	store 4,mem_sniff_anchor
+role_switch_prepare0:
+	jam SWITCH_FLAG_ACCEPT,mem_switch_flag
+	fetch 1,mem_state
+	set1 state_insniff,pdata
+	store 1,mem_state
+	force 0,pdata
+	store 2,mem_tsniff
+	jam 1,mem_sniff_attempt
+	jam 0x0,mem_sniff_timeout  
+	jam 0x0,mem_current_sniff_timeout  
+	fetch 4,mem_sniff_anchor  
+	copy clkn_bt,temp  
+	isub temp,pdata  
+	rshift2 pdata,pdata  
+	increase  -8,pdata  
+	store 1,mem_current_sniff_attempt  
+	rtn
+
+
+role_switch_master:
+	set0 mark_ext_patch,mark
+	bpatch patch04_7,mem_patch04
+	call role_switch_check
+	nrtn user
+	disable user
+	jam param_newconnto,mem_newconnto_counter
+	set0 mark_fhs_already_good,mark
+roles_waitfhs_loop:
+	call rf_setup_time_master_slot
+	call master_recv_packet
+	bmark1 mark_fhs_already_good,roles_replyto_fhs
+	call new_conn_timeout
+	nbranch roles_waitfhs_loop,blank
+role_switch_fail_master:
+	set0 mark_ext_patch,mark
+	bpatch patch05_0,mem_patch05
+	disable user
+	deposit clkn_bt
+	store 4,mem_next_btclk
+	enable clknt
+	enable master
+	jam BT_EVT_SWITCH_FAIL_MASTER,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+roles_replyto_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch05_1,mem_patch05
+	call rf_setup_time_slave_slot
+	call master_send_packet
+	disable clknt
+	disable master
+	call apply_switch_clke
+	call prepare_newconn
+roles_newconns_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch05_2,mem_patch05
+	call slave_newconn_once
+	branch roles_newconns_responded,match
+	call new_conn_timeout
+	nbranch roles_newconns_loop,blank
+	branch role_switch_fail_master
+roles_newconns_responded:
+	fetch 1,mem_mode
+	set0 mode_master,pdata
+	store 1,mem_mode
+	call supervision_flush
+	call calc_clke_offset
+	enable user
+	jam BT_EVT_SWITCH_SUCCESS_MASTER,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+
+
+context_load:
+	set0 mark_ext_patch,mark
+	bpatch patch05_3,mem_patch05
+	set1 mark_context,mark
+	deposit rega
+	store 2,mem_context_ptr
+	force context_size,loopcnt
+	arg mem_le_state,contw
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	copy rega,contr
+	bbit1 mode_le,memcpy
+	arg mem_state,contw
+	call memcpy
+	disable attempt
+	fetch 1,mem_amaddr
+	iforce am_addr
+	jam 1,mem_current_sniff_attempt
+	branch context_load_master,master
+	jam 1,mem_current_sniff_attempt
+context_load_master:
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	fetch 1,mem_sniff_attempt
+	store 1,mem_current_sniff_attempt
+	fetch 1,mem_sniff_timeout
+	store 1,mem_current_sniff_timeout
+	rtn
+	
+context_save:
+	set0 mark_ext_patch,mark
+	bpatch patch05_4,mem_patch05
+	fetch 2,mem_context_ptr
+	iforce contw
+	force context_size,loopcnt
+	arg mem_le_state,contr
+	branch memcpy,le
+	arg mem_state,contr
+	branch memcpy
+
+	
+
+context_get_next:
+	fetch 1,mem_context_number
+	copy pdata,loopcnt
+	fetcht 1,mem_current_context
+context_get_next_loop:
+	increase 1,temp
+	compare context_num,temp,0xff
+	nbranch context_get_next_cont,true
+	arg 0,temp
+context_get_next_cont:
+	storet 1,mem_current_context
+	mul32 temp,context_size,pdata
+	arg mem_context,rega
+	iadd rega,rega
+	ifetch 1,rega
+	bbit1 state_insniff,context_get_next_sniff
+	rtnbit1 state_inconn
+	rtnbit1 state_inpage
+context_get_next_sniff:
+	loop context_get_next_loop
+	rtn
+	
+context_new:
+	set0 mark_ext_patch,mark
+	bpatch patch05_5,mem_patch05
+	arg context_search_empty,regc
+	call context_search
+	nrtn zero					// all occupied
+	deposit rega
+	store 2,mem_context_ptr
+	force 0,null
+	rtn
+	
+	//return zero if anyone's wack is 1.
+	//return nzero if all wack is 0
+context_check_all_wack:
+	call check_esco_amaddr
+	branch context_check_esco_wack,true
+	fetch 2,mem_context_ptr
+	add pdata,coffset_arq,contw
+	fetch 1,mem_arq
+	istore 1,contw
+	arg context_check_a_wack,regc
+	branch context_search
+
+context_check_esco_wack:
+	fetch 1,mem_arq
+	isolate1 wack,pdata
+	branch context_esco_wack,true
+	force 1,null
+	rtn
+context_esco_wack:
+	force 0,null
+	rtn
+	
+	//rtn nzero if idle(no conn)
+context_check_idle:
+	arg context_check_inconn,regc
+	branch context_search
+	
+context_traverse_linkkey:
+	fetcht 2,mem_context_ptr
+	arg context_traverse_clearkey,regc
+	branch context_search
+	
+	
+	/* return zero if conn handle is found */
+context_search_conn_handle:
+	fetcht 1,mem_hci_conn_handle
+context_search_conn_handle2:
+	arg context_search_handle,regc
+	branch context_search
+	/* return zero if plap is found */
+context_search_plap:
+	set0 mark_ext_patch,mark
+	bpatch patch05_6,mem_patch05
+	fetcht 6,mem_hci_plap
+context_search_plap2:
+	arg context_search_lap,regc
+	branch context_search
+	/* return zero if sniff anchor is meet and rega pointers to context */
+context_search_insniff:
+	arg context_search_sniff,regc
+	branch context_search
+	/* return zero if sniff window is in content with current transaction */
+context_search_sniff_window:
+	arg context_search_window,regc
+context_search:
+	set0 mark_ext_patch,mark
+	bpatch patch05_7,mem_patch05
+	arg mem_context,rega
+	fetch 1,mem_context_number
+	copy pdata,loopcnt
+context_search_loop:
+	ifetch 1,rega
+	copy regc,pc
+context_search_next:
+	increase context_size,rega
+	loop context_search_loop
+	force 1,null
+	rtn
+
+context_search_empty:
+	bbit1 state_inconn,context_search_next
+	bbit1 state_inpage,context_search_next
+	force 0,null
+	rtn
+	
+context_search_lap:
+	bbit1 state_inpage,context_search_lap_cont
+	bbit0 state_inconn,context_search_next
+context_search_lap_cont:
+	add rega,coffset_plap,contr
+	ifetch 6,contr
+	isub temp,null
+	rtn zero
+	branch context_search_next
+
+context_search_handle:
+	bbit0 state_inconn,context_search_next
+	add rega,coffset_conn_handle,contr
+	ifetch 1,contr
+	isub temp,null
+	rtn zero
+	branch context_search_next
+
+context_search_sniff:
+	bbit0 state_insniff,context_search_next
+context_search_sniff_loop:
+	call context_get_anchor
+	call sign_pdata_temp
+	isub temp,pdata
+	increase 1,pdata
+	branch context_search_sniff_miss,positive
+	copy contr,regb
+	store 9,mem_temp
+	fetch 1,mem_le_sc_calc
+	nbranch context_search_sniff_sc,blank
+	fetch 9,mem_temp
+	copy regb,contr
+	increase 5,pdata  
+	branch context_search_meet1
+context_search_sniff_sc:
+	fetch 9,mem_temp
+	copy regb,contr	
+	increase 20,pdata  
+context_search_meet1:
+	nbranch context_search_next,positive
+context_search_meet:
+	copy temp,bt_clk
+	call context_next_anchor
+	force 0,null
+	rtn
+	
+	
+context_search_sniff_miss:
+	iforce regb
+	add rega,coffset_tsniff,contr
+	ifetch 2,contr
+	branch context_search_meet,blank
+	call context_next_anchor
+	branch context_search_sniff_loop
+
+sign_pdata_temp:
+	rshift16 pdata,timeup    
+	rshift8 timeup,timeup    
+	branch sign_pdata_temp_p0,zero    
+	compare 0xf,timeup,0xf    
+	nrtn true    
+	rshift16 temp,timeup    
+	rshift8 timeup,timeup    
+	nrtn zero    
+	set1 28,temp    
+	rtn
+sign_pdata_temp_p0:    
+	rshift16 temp,timeup    
+	rshift8 timeup,timeup    
+	compare 0xf,timeup,0xf    
+	nrtn true    
+	set1 28,pdata    
+	rtn
+
+context_check_inconn:
+	bbit0 state_inconn,context_search_next
+	force 0,null 				// found
+	rtn
+	
+context_check_a_wack:
+	bbit0 state_inconn,context_search_next
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,context_search_next
+	add rega,coffset_arq,contr
+	ifetch 1,contr
+	bbit0 wack,context_search_next
+	force 0,null 				// found
+	rtn
+
+context_get_anchor:
+	add rega,coffset_mode,contr
+	ifetcht 1,contr
+	deposit clkn_bt
+	isolate1 mode_master,temp
+	add rega,coffset_sniff_anchor,contr
+	ifetcht 4,contr
+	rtn true
+	add rega,coffset_clk_offset,contr
+	ifetch 6,contr
+	call calc_clke2
+	deposit clke_bt
+	rtn
+
+context_next_anchor:
+	add rega,coffset_tsniff,contr
+	add rega,coffset_sniff_anchor,contw
+	ifetch 2,contr
+	iadd temp,timeup			/* wrap to 28 bits */
+	deposit timeup
+	istore 4,contw
+	branch le_context_nexthop
+	
+
+context_search_window:
+	bbit0 state_insniff,context_search_next
+	call context_get_anchor
+	iadd stop_watch,pdata
+	iadd stop_watch,pdata
+	iadd queue,pdata
+	isub temp,null
+	nbranch context_search_next,positive
+	force 0,null
+	rtn
+
+context_traverse_clearkey:
+	bbit0 state_inconn,context_search_next
+	deposit temp
+	isub rega,null
+	branch context_search_next,null
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,context_search_next
+	ifetch 1,rega
+	set0 state_linkkey,pdata
+	istore 1,rega
+	branch context_search_next
+
+	
+master_conn_send_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch06_0,mem_patch06
+	call rf_setup_time_master_slot
+master_send_packet:
+	add clkn_bt,1,bt_clk          /* master start to use native clock */
+	call fetch_self_bt_adr
+	force 0x03,freq_mode          /* we are in connection!! */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_native
+	call send_access_word
+	branch transmit_packet
+
+master_conn_recv_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch06_1,mem_patch06
+	call rf_setup_time_slave_slot
+master_recv_packet:
+	add clkn_bt,1,bt_clk          /* master start to use native clock */
+	call fetch_self_bt_adr
+	force 0x03,freq_mode          /* we are in connection!! */
+	call rx_radio_freq
+	call init_rx_packet_flags
+	call prep_crypt
+	call start_rx_native	/* start listening at start_rx time */
+	call start_receiver
+master_rx_conn_finish_packet:
+	call wait_access_clkn_rt	/* master use native clock */
+	nrtn sync
+	call save_rssi
+	branch receive_packet
+	
+	
+
+master_newconn_once:
+	set0 mark_ext_patch,mark
+	bpatch patch06_2,mem_patch06
+	fetch 1,mem_fhs_am_addr
+	iforce am_addr			//review
+	force type_poll,type
+	call master_conn_send_packet
+	branch master_conn_recv_packet
+
+
+
+
+
+
+/******************************************/
+/************* Inquiry Scan ***************/
+/******************************************/
+
+inquiry_scan_dispatch:
+	fetch 1,mem_scan_mode
+	rtnbit0 inq_scan_mode
+	force iscan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetcht 2,mem_iscan_window
+	force 4,queue
+	call sniff_check_window
+	rtn user
+	call inquiry_scan_start
+	force iscan_interval_timer,queue
+	fetch 2,mem_iscan_interval
+	nbranch timer_init,sync
+	random pdata				/* inquiry scan backoff */
+	iand mask3ff,pdata
+	branch timer_init
+	
+
+inquiry_scan_start:
+	set0 mark_ext_patch,mark
+	bpatch patch06_3,mem_patch06
+	jam 0,mem_fhs_am_addr
+	disable clknt
+	disable attempt
+	call afh_clear
+	and clkn_bt,0x1fc,bt_clk      /* freeze the clock, set bit[1] 0, this is version 1.1 */
+	force 0x01,freq_mode     /* slave in inquiry scan, kind of same as inquriy_response, this is version 1.1 */
+	call fetch_giac
+	call rx_radio_freq
+	setflip mark_inquiry_state,mark
+	fetch 1,mem_inquiryscan_waitcnt
+	increase 1,pdata
+	store 1,mem_inquiryscan_waitcnt
+	call fetch_diac
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_forever	/* until there is timeout, or matched (true) */
+	nrtn sync
+	set0 mark_ext_patch,mark
+	bpatch patch06_4,mem_patch06
+	force 0,stop_watch
+	call shutdown_radio	/* must have heard */
+	fetch 1,mem_inquiryscan_rcvcnt
+	increase 1,pdata
+	store 1,mem_inquiryscan_rcvcnt
+	call fetch_giac
+	call rf_setup_time_slave_slot
+	or_into 0x002,bt_clk               /* put clk(1) to 1 */
+	force 0x01,freq_mode               /* slave in inquriy and page, response only */
+	call tx_radio_freq
+	call fetch_diac
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_external
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	call send_access_word
+	force type_fhs,type
+	force 0,am_addr                       /* put 0 into am_addr field for fhs */
+	call scan_mode_whiten
+	call transmit_packet_whitened
+	call send_eir
+	and_into 0x1fd,bt_clk                 /* put clk(1) back to 0 */
+	increase 1,N_tx_slot
+	rtn
+
+send_eir:
+	set0 mark_ext_patch,mark
+	bpatch patch06_5,mem_patch06
+	fetch 1,mem_eir_enable
+	rtn blank
+	arg mem_eir,contw
+	fetch 1,mem_local_name_length
+	copy pdata,loopcnt
+	increase 1,pdata
+	istore 1,contw	
+	copy contw,temp
+	increase 1,pdata
+	store 2,mem_tx_len	
+	copy temp,contw
+	setarg 0x09  //type:name
+	istore 1,contw		
+	arg  mem_local_name,contr
+	call memcpy       //name
+
+	arg mem_all_uuid_128bits,regc
+	arg 4,loopcnt
+	call get_all_uuid
+	arg mem_all_uuid_16bits,regc
+	arg 1,loopcnt
+	call get_all_uuid
+
+	force type_dm3,type		/* DM3 */
+	jam 2,mem_tx_lch
+	setarg mem_eir
+	store 2,mem_txptr
+	call rf_setup_time_slave_slot
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_external
+	call send_access_word
+	call scan_mode_whiten
+	call transmit_packet_whitened
+	rtn
+
+
+get_all_uuid:
+	copy contw,temp
+	copy regc,contr
+	ifetch 1,contr
+	rtn blank
+lshift_loop:
+	lshift pdata,pdata
+	loop lshift_loop
+	copy pdata,rega
+	increase 2,pdata
+	copy pdata,queue
+	fetch 2,mem_tx_len
+	iadd queue,pdata
+	store 2,mem_tx_len
+	copy temp,contw
+	copy rega,pdata
+	increase 1,pdata
+	istore 1,contw
+	copy regc,contr
+	ifetch 1,contr
+	ifetch 1,contr	//fetch type
+	istore 1,contw
+	copy rega,loopcnt
+	branch memcpy  //copy uuid
+	
+/******************************************/
+/******** Slave dispatch ***********/
+/******************************************/
+
+page_scan_dispatch:	
+	fetch 1,mem_scan_mode
+	rtnbit0 page_scan_mode
+	force pscan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetcht 2,mem_pscan_window
+	force 40,queue
+	call sniff_check_window
+	rtn user
+	force 0,am_addr
+	jam param_pagerespto,mem_fhs_wait_counter
+	set0 mark_fhs_already_good,mark
+	call page_scan_start
+	force pscan_interval_timer,queue
+	fetch 2,mem_pscan_interval
+	branch timer_init
+	
+
+page_scan_start:
+	set0 mark_ext_patch,mark
+	bpatch patch06_6,mem_patch06
+	disable clknt
+	call afh_clear
+	fetch 1,mem_pagescan_waitcnt
+	increase 1,pdata
+	store 1,mem_pagescan_waitcnt
+	force 0,N_tx_slot
+	call fetch_self_bt_adr
+	add clkn_bt,1,bt_clk      /* freeze the clock on native clock until scan window is up */
+	force 0x02, freq_mode     /* slave in inquiry and page, not response */
+	set0 mark_ext_patch,mark
+	bpatch patch06_7,mem_patch06
+	call rx_radio_freq
+	call start_receiver	/* wait for that id packet from master */
+	call wait_access_forever
+	nrtn sync                          /* pscan window timeout occured, back to dispatch */
+	call shutdown_radio	/* got the id packet */
+	fetch 1,mem_pagescan_rcvcnt
+	increase 1,pdata
+	store 1,mem_pagescan_rcvcnt
+	force 0,stop_watch
+	call rf_setup_time_slave_slot
+	or_into 0x002,bt_clk               /* put clk(1) to 1 */
+	force 0x01,freq_mode               /* slave in inquriy and page, response only */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	call send_access_word
+	call end_of_packet
+	force 0,am_addr
+	arg param_rf_setup, timeup
+	until clke_rt,meet
+	or_into 0x03,clke_bt
+	and_into 0x1fd,bt_clk
+page_scan_wait_fhs_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch07_0,mem_patch07
+	increase 1,N_tx_slot
+	call rx_radio_freq
+	call start_receiver
+	call wait_access_mhalfbnd
+	nbranch page_scan_wait_fhs_again,sync	/* go back if didn't find access code */
+	call scan_mode_whiten
+	call receive_packet_whitened
+	bmark1 mark_fhs_already_good,page_scan_reply_to_fhs
+page_scan_wait_fhs_again:
+	set0 mark_ext_patch,mark
+	bpatch patch07_1,mem_patch07
+	fetch 1,mem_fhs_wait_counter
+	rtn blank
+	increase -1,pdata
+	store 1,mem_fhs_wait_counter
+	call rf_setup_time_master_slot	/* set up expiration time */
+	branch page_scan_wait_fhs_restart
+
+
+page_scan_reply_to_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch07_2,mem_patch07
+	set0 1,clke_bt
+	set1 0,clke_bt
+	fetch 1,mem_pagescan_rcvfhscnt
+	increase 1,pdata
+	store 1,mem_pagescan_rcvfhscnt
+	call rf_setup_time_slave_slot
+	or_into 0x02,bt_clk
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	call send_access_word
+	call end_of_packet
+slave_apply_clke_bt:
+	compare 0x03,clke_bt,0x03
+	branch slave_apply_clke_bt_now,true
+	until null,mhalfbnd
+	branch slave_apply_clke_bt
+slave_apply_clke_bt_now:
+	fetch 4,mem_clke_bt
+	or_into 0x03,pdata
+	icopy clke_bt
+
+start_slave_connection:
+	set0 mark_ext_patch,mark
+	bpatch patch07_3,mem_patch07
+	fetch 6,extm_lap
+	store 6,mem_plap
+	call prepare_newconn
+slave_newconn_loop:
+	call slave_newconn_once
+	branch sconn_successful,match     /* we were talked to */
+	call new_conn_timeout
+	nbranch slave_newconn_loop,blank
+	rtn
+
+	
+sconn_successful:
+	set0 mark_ext_patch,mark
+	bpatch patch07_4,mem_patch07
+	call newconn_init
+	call context_new
+	nrtn zero
+	jam 0,mem_mode
+	call calc_clke_offset
+	branch context_save
+
+
+slave_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch07_5,mem_patch07
+	call calc_clke
+	call role_switch_slave
+	rtn user
+slave_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch07_6,mem_patch07
+	call check_bt_disabled
+	call scheduler_process
+	call slave_conn_recv_packet	/* go listen for a packet */
+	nbranch slave_notmatch,match
+	call supervision_flush
+	call scheduler_tx_l2cap_pkt
+	call prepare_tx
+	call slave_conn_send_packet
+	call parse_l2cap
+	call parse_lmp
+	fetch 1,mem_slave_rcvcnt
+	increase 1,pdata
+	store 1,mem_slave_rcvcnt
+	call calc_clke_offset
+slave_notmatch:
+	set0 mark_ext_patch,mark
+	bpatch patch07_7,mem_patch07
+	call lpm_set_mult
+	call supervision_update
+	branch slave_disconnect,positive
+	call check_disconnect_timeout
+	nbranch slave_disconnect,user
+	call check_attempt
+	nbranch slave_loop,blank
+	rtn
+
+slave_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch08_0,mem_patch08
+	jam 0,mem_tester_emulate
+	jam 0,mem_debug_config
+	call quit_connection
+	set0 mark_testmode,mark
+	call test_enable_white
+	fetch 1,mem_state
+	rtn
+
+
+role_switch_slave:
+	set0 mark_ext_patch,mark
+	bpatch patch08_1,mem_patch08
+	call role_switch_check
+	nrtn user
+	copy am_addr,temp
+	call get_free_amaddr
+	store 1,mem_fhs_am_addr
+	copy temp,am_addr
+	jam param_newconnto,mem_newconnto_counter
+roles_sendfhs_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch08_2,mem_patch08
+	call rf_setup_time_master_slot
+	force type_fhs,type
+	call slave_send_access
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	call transmit_packet
+	call rf_setup_time_slave_slot
+	enable user3
+	call slave_receive_access
+	branch roles_got_fhs_reply,sync
+	call shutdown_radio
+	call new_conn_timeout
+	nbranch roles_sendfhs_loop,blank
+	rtnmark0 mark_accept_switch
+	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	rtn
+roles_got_fhs_reply:
+	enable clknt
+	call prepare_newconn
+	call afh_clear
+roles_newconn_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch08_3,mem_patch08
+	call master_newconn_once
+	branch roles_newconn_responded,sync
+	call new_conn_timeout
+	nbranch roles_newconn_loop,blank
+	disable clknt
+	deposit clke_bt
+	store 4,mem_next_btclk
+	rtn
+roles_newconn_responded:
+	enable master
+	bmark0 mark_accept_switch,roles_newconn_nolmp
+	set0 mark_accept_switch,mark
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_HOST_CONNECTION_REQ,mem_lmi_opcode2
+	call tid_set_reply
+roles_newconn_nolmp:
+	deposit am_addr
+	store 1,mem_amaddr
+	force 0,pdata
+	store 6,mem_clk_offset
+	fetch 1,mem_mode
+	set1 mode_master,pdata
+	store 1,mem_mode
+	call supervision_flush
+	disable master
+	enable user
+	rtn
+
+	
+
+init_rx_packet_flags:
+	set0 mark_ext_patch,mark
+	bpatch patch08_4,mem_patch08
+	disable match
+	set0 mark_loopback,mark
+	set0 mark_am_addr_broadcast,mark          /* initialize slave flags */
+	set0 mark_longpacket,mark
+	set0 mark_old_packet,mark
+	fetch 1,mem_arq    /* mem_arq + am_addr */
+	set0 arqnx,pdata
+	set1 flowx,pdata
+	store 1,mem_arq
+	rtn
+
+prepare_newconn:
+	set0 mark_ext_patch,mark
+	bpatch patch08_5,mem_patch08
+	jam param_newconnto,mem_newconnto_counter
+	jam param_newconn_arq,mem_arq
+	fetch 2,mem_rx_window_init
+	store 2,mem_rx_window
+	deposit clkn_bt
+	store 4,mem_next_btclk
+	rtn clknt
+	deposit clke_bt
+	store 4,mem_next_btclk
+	rtn
+
+newconn_init:
+	set0 mark_ext_patch,mark
+	bpatch patch08_6,mem_patch08
+	call init_lmp_reinit
+	call new_conn_handle
+	store 1,mem_conn_handle
+	setarg 0
+	store 2,mem_l2cap_rxbuff1_len
+	setarg param_supervision_to
+	store 2,mem_supervision_to
+	fetch 1,mem_state
+	set1 state_inconn,pdata
+	store 1,mem_state
+	jam 0,mem_op
+	jam 0,mem_state_map
+	jam 0,mem_lpm_current_mult
+	branch supervision_flush
+	
+
+clear_linkkey:
+	set0 mark_ext_patch,mark
+	bpatch patch08_7,mem_patch08
+	force 0,pdata
+	store 8,mem_link_key
+	istore 8,contw
+	call clear_linkstate
+	branch context_traverse_linkkey
+	
+new_conn_timeout:
+	fetch 1,mem_newconnto_counter
+	increase -1,pdata
+	store 1,mem_newconnto_counter
+	rtn
+
+new_conn_handle:
+	fetch 1,mem_handle_num
+	increase 1,pdata
+	store 1,mem_handle_num
+	rtn
+
+
+quit_connection:
+	set0 mark_ext_patch,mark
+	bpatch patch09_0,mem_patch09
+	fetch 1,mem_hci_cmd
+	beq hci_cmd_remote_name_req,quit_connection_name
+	fetch 1,mem_lmp_to_send
+	bne LMP_NAME_REQ,quit_connection_cont
+quit_connection_name:
+	call cmd_check_plap
+	nbranch quit_connection_cont,zero
+	call master_name_error
+	jam 0,mem_hci_cmd
+quit_connection_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch09_1,mem_patch09
+	call app_disconn_reason_collect_bt
+	call sniff_exit
+	jam BT_EVT_BB_DISCONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	call init_lmp_work
+	call l2cap_init_work
+	call sp_initialize
+	fetch 1,mem_state
+	set0 state_inconn
+	store 1,mem_state
+	jam 0,memui_reconnect_mode
+
+	fetch 1,mem_state_map
+	compare 0x0,pdata,0xc0
+	branch quit_connection_not_clear_mark,true
+	set0 mark_rxbuf_inuse,mark
+quit_connection_not_clear_mark:
+	fetch 1,mem_arq
+	bbit0 wack,quit_connection_not_clear_tx
+quit_connection_not_clear_tx:
+	fetch 1,mem_op
+	rtnbit0 op_txl2cap
+	set0 mark_tx_l2cap,mark
+	rtn
+
+slave_newconn_once:
+	set0 mark_ext_patch,mark
+	bpatch patch09_2,mem_patch09
+	fetch 1,extm_newconn_am_addr
+	rtn blank     
+	icopy am_addr
+	call slave_conn_recv_packet
+	nrtn match
+	force type_null,type
+	call slave_conn_send_packet
+	deposit am_addr
+	store 1,mem_amaddr                 /* now the new am_addr is official */
+	force 0,pdata
+	store 1,extm_newconn_am_addr
+	rtn
+
+
+/******************************************/
+/********  Time consuming task  ***********/
+/******************************************/
+prepare_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch09_3,mem_patch09
+	fetch 1,mem_state
+	bbit0 state_insco,prepare_tx_not_sco
+	force type_hv3,type
+	bmark0 mark_esco,prepare_tx_not_esco
+	call check_esco_amaddr
+	nbranch prepare_tx_not_sco,true
+	branch prepare_tx_not_sco,attempt	
+	call set_wait_ack					/* send esco only at the first attempt */
+	setarg 2		/* esco only has 1 retry */
+	store 2,mem_retransmission_cnt
+	rtn
+prepare_tx_not_esco:
+	nrtn attempt						/* send sco only at the first attempt */
+prepare_tx_not_sco:
+	set0 mark_ext_patch,mark
+	bpatch patch09_4,mem_patch09
+	call context_check_all_wack			 //abandon mark_retransmit, use context_check_all_wack instead.
+	nbranch prepare_tx_no_retransmit,zero
+	fetch 1,mem_arq
+	bbit0 wack,prepare_tx_pollnull		/* other wack, tx buffer in use, but not me */
+prepare_tx_retransmit:
+	bmark1 mark_loopback,prepare_tx_loopback
+	fetch 1,mem_debug_config
+	bbit1 debug_tx_pattern,prepare_tx_txpat
+	fetch 2,mem_retransmission_cnt
+	increase -1,pdata
+	store 2,mem_retransmission_cnt
+	branch prepare_tx_nomore_retransmit,blank
+	fetch 1,mem_last_type
+	iforce type
+	rtn
+
+prepare_tx_nomore_retransmit:
+	set0 mark_ext_patch,mark
+	bpatch patch09_5,mem_patch09
+	call clear_got_tx
+prepare_tx_no_retransmit:
+	call check_esco_amaddr
+	branch prepare_tx_pollnull,true
+	call send_lmp
+	branch prepare_tx_sendlmp,user
+	fetch 1,mem_op
+	bbit1 op_txl2cap,prepare_tx_sendl2cap
+	bmark1 mark_loopback,prepare_tx_loopback
+	fetch 1,mem_debug_config
+	bbit1 debug_tx_pattern,prepare_tx_txpat
+prepare_tx_pollnull:
+	force type_poll,type				/* POLL for master */
+	rtn master
+	force type_null,type				/* default is NULL */
+	rtn
+prepare_tx_loopback:
+	set0 mark_ext_patch,mark
+	bpatch patch09_6,mem_patch09
+	fetch 1,mem_rx_type
+	iforce type
+	rtnne 1
+	force type_null,type
+	rtn
+prepare_tx_txpat:
+	fetch 1,test_mode_packet_type
+	and pdata,0xf,type
+	set1 mark_loopback,mark
+	rtn
+prepare_tx_sendlmp:
+	force type_lmp,type
+	branch set_wait_ack
+prepare_tx_sendl2cap:
+	call tx_l2cap_type
+
+set_wait_ack:
+	set0 mark_ext_patch,mark
+	bpatch patch09_7,mem_patch09
+	fetcht 1,mem_arq
+	set1 wack,temp
+	storet 1,mem_arq
+	deposit type
+	store 1,mem_last_type
+	setarg 0xffff
+	store 2,mem_retransmission_cnt
+	rtn
+
+tx_l2cap_type:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_0,mem_patch0a
+	fetch 1,mem_state_map
+	isolate1 smap_edr,pdata
+	fetch 2,mem_tx_len
+	branch tx_l2cap_type_edr,true
+	force type_dm1,type		/* DM1 */
+	sub pdata,17,null			
+	rtn positive
+	force type_dh1,type		/* DH1 */
+	sub pdata,27,null				
+	rtn positive
+	force type_dm3,type		/* DM3 */
+	sub pdata,121,null
+	rtn positive
+	force type_dh3,type		/* DH3 */
+	sub pdata,183,null
+	rtn positive	
+	force type_dm5,type		/* DM5 */
+	sub pdata,224,null
+	rtn positive
+	force type_dh5,type		/* DH5 */
+	rtn
+tx_l2cap_type_edr:
+	force type_dm1,type
+	sub pdata,17,null
+	rtn positive
+	force type_dh1,type		/*2-DH1*/
+	sub pdata,54,null
+	rtn positive
+	force type_dm3,type		/*2-DH3*/
+	arg 367,temp
+	isub temp,null
+	nrtn positive
+	force type_dm5,type		/*2-DH5*/
+	arg 679,temp
+	isub temp,null
+	nrtn positive
+	force type_dh5,type		/*3-DH5*/
+	rtn
+
+
+/******************************************/
+/***********  Receive Packet  *************/
+/******************************************/
+
+
+
+slave_receive_master_slot:
+	fetch 1,mem_state
+	bbit0 state_insniff,slave_receive_notsniff
+	fetch 2,mem_tsniff
+	branch slave_receive_notsniff,blank		/* role switch */
+	nbranch slave_receive_sniff,attempt
+slave_receive_notsniff:
+	call rf_setup_time_master_slot
+slave_receive_access:
+	add clke_bt,1,bt_clk
+slave_receive_sniff:
+	enable swfine
+	fetch 2,mem_rx_window
+	rshift pdata,pdata
+	arg param_pll_setup,temp
+	iadd temp,pdata
+	call ahead_window
+	call fetch_extm_bt_adr
+	force 0x03,freq_mode          /* connection hop */
+	call rx_radio_freq
+	call init_rx_packet_flags
+	call prep_crypt
+	set0 mark_ext_patch,mark
+	bpatch patch0a_1,mem_patch0a
+	fetch 2,mem_rx_window
+	rshift pdata,pdata
+	call ahead_window
+	call start_receiver
+	enable decode_fec0
+	fetch 2,mem_rx_window
+	arg param_clke_cal,temp
+	iadd temp,stop_watch
+	correlate null,timeout
+	copy clke,temp
+	storet 6,mem_sync_clke
+	disable decode_fec0
+	nrtn sync
+	arg param_clke_cal,clke_rt
+	copy bt_clk,clke_bt
+	branch lpm_adjust_clk,wake
+	rtn
+	
+
+slave_conn_recv_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_2,mem_patch0a
+	call slave_receive_master_slot
+	nbranch shutdown_radio,sync
+	call save_rssi
+	bmark0 mark_testmode,receive_packet
+	fetch 2,mem_tst_pktcnt_sync
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_sync
+receive_packet:
+	rshift bt_clk,temp
+	or temp,0x40,white_init
+receive_packet_whitened:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_3,mem_patch0a
+	enable enable_white
+	enable enable_hec
+	enable decode_fec1
+	parse demod,bucket,3  /* get am_addr */
+	rshift8 pwindow,pdata
+	store 1,mem_temp_am_addr
+	parse demod,bucket,4  /* get type */
+	inject bucket,7       /* align up to pwindow */
+	copy pwindow,pdata
+	store 1,mem_rx_type
+	parse demod,bucket,3  /* get arq */
+	rshift8 pwindow,pdata
+	store 1,mem_temp_arq
+	fetch 1,mem_rx_type
+	sub pdata,3,null
+	branch receive_packet_noedr,positive
+	beq 7,receive_packet_noedr		/* esco packet */
+	fetch 1,mem_state_map
+	isolate1 smap_edr,pdata
+	setflag true,PSK,radio_ctrl
+receive_packet_noedr:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_4,mem_patch0a
+	parse demod,bucket,8   /* cycle thru hec */
+	disable decode_fec1
+	disable enable_hec   /* at this moment, 1 seqn + 8 hec is in shift */
+	branch error_header,crc_failed  /* if hec error, nothing is valid */
+	bmark0 mark_testmode,receive_packet_amchk
+	fetch 2,mem_tst_pktcnt_hec
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_hec
+receive_packet_amchk:	
+	set0 mark_ext_patch,mark
+	bpatch patch0a_5,mem_patch0a
+	fetch 1,mem_temp_am_addr
+	compare 0,pdata,0x07           /* check for broadcast */
+	setflag true,mark_am_addr_broadcast,mark   /* received a broadcast message, can fire ar_addr if during unpark_req */
+	branch am_addr_ok,true
+	icompare 0x07,am_addr
+	branch am_addr_match,true
+	bmark0 mark_esco,end_of_packet
+	fetcht 1,mem_saved_amaddr
+	icompare 0x7,temp
+	nbranch end_of_packet,true
+	fetch 1,mem_arq    /* mem_arq + am_addr */
+	set0 arqnx,pdata
+	set1 flowx,pdata
+	store 1,mem_arq
+am_addr_match:
+	enable match
+am_addr_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_6,mem_patch0a
+	fetch 1,mem_rx_type
+	icopy type
+	bmark1 mark_am_addr_broadcast,arqn_bypass        /* arqn doesn't make sense */
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	set0 flow,pdata
+	isolate1 flow,temp
+	setflag true,flow,pdata
+	isolate1 arqn,temp
+	setflag true,arqn,pdata
+	store 1,mem_arq
+	isolate0 arqn,temp
+	branch arqn_bypass,true
+	call clear_got_tx
+arqn_bypass:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_7,mem_patch0a
+	arg 0,temp
+	call reserve_slot
+	and type,0xf,pdata
+	beq type_poll,process_poll
+	beq type_null,end_of_packet	/* null */
+	beq type_fhs,process_fhs
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	icompare 0x04,temp    /* bit 2 is seqn */
+	nbranch rx_type_dispatch,true   /* different then it's new */
+	bmark0 mark_am_addr_broadcast,failed_seqn         /* seqn failed, and not broadcast */
+	bbit0 bcast1,rx_type_dispatch           /* first broadcast never fail seqn */
+failed_seqn:
+	set1 mark_old_packet,mark
+rx_type_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_0,mem_patch0b
+	deposit type
+	beq type_dm1, process_dm1
+	beq type_dh1, process_dh1
+	beq type_hv3, process_hev
+	beq type_3dh1, process_3dh1
+	arg 4,temp
+	call reserve_slot
+	beq type_dm3, process_dm3
+	beq type_dh3, process_dh3
+	arg 8,temp
+	call reserve_slot
+	beq type_dm5, process_dm5
+	beq type_dh5, process_dh5
+	rtn
+
+
+process_hev:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_1,mem_patch0b
+	enable decode_fec0
+	enable enable_crc
+	enable encrypt
+	arg mem_sco_ibuf,contw
+	force 30,loopcnt
+process_hev_loop:	
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop process_hev_loop
+	bmark0 mark_esco,end_of_packet
+	parse demod,bucket,16  /* cycle through the crc */
+	nsetflag crc_failed,mark_esco_rxok,mark
+	branch error_payload,crc_failed
+	branch ack_payload
+
+
+process_poll:
+	branch end_of_packet
+
+process_dm3:
+process_dm5:
+	set1 mark_longpacket,mark
+process_dm1:
+	enable decode_fec2
+	branch process_dmh
+	
+process_dh3:
+process_dh5:
+	set1 mark_longpacket,mark
+process_3dh1:
+	set1 PSK3M,radio_ctrl
+process_dh1:
+	enable decode_fec0
+process_dmh:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_2,mem_patch0b
+	bmark1 mark_rxbuf_inuse,end_of_packet			/* buffer in use, nack */
+	isolate0 PSK,radio_ctrl
+	branch process_dmh_noedr,true
+	disable enable_white
+	enable decode_fec0
+	disable decode_fec2
+	add clkn_bt,2,timeup
+	correlate clkn_bt,meet
+	nbranch error_payload,sync
+	set1 mark_longpacket,mark
+	enable enable_white
+process_dmh_noedr:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_3,mem_patch0b
+	enable encrypt
+	enable enable_crc
+	parse demod,bucket,3  /* parse in lch+l2cap flow */
+	rshift8 pwindow,pdata
+	store 1,mem_lch_code		/* for loopback */
+	parse demod,bucket,5  /* parse in 5 bit packetlength */
+	bmark1 mark_longpacket,process_dmh_long
+	rshift3 pwindow,loopcnt
+	rshift3 loopcnt,loopcnt
+	branch process_dmh_common
+process_dmh_long:
+	parse demod,bucket,5		/* multi slot packet length of dh3 dh5 dm3 dm5 */
+	rshift pwindow,loopcnt
+	parse demod,bucket,3  /* undefined+bit 9 of length */
+process_dmh_common:	
+	set0 mark_ext_patch,mark
+	bpatch patch0b_4,mem_patch0b
+	deposit loopcnt
+	store 2,mem_len
+	branch process_dmh_data_end,blank
+	isub mask3ff,null
+	branch error_payload,positive	/* packet too large, discard */
+	set0 mark_ext_patch,mark
+	bpatch patch0b_5,mem_patch0b
+	set0 mark_fhs_eir,mark
+	fetch 1,mem_lch_code
+	and_into 0x03,pdata
+	arg mem_rxbuf,contw //lmp_data or test packet
+	beq LLID_LMP,process_lmp
+	bmark1 mark_testmode,process_dmh_data
+	//non-HCI mode
+	fetch 1,mem_lch_code
+	and_into 0x03,pdata
+	beq LLID_L2CAP_START,process_dmh_data_l2cap_start_pkt
+	beq LLID_L2CAP_CONT,process_dmh_data_l2cap_continue_pkt
+	branch error_payload
+
+process_lmp:
+	fetch 2,mem_len
+	sub pdata,0x70,null		//lmp buffer size
+	nbranch error_payload,positive
+	bmark1 mark_old_packet,ack_payload
+	branch process_dmh_data
+
+	
+process_dmh_data_l2cap_start_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_6,mem_patch0b
+	bmark1 mark_old_packet,ack_payload
+	fetch 2,mem_len
+	arg 0x2e0,temp //l2cap buffer size
+	isub temp,null
+	branch error_payload,positive
+	fetch 1,mem_l2cap_rxbuff_inuse
+	bbit0 L2CAP_INUSE_BUFF1,process_dmh_data_into_buff1
+	bbit0 L2CAP_INUSE_BUFF2,process_dmh_data_into_buff2
+	branch end_of_packet
+process_dmh_data_into_buff1:
+	jam 1,mem_l2cap_rxbuff_new //new data in buff 1
+	fetch 2,mem_l2cap_rxbuff1_len
+	bne 0,end_of_packet			//baseband head error
+	arg mem_l2cap_rxbuff1,contw
+	branch process_dmh_data
+process_dmh_data_into_buff2:
+	jam 2,mem_l2cap_rxbuff_new //new data in buff 2
+	fetch 2,mem_l2cap_rxbuff2_len
+	bne 0,end_of_packet
+	arg mem_l2cap_rxbuff2,contw
+	branch process_dmh_data
+	
+process_dmh_data_l2cap_continue_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_7,mem_patch0b
+	bmark1 mark_old_packet,ack_payload
+	fetch 2,mem_len
+	arg 0x2e0,temp //l2cap buffer size
+	isub temp,null
+	branch error_payload,positive
+	fetch 1,mem_l2cap_rxbuff_new
+	beq 1,process_dmh_data_l2cap_continue_pkt1
+	beq 2,process_dmh_data_l2cap_continue_pkt2
+	branch end_of_packet
+process_dmh_data_l2cap_continue_pkt1:
+	arg mem_l2cap_rxbuff1,contw
+	fetch 2,mem_l2cap_rxbuff1_len
+	iadd contw,contw
+	branch process_dmh_data
+process_dmh_data_l2cap_continue_pkt2:
+	arg mem_l2cap_rxbuff2,contw
+	fetch 2,mem_l2cap_rxbuff2_len
+	iadd contw,contw
+process_dmh_data:	
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop process_dmh_data
+process_dmh_data_end:	
+	set0 mark_ext_patch,mark
+	bpatch patch0c_0,mem_patch0c
+	parse demod,bucket,16  /* cycle through the crc */
+	branch error_payload_crc,crc_failed
+	fetch 1,mem_l2cap_flow_ctrl_flag
+	beq L2CAP_FLOW_CTRL_ENABLE,end_of_packet
+	bmark1 mark_testmode,process_dmh_cont
+	bmark1 mark_old_packet,redundant_payload
+	fetch 1,mem_lch_code
+	compare 3,pdata,3
+	branch process_dmh_cont,true
+	fetch 2,mem_len
+	branch process_dmh_cont,blank
+	set0 mark_ext_patch,mark
+	bpatch patch0c_1,mem_patch0c
+	fetch 1,mem_l2cap_rxbuff_new
+	beq 1,process_l2cap_pass_crc_buff1
+	beq 2,process_l2cap_pass_crc_buff2
+	branch assert
+process_l2cap_pass_crc_buff1:
+	fetch 2,mem_l2cap_rxbuff1_len
+	fetcht 2,mem_len
+	iadd temp,pdata
+	store 2,mem_l2cap_rxbuff1_len
+	beq 0,assert
+	fetcht 2,mem_l2cap_rxbuff1// l2cap payload length
+	increase 4,temp
+	isub temp,null
+	call l2cap_buff1_inuse,zero //l2cap pkts not ended
+	branch process_dmh_cont
+process_l2cap_pass_crc_buff2:
+	fetch 2,mem_l2cap_rxbuff2_len
+	fetcht 2,mem_len
+	iadd temp,pdata
+	store 2,mem_l2cap_rxbuff2_len
+	beq 0,assert
+	fetcht 2,mem_l2cap_rxbuff2// l2cap payload length 
+	add temp,4,temp
+	isub temp,null
+	call l2cap_buff2_inuse,zero //l2cap pkts not ended
+	branch process_dmh_cont
+process_dmh_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_2,mem_patch0c
+	fetcht 1,mem_state_map
+	fetch 1,mem_lch_code
+	compare 3,pdata,0x03
+	setflag true,smap_rxlmp,temp
+	nsetflag true,smap_rxl2cap,temp
+	storet 1,mem_state_map
+	nbranch process_dmh_cont_rxbuf_not_use,true
+	set1 mark_rxbuf_inuse,mark
+process_dmh_cont_rxbuf_not_use:
+	bmark0 mark_testmode,ack_payload
+	isolate1 smap_rxlmp,temp
+	branch ack_payload,true
+	fetch 2,mem_tst_pktcnt_crc
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_crc
+	set1 mark_loopback,mark
+	set0 smap_rxl2cap,temp
+	set0 mark_rxbuf_inuse,mark
+	storet 1,mem_state_map
+ack_payload:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_3,mem_patch0c
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	set1 arqnx,pdata
+	isolate1 seqn,temp            /* if accept, seqn always copies from the header */
+	setflag true,seqn,pdata
+	isolate1 mark_am_addr_broadcast,mark
+	setflag true,bcast1,pdata
+	store 1,mem_arq
+	fetch 2,mem_len
+	nbranch end_of_packet,blank
+	fetch 1,mem_state_map
+	set0 smap_rxl2cap,pdata//better to do this in l2cap_flow_ctrl_stop
+	store 1,mem_state_map
+	fetch 1,mem_lch_code
+	compare 0x01,pdata,0x07
+	//call l2cap_flow_ctrl_stop,true
+	branch end_of_packet
+	
+error_header:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_4,mem_patch0c
+	disable match
+	fetch 2,mem_rx_hec_err
+	increase 1,pdata
+	store 2,mem_rx_hec_err
+	branch end_of_packet
+error_payload_crc:
+	fetch 2,mem_rx_crc_err
+	increase 1,pdata
+	store 2,mem_rx_crc_err
+	call discard_pkt
+	bmark0 mark_testmode,error_payload
+	set1 mark_loopback,mark
+error_payload:
+	branch end_of_packet
+	
+discard_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_5,mem_patch0c
+	fetch 1,mem_lch_code
+	compare 3,pdata,0x03
+	nbranch discard_pkt_l2cap,true
+discard_pkt_lmp:	
+	fetcht 1,mem_state_map
+	set0 smap_rxlmp,temp
+	storet 1,mem_state_map
+	rtn
+discard_pkt_l2cap:
+//	isolate1 mark_testmode,mark
+//	setflag true,mark_loopback,mark
+	fetcht 1,mem_state_map
+	set0 smap_rxl2cap,temp
+	storet 1,mem_state_map
+	branch  h4_send_acl_trigger_clear
+
+redundant_payload:
+	fetch 1,mem_arq
+	set1 arqnx,pdata
+	store 1,mem_arq
+end_of_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_6,mem_patch0c
+	disable encode_fec0
+	disable encode_fec2
+	disable decode_fec0
+	disable decode_fec2
+	disable enable_crc
+	disable encrypt
+	disable enable_white
+	branch shutdown_radio,is_rx
+	until null,tx_clear
+	nop 100          /* flush out the last bit */
+	branch shutdown_radio
+	
+process_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_7,mem_patch0c
+	enable enable_crc
+	enable decode_fec2
+	parse demod,bucket,72
+	isolate1 58,pdata
+	setflag true,mark_fhs_eir,mark
+	copy bt_adr,temp             /* save current address to aside */
+	ialigned bt_adr            /* send it to access gen */
+	ialigned fhs0			/* get fhs_misc */
+	pulse recalc                /* calc the lap just received from the other guy */
+	setsect 2,0xfffff             /* preset ms of shift reg as big mask */
+	setsect 3,0x0ffff             /* preset ms of shift reg as big mask */
+	nop 32                       /* 30 cycles after recalc */
+	iverify fhs_parity             /* check fhs_parity against ls 34 bits at shift reg, with msb 36 bits as mask */
+	deposit lap
+	store 3,extm_lap
+	deposit uap
+	store 1,extm_uap
+	copy temp,bt_adr             /* put the address back */
+	branch fhs_parity_ok,true     /* fhs parity failed */
+	branch error_payload
+fhs_parity_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_0,mem_patch0d
+	parse demod,bucket,72
+	ialigned fhs1                   /* give host the information on class and fhs_misc */
+	ialigned am_addr                /* store the am_addr the master assigned us */
+	ialigned nap
+	ialigned regb                   /* store external clock in regb according to clock format */
+	force 0,pdata
+	parse demod,bucket,16  /* cycle through the crc */
+	branch error_payload,crc_failed
+	setarg 0x0ffffffc
+	iand regb,pdata
+	store 4,mem_clke_bt
+	deposit fhs_class
+	store 3,extm_class
+	deposit fhs_misc
+	store 1,extm_fhs_misc
+	deposit am_addr
+	store 1,extm_newconn_am_addr
+	deposit nap
+	store 2,extm_nap
+	deposit bt_clk
+	inject rxf,32
+	compare type_fhs,type,0x0f         /* see if this was fhs packet */
+	setflag true,mark_fhs_already_good,mark
+	branch end_of_packet
+
+clear_got_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_1,mem_patch0d
+	fetch 1,mem_arq
+	rtnbit0 wack
+	set0 wack,pdata
+	setflip seqnx,pdata
+	store 1,mem_arq
+	fetch 1,mem_last_type
+	beq type_lmp,clear_got_txlmp
+	rtneq type_hv3
+	fetch 1,mem_op
+	rtnbit0 op_txl2cap,pdata
+	set0 op_txl2cap,pdata
+	set1 op_pkt_comp,pdata
+	store 1,mem_op
+	set0 mark_tx_l2cap,mark
+	fetch 2,mem_l2cap_tx_multi_offset
+	nrtn blank
+	fetch 1,mem_op
+	set0 op_pkt_comp,pdata
+	store 1,mem_op
+	branch l2cap_malloc_free
+
+clear_got_txlmp:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_2,mem_patch0d
+	fetch 1,mem_lmo_header_opcode
+	rshift pdata,pdata
+	beq LMP_START_ENCRYPTION_REQ,start_encryption
+	beq LMP_STOP_ENCRYPTION_REQ,stop_encryption
+	beq LMP_UNSNIFF_REQ, sniff_exit
+	beq LMP_ESCAPE,clear_lmp_escape
+	rtnne LMP_ACCEPTED
+	fetch 1,mem_lmo_payload
+	beq LMP_SCO_LINK_REQ,sco_link_req_by_slave
+	beq LMP_START_ENCRYPTION_REQ,clear_send_setup_complete
+	rtn
+
+clear_lmp_escape:
+	fetch 1,mem_lmo_payload
+	set1 7,pdata
+	rtn
+clear_send_setup_complete:
+	rtn master
+	fetch 1,mem_state
+	rtnbit1 state_conn_comp
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn
+	
+// nokia BH-105  CALLING when reconnection
+sco_link_req_by_slave:
+	rtn master
+	fetch 1,mem_mode
+	isolate1 send_sco_when_slave,pdata
+	branch clean_mem_mode,true
+	//jam LMP_REMOVE_SCO_LINK_REQ,mem_lmo_opcode2
+	rtn
+clean_mem_mode:
+	set0 send_sco_when_slave,pdata
+	store 1,mem_mode
+	rtn
+	
+start_encryption:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_3,mem_patch0d
+	fetch 1,mem_state_map
+	set1 smap_encryption,pdata
+	store 1,mem_state_map
+	hjam 1,core_encrypt
+	fetch 1,mem_state
+	isolate1 state_conn_comp,pdata
+	rtn
+
+stop_encryption:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_4,mem_patch0d
+	fetch 1,mem_state_map
+	set0 smap_encryption,pdata
+	store 1,mem_state_map
+	hjam 0,core_encrypt
+	rtn
+
+
+sniff_init:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_5,mem_patch0d
+	copy clkn_bt,pdata
+	store 4,mem_lpm_delay_after_sniff
+	add clkn_bt,3,rega
+	branch sniff_init_master,master
+	add clke_bt,3,rega
+sniff_init_master:
+	fetcht 2,mem_tsniff
+	deposit rega
+	set0 27,pdata
+	idiv temp
+	fetch 2,mem_dsniff
+	call wait_div_end
+	remainder regc
+	isub regc,pdata
+	branch sniff_init_nowrap,positive
+	iadd temp,pdata
+sniff_init_nowrap:
+	iadd rega,pdata
+	store 4,mem_sniff_anchor
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	fetch 1,mem_state
+	set1 state_insniff,pdata
+	store 1,mem_state
+	fetch 1,mem_sniff_attempt
+	store 1,mem_current_sniff_attempt
+	setarg 0
+	store 3,mem_sniff_rcv
+	store 3,mem_sniff_lost
+	store 1,mem_sniff_unint_lost
+	jam BT_EVT_ENTER_SNIFF,mem_fifo_temp
+	call ui_ipc_send_event
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_rx_window
+	nrtn master
+	add am_addr,-1,queue
+	rtn
+
+sniff_exit:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_6,mem_patch0d
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	set0 state_insniff,pdata
+	store 1,mem_state
+	fetch 2,mem_rx_window_init
+	store 2,mem_rx_window
+	disable wake
+	jam BT_EVT_EXIT_SNIFF,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+check_attempt:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_7,mem_patch0d
+	enable attempt
+	fetch 1,mem_state
+	bbit1 state_insniff,check_attempt_sniff
+	rtnmark1 mark_testmode						/* pdata won't be blank now, try attempt */
+	fetch 1,mem_arq
+	rtnbit1 wack
+	fetch 1,mem_lmp_to_send
+	nrtn blank
+	fetch 1,mem_op
+	rtnbit1 op_txl2cap
+check_attempt_nomore:
+	force 0,pdata
+	rtn
+
+check_attempt_sniff:
+	bbit0 state_insco,check_attempt_not_sco
+	fetch 1,mem_current_sniff_attempt
+	beq 2,check_attempt_sniff_restore_sco
+	fetch 1,mem_arq
+	bbit1 wack,check_attempt_notimeout
+	bmark0 mark_esco_rxok,check_attempt_notimeout
+check_attempt_sniff_restore_sco:
+	nbranch check_attempt_notimeout,master
+	fetch 1,mem_lmp_to_send
+	nbranch check_attempt_notimeout,blank
+check_attempt_sco_master:
+	fetch 1,mem_sco_poll
+	increase -1,pdata
+	store 1,mem_sco_poll
+	nbranch check_attempt_nomore,blank
+	jam param_sco_poll,mem_sco_poll
+	branch check_attempt_notimeout
+	
+check_attempt_not_sco:
+	fetch 1,mem_current_sniff_attempt
+	bne 1,check_attempt_notimeout
+	fetch 1,mem_current_sniff_timeout
+	branch check_attempt_notimeout,blank
+	increase -1,pdata
+	store 1,mem_current_sniff_timeout
+	fetch 1,mem_arq
+	rtnbit1 wack						// waiting for next ack
+	nrtn match						// waiting for next poll
+check_attempt_notimeout:
+	fetch 1,mem_current_sniff_attempt
+	increase -1,pdata
+	store 1,mem_current_sniff_attempt
+	rtn
+
+	/* enable user if sniff window vialation, queue is extra overhead */
+sniff_check_window:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_0,mem_patch0e
+	disable swfine
+	copy temp,stop_watch
+	call context_search_sniff_window
+	disable user
+	nrtn zero
+	force 0,stop_watch
+	enable user
+	rtn
+
+	//return true if it is esco context
+check_esco_amaddr:
+	fetch 1,mem_esco_addr
+	icompare 0xff,am_addr
+	rtn
+	
+
+parse_l2cap:	
+	set0 mark_ext_patch,mark
+	bpatch patch0e_1,mem_patch0e
+	set0 mark_rxbuf_inuse,mark 
+parse_l2cap_cont:
+	jam L2CAP_RX_CLEAR,mem_l2cap_rx_done
+	fetch 1,mem_l2cap_rxbuff_inuse
+	rtn blank
+	isolate1 L2CAP_INUSE_BUFF1,pdata
+	arg mem_l2cap_rxbuff1,contr
+	call process_rx_l2cap_pkt,true
+	set0 mark_ext_patch,mark
+	bpatch patch0e_2,mem_patch0e
+	fetch 1,mem_l2cap_rx_done
+	beq L2CAP_RX_DONE,parse_l2cap_release_buff1
+	
+	jam L2CAP_RX_CLEAR,mem_l2cap_rx_done
+	fetch 1,mem_l2cap_rxbuff_inuse
+	rtnbit0 L2CAP_INUSE_BUFF2
+	arg mem_l2cap_rxbuff2,contr	
+	call process_rx_l2cap_pkt
+	fetch 1,mem_l2cap_rx_done
+	beq L2CAP_RX_DONE,parse_l2cap_release_buff2
+	rtn
+		
+parse_l2cap_release_buff1:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set0 L2CAP_INUSE_BUFF1,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	setarg 0
+	store 2,mem_l2cap_rxbuff1_len
+	rtn
+parse_l2cap_release_buff2:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set0 L2CAP_INUSE_BUFF2,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	setarg 0
+	store 2,mem_l2cap_rxbuff2_len
+	rtn
+
+l2cap_buff1_inuse:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set1 L2CAP_INUSE_BUFF1,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	rtn
+
+l2cap_buff2_inuse:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set1 L2CAP_INUSE_BUFF2,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	rtn
+
+/******************************************/
+/**********  Transmit Packet  *************/
+/******************************************/
+
+slave_send_access:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_3,mem_patch0e
+	add clke_bt,1,bt_clk          /* slave start to use native clock */
+	call fetch_extm_bt_adr
+	force 0x03,freq_mode          /* connection frequency */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	branch send_access_word
+	
+
+slave_conn_send_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_4,mem_patch0e
+	call rf_setup_time_slave_slot
+	deposit clke_bt
+	fetcht 4,mem_next_btclk
+	isub temp,pdata
+	rtnne 1					/* missed slave slot */
+	compare type_null,type,0x1f
+	nbranch slave_conn_send_access,true
+	fetch 1,mem_rx_type
+	rtn blank					/* null packet, do nothing */
+slave_conn_send_access:
+	call slave_send_access
+	compare type_id,type,0x1f        /* is this id only ? */
+	branch end_of_packet,true
+transmit_packet:
+	rshift bt_clk,temp
+	or temp,0x40,white_init
+transmit_packet_whitened:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_5,mem_patch0e
+	enable enable_white
+	enable enable_hec
+	enable encode_fec1
+	set0 mark_longpacket,mark
+	deposit am_addr
+	inject mod,3             /* am_addr, temp is disabled */
+	deposit type
+	inject mod,4
+	fetch 1,mem_arq   /* aka mem_arq */
+	inject bucket,4  /* align up to flowx, arqnx, seqnx */
+	inject mod,3
+	enable enable_parity
+	inject mod,8   /* transmit parity */
+	disable encode_fec1
+	disable enable_parity
+	disable enable_hec
+	set0 PSK3M,radio_ctrl
+	arg 0,temp
+	call reserve_slot
+	set0 mark_ext_patch,mark
+	bpatch patch0e_6,mem_patch0e
+	and type,0x1f,pdata
+	beq type_lmp, transmit_lmp
+	beq type_null, end_of_packet
+	beq type_poll, end_of_packet
+	beq type_fhs, transmit_fhs  /* master mode fhs need got_tx and ack */
+	beq type_dm1, transmit_dm1
+	beq type_dh1, transmit_dh1
+	beq type_hv3, transmit_hev
+	beq type_3dh1, transmit_3dh1
+	arg 4,temp
+	call reserve_slot
+	beq type_dm3, transmit_dm3
+	beq type_dh3, transmit_dh3
+	arg 8,temp
+	call reserve_slot
+	beq type_dh5, transmit_dh5
+	branch transmit_dm5	/* must be 14, dm5 */
+
+
+transmit_hev:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_7,mem_patch0e
+	enable encode_fec0
+	enable enable_crc
+	enable encrypt
+	force 30,loopcnt
+	arg mem_sco_obuf,contr
+transmit_ev_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop transmit_ev_loop
+	bmark1 mark_esco,transmit_end
+	branch end_of_packet
+	
+transmit_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_0,mem_patch0f
+	fetch 1,mem_fhs_am_addr            /* this is the am_addr to assign to slave */
+	icopy am_addr
+	fetch 1,mem_fhs_misc
+	icopy fhs_misc    /* [7:6]SR [5:4]SP [3:1]PS [0]undef  */
+	fetch 3,mem_class   /* store away class */
+	icopy fhs_class
+	fetch 2,mem_nap
+	icopy nap
+	enable enable_crc
+	enable encode_fec2
+	copy bt_adr,rega
+	call fetch_self_bt_adr
+	pulse recalc
+	nop 32                    /* 30 cycles after recalc for sync word generation */
+	copy bt_clk,timeup
+	fetch 4,mem_clkn_bt
+	icopy bt_clk
+	preload fhs0
+	set1 58,pdata		/* eir */
+	inject mod,72
+	preload fhs1
+	inject mod,72
+	copy timeup,bt_clk
+	copy rega,bt_adr
+	enable enable_parity
+	inject mod,16   /* generate CRC */
+	disable enable_parity
+	branch end_of_packet
+
+transmit_lmp:    /* expect the payload ready as in bb spec */
+	set0 mark_ext_patch,mark
+	bpatch patch0f_1,mem_patch0f
+	enable encrypt
+	enable enable_crc
+	enable encode_fec2
+	fetch 1,mem_lmo_header_length   /* this is the payload header */
+	and pdata,0x1f8,temp       /* temp is number of bits, check payload header format */
+	arg mem_lmo_header_length,contr
+	increase 8,temp   /* temp is in bits */
+transmit_lmp_loop:
+	add temp,-72,regc   /* regc is remainder */
+	nbranch transmit_lmp_finish,positive
+	ifetch 9,contr
+	inject mod,72
+	copy regc,temp
+	branch transmit_lmp_loop
+transmit_lmp_finish:
+	ifetch 9,contr
+	iinject mod,temp
+	branch transmit_end
+
+transmit_dm1:
+	enable encode_fec2
+	branch transmit_dmh
+transmit_dm3:
+transmit_dm5:
+	enable encode_fec2
+	set1 mark_longpacket,mark
+	branch transmit_dmh
+
+transmit_3dh1:
+	set1 PSK3M,radio_ctrl
+transmit_dh1:
+	enable encode_fec0
+	branch transmit_dmh
+	
+transmit_dh3:
+transmit_dh5:
+	set1 PSK3M,radio_ctrl
+	enable encode_fec0
+	set1 mark_longpacket,mark
+
+transmit_dmh:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_2,mem_patch0f
+	fetch 1,mem_state_map
+	bbit0 smap_edr,transmit_noedr
+	sub type,3,null
+	branch transmit_noedr,positive
+	disable encrypt
+	disable encode_fec2
+	enable encode_fec0
+	disable enable_white
+	set1 PSK,radio_ctrl
+	isolate1 PSK3M,radio_ctrl
+	branch transmit_edr3m,true
+	setarg 0xabeee
+	inject mod,20
+	branch transmit_edr_sync_end
+transmit_edr3m:
+	setarg 0x5faeba
+	inject mod,24
+	setarg 0x12
+	inject mod,6
+transmit_edr_sync_end:	
+	enable enable_white
+	set1 mark_longpacket,mark
+transmit_noedr:
+	enable encrypt
+	enable enable_crc
+	bmark1 mark_loopback,transmit_loopback
+	fetch 1,mem_tx_lch
+	inject mod,3
+	fetch 2,mem_tx_len
+	iforce loopcnt
+	bmark1 mark_longpacket,transmit_long
+	inject mod,5
+	branch transmit_stuff
+transmit_long:	
+	inject mod,13
+transmit_stuff:
+	deposit loopcnt
+	branch transmit_end,blank
+	fetch 2,mem_txptr
+	iforce contr
+transmit_stuff_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop transmit_stuff_loop
+//	branch transmit_end
+
+transmit_end:
+	enable enable_parity
+	inject mod,16
+	disable enable_parity
+	call set_wait_ack
+	fetch 1,mem_state_map
+	bbit0 smap_edr,end_of_packet
+	force 0,pdata
+	inject mod,6				/* edr trailer */
+	branch end_of_packet
+
+
+transmit_loopback:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_3,mem_patch0f
+	bmark1 mark_longpacket,transmit_loopback_long
+transmit_loopback_short:
+	fetch 1,mem_lch_code
+	inject mod,3						/* LLID and FLOW */
+	fetch 1,mem_len	/* take packet length */
+	iforce regc
+	inject mod,5
+	branch transmit_loopback_cont
+transmit_loopback_long:
+	fetch 1,mem_lch_code
+	inject mod,3						/* LLID and FLOW */
+	fetch 2,mem_len	/* take packet length */
+	iforce regc
+	inject mod,13
+transmit_loopback_cont:
+	arg mem_rxbuf,contr
+transmit_loopback_loop:	
+	copy regc,null
+	branch transmit_loopback_end,zero
+	ifetch 1,contr
+	inject mod,8
+	increase -1,regc
+	branch transmit_loopback_loop
+transmit_loopback_end:
+	fetch 2,mem_tst_pktcnt_dmh
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_dmh
+	branch transmit_end
+	
+
+apply_switch_clke:
+	fetch 4,mem_clke_bt
+	add pdata,7,rega
+	fetch 2,mem_slot_offset
+	nbranch apply_switch_nozero,blank
+	increase -3,rega
+	branch apply_switch_wait_loop
+apply_switch_nozero:
+	mul32 pdata,12,pdata
+	hfetcht 2,core_halfslot
+	increase 1,temp
+apply_switch_loop:
+	isub temp,pdata
+	nbranch apply_switch_bt,positive
+	increase -1,rega
+	branch apply_switch_loop
+apply_switch_bt:
+	sub pdata,0,pdata
+apply_switch_wait_loop:
+	until null,oneslot
+	compare 0,clkn_bt,3
+	nbranch apply_switch_wait_loop,true
+	iforce clke_rt
+	copy rega,clke_bt
+	iforce clke_rt
+	rtn
+	
+
+calc_slot_offset:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_4,mem_patch0f
+	until null,halfslot
+	deposit clke
+	iforce contr
+	rshift16,pdata,pdata
+	isub clkn_bt,loopcnt
+	and_into 3,loopcnt			/* bt portion */
+	nbranch calc_bt_portion,zero
+	force 0,pdata
+	branch calc_skip_bt
+calc_bt_portion:
+	arg 3750,temp
+	force 0,pdata
+calc_slot_offset_loop:
+	iadd temp,pdata
+	loop calc_slot_offset_loop
+calc_skip_bt:
+	iadd contr,pdata			/* add rt portion */
+	div pdata,12
+	call wait_div_end
+	quotient pdata
+	store 2,mem_slot_offset
+	rtn
+
+calc_clke_offset:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_5,mem_patch0f
+	deposit clke
+	copy clkn,temp
+	isub temp,null
+	nsetflag positive,44,pdata
+	isub temp,temp
+	setarg 3750
+	isolate0 15,temp
+	branch calc_clke_pos,true
+	setarg -61786
+	iadd temp,temp
+calc_clke_pos:
+	storet 6,mem_le_clk_offset
+	rtn le
+	storet 6,mem_clk_offset
+	rtn
+
+calc_clke:
+	disable clknt
+	fetch 6,mem_le_clk_offset
+	branch calc_clke2,le
+	fetch 6,mem_clk_offset
+calc_clke2:
+	iadd clkn,alarm
+	increase 10,alarm
+	setarg 3750
+	isub alarm,pdata
+	isolate0 15,pdata
+	branch calc_clke_pos_adj,true
+	setarg 0xf15a
+	iadd alarm,alarm
+calc_clke_pos2:
+	copy alarm,clke
+	rtn
+calc_clke_pos_adj:		/* add 2 clock */
+	force 0,null
+	branch calc_clke_pos2
+	
+/******************************************/
+/********* RF related functions ***********/
+/******************************************/
+
+
+calc_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_6,mem_patch0f
+	call set_sync_on
+	copy bt_clk,pdata
+	and_into 0x180,pdata
+	compare 3,freq_mode,0x07
+	nbranch freq_not_connection,true    /* don't do the hack if not in connection */
+	rshift3 pdata,pdata
+	iadd freq_index,pdata
+	branch do_hop_mod_now
+freq_not_connection:	
+	copy freq_index,pdata
+do_hop_mod_now:
+	div pdata,79
+	pulse recalc         /* now is good time to recalc id */
+	call wait_div_end
+	remainder rega
+	add rega,-40,temp
+	branch odd_half,positive
+	lshift rega,temp
+	branch freq_result
+odd_half:
+	lshift temp,temp
+	increase 1,temp
+freq_result:	
+	set0 mark_ext_patch,mark
+	bpatch patch0f_7,mem_patch0f
+	fetch 1,mem_mode
+	bbit0 afh_change,afh_process_con
+afh_process_0:	
+	fetch 4, mem_afh_instant   
+	isub bt_clk, null
+	branch afh_process_con,positive
+	call afh_clear
+	fetch 1,mem_afh_new_mod
+	rtn blank
+	fetch 1,mem_mode
+	set1 afh_enable,pdata
+	store 1,mem_mode
+	fetch 5,mem_afh_map_new
+	store 5,mem_afh_map_lo
+	ifetch 5,contr
+	store 5,mem_afh_map_hi
+	call afh_process_freq_map
+afh_process_con:
+	fetch 1,mem_mode
+	rtnbit0 afh_enable
+	isolate1 1,bt_clk
+	branch afh_same_channel,true	/* at odd slot, use the same as last even */
+	rshift3 temp,rega
+	and temp,7,queue
+	setarg mem_afh_map_lo  
+	iadd rega, rega
+	ifetch 1, rega
+	qisolate0 pdata
+	branch afh_process_1,true		/* not in map, do afh */
+	deposit temp
+	branch afh_process_end
+afh_process_1:
+	fetch 1, mem_afh_used
+	iforce regb                     
+	deposit bt_clk
+	and_into 0x180, pdata
+	rshift3 pdata,pdata
+	iadd freq_index,pdata
+	idiv regb
+	setarg mem_afh_map     
+	call wait_div_end
+	remainder rega
+	iadd rega,contr
+	ifetch 1,contr
+afh_process_end:	
+	store 1,mem_afh_index
+	iforce temp  
+  	rtn
+
+afh_same_channel:
+	fetch 1, mem_afh_index           /* last afh index  */
+	iforce temp
+	rtn
+
+afh_clear:
+	fetch 1,mem_mode
+	set0 afh_enable,pdata
+	set0 afh_change,pdata
+	store 1,mem_mode
+	rtn
+/*
+fixed_frequency:
+	fetcht 1,mem_fixed_freq
+	rtn
+*/
+afh_process_freq_map:
+	set0 mark_ext_patch,mark
+	bpatch patch10_0,mem_patch10
+	arg mem_afh_map,contw
+	force 10,loopcnt
+	call memset0
+	arg mem_afh_map,contw
+	force 0,regC
+	force 2,queue
+process_freq_3:	
+	fetch 5,mem_afh_map_lo
+	iforce temp
+	compare 2,queue,0xff
+	branch process_freq_1,true
+	rshift temp,temp
+process_freq_1:	
+	isolate0 0,temp
+	branch process_freq_0,true
+	deposit regC
+	istore 1,contw
+process_freq_0:
+	rshift2 temp,temp
+	increase 2,regC
+	compare 40,regC,0xfe
+	nbranch process_freq_2,true
+	fetch 5,mem_afh_map_hi
+	iforce temp
+	compare 2,queue,0xff
+	branch process_freq_2,true
+	rshift temp,temp
+process_freq_2:	
+	sub regC,78,null
+	branch process_freq_1,positive
+	force 1,regC
+	increase -1,queue
+	nbranch process_freq_3,zero
+	arg mem_afh_map,rega
+	deposit contw
+	isub rega,pdata
+	store 1,mem_afh_used
+	rtn
+
+rx_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch10_1,mem_patch10
+	call calc_radio_freq
+	fetch 1,mem_debug_config
+	bbit0 debug_rx_fixed_freq,rx_radio_freq_now
+	fetcht 1,mem_rx_fixed_freq
+rx_radio_freq_now:
+	branch set_freq_rx
+	
+
+tx_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch10_2,mem_patch10
+	call calc_radio_freq
+	fetch 1,mem_debug_config
+	bbit0 debug_tx_fixed_freq,tx_radio_freq_now
+	fetcht 1,mem_tx_fixed_freq
+tx_radio_freq_now:
+	branch set_freq_tx
+	
+
+fetch_giac:
+	force 0,uap
+	fetch 3,mem_glap
+	iforce lap
+	rtn
+
+fetch_page_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch10_3,mem_patch10
+	fetch 1,mem_hci_puap
+	icopy uap
+	fetch 3,mem_hci_plap
+	icopy lap
+	rtn
+
+fetch_self_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch10_4,mem_patch10
+	fetch 2,mem_nap
+	icopy nap
+	fetch 1,mem_uap
+	icopy uap
+	fetch 3,mem_lap
+	icopy lap                 /* copy self_adr,bt_adr */      /* use own address */
+	rtn
+
+fetch_extm_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch10_5,mem_patch10
+	fetch 2,mem_pnap
+	icopy nap
+	fetch 1,mem_puap
+	icopy uap
+	fetch 3,mem_plap
+	icopy lap         
+	rtn
+
+
+fetch_diac:
+	bmark1 mark_all_diac,fetch_diac_do
+	rtnmark0 mark_inquiry_state
+	rtnmark0 mark_periodical_diac
+fetch_diac_do:
+	and_into -256,lap
+	pulse recalc
+	nop 32
+	rtn
+
+
+shutdown_radio:
+	set0 mark_ext_patch,mark
+	bpatch patch10_6,mem_patch10
+	branch shutdown_radio0,is_rx
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4	
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,shutdown_radio_0db
+	bbit1 TX_POWER_3DB,shutdown_radio_3db
+	bbit1 TX_POWER_5DB,shutdown_radio_5db
+	bbit1 TX_POWER_f3DB,shutdown_radio_f3db
+	bbit1 TX_POWER_f5DB,shutdown_radio_f5db
+shutdown_radio_5db:	
+shutdown_radio_0db:
+	hjam 0xd0, 0x955
+	hjam 0xe0, 0x956
+shutdown_radio0:
+	force 0,radio_ctrl
+	disable is_rx
+	disable is_tx
+	pulse packet_end
+	hjam 0x0,rfen_mdm
+	hjam 0x0,rfen_tx
+	hjam 0x0,rfen_rx
+	hjam 0,rfen_sn
+	hjam 0x70,rfen_msc
+	hjam 0x0,rfen_adc
+	rtn	
+
+shutdown_radio_f5db:
+shutdown_radio_f3db:
+shutdown_radio_3db:
+	hjam 0xd0,0x955
+	hjam 0xc0,0x956
+	branch shutdown_radio0
+
+set_sync_on:
+	set0 mark_ext_patch,mark
+	bpatch patch10_7,mem_patch10
+	hjam 0x0,rfen_mdm					/* if called from tx or rx */
+	hjam 0x0,rfen_tx
+	hjam 0x18,rfen_rx
+	hjam 0xa7,rfen_sn
+	hjam 0x7f,rfen_msc
+	rtn
+
+set_freq_rx:
+	set0 mark_ext_patch,mark
+	bpatch patch11_0,mem_patch11
+		/* IF is +2MHz */
+	storet 1,mem_last_freq
+	add temp,rx_freq_offset,rega			/* index to frequency */
+	hjam 0x07,0x96d                                         /*Max added, for best sensitivity*/
+	branch rf_write_freq
+rf_rx_enable:
+	set0 mark_ext_patch,mark
+	bpatch patch11_1,mem_patch11
+	hjam 0xcf,rfen_tx
+	nop 10					/* wait adc clk48 ready */
+	hjam 0xff,rfen_rx
+	hjam 0xaf,rfen_sn
+	hjam 0xff,rfen_msc
+	nop 10
+	hjam 0xa0,rfen_mdm
+	rtn
+
+
+set_freq_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch11_2,mem_patch11
+	storet 1,mem_last_freq
+	add temp,0,rega			// bt 2M Medium Frequency
+	call rf_write_freq
+	setarg param_pll_setup
+	call sleep
+txon:	
+	hjam 0x1,rfen_adc
+	hjam 0x3c,rfen_rx
+	hjam 0xe0,rfen_tx
+	hjam 0x12,0x96d
+	nop 10
+	hjam 0x01,rfen_mdm
+	hjam 0x3d,rfen_mdm
+	nop 10
+	hjam 0xb7,rfen_sn
+	nop 10
+	hjam 0x7f, rfen_mdm
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,set_tx_power_0db
+	bbit1 TX_POWER_3DB,set_tx_power_3db	
+	bbit1 TX_POWER_5DB,set_tx_power_5db
+	bbit1 TX_POWER_f3DB,set_tx_power_f3db	
+	bbit1 TX_POWER_f5DB,set_tx_power_f5db
+set_tx_power_0db:	
+	hjam 0xf0,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+set_tx_power_3db:
+	hjam 0xdf,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+
+set_tx_power_5db:
+	hjam 0xff,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+set_tx_power_f3db:
+	hjam 0xce,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+set_tx_power_f5db:
+	hjam 0xcb,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+txon_common:
+	nop 4
+	hjam 0xd1,0x955
+	nop 4
+	hjam 0xd2,0x955
+	nop 4
+	hjam 0xd4,0x955
+	rtn
+
+
+initialize_radio:
+	hjam clksel_rc,core_clksel
+	call init_rf_param
+initialize_radio_wait:
+	fetch 2,mem_rf_init_ptr
+	bbit0 14,initialize_radio_wait
+	iforce contr
+	arg 0x8900,temp
+initialize_radio_loop:
+	ifetch 1,contr
+	beq 0xff,initialize_radio_cont
+	ior temp,contw
+	ifetch 1,contr
+	istore 1,contw
+	branch initialize_radio_loop
+initialize_radio_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch11_3,mem_patch11
+	call lpm_cal_xtal_startup
+	call switchto_dpllclk
+//	ncall check_dpll,wake
+	setarg param_dpll_start_delay
+	iadd clkn_bt,pdata
+	store 4,mem_dpll_clkn
+	set1 RESET,radio_ctrl
+	force 0,radio_ctrl
+	ncall do_rccal,wake
+	branch set_rccal
+
+	/* rega is frequency, 00=2400Mhz */
+rf_write_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch11_4,mem_patch11
+	setarg 2400
+	iadd rega,temp
+	fetch 1,mem_fcomp_mul
+	hjam 0x04,rf_pll_rstn
+	imul32 temp,pdata
+	fetcht 1,mem_fcomp_div
+	idiv temp
+	call wait_div_end
+	quotient rega			/* rega is FLOOR(FVCO/fcomp) */
+	remainder pdata		
+	lshift16 pdata,pdata
+	lshift4 pdata,pdata		/* pdata is frac * 2^20 */
+	idiv temp
+	call wait_div_end
+	quotient pdata		/* pdata is frac *2^20/fcomp */
+	lshift8 pdata,pdata
+	lshift pdata,pdata
+	ior rega,pdata
+	hstore 4,rf_pll_intg
+	hjam 0x44,rf_pll_rstn
+	hjam 0xc4,rf_pll_rstn
+	rtn
+
+	
+do_rccal:
+	set0 mark_ext_patch,mark
+	bpatch patch11_5,mem_patch11
+	hjam 0x02,rfen_adc
+	setarg 250000
+	call sleep					/* wait clkpll&xtal stable */
+	hjam 0x7f,rfen_rx
+	nop 130
+	hjam 0x30,rf_rccal_ctrl
+	hjam 0xd0,rfen_tx
+	hjam 0x70,rf_rccal_ctrl
+	hjam 0xf0,rf_rccal_ctrl
+	force 50,loopcnt
+do_rccal_loop:
+	hfetch 1,rf_rccal_result
+	bbit1 5,do_rccal_end
+	loop do_rccal_loop
+do_rccal_end:
+	store 1,mem_rf_rccal
+	hjam 0,rfen_tx
+	hjam 0,rfen_rx
+	hjam 0x00,rfen_adc
+	rtn
+
+set_rccal:
+	set0 mark_ext_patch,mark
+	bpatch patch11_6,mem_patch11
+	fetch 1,mem_rf_rccal
+	set1 5,pdata
+	hstore 1,rf_rccal_ctrl
+	hfetcht 1,rf_bpf_ctrim
+	and_into 7,temp
+	lshift3 pdata,pdata
+	ior temp,pdata
+	hstore 1,rf_bpf_ctrim
+	hfetch 1,rf_bpf_ib
+	set0 bpf_rccal,pdata
+	hstore 1,rf_bpf_ib
+	hfetch 1,rf_adc_rccal
+	set0 adc_rccal,pdata
+	hstore 1,rf_adc_rccal
+	rtn
+
+save_rssi:
+	set0 mark_ext_patch,mark
+	bpatch patch11_7,mem_patch11
+	hfetch 2,rf_afc_d2a
+	rshift4 pdata,pdata
+	rshift3 pdata,pdata
+	sub pdata,0,pdata
+	and_into 0xff,pdata
+	div pdata,10
+	call wait_div_end
+	quotient pdata
+	lshift4 pdata,pdata
+	remainder temp
+	ior temp,pdata
+	store 1,mem_rssi			/* bcd value */
+	rtn
+
+	
+switchto_dpllclk:
+	hjam clksel_rc,core_clksel
+	hfetch 1,rf_clkpll_frac+2
+	set0 4,pdata
+	set0 5,pdata
+	hstore 1,rf_clkpll_frac+2
+	hjam 0x00,rfen_ck
+	hjam 0x00,rfen_msc
+	hjam 0x70,rfen_msc
+	hjam 0xff,rfen_ck
+	hfetch 1,rf_clkpll_frac+2
+	set1 4,pdata
+	set1 5,pdata
+	hstore 1,rf_clkpll_frac+2
+	call init_lpm_ctrl
+	hfetch 1,rf_clkpll_int
+	set1 7,pdata
+	hstore 1,rf_clkpll_int
+	set0 7,pdata
+	hstore 1,rf_clkpll_int
+	set1 7,pdata
+	hstore 1,rf_clkpll_int
+//	hjam clksel_dpll,core_clksel
+	hjam clksel_xtal,core_clksel
+	hfetch 1,rf_clkpll_frac+2
+	and_into 0xcf,pdata
+	hstore 1,rf_clkpll_frac+2
+	or_into 0x30,pdata
+	hstore 1,rf_clkpll_frac+2
+	rtn
+
+	
+xtal_fast_wake:
+	setarg 0xf0f
+	branch lpm_write_config
+
+init_lpm_ctrl:
+	setarg 0x80f
+	branch lpm_write_config
+
+
+
+start_receiver:
+	set0 mark_ext_patch,mark
+	bpatch patch12_0,mem_patch12
+	call rf_rx_enable
+	disable is_tx
+	enable is_rx
+	pulse init_encrypt
+	rtn
+
+prep_crypt:
+	set0 mark_ext_patch,mark
+	bpatch patch12_1,mem_patch12
+	fetch 1,mem_state_map
+	isolate1 smap_encryption,pdata
+	setflag true,0,pdata
+	hstore 1,core_encrypt
+	arg mem_kc,contr
+	ifetch 9,contr
+	iforce kc_ls
+	ifetch 7,contr
+	iforce kc_ms
+	fetch 1,mem_key_size
+	add pdata,-1,g1l
+	pulse kc_p_activate               /* immediately start calculating primary Key */
+	rtn
+	
+wait_access_end:
+	deposit clke
+	store 6,mem_sync_clke
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	arg param_clke_cal,clke_rt
+	increase 1,clke_bt
+	and_into 0x1fc,clke_bt
+	rtn
+
+
+
+wait_access_mhalfbnd:
+	enable decode_fec0
+wait_access_mhalfbnd_correlate:
+	correlate null,mhalfbnd    /* keep correlating until sync is found, or clke half */
+	branch wait_access_end,sync
+	compare 0x02,clke_bt,0x02
+	nbranch wait_access_mhalfbnd_correlate,true
+	branch wait_access_end
+
+wait_access_clkn_rt:
+	set0 mark_ext_patch,mark
+	bpatch patch12_2,mem_patch12
+	arg param_conn_access,timeup	/* found sync must occur within this time */
+	enable decode_fec0
+	correlate clkn_rt,meet    /* keep correlating until sync is found, or until clkn_rt timeup */
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	rtn
+
+wait_access_forever:
+	set0 mark_ext_patch,mark
+	bpatch patch12_3,mem_patch12
+	enable decode_fec0
+	correlate null,timeout    /* keep correlating until sync is found, or timeout */
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	arg param_clke_cal,clke_rt
+	and_into 0x1fc,clke_bt
+	rtn
+
+	/* reserve slots for mult-slot packet */
+reserve_slot:
+	set0 mark_ext_patch,mark
+	bpatch patch12_4,mem_patch12
+	iforce rega
+	deposit bt_clk
+	iadd temp,timeup
+	copy timeup,pdata
+	store 4,mem_next_btclk
+	deposit rega
+	rtn
+
+	/* pdata = clks ahead of bt_clk */
+ahead_window:
+	copy pdata,temp
+	set0 mark_ext_patch,mark
+	bpatch patch12_5,mem_patch12
+	copy temp,pdata
+	call clk2bt
+	lshift16 bt_clk,pdata
+	set1 44,pdata
+	call clk_diff
+	set0 44,pdata
+	call get_clk
+	call clk_diff
+	rtn user
+	call clk2rt
+	iforce stop_watch
+	until null,timeout
+	rtn
+
+
+setup_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch12_6,mem_patch12
+	branch setup_clkn,clknt
+	until clke_rt,meet
+skip_setup_clke:
+	copy clke_bt,temp
+	branch setup_clknbt
+setup_clkn:
+	branch skip_setup_clkn,attempt
+	until clkn_rt,meet
+skip_setup_clkn:
+	copy clkn_bt,temp
+setup_clknbt:
+	branch setup_clk11,user
+	compare 1,temp,3
+	nbranch setup_clk,true
+setup_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch12_7,mem_patch12
+	fetch 1,mem_state
+	rtnbit0 state_inconn
+	fetch 4,mem_next_btclk
+	isub temp,pdata
+	nrtn positive
+	sub pdata,0xff,null
+	branch setup_clk,positive
+	rtn
+setup_clk11:
+	compare 3,temp,3
+	nbranch setup_clk,true
+	branch setup_complete
+
+rf_setup_time:
+	set0 mark_ext_patch,mark
+	bpatch patch13_0,mem_patch13
+	arg param_rf_setup,timeup
+	branch setup_clk
+	
+rf_setup_time_slave_slot:
+	disable user
+	branch rf_setup_time
+
+rf_setup_time_master_slot:
+	enable user
+	branch rf_setup_time
+	
+start_transmitter:
+	set0 mark_ext_patch,mark
+	bpatch patch13_1,mem_patch13
+	call prep_crypt
+	disable is_rx
+	enable is_tx
+	rtn
+
+
+
+start_tx_native:
+	set0 mark_ext_patch,mark
+	bpatch patch13_2,mem_patch13
+	arg param_tx_setup,timeup
+	until clkn_rt,meet         /* wait until start_tx time */
+	pulse init_encrypt
+	rtn
+
+start_rx_native:
+	set0 mark_ext_patch,mark
+	bpatch patch13_3,mem_patch13
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	rtn
+
+
+start_tx_external:
+	set0 mark_ext_patch,mark
+	bpatch patch13_4,mem_patch13
+	arg param_tx_setup,timeup
+	until clke_rt,meet         /* wait until start_tx time */
+	pulse init_encrypt
+	rtn
+
+send_access_word:
+	set0 mark_ext_patch,mark
+	bpatch patch13_5,mem_patch13
+	preload access          /* load in access word ready to be sent */
+	enable encode_fec0
+	set1 TXGFSK,radio_ctrl
+	inject mod,72
+	disable encode_fec0
+	rtn
+
+
+scan_mode_whiten:
+	copy xin,temp
+	or_into 0x60,temp                /* extend xin with 5->1, 6->1 */
+	copy temp,white_init
+	rtn
+
+
+
+	/* return blank if free amaddr is found */
+get_free_amaddr:
+	set0 mark_ext_patch,mark
+	bpatch patch13_6,mem_patch13
+	fetch 1,mem_current_amaddr
+	increase 1,pdata
+	bne param_esco_addr,get_free_amaddr_cont
+	force 1,pdata
+get_free_amaddr_cont:
+	store 1,mem_current_amaddr
+	iforce am_addr
+	rtn
+
+get_clk:
+	copy clkn,temp
+	rtn master
+	copy clke,temp
+	rtn
+
+get_clkbt:
+	deposit clkn_bt
+	rtn master
+	deposit clke_bt
+	rtn
+
+
+supervision_update:
+	set0 mark_ext_patch,mark
+	bpatch patch13_7,mem_patch13
+	fetcht 4,mem_supervision_timer
+	call get_clkbt
+	isub temp,timeup					/* and to 28 bits */
+	deposit timeup
+	fetcht 2,mem_supervision_to
+	lshift temp,temp
+	isub temp,pdata
+	rtn
+	
+supervision_flush:
+	set0 mark_ext_patch,mark
+	bpatch patch14_0,mem_patch14
+	call get_clkbt
+	store 4,mem_supervision_timer
+	rtn
+
+assert:
+	set0 mark_ext_patch,mark
+	bpatch patch14_1,mem_patch14
+	rtn
+	
+loop:
+	branch loop
+
+sleep:	
+	rtn blank
+	/* sleep pdata clocks, only even clocks are accurate */
+	rshift pdata,pdata
+	increase -3,pdata
+sleep_loop:	
+	increase -1,pdata
+	nbranch sleep_loop,zero
+	force 0,pdata
+	rtn
+
+
+
+init_param:
+	/* clear specified sched ram */
+	arg 0x10,loopcnt
+	arg 0,contw
+	call memset0
+	arg mem_le_state,contw
+	arg 10,loopcnt
+	call memset0
+	jam 0,mem_sp_calc
+	jam 0,mem_fifo_temp
+	jam 0,mem_le_testtype
+	jam 0,mem_debug_config
+	jam 0,mem_lmp_conn_state
+	set0 mark_ext_patch,mark
+	bpatch patch14_2,mem_patch14
+	jam 0,mem_connection_options
+	jam 0,mem_tester_emulate
+	jam 0,mem_tester_cnt
+	setarg param_glap
+	store 3,mem_glap
+	setarg param_acl_pktlen
+	store 2,mem_acl_pktlen
+	jam param_sco_pktlen,mem_sco_pktlen
+	jam param_acl_pktcnt,mem_acl_pktcnt
+	jam param_sco_pktcnt,mem_sco_pktcnt
+	setarg param_hci_version
+	store 3,mem_hci_version
+//	setarg param_lmp_version
+//	store 3,mem_lmp_version
+//	setarg param_lmp_subversion
+//	store 2,mem_lmp_subversion
+	jam 0x60,mem_fhs_misc		/* R1 for 1.28s ps interval,P2 */
+	jam param_max_slot,mem_max_slot
+	jam 0x02,mem_fw_ver		/* set firmware version */
+	fetch 1,mem_ssp_enable
+	ncall init_memp,blank
+	fetch 1,mem_le_secure_connect_enable
+	ncall init_memp_256,blank
+	set0 mark_ext_patch,mark
+	bpatch patch14_3,mem_patch14
+	rtn wake
+	setarg 0
+	store 2,mem_tx_len
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn
+	rtn
+
+init_rf_param:
+	hjam 0x1f,0x909
+	hjam 0x45,0x912		/* invert demod */
+	hjam 0x00,0x953			/* rccal */
+	hjam 0x88,0x96f
+	hjam 0x30,0x973			/* turn off charge pump */
+	hjam 0xc9,0x956
+
+	hjam 0xff,0x907
+	hjam 0x01,0x908
+	hjam 0xf8,0x90a
+	hjam 0xff,0x90b
+	hjam 0xfb,0x91a
+	hjam 0xfb,0x91b
+	hjam 0xfb,0x91c
+	hjam 0xf6,0x91d
+	hjam 0xf2,0x91e
+	hjam 0xee,0x91f
+	hjam 0xea,0x920
+	hjam 0xe6,0x921
+	hjam 0xe2,0x922
+	hjam 0xde,0x923
+	hjam 0xda,0x924
+	hjam 0xd6,0x925
+	hjam 0xd2,0x926
+	hjam 0xce,0x927
+	hjam 0xca,0x928
+	hjam 0xc6,0x929
+	hjam 0xc2,0x92a
+	hjam 0xbd,0x92b
+	hjam 0xb9,0x92c
+	hjam 0xb5,0x92d
+	hjam 0xb1,0x92e
+	hjam 0xad,0x92f
+	hjam 0xa9,0x930
+	hjam 0x80,0x931
+	hjam 0x80,0x932
+	hjam 0x80,0x933
+	hjam 0xc0,0x934
+	hjam 0xc1,0x935
+	hjam 0xc2,0x936
+	hjam 0xc3,0x937
+	hjam 0xc4,0x938
+	hjam 0xc5,0x939
+	hjam 0xc6,0x93a
+	hjam 0xc7,0x93b
+	hjam 0x06,0x93c
+	hjam 0x07,0x93d
+	hjam 0x46,0x93e
+	hjam 0x85,0x93f
+	hjam 0x86,0x940
+	hjam 0x87,0x941
+	hjam 0xc6,0x942
+	hjam 0xc7,0x943
+	hjam 0xd6,0x944
+	hjam 0xd7,0x945
+	hjam 0xe6,0x946
+	hjam 0xf5,0x947
+	hjam 0x00,0x948
+	hjam 0xf8,0x949
+	hjam 0x7f,0x94a
+	hjam 0xfb,0x94c
+	hjam 0xef,0x94d	
+	hjam 0xec,0x94e
+	hjam 0x5e,0x94f
+	hjam 0x4c,0x957
+	hjam 0x6c,0x958
+	hjam 0x50,0x959
+	hjam 0xe4,0x968
+	hjam 0x00,0x969
+	hjam 0x00,0x96a
+	hjam 0x30,0x96b
+	rtn
+
+
+
+
+
+
+/*****************************************LPO************************************************/
+
+lpmstate:
+	setarg 0xee21
+	hstore 2,core_clkoff			// disable unused peripherals
+	hfetch 1,core_lpm_ldocnt
+	bbit0 gpio_latch,loadcode		// power up boot
+	enable wake
+	bbit0 cold_wake,lpmwake		
+	disable wake
+	deposit auxcnt
+	nbranch lpmwake,blank		// sleep interrupted, wakeup
+	arg param_hibernate_clks,temp
+	branch lpm_enter_sleep
+lpmwake:
+	hfetch 3,core_lpm_xtalcnt
+	hstore 3,core_lpm_reg
+	ifetch 1,contr
+	or_into isogate_mask,pdata		// open all isolation gate&power switch
+	istore 1,contw
+	call lpm_write_ctrl2
+	hfetch 1,core_lpm_isogate
+	set1 enable_retmem,pdata
+	hstore 1,core_lpm_isogate
+	call lpm_write_ctrl2
+	call lpm_load_context,wake
+	hfetch 1,core_lpm_reg+2
+	set0 gpio_latch,pdata			// enable gpio fuction
+	hstore 1,core_lpm_reg+2
+	call lpm_write_ctrl2
+	rtn wake
+	branch loadcode				// wakeup from hibernate
+
+lpm_load_context:
+	fetch 1,mem_saved_spidctrl
+	hstore 1,core_spid_ctrl
+	fetch 3,mem_saved_gsel
+	hstore 3,core_gpio_sel
+	fetch 4,mem_saved_gpio+4
+	hstore 4,core_gpio_out0
+	fetch 4,mem_saved_gpio
+	hstore 4,core_gpio_oe0
+	fetch 8,mem_saved_gpio+8
+	hstore 8,core_gpio_pu0	
+	fetch 8,mem_saved_mark
+	iforce mark
+	hfetch 8,core_gpio_wakeup_low
+	store 8,mem_gpio_wakeup_low
+	call load_ucode
+	rtn
+
+lpm_save_context:
+	deposit mark
+	store 8,mem_saved_mark
+	hfetch 8,core_gpio_oe0
+	store 8,mem_saved_gpio
+	ifetch 8,contr
+	istore 8,contw
+	hfetch 3,core_gpio_sel
+	store 3,mem_saved_gsel
+	hfetch 1,core_spid_ctrl
+	store 1,mem_saved_spidctrl
+	branch lpm_write_gpio_wakeup
+
+lpo_calibration:
+	hfetch 1,core_bist_ctrl
+	nbranch lpo_cal_inited,blank
+	fetch 3,mem_clks_per_lpo
+	nrtn blank
+	hjam 0xc0,core_bist_ctrl
+	hjam ccnt_start,core_misc_ctrl
+lpo_cal_inited:
+	hfetch 1,core_perf_status
+	rtnbit0 1
+	hfetch 3,core_clk_counter
+	store 3,mem_clks_per_lpo
+	rtn
+
+
+	/* temp is synced clke */
+lpm_adjust_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch14_4,mem_patch14
+	deposit clke
+	call clk_diff_rt
+	fetcht 4,mem_sleep_counter_all
+	sub temp,0xff,null
+	rtn positive				// interval too small
+	lshift8 pdata,pdata
+	lshift4 pdata,pdata
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	arg param_lpm_adjmax,temp
+	call ceiling
+	store 1,mem_lpm_adjust
+	nbranch lpm_adjust_positive,user
+	sub pdata,0,pdata
+lpm_adjust_positive:
+	fetcht 3,mem_clks_per_lpo
+	iadd temp,pdata
+	store 3,mem_clks_per_lpo
+lpm_clear_counter:
+	setarg 0
+	store 4,mem_sleep_counter_all
+	rtn
+
+	/* no retention memory at all */
+lpm_hibernate:
+	set0 mark_ext_patch,mark
+	bpatch patch14_5,mem_patch14
+	call lpm_write_gpio_wakeup
+	hfetch 4,core_lpm_ctrl
+	set0 15,pdata						/* lowest lpo */
+	hstore 4,core_lpm_reg
+	call lpm_write_ctrl
+lpm_hibernate_normal:
+	arg param_hibernate_clks,temp
+	fetch 1,mem_lpm_hibernate_switch
+	store 1,mem_lpm_xtalcnt + 4
+	fetch 1,mem_lpm_xtalcnt + 2
+	set1 cold_wake,pdata
+	store 1,mem_lpm_xtalcnt + 2
+
+	/* temp is lpo clocks to sleep */
+lpm_sleep:
+	set0 mark_ext_patch,mark
+	bpatch patch14_6,mem_patch14
+	call xtal_fast_wake
+	fetch 4,mem_sleep_counter_all
+	iadd temp,pdata
+	store 4,mem_sleep_counter_all
+	call lpm_save_context
+	fetch 5,mem_lpm_xtalcnt
+	hstore 4,core_lpm_reg
+	rshift32 pdata,rega
+	until null,lpo_edge
+	deposit clkn
+	store 6,mem_sleep_clkn
+	hjam lpmreg_sel_ctrl2,core_lpm_wr
+	until null,lpo_edge
+	until null,lpo_edge
+	deposit rega
+	hstore 1,core_lpm_isogate
+	hjam lpmreg_sel_ctrl2,core_lpm_wr
+lpm_enter_sleep:
+	until null,lpo_edge
+	until null,lpo_edge
+	hstoret 4,core_lpm_reg
+	hjam lpmreg_sel_counter,core_lpm_wr
+	until null,never
+
+
+
+
+lpm_recover_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch14_7,mem_patch14
+	setarg 0
+	copy auxcnt,null
+	branch lpm_recover_timeout,zero
+	hfetch 1,core_lpm_xtalcnt
+	hfetcht 1,core_lpm_buckcnt
+	isub temp,null
+	branch lpm_recover_xtal,positive
+	deposit temp
+lpm_recover_xtal:
+	isub auxcnt,pdata
+	increase 1,pdata
+lpm_recover_timeout:
+	increase 8,pdata
+	until null,lpo_edge
+	iadd lpo_time,pdata
+	fetcht 4,mem_sleep_counter
+	iadd temp,pdata
+	fetcht 3,mem_clks_per_lpo
+	imul32 temp,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	increase param_lpm_fix,pdata
+	arg 3750,temp
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	lshift16 pdata,pdata
+	remainder temp
+	ior temp,pdata
+	fetcht 6,mem_sleep_clkn
+	call clk_add
+	copy temp,clkn
+	fetch 6,mem_context + coffset_clk_offset
+	call calc_clke2
+	deposit clke
+	store 6,mem_pdatatemp
+	deposit auxcnt
+	istore 1,contw
+	hfetch 1,core_gpio_in1
+	or_into 0xf0,pdata
+	istore 1,contw
+	rtn
+	
+lpm_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch15_0,mem_patch15
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+	fetch 1,mem_ssp_enable
+	branch lpm_dispatch_next,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+lpm_dispatch_next:
+	fetch 1,mem_le_sc_calc
+	nrtn blank	
+	call lpm_check_wake_lock
+	nrtn blank
+	fetch 1,mem_context
+	compare 3,pdata,0x7							/* sco won't sleep */
+	nbranch lpm_dispatch_unconn,true
+	fetch 2,mem_context + coffset_tsniff
+	rtn blank										/* role switch */
+	rtn wake
+lpm_dispatch_next0:
+	set0 mark_ext_patch,mark
+	bpatch patch15_1,mem_patch15
+	fetcht 1,mem_lpm_current_mult
+	fetch 2,mem_context + coffset_tsniff
+	imul32 temp,pdata
+	rshift4 temp,temp
+	rshift2 temp,temp
+	isub temp,pdata
+	fetcht 4,mem_context + coffset_sniff_anchor
+	iadd temp,pdata
+	fetcht 1,mem_lpm_overhead
+	isub temp,pdata
+	lshift16 pdata,alarm
+lpm_dispatch_next1:	
+	set0 mark_ext_patch,mark
+	bpatch patch15_2,mem_patch15
+	fetch 2,mem_context + coffset_rx_window
+	rshift pdata,pdata
+	call clk2bt
+	deposit alarm
+	call clk_diff
+	copy clke,temp
+	call clk_diff_rt
+	rtn user
+lpm_dispatch_sleep:
+	call clk2lpo
+lpm_dispatch_lpo:
+	set0 mark_ext_patch,mark
+	bpatch patch15_3,mem_patch15
+	fetch 1,mem_lpm_xtalcnt
+	isub temp,null
+	branch lpm_clear_counter,positive
+	storet 4,mem_sleep_counter
+	call app_will_enter_lpm
+	call l2cap_lpm_save_txbuf
+	fetcht 4,mem_sleep_counter
+	branch lpm_sleep
+	
+lpm_dispatch_unconn:
+	set0 mark_ext_patch,mark
+	bpatch patch15_4,mem_patch15
+	fetch 1,mem_context
+	rtnbit1 state_inconn					// wont sleep in connection
+	rtnbit1 state_inpage					// wont sleep when paging
+	fetch 1,mem_ssp_enable
+	branch lpm_unconn_nossp,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+lpm_unconn_nossp:
+	set0 mark_ext_patch,mark
+	bpatch patch15_5,mem_patch15
+	fetch 1,mem_le_adv_enable
+	nbranch lpm_unconn_cont,blank
+	fetch 1,mem_scan_mode
+	rtn blank
+lpm_unconn_cont:
+	fetch 2,mem_lpm_interval
+	rtn blank
+lpm_sleep_btclk:
+	fetcht 1,mem_lpm_overhead
+	isub temp,pdata
+	arg 7500,temp				/* 1.25ms */
+	imul32 temp,pdata
+	branch lpm_dispatch_sleep
+
+lpm_set_mult:
+	set0 mark_ext_patch,mark
+	bpatch patch15_6,mem_patch15
+	disable wake
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	nbranch lpm_not_match,match
+	call lpm_match
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_rx_window
+	fetch 1,mem_arq
+	bbit1 wack,lpm_mult_short
+	bmark0 mark_lpm_mult_enable,lpm_mult_short
+	call l2cap_malloc_is_fifo_empty
+	nbranch lpm_mult_short,blank
+	fetch 2,mem_cb_bt_set_mult
+	call callback_func
+lpm_mult_wait_timeout:
+	jam 0,mem_lpm_current_mult
+	bmark0 mark_lpm_mult_enable,lpm_mult_short
+	fetch 1,mem_lpm_mult_cnt
+	branch lpm_mult_long,blank
+	increase -1,pdata
+	store 1,mem_lpm_mult_cnt
+	rtn
+
+lpm_match:
+	jam 0,mem_sniff_unint_lost
+	fetch 3,mem_sniff_rcv
+	increase 1,pdata
+	store 3,mem_sniff_rcv
+	rtn
+
+lpm_not_match:
+	set0 mark_ext_patch,mark
+	bpatch patch15_7,mem_patch15
+	fetcht 2,mem_rx_window_sniff
+	rshift temp,temp
+	fetch 2,mem_rx_window
+	iadd temp,pdata
+	store 2,mem_rx_window
+lpm_lost:
+	jam 0,mem_lpm_current_mult
+	fetch 3,mem_sniff_lost
+	increase 1,pdata
+	store 3,mem_sniff_lost
+	fetch 1,mem_sniff_unint_lost
+	increase 1,pdata
+	store 1,mem_sniff_unint_lost
+	rtn
+
+lpm_mult_short:
+	jam 0,mem_lpm_current_mult
+	fetch 1,mem_lpm_mult_timeout
+	store 1,mem_lpm_mult_cnt
+	rtn
+
+lpm_mult_long:
+	fetcht 1,mem_lpm_mult
+	storet 1,mem_lpm_current_mult
+	rtn
+
+lpm_cal_xtal_startup:
+	set0 mark_ext_patch,mark
+	bpatch patch16_0,mem_patch16
+	fetch 1,mem_lpm_xtalcnt
+	nrtn blank
+	hjam clksel_rc,core_clksel
+	setarg 0xf0c
+	call lpm_write_config
+	setarg 200000
+	call sleep
+	until null,lpo_edge
+	copy lpo_time,alarm
+	call xtal_fast_wake
+	hjam clksel_xtal,core_clksel
+	nop 10
+	until null,lpo_edge
+	deposit lpo_time
+	isub alarm,pdata
+	increase 0x30,pdata
+	arg 0xff,temp
+	call ceiling
+	store 1,mem_lpm_xtalcnt
+	nop 30000
+	nop 30000
+	nop 30000	
+	rtn
+
+
+
+	/* pdata is lpm_reg[11:0] */
+lpm_write_config:
+	arg 0xfff,contw
+	iand contw,contw
+	fetch 1,mem_lpm_config
+	and_into 0xf0,pdata
+	lshift8 pdata,pdata
+	ior contw,pdata
+	hstore 2,core_lpm_reg
+	ifetch 2,contr
+	istore 2,contw
+
+lpm_write_ctrl:
+	setarg lpmreg_sel_ctrl
+	branch lpm_write
+
+lpm_write_ctrl2:
+	setarg lpmreg_sel_ctrl2
+lpm_write:
+	until null,lpo_edge
+	hstore 1,core_lpm_wr
+	until null,lpo_edge
+	until null,lpo_edge
+	rtn
+
+
+lpm_write_gpio_wakeup:
+	set0 mark_ext_patch,mark
+	bpatch patch16_1,mem_patch16
+	fetch 4,mem_gpio_wakeup_low
+	hstore 4,core_lpm_reg
+	setarg lpmreg_sel_gpiolow
+	call lpm_write
+	fetch 4,mem_gpio_wakeup_high
+	hstore 4,core_lpm_reg
+	setarg lpmreg_sel_gpiohigh
+	branch lpm_write
+
+lpm_get_wake_lock:
+	fetch 2,mem_lpm_wake_lock
+	qset1 pdata
+	store 2,mem_lpm_wake_lock
+	rtn
+
+lpm_put_wake_lock:
+	fetch 2,mem_lpm_wake_lock
+	qset0 pdata
+	store 2,mem_lpm_wake_lock
+	rtn
+
+
+
+lpm_check_wake_lock:
+	set0 mark_ext_patch,mark
+	bpatch patch16_2,mem_patch16
+	call app_check_wake_lock
+	fetch 2,mem_lpm_wake_lock
+	copy pdata,rega
+	fetch 1,mem_state_map
+	isolate1 smap_rxlmp,pdata
+	setflag true,wake_lock_lmp_rx,rega
+	fetch 1,mem_lmo_opcode1
+	fetcht 1,mem_lmo_opcode2
+	iadd temp,pdata
+	fetcht 1,mem_lmp_to_send
+	iadd temp,pdata
+	nsetflag blank,wake_lock_lmp_tx,rega
+lpm_check_wake_lock0:
+	set0 mark_ext_patch,mark
+	bpatch patch16_3,mem_patch16
+	fetch 2,mem_l2cap_rxbuff1_len
+	fetcht 2,mem_l2cap_rxbuff2_len
+	iadd temp,pdata
+	nsetflag blank,wake_lock_l2cap_rx,rega
+	fetch 5,mem_ipc_fifo_bt2c51
+	nsetflag blank,wake_lock_ipc_bt2c51,rega
+	fetch 5,mem_ipc_fifo_c512bt
+	nsetflag blank,wake_lock_ipc_c512bt,rega
+	fetch 1,mem_hci_cmd
+	nsetflag blank,wake_lock_cmd,rega
+	fetch 1,mem_device_option
+	compare dvc_op_module,pdata,0xff
+	call lpm_uart_wake_lock,true
+	branch  lpm_check_wake_lock_nothci
+
+lpm_uart_wake_lock:
+	hfetch 2,core_uart_rxitems
+	nsetflag blank,wake_lock_uart_rx ,rega
+	hfetch 2,core_uart_txitems
+	nsetflag blank,wake_lock_uart_tx ,rega
+	rtn
+
+lpm_check_wake_lock_nothci:
+	setarg -8
+	iand rega,rega
+lpm_check_wake_lock_end:
+	copy rega,pdata
+	store 2,mem_lpm_wake_lock
+	rtn blank
+	rtn match
+	enable wake
+	rtn
+
+lpm_shut_down:
+	hfetch 4,core_lpm_ctrl
+	set0 27,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+	branch assert
+	
+lpm_disable_exen_output:
+	hfetch 4,core_lpm_xtalcnt
+	set0 20,pdata
+	hstore 4,core_lpm_reg
+	branch lpm_write_ctrl2
+
+check_bt_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 bt_disabled,assert
+	rtn
+check_ble_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 ble_disabled,assert
+	rtn
+check_module_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 module_disable,assert
+	rtn
+	
+
+
+
+
+
+app_init:
+	set0 mark_ext_patch,mark
+	bpatch patch16_4,mem_patch16
+	fetch 1,mem_device_option
+	branch app_init,blank				/* wait ram to be initialized */
+//	beq dvc_op_ukey,le_ukey_init
+//	beq dvc_op_ir,le_ir_init
+//	beq dvc_op_dongle,le_dongle_init
+	beq dvc_op_kb,kb_init
+	beq dvc_op_shutter,shutter_init
+	beq dvc_op_module,module_init
+//	beq dvc_op_test,test_init
+	bbit1 dvc_op_mouse,mouse_init
+	bbit1 dvc_op_keyboard,kb_init
+	rtn
+	
+app_lpm_init:
+	set0 mark_ext_patch,mark
+	bpatch patch16_5,mem_patch16
+	jam 0,mem_tester_emulate
+	jam 0,mem_debug_config
+	jam 0, mem_lch_code
+	setarg 0
+	store 5,mem_sp_state_start
+	fetch 1,mem_device_option
+	branch app_lpm_init,blank				/* wait ram to be initialized */
+	beq dvc_op_module,module_lpm_init
+app_lpm_init0:
+	rtn
+
+	
+app_process_idle:
+	call ui_dispatch
+	call check_51cmd
+	call app_process_bb_event
+	fetch 2,mem_cb_idle_process
+	branch callback_func
+	
+app_process_bt:
+	fetch 2,mem_cb_bt_process
+	branch callback_func
+	
+app_process_ble:
+	fetch 2,mem_cb_le_process
+	branch callback_func
+
+app_process_bb_event:
+	set0 mark_ext_patch,mark
+	bpatch patch16_6,mem_patch16
+	//return if c51 need to process bb event
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_out
+	rtn blank
+	//reaching here mains c51 cannot get bb event.
+	copy pdata,regc
+	call app_event_normal_process
+	branch app_process_bb_event_priority
+	
+app_discard_event:
+	arg 0,regc
+	rtn
+
+//************************************************//
+//*APP BB EVENT NORMAL PROCESS**//
+//************************************************//
+app_event_normal_process:
+	beq BT_EVT_BB_CONNECTED,app_evt_bt_conn
+	beq BT_EVT_BUTTON_LONG_PRESSED,app_evt_button_long_pressed
+	beq BT_EVT_SETUP_COMPLETE,app_evt_setup_complete
+	beq BT_EVT_HID_HANDSHAKE,app_evt_hid_handshake
+	beq BT_EVT_HID_CONNECTED,app_bb_event_hid_connected
+	beq BT_EVT_RECONN_FAILED,app_bb_event_reconn_failed
+	beq BT_EVT_BB_DISCONNECTED,app_bb_event_bb_disconn
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,app_bb_event_reconn_failed	
+	beq BT_EVT_LE_CONNECTED,app_le_event_bb_connected
+	beq BT_EVT_LE_DISCONNECTED,app_le_event_bb_disconn
+	beq BT_EVT_RECONN_STARTED,app_event_reconn_start
+	beq BT_EVT_ENTER_SNIFF,app_event_enter_sniff
+	beq BT_EVT_EXIT_SNIFF,app_event_exit_sniff
+	
+	beq BT_EVT_ML2CAP_CONN_REFUSED,app_event_ml2cap_conn_refused
+	beq BT_EVT_LINKKEY_GENERATE,app_event_linkkey_generate
+	beq BT_EVT_SWITCH_FAIL_MASTER,app_event_switch_fail_master
+	beq BT_EVT_SWITCH_SUCCESS_MASTER,app_event_switch_success
+	
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,app_evt_timer
+	rtn
+
+app_evt_bt_conn:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set0 APP_DISC_BY_BUTTON ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+app_event_switch_success:
+	jam 0,mem_switch_fail_master_count
+	rtn	
+
+app_event_switch_fail_master:
+	fetch 1,mem_switch_fail_master_count
+	increase 1,pdata
+	store 1,mem_switch_fail_master_count
+	sub pdata,1,null
+	branch app_bt_role_switch,positive
+	jam 0,mem_switch_fail_master_count
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_SWITCH_FAIL,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch app_bt_disconnect
+	
+app_process_bb_event_priority:
+	fetch 2,mem_cb_bb_event_process
+	branch callback_func
+
+app_check_wake_lock:
+	fetch 2,mem_cb_check_wakelock
+	branch callback_func
+	
+app_will_enter_lpm:
+	fetch 2,mem_cb_before_lpm
+	branch callback_func
+
+app_event_linkkey_generate:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_PAIRING ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch app_bt_store_reconn_info
+	
+app_event_reconn_start:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_RECONNECT,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_RECONN,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+app_evt_setup_complete:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SETUP_COMPLETE,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_SETUP_DONE,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+app_evt_hid_handshake:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_HID_HANDSHAKE,pdata
+	store 2,mem_ui_state_map
+	rtn
+	
+app_event_enter_sniff:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SNIFF,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_SNIFF,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_event_exit_sniff:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_SNIFF,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_le_event_bb_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	rtn
+	
+app_le_event_bb_disconn:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	jam 0,mem_le_switch_send_data
+	branch app_lpm_mult_disable
+	
+app_bb_event_hid_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_HID_CONN,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_evt_button_long_pressed:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BY_BUTTON,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_event_ml2cap_conn_refused:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_L2CAP_REFUSED,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch  app_bt_disconnect
+
+
+app_evt_timer:
+	set0 mark_ext_patch,mark
+	bpatch patch16_7,mem_patch16
+	storet 1,mem_app_evt_timer_count
+app_evt_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call ui_button_polling
+	call app_lpm_wake_auto_lock_timer
+	call app_unsniff_delay_timer
+	call app_discovery_timer
+	fetch 2,mem_cb_event_timer
+	call callback_func
+	branch app_evt_100ms_loop
+	
+app_unsniff_delay_timer:
+	fetch 1,mem_unsniff2sniff_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_unsniff2sniff_timer_count
+	nrtn blank
+	call context_check_idle
+	branch app_bt_enter_sniff,zero
+	rtn
+app_discovery_timer:
+	fetch 2,mem_discovery_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_discovery_timeout_timer_count
+	nrtn blank
+	call app_bt_stop_discovery
+	call app_led_off
+	fetch 2,mem_cb_discovry_timeout
+	branch callback_func 
+	
+app_bb_event_reconn_failed:
+	call app_disconn_reason_flag_clear
+app_clear_reconnect_flag:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_RECONNECT,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_bb_event_bb_disconn:
+	jam 0,mem_unsniff2sniff_timer_count
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_RECONNECT,app_bb_event_bb_reconn_disconn
+	isolate0 UI_STATE_BT_SETUP_COMPLETE,pdata
+ 	call app_discard_event,true
+app_bb_event_bb_reconn_disconn:
+	set0 mark_ext_patch,mark
+	bpatch patch17_0,mem_patch17
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_CONNECTED,pdata
+	set0 UI_STATE_BT_SETUP_COMPLETE,pdata
+	set0 UI_STATE_BT_HID_CONN,pdata
+	set0 UI_STATE_BT_HID_HANDSHAKE,pdata
+	set0 UI_STATE_BT_RECONNECT,pdata
+	store 2,mem_ui_state_map
+	branch app_lpm_mult_disable
+	
+app_bb_hibernate:
+	call app_disconn_reason_clear
+	branch app_enter_hibernate
+
+	
+app_disconn_reason_clear:
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	rtn
+app_disconn_reason_flag_clear:
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+	
+app_disconn_reason_collect_bt:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_disconn_reason_collect_ble:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BLE,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+	
+//************************************************//
+//********APP SHARED FUNCSIONS*******//
+//************************************************//
+
+
+app_check_sniff:
+	fetch 1,mem_ui_state_map
+	isolate1 UI_STATE_BT_SNIFF,pdata
+	rtn
+
+//*****************************************//
+//*****************API********************//
+//*****************************************//
+//app_clearflag_store:
+//	setarg 0
+//	branch app_flag_store
+app_initflag_store:
+	setarg EEPROM_INIT_FLAG
+app_flag_store:
+	store 2,mem_timeup
+	set0 mark_ext_patch,mark
+	bpatch patch17_1,mem_patch17
+	arg 2,temp
+	arg mem_timeup,rega
+	arg eeprom_module_init_flag,regb
+	branch iicd_write_eep_data
+
+//initflag is in eeprom to sure is eeprom nead to init
+app_initflag_check:
+	set0 mark_ext_patch,mark
+	bpatch patch17_2,mem_patch17
+	arg 2,temp
+	arg mem_pdatatemp,rega
+	arg eeprom_module_init_flag,regb
+	call iicd_read_eep_data
+	fetch 2,mem_pdatatemp
+	arg EEPROM_INIT_FLAG,temp
+	isub  temp,null
+	rtn
+
+
+app_start_auto_sniff:
+	fetch 1,mem_unsniff2sniff_timer
+	store 1,mem_unsniff2sniff_timer_count
+	rtn	
+	
+app_get_lpm_wake_lock:
+	arg wake_lock_app,queue
+	branch lpm_get_wake_lock
+
+app_put_lpm_wake_lock:
+	arg wake_lock_app,queue
+	branch lpm_put_wake_lock
+	
+app_lpm_wake_auto_lock:
+	jam  LPM_WAKE_UP_DELAY_TIMER,mem_wake_up_delay_timer
+	branch app_get_lpm_wake_lock
+app_lpm_wake_auto_lock_timer:
+	fetch 1,mem_wake_up_delay_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_wake_up_delay_timer
+	nrtn blank
+	branch app_put_lpm_wake_lock
+
+app_l2cap_flow_control_enable:
+	jam L2CAP_FLOW_CTRL_ENABLE,mem_l2cap_flow_ctrl_flag
+	rtn
+
+app_l2cap_flow_control_disable:
+	jam L2CAP_FLOW_CTRL_DISABLE,mem_l2cap_flow_ctrl_flag
+	rtn
+	
+app_bt_set_pincode:
+	jam BT_CMD_SET_PIN_CODE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_role_switch:
+	jam BT_CMD_ROLE_SWITCH,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_bt_start_reconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch17_3,mem_patch17
+	fetch 1,mem_app_connection_options
+	store 1,mem_connection_options
+	jam APP_FLAG_RECONNECT,mem_reconnect_flag
+	jam BT_CMD_RECONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd	
+	
+app_bt_reconnect_cancel:
+	jam BT_CMD_BB_RECONN_CANCEL,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_bt_disconnect:
+	jam BT_CMD_DISCONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd	
+
+app_bt_start_discovery_short:
+	fetch 2,mem_discovery_timeout
+	store 2,mem_discovery_timeout_timer_count
+app_bt_start_discovery_led_blink:
+	call app_led_start_blink
+app_bt_start_discovery:
+	jam BT_CMD_START_DISCOVERY,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_stop_discovery:
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	jam BT_CMD_STOP_DISCOVERY,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_direct_adv:
+	jam BT_CMD_START_DIRECT_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_stop_direct_adv:
+	jam BT_CMD_STOP_DIRECT_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_stop_adv:
+	jam BT_CMD_STOP_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_adv:	
+	jam BT_CMD_START_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_scan:
+	jam BT_CMD_LE_START_SCAN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_stop_scan:
+	jam BT_CMD_LE_STOP_SCAN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_conn:
+	jam BT_CMD_LE_START_CONN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_disconnect:
+	jam BT_CMD_LE_DISCONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_start_write:
+	jam BT_CMD_LE_START_WRITE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_led_start_blink:	
+	jam BT_CMD_LED_BLINK,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_led_on:
+	jam BT_CMD_LED_ON,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_led_stop_blink:
+app_led_off:
+	jam BT_CMD_LED_OFF,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_enter_hibernate:
+	jam BT_CMD_ENTER_HIBERNATE,mem_fifo_temp 
+	branch ui_ipc_send_cmd
+	
+app_bt_sniff_exit:
+	jam BT_CMD_EXIT_SNIFF,mem_fifo_temp
+	branch  ui_ipc_send_cmd
+	
+app_bt_enter_sniff:
+	jam BT_CMD_ENTER_SNIFF,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_store_reconn_info:
+	jam BT_CMD_STORE_RECONN_INFO_LE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_store_reconn_info:
+	jam BT_CMD_STORE_RECONN_INFO_BT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_lpm_mult_enable:
+	set1 mark_lpm_mult_enable,mark
+	rtn
+
+app_lpm_mult_disable:
+	set0 mark_lpm_mult_enable,mark
+	rtn
+	
+
+
+
+hci_rx_h4:
+	set0 mark_ext_patch,mark
+	bpatch patch17_4,mem_patch17
+	fetch 1,mem_hci_cmd
+	nrtn blank
+hci_rx_h4_1:
+	call hci_h4_parse_packet
+	ncall h4_rx_discard_packet,user
+	rtn
+	
+hci_h4_parse_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch17_5,mem_patch17
+	copy contru,rega
+	arg 4,temp
+	ifetch 1,contru //type
+	beq HCI_H4_TYPE_CMD,hci_h4_parse_packet_wait_len
+	increase 1,temp //acl packet has 2 bytes for length
+	beq HCI_H4_TYPE_ACL,hci_h4_parse_packet_wait_len
+	copy contru,pdata
+	hstore 2,core_uart_rrptr
+	rtn
+hci_h4_parse_packet_wait_len:
+	hfetch 2,core_uart_rxitems
+	isub temp,null
+	nbranch hci_h4_parse_packet_wait_len,positive // while(rxitems >= 4 or 5);
+	//Make sure length has been recieved.
+	disable user
+	copy rega,contru
+	call h4_get_rx_payload_len
+	iadd temp,temp
+hci_h4_parse_packet_wait:
+	hfetch 2,core_uart_rxitems
+	isub temp,null
+	nbranch hci_h4_parse_packet_wait,positive//wait for rcv a complete packet
+	copy rega,contru
+	ifetch 1,contru //HCI packet type
+	beq  HCI_H4_TYPE_CMD,process_hci_cmd
+	branch assert
+	
+h4_rx_discard_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch17_6,mem_patch17
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	call h4_get_rx_payload_len
+	iadd contru,contru
+	deposit contru
+	hstore 2,core_uart_rrptr
+	rtn
+
+
+//contru = pointer to packet start
+//return len via pdata
+h4_get_rx_payload_len:
+	ifetch 1,contru
+	increase 2,contru
+	beq HCI_H4_TYPE_ACL,h4_get_rx_payload_len_acl
+	ifetch 1,contru
+	rtn
+h4_get_rx_payload_len_acl:
+	ifetch 2,contru
+	rtn
+
+h4_get_tx_ptr:
+	hfetch 2,core_uart_twptr
+	increase -5,contwu
+	iadd contwu,contwu
+	rtn
+
+h4_send_packet_event:
+	arg HCI_H4_TYPE_EVENT,temp //type
+	branch h4_send_packet
+h4_send_packet_acl: //upgoing ACL
+	arg HCI_H4_TYPE_ACL,temp //type
+h4_send_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch17_7,mem_patch17
+	increase 1,loopcnt
+	hfetch 2,core_uart_twptr
+	copy pdata,contwu
+	copy loopcnt,pdata //length
+	istoret 1,contwu //packet type in temp
+	increase -1,pdata
+	iadd contwu,contwu
+	copy contwu,pdata
+	store 2,mem_hci_acl_tx_trigger_wptr
+	copy temp,pdata
+	rtneq HCI_H4_TYPE_ACL //not send acl packet immediately
+	fetch 2,mem_hci_acl_tx_trigger_wptr
+	hstore 2,core_uart_twptr
+	branch h4_send_acl_trigger_clear
+	
+	
+h4_send_acl_trigger_clear:
+	setarg 0
+	store 2,mem_hci_acl_tx_trigger_wptr
+	rtn
+
+	
+/*********************************/
+/**********   HCI  *****************/
+/*********************************/
+
+hci_init:
+	set0 mark_ext_patch,mark
+	bpatch patch18_0,mem_patch18
+	rtn wake
+	setarg hci_idle_dispatch
+	store 2,mem_cb_idle_process
+
+	setarg uart_baud_115200
+	store uart_baud_len,mem_baud
+hci_lpm_init:
+	set0 mark_ext_patch,mark
+	bpatch patch18_1,mem_patch18
+	setarg mem_h5rx_buf
+	hstore 2,core_uart_rsaddr
+	setarg mem_h5rx_buf_end
+	hstore 2,core_uart_readdr
+	setarg mem_h5tx_buf
+	hstore 2,core_uart_tsaddr
+	call hci_sel_init
+hci_reinit:
+	hjam 0x0,core_uart_ctrl
+ 	setarg mem_h5tx_buf
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+	setarg mem_h5rx_buf
+	hstore 2,core_uart_rrptr
+	store 2,mem_h5rx_rptr
+hci_init_common:
+	set0 mark_ext_patch,mark
+	bpatch patch18_2,mem_patch18
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_UART,pdata
+	hstore 2,core_clkoff
+	call uart_set_baud_by_mem
+	hjam uartclk_dpll,core_uart_clksel
+	hjam uart_ctrl_h4,core_uart_ctrl
+	rtn
+
+hci_sel_init:
+	setarg mem_h5tx_buf_end
+	hstore 2,core_uart_teaddr
+	hfetch 1,core_gpio_sel1
+	or_into 0x07,pdata
+	hstore 1,core_gpio_sel1
+	jam 0xff,mem_ucode_id_local
+	rtn
+	
+	
+hci_rx_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch18_3,mem_patch18
+	hfetch 1,core_uart_status
+	iforce regb
+	bbit0 uart_status_rx_fifo_empty,hci_rx_packet_cont
+	hfetch 2,core_uart_rxitems
+	iforce regc
+	arg 0x44f,temp
+	isub temp,null
+	nrtn zero
+hci_rx_packet_cont:
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	branch hci_rx_h4
+	
+uart_send_byte:
+	hfetcht 1,core_uart_status
+	isolate1 6,temp
+	branch uart_send_byte,true
+	hstore 1,core_uart_txd
+	rtn
+	
+process_hci_cmd:
+	set0 mark_ext_patch,mark
+	bpatch patch18_4,mem_patch18
+	fetch 1,mem_hci_cmd
+	branch process_hci_cmd_cont,blank
+	enable user					/* last command still there */
+	rtn
+process_hci_cmd_cont:
+	ifetch 2,contru
+	iforce alarm				/* alarm is used for sending */
+	iforce queue				/* queue is OCF */
+	ifetch 1,contru		/* skip hci length */
+	iforce temp			/* temp has the length */
+	rshift2 alarm,pdata
+	rshift8 pdata,pdata
+	beq HCI_OGF_VENDOR_SPECIFIC,phci_grp_vendor_specific
+	rtn
+
+
+phci_grp_vendor_specific:
+	set0 mark_ext_patch,mark
+	bpatch patch18_5,mem_patch18
+	deposit queue
+	beq HCI_VENDOR_CMD_RESET,hci_normal_reply
+	beq HCI_VENDOR_CMD_CHIPID,phci_grp_vendor_chipid
+	beq HCI_VENDOR_CMD_BAUD,phci_grp_vendor_baud
+	beq HCI_VENDOR_CMD_PATCH,phci_grp_vendor_patch
+	beq HCI_VENDOR_CMD_PATCH_DONE,phci_grp_vendor_done
+	beq HCI_VENDOR_CMD_ECHO,hci_normal_reply
+	beq HCI_VENDOR_CMD_BDADDR,phci_grp_vendor_bdaddr
+	beq HCI_VENDOR_CMD_ENTER_LPM,phci_grp_vendor_enter_lpm
+	
+	beq HCI_VENDOR_CMD_MEM,phci_grp_vendor_mem
+	beq HCI_VENDOR_CMD_EEP,phci_grp_vendor_eep
+	branch hci_normal_reply
+
+phci_grp_vendor_enter_lpm:
+	call hci_normal_reply
+	call wait_uarttx
+	call gpio_pu_uart_tx
+hci_enter_lpm:
+	call app_put_lpm_wake_lock
+	call app_l2cap_flow_control_enable
+	branch gpio_rx_config_input_with_pu
+
+hci_exit_lpm:
+	jam HCI_RX_READY,mem_hci_lt_rx_state
+	call app_get_lpm_wake_lock
+	call hci_lpm_init
+	branch app_l2cap_flow_control_disable
+	
+phci_grp_vendor_chipid:
+	call hci_get_cmd_complete_ptr
+	hfetch 2,core_chipid
+	istore 2,contwu
+	force 6,loopcnt
+	branch hci_command_complete
+	
+phci_grp_vendor_baud:
+	ifetch 2,contru
+	store 2,mem_baud
+	hstore 2,core_uart_baud
+	rtn
+	
+phci_grp_vendor_patch:
+	//hjam 0x80,core_ucode_ctrl
+	ifetch 1,contru
+	copy pdata,temp //check sum via temp
+	hstore 1,core_ucode_low
+	ifetch 1,contru
+	iadd temp,temp
+	set1 7,pdata
+	hstore 1,core_ucode_ctrl
+	ifetch 1,contru
+	iadd temp,temp
+	copy pdata,loopcnt
+phci_grp_vendor_patch_loop:
+	ifetch 1,contru
+	hstore 1,core_ucode_data
+	iadd temp,temp
+	loop phci_grp_vendor_patch_loop
+	and temp,0xff,temp
+	ifetch 1,contru
+	isub temp,null
+	nbranch phci_grp_vendor_patch_bad,zero
+	branch hci_normal_reply
+
+phci_grp_vendor_done:
+	arg 0x20,loopcnt    //patch switch length
+	arg mem_patch00,contw
+	arg 0,temp //checksum
+phci_grp_vendor_done_loop:
+	ifetch 1,contru
+	istore 1,contw
+	iadd temp,temp
+	loop phci_grp_vendor_done_loop
+	and temp,0xff,temp
+	ifetch 1,contru
+	isub temp,null
+	nbranch phci_grp_vendor_patch_bad,zero
+	hjam 0,core_ucode_ctrl
+	call hci_normal_reply
+	call h4_rx_discard_packet
+	branch soft_reset
+
+phci_grp_vendor_patch_bad:
+	hjam 0,core_ucode_ctrl
+	branch start
+	
+phci_grp_vendor_bdaddr:
+	ifetch 6,contru
+	store 6,mem_lap
+	branch hci_normal_reply
+
+
+phci_grp_vendor_mem:
+	ifetch 1,contru
+	store 1,mem_hci_curr_len
+	copy pdata,loopcnt
+	ifetch 2,contru
+	store 2,mem_hci_curr_target
+	copy pdata,contw
+	call uart_copy_rx_bytes
+	branch hci_normal_reply
+
+
+phci_grp_vendor_eep:
+	ifetch 1,contru
+	store 1,mem_hci_curr_len
+	copy pdata,loopcnt
+	ifetch 2,contru
+	store 2,mem_hci_curr_target
+	arg mem_l2cap_rxbuff1,contw
+	call uart_copy_rx_bytes
+	fetcht 1,mem_hci_curr_len
+	arg mem_l2cap_rxbuff1,rega
+	fetch 2,mem_hci_curr_target
+	branch iicd_write_ota_data
+	
+	
+
+	
+hci_normal_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch18_6,mem_patch18
+	force 4,loopcnt
+hci_command_complete:	/* loopcnt is hci length */
+	call hci_get_payload_ptr
+	force 0x1,pdata
+	istore 1,contwu
+	deposit alarm
+	istore 3,contwu
+	force HCI_EVENT_COMMAND_COMPLETE,queue
+hci_send_event:		/* queue:event code, loopcnt: length */
+	set0 mark_ext_patch,mark
+	bpatch patch18_7,mem_patch18
+	call hci_get_packet_ptr
+	deposit queue
+	istore 1,contwu
+	deposit loopcnt
+	istore 1,contwu
+hci_send_event_raw:
+	force 5,queue
+	increase 2,loopcnt
+hci_send_packet:
+	branch h4_send_packet_event
+
+hci_send_commu_ready_event:
+	force HCI_EVENT_VENDOR_SPECIFIC,queue
+	call hci_get_payload_ptr
+	setarg HCI_VENDOR_EVENT_COMMU_READY
+	istore 1,contwu
+	force 1,loopcnt
+	branch hci_send_event
+
+hci_get_cmd_complete_ptr:
+	force 12,contwu
+	branch hci_get_tx_ptr
+
+hci_get_payload_ptr:
+	force 8,contwu
+	branch hci_get_tx_ptr
+
+hci_get_packet_ptr:
+	force 6,contwu
+hci_get_tx_ptr:
+	branch h4_get_tx_ptr
+
+	
+
+calc_tx_crc16:
+	pulse crc16
+	enable enable_crc
+crcloop:
+	ifetch 1,contwu
+	inject bucket,8
+	loop crcloop
+	enable enable_parity
+	inject bucket,16
+	disable enable_parity
+	disable enable_crc
+	disable crc16
+	byteswap pdata,pdata
+	rtn
+
+
+
+cmd_exit:
+	jam 0,mem_hci_cmd
+	rtn
+cmd_check_plap:
+	fetch 6,mem_hci_plap
+	fetcht 6,mem_plap
+	isub temp,null
+	rtn
+
+	
+	
+//enable ssp master sm
+cmd_pair:
+	fetch 1,mem_op
+	bbit1 op_inrand_req,cmd_pair_passive
+	call tid_initiate
+	jam LMP_IN_RAND,mem_lmo_opcode2
+	branch cmd_exit
+cmd_pair_passive:
+	set0 op_inrand_req,pdata
+	store 1,mem_op
+	call lmp_accept_inrand
+	setarg 0
+	setflag master,smap_lmptid,pdata		
+	store 1,mem_lmo_tid2
+	branch cmd_exit
+	rtn
+cmd_in_sniff:
+	jam LMP_SNIFF_REQ,mem_lmo_opcode2
+	arg mem_sniff_payload,contw
+	setarg 0
+	isolate1 27,clke_bt
+	setflag true,1,pdata		/* use init 2 if bit27 of clke is 1 */
+	istore 1,contw	
+	setarg 0	/* dsniff */
+	istore 2,contw
+	fetch 2,mem_sniff_param_interval	/* tsniff */
+	istore 2,contw
+	fetch 1,mem_sniff_param_attempt	/* attempt */
+	istore 2,contw
+	fetch 1,mem_sniff_param_timeout	/* timeout */
+	istore 2,contw
+	branch cmd_exit
+	
+cmd_exit_sniff:
+	jam LMP_UNSNIFF_REQ,mem_lmo_opcode2
+	branch cmd_exit
+
+hci_idle_dispatch:
+	call gpio_check_uart_state
+	rtn true
+	arg UART_WAKEUP_RX,temp
+	call gpio_get_bit
+	nbranch uart_wake_up,true
+	jam HCI_RX_WAKE,mem_hci_lt_rx_state
+	rtn
+uart_wake_up:
+	fetch 1,mem_hci_lt_rx_state
+	rtnne HCI_RX_WAKE
+	call hci_exit_lpm
+	branch hci_send_commu_ready_event
+	
+	
+/**
+* the following API is to send the HID data
+* 
+*/
+
+/**
+* the following API is to process the hid  rx data
+* 
+*/
+//handle the hid data
+
+hid_rx_process:
+	set0 mark_ext_patch,mark
+	bpatch patch19_0,mem_patch19
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	ifetch 1,contr
+	and pdata,0x0f,temp
+	rshift4 pdata,pdata //hidtype
+	beq hid_type_set_idle,hid_rx_process_handshake
+	beq hid_type_set_protocol,hid_rx_process_handshake
+	beq hid_type_data,hid_rx_process_data
+	beq HID_TYPE_SET_REPORT,hid_rx_process_set_report
+	beq HID_TYPE_CONTROL,hid_rx_process_hid_control
+	rtn
+
+hid_rx_process_hid_control:
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,hid_rx_process_virtual_cable_unplug
+	beq HID_CONTROL_P_SUSPEND,hid_rx_process_suspend
+	rtn
+	
+hid_rx_process_virtual_cable_unplug:
+	jam BT_EVT_VIRTUAL_CABLE_UNPLUG,mem_fifo_temp
+	call ui_ipc_send_event
+	fetch 1,mem_device_option
+	rtnne dvc_op_mouse,pdata
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,eeprom_erase_reconn_info
+	rtn
+hid_rx_process_suspend:
+	rtn
+
+hid_rx_process_set_report:
+	call hid_rx_process_data
+	arg 0x01,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_ctrl_remote_cid
+	istore 2,contw
+	setarg 0x00
+	istore 1,contw
+	rtn
+
+hid_rx_process_handshake:
+	arg 1,regA//payload length
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_ctrl_remote_cid
+	istore 2,contw
+	setarg 0
+	istore 1,contw
+	jam 1,mem_ui_data_txbuff_length
+	fetch 1,mem_hid_control_state
+	set1 l2cap_channel_hid_handshake_done
+	store 1,mem_hid_control_state
+	jam BT_EVT_HID_HANDSHAKE,mem_fifo_temp
+	branch ui_ipc_send_event
+
+hid_rx_process_data:
+	ifetch 1,contr
+	beq HID_REPORT_ID_KB,hid_rx_process_data_hid_kb
+	rtn
+
+hid_rx_process_data_hid_kb:
+	copy contr,rega
+	fetch 1,mem_device_option
+	rtnne dvc_op_kb,pdata
+	copy rega,contr
+	ifetch 1,contr
+	store 1,mem_kb_caps_led_status
+	store 1,mem_hid_rx_data
+	fetch 1,mem_kb_led_on_timer
+	nrtn blank
+	jam 2,mem_led_cap_delay_timer
+	rtn
+	
+hid_malloc_tx_buff:
+	call l2cap_malloc
+	copy rega,temp
+	storet 1,mem_ui_data_txbuff_length
+	copy pdata,contw
+	copy rega,pdata
+	istore 2,contw //hid payload length
+	rtn
+
+
+kb_init:	
+	call kb_clear_keys
+	rtn wake
+	//call module_hci_pairing_just_work_mode
+	call kb_init_common
+	call kb_led_int
+	setarg kb_process_idle
+	store 2,mem_cb_idle_process
+	setarg kb_send_process
+	store 2,mem_cb_bt_process
+	setarg kb_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg kb_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg kb_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+    	setarg kb_before_hibernate
+	store 2,mem_cb_before_hibernate
+	jam 0,mem_sp_flag
+	jam 0,mem_master_sp_flag
+	call kb_init_environment
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,app_bt_start_discovery_short
+kb_check_reconn_target:
+	fetch 1,mem_xrecord_mode
+	beq REC_3_MODE,kb_3_check_reconn_target
+	branch kb_start_discovery
+kb_3_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch app_bt_start_discovery_short,blank
+	branch app_bt_start_reconnect
+
+kb_init_environment:
+	call app_initflag_check
+	branch kb_load_eeprom_param,zero
+	setarg KB_MAP2_STATUS_WIN
+	store 1,mem_kb_current_status
+	call store_current_status
+	fetch 6,mem_master_addr
+	store 6,mem_plap
+	store 6,mem_hci_plap
+	call eeprom_store_bd_reconn_info
+	jam REC_3_MODE,mem_xrecord_mode
+	branch app_initflag_store
+
+kb_load_eeprom_param:
+	call read_current_status
+	branch eeprom_load_reconn_info
+
+
+kb_init_common:
+	set0 mark_ext_patch,mark
+	bpatch patch19_1,mem_patch19
+	hjam 0,core_gpio_oe0
+	hjam 0xff,core_gpio_pu0
+	hjam 0xff,core_gpio_oe1
+	hjam 0xff,core_gpio_oe2
+	hfetch 1,core_gpio_oe3
+	or_into 0x07,pdata
+	hstore 1,core_gpio_oe3
+	hjam 0x00,core_gpio_sel
+	hjam 0x00,core_gpio_sel1
+	hjam 0x00,core_kscn_rowmask
+	setarg KB_KSCAN_COL_1
+	lshift3 pdata,pdata
+	add pdata,KB_KSCAN_ROW_1,pdata
+	hstore 1,core_kscn_rctc
+	hjam 0xff,core_gpio_key0
+	hjam 0xFf,core_gpio_key1
+	hfetch 1,core_gpio_key2
+	or_into 0x01,pdata
+	hstore 1,core_gpio_key2
+	
+	hfetch 1,core_config
+	set1 2,pdata //set keyscan clk source
+	hstore 1,core_config
+	hjam 0x0c,core_kscn_ksctrl
+	hjam 0x30,core_kscn_scancycle_timer_h
+	hfetch 1, core_clkoff+1
+	set0 1,pdata
+	hstore 1,core_clkoff+1
+	hfetch 1, core_kscn_ksctrl
+	set1 0,pdata
+	hstore 1,core_kscn_ksctrl	
+	rtn
+kb_led_int:
+	call kb_led_cap_init
+	call kb_led_num_init
+	branch kb_led_scl_init
+kb_led_cap_init:
+	fetch 1,mem_led_cap_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_cap_gpio
+ 	branch gpio_config_output
+kb_led_num_init:
+	fetch 1,mem_led_num_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_num_gpio
+ 	branch gpio_config_output
+kb_led_scl_init:
+	fetch 1,mem_led_scl_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_scl_gpio
+ 	branch gpio_config_output
+
+kb_led_cap_delay_timer:	
+	fetch 1,mem_led_cap_delay_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_led_cap_delay_timer
+	nrtn blank
+kb_led_capslock:
+	set0 mark_ext_patch,mark
+	bpatch patch19_2,mem_patch19
+	fetch 1,mem_hid_rx_data
+	copy pdata,rega
+	fetcht 1,mem_led_num_gpio
+	isolate1 KB_NUM_LOCK_SELECTED,rega
+	call gpio_out_flag
+	fetcht 1,mem_led_cap_gpio
+	isolate1 KB_CAPS_LOCK_SELECTED,rega
+	call gpio_out_flag
+	fetcht 1,mem_led_scl_gpio
+	isolate1 KB_SCROLL_LOCK_SELECTED ,rega
+	call gpio_out_flag
+	branch kb_auto_disable_mult
+kb_enble_mult_timer:
+	fetch 1,mem_auto_enable_mult_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_auto_enable_mult_timer
+	nrtn blank
+	branch app_lpm_mult_enable
+kb_auto_disable_mult:
+	fetch 1,mem_auto_enable_mult_timer_init
+	store 1,mem_auto_enable_mult_timer
+	branch app_lpm_mult_disable
+	
+kb_led_cap_status:
+	jam 1,mem_led_cap_flag
+	branch bt_send_kb_data_by_report0+8
+
+
+kb_send_process:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	fetch 6,mem_master_addr
+	fetcht 6,mem_plap
+	isub temp,null
+	branch kb_debug_send_keydata,zero
+	fetch 1,mem_pincode_state
+	beq pincode_state_wait_pincode,kb_pincode
+	fetch 1,mem_hid_interrupt_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	fetcht 8,mem_table_last_repory_data0
+	fetch 8,mem_map2_out_report0
+	store 8,mem_table_last_repory_data0
+	isub temp,null
+	ncall bt_send_kb_data_by_report0,zero
+	
+	fetcht 8,mem_table_last_repory_data1
+	fetch 8,mem_map2_out_report1
+	store 8,mem_table_last_repory_data1
+	isub temp,null
+	ncall bt_send_kb_data_by_report1,zero
+	rtn
+
+kb_debug_send_keydata:
+	fetch 1,mem_kb_down
+	beq 0x7f,fn_test
+	fetcht 8,mem_table_last_repory_data0
+	fetch 8,mem_map2_out_report0
+	store 8,mem_table_last_repory_data0
+	isub temp,null
+	rtn zero
+	arg mem_map2_out_report0,contr
+	arg mem_table_temp,rega
+	call fill_kb_send_data
+	arg 10,regA
+	call hid_malloc_tx_buff
+	setarg L2CAP_HID_Interrupt_channel
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	fetch 8,mem_table_temp
+	istore 8,contw
+	rtn
+fn_test:
+	store 8,mem_map2_out_report0
+	branch kb_debug_send_keydata+2
+
+
+bt_send_kb_data_by_report0:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	fetch 1,mem_kb_temp_flag
+	rtnbit1 KEY_SEARCH_M_KEY_FLAG
+	call init_kb_no_data_timer
+	fetch 1,mem_map2_out_report0
+	beq CAPS_LOCK_DATA,kb_led_cap_status
+	jam 0,mem_led_cap_flag
+	arg mem_map2_out_report0,contr
+	arg mem_table_temp,rega
+	call fill_kb_send_data
+	call bt_send_kb_data_by_report0_ptr
+	fetch 8,mem_table_temp
+	istore 8,contw
+	rtn
+
+fill_kb_send_data:
+	arg 0,temp
+	add rega,2,contw
+	arg KB_MAP2_REPORT_LENGTH,loopcnt
+store_key:
+	ifetch 1,contr
+	bbit0 7,not_key_status
+	and pdata,7,queue
+	qset1 temp
+	branch store_key_next
+not_key_status:
+	istore 1,contw
+store_key_next:
+	loop store_key
+	istoret 2,rega
+	rtn
+	
+bt_send_kb_data_by_report1:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	call init_kb_no_data_timer
+	fetch 1,mem_map2_out_report1
+	beq SFK_ANDROID_MAP,android_search_m_key
+	beq SFK_IOS_SCREENSHOT,ios_screenshot
+	setarg 0
+	store 8,mem_table_temp
+	call fill_kb_send_report1_data
+	
+	fetch 1,mem_kb_temp_flag
+	bbit1 KEY_SEARCH_M_KEY_FLAG,android_search_m_key_releas
+	call bt_send_kb_data_by_report1_ptr
+	fetch 4,mem_table_temp
+	istore 4,contw
+	rtn
+
+fill_kb_send_report1_data:
+	fetch 1,mem_map2_out_report1
+	rtn blank
+	enable true
+	fetch 1,mem_map2_out_report1
+	copy pdata,queue
+	fetch 8,mem_table_temp
+	qsetflag true,pdata
+	store 8,mem_table_temp
+	disable true
+	rtn
+
+init_kb_no_data_timer:
+	fetch 2,mem_kb_no_data_timeout
+	store 2,mem_kb_no_data_timer
+	rtn
+kb_check_no_data_timer:
+	fetch 2,mem_kb_no_data_timer
+	rtn blank
+	fetch 2,mem_kb_no_data_timer
+	increase -1,pdata
+	store 2,mem_kb_no_data_timer
+	nrtn blank
+	branch kb_disconnect
+kb_disconnect:
+	setarg 0
+	store 2,mem_kb_no_data_timer
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,app_bt_disconnect
+	rtn
+
+bt_send_kb_data_by_report0_ptr:
+	arg 10,regA
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	rtn
+bt_send_kb_data_by_report1_ptr:
+	arg 6,regA
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	rtn
+
+android_search_m_key_releas:
+	call bt_send_kb_data_by_report0_ptr
+	setarg 0
+	istore 8,contw
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0
+	istore 4,contw
+	fetch 1,mem_kb_temp_flag
+	set0 KEY_SEARCH_M_KEY_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	rtn
+ios_screenshot:
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0x2002	//Home key,Lock
+	istore 4,contw
+	rtn
+
+android_search_m_key:
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0x40     // search key
+	istore 4,contw
+	call bt_send_kb_data_by_report0_ptr
+	setarg 0
+	istore 2,contw
+	setarg 0x10  	// M key
+	istore 7,contw
+	fetch 1,mem_kb_temp_flag
+	set1 KEY_SEARCH_M_KEY_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	rtn
+
+
+kb_pincode:
+	set0 mark_ext_patch,mark
+	bpatch patch19_3,mem_patch19
+	fetch 1,mem_kb_temp_flag
+	rtnbit0 KEY_EVENT_FLAG
+	set0 KEY_EVENT_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	fetcht 1,mem_pin_length
+	setarg mem_pin
+	iadd temp,contw
+	fetch 1,mem_kb_down
+	branch kb_pincode_rtn,blank
+	beq KB_KCODE_BKSP,kb_pincode_bksp
+	bne KB_KCODE_ENTER,kb_pincode_data
+	storet 1,mem_pin_length
+	branch app_bt_set_pincode
+	
+kb_pincode_rtn:
+	storet 1,mem_pin_length
+	rtn
+kb_pincode_bksp:
+	fetch 1,mem_pin_length
+	rtn blank
+	increase -1,pdata
+	store 1,mem_pin_length
+	arg mem_pin,contw
+	iadd contw,contw
+	setarg 0
+	istore 1,contw
+	enable user2
+	branch kb_send_pin
+kb_pincode_data:
+	sub pdata,KB_KCODE_1_M1,null
+	rtn positive
+	arg 0x30,temp
+	sub pdata,KB_KCODE_0,null
+	nrtn positive
+	branch kb_pincode_0,zero
+	arg KB_KCODE_1_M1,temp
+	isub temp,temp
+	or_into 0x30,temp
+kb_pincode_0:
+	istoret 1,contw
+	fetch 1,mem_pin_length
+	increase 1,pdata
+	store 1,mem_pin_length
+	disable user2
+	branch kb_send_pin
+
+kb_send_pin:
+	fetch 2,mem_hid_int_remote_cid
+	rtn blank
+	arg 3,regA
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0xffa1
+	istore 2,contw
+	setarg 0
+	setflag user2,0,pdata
+	istore 1,contw
+	rtn
+
+
+	
+kb_kscan_check_if_empty:
+	disable user
+	disable user2
+	hfetch 1,core_kscn_kstat
+	rtnbit1 KB_KSCAN_STAT_EMPTY
+
+kb_kscan_check_ghost:
+	hfetch 1,core_kscn_event_num
+	bbit1 KB_KSCAN_KEY_EVENT_STAT,kb_kscan_process_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_GHOST,kb_kscan_process_event
+	hfetch 1,core_kscn_event
+	branch kb_kscan_check_if_empty
+		
+kb_kscan_process_event:
+	enable user
+	enable user2
+	hfetch 1,core_kscn_event_num
+	isolate0 kb_KSCAN_KEY_EVENT_STAT,pdata
+	hfetch 1,core_kscn_event
+	arg mem_kb_map,contr
+	iadd contr,contr
+	ifetch 1,contr
+	bbit1 7,kb_kscan_read_statekey
+	nbranch kb_kscan_release_a_key_data,true	
+	disable user2
+	iforce temp
+	fetch 1,mem_kb_keys
+	sub pdata,4,null
+	nrtn positive
+	copy pdata,rega
+	arg 3,loopcnt
+	arg mem_kb_report_data,contr
+kb_kscan_check_report_data:
+	ifetch 1,contr
+	isub temp,null
+	branch kb_kscan_check_if_empty,zero
+	loop kb_kscan_check_report_data
+kb_kscan_store_a_key_data:
+	copy rega,pdata
+	arg mem_kb_report_data,contw
+	iadd contw,contw
+	istoret 1,contw
+	increase 1,pdata
+	store 1,mem_kb_keys
+ 	hfetch 1,core_kscn_event_num
+	rshift3 pdata,pdata
+	nbranch kb_kscan_check_nextevent, blank
+	branch kb_kscan_prepare_send
+
+kb_kscan_check_nextevent:
+	increase -1,pdata
+	branch kb_kscan_prepare_send,zero
+	hfetch 1,core_kscn_event_num
+	and_into 0x01,pdata
+	beq KB_KSCAN_KEY_PRESS,kb_kscan_check_if_empty                 // key pressed
+	beq KB_KSCAN_KEY_RELEASE,kb_kscan_prepare_send              // key release
+	rtn
+kb_kscan_prepare_send:	
+	enable user2
+	rtn
+	
+kb_kscan_release_a_key_data:
+	and pdata,0xff,temp
+	fetch 1,mem_kb_keys
+	rtn blank
+	iforce loopcnt
+	arg mem_kb_report_data,contr
+kb_kscan_find_same_key_data:
+	ifetch 1,contr
+	isub temp,null
+	branch kb_kscan_release_foundkey,zero
+	loop kb_kscan_find_same_key_data
+	rtn
+
+
+kb_kscan_check_nextevent2:
+ 	hfetch 1,core_kscn_event_num
+	and_into 0x01,pdata
+	beq KB_KSCAN_KEY_PRESS,kb_kscan_prepare_send
+	beq KB_KSCAN_KEY_RELEASE,kb_kscan_check_if_empty
+	rtn
+	
+kb_kscan_read_statekey:
+	and pdata,7,queue
+	fetch 1,mem_kb_state
+	qsetflag true,pdata
+	store 1,mem_kb_state
+	rtn
+
+kb_clear_keys:
+	setarg 0
+	store 8,mem_kb_down
+	store 1,mem_kb_keys
+	rtn
+	
+kb_clean_kscan_fifo:
+	hfetch 1,core_kscn_event_num
+	hfetch 1,core_kscn_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_EMPTY,kb_clean_kscan_fifo
+	setarg 0xff
+	enable user
+	rtn
+
+kb_process_idle:
+	call kb_ui_check_paring_button
+	rtn wake
+kb_process:
+	fetch 1,mem_kb_get_fn_flag
+	call kb_recover_kb_down_data,blank
+	call kb_kscan_fn
+	fetch 1,mem_kb_keys
+	rtn blank
+	call kb_read_gpio
+	fetch 4,mem_kb_gpio_val
+	store 4,mem_kb_gpio_last_val
+	rtn
+
+kb_ui_check_paring_button:
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_RECONNECT
+	fetch 1,mem_kb_temp_flag
+	rtnbit1 CACEL_RECONN_FLAG,pdata
+	fetch 2,mem_kb_down
+	fetcht 2,mem_kb_fn_c
+	isub temp,null
+	branch check_bb_reconn_cancel, zero
+	fetch 2,mem_kb_down
+	fetcht 2,mem_kb_c_fn
+	isub temp,null
+	branch check_bb_reconn_cancel, zero
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,check_bb_reconn_cancel
+	rtn
+
+check_bb_reconn_cancel:
+	fetch 1,mem_kb_temp_flag
+	set1 CACEL_RECONN_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	branch check_51cmd_bb_reconn_cancel
+
+
+kb_read_gpio:
+	hfetch 3,core_gpio_key0
+	iforce regb
+	hfetch 4,core_gpio_pu0
+	iforce rega
+	hfetcht 8,core_gpio_oe0	
+	setarg 0
+	hstore 3,core_gpio_key0
+	nop 100
+	hfetch 1,core_gpio_in
+	store 1,mem_kb_gpio_val
+	hjam 0,core_gpio_pu0
+	hfetch 1,core_gpio_oe3
+	and_into 0xf0,pdata
+	hstore 1,core_gpio_oe3
+	xor_into 0xff,pdata
+	hstore 1,core_gpio_pu3
+	setarg 0xff
+	hstore 3,core_gpio_oe0
+	setarg 0xffff
+	hstore 2,core_gpio_pu1
+	nop 100
+	hfetch 3,core_gpio_in1
+	iand regb,pdata
+	store 3,mem_kb_gpio_val + 1
+	deposit rega
+	hstore 4,core_gpio_pu0
+	hstoret 8,core_gpio_oe0
+	deposit regb
+	hstore 3,core_gpio_key0
+	rtn	
+
+kb_pairing_button_check:
+	fetch 1,mem_scan_mode// rtn when scan_mode =03 
+	nrtn blank
+	fetch 1,mem_app_handshake_flag//rtn when handshake success 
+	nrtn blank
+	fetch 1,mem_ui_button_timer// rtn when timer >3s
+	rtn blank
+	fetch 1,mem_ui_button_last_state//rtn when pairing button press
+	nrtn blank
+	branch app_enter_hibernate
+	
+kb_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_HID_CONNECTED,kb_hid_connected
+	beq BT_EVT_PINCODE_REQ,kb_process_pincode
+	beq BT_EVT_HID_HANDSHAKE,kb_bt_hid_handshake
+	beq BT_EVT_BUTTON_LONG_PRESSED,kb_bb_event_discovery_btn
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	beq BT_EVT_BB_CONNECTED,kb_stop_discovery
+	beq BT_EVT_BB_DISCONNECTED,kb_bb_disconnected
+	beq BT_EVT_RECONN_FAILED,kb_bb_event_reconn_failed
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,kb_bb_event_reconn_failed
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,kb_bb_event_timer
+	rtn
+
+
+kb_bb_event_timer:
+	set0 mark_ext_patch,mark
+	bpatch patch19_4,mem_patch19
+	storet 1,mem_app_evt_timer_count
+kb_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call kb_led_cap_delay_timer
+	call kb_check_hid_handshake_timer	
+	call kb_enble_mult_timer
+	call kb_check_no_data_timer
+	call select_system_led_timer
+	branch kb_bb_event_100ms_loop
+
+kb_bb_event_reconn_failed:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,kb_start_discovery
+	fetch 1,mem_kb_temp_flag
+	bbit0,CACEL_RECONN_FLAG,app_bb_hibernate
+	fetch 1,mem_kb_temp_flag
+	set0 CACEL_RECONN_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_RECONNECT,pdata
+	store 2, mem_ui_state_map
+	rtn
+
+kb_bb_disconnected:
+	set0 mark_ext_patch,mark
+	bpatch patch19_5,mem_patch19
+	call kb_bb_discon_clear_stack
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	bbit1 APP_DISC_AFTER_PAIRING,kb_event_light_state_pairing
+	bbit1 APP_DISC_AFTER_RECONN,kb_event_light_state_reconn
+	branch kb_start_discovery
+kb_event_light_state_pairing:
+	bbit1 APP_DISC_AFTER_HANDSHAKE,kb_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,kb_event_light_state_hibernate
+	branch kb_start_discovery
+kb_event_light_state_reconn:
+kb_event_light_state_hibernate:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,kb_start_discovery
+	branch app_bb_hibernate
+	
+kb_bb_discon_clear_stack:
+	jam APP_HANDSHAKE_NULL,mem_app_handshake_flag	
+	jam 0,mem_kb_debug_sm
+	rtn
+
+	
+kb_check_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+	branch kb_bt_hid_handshake
+
+
+kb_bb_event_discovery_btn:
+	setarg 0
+	store 2,mem_kb_direct_timer
+	store 1,mem_pin_length
+	call led_cap_darking
+	call kb_3_0_bb_event_discovery_btn
+	call app_lpm_mult_disable
+	branch kb_start_discovery
+
+led_cap_darking:
+	jam 1,mem_led_cap_gpio_status
+	fetcht 1,mem_led_cap_gpio
+	branch gpio_out_inactive
+
+kb_3_0_bb_event_discovery_btn:
+	set0 mark_ext_patch,mark
+	bpatch patch19_6,mem_patch19
+	fetch 2,mem_ui_state_map
+	isolate1 UI_STATE_BT_RECONNECT,pdata
+	call app_bt_reconnect_cancel,true
+	fetch 2,mem_discovery_timeout
+	store 2,mem_discovery_timeout_timer_count	
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BY_BUTTON,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,app_bt_disconnect
+	rtn
+
+	
+kb_stop_discovery:
+	call app_led_stop_blink
+	setarg 0
+	store 2,mem_kb_discovery_timer
+	branch app_bt_stop_discovery
+
+kb_start_discovery:
+	call app_lpm_mult_disable
+	fetch 2,mem_discovery_timeout
+	store 2,mem_kb_discovery_timer
+	call app_bt_start_discovery
+	jam 0,mem_kb_led_on_timer
+	//jam 5,mem_led_device_blink_count
+	call app_led_start_blink
+	call kb_clean_kscan_fifo
+	branch kb_clear_keys
+	
+kb_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+	
+kb_process_pincode:
+	jam 0,mem_hid_handshake_timer_count
+	jam 0,mem_pin_length
+	call kb_clear_keys
+	branch kb_clean_kscan_fifo
+
+
+kb_before_hibernate:
+	fetch 1,mem_kb_led_on_timer
+	branch kb_before_hibernate_cont,blank
+	arg 320,temp
+	imul32 temp,temp
+	copy clkn_bt,pdata
+	iadd temp,temp
+kb_before_hibernate_wait:
+	copy clkn_bt,pdata
+	isub temp,null
+	nbranch kb_before_hibernate_wait,positive
+kb_before_hibernate_cont:
+	fetcht 1,mem_led_power_gpio
+ 	call gpio_out_inactive
+ 	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+kb_wake_common:
+	hjam 0x00,core_gpio_key0
+	hjam 0x00,core_gpio_key1
+	hfetch 1,core_gpio_key2
+	and_into 0xf0,pdata
+	hstore 1,core_gpio_key2
+	setarg 0x00
+	store 4,mem_gpio_wakeup_high
+	setarg 0xff
+	fetcht 1,mem_ui_button_gpio
+	copy temp,queue
+	qset1 pdata
+	store 4,mem_gpio_wakeup_low
+	rtn
+kb_process_lpm_before:
+	call kb_wake_common
+	fetch 1,mem_lpm_current_mult
+	nrtn blank
+	jam 0,mem_gpio_wakeup_low		// no key wakeup when key is down
+	rtn
+
+kb_hid_connected:
+ 	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	call kb_clean_kscan_fifo
+	branch kb_clear_keys
+
+	
+kb_bt_hid_handshake:
+	set0 mark_ext_patch,mark
+	bpatch patch19_7,mem_patch19
+  	call ui_led_off
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call kb_clean_kscan_fifo
+	call kb_clear_keys
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	store 1,mem_hid_handshake_timer_count
+	branch app_bt_enter_sniff
+
+
+store_current_status:
+	fetch 1,mem_kb_current_status
+	and_into 0x7,pdata
+	store 1,mem_store_current_status
+	arg 1,temp
+	arg mem_store_current_status,rega
+	setarg EEPROM_SYSTEM_FALG
+	branch  iicd_write_eep
+
+
+read_current_status:
+	arg 1,temp
+	arg mem_store_current_status,rega
+	setarg EEPROM_SYSTEM_FALG
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	call  iicd_read_eep
+	fetch 1,mem_store_current_status
+	copy pdata,regb
+	and_into 0x0f,pdata
+	beq 0x0f,kb_current_status_regroup
+	copy regb,pdata
+	store 1,mem_kb_current_status
+	rtn
+
+
+kb_kscan_release_foundkey:
+	add contr,-1,contw
+	call memcpy
+	fetch 1,mem_kb_keys
+	increase -1,pdata
+	store 1,mem_kb_keys
+	fetch 1,mem_kb_release_fn_data
+	beq 0x7f,kb_clear_fn_lock_flag
+	branch kb_kscan_check
+
+kb_recover_kb_down_data:
+	fetch 8,mem_kb_down
+	store 8,mem_kb_down_test
+	branch kb_kscan_check
+
+kb_kscan_fn:
+	fetch 1,mem_kb_keys
+	branch kb_kscan_no_data,blank
+	copy pdata,regb
+	fetch 5,mem_kb_down
+	copy pdata,temp
+kb_kscan_fn_loop:
+	copy temp,pdata
+	compare 0x7f,pdata,0xff
+	branch kb_get_fn,true
+	increase -1,regb
+	setarg mem_kb_down_regroup
+	iadd regb,contw
+	copy temp,pdata
+	istore 1,contw
+	copy temp,pdata
+	rshift8 pdata,pdata
+	copy pdata,temp
+	nbranch kb_kscan_fn_loop,blank
+	fetch 5,mem_kb_down_regroup
+	call kb_down_data,blank
+	branch kb_kscan_check
+kb_get_fn:
+	setarg 1
+	store 1,mem_kb_get_fn_flag
+	branch kb_kscan_fn_loop+8
+
+select_system_led_timer:
+	fetch 1,mem_select_system_led_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_select_system_led_timer
+	nrtn blank
+	branch ui_led_blink_stop
+
+
+kb_current_status_regroup:
+	copy regb,pdata
+	and_into KB_MAP2_STATUS_WIN,pdata
+	store 1,mem_kb_current_status
+	rtn
+kb_clear_fn_lock_flag:
+	jam 0,mem_kb_get_fn_flag
+	call kb_down_data
+	branch kb_kscan_check
+
+
+kb_kscan_check:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_1,mem_patch1a
+	hfetch 1,core_kscn_kstat
+	rtnbit1 KB_KSCAN_STAT_EMPTY
+	hfetch 1,core_kscn_event_num
+	bbit1 KB_KSCAN_KEY_EVENT_STAT,kb_kscan_read_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_GHOST,kb_kscan_read_event
+	hfetch 1,core_kscn_event
+	branch kb_kscan_check	
+
+kb_kscan_no_data:
+	call kb_clear_data
+	branch kb_kscan_check
+	
+kb_down_data:
+	fetch 8,mem_kb_down
+	store 8,mem_kb_down_test
+	rtn
+
+kb_clear_data:
+	setarg 0
+	store 1,mem_kb_get_fn_flag
+	store 5,mem_kb_down_regroup
+	store 8,mem_kb_down
+	rtn
+	
+kb_kscan_read_event:
+	fetch 1,mem_kb_temp_flag
+	set1 KEY_EVENT_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	//call p_hci_log
+	hfetch 1,core_kscn_event_num
+	isolate1 kb_KSCAN_KEY_EVENT_STAT,pdata
+	store 1,mem_kscan_event_num_last
+	hfetch 1,core_kscn_event
+	store 1,mem_kscn_event_last
+	arg mem_kb_map,contr
+	iadd contr,contr
+	ifetch 1,contr
+	fetcht 1,mem_kb_keys
+	sub temp,4,null
+	nbranch kb_kscan_check,positive
+	iforce contr
+	setarg mem_kb_down
+	iadd temp,contw
+	deposit contr
+	istore 1,contw
+	increase 1,temp
+	storet 1,mem_kb_keys
+	branch kb_kscan_fn
+
+
+
+/*
+****************************************************************************************************
+* map2_main
+*
+****************************************************************************************************
+*/
+
+
+	
+/************************************/
+/*initialize L2CAP related variables*/
+/************************************/
+l2cap_init:
+	branch l2cap_init_wake,wake
+l2cap_init_work:
+	setarg mem_l2cap_xmem_end
+	arg mem_l2cap_xmem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+l2cap_init_wake:	
+	set0 mark_ext_patch,mark
+	bpatch patch1a_2,mem_patch1a
+	setarg mem_sdp_mem_end
+	arg mem_sdp_mem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+	setarg mem_l2cap_mem_end
+	arg mem_l2cap_mem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+	branch l2cap_lpm_load_txbuf
+	
+process_rx_l2cap_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_3,mem_patch1a
+	copy contr,temp
+	//call l2cap_malloc_is_fifo_full
+	//nrtn blank
+	copy temp,contr
+	ifetch 2,contr
+	store 2,mem_l2cap_rx_pkt_length
+	ifetch 2,contr
+	store 2,mem_l2cap_rx_cid
+	deposit contr
+	store 2,mem_l2cap_payload_ptr
+	fetch 1,memui_reconnect_mode
+	beq NO_RECONNECTION,l2cap_rx_multiplexing
+	branch ml2cap_rx_multiplexing
+
+l2cap_rx_multiplexing:
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	set0 mark_ext_patch,mark
+	bpatch patch1a_4,mem_patch1a
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,l2cap_call_proc_signal
+l2cap_rx_multiplexing0:
+	beq L2CAP_SDP_channel,l2cap_call_proc_sdp
+	beq L2CAP_RFCOMM_channel,l2cap_call_proc_rfcomm
+	beq L2CAP_HID_Control_channel,l2cap_call_proc_hid
+	beq L2CAP_HID_Interrupt_channel,l2cap_call_proc_hid
+	branch l2cap_rx_reset_state
+
+l2cap_check_map:
+//	call l2cap_malloc_is_fifo_full
+//	nrtn blank
+	set0 mark_ext_patch,mark
+	bpatch patch1a_5,mem_patch1a
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	beq 0,set_pdata_0
+	beq 1,set_pdata_0
+	beq 2,set_pdata_0
+	beq 3,set_pdata_0
+	beq 0x81,set_pdata_0
+	beq 0xc0,set_pdata_0
+	beq 0x80,set_pdata_0
+	beq 0x40,set_pdata_0
+	rtn
+
+set_pdata_0:
+	setarg 0
+	rtn
+
+
+l2cap_call_proc_signal:
+	call l2cap_check_map
+	nrtn blank
+l2cap_call_proc_signal0:
+	call l2cap_malloc_signal_channel
+	call l2cap_process_signal_pkt
+	fetcht 2,mem_l2cap_signal_tx_length
+	branch l2cap_call_proc_no_reply,blank
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	branch l2cap_rx_reset_state
+	
+l2cap_call_proc_sigal_pending:
+	fetch 1,mem_l2cap_pending_item
+	rtn blank
+	copy pdata,rega
+	set0 mark_ext_patch,mark
+	bpatch patch1a_6,mem_patch1a
+	fetch 4,mem_l2cap_sdpres_delay_time
+	arg 0x100,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nrtn positive
+	jam 0,mem_l2cap_pending_item
+	copy rega,pdata
+	beq L2CAP_SDP_channel,l2cap_sdp_conn_succ
+	branch assert
+l2cap_sdp_conn_succ:
+	arg 0,debug
+	call l2cap_malloc_signal_channel
+	call restore_l2cap_req_param
+	call l2cap_get_signal_tx_payload
+	call save_cont_pointers
+	call send_connection_sdp_res
+	call l2cap_get_signal_tx_buff
+	//fetch 2,mem_l2cap_signal_tx_length
+	setarg 0x000c
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	branch l2cap_rx_reset_state
+
+
+
+l2cap_reset_sdp_map:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_7,mem_patch1a
+	fetch 2,mem_sdp_tx_pkt_length
+	increase 4,pdata
+	rshift4 pdata,pdata
+	rshift3 pdata,pdata
+	add pdata,1,temp ///temp: how many128
+	arg mem_tx_fifo3,contr
+	ifetch 3,contr
+	rtn blank
+	store 3,mem_tx_fifo_map_temp
+	fetch 1,mem_tx_fifo_map_temp
+	copy pdata,rega
+	call check_l2cap_map
+	copy regb,pdata
+	store 1,mem_tx_fifo3
+	rtn
+
+check_l2cap_map:
+	arg 0,queue
+	arg 0,regb
+
+check_l2cap_map_loop:
+	sub queue,7,null
+	nrtn positive
+	qisolate1 rega
+	branch check_l2cap_map_used,true
+	branch check_l2cap_map_used2
+
+check_l2cap_map_used:
+	copy temp,pdata
+	branch check_l2cap_map_used2,blank
+	qset1 regb
+	increase -1,temp
+
+check_l2cap_map_used2:
+	increase 1,queue
+	branch check_l2cap_map_loop
+
+l2cap_call_proc_sdp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank// not process this packet until fifo empty
+	call l2cap_check_map
+	nrtn blank
+	call l2cap_malloc_sdp_channel
+	call sdp_process
+	call l2cap_reset_sdp_map
+	branch l2cap_call_proc_sdp_common
+
+	
+ml2cap_call_proc_sdp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank// not process this packet until fifo empty
+	call l2cap_malloc_sdp_channel
+	call sdp_process
+l2cap_call_proc_sdp_common:
+	call l2cap_get_sdp_tx_buff
+	fetch 2,mem_sdp_tx_pkt_length
+	branch l2cap_call_proc_no_reply,blank
+	istore 2,contw
+	fetch 2,mem_sdp_remote_cid
+	istore 2,contw
+	branch l2cap_rx_reset_state
+
+l2cap_call_proc_hid:
+	call hid_rx_process
+	branch l2cap_rx_reset_state
+
+l2cap_call_proc_rfcomm:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_0,mem_patch1b
+	jam RFCOMM_MALLOC_SUCCEED,mem_rfcomm_malloc_fail_flag
+	call rfcomm_rx_process
+	fetch 1,mem_rfcomm_malloc_fail_flag
+	rtneq RFCOMM_MALLOC_FAIL
+	branch l2cap_rx_reset_state
+l2cap_call_proc_no_reply:
+	call l2cap_malloc_discard
+	//fall through
+l2cap_rx_reset_state:
+	setarg 0
+	store 2,mem_l2cap_rx_pkt_length
+	store 2,mem_l2cap_rx_cid
+	jam L2CAP_RX_DONE,mem_l2cap_rx_done
+	rtn
+/* To process one L2CAP signalling pkt consisting of 1 or more signalling commands.	*/
+l2cap_process_signal_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_1,mem_patch1b
+	call l2cap_get_signal_tx_payload
+	force 0,regB
+	fetch 2,mem_l2cap_rx_pkt_length
+	copy pdata,regC
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+l2cap_process_signal_pkt_loop:
+	call l2cap_process_one_signal
+	deposit regC
+	increase -4,regC
+	increase -4,pdata
+	nbranch l2cap_process_signal_pkt_loop,blank
+	copy regB,pdata
+	store 2,mem_l2cap_signal_tx_length
+	rtn
+
+l2cap_process_one_signal:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_2,mem_patch1b
+	ifetch 1,contr
+	beq signal_cmd_reject,l2cap_proc_signal_cmd_reject
+	beq signal_connect_req,l2cap_proc_signal_connect_req
+	beq signal_connect_rsp,l2cap_proc_signal_connect_rsp
+	beq signal_config_req,l2cap_proc_signal_config_req
+	beq signal_config_rsp,l2cap_proc_signal_config_rsp
+	beq signal_disconnect_req,l2cap_proc_signal_disconnect_req
+	beq signal_disconnect_rsp,l2cap_proc_signal_disconnect_rsp
+	beq signal_echo_req,l2cap_proc_signal_echo_req
+	beq signal_echo_rsp,l2cap_proc_signal_echo_rsp
+	beq signal_info_req,l2cap_proc_signal_info_req
+	beq signal_info_rsp,l2cap_proc_signal_info_rsp
+	call l2cap_reject_command
+l2cap_process_one_signal_rtn:
+	rtn
+
+l2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	setarg signal_info_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1, contw
+	ifetch 2,contr 
+l2cap_proc_signal_info_req_reply:
+	beq L2CAP_SIG_EXT_FEATRUE,l2cap_proc_signal_info_req_ext
+	beq L2CAP_SIG_FIX_FEATRUE,l2cap_proc_signal_info_req_fix
+	rtn
+l2cap_proc_signal_info_req_ext:
+	setarg 0x020008
+	istore 6, contw
+	setarg 0x0280
+	istore 4, contw
+	force 12,pdata
+	branch l2cap_proc_signal_info_req_common
+l2cap_proc_signal_info_req_fix:
+	setarg 0x3000c
+	istore 6, contw
+	setarg 0x0006
+	istore 8, contw
+	force 16,pdata
+l2cap_proc_signal_info_req_common:
+	iadd regb,regb
+	branch l2cap_process_one_signal_rtn
+	
+ml2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	ifetch 2,contr
+	store 2,mem_temp
+	copy regc,pdata
+	isub rega,regc 
+	call l2cap_get_signal_tx_payload
+	setarg signal_info_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw 
+	fetch 2,mem_temp
+	branch l2cap_proc_signal_info_req_reply
+
+
+/*  Respond to the command reject signal sent from the remote BD.   */
+l2cap_proc_signal_cmd_reject:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	iadd contr,contr
+	copy regC,pdata
+	isub regA,regC
+l2cap_proc_signal_cmd_reject_rtn:
+	branch l2cap_process_one_signal_rtn
+/* Respond to an L2CAP connection request from remote BD. (generate a connection_rsp)	*/
+l2cap_proc_signal_connect_req:
+	call save_cont_pointers
+	//fetch 6,mem_inquiry_bd_addr
+  	//store 6,mem_master_paged_bd_addr
+  	call load_cont_pointers
+	arg 0,debug
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	ifetch 2,contr
+	copy pdata,temp //PSM
+	ifetch 2,contr
+	copy pdata,timeup
+	set0 mark_ext_patch,mark
+	bpatch patch1b_3,mem_patch1b
+	copy temp,pdata
+	beq PSM_SDP,l2cap_proc_signal_connect_req_sdp
+	beq PSM_RFCOMM,l2cap_proc_signal_connect_req_rfcomm
+	beq PSM_HID_control,l2cap_proc_signal_connect_req_hid_ctrl
+	beq PSM_HID_interrupt,l2cap_proc_signal_connect_req_hid_int
+	call l2cap_reject_command
+	branch l2cap_proc_signal_connect_req_rtn
+
+l2cap_proc_signal_connect_req_sdp:
+	call save_cont_pointers
+	arg L2CAP_SDP_channel,temp
+	fetch 2,mem_sdp_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	copy clkn_bt,pdata
+	store 4,mem_l2cap_sdpres_delay_time
+	call store_l2cap_req_param
+	branch  send_connection_pending
+
+store_l2cap_req_param:
+	storet 2,mem_psm
+	deposit timeup
+	store 2,mem_scid
+	deposit rega
+	store 2,mem_cmd_length
+	deposit regb
+	store 2,mem_tt2
+	deposit regc
+	store 2,mem_tt3
+	deposit queue
+	store 2,mem_id
+	rtn
+
+restore_l2cap_req_param:
+	fetcht 2,mem_psm
+	fetch 2,mem_scid
+	copy pdata,timeup
+	fetch 2,mem_cmd_length
+	copy pdata,rega
+	fetch 2,mem_tt2
+	copy pdata,regb
+	fetch 2,mem_tt3
+	copy pdata,regc
+	fetch 2,mem_id
+	copy pdata,queue
+	rtn
+
+l2cap_proc_signal_connect_req_rfcomm:
+	call save_cont_pointers
+	setarg L2CAP_RFCOMM_channel
+	arg L2CAP_RFCOMM_channel,temp
+	fetch 2,mem_RFCOMM_remote_CID
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_RFCOMM_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_rfcomm_state
+	branch send_connection_res
+l2cap_proc_signal_connect_req_hid_ctrl:
+	call save_cont_pointers
+	arg L2CAP_HID_Control_channel,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_control_state
+	branch send_connection_res
+l2cap_proc_signal_connect_req_hid_int:
+	call save_cont_pointers
+	deposit clke
+	arg L2CAP_HID_Interrupt_channel,temp
+	fetch 2,mem_hid_int_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_interrupt_state
+	branch send_connection_res
+
+send_connection_pending:
+	setarg L2CAP_connect_pending
+	store 2,memL2CAP_T1
+	jam L2CAP_SDP_channel,mem_l2cap_pending_item
+	branch send_connection_res0
+send_connection_sdp_res:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_sdp_state
+send_connection_res:
+	setarg L2CAP_connect_successful
+	store 2,memL2CAP_T1
+send_connection_res0:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_4,mem_patch1b
+	call load_cont_pointers
+	setarg signal_connect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	fetch 2,memL2CAP_T1
+	beq L2CAP_connect_pending,connect_pending
+	isolate0 0,debug
+	branch connect_suc,true
+	setarg L2CAP_connect_refused_no_resources
+connect_suc:
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	setarg 12
+	branch connect_req_update_byte_counts
+connect_pending:
+	istore 2,contw
+	force 0x0002,pdata
+	istore 2,contw
+	setarg 12
+	branch connect_req_update_byte_counts
+	
+already_connected:
+	set1 0,debug
+	branch send_connection_res
+connect_req_update_byte_counts:
+	iadd regB,regB
+	copy regC,pdata
+	isub regA,regC
+	branch l2cap_proc_signal_connect_req_rtn
+l2cap_proc_signal_connect_req_rtn:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_connect_rsp:
+	ifetch 1,contr //identifier
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr //remote cid
+	copy pdata,timeup
+	ifetch 2,contr //local cid
+	copy pdata,temp
+	set0 mark_ext_patch,mark
+	bpatch patch1b_5,mem_patch1b
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_hid_int,zero
+	rtn
+
+l2cap_proc_signal_connect_rsp_sdp:
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_sdp_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_connect_rsp_rfcomm:
+	copy timeup,pdata
+	store 2,mem_rfcomm_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_rfcomm_state
+	rtn
+l2cap_proc_signal_connect_rsp_hid_int:
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+l2cap_proc_signal_connect_rsp_hid_ctrl:
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_control_state
+	rtn
+
+l2cap_proc_signal_config_req:
+	ifetch 1,contr//identifier
+	copy pdata,queue
+	ifetch 2,contr//length
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr//dest cid
+	copy pdata,temp
+	copy temp,regA
+	set0 mark_ext_patch,mark
+	bpatch patch1b_6,mem_patch1b
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_hid_int,zero
+	branch l2cap_reject_command
+	//branch L2CAP_proc_signal_config_req_rtn
+l2cap_proc_signal_config_req_sdp:
+	copy contw, timeup
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+	copy timeup,contw
+	arg L2CAP_SDP_channel,timeup
+	fetch 2,mem_sdp_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_hid_ctrl:
+	copy contw, timeup
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_control_state
+	copy timeup,contw
+	arg L2CAP_HID_Control_channel,timeup
+	fetch 2,mem_hid_ctrl_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_hid_int:
+	copy contw, timeup
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	copy timeup,contw
+	arg L2CAP_HID_Interrupt_channel,timeup
+	fetch 2,mem_hid_int_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_rfcomm:
+	copy contw, timeup
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_rfcomm_state
+//	jam UPPERSM_RP_SDP_CONN,mem_upper_sm_remote_page
+	copy timeup,contw
+	arg L2CAP_RFCOMM_channel,timeup
+	fetch 2,mem_RFCOMM_remote_CID
+	copy pdata,temp
+l2cap_send_config_rsp:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_7,mem_patch1b
+	setarg  signal_config_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0006
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	force 0x00,pdata
+	istore 2,contw
+	force L2CAP_config_success,pdata
+	istore 2,contw
+	force 10,pdata
+	iadd regB,regB
+	//copy temp,pdata
+	storet 2,mem_config_req_dest_CID
+	copy queue,pdata
+	store 1,mem_config_identifier
+	force L2CAP_SDP_channel,pdata
+	icompare 0xff,timeup
+	branch l2cap_send_config_rsp_is_sdp,true
+	increase 1,pdata
+l2cap_send_config_rsp_is_sdp:
+	//store 1,mem_send_config_req
+	rtn
+l2cap_check_channel_state:
+	disable user
+	rtnbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	copy contr,contw
+	increase -1,contw
+	istore 1,contw
+	enable user
+	rtn
+l2cap_send_config_req:
+l2cap_send_config_req_sdp:
+	fetch 1,mem_sdp_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_rfcomm,user
+	jam L2CAP_SDP_channel,mem_send_config_req
+	fetch 2,mem_sdp_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_rfcomm:
+	fetch 1,mem_rfcomm_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_hid_ctrl,user
+	jam L2CAP_RFCOMM_channel,mem_send_config_req
+	fetch 2,mem_RFCOMM_remote_CID
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_hid_int,user
+	jam L2CAP_HID_Control_channel,mem_send_config_req
+	fetch 2,mem_hid_ctrl_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	call l2cap_check_channel_state
+	nrtn user//End of sending config req
+	jam L2CAP_HID_Interrupt_channel,mem_send_config_req
+	fetch 2,mem_hid_int_remote_cid
+	store 2,mem_config_req_dest_CID
+	//branch L2CAP_generate_config_req
+
+l2cap_generate_config_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_0,mem_patch1c
+	call l2cap_get_req_id
+	call l2cap_malloc_signal_channel
+	force 0,regB
+	call l2cap_get_signal_tx_payload
+	force signal_config_req,pdata
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	fetch 2,mem_config_req_dest_CID
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	force 1,pdata
+	istore 1,contw
+	force 2,pdata
+	istore 1,contw
+	fetch 1,mem_send_config_req
+	beq L2CAP_RFCOMM_channel,l2cap_generate_config_req_rfcomm
+	setarg L2CAP_config_MTU_SDP
+	istore 2,contw
+	branch l2cap_generate_config_req_done
+l2cap_generate_config_req_rfcomm:
+	setarg L2CAP_config_MTU_RFCOMM
+	istore 2,contw
+l2cap_generate_config_req_done:
+	arg 0x0c,temp
+	storet 2,mem_l2cap_signal_tx_length
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	jam 0,mem_send_config_req
+l2cap_proc_signal_config_req_rtn:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_config_rsp:
+	increase 1,contr
+	ifetch 2,contr
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr //source cid
+	copy pdata,regA
+	set0 mark_ext_patch,mark
+	bpatch patch1c_1,mem_patch1c
+	setarg L2CAP_SDP_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_hid_int,zero
+	increase 2,contr
+	ifetch 2,contr
+	iforce null
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_sdp_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_rfcomm_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_hid_control_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_hid_interrupt_state
+	jam BT_EVT_HID_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+
+
+l2cap_proc_signal_disconnect_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr
+	copy pdata,regA
+	ifetch 2,contr
+	copy pdata,timeup
+	copy regA,temp
+	call save_cont_pointers
+	set0 mark_ext_patch,mark
+	bpatch patch1c_2,mem_patch1c
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_hid_int,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_proc_signal_disconnect_req_hid_ctrl:
+	copy timeup,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_hid_control_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_proc_signal_disconnect_req_hid_int:
+	copy timeup,temp
+	fetch 2,mem_hid_int_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_hid_interrupt_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+
+l2cap_proc_signal_disconnect_req_sdp:
+	copy timeup,temp
+	fetch 2,mem_sdp_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_sdp_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_disconnect_hid_control_now:
+	call l2cap_reset_hid_ctrl_state
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_disconnect_hid_interrupt_now:
+	call l2cap_reset_hid_int_state
+	fetch 2, mem_hid_ctrl_remote_cid
+	branch l2cap_send_disconnect_rsp_pkt, blank
+	//set the flag,hid channel close
+	//should we set here?
+	//call HID_mem_lock
+	//fetch 1, mem_hid_cb1
+	//set1 HID_CB_APP_HID_DISCONNECTED,pdata
+	//store 1, mem_hid_cb1
+	//call HID_mem_unlock
+	branch l2cap_send_disconnect_rsp_pkt
+
+l2cap_disconnect_sdp_now:
+	call l2cap_reset_sdp_channel_state
+	fetch 1,mem_upper_sm_ss
+	nbranch l2cap_send_disconnect_rsp_pkt,blank
+	//jam LMP_ENCRYPTION_MODE_REQ,mem_lmo_opcode2
+	//jam UPPERSM_RP_SDP_CONN,mem_upper_sm_remote_page
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_proc_signal_disconnect_req_rfcomm:
+	copy timeup,temp
+	fetch 2, mem_RFCOMM_remote_CID
+	isub temp,null
+	branch l2cap_disconnect_rfcomm_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_disconnect_rfcomm_now:
+	call l2cap_reset_rfcomm_channel_state
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_send_disconnect_rsp_pkt:
+	call load_cont_pointers
+	setarg signal_disconnect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy regA,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	force 8,pdata
+	branch l2cap_proc_signal_disconnect_req_rtn
+l2cap_proc_signal_disconnect_req_err_rtn:
+	call load_cont_pointers
+	branch l2cap_proc_signal_disconnect_req_rtn
+l2cap_proc_signal_disconnect_req_rtn:
+	iadd regB,regB
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_disconnect_rsp:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr
+	copy pdata,timeup
+	ifetch 2,contr
+	copy pdata,temp
+	call save_cont_pointers
+	set0 mark_ext_patch,mark
+	bpatch patch1c_3,mem_patch1c
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_hid_int,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_rsp_err_rtn
+l2cap_proc_signal_disconnect_rsp_sdp:
+	copy temp,regA
+	copy timeup,temp
+	fetch 2,mem_sdp_remote_cid
+	isub temp,null
+	call l2cap_reset_sdp_channel_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_rfcomm:
+	copy temp,regA
+	copy timeup,temp
+	fetch 2,mem_rfcomm_remote_CID
+	isub temp,null
+	call l2cap_reset_rfcomm_channel_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+	copy temp,regA
+	copy timeup,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	isub temp,null
+	call  l2cap_reset_hid_ctrl_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_hid_int:
+	copy temp,regA
+	copy timeup,temp
+	fetch 2,mem_hid_int_remote_cid
+	isub temp,null
+	call l2cap_reset_hid_int_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_rtn:
+	call load_cont_pointers
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_disconnect_rsp_err_rtn:
+	branch l2cap_process_one_signal_rtn
+
+/* received an echo request from remote BD.  Will echo the 1st 1 byte back,		*/
+l2cap_proc_signal_echo_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	iadd contr,contr
+	setarg 9
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 4,pdata
+	iadd regB,regB
+	copy regC,pdata
+	isub regA,regC
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_echo_rsp:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_info_rsp:
+	branch l2cap_process_one_signal_rtn
+l2cap_reject_command:
+	force 0,regB
+	call l2cap_get_signal_tx_payload
+	setarg signal_cmd_reject
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 2
+	istore 2,contw
+	setarg cmd_not_understood
+	istore 2,contw
+	increase 6,regB
+	arg 4,regC
+	branch l2cap_process_one_signal_rtn
+
+
+
+l2cap_reset_rfcomm_channel_state:
+	setarg 0
+	store 2,mem_RFCOMM_Tx_pkt_length
+	store 2,mem_RFCOMM_remote_CID
+	jam 0,mem_rfcomm_state
+	rtn
+l2cap_reset_sdp_channel_state:
+	setarg 0
+	store 2,mem_sdp_tx_pkt_length
+	store 2,mem_sdp_remote_cid
+	jam 0,mem_sdp_state
+	rtn
+l2cap_reset_hid_ctrl_state:
+	setarg 0
+	store 2,mem_hid_ctrl_remote_cid
+	jam 0,mem_hid_control_state
+	fetch 1,mem_hid_interrupt_state
+	beq 0,l2cap_reset_hid_disconnected
+	rtn
+
+l2cap_reset_hid_int_state:
+	setarg 0
+	store 2,mem_hid_int_remote_cid
+	jam 0,mem_hid_interrupt_state
+	fetch 1,mem_hid_control_state
+	beq 0,l2cap_reset_hid_disconnected
+	rtn
+	
+l2cap_reset_hid_disconnected:
+	jam BT_EVT_HID_DISCONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event	
+
+l2cap_disconnect_interrupt_req:
+	fetch 1,mem_CONTROL_tasks
+	set0  L2CAP_DISCONNECT_INTERRUPT, pdata
+	store 1,mem_CONTROL_tasks
+	fetch 2, mem_hid_int_remote_cid
+	rtn blank
+	call l2cap_malloc_signal_channel
+	fetch 2, mem_hid_int_remote_cid
+	copy pdata,regA
+	force L2CAP_HID_Interrupt_channel,regB
+	branch l2cap_generate_disconnect_req
+l2cap_disconnect_control_req:
+	fetch 1,mem_CONTROL_tasks
+	set0  L2CAP_DISCONNECT_CONTROL, pdata
+	store 1,mem_CONTROL_tasks
+	fetch 2, mem_hid_ctrl_remote_cid
+	rtn blank
+	call l2cap_malloc_signal_channel
+	fetch 2, mem_hid_ctrl_remote_cid
+	copy pdata,regA
+	force L2CAP_HID_Control_channel,regB
+l2cap_generate_disconnect_req:
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	force signal_disconnect_req,pdata
+	istore 1,contw
+	fetch  1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy regA,pdata
+	istore 2,contw
+	copy regB,pdata
+	istore 2,contw
+	force 0x08,temp //signal tx length in temp
+	branch ml2cap_send_signal
+
+ml2cap_send_signal_connect_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_4,mem_patch1c
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_connect_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy temp,pdata	 //PSM
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	arg 8,temp
+	branch ml2cap_send_signal
+ml2cap_send_signal_config_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_5,mem_patch1c
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_config_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	/****modigy for nokia*****/
+	copy temp,pdata
+	/*setarg 0x0040*/
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	setarg 0x01
+	istore 1,contw
+	setarg 0x02
+	istore 1,contw
+	setarg L2CAP_config_MTU_RFCOMM
+	istore 2,contw
+	arg 0xc,temp
+	branch ml2cap_send_signal
+ml2cap_send_signal_disconn_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_6,mem_patch1c
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_disconnect_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	increase 1,pdata
+	copy contw,regA
+	store 1,mem_ML2CAP_comm_id
+	copy regA,contw
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	arg 0x8,temp
+	//branch ml2cap_send_signal
+	//Fall through
+ml2cap_send_signal:
+	storet 2,mem_l2cap_signal_tx_length
+	copy temp,pdata
+	branch l2cap_malloc_discard,blank
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw //make sure that length is still in temp!
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	rtn
+
+msdp_send_req_done:
+	fetch 2,mem_sdp_tx_pkt_length
+	branch assert,blank
+	call l2cap_get_sdp_tx_buff
+	fetch 2,mem_sdp_tx_pkt_length
+	istore 2,contw
+	fetch 2,mem_sdp_remote_cid
+	istore 2,contw
+	rtn
+ml2cap_rx_multiplexing:
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	set0 mark_ext_patch,mark
+	bpatch patch1c_7,mem_patch1c
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,ml2cap_call_proc_signal
+	beq L2CAP_SDP_channel,ml2cap_call_proc_sdp
+	beq L2CAP_RFCOMM_channel,l2cap_call_proc_rfcomm
+	beq L2CAP_HID_Control_channel,l2cap_call_proc_hid
+	beq L2CAP_HID_Interrupt_channel,l2cap_call_proc_hid
+	branch l2cap_rx_reset_state
+
+ml2cap_call_proc_signal:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_0,mem_patch1d
+	call l2cap_malloc_signal_channel
+	force 0,regB
+	call l2cap_get_signal_tx_payload
+	copy pdata,contw
+	fetch 2,mem_l2cap_rx_pkt_length
+	copy pdata,regC
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+ml2cap_proc_one_comm_loop:
+	call ml2cap_proc_one_comm
+	increase -4,regC
+	nbranch ml2cap_proc_one_comm_loop,zero
+	copy regB,temp
+	call ml2cap_send_signal
+	branch l2cap_rx_reset_state
+	
+ml2cap_proc_one_comm:
+	ifetch 1,contr
+	beq signal_connect_req,ml2cap_proc_signal_connect_req
+	beq signal_cmd_reject,ml2cap_proc_signal_cmd_reject
+	beq signal_connect_rsp,ml2cap_proc_signal_connect_rsp
+	beq signal_config_rsp,ml2cap_proc_signal_config_rsp
+	beq signal_config_req,ml2cap_proc_signal_config_req
+	beq signal_disconnect_rsp,ml2cap_proc_signal_disconn_rsp
+	beq signal_disconnect_req,ml2cap_proc_signal_disconn_req
+	beq signal_echo_req,l2cap_proc_signal_echo_req
+	beq signal_info_req,ml2cap_proc_signal_info_req
+	branch ml2cap_proc_send_reject
+
+ml2cap_proc_signal_connect_req:
+	call save_cont_pointers
+	//jam NO_RECONNECTION,memui_reconnect_mode
+	call load_cont_pointers
+	branch l2cap_proc_signal_connect_req
+ml2cap_proc_signal_cmd_reject:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+mvptr:
+	ifetch 1,contr
+	increase -1,regA
+	nbranch mvptr,zero
+	rtn
+ml2cap_proc_signal_connect_rsp:
+	ifetch 1,contr //id
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA	//length
+	ifetch 2,contr
+	copy pdata,timeup	//destination	cid
+	ifetch 2,contr
+	copy pdata,temp	//source	cid
+	ifetch 2,contr 		// result
+	sub pdata,0,null
+	branch ml2cap_proc_signal_connect_rsp_sucessful,zero
+	beq L2CAP_connect_refused_PSM_unsupported,ml2cap_proc_signal_connect_refused_result
+	beq L2CAP_connect_refused_no_resources,ml2cap_proc_signal_connect_refused_result
+	branch ml2cap_proc_signal_connect_rsp_mnosucc
+ml2cap_proc_signal_connect_refused_result:
+	jam BT_EVT_ML2CAP_CONN_REFUSED,mem_fifo_temp
+	call ui_ipc_send_event
+ml2cap_proc_signal_connect_rsp_mnosucc:
+	ifetch 2,contr //reason
+	branch mnosucc
+ml2cap_proc_signal_connect_rsp_sucessful:
+	call save_cont_pointers
+	//fetch 1,mem_ML2CAP_comm_id
+	//icompare 0xff,queue
+	//nbranch mnosucc1,true
+	set0 mark_ext_patch,mark
+	bpatch patch1d_1,mem_patch1d
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_hid_int,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_hid_ctrl,zero
+	branch mnosucc
+ml2cap_proc_signal_connect_rsp_sdp:
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_sdp_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_rfcomm:
+	copy timeup,pdata
+	store 2,mem_RFCOMM_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_rfcomm_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_hid_ctrl:
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_hid_control_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_hid_int:
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_hid_interrupt_state
+	//branch mnosucc1
+
+mnosucc1:
+	call load_cont_pointers
+mnosucc:
+	copy regC,pdata
+	isub regA,regC
+	rtn
+
+ml2cap_proc_signal_config_rsp:
+	ifetch 1,contr		//	Ident
+	copy pdata,queue
+	ifetch 2,contr		//	SigLen
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr		//	DestnCID
+	copy pdata,timeup
+	ifetch 2,contr
+	ifetch 2,contr		//	Get the result value, check success
+	nbranch mcrsdone1,blank
+	call save_cont_pointers
+	//fetch 1,mem_ML2CAP_comm_id
+	//icompare 0xff,queue
+	//nbranch mcfrsdone,true
+	copy timeup,temp
+	set0 mark_ext_patch,mark
+	bpatch patch1d_2,mem_patch1d
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_hid_int,zero
+ml2cap_proc_signal_config_rsp_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_sdp_state
+	rtn
+ml2cap_proc_signal_config_rsp_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_rfcomm_state
+	rtn
+ml2cap_proc_signal_config_rsp_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_hid_control_state
+	rtn
+ml2cap_proc_signal_config_rsp_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_hid_interrupt_state
+	jam BT_EVT_HID_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+mcfrsdone:
+	call load_cont_pointers
+mcrsdone1:
+	increase -6,regA
+mloop2:
+	branch mcrsdone,zero
+	increase 1,contr
+	increase -1,regA
+	branch mloop2
+mcrsdone:
+	rtn
+ml2cap_proc_signal_config_req:
+	ifetch 1,contr		//	Ident
+	copy pdata,queue
+	ifetch 2,contr		//	SigLen
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr		//	DestnCID
+	increase 2,contr
+	copy pdata,temp
+	setarg  signal_config_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	increase 2,regA
+	copy regA,pdata
+	istore 2,contw
+	call save_cont_pointers
+	set0 mark_ext_patch,mark
+	bpatch patch1d_3,mem_patch1d
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_hid_int,zero
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_sdp_state
+	bbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,ml2cap_proc_signal_config_req_sdp_nsndreq
+	fetcht 1,mem_CONTROL_tasks
+	set1 L2CAP_init_Config_Req,temp
+	storet 1,mem_CONTROL_tasks
+	copy queue,pdata
+	increase 1,pdata
+	store 1,mem_config_identifier
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+ml2cap_proc_signal_config_req_sdp_nsndreq:
+	fetch 2,mem_sdp_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_rfcomm_state
+	fetch 2,mem_RFCOMM_remote_CID
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_hid_control_state
+	fetch 2,mem_hid_ctrl_remote_cid
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_hid_interrupt_state
+	fetch 2,mem_hid_int_remote_cid
+	//branch mcfgrq_done
+
+mcfgrq_done:
+	copy pdata,timeup
+	call load_cont_pointers
+/*******for Nokia**************/
+	copy timeup,pdata
+	/*setarg 0x0040*/
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 10,pdata
+	iadd regB,regB
+	increase -6,regA
+mloop1:
+	branch mcrqdone,zero
+	ifetch 1,contr
+	istore 1,contw
+	increase 1,regB
+	increase -1,regA
+	branch mloop1
+mcrqdone:
+	rtn
+ml2cap_proc_signal_disconn_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+
+	ifetch 2,contr
+	copy pdata,regA
+	ifetch 2,contr
+	copy pdata,timeup
+	call save_cont_pointers
+	set0 mark_ext_patch,mark
+	bpatch patch1d_4,mem_patch1d
+	setarg L2CAP_SDP_channel
+	copy regA,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_sdp,zero
+	setarg L2CAP_HID_Control_channel
+	copy regA,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	copy regA,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_hid_int,zero
+	branch mclsrfc
+ml2cap_proc_signal_disconn_sdp:
+	setarg 0x0000
+	store 2,mem_sdp_tx_pkt_length
+	store 2,mem_sdp_remote_cid
+	store 1,mem_sdp_state
+	branch mclssdp
+ml2cap_proc_signal_disconn_hid_ctrl:
+	call l2cap_reset_hid_ctrl_state
+	branch mclssdp
+ml2cap_proc_signal_disconn_hid_int:
+	call l2cap_reset_hid_int_state
+	//call HID_mem_lock
+	//fetch 1, mem_hid_cb1
+	//set1 HID_CB_APP_HID_DISCONNECTED,pdata
+	//store 1, mem_hid_cb1
+	//call HID_mem_unlock
+	branch mclssdp
+mclsrfc:
+	setarg 0x0000
+	store 2,mem_RFCOMM_Tx_pkt_length
+mclssdp:
+	call load_cont_pointers
+	setarg signal_disconnect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy regA,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	force 8,pdata
+	iadd regB,regB
+	rtn
+
+ml2cap_proc_signal_disconn_rsp:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	ifetch 2,contr
+	copy pdata,timeup
+	ifetch 2,contr
+	copy pdata,temp
+	call save_cont_pointers
+	set0 mark_ext_patch,mark
+	bpatch patch1d_5,mem_patch1d
+	fetch 1,mem_ML2CAP_comm_id
+	icompare 0xff,queue
+	nbranch mdisdone,true
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_rsp_rfcomm,zero
+	branch mdisdone
+ml2cap_proc_signal_disconn_rsp_sdp:
+	jam 0,mem_sdp_remote_cid
+	jam 0,mem_sdp_state
+	branch mdisdone
+ml2cap_proc_signal_disconn_rsp_rfcomm:
+	//
+	//
+mdisdone:
+	call load_cont_pointers
+	copy regC,pdata
+	isub regA,regC
+	rtn
+
+ml2cap_proc_send_reject:
+	setarg signal_cmd_reject
+	istore 1,contw
+	ifetch 1,contr
+	istore 1,contw
+	setarg 0x0002
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	setarg 0x0006
+	iadd regB,regB
+	force 4,regC
+	rtn
+	
+//l2cap command id, 0 is not allowed
+l2cap_get_req_id:
+	fetch 1,mem_ML2CAP_comm_id
+	increase 1,pdata
+	bne 0,l2cap_get_req_id_ok
+	increase 1,pdata
+l2cap_get_req_id_ok:
+	store 1,mem_ML2CAP_comm_id
+	rtn
+
+
+/*********************************************************/
+//char* malloc(short len)
+//input: regA -> len
+//rtn: regB -> pbuff;return from pdata
+//val: queue -> i
+//val: timeup -> buff_cnt
+/*********************************************************/
+l2cap_malloc:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_6,mem_patch1d
+	arg 0,regb
+	call l2cap_malloc_is_fifo_full
+	nbranch assert,blank//assert when fifo full
+	call l2cap_malloc_get_full_map
+	arg mem_tx_buff0,regB//pbuff = buff0;
+	arg 0,queue // i = 0;
+l2cap_malloc_loop:
+	fetcht 1,mem_used_map
+	qisolate1 temp
+	branch l2cap_malloc_next,true//if(1 == (used_map & (1 << i)))goto next;
+	call l2cap_malloc_enough
+	sub timeup,0,null// (0 - timeup)
+	branch l2cap_malloc_next,positive//if(buff_cnt <= 0)goto next;
+	call l2cap_malloc_into_fifo
+	branch l2cap_malloc_rtn//return (pbuff);
+l2cap_malloc_next:
+	increase 128,regB//pbuff += BUFF_SIZE;//point to next buff
+	increase 1,queue
+	setarg 8//BUFF_MAX_COUNT
+	isub queue,null //BUFF_MAX_COUNT - i
+	branch l2cap_malloc_loop,positive//while(i < buff_max_count)
+	arg 0,regB//return NULL
+l2cap_malloc_rtn:
+	copy regB,pdata
+	branch assert,blank
+	rtn//return pointer via pdata
+	
+/*********************************************************/
+//void* l2cap_malloc_fifo_out(void)
+//output:len -> temp
+//output:ptr ->pdata
+//only get ptr,not free
+/*********************************************************/
+l2cap_malloc_fifo_out:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_7,mem_patch1d
+	call l2cap_malloc_fifo_get_first_ptr
+	increase 1,contr
+	ifetch 2,contr //ptr ->pdata
+	rtn 
+
+/*********************************************************/
+//void free_first_buff_in_fifo(void)
+//only free the first one
+/*********************************************************/
+l2cap_malloc_free:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_0,mem_patch1e
+	call l2cap_malloc_fifo_get_first_ptr
+	copy contr,contw
+	copy contr,temp
+	setarg 0
+	istore 3,contw
+	rtn
+/*********************************************************/
+//void l2cap_malloc_discard(void)
+//discard the latest malloc
+/*********************************************************/
+l2cap_malloc_discard:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_1,mem_patch1e
+	call l2cap_malloc_is_fifo_empty
+	branch assert,blank
+	fetch 3,mem_tx_fifo2
+	store 3,mem_tx_fifo3
+	fetch 3,mem_tx_fifo1
+	store 3,mem_tx_fifo2
+	fetch 3,mem_tx_fifo0
+	store 3,mem_tx_fifo1
+	rtn
+/*********************************************************/
+//bool fifo_is_full(void)
+//blank == 1: not full
+//blank == 0: full
+/*********************************************************/
+l2cap_malloc_is_fifo_full:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_2,mem_patch1e
+	fetch 3,mem_tx_fifo0
+	rtn
+/*********************************************************/
+//bool fifo_nearly_full(void)
+//blank == 1: nearly full
+//blank == 0: not nearly full
+/*********************************************************/
+l2cap_malloc_is_fifo_nearly_full:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_3,mem_patch1e
+	fetch 3,mem_tx_fifo1
+	rtn
+/*********************************************************/
+//bool fifo_is_empty(void)
+//blank == 1: empty
+//blank == 0: not empty
+/*********************************************************/
+l2cap_malloc_is_fifo_empty:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_4,mem_patch1e
+	fetch 3,mem_tx_fifo3
+	rtn
+/*********************************************************/
+//char* l2cap_malloc_fifo_get_first_ptr(void)
+//output:contr  -->ptr
+/*********************************************************/	
+l2cap_malloc_fifo_get_first_ptr:
+	call l2cap_malloc_is_fifo_empty
+	branch assert,blank // fifo is empty
+	arg mem_tx_fifo0,contr
+l2cap_malloc_free_loop:
+	ifetch 3,contr
+	branch l2cap_malloc_free_loop,blank
+	increase -3,contr
+	rtn
+
+/*********************************************************/
+//char* l2cap_malloc_get_full_map(void)
+//output:mem_used_map  -->full_map
+//add all maps into one
+/*********************************************************/	
+l2cap_malloc_get_full_map:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_5,mem_patch1e
+	arg 4,loopcnt
+	arg mem_tx_fifo0_map,contr
+	arg 0,temp
+l2cap_malloc_get_full_map_loop:	
+	ifetch 3,contr
+	and pdata,0xff,pdata
+	ior temp,temp
+	loop l2cap_malloc_get_full_map_loop
+	storet 1,mem_used_map
+	rtn
+/*********************************************************/
+//void buff_into_fifo(char buff_index, char buff_cnt, short len)
+//input: regA -> len
+//input: regC -> buff_index
+//input: timeup -> buff_cnt
+//val:temp ->   (fifo->map)
+/*********************************************************/
+l2cap_malloc_into_fifo:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_6,mem_patch1e
+	call l2cap_malloc_is_fifo_full
+	nbranch assert,blank //fifo full
+	call l2cap_malloc_is_fifo_empty
+	branch l2cap_malloc_into_fifo_no_push,blank//fifo empty, no need to push
+	fetch 3,mem_tx_fifo1
+	store 3,mem_tx_fifo0
+	ifetch 3,contr//mem_tx_fifo2
+	istore 3,contw//mem_tx_fifo1
+	ifetch 3,contr//mem_tx_fifo3
+	istore 3,contw//mem_tx_fifo2
+	setarg 0
+	istore 3,contw//mem_tx_fifo3
+l2cap_malloc_into_fifo_no_push:
+	arg 0,temp
+	copy timeup,pdata
+	iadd queue,pdata
+l2cap_malloc_into_fifo_loop:
+	qset1 temp//fifo->map |= 1 << i;
+	increase 1,queue
+	isub queue,null
+	nbranch l2cap_malloc_into_fifo_loop,zero
+	//map in temp
+	lshift8 regB,pdata
+	ior temp,pdata
+	store 3,mem_tx_fifo3
+	rtn
+
+/*********************************************************/
+//char is_size_enough(char buff_index, short len)
+//input: regA -> len
+//input: queue -> buff_index
+//rtn: timeup -> buff_cnt
+//val: max_size_fom_buff_index -> temp
+//val: i -> loopcnt
+/*********************************************************/
+l2cap_malloc_enough:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_7,mem_patch1e
+	call l2cap_malloc_get_full_map
+	copy queue,regC//restore buff_index to regC
+	arg 0,temp
+	arg 0,timeup//default return val
+	//increase 1,queue
+l2cap_malloc_enough_loop:
+	copy queue,pdata
+	beq 8,l2cap_malloc_enough_end
+	fetch 1,mem_used_map
+	qisolate1 pdata
+	branch l2cap_malloc_enough_end,true
+	increase 128,temp
+	increase 1,queue
+	copy regA,pdata
+	isub temp,null
+	branch l2cap_malloc_enough_end,zero//(max_size_fom_buff_index ==  len)
+	branch l2cap_malloc_enough_loop,positive//(max_size_fom_buff_index <  len)
+l2cap_malloc_enough_end:
+	copy temp,pdata
+	isub regA,null
+	nbranch l2cap_malloc_enough_rtn,positive// max_size_fom_buff_index - len > 0
+	copy queue,pdata//i
+	copy regC,temp//buff_index
+	isub temp,timeup//return (i - buff_index)
+l2cap_malloc_enough_rtn:
+	copy regC,queue//restore buff_index to queue
+	rtn
+	
+
+l2cap_malloc_signal_channel:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_0,mem_patch1f
+	arg L2CAP_SIGNAL_MALLOC_SIZE,regA
+	call l2cap_malloc
+	store 2,mem_l2cap_signal_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_l2cap_signal_tx_payload_ptr
+	setarg 0
+	store 2,mem_l2cap_signal_tx_length
+	rtn
+
+l2cap_get_signal_tx_buff:
+	fetch 2,mem_l2cap_signal_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+
+l2cap_get_signal_tx_payload:
+	fetch 2,mem_l2cap_signal_tx_payload_ptr
+	branch l2cap_util_pdata_to_contw
+
+
+l2cap_malloc_sdp_channel:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_1,mem_patch1f
+	arg SDP_MALLOC_SIZE,regA
+	call l2cap_malloc
+	store 2,mem_sdp_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_sdp_tx_payload_ptr
+	setarg 0
+	store 2,mem_sdp_tx_pkt_length
+	rtn
+
+l2cap_get_sdp_tx_buff:
+	fetch 2,mem_sdp_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+
+l2cap_get_sdp_tx_payload:
+	fetch 2,mem_sdp_tx_payload_ptr
+	branch l2cap_util_pdata_to_contw
+
+
+l2cap_malloc_rfcomm_channel:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_2,mem_patch1f
+	call push_stack
+	jam RFCOMM_MALLOC_FAIL,mem_rfcomm_malloc_fail_flag
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	arg RFCOMM_MALLOC_SIZE,regA
+	call l2cap_malloc
+	store 2,mem_rfcomm_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_rfcomm_tx_payload_ptr
+	setarg 0
+	store 2,mem_rfcomm_tx_pkt_length
+	jam RFCOMM_MALLOC_SUCCEED,mem_rfcomm_malloc_fail_flag
+	branch pop_stack
+
+l2cap_get_rfcomm_tx_buff:
+	fetch 2,mem_rfcomm_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+	
+l2cap_util_pdata_to_contw:
+	branch assert,blank
+	copy pdata,contw
+	rtn
+	
+
+l2cap_lpm_save_calc_len:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_3,mem_patch1f
+	arg 0,regb
+	arg mem_tx_fifo0_map,rega
+	increase -2,rega
+l2cap_lpm_save_calc_len_loop:
+	increase 2,rega
+	setarg mem_tx_fifo_end
+	isub rega,null
+	branch l2cap_lpm_save_calc_len_end,zero //end of 2lcap tx fifo
+	ifetch 1,rega
+	increase 1,rega
+	branch l2cap_lpm_save_calc_len_loop,blank
+	ifetcht 2,rega
+	ifetch 2,temp
+	iadd regb,regb
+	increase 4,regb //l2cap header len
+	branch l2cap_lpm_save_calc_len_loop
+l2cap_lpm_save_calc_len_end:
+	copy regb,pdata
+	rtn
+
+
+l2cap_lpm_get_wake_lock:
+	arg wake_lock_l2cap_tx,queue
+	branch lpm_get_wake_lock
+
+l2cap_lpm_put_wake_lock:
+	arg wake_lock_l2cap_tx,queue
+	branch lpm_put_wake_lock
+	
+l2cap_lpm_save_txbuf:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_4,mem_patch1f
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	rtn blank
+	call l2cap_lpm_save_calc_len
+	arg l2cap_lpm_txbuf_len,temp
+	isub temp,null
+	branch l2cap_lpm_get_wake_lock,positive //no enougth space to save l2cap tx data
+	call l2cap_lpm_put_wake_lock
+	arg mem_l2cap_lpm_txbuf,contw
+	arg mem_tx_fifo0,rega
+l2cap_lpm_save_txbuf_loop:
+	setarg mem_tx_fifo_end
+	isub rega,null
+	rtn zero //end of 2lcap tx fifo
+	ifetch 1,rega  //mem_tx_fifoX_map
+	increase 1,rega
+	nbranch l2cap_lpm_save_txbuf_nempty,blank
+	istore 2,contw // length = 0
+	increase 2,rega
+	branch l2cap_lpm_save_txbuf_loop
+l2cap_lpm_save_txbuf_nempty:
+	ifetch 2,rega //ptr
+	increase 2,rega
+	copy pdata,contr
+	ifetch 2,contr  //l2cap len
+	istore 2,contw
+	copy pdata,loopcnt
+	increase 2,loopcnt //add CID len
+	call memcpy
+	branch l2cap_lpm_save_txbuf_loop
+	
+l2cap_lpm_load_txbuf:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_5,mem_patch1f
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	rtn blank
+	arg mem_tx_fifo0_ptr,rega
+	increase -3,rega //mem_tx_fifo0_ptr -3
+	arg mem_l2cap_lpm_txbuf,contr
+l2cap_lpm_load_txbuf_loop:
+	increase 3,rega //mem_tx_fifoX_ptr
+	setarg mem_tx_fifo_end+1
+	isub rega,null
+	rtn zero //end of 2lcap tx fifo
+	ifetch 2,contr
+	branch l2cap_lpm_load_txbuf_loop,blank
+	increase 4,pdata //l2cap header len
+	copy pdata,loopcnt
+	copy contr,regb
+	ifetch 2,rega //ptr
+	copy pdata,contw
+	copy regb,contr
+	increase -2,contr
+	call memcpy
+	branch l2cap_lpm_load_txbuf_loop
+	
+
+
+	
+//******************************************//
+//*************LE INIT ****************//
+//******************************************//
+
+	
+le_secure_connection_enable:
+	fetch 1,mem_le_pres_auth
+	set1 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT,pdata
+	store 1,mem_le_pres_auth
+	rtn
+le_secure_connection_disable:
+	fetch 1,mem_le_pres_auth
+	set0 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT,pdata
+	store 1,mem_le_pres_auth
+	rtn
+
+
+le_init_conn:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_6,mem_patch1f
+	disable wake
+	jam 1,mem_le_conn_handle
+	jam 3,mem_le_state
+	jam 1,mem_le_arq
+	setarg -1
+	store 2,mem_le_event_count
+	force 0,pdata
+	store 1,mem_le_ch
+	store 1,mem_le_op
+	store 3,mem_sniff_rcv
+	store 3,mem_sniff_lost
+	store 5,mem_le_pcnt_tx
+	set1 39,pdata
+	store 5,mem_le_pcnt_rx
+	jam 1,mem_le_txheader
+	jam 0,mem_le_txlen
+	branch le_supervision_flush
+
+le_init_master:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_7,mem_patch1f
+	enable master
+	jam lemode_master,mem_le_mode
+	jam 1,mem_le_att_handle
+	jam 1,mem_le_search_handle_start
+	setarg 0xffff
+	store 2,mem_le_search_handle_end
+	force 0,pdata
+	store 5,mem_le_pcnt_rx
+	set1 39,pdata
+	store 5,mem_le_pcnt_tx	
+	branch le_init_conn
+
+
+le_init_slave:
+	set1 mark_ext_patch,mark
+	bpatch patch20_0,mem_patch20
+	disable master
+	jam lemode_slave,mem_le_mode
+	jam 0,mem_le_adv_enable
+	jam 0,mem_lpm_current_mult
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	fetch 2,mem_le_superto
+	store 2,mem_le_init_superto
+	fetch 2,mem_le_tsniff
+	mul32 pdata,5,pdata
+	rshift4 pdata,pdata
+	store 2,mem_le_superto			// vol.6 part B 4.5.2 only 6*conninterval before establish
+	branch le_init_conn
+	
+
+//******************************************//
+//*************LE main process*********//
+//******************************************//
+le_dispatch:
+	call le_enable
+	call le_scan
+	call le_adv
+	branch le_disable
+
+le_conn_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch20_1,mem_patch20
+	call le_enable
+	call app_process_ble
+	fetch 1,mem_le_mode
+	beq lemode_master,le_master_dispatch
+	branch le_slave_dispatch
+	
+//******************************************//
+//***********LE master process*********//
+//******************************************//
+	
+le_master_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch20_2,mem_patch20
+	enable master
+	call le_supervision_update
+	branch le_master_disconn,positive
+	call check_ble_disabled
+	call le_setup
+	call le_prepare_tx
+	disable match
+	call le_transmit_receive_sifs
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch20_3,mem_patch20
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	call le_acknowledge
+	disable master
+	rtn
+	
+le_master_disconn:
+	call le_disconnect
+	disable master
+	rtn
+	
+//******************************************//
+//***********LE slave process***********//
+//******************************************//
+le_slave_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch20_4,mem_patch20
+	call sp_calc_sequence_256
+	call le_secure_connect_sm
+	disable attempt
+	call le_supervision_update
+	branch le_slave_disconn,positive
+	call check_ble_disabled
+	call le_setup
+	call le_receive_slave
+	nbranch le_slave_unsync,sync	// vol.6 part B 4.5.1 respond even crc error
+	call le_got_first_packet
+	branch le_slave_match,match
+	branch le_slave_transmit_last
+	
+
+le_slave_match:
+	set1 mark_ext_patch,mark
+	bpatch patch20_5,mem_patch20
+	call le_got_first_packet
+	call le_acknowledge
+	call le_prepare_tx
+	fetch 1,mem_le_rxbuf
+	bbit1 md,le_slave_more_data //more data to rx
+	call le_xtype_fifo_is_empty
+	nbranch le_slave_more_data,blank// more data to tx
+le_slave_transmit_last:
+	set1 mark_ext_patch,mark
+	bpatch patch20_6,mem_patch20
+	call le_transmit_norx
+le_slave_cont:
+	call check_51cmd
+	fetch 1,mem_le_op
+	bbit1 op_disconn,le_slave_disconn
+le_slave_unsync:
+	set1 mark_ext_patch,mark
+	bpatch patch20_7,mem_patch20
+	call le_lpm_set_mult
+	call le_update_channel_map
+	call le_update_param
+	branch calc_clke_offset
+
+le_slave_more_data:
+	set1 mark_ext_patch,mark
+	bpatch patch21_0,mem_patch21
+	enable attempt
+	call le_transmit_receive_sifs
+	branch le_slave_match,match
+	branch le_slave_cont
+
+le_slave_disconn:
+
+	//fall through
+le_disconnect:
+	set1 mark_ext_patch,mark
+	bpatch patch21_1,mem_patch21
+le_disconnect0:
+	call le_clear_connection_info
+	call app_disconn_reason_collect_ble
+	call sp_initialize_256
+	jam BT_EVT_LE_DISCONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+le_clear_connection_info:
+	jam 0,mem_le_conn_handle
+	jam lemode_idle,mem_le_mode
+	jam 0,mem_le_state
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	rtn
+	
+le_got_first_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch21_2,mem_patch21
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	fetch 1,mem_le_state
+	rtnbit1 lestate_got_first_packet
+	set1 lestate_got_first_packet
+	store 1,mem_le_state
+	fetch 2,mem_le_init_superto
+	store 2,mem_le_superto
+	setarg 0
+	store 4,mem_le_transmit_window
+	rtn
+
+
+
+
+le_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch21_3,mem_patch21
+	hjam 0x36,0x90f        /*For BLE, tune AGC_gain_offset, Max added*/
+	hjam 0x5f,0x90b        //for BLE
+	enable le
+	hjam 7,rfen_ulp			/* enable ulp */
+	branch check_ble_disabled
+
+le_disable:
+	set1 mark_ext_patch,mark
+	bpatch patch21_4,mem_patch21
+	hjam 0x2e,0x90f        /*For BR/EDR, tune AGC_gain_offset, Max added*/
+	hjam 0xff,0x90b         //for EDR&BR
+	disable le
+	hjam 3,rfen_ulp
+	arg 0,stop_watch
+	rtn
+	
+le_prep:
+	disable enable_crc
+	disable enable_white
+	fetch 3,mem_le_crcinit
+	iforce crc24_init
+	fetch 1,mem_le_ch_mapped
+	reverse pdata,temp
+	set1 1,temp
+	rshift temp,white_init
+	rtn
+	
+
+lerx_setfreq:
+	call le_setfreq
+	call set_freq_rx
+	setarg param_pll_setup
+	call sleep
+	branch rf_rx_enable
+
+letx_setfreq:
+	branch txon,match
+letx_setfreq0:
+	call le_setfreq
+	branch set_freq_tx
+le_setfreq:
+	set1 mark_ext_patch,mark
+	bpatch patch21_5,mem_patch21
+	call set_sync_on
+	fetch 1, mem_le_testtype
+	nbranch le_ctf_test,blank
+	fetch 1,mem_le_ch_mapped
+	sub pdata,36,null
+	branch le_ctf_normal,positive
+	force 0,temp
+	rtneq 37
+	force 24,temp
+	rtneq 38
+	force 78,temp
+	rtn
+	
+le_ctf_normal:
+	sub pdata,10,null
+	branch le_ctf_low,positive
+	increase 1,pdata
+	
+le_ctf_low:	
+	lshift pdata,pdata
+	add pdata,2,temp
+	rtn
+	
+le_ctf_test:
+	fetch 1,mem_le_ch_mapped
+	lshift pdata,temp
+	rtn
+
+le_sca_map:
+	arg 500,temp
+	rtn blank
+	arg 250,temp
+	rtneq 1
+	arg 150,temp
+	rtneq 2
+	arg 100,temp
+	rtneq 3
+	arg 75,temp
+	rtneq 4
+	arg 50,temp
+	rtneq 5
+	arg 40,temp
+	rtneq 6
+	arg 20,temp
+	rtn
+
+
+	
+le_adv_access:
+	setarg 0x8e89be
+	lshift8 pdata,pdata
+	or_into 0xd6,pdata
+	iforce access
+	setarg 0x555555
+	store 3,mem_le_crcinit
+	rtn
+
+le_setup:
+	set1 mark_ext_patch,mark
+	bpatch patch21_6,mem_patch21
+	enable swfine
+	fetch 4,mem_le_access
+	iforce access
+	call le_map_channel
+	setarg 0x200
+	branch le_setup_master,master
+	fetch 2,mem_le_receive_window
+	rshift pdata,pdata
+le_setup_master:
+	arg param_pll_setup,temp
+	iadd temp,pdata
+	call ahead_window
+	deposit clke
+	store 6,mem_le_rxon_ts
+	rtn
+
+le_next_adv_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch21_7,mem_patch21
+	fetch 1,mem_le_ch_mapped
+	increase 1,pdata
+	store 1,mem_le_ch_mapped
+	rtnne 40
+	jam 37,mem_le_ch_mapped
+	rtn	
+
+le_context_nexthop:
+	set1 mark_ext_patch,mark
+	bpatch patch22_0,mem_patch22
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	rtnbit0 mode_le
+	add rega,coffset_le_event_cnt,contw
+	ifetch 2,contw
+	increase 1,pdata
+	istore 2,contw
+	add rega,coffset_le_hop,contr
+	ifetch 1,contr
+	add rega,coffset_le_ch,contw
+	ifetcht 1,contw
+	iadd temp,pdata
+	sub pdata,36,null
+	branch le_nexthop_nowrap,positive
+	increase -37,pdata
+le_nexthop_nowrap:
+	istore 1,contw
+	rtn
+
+
+le_calc_channel_map:
+	set1 mark_ext_patch,mark
+	bpatch patch22_1,mem_patch22
+	fetch 5,mem_le_channel_map
+	force 0,temp
+	force 37,loopcnt
+le_count_channels_loop:
+	bbit0 0,le_count_channels_notused
+	increase 1,temp
+le_count_channels_notused:
+	rshift pdata,pdata
+	loop le_count_channels_loop
+	add temp,-1,pdata
+	store 1,mem_le_channels
+	rtn
+
+le_map_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch22_2,mem_patch22
+	fetch 1,mem_le_ch
+	iforce queue
+	fetcht 5,mem_le_channel_map
+	qisolate1 temp
+	branch le_map_channel_end,true
+le_map_channel_next:
+	set1 mark_ext_patch,mark
+	bpatch patch22_3,mem_patch22
+	fetch 1,mem_le_channels
+	isub queue,pdata
+	branch le_map_channel_cont,positive
+	sub pdata,-1,queue
+	branch le_map_channel_next
+le_map_channel_cont:
+	copy queue,loopcnt
+	force 0,queue
+le_map_channel_loop:
+	qisolate1 temp
+	branch le_map_channel_skip,true
+	increase 1,loopcnt
+le_map_channel_skip:
+	deposit loopcnt
+	branch le_map_channel_end,blank
+	increase 1,queue
+	increase -1,loopcnt
+	branch le_map_channel_loop
+le_map_channel_end:
+	deposit queue
+	store 1,mem_le_ch_mapped
+	rtn
+
+
+le_wait_tx:
+	branch le_wait_master,master
+	until null,timeout
+	rtn
+	
+le_wait_master:
+	arg 0xea0,timeup
+	until clkn_rt,meet
+	rtn
+
+le_receive_adv:
+	disable swfine
+	fetch 2,mem_le_scan_window
+	copy pdata,timeup
+	branch le_receive_packet
+
+
+le_receive_slave:
+	set1 mark_ext_patch,mark
+	bpatch patch22_4,mem_patch22
+	enable swfine
+	fetch 2,mem_le_receive_window
+	fetcht 4,mem_le_transmit_window
+	iadd temp,timeup
+le_receive_packet:
+	call lerx_setfreq
+le_receive_rxon:
+	set1 mark_ext_patch,mark
+	bpatch patch22_5,mem_patch22
+	call le_prep
+	disable match
+	enable decode_fec0
+	enable is_rx
+	disable is_tx
+	copy timeup,stop_watch
+	correlate null,timeout
+	branch le_receive_on_attempt,attempt
+	copy clke,temp
+	storet 6,mem_sync_clke
+le_receive_on_attempt:
+	nbranch end_of_packet,sync
+	branch le_receive_skip,attempt
+	arg param_clke_cal_le,clke_rt
+	copy bt_clk,clke_bt
+	fetch 1,mem_le_state
+	bbit0 lestate_got_first_packet,le_receive_skip
+	call lpm_adjust_clk,wake
+le_receive_skip:
+	set1 mark_ext_patch,mark
+	bpatch patch22_6,mem_patch22
+	call save_rssi
+	enable enable_white
+	enable enable_crc
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_le_rxbuf
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	and pdata,0x3f,loopcnt
+	branch lerx_nopayload,zero
+	
+lerx_loop:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop lerx_loop
+	
+lerx_nopayload:
+	set1 mark_ext_patch,mark
+	bpatch patch22_7,mem_patch22
+	parse demod,bucket,24	
+	enable swfine
+	arg param_sifs,stop_watch		// start SIFS timer after last bit of crc
+	rshift32 pdata,pdata
+	rshift16 pdata,pdata
+	istore 3,contw
+	branch end_of_packet,crc_failed
+	enable match
+	fetch 1,mem_last_freq
+	add pdata,0,rega				// ble 2M Medium Frequency
+	call rf_write_freq				/* set frequency to tx mode freq */
+	disable decode_fec0
+	branch set_sync_on
+
+le_transmit_receive_sifs:
+	set1 mark_ext_patch,mark
+	bpatch patch23_0,mem_patch23
+	call le_transmit
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	enable swfine
+	arg 5500,timeup 
+	branch le_receive_rxon
+
+le_transmit_norx:
+	call le_transmit
+	branch end_of_packet
+	
+le_transmit:
+	set1 mark_ext_patch,mark
+	bpatch patch23_1,mem_patch23
+	call le_prep
+	call letx_setfreq
+	call le_transmit0
+	fetch 1,mem_device_option
+	beq dvc_op_module,module_le_transmit
+	rtn
+le_transmit0:
+	set1 TXGFSK,radio_ctrl
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	call le_wait_tx
+	rshift16 access,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	inject mod,40
+	enable enable_white
+	enable enable_crc
+	set1 mark_ext_patch,mark
+	bpatch patch23_2,mem_patch23
+	fetch 1,mem_le_txheader
+	inject mod,8
+	ifetch 1,contr
+	and pdata,0x3f,loopcnt
+	inject mod,8
+	branch letr_nopayload,zero
+letr_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop letr_loop
+	
+letr_nopayload:
+	enable enable_parity
+	inject mod,24
+	disable enable_parity
+	until null,tx_clear
+	nop 100          /* flush out the last bit */
+	disable encode_fec0
+	rtn
+	
+le_send_adv_ind:
+	set1 mark_ext_patch,mark
+	bpatch patch23_3,mem_patch23
+	fetch 1,mem_le_adv_type
+	beq ADV_DIRECT_IND,le_send_adv_direct_ind
+	fetch 1,mem_le_adv_own_addr_type
+	lshift4 pdata,pdata
+	lshift2 pdata,pdata
+	store 1,mem_le_txheader
+	fetcht 1,mem_le_adv_data_len
+	add temp,6,pdata
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	copy temp,loopcnt
+	arg mem_le_adv_data,contr
+	call memcpy_fast
+	branch le_send_adv_transmit
+le_send_adv_direct_ind:
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	copy rega,contw
+	setarg 1
+	istore 1,contw
+	fetch 1,mem_le_adv_direct_addr_type
+	lshift4 pdata,pdata
+	lshift2 pdata,pdata
+	increase 1,pdata
+	store 1,mem_le_txheader
+	setarg 12
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	fetch 6,mem_hci_plap
+	istore 6,contw
+le_send_adv_transmit:
+	set1 mark_ext_patch,mark
+	bpatch patch23_4,mem_patch23
+	fetch 1,mem_le_adv_transmit
+	increase 1,pdata
+	store 1,mem_le_adv_transmit
+	arg 1800,stop_watch
+	disable match
+	branch le_transmit_receive_sifs
+	
+le_send_scan_request:
+	set1 mark_ext_patch,mark
+	bpatch patch23_5,mem_patch23
+	fetch 1,mem_le_scan_type
+	rtnne LE_SCAN_TYPE_ACTIVE,pdata
+	fetch 1,mem_le_adv_transmit
+	increase 1,pdata
+	store 1,mem_le_adv_transmit
+	arg 0x0c03,temp// length + SCAN_REQ PDU
+	fetch 1,mem_le_scan_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,temp
+	copy regA,pdata
+	nsetflag blank,LE_RECEIVER_ADDR_BIT,temp	
+	storet 2,mem_le_txheader
+	fetch 6,mem_le_lap
+	istore 6,contw
+	fetch 6,mem_le_plap
+	istore 6,contw
+	branch le_transmit_receive_sifs
+
+
+le_send_scan_response:
+	set1 mark_ext_patch,mark
+	bpatch patch23_6,mem_patch23
+	arg SCAN_RSP,temp
+	fetch 1,mem_le_adv_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,temp
+	storet 1,mem_le_txheader
+	fetcht 1,mem_le_scan_data_len
+	add temp,6,pdata
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	arg mem_le_scan_data,contr
+	copy temp,loopcnt
+	call memcpy_fast
+	branch le_transmit_norx
+
+
+le_connect_request:
+	set1 mark_ext_patch,mark
+	bpatch patch23_7,mem_patch23
+	force -1,pdata
+	setsect 2,1
+	store 5,mem_le_channel_map
+	call le_calc_channel_map	
+	force 4,loopcnt
+	arg mem_le_access,contw
+	call generate_random_loop	
+	fetch 2,mem_le_conn_superto
+	store 2,mem_le_superto
+le_con_req_hop_retry:
+	random pdata
+	and_into 0xf,pdata
+	sub pdata,4,null
+	branch le_con_req_hop_retry,positive
+	store 1,mem_le_hop
+	store 1,mem_tmp1
+	set1 mark_ext_patch,mark
+	bpatch patch24_0,mem_patch24
+	fetcht 2,mem_le_conn_interval
+	storet 2,mem_le_tsniff	
+	copy temp,regc			// tsniff in regc
+	add clkn_bt,7,pdata			// leave space for offset
+	idiv regc
+	call wait_div_end
+	remainder rega
+	isub rega,pdata
+	iadd regc,pdata
+	fetcht 2,mem_le_dsniff
+	iadd temp,pdata
+	store 4,mem_le_anchor
+	isub clkn_bt,rega
+	increase -6,rega			// window offset
+	arg 0x2205,regb			// length & CONN_REQ PDU
+	fetch 1,mem_le_conn_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,regb
+	fetch 1,mem_le_conn_peer_addr_type
+	nsetflag blank,LE_RECEIVER_ADDR_BIT,regb
+	copy regb,pdata
+	store 2,mem_le_txheader
+	fetch 6,mem_le_lap
+	istore 6,contw//own addr
+	fetch 6,mem_le_plap
+	istore 6,contw// peer addr
+	fetch 4,mem_le_access
+	istore 4,contw
+	random pdata
+	istore 2,contw				/* crc init */
+	random pdata
+	istore 1,contw
+	force 2,pdata				/* window size */	
+	istore 1,contw
+	rshift2 rega,pdata
+	istore 2,contw				/* window offset */
+	rshift2 regc,pdata			
+	istore 2,contw				/* conn Interval */
+	set1 mark_ext_patch,mark
+	bpatch patch24_1,mem_patch24
+	fetch 2,mem_le_conn_latency			/* slave latency */
+	istore 2,contw
+	fetch 2,mem_le_conn_superto
+	istore 2,contw
+	fetch 5,mem_le_channel_map
+	istore 5,contw				/* channel map */
+	fetch 1,mem_le_hop
+	arg param_le_sca,temp
+	ior temp,pdata
+	istore 1,contw
+	call le_transmit_norx
+	setarg mem_le_txheader
+	add pdata,18,contr
+	ifetch 3,contr
+	store 3,mem_le_crcinit
+	rtn
+		
+le_init_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch24_2,mem_patch24
+	disable master
+	branch le_adv_access
+	
+
+
+le_update_param:
+	fetch 1,mem_le_state
+	rtnbit0 lestate_update_param
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	nrtn positive
+	set1 mark_ext_patch,mark
+	bpatch patch24_3,mem_patch24
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,le_update_param_common
+ 	jam 1,mem_lpm_mode		
+le_update_param_common:
+	fetch 1,mem_le_state
+	set0 lestate_update_param,pdata
+	set0 lestate_got_first_packet,pdata
+	store 1,mem_le_state
+	fetch 4,mem_le_anchor
+	fetcht 2,mem_le_tsniff
+	isub temp,rega
+	set1 mark_ext_patch,mark
+	bpatch patch24_4,mem_patch24
+	fetch 1,mem_le_new_param
+	store 1,mem_le_window_size
+	ifetcht 2,contr
+	ifetch 2,contr
+	lshift2 pdata,pdata
+	store 2,mem_le_tsniff
+	lshift2 temp,temp
+	iadd temp,pdata
+	ifetcht 4,contr
+	storet 4,mem_le_slave_latency	// and superTO
+	iadd rega,pdata
+	store 4,mem_le_anchor
+	branch le_receive_window_size
+
+le_update_channel_map:
+	set1 mark_ext_patch,mark
+	bpatch patch24_5,mem_patch24
+	fetch 1,mem_le_state
+	rtnbit0 lestate_update_map
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	nrtn positive
+	fetch 1,mem_le_state
+	set0 lestate_update_map,pdata
+	store 1,mem_le_state
+ 	fetch 5,mem_le_new_map
+	store 5,mem_le_channel_map
+	branch le_calc_channel_map	
+	
+	
+le_acknowledge:
+	set1 mark_ext_patch,mark
+	bpatch patch24_6,mem_patch24
+	call le_supervision_flush
+	call le_check_wak
+	fetch 1,mem_le_rxbuf
+	rshift pdata,pdata
+	ixor temp,pdata
+	isolate1 nesn,pdata
+	setflag true,mark_old_packet,mark	/* retransmit */
+	fetch 1,mem_le_rxbuf+1			
+	branch le_ack_unenc,blank		/* empty packet, no decryption */
+	fetch 1,mem_le_state
+	bbit0 lestate_encryption,le_ack_unenc
+	call load_sk
+	call le_decrypt
+	nrtn blank
+le_ack_unenc:
+	rtnmark1 mark_old_packet
+	fetcht 1,mem_le_arq
+	setflip nesn,temp
+	storet 1,mem_le_arq
+	branch le_parse
+	
+le_check_wak:
+	set1 mark_ext_patch,mark
+	bpatch patch24_7,mem_patch24
+	fetcht 1,mem_le_arq
+	isolate0 wak,temp
+	rtn true
+	fetch 1,mem_le_rxbuf
+	lshift pdata,pdata
+	ixor temp,pdata
+	rtnbit0 sn			/* received NESN is same as SN, NAK */
+	set0 wak,temp
+	setflip sn,temp
+	storet 1,mem_le_arq
+	compare 3,temp,3
+	nrtn true
+	fetch 1,mem_le_txpayload
+	beq LL_START_ENC_REQ,le_set_enc
+	fetch 1,mem_le_enc_state
+	beq FLAG_LE_ENC_PAUSE,le_clear_enc
+	rtn
+	
+
+le_set_enc:
+	fetch 1,mem_le_state
+	set1 lestate_encryption,pdata
+	store 1,mem_le_state
+	rtn	
+	
+le_clear_enc:
+	set1 mark_ext_patch,mark
+	bpatch patch25_0,mem_patch25
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	arg 0,pdata
+	store 4,mem_le_last_mic
+	store 5,mem_le_pcnt_tx
+	set1 39,pdata
+	store 5,mem_le_pcnt_rx
+	fetch 1,mem_le_state
+	set0 lestate_encryption,pdata
+	store 1,mem_le_state
+	rtn
+
+
+
+le_wait_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch25_1,mem_patch25
+	call le_next_adv_channel
+	call le_receive_adv
+	fetch 1,mem_le_adv_waitcnt
+	increase 1,pdata
+	store 1,mem_le_adv_waitcnt
+	rtn
+
+le_scan:
+	set1 mark_ext_patch,mark
+	bpatch patch25_2,mem_patch25
+	fetch 1,mem_le_scan_enable
+	rtnne LE_SCAN_ENABLE
+	arg le_scan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetch 2,mem_le_scan_interval
+	fetcht 2,mem_le_scan_window
+	isub temp,pdata
+	arg le_scan_interval_timer,queue
+	call timer_init
+	disable master
+	call le_init_adv
+	call le_wait_adv
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch25_3,mem_patch25
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+//	call le_scan_dongle
+
+	fetch 1,mem_le_adv_rcv
+	increase 1,pdata
+	store 1,mem_le_adv_rcv
+	call le_create_conn
+	rtn master
+	call le_send_scan_request
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch25_4,mem_patch25
+	fetch 1,mem_le_scanrsp_rcv
+	increase 1,pdata
+	store 1,mem_le_scanrsp_rcv
+	fetch 9,mem_le_rxbuf+8
+	store 9,mem_tmp_buffer
+	rtn
+	
+le_create_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch25_5,mem_patch25
+	fetch 1,mem_cmd_le_create_conn
+	rtnne hci_cmd_le_create_conn,pdata
+	fetch 6,mem_le_plap
+	fetcht 6,mem_le_conn_peer_addr
+	isub temp,null
+	nrtn zero
+	call context_new
+	nrtn zero
+	call le_connect_request
+	call le_init_master
+	set1 mark_ext_patch,mark
+	bpatch patch25_6,mem_patch25
+	jam 0,mem_hci_cmd
+	jam 0,mem_le_peer_sca
+	jam 0,mem_le_scan_enable
+	jam 0,mem_cmd_le_create_conn
+	jam XT_LL_VERSION_IND,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch context_save
+	
+le_scan_check_sender_addr_type:
+	arg 1,regA// sender_addr_type
+	fetch 1,mem_le_rxbuf
+	rtnbit1 LE_SENDER_ADDR_BIT
+	arg 0,regA
+	rtn
+
+le_xtype_fifo_count:
+	arg mem_le_xtype_fifo,contr
+	branch fifo_content_count
+	
+le_xtype_fifo_is_empty:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_empty
+	
+le_xtype_fifo_is_full:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_full
+	
+le_xtype_fifo_is_near_full:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_near_full
+	
+le_xtype_fifo_in:
+	arg mem_le_xtype_fifo,rega	
+	branch fifo_in
+	
+le_prepare_tx:
+	set1 mark_ext_patch,mark
+	bpatch patch25_7,mem_patch25
+	fetch 1,mem_le_arq
+	rtnbit1 wak
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_prepare_tx_shutter
+le_prepare_tx_1:
+	arg mem_le_xtype_fifo,rega
+	call fifo_out
+	nbranch le_prepare_tx_cmd,blank
+	branch le_send_empty
+
+le_prepare_tx_shutter:
+	fetch 1,mem_empty_count
+	nbranch le_send_empty_shutter,blank
+	fetch 1,mem_le_state  
+	bbit0 lestate_encryption,le_tx_4  
+	fetch 1,mem_le_rxbuf + 1  
+	branch le_tx_4,blank  
+	branch le_send_empty      // send empty data when got non empty packet
+le_send_empty_shutter:
+	fetch 1,mem_empty_count
+	increase -1,pdata
+	store 1,mem_empty_count
+	branch le_send_empty
+le_tx_4:	
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,in_le_tx_4
+	jam 3,mem_empty_count
+in_le_tx_4:	
+	branch le_prepare_tx_1
+	
+le_prepare_tx_cmd:
+	copy pdata,temp
+	set1 mark_ext_patch,mark
+	bpatch patch26_0,mem_patch26
+	copy temp,pdata
+	bbit0 5,le_prepare_l2cap
+	force 3,type
+	set0 5,pdata
+	store 1,mem_le_txpayload
+	set1 mark_ext_patch,mark
+	bpatch patch26_1,mem_patch26
+le_prepare_tx_ll:
+	fetch 1,mem_le_txpayload
+	beq LL_CONNECTION_UPDATE_REQ,le_send_connection_update_req
+	beq LL_CHANNEL_MAP_REQ,le_send_channel_map_req
+	beq LL_TERMINATE_IND,le_send_terminate_ind
+	beq LL_ENC_REQ,le_send_enc_req
+	beq LL_ENC_RSP,le_send_enc_rsp
+	beq LL_START_ENC_REQ,le_send_start_enc_req
+	beq LL_START_ENC_RSP,le_send_start_enc_rsp
+	beq LL_UNKNOWN_RSP,le_send_unknown_rsp
+	beq LL_FEATURE_REQ,le_send_feature
+	beq LL_FEATURE_RSP,le_send_feature
+	beq LL_PAUSE_ENC_REQ,le_send_pause_enc_req
+	beq LL_PAUSE_ENC_RSP,le_send_pause_enc_rsp
+	beq LL_VERSION_IND,le_send_version_ind
+	beq LL_REJECT_IND,le_send_reject_ind
+	beq LL_CONNECTION_PARAM_REQ,le_send_conn_param_req  //ACL PACKET
+	beq LL_PING_RSP ,le_send_ping_response
+	branch assert
+	
+le_prepare_l2cap:
+	jam 0,mem_le_txcid+1
+	force 2,type
+	bbit0 6,le_prepare_att
+	beq ATTOP_WRITE_COMMAND,le_prepare_att
+	beq ATTOP_SIGNED_WRITE_COMMAND,le_prepare_att
+	jam LE_L2CAP_CID_SMP,mem_le_txcid
+	set0 6,pdata
+	store 1,mem_le_l2cap
+	set1 mark_ext_patch,mark
+	bpatch patch26_2,mem_patch26
+	fetch 1,mem_le_l2cap
+le_prepare_smp0:
+	beq SMP_PAIRING_REQUEST,le_send_smp_pairing_request             
+	beq SMP_PAIRING_RESPONSE,le_send_smp_pairing_response            
+	beq SMP_PAIRING_CONFIRM,le_send_smp_pairing_confirm             
+	beq SMP_PAIRING_RANDOM,le_send_smp_pairing_random              
+	beq SMP_PAIRING_FAILED,le_send_smp_pairing_failed              
+	beq SMP_ENCRYPTION_INFORMATION,le_send_smp_encryption_information      
+	beq SMP_MASTER_IDENTIFICATION,le_send_smp_master_identification       
+	beq SMP_IDENTITY_INFORMATION,le_send_smp_identity_information        
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_send_smp_identity_address_information
+	beq SMP_SIGNING_INFORMATION,le_send_smp_signing_information         
+	beq SMP_SECURITY_REQUEST,le_send_smp_security_request            
+	beq SMP_PAIRING_PUBLIC_KEY,le_send_smp_pairing_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_send_smp_pairing_dhkey_check
+	branch assert
+	
+le_prepare_att:
+	jam LE_L2CAP_CID_ATT,mem_le_txcid
+	store 1,mem_le_l2cap
+	set1 mark_ext_patch,mark
+	bpatch patch26_3,mem_patch26
+	fetch 1,mem_le_l2cap
+	beq ATTOP_ERROR_RESPONSE,le_send_att_error_response
+	beq ATTOP_EXCHANGE_MTU_REQUEST,le_send_att_exchange_mtu_req
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,le_send_att_exchange_mtu_rsp
+	beq ATTOP_FIND_INFORMATION_REQUEST,le_send_att_find_information_request
+	beq ATTOP_FIND_INFORMATION_RESPONSE,le_send_att_find_information_response
+	beq ATTOP_FIND_BY_TYPE_VALUE_REQUEST,le_send_att_find_by_type_value_request
+	beq ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,le_send_att_find_by_type_value_response
+	beq ATTOP_READ_BY_TYPE_REQUEST,le_send_att_read_by_type_request
+	beq ATTOP_READ_BY_TYPE_RESPONSE,le_send_att_read_by_type_response
+	beq ATTOP_READ_REQUEST,le_send_att_read_request
+	beq ATTOP_READ_RESPONSE,le_send_att_read_response
+	beq ATTOP_READ_BLOB_REQUEST,le_send_att_read_blob_request
+	beq ATTOP_READ_BLOB_RESPONSE,le_send_att_read_blob_response
+	beq ATTOP_READ_MULTIPLE_REQUEST,le_send_att_read_multiple_request
+	beq ATTOP_READ_MULTIPLE_RESPONSE,le_send_att_read_multiple_response
+	beq ATTOP_READ_BY_GROUP_TYPE_REQUEST,le_send_att_read_by_group_type_request
+	beq ATTOP_READ_BY_GROUP_TYPE_RESPONSE,le_send_att_read_by_group_type_response
+	beq ATTOP_WRITE_REQUEST,le_send_att_write_request
+	beq ATTOP_WRITE_RESPONSE,le_send_att_write_response
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_send_att_prepare_write_request
+	beq ATTOP_PREPARE_WRITE_RESPONSE,le_send_att_prepare_write_response
+	beq ATTOP_EXECUTE_WRITE_REQUEST,le_send_att_execute_write_request
+	beq ATTOP_EXECUTE_WRITE_RESPONSE,le_send_att_execute_write_response
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,le_send_att_handle_value_notification
+	beq ATTOP_HANDLE_VALUE_INDICATION,le_send_att_handle_value_indication
+	beq ATTOP_HANDLE_VALUE_CONFIRMATION,le_send_att_handle_value_confirmation
+	beq ATTOP_WRITE_COMMAND,le_send_att_write_command
+	beq ATTOP_SIGNED_WRITE_COMMAND,le_send_att_signed_write_command
+	beq EMPTY_LE_DATA_PRE,le_send_empty_le_data_pre
+	beq EMPTY_LE_DATA,le_send_empty_le_data
+	beq ATTOP_CONTINUE,le_send_att_continue
+	branch assert
+	
+le_send_empty_le_data_pre:
+	jam ATTOP_READ_BY_GROUP_TYPE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	
+le_send_empty_le_data:
+	setarg 0x0011
+	store 2,mem_le_txheader
+	fetch 1,mem_le_arq
+	set1 wak,pdata
+	store 1,mem_le_arq
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_send_connection_update_req:
+	force 12,temp
+	branch le_send_packet
+	
+le_send_channel_map_req:
+	force 8,temp
+	branch le_send_packet
+	
+le_send_terminate_ind:
+	force 2,temp
+	branch le_send_packet
+	
+le_send_enc_req:
+	force 0,pdata
+	istore 8,contw					/* RAND=0 */
+	istore 2,contw					/* EDIV=0 */
+	copy contw,temp
+	arg mem_le_skdm,contw
+	force 8,loopcnt
+	call generate_random_loop
+	fetch 8,mem_le_skdm
+	istore 8,temp					/* SKDm */
+	copy contw,temp
+	arg mem_le_ivm,contw
+	force 4,loopcnt
+	call generate_random_loop
+	fetch 4,mem_le_ivm
+	istore 4,temp					/* IVm */
+	force 23,temp
+	branch le_send_packet
+	
+le_send_enc_rsp:
+	copy contw,temp
+	arg mem_le_skds,contw
+	force 8,loopcnt
+	call generate_random_loop
+	fetch 8,mem_le_skds
+	istore 8,temp					/* SKDs */
+	copy contw,temp
+	arg mem_le_ivs,contw
+	force 4,loopcnt
+	call generate_random_loop
+	fetch 4,mem_le_ivs
+	istore 4,temp					/* IVs */
+	call generate_sk
+	fetch 1,mem_ltk_exists
+	beq 0,le_ltk_lost	
+	jam XT_LL_START_ENC_REQ,mem_fifo_temp
+	call le_xtype_fifo_in
+	force 13,temp
+	branch le_send_packet
+
+le_ltk_lost:
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	jam XT_LL_REJECT_IND,mem_fifo_temp
+	call le_xtype_fifo_in
+	call check_51cmd_le_smp_sec_req	
+	force 13,temp
+	branch le_send_packet
+
+	
+le_send_start_enc_req:
+	force 1,temp
+	branch le_send_packet
+	
+le_send_start_enc_rsp:
+	force 1,temp
+	branch le_send_packet,master
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_send_start_enc_rsp_shutter
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,le_send_start_enc_rsp_end
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch le_send_start_enc_rsp_common
+le_send_start_enc_rsp_end:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+le_send_start_enc_rsp_common:
+	force 1,temp
+	branch le_send_packet
+le_send_start_enc_rsp_shutter:
+	jam 1,mem_lpm_mode
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,le_send_start_enc_rsp0
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+le_send_start_enc_rsp0:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	force 1,temp
+	call le_send_packet
+	jam 1,mem_send_updata_le_param_timer
+	rtn
+le_send_unknown_rsp:
+	fetch 1,mem_le_ll_cur_opcode
+	istore 1,contw
+	force 2,temp
+	branch le_send_packet
+	
+le_send_feature:
+	setarg param_le_features
+	istore 8,contw
+	force 9,temp
+	branch le_send_packet
+	
+le_send_pause_enc_req:
+//	force 1,temp
+//	branch le_send_packet		
+le_send_pause_enc_rsp:
+le_send_ping_response:
+	force 1,temp
+	branch le_send_packet	
+	
+le_send_version_ind:
+	fetch 5,mem_lmp_version
+	istore 5,contw
+//	setarg param_le_version
+//	istore 3,contw
+//	setarg param_le_subversion
+//	istore 2,contw
+	force 6,temp
+	branch le_send_packet
+	
+le_send_reject_ind:
+	setarg LE_ERR_PIN_OR_KEY_MISSING
+	istore 1,contw
+	force 2,temp
+	branch le_send_packet
+
+le_send_conn_param_req:
+	increase -1,contw
+	setarg 0x000c
+	istore 2,contw //Length
+	setarg 0x0005
+	istore 2,contw	//CID
+	setarg 0xb412
+	istore 2,contw		
+	setarg 0x0008
+	istore 2,contw
+	fetch 8,mem_le_interal_min
+	istore 8,contw
+	force 2,type
+	branch le_send_autolen
+
+le_send_smp_pairing_request:
+	setarg 0x1000401
+	store 4,mem_le_preq
+	setarg 0x070710
+	istore 3,contw
+	fetch 6,mem_le_preq_iocap
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+	
+le_send_smp_pairing_response:
+	fetch 1,mem_device_option
+	sub pdata,dvc_op_module,null
+	call  le_parse_smp_pairing_request_check_irk,zero
+
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,le_send_smp_pairing_response_common
+ 	jam PAIR_ING, mem_pair_state
+	fetch 1,mem_le_preq_init_key_distribution
+	bbit1 INITATOR_IRK,le_send_smp_pairing_response_common
+	setarg param_smp_key_dist2
+	istore 3,contw	
+le_send_smp_pairing_response_common:
+	fetch 6,mem_le_pres_iocap
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+
+le_parse_smp_pairing_request_check_irk:
+	fetcht 1,mem_le_pres_init_key_distribution
+	fetch 1,mem_le_preq_init_key_distribution
+	isolate1 LE_INITATOR_IRK_BIT,pdata
+	setflag true,LE_INITATOR_IRK_BIT,temp
+	storet 1,mem_le_pres_init_key_distribution
+	fetcht 1,mem_le_pres_resp_key_distribution
+	setflag true,LE_INITATOR_IRK_BIT,temp
+	storet 1,mem_le_pres_resp_key_distribution
+	rtn
+	
+	
+le_send_smp_pairing_confirm:
+	fetch 1,mem_le_secure_connect_enable
+	beq 1,le_send_smp_pairing_confirm_sc
+	call generate_confirm
+	arg mem_le_l2cap_response,contw
+	call store_aes_result
+	force 21,temp
+	branch le_send_packet
+le_send_smp_pairing_confirm_sc:
+	arg mem_le_srand,contw	
+	call generate_random
+	call function_f4_cb
+	arg mem_le_l2cap_response,contw
+	call load_inverse_result
+	force 21,temp
+	branch le_send_packet
+
+le_send_smp_pairing_random:
+	fetch 8,mem_le_mrand
+	branch le_send_smp_mrandom,master
+	fetch 8,mem_le_srand
+	
+le_send_smp_mrandom:
+	call le_send_smp_128
+	branch le_send_packet
+	
+le_send_smp_pairing_failed:
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	arg PAIRING_FAILED_UNSPECIFIED_REASON,pdata
+	istore 1,contw
+	force 6,temp
+	branch le_send_packet
+	
+le_send_smp_encryption_information:
+	jam BT_EVT_LE_ENC_INFO,mem_fifo_temp
+	call ui_ipc_send_event
+	jam XT_SMP_MASTER_IDENTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 1,mem_device_option
+	beq dvc_op_shutter, le_send_smp_encryption_information_shutter
+	fetch 8,mem_le_ltk
+	call le_send_smp_128
+	call le_send_packet
+	fetch 1,mem_le_conn_peer_addr_type
+	beq MASTER_PUBLIC_ADDR,app_ble_store_reconn_info
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	branch app_ble_store_reconn_info,true
+	rtn
+	
+le_send_smp_encryption_information_shutter:
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	
+	fetch 8,mem_le_ltk
+	call le_send_smp_128
+	branch le_send_packet
+	
+	
+le_send_smp_master_identification:
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_send_smp_master_identification_shutter
+
+	fetch 1,mem_le_preq_init_key_distribution
+	bbit0 LE_INITATOR_IRK_BIT,le_send_smp_master_identification_only
+	jam XT_SMP_IDENTITY_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch le_send_smp_master_identification_common
+	
+le_send_smp_master_identification_only:	
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	jam FLAG_LE_PAIRING_END,mem_le_pairing_state
+le_send_smp_master_identification_common:	
+	arg mem_le_ediv,contw
+	force 10,loopcnt
+	call generate_random_loop
+	fetch 2,mem_le_ediv
+	store 2,mem_le_l2cap_response
+	fetch 8,mem_le_rand
+	istore 8,contw
+	force 15,temp
+	branch le_send_packet
+
+le_send_smp_master_identification_shutter:
+	arg mem_le_l2cap_response,contw
+	force 8,loopcnt
+	call generate_random_loop
+	force 15,temp
+	branch le_send_packet
+	
+le_send_smp_identity_information:
+	jam XT_SMP_IDENTITY_ADDRESS_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	setarg 0
+	store 8,mem_le_l2cap_response
+	istore 8,contw	//irk is zero. a device does not have a valid resolvable private address.
+	branch le_send_autolen
+	
+le_send_smp_identity_address_information:
+//	jam XT_SMP_SIGNING_INFORMATION,mem_fifo_temp
+//	call le_xtype_fifo_in
+	fetch 1,mem_le_conn_own_addr_type					 
+	store 1,mem_le_l2cap_response
+	fetch 6,mem_le_lap
+	istore 6,contw
+	branch le_send_autolen
+	
+le_send_smp_signing_information:
+	arg mem_le_l2cap_response,contw
+	call generate_random
+	branch le_send_autolen
+	
+le_send_smp_security_request:
+	fetch 1,mem_le_pres_auth
+	store 1,mem_le_l2cap_response
+	force 6,temp
+	branch le_send_packet
+
+le_send_smp_pairing_public_key:
+//p_le_send_continue:
+	fetch 1,mem_le_continue_type
+	beq LE_CONTINUE_TYPE_PUBLIC_KEY,le_send_public_key_continue
+//	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+
+	arg 65,temp
+	storet 2,mem_le_txpayload // L2CAP length
+	set1 mark_ext_patch,mark
+	bpatch patch26_4,mem_patch26
+	arg 0x02,type  //LLIC:start
+	setarg LE_L2CAP_CID_SMP
+	store 2,mem_le_txcid //contw
+
+	arg mem_le_l2cap_response,contw
+	arg 22,loopcnt
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy_fast
+	jam 22,mem_le_public_length
+	
+	jam  27,mem_le_txlen
+
+	fetcht 1,mem_le_arq
+	set1 md,temp
+	storet 1,mem_le_arq
+//	jam 0,mem_le_md_flag
+//	jam LE_MD_NOTIFICATION,mem_le_continue_type
+//	jam ATTOP_CONTINUE,mem_fifo_temp
+//	call le_xtype_fifo_in
+	jam LE_CONTINUE_TYPE_PUBLIC_KEY,mem_le_continue_type
+	fetcht 1,mem_le_arq
+	branch le_send_non_l2cap2	
+
+
+le_send_public_key_continue:
+	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+
+	fetch 1,mem_le_public_length
+	beq 22,le_send_public_key_continue2
+
+	arg  15,loopcnt
+	jam 15,mem_le_txlen
+	call le_send_smp_publickey_continue_common
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_SEND_PUBLIC_KEY,mem_le_secure_connect_state
+	jam 0,mem_le_public_length
+	rtn
+le_send_smp_publickey_continue_common:
+	arg mem_le_pubkey_local_x_256 ,contr
+	iadd contr,contr	
+	arg mem_le_txpayload,contw
+	call memcpy_fast
+	arg 1,type   // LLID : continue
+	branch le_send_non_l2cap	
+
+
+le_send_public_key_continue2:	
+	jam 49,mem_le_public_length
+	arg  27,loopcnt
+	jam 27,mem_le_txlen
+	call le_send_smp_publickey_continue_common
+
+	jam LE_CONTINUE_TYPE_PUBLIC_KEY,mem_le_continue_type
+
+//	jam ATTOP_CONTINUE,mem_fifo_temp
+//	branch le_xtype_fifo_in
+	rtn
+	
+le_send_smp_pairing_dhkey_check:
+	call function_f6_eb
+	arg mem_le_l2cap_response,contw
+	call load_inverse_result
+	force 21,temp
+	branch le_send_packet
+	
+le_send_smp_128:
+	store 8,mem_le_l2cap_response
+	ifetch 8,contr
+	istore 8,contw
+	force 21,temp
+	rtn
+
+le_send_att_error_response_notfound:	
+	jam ATT_ERR_ATTRIBUTE_NOT_FOUND,mem_le_err_code
+le_send_att_error_response:	
+	jam ATTOP_ERROR_RESPONSE,mem_le_l2cap
+	fetch 3,mem_le_att_opcode
+	store 3,mem_le_l2cap_response
+	fetch 1,mem_le_err_code
+	istore 1,contw
+	branch le_send_autolen
+	
+le_send_att_exchange_mtu_rsp:
+le_send_att_exchange_mtu_req:
+	fetch 2,mem_le_local_mtu
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_find_information_request:
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_le_l2cap_response
+	fetch 2,mem_le_search_handle_end
+	istore 2,contw
+	branch le_send_autolen
+	
+	
+
+le_send_att_find_information_response:
+	arg 2,timeup
+	force 1,pdata
+	store 1,mem_le_l2cap_response
+	call le_init_attlist_search
+le_send_att_find_information_res_loop:
+	call le_att_handle_inrange
+	branch le_send_att_find_information_res_end,blank
+	nbranch le_send_att_find_information_res_next,positive
+	disable user
+	istore 2,contw
+	ifetch 1,contr
+	copy pdata,loopcnt
+	call memcpy_fast
+	increase -1,timeup
+	branch le_send_att_find_information_res_end,zero
+le_send_att_find_information_res_cont:
+	ifetch 1,contr
+	iadd contr,contr
+	branch le_send_att_find_information_res_loop
+le_send_att_find_information_res_next:
+	ifetch 1,contr
+	iadd contr,contr
+	branch le_send_att_find_information_res_cont
+le_send_att_find_information_res_end:
+	branch le_send_att_error_response_notfound,user
+	branch le_send_autolen
+	
+	
+le_send_att_find_by_type_value_request:
+	fetch 2,mem_le_search_handle_start
+	branch le_send_empty_le_data,blank
+	store 2,mem_le_l2cap_response
+	fetch 2,mem_le_search_handle_end
+	//setarg 0xffff
+	istore 2,contw
+	fetch 2,mem_le_search_uuid
+	//setarg 0x2800
+	istore 2,contw
+	fetch 2,mem_le_search_att_type
+	//setarg 0x1801
+	istore 2,contw
+	branch le_send_autolen
+
+
+le_start_end_handle_check_1:
+	disable user
+	fetcht 2,mem_le_search_handle_start
+	fetch 2,mem_le_search_handle_end
+	isub temp,null
+	nbranch le_start_end_handle_check_1_fail,positive
+	deposit temp
+	rtnne 0
+le_start_end_handle_check_1_fail:
+	enable user
+	jam ATT_ERR_INVALID_HANDLE,mem_le_err_code
+	branch le_send_att_error_response
+	
+le_send_att_find_by_type_value_response:
+	call le_start_end_handle_check_1
+	rtn user
+	fetcht 2,mem_le_search_uuid
+	setarg UUID_GATT_PRIMARY_SERVICE
+	isub temp,null
+	branch le_send_att_find_by_type_value_res_primary,zero
+	setarg UUID_GATT_SECONDARY_SERVICE
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	setarg UUID_GATT_INCLUDE
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	branch le_send_att_error_response_notfound
+	
+le_send_att_find_by_type_value_res_primary:
+	jam LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND,mem_le_search_res
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+	call le_att_get_handle_info
+	nbranch le_send_att_error_response_notfound,blank
+le_send_att_find_primary_search_loop:
+	fetcht 2,mem_temp
+	call le_att_get_handle_info
+	nbranch le_send_att_error_response_notfound2,blank	
+	copy contr,rega
+	fetch 1,mem_le_search_len
+	copy pdata,loopcnt
+	fetcht 1,mem_le_search_att_type_length
+	isub temp,null
+	nbranch le_send_att_find_primary_search_loop1,zero
+	arg mem_le_search_att_type,regb
+	call string_compare
+
+	branch le_send_att_find_primary_search_end_start_handle_found,zero
+
+	fetch 2,mem_le_cur_uuid
+	fetcht 2,mem_le_search_uuid
+	isub temp,null
+	branch le_send_att_find_primary_search_end_ending_handle_found,zero
+le_send_att_find_primary_search_loop1:
+	fetch 2,mem_temp
+	increase 1,pdata
+	store 2,mem_temp
+	branch le_send_att_find_primary_search_loop
+
+le_send_att_error_response_notfound2:
+	fetch 1,mem_le_search_res
+	beq LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE,le_send_att_find_primary_search_end_ending_handle_found
+	branch le_send_att_error_response_notfound
+
+	
+le_send_att_find_primary_search_end_start_handle_found:
+	fetch 2,mem_le_cur_uuid
+	fetcht 2,mem_le_search_uuid
+	isub temp,null
+	nbranch  le_send_att_find_primary_search_loop1,zero
+	jam LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE,mem_le_search_res
+//	copy rega,temp
+	fetcht 2,mem_temp
+	storet 2,mem_le_cur_handle_start
+	branch le_send_att_find_primary_search_loop1
+
+le_send_att_find_primary_search_end_ending_handle_found:
+	fetch 1,mem_le_search_res
+	beq LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND,le_send_att_find_primary_search_loop1
+	jam LE_FIND_BY_TYPE_VAL_RES_FOUND_ENDING_HANDLE,mem_le_search_res
+	fetcht 2,mem_temp
+	increase -1,temp
+	storet 2,mem_le_cur_handle_end
+le_send_att_find_primary_search_end:
+	fetch 2,mem_le_cur_handle_start
+	icopy rega//handle start
+	fetch 2,mem_le_cur_handle_end
+	icopy regb//handle end
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_le_l2cap
+	deposit rega
+	store 2,mem_le_l2cap_response
+	deposit regb
+	istore 2,contw
+	force 9,temp
+	branch le_send_packet
+
+	
+le_send_att_read_by_type_request:
+	fetch 2,mem_le_search_handle_start
+//	setarg 0x0001
+	istore 2,contw
+	fetch 2,mem_le_search_handle_end
+//	setarg 0x0018
+	istore 2,contw
+	fetch 2,mem_le_search_att_type
+	istore 2,contw
+	force 11,temp
+	branch le_send_packet
+
+	
+
+le_send_att_read_by_type_response:
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+	call le_init_attlist_search
+	call le_att_get_handle_ptr2
+	increase -2,contr
+	copy contr,pdata
+	store 2,mem_le_cur_attlist_start_ptr
+
+	fetcht 2,mem_le_search_uuid
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	nbranch le_send_att_read_by_type_res_not_characteristic,zero
+	arg 2,timeup
+	set1 mark_ext_patch,mark
+	bpatch patch26_5,mem_patch26
+le_send_att_read_by_type_response_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_read_by_type_response_end,positive
+	fetcht 2,mem_temp
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_read_by_type_response_end
+	call le_att_same_uuid
+	nbranch le_send_att_read_by_type_response_next_handle,zero
+	nbranch le_send_att_read_by_type_res_found_next,user
+	disable user
+	
+	call le_send_att_read_by_type_write_properties
+	call le_att_next_handle
+	call le_att_get_handle_info_from_ptr
+	call le_send_att_read_by_type_write_uuid
+	increase -1,timeup
+	branch le_send_att_read_by_type_response_end,zero
+le_send_att_read_by_type_response_next_handle:
+	call le_att_next_handle
+	branch le_send_att_read_by_type_response_loop
+le_send_att_read_by_type_response_end:
+	branch le_send_att_error_response_notfound,user
+	branch le_send_auto_len_by_mem
+
+le_send_att_read_by_type_res_found_next:
+	call le_store_att_record
+	call le_att_next_handle
+	call le_att_get_handle_info_from_ptr
+	fetch 1,mem_le_l2cap_response
+	beq 21,le_send_att_read_by_type_response_end
+	fetch 1,mem_le_cur_uuid_lenth
+	increase 5,pdata
+	fetcht 1,mem_le_l2cap_response
+	isub temp,null
+	nbranch le_send_att_read_by_type_response_end,zero
+	
+	call get_contw
+	fetch 2,mem_temp
+	increase -1,pdata
+	istore 2,contw
+	call le_write_att_record_common
+	call le_send_att_read_by_type_write_uuid
+	increase -1,timeup
+	branch le_send_att_read_by_type_response_end,zero
+	branch le_send_att_read_by_type_response_next_handle
+le_send_att_read_by_type_write_properties:
+	fetch 2,mem_temp
+	store 2,mem_le_l2cap_response+1
+	
+	fetch 1,mem_le_search_len
+	copy pdata,loopcnt
+	call get_contr
+	call memcpy_fast
+	branch store_contw
+le_send_att_read_by_type_write_uuid:
+	call get_contw
+	fetch 2,mem_temp
+	istore 2,contw
+	call store_contw
+	fetch 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	increase 5,pdata
+	store 1,mem_le_l2cap_response
+	call get_contw	
+	call get_contr
+	isub loopcnt,contr
+	increase -1,contr
+	call memcpy_fast
+	branch store_contw
+
+
+
+le_send_att_read_by_type_res_not_characteristic:
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+le_send_att_read_by_type_res_not_char_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_error_response_notfound,positive
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_error_response_notfound
+	call le_att_same_uuid
+	nbranch le_send_att_read_by_type_res_not_char_next,zero
+le_check_if_name_uuid:
+	fetch 1,mem_le_search_uuid_length
+	bne 2,le_send_att_read_by_type_res_not_name
+	fetch 2,mem_le_search_uuid
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	isub temp,null
+	nbranch le_send_att_read_by_type_res_not_name,zero
+	fetch 1,mem_le_name_len
+	branch le_send_att_read_by_type_res_not_char_common
+le_send_att_read_by_type_res_not_name:	
+	fetch 1,mem_le_search_len
+le_send_att_read_by_type_res_not_char_common:
+	copy pdata,loopcnt
+	increase 2,pdata
+	store 1,mem_le_l2cap_response
+	fetch 2,mem_temp
+	istore 2,contw
+	call get_contr
+	call memcpy_fast
+	branch le_send_autolen
+le_send_att_read_by_type_res_not_char_next:
+ 	call le_att_next_handle
+	branch le_send_att_read_by_type_res_not_char_loop
+	
+	
+le_send_att_read_request:
+	fetch 1,mem_le_temp
+	//branch le_send_att_read_req_end,blank
+         increase -1,pdata
+         store 1,mem_le_temp
+         lshift pdata,pdata
+         //increase -2,pdata
+         iadd contr,contr
+         ifetcht 2,contr
+         storet 2,mem_le_l2cap_response
+	branch le_send_autolen
+	
+le_send_att_read_response:
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_INSUFFICIENT_AUTHENTICATION,le_send_att_read_response_common
+	fetch 2,mem_le_att_handle
+	fetcht 2,mem_le_pairing_handle
+	isub temp,null
+	branch le_send_att_read_response_error_insufficient_authentication,zero
+le_send_att_read_response_common:
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch le_send_att_error_response_notfound,blank
+	ifetch 1,contr
+	branch le_send_autolen,blank
+	sub pdata,22,null
+	branch le_send_att_read_response_less,positive
+	force 22,pdata
+le_send_att_read_response_less:
+	icopy loopcnt
+	call memcpy_fast
+	branch le_send_autolen
+
+le_send_att_read_response_error_insufficient_authentication:
+	fetch 1,mem_le_pairing_mode
+	branch le_send_att_read_response_common,blank
+	fetch 1,mem_le_state
+	bbit1 lestate_encryption,le_send_att_read_response_common
+	jam ATT_ERR_INSUFFICIENT_AUTHENTICATION,mem_le_err_code
+	branch le_send_att_error_response
+	
+le_send_att_read_blob_request:
+	setarg 0x0003
+	store 2,mem_le_l2cap_response
+	setarg 0x0008
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_read_blob_response:
+	fetch 2,mem_le_att_offset
+	iforce rega
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr 
+	branch le_send_att_error_response_notfound,blank
+	ifetch 1,contr
+	isub rega,loopcnt
+	nbranch le_send_att_error_response_notfound,positive
+	sub loopcnt,22,null
+	branch le_send_att_read_blob_response_less,positive
+	force 22,loopcnt
+le_send_att_read_blob_response_less:
+	deposit rega
+	iadd contr,contr
+	call memcpy_fast	
+	branch le_send_autolen
+	
+le_send_att_read_multiple_request:
+	setarg 0x0003
+	istore 2,contw
+	setarg 0x0007
+	istore 2,contw
+	setarg 0x0009
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_read_multiple_response:
+	fetch 1,mem_le_temp
+	icopy regc//handle number
+	//store 1,0x1ff0
+	arg mem_le_rxbuf+7,rega
+	arg mem_le_l2cap_response,regb
+	arg 0,timeup
+	disable user7
+
+le_send_att_read_multiple_response_loop:
+	copy rega,contr
+	ifetcht 2,contr
+	copy contr,rega
+	call le_att_get_handle_ptr 
+	branch le_send_att_read_multiple_response_end,blank
+	ifetch 1,contr
+	icopy loopcnt
+	iadd timeup,timeup
+	//deposit timeup
+	//store 1,0x1ff3
+	//branch loop	
+	sub timeup,24,null
+	nbranch le_send_att_read_multiple_response_end_1,positive
+	copy regb,contw
+	
+le_copy_att_value_loop_3:
+	ifetch 1,contr
+	istore 1,contw
+	loop le_copy_att_value_loop_3
+	copy contw,regb
+	enable user7
+	increase -1,regc
+	branch le_send_att_read_multiple_response_end,zero
+	branch le_send_att_read_multiple_response_loop
+
+le_send_att_read_multiple_response_end:
+	nbranch le_send_att_read_multiple_response_fail,user7
+	disable user7
+	copy timeup,temp
+	increase 5,temp
+	branch le_send_packet
+	
+le_send_att_read_multiple_response_end_1:
+	nbranch le_send_att_read_multiple_response_fail,user7
+	disable user7
+	deposit timeup
+	isub loopcnt,temp
+	increase 5,temp
+	branch le_send_packet
+	
+le_send_att_read_multiple_response_fail:
+	jam ATT_ERR_UNSUPPORTED_GROUP_TYPE,mem_le_err_code
+	branch le_send_att_error_response
+
+	
+le_send_att_read_by_group_type_request:
+	fetch 2,mem_le_att_handle
+	branch le_send_empty_le_data,blank
+	istore 2,contw
+	setarg 0xffff
+	istore 2,contw
+	setarg 0x2800
+	istore 2,contw
+	branch le_send_autolen
+
+
+//mem_le_search_att_type
+//mem_le_search_handle_start
+//mem_le_search_handle_end
+le_send_att_read_by_group_type_response:
+	arg 2,timeup
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_temp
+	jam 0,mem_le_search_res
+//	enable user
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+	call le_init_attlist_search
+	call le_att_get_handle_ptr2
+	increase -2,contr
+	copy contr,pdata
+	store 2,mem_le_cur_attlist_start_ptr
+	set1 mark_ext_patch,mark
+	bpatch patch26_6,mem_patch26
+le_send_att_read_by_group_type_response_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_read_by_group_type_end0,positive
+	fetcht 2,mem_temp
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_read_by_group_type_end1
+
+	call le_att_same_type
+	nbranch le_send_att_read_by_group_type_next_handle,zero
+	fetch 1,mem_le_search_res
+	beq 1,le_send_att_read_by_group_type_end1
+	nbranch le_send_att_read_by_group_type_store_write_record,user		//un first
+	disable user
+	fetch 1,mem_le_search_len
+	increase 4,pdata
+	store 1,mem_le_l2cap_response
+	call store_contw
+	branch le_send_att_read_by_group_type_store_record
+le_send_att_read_by_group_type_store_write_record:
+	fetch 1,mem_le_l2cap_response
+	beq 20,le_send_att_read_by_group_type_end1
+	fetch 1,mem_le_search_len
+	increase 4,pdata
+	fetcht 1,mem_le_l2cap_response
+	isub temp,null
+	nbranch le_send_att_read_by_group_type_end1,zero
+//	fetch 1,mem_le_l2cap_response
+//	sub pdata,0x10,null
+//	branch le_send_att_read_by_group_type_end1,zero
+	fetch 2,mem_temp
+	increase -1,pdata
+	store 2,mem_le_cur_handle_end
+	call le_write_att_record
+le_send_att_read_by_group_type_store_record:
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_start
+	call le_store_att_record
+	increase -1,timeup
+	branch le_send_att_read_by_group_type_last_find,zero		
+le_send_att_read_by_group_type_next_handle:
+	call le_att_next_handle
+	branch le_send_att_read_by_group_type_response_loop
+le_send_att_read_by_group_type_last_find:
+	jam 1,mem_le_search_res
+	branch le_send_att_read_by_group_type_next_handle
+le_send_att_read_by_group_type_end0:	//> att handle end
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_end
+	branch le_send_att_read_by_group_type_end_common
+le_send_att_read_by_group_type_end1:	//>att max list handle or diff len 
+	fetch 2,mem_temp
+	increase -1,pdata
+	store 2,mem_le_cur_handle_end
+	branch le_send_att_read_by_group_type_end_common
+le_send_att_read_by_group_type_end_common:
+	branch le_send_att_error_response_notfound,user
+	call le_write_att_record
+	branch le_send_auto_len_by_mem
+
+	
+le_att_next_handle:
+	fetcht 2,mem_temp
+	increase 1,temp
+	storet 2,mem_temp
+	rtn
+
+le_att_check_handle_end:
+	fetcht 2,mem_temp
+	fetch 2,mem_le_search_handle_end
+	isub temp,null
+	rtn
+
+le_att_same_type:
+	fetcht 1,mem_le_search_att_type_length
+	arg mem_le_search_att_type,rega
+le_att_check_same_common:
+	fetch 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	isub temp,null
+	nrtn zero
+	arg mem_le_cur_uuid ,regb
+	branch string_compare
+
+le_att_same_uuid:
+	fetcht 1,mem_le_search_uuid_length
+	arg mem_le_search_uuid,rega
+	branch le_att_check_same_common
+	
+	
+le_store_att_record:
+	fetch 1,mem_le_search_len
+	store 1, mem_tmp_buffer
+	copy pdata,loopcnt
+	call get_contr
+	branch memcpy_fast
+
+le_send_auto_len_by_mem:
+	call get_contw
+	branch le_send_autolen
+	
+le_write_att_record:
+	call get_contw
+	fetch 2,mem_le_cur_handle_start
+	istore 2,contw
+	fetch 2,mem_le_cur_handle_end
+	istore 2,contw
+le_write_att_record_common:
+	fetch 1,mem_tmp_buffer
+	copy pdata,loopcnt
+	call memcpy_fast
+	branch store_contw
+	
+le_send_att_write_request:
+	fetch 2,mem_le_notify_handle
+	store 2,mem_le_l2cap_response
+	fetch 1,mem_le_handle_data_len
+	copy pdata,loopcnt
+	arg mem_le_handle_data,contr
+	call memcpy_fast
+	branch le_send_autolen
+	
+	
+le_send_att_write_response:
+	force 5,temp
+	branch le_send_packet
+
+le_send_att_prepare_write_request:
+	force 6,temp
+	branch le_send_packet
+
+le_send_att_continue:
+	fetch 1,mem_le_continue_type
+	beq LE_CONTINUE_TYPE_NOTIFICATION,le_send_att_notify_continue
+	beq LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,le_send_att_prepare_write_response_continue
+	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+	rtn
+
+le_send_att_notify_continue:
+	fetch 2,mem_cb_update_notify_continue
+	branch callback_func
+
+le_send_att_prepare_write_response_continue:
+	fetch 2,mem_prepare_write_len
+	branch assert,blank
+	fetcht 2,mem_prepare_write_offest
+	branch assert,blank
+	isub temp,pdata // current len
+	arg 27,temp
+	call not_greater_than
+	copy pdata,loopcnt
+//	fetch 2,mem_module_hci_notify_start
+//	copy pdata,contru
+//	fetch 2,mem_prepare_write_offest
+//	iadd contru,contru //start + offset
+	arg mem_temp_prepare_write_request,rega
+	fetch 2,mem_prepare_write_offest
+	iadd rega,rega
+	iadd loopcnt,pdata
+	store 2,mem_prepare_write_offest //offset += len;
+	fetcht 2,mem_prepare_write_len
+	isub temp,temp // if(0 == offset - len){goto no_more_continue;}
+	ncall le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,mem_le_continue_type
+	arg mem_le_txpayload,contw
+	copy rega,contr
+	call memcpy_fast
+	arg 1,type   // LLID : continue
+	branch le_send_not_fill_l2cap_len
+	
+	
+le_send_att_prepare_write_response:
+	fetch 2,mem_prepare_write_len
+	branch assert,blank
+	add pdata,5,temp   //1byte opcode,2byte handle,2byte offset
+	storet 2,mem_le_txpayload // L2CAP length
+	arg 18,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	store 2,mem_prepare_write_offest
+	//increase 7,pdata
+	//store 1,mem_le_txlen   //start packet baseband length
+	fetcht 2,mem_prepare_write_len
+	isub temp,temp
+	ncall le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,mem_le_continue_type
+	arg 0x02,type  //LLIC:start
+	//setarg 4
+	//store 2,mem_le_txcid // l2cap cid
+	//jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_le_l2cap // att op-code
+	fetch 2,mem_prepare_handle //att handle
+	store 2,mem_le_l2cap+1 //contw
+	fetch 2,mem_le_prepare_write_req_offset 
+	istore 2,contw //offset
+//	fetch 2,mem_temp_prepare_write_request
+//	copy pdata,contru
+	//fetch 2,mem_module_hci_notify_offset // = 0
+	//iadd contru,contru
+	arg mem_temp_prepare_write_request,contr
+	call memcpy_fast
+le_send_not_fill_l2cap_len:
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	branch le_send_non_l2cap
+
+
+le_send_att_insert_continue:
+	fetch 3,mem_le_xtype_fifo
+	nbranch le_send_att_insert_cont_next,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+2
+	rtn
+le_send_att_insert_cont_next:
+	call le_xtype_fifo_is_near_full
+	nbranch assert,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+1
+	rtn
+
+
+	
+le_send_att_execute_write_request:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_execute_write_response:
+	force 5,temp
+	branch le_send_packet
+
+le_att_check_notification_enable: // temp ->handle,output-> pdata,output :contr->rega
+	set1 mark_ext_patch,mark
+	bpatch patch26_7,mem_patch26
+	increase 1,temp
+	call le_att_get_handle_ptr
+	increase -2,contr
+	ifetch 2,contr
+	arg CLIENT_CHARACTERTIC_CONFIGURATION,temp
+	isub temp,null
+	nrtn zero
+	increase 1,contr
+	copy contr,rega
+	ifetch 1,contr
+	rtn
+	
+le_send_att_handle_value_notification:
+	fetch 2,mem_cb_update_notify_value
+	branch callback_func
+
+le_send_att_handle_value_indication:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_handle_value_confirmation:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_write_command:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_signed_write_command:
+	force 6,temp
+	branch le_send_packet
+
+
+le_send_autolen:
+	set1 mark_ext_patch,mark
+	bpatch patch27_0,mem_patch27
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	branch le_send_packet
+
+
+le_send_empty:
+	force 0,temp
+	force 1,type
+	
+le_send_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch27_1,mem_patch27
+	storet 1,mem_le_txlen
+	compare 2,type,3
+	nbranch le_send_non_l2cap,true
+	add temp,-4,pdata
+	store 2,mem_le_txpayload
+	
+le_send_non_l2cap:
+	fetcht 1,mem_le_arq
+	call le_xtype_fifo_is_empty
+le_send_non_l2cap1:
+	nsetflag blank,md,temp
+le_send_non_l2cap2:
+	set1 wak,temp
+	and temp,0xfc,pdata
+	ior type,pdata
+	store 1,mem_le_arq
+	and_into 0x1f,pdata
+	store 1,mem_le_txheader
+	set1 mark_ext_patch,mark
+	bpatch patch27_2,mem_patch27
+	fetch 1,mem_le_txheader
+	compare 1,type,3
+	nbranch le_send_no_txlen,true
+	fetch 1,mem_le_txlen
+	rtn blank
+le_send_no_txlen:	
+	fetch 7,mem_le_txheader+1
+	fetch 1,mem_le_state
+	rtnbit0 lestate_encryption
+	call load_sk
+	branch le_encrypt
+	
+le_parse:
+	set1 mark_ext_patch,mark
+	bpatch patch27_3,mem_patch27
+	call le_xtype_fifo_is_full
+	nbranch assert,blank
+	nrtn blank // xtype fifo full
+	fetch 1,mem_le_rxbuf+1
+	rtn blank
+	fetch 1,mem_le_rxbuf
+	compare 1,pdata,3
+	branch le_parse_continue,true //ACL-U continue or empty packet
+	fetch 7,mem_le_rxbuf+1
+	fetch 1,mem_le_rxbuf
+	compare 2,pdata,3
+	branch le_parse_l2cap,true
+le_parse0:
+	fetch 1,mem_le_rxbuf+2
+	store 1,mem_le_rx_ll_opcode
+	copy pdata,regc
+	set1 mark_ext_patch,mark
+	bpatch patch27_4,mem_patch27
+	copy regc,pdata
+	beq LL_CONNECTION_UPDATE_REQ,le_parse_connection_update_req
+	beq LL_CHANNEL_MAP_REQ,le_parse_channel_map_req
+	beq LL_TERMINATE_IND,le_parse_terminate_ind
+	beq LL_ENC_REQ,le_parse_enc_req
+	beq LL_ENC_RSP,le_parse_enc_rsp
+	beq LL_START_ENC_REQ,le_parse_start_enc_req
+	beq LL_START_ENC_RSP,le_parse_start_enc_rsp
+	beq LL_UNKNOWN_RSP,le_parse_unknown_rsp
+	beq LL_FEATURE_REQ,le_parse_feature_req
+	beq LL_FEATURE_RSP,le_parse_feature_rsp
+	beq LL_PAUSE_ENC_REQ,le_parse_pause_enc_req
+	beq LL_PAUSE_ENC_RSP,le_parse_pause_enc_rsp
+	beq LL_VERSION_IND,le_parse_version_ind
+	beq LL_REJECT_IND,le_parse_reject_ind
+	beq LL_PING_REQ,le_parse_ping_req
+	store 1,mem_le_ll_cur_opcode
+	jam XT_LL_UNKNOWN_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_l2cap:
+	fetch 1,mem_le_rxbuf+1
+	and pdata,0x1f,pdata //get length
+	rtn blank//empty packet
+	fetch 2,mem_le_rxbuf+2
+	store 2,mem_le_l2cap_pdu_length
+	fetch 2,mem_le_rxbuf+4//CID
+	beq LE_L2CAP_CID_ATT,le_parse_att
+	beq LE_L2CAP_CID_SMP,le_parse_smp
+	rtn
+
+le_parse_continue_att:
+	jam LE_CONTINUE_FLAG_RX,mem_le_continue_flag
+	fetch 1,mem_le_att_opcode
+	beq ATTOP_WRITE_REQUEST,le_parse_l2cap_continue_write_request
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_parse_l2cap_continue_prepare_write_request
+	beq ATTOP_WRITE_COMMAND,le_parse_l2cap_continue_write_command
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	rtn
+
+
+le_parse_l2cap_continue_common:
+	fetch 1,mem_le_rxbuf+1
+	icopy regb
+	arg mem_le_rxbuf+2,rega
+	call le_writeatt_cb
+
+	fetch 1,mem_le_rxbuf+1
+	fetcht 2, mem_le_buff_len
+	iadd temp,pdata
+
+	store 2,mem_le_buff_len
+	fetcht 2,mem_le_buff_len_all
+	isub temp,null
+	rtn
+
+le_parse_l2cap_continue_write_command:
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	rtn
+
+le_parse_l2cap_continue_write_request:
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	branch le_parse_att_write_request_end
+
+le_parse_l2cap_continue_prepare_write_request:
+	fetcht 2,mem_prepare_write_len	
+	fetch 1,mem_le_rxbuf+1
+	icopy loopcnt
+	iadd temp,pdata
+	store 2,mem_prepare_write_len
+	
+	arg mem_temp_prepare_write_request,pdata
+	iadd temp,contw
+	arg mem_le_rxbuf+2,contr
+	call  memcpy_fast
+
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	branch le_parse_att_prepare_write_request_end
+
+
+
+
+	
+le_parse_smp:
+	set1 mark_ext_patch,mark
+	bpatch patch27_5,mem_patch27
+	ifetch 1,contr
+	beq SMP_PAIRING_REQUEST,le_parse_smp_pairing_request
+	beq SMP_PAIRING_RESPONSE,le_parse_smp_pairing_response
+	beq SMP_PAIRING_CONFIRM,le_parse_smp_pairing_confirm
+	beq SMP_PAIRING_RANDOM,le_parse_smp_pairing_random
+	beq SMP_PAIRING_FAILED,le_parse_smp_pairing_failed
+	beq SMP_ENCRYPTION_INFORMATION,le_parse_smp_encryption_information
+	beq SMP_MASTER_IDENTIFICATION,le_parse_smp_master_identification
+	beq SMP_IDENTITY_INFORMATION,le_parse_smp_identity_information
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_parse_smp_identity_address_information
+	beq SMP_SIGNING_INFORMATION,le_parse_smp_signing_information
+	beq SMP_SECURITY_REQUEST,le_parse_smp_security_request
+	beq SMP_PAIRING_PUBLIC_KEY,le_parse_smp_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_parse_smp_dhkey_check
+	jam XT_SMP_PAIRING_FAILED,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att:
+	set1 mark_ext_patch,mark
+	bpatch patch27_6,mem_patch27
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+//	beq ATTOP_ERROR_RESPONSE,le_parse_att_error_response
+	beq ATTOP_EXCHANGE_MTU_REQUEST,le_parse_att_exchange_mtu_request
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,le_parse_att_exchange_mtu_response
+	beq ATTOP_FIND_INFORMATION_REQUEST,le_parse_att_find_information_request
+//	beq ATTOP_FIND_INFORMATION_RESPONSE,le_parse_att_find_information_response
+	beq ATTOP_FIND_BY_TYPE_VALUE_REQUEST,le_parse_att_find_by_type_value_request
+//	beq ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,le_parse_att_find_by_type_value_response
+	beq ATTOP_READ_BY_TYPE_REQUEST,le_parse_att_read_by_type_request
+//	beq ATTOP_READ_BY_TYPE_RESPONSE,le_parse_att_read_by_type_response
+	beq ATTOP_READ_REQUEST,le_parse_att_read_request
+//	beq ATTOP_READ_RESPONSE,le_parse_att_read_response
+	beq ATTOP_READ_BLOB_REQUEST,le_parse_att_read_blob_request
+//	beq ATTOP_READ_BLOB_RESPONSE,le_parse_att_read_blob_response
+	beq ATTOP_READ_MULTIPLE_REQUEST,le_parse_att_read_multiple_request
+//	beq ATTOP_READ_MULTIPLE_RESPONSE,le_parse_att_read_multiple_response
+	beq ATTOP_READ_BY_GROUP_TYPE_REQUEST,le_parse_att_read_by_group_type_request
+//	beq ATTOP_READ_BY_GROUP_TYPE_RESPONSE,le_parse_att_read_by_group_type_response
+	beq ATTOP_WRITE_REQUEST,le_parse_att_write_request
+//	beq ATTOP_WRITE_RESPONSE,le_parse_att_write_response
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_parse_att_prepare_write_request
+//	beq ATTOP_PREPARE_WRITE_RESPONSE,le_parse_att_prepare_write_response
+	beq ATTOP_EXECUTE_WRITE_REQUEST,le_parse_att_execute_write_request
+//	beq ATTOP_EXECUTE_WRITE_RESPONSE,le_parse_att_execute_write_response
+//	beq ATTOP_HANDLE_VALUE_NOTIFICATION,le_parse_att_handle_value_notification
+//	beq ATTOP_HANDLE_VALUE_INDICATION,le_parse_att_handle_value_indication
+//	beq ATTOP_HANDLE_VALUE_CONFIRMATION,le_parse_att_handle_value_confirmation
+	beq ATTOP_WRITE_COMMAND,le_parse_att_write_command
+//	beq ATTOP_SIGNED_WRITE_COMMAND,le_parse_att_signed_write_command
+	rtn
+
+
+le_parse_connection_update_req:
+	ifetch 9,contr
+	store 9,mem_le_new_param
+	ifetch 2,contr
+	store 2,mem_le_instant
+	fetch 1,mem_le_state
+	set1 lestate_update_param,pdata
+	store 1,mem_le_state
+	fetch 1,mem_device_option
+	rtnne dvc_op_shutter
+ 	jam 0,mem_lpm_mode  
+	jam 30,mem_shutter_conn_update_timer		
+	rtn
+
+le_parse_channel_map_req:
+	ifetch 5,contr
+	store 5,mem_le_new_map
+	ifetch 2,contr
+	store 2,mem_le_instant
+	fetch 1,mem_le_state
+	set1 lestate_update_map,pdata
+	store 1,mem_le_state
+	rtn
+	
+le_parse_terminate_ind:
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,le_parse_terminate_ind_common
+	jam 1,mem_shutter_key_data_flag_1
+le_parse_terminate_ind_common:
+	setarg 20 // 200ms
+	store 2,mem_le_superto
+	rtn
+	
+le_parse_enc_req:
+	ifetch 8,contr
+	store 8,mem_le_rand
+	ifetch 2,contr
+	store 2,mem_le_ediv
+	ifetch 8,contr
+	store 8,mem_le_skdm
+	ifetch 4,contr
+	store 4,mem_le_ivm
+	jam XT_LL_ENC_RSP,mem_fifo_temp
+	call  le_xtype_fifo_in
+	jam FLAG_LE_ENC_START,mem_le_enc_state
+	fetch 1,mem_le_pairing_state
+	rtneq FLAG_LE_PAIRING_AFTER_AUTH
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,load_device_list_mode_4_shutter
+	rtnne dvc_op_module
+	branch load_device_list_mode_4
+	
+le_parse_enc_rsp:
+	ifetch 8,contr
+	store 8,mem_le_skds
+	ifetch 4,contr
+	store 4,mem_le_ivs
+	branch generate_sk
+	
+le_parse_start_enc_req:
+	fetch 1,mem_le_state
+	set1 lestate_encryption,pdata
+	store 1,mem_le_state
+	jam XT_LL_START_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_start_enc_rsp:
+	rtn master
+	jam XT_LL_START_ENC_RSP,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam BT_EVT_LE_START_ENC,mem_fifo_temp
+	branch ui_ipc_send_event	
+	
+le_parse_unknown_rsp:
+	rtn
+	
+le_parse_feature_req:
+	jam XT_LL_FEATURE_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_feature_rsp:
+	rtn
+	
+le_parse_pause_enc_req:
+	jam FLAG_LE_ENC_PAUSE,mem_le_enc_state
+	jam XT_LL_PAUSE_ENC_RSP,mem_fifo_temp
+	call le_xtype_fifo_in	
+	jam BT_EVT_LE_PAUSE_ENC,mem_fifo_temp
+	branch ui_ipc_send_event	
+	
+	
+le_parse_pause_enc_rsp:
+	rtn
+
+le_parse_ping_req:
+	jam XT_LL_PING_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_version_ind:
+	rtn master
+	jam XT_LL_VERSION_IND,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_reject_ind:
+	rtn
+
+
+le_parse_smp_pairing_request:
+	store 1,mem_le_preq
+	ifetch 6,contr
+	istore 6,contw
+	jam XT_SMP_PAIRING_RESPONSE,mem_fifo_temp
+	call le_xtype_fifo_in	
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_parse_smp_pairing_request_shutter
+	call le_check_master_support_secure_connect
+	jam FLAG_LE_PAIRING_START,mem_le_pairing_state
+	fetch 1,mem_le_preq_iocap
+	beq  FLAG_IOCAP_DISPlAYONLY,le_set_tk_0
+	beq  FLAG_IOCAP_DISPLAYYESNO,le_set_tk_0
+	beq  FLAG_IOCAP_NOINPUTNOOUTPUT,le_set_tk_0
+	fetch 1,mem_le_pairing_mode	
+	beq LE_PAIRING_MODE_LAGACY_PASSKEY,le_genernate_tk
+le_set_tk_0:
+	arg 0,pdata
+	store 4,mem_le_tk
+	rtn
+le_parse_smp_pairing_request_shutter:
+	jam 1,mem_shutter_key_data_flag
+	rtn
+	
+le_genernate_tk:
+	arg mem_le_tk,rega
+	copy rega,contw
+	arg 3,loopcnt
+	call generate_random_loop
+	fetch 2,mem_le_tk + 2
+	and_into 0x7,pdata
+	store 2,mem_le_tk + 2
+	jam BT_EVT_LE_TK_GENERATE,mem_fifo_temp
+	branch ui_ipc_send_event
+
+le_check_master_support_secure_connect:
+	fetch 1,mem_le_preq_auth
+	rtnbit1  LE_AUTH_SECURE_CONNECTION_PAIRING_BIT
+	fetch 1,mem_le_pairing_mode
+	rtnbit0 LE_PAIRING_MODE_SECURE_CONNECT_BIT
+	branch app_ble_disconnect	
+	
+	
+le_parse_smp_pairing_response:
+	store 1,mem_le_pres
+	ifetch 6,contr
+	istore 6,contw
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_confirm:
+	copy contr,rega
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_parse_smp_pairing_confirm_secure_passkey
+	copy rega,contr
+	arg mem_le_rconfirm,contw
+	call memcpy16
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch  le_xtype_fifo_in,master
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+le_parse_smp_pairing_confirm_secure_passkey:
+	copy rega,contr
+	arg mem_le_rconfirm,contw
+	call memcpy16
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_PASSKEY_WAIT_CONFIRM,mem_le_secure_connect_state	
+	rtn
+
+le_parse_smp_pairing_random:	
+	copy contr,rega
+	fetch 1,mem_le_secure_connect_enable
+	beq 1,le_parse_smp_pairing_random_sc
+	copy rega,contr
+	call authenticate_rconfirm
+	branch le_parse_smp_pairing_random_success,zero
+le_pairing_failed:
+	jam XT_SMP_PAIRING_FAILED,mem_fifo_temp
+	call le_xtype_fifo_in
+le_parse_smp_pairing_failed:
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	jam BT_EVT_LE_PAIRING_FAIL,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+le_parse_smp_pairing_random_sc:
+	arg mem_le_mrand,contw
+	copy rega,contr
+	call memcpy16	
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_parse_smp_pairing_random_sc_passkey
+	call function_g2
+//	jam LE_SC_STAT_RECEIVE_RANDOM,mem_le_secure_connect_state
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC,module_hci_event_le_gkey
+	rtn
+	
+le_parse_smp_pairing_random_sc_passkey:
+	call function_f4_ca
+	arg mem_AES_CMAC_temp,contw
+	call load_inverse_result	
+	arg mem_AES_CMAC_temp,rega
+	arg mem_le_rconfirm ,regb
+	arg 16,loopcnt
+	call string_compare
+	nbranch le_dhkey_check_fail,zero
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_random_success:
+	call generate_stk
+	jam BT_EVT_LE_PAIRING_SUCCESS,mem_fifo_temp
+	call ui_ipc_send_event
+	jam 1,mem_ltk_exists
+	jam FLAG_LE_PAIRING_AFTER_AUTH,mem_le_pairing_state
+	jam XT_LL_ENC_REQ,mem_fifo_temp
+	branch le_xtype_fifo_in,master
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+
+le_parse_smp_public_key:
+	fetch 1,mem_le_rxbuf+1
+	increase -5,pdata
+	store 1,mem_le_public_length
+	copy pdata,loopcnt
+	arg mem_le_pubkey_remote_x_256,contw
+	increase 5,contr
+	branch memcpy_fast
+
+le_parse_smp_dhkey_check:
+	arg mem_sp_confirm_remote,contw
+	call memcpy16	
+	jam LE_SC_STAT_RECEIVE_DHKEY,mem_le_secure_connect_state
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn	
+le_parse_smp_encryption_information:
+	arg mem_le_peer_ltk,contw
+	branch memcpy16
+	
+le_parse_smp_master_identification:
+	rtn
+	
+le_parse_smp_identity_information:
+	arg mem_le_irk,contw
+	call memcpy16
+	fetch 1,mem_le_conn_peer_addr_type
+	rtneq MASTER_PUBLIC_ADDR
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	rtn true
+	branch app_ble_store_reconn_info
+	
+le_parse_smp_identity_address_information:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	jam FLAG_LE_PAIRING_END,mem_le_pairing_state
+	rtn
+	
+le_parse_smp_signing_information:
+	rtn
+	
+le_parse_smp_security_request:
+	rtn
+
+	
+le_parse_att_exchange_mtu_response:
+	fetch 2,mem_le_rxbuf+7
+	store 2,mem_le_remote_mtu
+	rtn
+	
+le_parse_att_exchange_mtu_request:
+	call le_parse_att_exchange_mtu_response
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_find_information_request:
+	call le_get_search_handle_start_end_common
+	jam ATTOP_FIND_INFORMATION_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+	
+le_parse_att_find_by_type_value_request:
+	call le_get_search_handle_start_end_common
+	ifetch 2,contr
+	store 2,mem_le_search_uuid
+	call store_contr
+	arg mem_le_search_att_type_length,contw
+	fetch 2,mem_le_l2cap_pdu_length
+	increase -7,pdata
+	call le_get_search_common2
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	
+
+le_parse_att_read_by_type_request:
+	call le_get_search_handle_start_end_common
+	call le_get_search_att_uuid
+	jam ATTOP_READ_BY_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+
+le_get_search_handle_start_end_common:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	rtn
+
+le_get_search_att_type:
+	call store_contr
+	arg mem_le_search_att_type_length,contw
+le_get_search_common:	
+	fetch 2,mem_le_l2cap_pdu_length
+	increase -5,pdata
+le_get_search_common2:		
+	istore 1,contw
+	copy pdata,loopcnt
+	call get_contr
+	branch memcpy_fast	
+	
+le_get_search_att_uuid:
+	call store_contr
+	arg mem_le_search_uuid_length,contw
+	branch le_get_search_common
+
+
+
+	
+le_parse_att_read_request:
+	fetch 2,mem_le_rxbuf+7
+	store 2,mem_le_att_handle
+	jam ATTOP_READ_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+
+	
+le_parse_att_read_blob_request:
+	ifetch 2,contr
+	store 2,mem_le_att_offset
+	jam ATTOP_READ_BLOB_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+le_parse_att_read_multiple_request:
+	fetch 1,mem_le_rxbuf+1
+	increase -5,pdata
+	rshift pdata,pdata
+	store 1,mem_le_temp
+	jam ATTOP_READ_MULTIPLE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+le_parse_att_read_by_group_type_request:
+	call le_get_search_handle_start_end_common
+ 	call le_get_search_att_type
+
+	jam ATTOP_READ_BY_GROUP_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_write_command:
+	call le_parse_att_write_common
+	branch le_check_long_packet_patch
+	
+le_parse_att_write_request:
+	call le_parse_att_write_common
+	call le_check_long_packet_patch
+	nrtn zero
+le_parse_att_write_request_end:
+	jam ATTOP_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in	
+
+le_check_long_packet_patch:
+	fetch 1,mem_le_rxbuf+1
+	increase -4,pdata
+	store 2,mem_le_buff_len
+	increase -3,pdata
+
+	ifetcht 2,contr
+	storet 2,mem_le_buff_len_all
+	storet 2,mem_le_buff_data_len_all
+	increase -3,temp
+	isub temp,null
+	rtn
+
+le_parse_att_write_common:
+	fetch 1,mem_le_rxbuf+1
+	increase -7,pdata
+	icopy loopcnt
+	copy loopcnt,regb
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST,le_parse_att_write_common1
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	rtn blank
+	ifetch 1,contr
+	isub loopcnt,null
+	branch le_parse_att_write_common0,positive
+	copy pdata,loopcnt
+le_parse_att_write_common0:
+	copy contr,contw
+	copy loopcnt,regb
+	arg mem_le_rxbuf+9,contr
+	call memcpy_fast
+le_parse_att_write_common1:
+	arg mem_le_rxbuf+9,rega
+	branch le_writeatt_cb
+	
+
+le_parse_att_prepare_write_request:
+	fetch 1,mem_le_rxbuf+1
+	increase -4,pdata
+	store 2,mem_le_buff_len
+	ifetcht 2,contr
+	storet 2,mem_le_buff_len_all
+	increase -2,temp
+	storet 2,mem_le_buff_data_len_all
+
+	fetch 1,mem_le_rxbuf+1
+	increase -9,pdata
+	store 2,mem_prepare_write_len
+	
+	icopy loopcnt
+	copy loopcnt,regb
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST,le_parse_att_prepare_write_request1
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch  le_parse_att_prepare_write_request_end,blank
+	ifetch 1,contr
+	isub loopcnt,null
+	branch le_parse_att_prepare_write_request0,positive
+	copy pdata,loopcnt
+le_parse_att_prepare_write_request0:
+	copy contr,contw
+	copy loopcnt,regb
+	arg mem_le_rxbuf+11,contr
+	call memcpy_fast
+
+le_parse_att_prepare_write_request1:
+	copy regb,loopcnt
+	arg mem_temp_prepare_write_request,contw
+	arg mem_le_rxbuf+11,contr
+	call memcpy_fast
+
+	arg mem_le_rxbuf+11,rega
+	fetch 2,mem_le_rxbuf+9
+	store 2,mem_le_prepare_write_req_offset
+	fetcht 2,mem_le_att_handle
+	storet 2,mem_prepare_handle
+
+	call le_writeatt_cb
+
+	fetch 2,mem_le_buff_len
+	fetcht 2,mem_le_buff_len_all
+	isub temp,null
+	nrtn zero
+le_parse_att_prepare_write_request_end:
+	jam ATTOP_PREPARE_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	
+
+le_parse_att_execute_write_request:
+	jam ATTOP_EXECUTE_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	/* rega pointers to data, regb is length */
+le_writeatt_cb:
+	fetch 2,mem_cb_att_write
+	rtn blank
+	iforce pc
+
+le_supervision_update:
+	fetcht 4,mem_le_supervision_timer
+	call get_clkbt
+	isub temp,timeup					/* and to 28 bits */
+	deposit timeup
+	fetcht 2,mem_le_superto
+	lshift4 temp,temp
+	lshift temp,temp
+	isub temp,pdata
+	rtn
+	
+le_supervision_flush:
+	call get_clkbt
+	store 4,mem_le_supervision_timer
+	rtn
+	
+	
+	
+le_adv:
+	jam 36,mem_le_ch_mapped
+le_adv_loop:
+	set1 mark_ext_patch,mark
+	bpatch patch27_7,mem_patch27
+	fetch 1,mem_le_adv_enable
+	rtn blank
+	arg le_adv_interval_timer,queue
+	call timer_check
+	nrtn blank
+	disable master
+	enable swfine
+	call le_init_adv
+	call le_next_adv_channel
+	call le_send_adv_ind
+	nbranch le_adv_not_match,match
+	fetch 1,mem_le_req_rcv
+	increase 1,pdata
+	store 1,mem_le_req_rcv
+	set1 mark_ext_patch,mark
+	bpatch patch28_0,mem_patch28
+	fetch 1,mem_le_rxbuf
+	and pdata,0x0f,pdata
+	beq SCAN_REQ,le_send_scan_response
+	beq CONNECT_REQ,le_parse_connect_req
+le_adv_not_match:
+	nop 10000
+	fetch 1,mem_le_ch_mapped
+	bne 39,le_adv_loop
+	arg le_adv_interval_timer,queue
+	fetch 2,mem_le_adv_interval_max
+	branch timer_init
+	
+
+le_receive_window_size:
+	set1 mark_ext_patch,mark
+	bpatch patch28_1,mem_patch28
+	fetch 1,mem_le_peer_sca
+	call le_sca_map
+	fetch 2,mem_le_tsniff
+	imul32 temp,pdata
+	arg 375,temp
+	imul32 temp,pdata
+	arg 100000,temp
+	idiv temp
+	fetch 1,mem_le_window_size
+	arg 20000,temp
+	imul32 temp,pdata
+	store 4,mem_le_transmit_window
+	set1 mark_ext_patch,mark
+	bpatch patch28_2,mem_patch28
+	fetch 2,mem_rx_window_sniff
+	call wait_div_end
+	quotient temp
+	iadd temp,pdata
+	store 2,mem_le_receive_window
+	rtn
+
+le_parse_connect_req:
+	set1 mark_ext_patch,mark
+	bpatch patch28_3,mem_patch28
+	fetch 6,mem_le_rxbuf+8
+	fetcht 6,mem_le_lap
+	isub temp,null
+	nrtn zero
+	call le_scan_check_sender_addr_type
+	copy regA,pdata
+	store 1,mem_le_conn_peer_addr_type
+	fetch 7,mem_le_rxbuf+21
+	store 7,mem_tmp_buffer
+	ifetch 8,contr
+	istore 8,contw
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+	set1 mark_ext_patch,mark
+	bpatch patch28_4,mem_patch28
+	increase 6,contr
+	ifetch 8,contr
+	store 8,mem_le_access 	// and crcinit & window size
+	ifetcht 2,contr				// transmit offset
+	lshift2 temp,temp			
+	ifetch 2,contr				// connInterval
+	lshift2 pdata,pdata
+	store 2,mem_le_tsniff
+	store 4,mem_le_anchor
+	isub temp,pdata
+	add pdata,-2,clke_bt
+	ifetch 9,contr
+	store 9,mem_le_slave_latency// and super to & channel map
+	set1 mark_ext_patch,mark
+	bpatch patch28_5,mem_patch28
+	ifetch 1,contr
+	rshift4 pdata,temp
+	rshift temp,temp
+	storet 1,mem_le_peer_sca
+	and_into 0x1f,pdata
+	store 1,mem_le_hop
+	call le_receive_window_size
+	call le_calc_channel_map
+	call le_init_slave
+	call context_new
+	nrtn zero
+	set1 mark_ext_patch,mark
+	bpatch patch28_6,mem_patch28
+	call calc_clke_offset
+	jam BT_EVT_LE_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+//	call app_get_lpm_wake_lock
+	branch context_save
+	
+
+le_init_attlist_search:
+	set1 mark_ext_patch,mark
+	bpatch patch28_7,mem_patch28
+	fetch 2,mem_le_search_handle_start
+	iforce regb
+	fetch 2,mem_le_search_handle_end
+	iforce regc
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+	enable user
+	rtn
+
+	/* return handle in pdata, blank:end of list, positive:in range */
+le_att_handle_inrange:
+	ifetch 2,contr
+	rtn blank
+	isub regb,null			/* less than start ? */
+	nrtn positive
+	isub regc,null			/* greater than end ? */
+	rtn zero
+	branch le_att_handle_blank,positive
+	force 1,null
+	rtn
+le_att_handle_blank:
+	force 0,pdata
+	rtn
+
+
+	/* handle in temp, return pointer in contr to length, blank not found */
+le_att_get_handle_ptr:
+	call le_att_get_handle_ptr2
+	branch le_att_get_handle_ptr_found,zero
+	rtn
+	
+le_att_get_handle_ptr2:
+	set1 mark_ext_patch,mark
+	bpatch patch29_0,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+le_att_get_handle_loop1:
+	ifetch 2,contr
+	rtn blank
+	isub temp,null
+	rtn zero
+	ifetch 1,contr
+	iadd contr,contr	
+	ifetch 1,contr			// length  
+	iadd contr,contr
+	branch le_att_get_handle_loop1
+le_att_get_handle_ptr_found:
+	ifetch 1,contr
+	iadd contr,contr	
+	rtn	
+
+
+
+le_att_get_short_uuid_ptr:
+	set1 mark_ext_patch,mark
+	bpatch patch29_1,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+le_att_get_short_uuid_loop:
+	ifetch 2,contr
+	rtn blank
+	ifetch 1,contr
+	iadd contr,contr
+	increase -2,contr
+	ifetch 2,contr
+	isub temp,null
+	rtn zero
+	ifetch 1,contr			 
+	iadd contr,contr
+	branch le_att_get_short_uuid_loop	
+
+
+
+le_att_get_handle_info_from_ptr:
+	fetch 2, mem_le_cur_attlist_start_ptr
+	copy pdata,contr
+	branch le_att_get_handle_info+1
+
+le_att_get_handle_info:
+	set1 mark_ext_patch,mark
+	bpatch patch29_2,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+	copy temp,rega
+le_att_get_handle_loop:
+	ifetch 2,contr
+	branch le_att_unfind_handle,blank
+	isub rega,null
+	branch le_att_finded_handle, zero
+	ifetch 1,contr			// length  
+	iadd contr,contr	
+	ifetch 1,contr			//length 
+	iadd contr,contr
+	branch le_att_get_handle_loop
+le_att_unfind_handle:
+	setarg 1
+	rtn
+le_att_finded_handle:
+	ifetch 1,contr
+	store 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	arg mem_le_cur_uuid,contw
+	call memcpy_fast
+	ifetch 1,contr
+	store 1,mem_le_search_len
+	call store_contr
+	setarg 0
+	rtn
+
+
+	
+le_modified_name:
+	set1 mark_ext_patch,mark
+	bpatch patch29_3,mem_patch29
+	call le_modified_name_att_list
+	branch le_modified_name_adv
+
+le_modified_name_att_list:
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	call le_att_get_short_uuid_ptr
+	rtn blank
+	ifetch 1,contr						// attribute length
+	copy contr,contw
+	fetcht 1,mem_le_name_len
+	copy temp,loopcnt
+	isub temp,null
+	nbranch le_name_length_longer_than_att,positive
+	isub temp,temp
+	arg mem_le_name,contr
+	call memcpy
+	copy temp,loopcnt
+	ncall memcpy_empty,zero
+	rtn
+le_name_length_longer_than_att:
+	copy pdata,loopcnt
+	arg mem_le_name,contr
+	branch memcpy_fast
+
+
+le_modified_name_adv:
+	arg mem_le_adv_data_len+32,regc
+	arg mem_le_adv_data,rega
+	call le_modified_name_adv_and_scan
+	setarg 0
+	setflag user,0,pdata
+	store 1,mem_pdatatemp
+	arg mem_le_scan_data_len+32,regc
+	arg mem_le_scan_data,rega
+	call le_modified_name_adv_and_scan
+	rtn user
+	fetch 1,mem_pdatatemp
+	branch assert,blank
+	rtn
+
+
+le_modified_name_adv_and_scan:
+	set1 mark_ext_patch,mark
+	bpatch patch29_4,mem_patch29
+	call enable_usr
+	call clear_temp_block
+	arg 0,regb	//current length
+	arg mem_le_data_temp,contw
+	call le_modified_name_adv_loop
+	fetch 1,mem_le_name_len
+	add pdata,1,temp
+	iadd regb,rega	
+	increase 2,rega
+	sub rega,0x1f,null
+	nbranch le_modified_name_adv_and_scan_name_overflow,positive
+	istoret 1,contw		//store ble name length
+	arg 0x09,temp
+	istoret 1,contw		//store ble name type
+	iforce loopcnt
+	call memcpy_fast
+	copy rega,regb
+le_modified_name_adv_and_scan_store_data:
+	deposit regb
+	store 1,mem_le_data_len_temp
+	arg mem_le_data_len_temp,contr
+	setarg -32
+	iadd regc,contw
+	branch memcpy32
+
+le_modified_name_adv_and_scan_name_overflow:
+	call disable_usr
+	branch le_modified_name_adv_and_scan_store_data
+	
+le_modified_name_adv_loop:
+	ifetch 1,rega		//pdata:length
+	rtn blank			//length is zero,ending find
+	pincrease 1		//length += 1
+	ifetcht 1,contr		//pdata:type
+	sub temp,0x09,null
+	branch le_modified_name_adv_found_name,zero
+	iadd regb,regb	
+	copy rega,contr
+	iforce loopcnt
+	call memcpy_fast
+	copy contr,rega
+le_modified_name_adv_loop2:
+	deposit rega
+	isub regc,null
+	rtn positive
+	branch le_modified_name_adv_loop
+
+le_modified_name_adv_found_name:
+	iadd rega,rega
+	branch le_modified_name_adv_loop2
+
+
+memcpy_empty:
+	setarg SPACE
+	istore 1,contw
+	loop memcpy_empty
+	rtn
+
+	
+le_lpm_set_mult:
+	set1 mark_ext_patch,mark
+	bpatch patch29_5,mem_patch29
+	disable wake
+	branch le_lpm_set_mult_attempt,attempt
+	nbranch le_lpm_lost,match
+le_lpm_set_mult_attempt:
+	call lpm_match
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_le_receive_window
+	fetch 1,mem_le_rxbuf
+	compare 1,pdata,3
+	nbranch lpm_mult_short,true		// rx not empty, short interval
+	fetch 1,mem_le_txheader
+	compare 1,pdata,3
+	nbranch lpm_mult_short,true		// tx not empty, short interval
+	fetch 2,mem_cb_le_set_mult
+	call callback_func
+	fetch 1,mem_le_state
+	bbit1 lestate_update_param,lpm_mult_short
+	branch lpm_mult_wait_timeout
+	
+le_lpm_lost:
+	fetcht 2,mem_rx_window_sniff
+	rshift temp,temp
+	fetch 2,mem_le_receive_window
+	iadd temp,pdata
+	store 2,mem_le_receive_window
+	branch lpm_lost
+
+le_clean_att_list_handle_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch29_6,mem_patch29
+	jam 0,mem_le_switch_send_data
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	copy rega,contw
+	setarg 0
+	istore 1,contw
+	rtn
+	
+
+
+
+le_secure_connect_sm:
+	fetch 1,mem_le_secure_connect_enable
+	rtneq 0
+	fetch 1,mem_le_secure_connect_flag
+	rtnne LE_SP_FLAG_COMMIT_256
+	set1 mark_ext_patch,mark
+	bpatch patch2a_0,mem_patch2a
+	jam SP_FLAG_STANDBY,mem_le_secure_connect_flag
+	fetch    1,mem_le_secure_connect_state
+	beq  LE_SC_STAT_RECEIVE_PUBLIC_KEY,le_sc_receive_public_key
+	beq LE_SC_STAT_WAIT_SEND_PUBLIC_KEY,le_sc_wait_send_public_key
+	beq LE_SC_STAT_SEND_PUBLIC_KEY,le_sc_send_public_key
+	beq LE_SC_STAT_RECEIVE_DHKEY,le_sc_receive_dhkey
+	beq LE_SC_STAT_WAIT_CONFIRM_GKEY,le_sc_wait_confirm_gkey
+	beq  LE_SC_STAT_PASSKEY_WAIT_CONFIRM,le_sc_passkey_wait_confirm
+	rtn	
+
+
+le_sc_passkey_wait_confirm:
+	fetch 1,mem_authentication_passkey_times
+	copy pdata,queue
+	increase 1,pdata
+	store 1,mem_authentication_passkey_times
+	fetch 4,mem_le_tk
+	qisolate1 pdata
+	setarg 0x80
+	setflag true,0,pdata
+	store 1,mem_passkey_1bit
+	branch le_sc_ready_send_pairing_confirm
+	
+le_sc_wait_confirm_gkey:
+	fetch 1,mem_le_sc_confirm_gkey_flag
+	jam FLAG_LE_SC_CONFRIM_NULL,mem_le_sc_confirm_gkey_flag
+	beq FLAG_LE_SC_CONFRIM_GKEY_OK,le_sc_confirm_gkey_ok
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+	
+le_sc_confirm_gkey_ok:
+	jam FLAG_LE_PAIRING_AFTER_AUTH,mem_le_pairing_state
+	jam XT_SMP_PAIRING_DHKEY_CHECK,mem_fifo_temp
+	branch le_xtype_fifo_in		
+
+le_sc_receive_dhkey:
+	fetch 1,mem_sp_dhkey_invalid
+	beq SP_KEY_VALID_256,le_dhkey_ready
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+
+le_dhkey_ready:
+	call function_f5
+//	arg mem_le_r,contw
+//	force 2,loopcnt
+//	call memset0
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY ,le_sc_confirm_gkey_ok_passkey
+	call le_set_tk_0 
+le_dhkey_ready_common:
+	call function_f6_ea
+	arg mem_AES_CMAC_temp,rega
+	arg mem_sp_confirm_remote ,regb
+	arg 16,loopcnt
+	call string_compare
+	branch le_dhkey_check_ok,zero
+le_dhkey_check_fail:	
+	branch le_pairing_failed
+le_sc_confirm_gkey_ok_passkey:
+//	fetch 4,mem_le_tk
+//	store 4,mem_le_r
+	branch le_dhkey_ready_common
+	
+le_dhkey_check_ok:
+	jam 1,mem_ltk_exists
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK,le_sc_confirm_gkey_ok
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY ,le_sc_confirm_gkey_ok	
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_WAIT_CONFIRM_GKEY,mem_le_secure_connect_state	
+	rtn	
+
+le_sc_send_public_key:
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_sc_send_public_key_passkey
+	jam 0,mem_passkey_1bit
+le_sc_ready_send_pairing_confirm:
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+le_sc_send_public_key_passkey:
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+//	jam LE_SC_STAT_PASSKEY_WAIT_CONFIRM,mem_le_secure_connect_state	
+//	branch p_ng_event_le_get_passkey
+	jam 0,mem_authentication_passkey_times
+//	rtn
+	branch le_genernate_tk
+	
+le_sc_receive_public_key:
+//call ice_break
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	fetch 1,mem_le_sc_local_key_invalid
+	beq SP_KEY_VALID_256,le_public_key_ready
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+	
+le_public_key_ready:
+	jam SP_KEY_INVALID,mem_sp_dhkey_invalid
+	call sp_dhkey_calc_256	
+	jam LE_SC_STAT_WAIT_SEND_PUBLIC_KEY,mem_le_secure_connect_state	
+	rtn 
+//	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+//	branch le_xtype_fifo_in
+
+le_sc_wait_send_public_key:
+	call le_xtype_fifo_is_empty
+	branch le_public_key_ready_send,blank
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag	
+	rtn
+le_public_key_ready_send:
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+
+
+
+
+le_pairing_public_key_continue:
+	arg mem_le_pubkey_remote_x_256,pdata
+	fetcht 1,mem_le_public_length
+	iadd temp,contw
+//copy contw,rega
+	fetch 1,mem_le_rxbuf+1
+	copy pdata,loopcnt
+	iadd temp,temp
+	call memcpy_fast
+	storet 1,mem_le_public_length
+	copy temp,pdata
+//call ice_break
+	rtnne 64
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_RECEIVE_PUBLIC_KEY,mem_le_secure_connect_state
+	rtn
+le_parse_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_1,mem_patch2a
+	fetch 1,mem_le_public_length
+	bne 0,le_pairing_public_key_continue
+	branch le_parse_continue_att
+
+	
+/******************************************/
+/*************   LMP Parse   **************/
+/******************************************/
+init_lmp:
+	rtn wake
+init_lmp_work:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_2,mem_patch2a
+	setarg 0
+	store 1,mem_lmp_to_send
+	store 1,mem_conn_sm
+	store 1,mem_lmo_opcode1
+	store 1,mem_lmo_opcode2
+	store 1,mem_esco_addr
+	store 1,mem_auth_enable
+	store 1,mem_connection_options
+	store 1,mem_pairing_auth
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	jam 0,mem_switch_fail_master_count
+	jam NULL_ENCRYP,mem_wait_encryption
+init_lmp_reinit:	
+	jam 0,mem_pairing_auth
+	jam 0,mem_sp_localsm
+	jam 0,mem_lmp_conn_state
+	//fall through
+parse_rx_done:
+	rtn
+
+parse_lmp:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_3,mem_patch2a
+	call setlocalsm_master,master	//use this flag in hci
+	ncall setlocalsm_slave,master
+	call lmo_fifo_check
+	nrtn blank
+	fetch 1,mem_state_map
+	rtnbit0 smap_rxlmp
+	set0 smap_rxlmp,pdata
+	set0 mark_rxbuf_inuse,mark
+	store 1,mem_state_map
+	fetch 1,mem_rxbuf
+	fetcht 1,mem_state_map
+	isolate1 smap_lmptidinit,pdata
+	setflag true,smap_lmptid,temp
+	storet 1,mem_state_map
+	and_into 0x2,temp //smap_lmptid only
+	storet 1,mem_lmo_tid2
+	fetcht 1,mem_state_map
+	rshift pdata,pdata			/* align lmp_opcode */
+  	store 1,mem_lmi_opcode2
+	set1 mark_ext_patch,mark
+	bpatch patch2a_4,mem_patch2a
+  	fetch 1,mem_lmi_opcode2
+  	beq LMP_ESCAPE,parse_lmp_escape//multi
+  	beq LMP_ACCEPTED,parse_lmp_accepted//multi
+	beq LMP_NOT_ACCEPTED,parse_lmp_not_accepted//multi
+  	beq LMP_SET_AFH, parse_lmp_set_afh
+  	beq LMP_CLKOFFSET_REQ, parse_lmp_clkoffset_req
+ 	beq LMP_ENCRYPTION_MODE_REQ, parse_lmp_encryption_mode_req
+ 	beq LMP_ENCRYPTION_KEY_SIZE_REQ,parse_lmp_crypt_key
+	beq LMP_AUTO_RATE,parse_lmp_auto_rate
+	beq LMP_TEST_CONTROL,parse_lmp_test_control//multi
+	beq LMP_TEST_ACTIVATE,parse_lmp_test_activate
+	beq LMP_SETUP_COMPLETE,parse_lmp_setup_complete
+	beq LMP_SUPERVISION_TIMEOUT,parse_lmp_supervision_timeout
+	beq LMP_FEATURES_REQ,parse_lmp_features_req
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_conn_req
+	beq LMP_VERSION_REQ,parse_lmp_version_req
+	beq LMP_VERSION_RES,parse_lmp_version_res
+	beq LMP_DETACH,parse_lmp_detach
+	beq LMP_MAX_SLOT,parse_lmp_max_slot
+	beq LMP_MAX_SLOT_REQ,parse_lmp_max_slot_req
+	beq LMP_NAME_REQ,parse_lmp_name_req
+	beq LMP_NAME_RES,parse_lmp_name_res
+	beq LMP_FEATURES_RES,parse_lmp_features_res
+	beq LMP_COMB_KEY,parse_lmp_comb_key
+	beq LMP_AU_RAND, parse_lmp_au_rand
+	beq LMP_IN_RAND,parse_lmp_in_rand
+	beq LMP_SRES,parse_lmp_sres
+	beq LMP_INCR_POWER_REQ,parse_lmp_incr_power
+	beq LMP_DECR_POWER_REQ,parse_lmp_decr_power
+	beq LMP_MAX_POWER, parse_lmp_max_power
+	beq LMP_MIN_POWER, parse_lmp_min_power
+	beq LMP_PAGE_MODE_REQ, parse_lmp_page_mode_req
+	beq LMP_PAGE_SCAN_MODE_REQ, parse_lmp_page_scan_mode_req
+	beq LMP_PREFERRED_RATE, parse_lmp_preferred_rate
+	beq LMP_SLOT_OFFSET, parse_lmp_slot_offset
+	beq LMP_SNIFF_REQ, parse_lmp_sniff_req
+	beq LMP_START_ENCRYPTION_REQ, parse_lmp_start_encryption_req
+	beq LMP_STOP_ENCRYPTION_REQ, parse_lmp_stop_encryption_req
+	beq LMP_SWITCH_REQ, parse_lmp_switch_req
+	beq LMP_TEMP_RAND, parse_lmp_temp_rand
+	beq LMP_TEMP_KEY, parse_lmp_temp_key
+	beq LMP_TIMING_ACCURACY_REQ, parse_lmp_timing_accuracy_req
+	beq LMP_TIMING_ACCURACY_RES, parse_lmp_timing_accuracy_res
+	beq LMP_UNIT_KEY, parse_lmp_unit_key
+	beq LMP_UNSNIFF_REQ, parse_lmp_unsniff_req
+	beq LMP_USE_SEMI_PERMANENT_KEY, parse_lmp_use_semi_permanend_key
+	beq  LMP_ENCAPSULATED_HEADER,parse_lmp_encapsulated_header
+	beq  LMP_ENCAPSULATED_PAYLOAD,parse_lmp_encapsulated_payload
+	beq	LMP_SIMPLE_PAIRING_CONFIRM,parse_simple_pairing_confirm
+	beq  LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_simple_pairing_number
+	beq  LMP_DHKEY_CHECK,parse_dhkey_check
+	beq LMP_CLKOFFSET_RES, parse_lmp_clkoffset_res
+	beq LMP_ENC_KEY_SIZE_MASK_REQ,parse_enc_key_size_mask_req
+/* lmp is not recognized, check to see if we respond to all messages */ 
+/* rejecting the unrecognized message with PDU not recognized */
+reject_unknown_packet:
+	jam UNKNOWN_LMP_PDU,mem_lmo_reason2
+reject_lmp_packet:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	rtn
+
+parse_lmp_clkoffset_req:
+	jam LMP_CLKOFFSET_RES,mem_lmo_opcode2
+	rtn	
+
+parse_enc_key_size_mask_req:
+	jam LMP_ENC_KEY_SIZE_MASK_RES,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_set_afh:
+	fetch 4,mem_rxbuf+1
+	lshift pdata,pdata
+	store 4,mem_afh_instant
+	fetch 1,mem_rxbuf+5
+	store 1,mem_afh_new_mod
+	fetch 5,mem_rxbuf+6
+	store 5,mem_afh_map_new
+	fetch 5,mem_rxbuf+11
+	istore 5,contw
+	fetch 1,mem_mode
+	set1 afh_change,pdata
+	store 1,mem_mode
+	rtn
+parse_lmp_escape:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_5,mem_patch2a
+	fetch 1,mem_rxbuf+1
+	set1 7,pdata
+	store 1,mem_lmi_opcode2
+	beq LMP_EXT_ACCEPTED,parse_lmpext_accepted
+	beq LMP_NOT_ACCEPTED_EXT,parse_lmpext_not_accepted
+	beq LMP_SNIFF_SUBRATING_REQ, parse_lmp_sniff_subrating_req
+	beq LMP_SNIFF_SUBRATING_RES, parse_lmp_sniff_subrating_res
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_packet_type_table_req
+	beq LMP_EXT_FEATURES_REQ,parse_lmpext_features_req
+	beq LMP_EXT_FEATURES_RES,parse_lmpext_features_res
+	beq LMP_EXT_CHN_CLASSIFICATION_REQ,parse_lmpext_chn_classification_req
+	beq LMP_PAUSE_ENCRYPTION_REQ,parse_lmpext_pause_encrypt
+	beq LMP_RESUME_ENCRYPTION_REQ,parse_lmpext_resume_encrypt
+	beq LMP_IO_CAP_REQ,parse_lmpext_iocap_req
+	beq LMP_IO_CAP_RES,parse_lmpext_iocap_res
+	rtneq LMP_EXT_FEATURES_RES
+
+
+reject_unknown_ext_packet:
+	jam LMP_NOT_ACCEPTED_EXT,mem_lmo_opcode2
+	jam UNKNOWN_LMP_PDU,mem_lmo_reason2
+	
+	rtn
+parse_lmpext_chn_classification_req:
+	jam LMP_NOT_ACCEPTED_EXT,mem_lmo_opcode2
+	jam NOT_SUPPORT_CHN_CLASSIFICATION,mem_lmo_reason2
+	rtn
+	
+parse_lmpext_iocap_req:
+	call iocap_lmpext_load
+	jam LMP_IO_CAP_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_iocap_res:
+	call iocap_lmpext_load
+	branch iocap_lmpext_common
+	
+iocap_lmpext_load:
+	arg      mem_sp_iocap_remote,contw
+	fetch 3, mem_rxbuf+2
+	istore    3,contw
+	rtn
+	
+iocap_lmpext_common:
+	branch master_set_mem_master_sp_flag,true//is un very ok to use master flag,but we have to add many codes if wo don't
+	rtn
+parse_lmpext_accepted:
+	fetch 1,mem_rxbuf+3
+	set1 7,pdata
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_accepted_ptt
+	rtn
+
+	
+parse_lmpext_not_accepted:
+	fetch 1,mem_rxbuf+3
+	set1 7,pdata
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_not_accepted_ptt
+	rtn
+
+parse_lmpext_accepted_ptt:
+	fetch 1,mem_ptt
+	fetcht 1,mem_state_map
+	nsetflag blank,smap_edr,temp
+	storet 1,mem_state_map
+parse_lmpext_not_accepted_ptt:
+	fetch 1,mem_state
+	rtnbit0 state_init_seq
+	set0 state_init_seq,pdata
+	store 1,mem_state
+	fetch 1,mem_auth_enable
+	nrtn blank
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_pause_encrypt:
+	nbranch parse_lmpext_pause_encrypt_slave, master
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	branch tid_reply
+
+parse_lmpext_pause_encrypt_slave:	
+	jam LMP_PAUSE_ENCRYPTION_REQ, mem_lmo_opcode2
+	rtn
+
+parse_lmpext_resume_encrypt:
+//trans file to pc may cause pause/resume encrypt
+//if ms is conn_sm_wait_end the controllor won't send ack after recieved start_encypt_accept
+	call tid_reply
+	branch lmp_start_encryption
+
+parse_lmpext_features_req:
+	jam LMP_EXT_FEATURES_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_features_res:
+	fetcht 1,mem_rxbuf+4
+	and temp,0x1,temp
+	storet 1,mem_remote_sppcap
+	fetch 1,mem_hci_cmd
+	bne hci_cmd_wait_remote_ext_feature,parse_lmpext_features_res_not_hci
+	jam 0,mem_hci_cmd
+parse_lmpext_features_res_not_hci:
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_WAIT_FEATURES_EXT
+	jam CONN_SM_SEND_CONN_REQ,mem_conn_sm
+	branch process_conn_sm
+
+parse_lmp_accepted:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_6,mem_patch2a
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_accepted_hostconn//ok
+	beq LMP_IN_RAND,parse_lmp_accepted_inrand//ok
+	beq LMP_ENCRYPTION_MODE_REQ,parse_lmp_accepted_enc_mode//ok
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,parse_lmp_accepted_enc_keysize//ok
+	beq LMP_START_ENCRYPTION_REQ,parse_lmp_accepted_start_enc//ok
+	beq LMP_STOP_ENCRYPTION_REQ,parse_lmp_accepted_stop_enc//ok
+	beq LMP_UNSNIFF_REQ,parse_lmp_accepted_unsniff_req//ok
+	beq LMP_SNIFF_REQ,parse_lmp_accepted_sniff_req//ok
+	beq LMP_SWITCH_REQ,parse_lmp_accepted_switch
+	// simple pairing 
+	beq LMP_ENCAPSULATED_HEADER,parse_lmp_accepted_encapsulated_header//ok
+	beq LMP_ENCAPSULATED_PAYLOAD,parse_lmp_accepted_encapsulated_payload//ok
+	beq LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_accepted_simple_pairing_number//ok
+	beq LMP_DHKEY_CHECK,parse_lmp_accepted_dhkey_check//ok
+	rtn
+	
+parse_lmp_not_accepted:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_7,mem_patch2a
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_NAME_REQ,parse_lmp_not_accepted_name_req//ok
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_not_accepted_hostconn//ok
+	beq LMP_AU_RAND,parse_lmp_not_accepted_aurand//ok
+	beq LMP_IN_RAND,parse_lmp_not_accepted_inrand//ok
+	beq LMP_SWITCH_REQ,parse_lmp_not_accepted_switch//ok
+	/* simple pairing support */
+	beq  LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_not_accepted_simple_pairing_number//ok
+	beq  LMP_DHKEY_CHECK,parse_lmp_not_accepted_dhkey_check//ok
+	beq LMP_UNSNIFF_REQ,parse_lmp_not_accepted_unsniff_req
+	beq LMP_SNIFF_REQ,parse_lmp_not_acdcept_sniff_req
+	rtn
+
+parse_lmp_accepted_switch:
+	jam BT_EVT_SWITCH_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	branch role_switch_prepare0
+parse_lmp_not_accepted_switch:
+	jam BT_EVT_SWITCH_NOT_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	jam SWITCH_FLAG_NOT_ACCEPT,mem_switch_flag
+	setarg TIMER_SWITCH_WAITE
+	arg switch_wait_timer,queue
+	branch timer_init
+
+
+parse_lmp_accepted_hostconn:
+	//fetch 1,mem_state
+	//rtnbit0 state_init_seq
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_CONN_REQ,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_BB_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	jam LMP_PACKET_TYPE_TABLE_REQ,mem_lmo_opcode2
+	//nbranch parse_lmp_accepted_hostconn_ctn,master
+parse_lmp_accepted_hostconn_ctn:
+	/* checking to see if we requested host connection */
+	fetch 1,mem_conn_sm
+	bne CONN_SM_WAIT_CONN_ACCEPT, parse_rx_done
+	//branch parse_lmp_accepted_hostconn_master,master
+	/* continuing on with host connection state machine */
+	jam CONN_SM_AUTH_PAIR,mem_conn_sm
+	rtn
+	//branch host_create_conn_auth_pair
+
+	/* we need to move fast and send au_rand...jumping to next part of state machine for conn */
+//parse_lmp_accepted_hostconn_master:
+	//jam CONN_SM_AUTH_PAIR ,mem_conn_sm
+//	rtn
+
+parse_lmp_not_accepted_hostconn:
+	jam ACL_CONNECTION_ALREADY_EXISTS,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	/* clearing connection state machine */
+	jam CONN_SM_STANDBY,mem_conn_sm
+	/* sending error message to host */
+	branch parse_rx_done,true
+	rtn
+
+parse_lmp_accepted_inrand:
+	fetch 1,mem_link_key_exists
+	nrtn blank
+	call clear_linkkey
+	call  lmp_generate_key
+	rtn master
+	set1 mark_slave_in_rand_accepted,mark
+	rtn
+
+parse_lmp_accepted_enc_mode:
+	nrtn master
+	jam LMP_ENCRYPTION_KEY_SIZE_REQ,mem_lmo_opcode2
+	fetch 1,mem_state_map
+	rtnbit0 smap_encryption
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	rtn
+
+parse_lmp_accepted_enc_keysize:
+	branch lmp_start_encryption
+	
+parse_lmp_accepted_start_enc:
+	call send_create_conn_start_l2cap_timer_sm
+	fetch 1,mem_state
+	rtnbit1 state_conn_comp
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_ENCRYPT_WAIT
+	jam CONN_SM_ENCRYPT_WAIT_CLEAR,mem_conn_sm
+	rtn
+	
+parse_lmp_accepted_stop_enc:
+	/* again this won't work with multipoint. keep track of anyone else encrypting */
+	//jam HOST_STOP_ENCRYPTION,message_queue_B0
+	//jam 1,message_queue_B1
+	//jam HOST_RETURN_SUCCESS,message_queue_B2
+	//fetch 1,mem_lmp_state2
+	//set1 MESSAGE_QUEUE,pdata
+	//store 1,mem_lmp_state2
+	rtn
+
+parse_lmp_not_accepted_aurand:	
+parse_lmp_not_accepted_aurand_send_detach:	
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam OTHER_END_TERMINATED,mem_disconn_reason_send
+	rtn
+/*in pair remote cancel the pair*/
+parse_lmp_not_accepted_inrand:
+	fetch 1,mem_rxbuf+2
+	beq KEY_MISSING,parse_lmp_inrand_key_missing
+	rtnne PAIRING_NOT_ALLOWED
+	jam PAIRING_NOT_ALLOWED,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	rtn	
+parse_lmp_inrand_key_missing:
+	jam KEY_MISSING,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_not_accepted_name_req:
+	rtn
+	
+parse_lmp_not_accepted_simple_pairing_number:
+	jam      SP_STAT_NULL,mem_sp_state
+	jam LMP_DETACH,mem_lmo_opcode2
+	branch   parse_rx_done
+	
+parse_lmp_not_accepted_dhkey_check:
+	jam      SP_STAT_NULL,mem_sp_state
+	jam LMP_DETACH,mem_lmo_opcode2
+	branch   parse_rx_done
+parse_lmp_not_accepted_unsniff_req:
+	jam BT_EVT_UNSNIFF_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+parse_lmp_accepted_unsniff_req:
+	jam BT_EVT_UNSNIFF_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	branch sniff_exit
+	
+parse_lmp_accepted_sniff_req:
+	jam BT_EVT_SNIFF_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	setarg 0
+	store 2,mem_dsniff
+	fetch 2,mem_sniff_param_interval
+	lshift pdata,pdata
+	store 2,mem_tsniff
+	fetch 1,mem_sniff_param_attempt
+	store 1,mem_sniff_attempt
+	fetch 1,mem_sniff_param_timeout
+	store 1,mem_sniff_timeout
+	branch sniff_init
+	
+parse_lmp_not_acdcept_sniff_req:
+	jam BT_EVT_SNIFF_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+parse_lmp_crypt_key:
+	fetcht 1,mem_rxbuf+1
+	storet 1,mem_key_size
+	branch accept_lmp_msg
+	
+parse_lmp_setup_complete:
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_SETUP_COMPLETE,pdata
+	store 1,mem_lmp_conn_state
+	rtnbit1 SENT_SETUP_COMPLETE
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	branch parse_rx_done
+	
+parse_lmp_max_slot:
+	//jam LMP_MAX_SLOT,mem_lmi_opcode2
+	//branch accept_lmp_msg
+	rtn
+	
+parse_lmp_max_slot_req:
+	fetch 1,mem_max_slot
+	fetcht 1,mem_rxbuf+1
+	isub temp,null
+	//jam LMP_MAX_SLOT_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg,positive
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam UNSPECIFIED_ERROR,mem_lmo_reason2
+	jam LMP_MAX_SLOT_REQ,mem_lmi_opcode2
+	rtn
+	
+parse_lmp_detach:
+	call prepare_disconnect
+	branch accept_lmp_msg
+	
+accept_lmp_msg:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	rtn
+
+parse_lmp_incr_power:
+	jam LMP_MAX_POWER,mem_lmo_opcode2
+	rtn
+
+parse_lmp_decr_power:
+	jam LMP_MIN_POWER,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_version_res:
+	fetch 1,mem_conn_sm
+	rtneq CONN_SM_WAIT_VERSION
+	/* continuing on with host connection state machine */
+	jam CONN_SM_SEND_FEATURES ,mem_conn_sm
+	/* we need to move fast and send au_rand...jumping to next part of state machine for conn */
+	rtn
+
+
+parse_lmp_auto_rate:
+	rtn	
+
+parse_lmp_in_rand:
+	call lmp_copy_rand
+	jam pincode_state_wait_pincode,mem_pincode_state
+	jam BT_EVT_PINCODE_REQ,mem_fifo_temp
+	call ui_ipc_send_event
+
+	call tid_check
+	nbranch lmp_accept_inrand,true
+	//fetch 1,mem_auth_enable
+	nbranch parse_lmp_inrand_res,master // ignore this because of not ssp temporary
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_IN_RAND,mem_lmi_opcode2
+	jam TRANSACTION_COLLISION,mem_lmo_reason2
+	rtn
+parse_lmp_inrand_res:
+	fetch 1,mem_op
+	set1 op_inrand_req,pdata
+	store 1,mem_op
+	rtn
+
+//store current tid
+pop_tid_follow:
+	fetcht 1,mem_state_map
+	nsetflag blank,smap_lmptid,temp
+	storet 1,mem_state_map
+	rtn
+	
+//restore current tid
+push_tid_follow:
+	fetch 1,mem_lmo_tid2
+	rshift pdata,pdata
+	and_into 1,pdata
+	rtn
+
+parse_lmp_au_rand_moudle:
+	fetch 1,mem_device_option
+	rtnne dvc_op_module
+	fetch 1,mem_pairing_auth
+	call load_device_list,blank
+	rtn	
+
+parse_lmp_au_rand:
+	call parse_lmp_au_rand_moudle
+	call push_tid_follow
+	store 1,mem_sres_tid
+	call lmp_copy_rand
+	jam LMP_SRES,mem_lmo_opcode2
+	fetch 1,mem_link_key_exists
+	nrtn blank
+	fetch 1,mem_state
+	rtnbit1 state_combkey		/* we have comb key, but not verified */
+	jam KEY_MISSING,mem_lmo_reason2
+	branch reject_lmp_packet
+
+parse_lmp_sres:	
+	arg mem_plap,rega
+	call function_e1
+	fetch 4,mem_rxbuf+1
+	fetcht 4,mem_input_store
+	isub temp,null
+	branch authentication_ok,zero
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam AUTHENTICATION_FAILURE_ERROR,mem_disconn_reason_send	
+	rtn
+authentication_ok:
+	call authentication_ok_common
+	fetch 1,mem_ssp_enable
+	branch  pairing_success,blank
+	rtn
+
+	
+authentication_ok_common:
+	call copy_aco
+	call linkkey_ready///save link key
+	fetch 1,mem_op
+	isolate1 op_auth_req,pdata
+	set0 op_auth_req,pdata
+	store 1,mem_op
+	fetch 1,mem_conn_sm
+	beq CONN_SM_AUTH_WAIT,authentication_ok_conn_sm
+	beq CONN_SM_PAIRING_WAIT,authentication_ok_conn_sm
+	rtn
+authentication_ok_conn_sm:
+	fetch 1,mem_pairing_auth
+	rtnne DEFALT_PAIRING_AUTH
+	fetch 1,mem_state_map
+	rtnbit1 smap_encryption
+	branch host_create_conn_encrypt
+
+parse_lmp_comb_key:
+	arg mem_rxbuf+1,rega
+	arg mem_kinit,regb
+	arg mem_random_number,contw
+	call xor16
+	arg mem_plap,rega
+	call generate_linkkey
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	fetch 1,mem_state
+	bbit0 state_combkey,lmp_generate_key
+	rtn
+	
+parse_lmp_name_res:
+	fetch 2,mem_len
+	add pdata,-3,loopcnt	//for remote name length error
+	fetcht 1,mem_rxbuf+1
+	setarg mem_tmp_buffer
+	iadd temp,contw
+	arg mem_rxbuf+3,contr
+	call memcpy
+	fetcht 1,mem_name_offset
+	fetch 1,mem_rxbuf+2
+	isub temp,pdata
+	sub pdata,14,null
+	branch parse_lmp_name_res_end,positive
+	add temp,14,pdata
+	store 1,mem_name_offset
+	jam LMP_NAME_REQ,mem_lmo_opcode2
+	rtn
+parse_lmp_name_res_end:
+	fetch 1,mem_state_map
+	set1 smap_name_res,pdata
+	store 1,mem_state_map
+	bbit1 smap_name_req,lmp_disconnect
+	rtn
+parse_lmp_name_req:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_opcode2 //offset 
+	jam LMP_NAME_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_conn_req:
+	branch accept_lmp_msg
+
+parse_lmp_timing_accuracy_req:
+	jam LMP_TIMING_ACCURACY_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_features_req:
+	jam LMP_FEATURES_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_version_req:
+	jam LMP_VERSION_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_supervision_timeout:
+//	fetch 2,mem_rxbuf+1
+//	store 2,mem_supervision_to
+	rtn
+	
+
+
+parse_lmp_sniff_subrating_req:
+	fetch 2,mem_tsniff
+	iforce temp
+	fetch 1,mem_rxbuf+2
+	store 1,mem_subsniff_rate
+	imul32 temp,temp
+	fetch 2,mem_rxbuf+3
+	lshift pdata,pdata
+	store 2,mem_subsniff_tcmax
+	fetch 4,mem_rxbuf+5
+	lshift pdata,pdata
+ 	store 4,mem_subsniff_instant
+	//product pdata
+	deposit temp
+	store 2,mem_subsniff_tsniff
+	rtn
+parse_lmpext_packet_type_table_req:
+	fetcht 1,mem_ptt
+	fetch 1,mem_rxbuf+2
+	ixor temp,null
+	nbranch reject_unknown_ext_packet,zero
+	isolate1 0,pdata
+	fetch 1,mem_state_map
+	setflag true,smap_edr,pdata
+	store 1,mem_state_map
+	jam LMP_EXT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_PACKET_TYPE_TABLE_REQ,mem_lmi_opcode2
+	rtn
+
+	
+parse_lmp_sniff_subrating_res:
+parse_lmp_preferred_rate:
+parse_lmp_max_power:
+parse_lmp_min_power:
+	rtn
+parse_lmp_page_mode_req:
+	//jam LMP_PAGE_MODE_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg
+parse_lmp_page_scan_mode_req:
+	//this can influence connection. need accepted
+	//jam LMP_PAGE_SCAN_MODE_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg
+
+
+	
+parse_lmp_slot_offset:
+	fetch 2,mem_rxbuf+1
+	store 2,mem_slot_offset
+	rtn
+
+parse_lmp_sniff_req_check_sniff_para:
+	fetch 2,mem_rxbuf+4 /* tsniff */
+	fetcht 1,mem_lpm_mult
+	imul32 temp,pdata
+	arg 0x640,temp
+	isub temp,null
+//	branch lmp_reject_sniff,positive
+	rtn
+	
+parse_lmp_sniff_req:
+	call parse_lmp_sniff_req_check_sniff_para
+	branch lmp_reject_sniff,positive
+	fetch 1,mem_state
+	bbit1 state_insniff,lmp_reject_sniff
+	fetch 2,mem_rxbuf+2 /* dsniff */
+	lshift pdata,pdata
+	store 2,mem_dsniff	
+	fetch 2,mem_rxbuf+4 /* tsniff */
+	lshift pdata,pdata
+	store 2,mem_tsniff
+	fetch 2,mem_rxbuf+6 /* sniff attempt */
+	store 1,mem_sniff_attempt
+	iforce temp
+	fetch 2,mem_rxbuf+8 /* sniff timeout */
+	store 1,mem_sniff_timeout
+	isub temp,null
+	nbranch set_big_value_to_attempt,positive
+	store 1,mem_sniff_attempt
+set_big_value_to_attempt:	
+	//call sniff_init
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SNIFF_REQ,mem_lmi_opcode2
+	rtn
+
+lmp_reject_sniff:
+	jam PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+
+parse_lmp_start_encryption_req:
+	call accept_lmp_msg
+	call lmp_copy_rand
+	call function_e3
+	branch start_encryption
+	
+parse_lmp_stop_encryption_req:
+	call accept_lmp_msg
+	branch stop_encryption
+	
+
+parse_lmp_switch_req:
+	fetch 4,mem_rxbuf+1
+	lshift pdata,pdata
+	//branch parse_lmp_switch_req_not_accept
+	branch parse_lmp_switch_accept,master
+	fetcht 1,mem_link_key_exists
+	nbranch parse_lmp_switch_req_clear_mark,blank
+parse_lmp_switch_req_not_accept:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SWITCH_REQ,mem_lmi_opcode2
+	jam PDU_NOT_ALLOWED,mem_lmo_reason2
+	rtn
+parse_lmp_switch_req_clear_mark:
+	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	jam 0,mem_conn_sm
+	branch role_switch_prepare
+
+parse_lmp_switch_accept:
+	call role_switch_prepare
+	set1 mark_reconn_recieve_switch,mark
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	branch accept_lmp_msg
+
+	
+
+parse_lmp_temp_rand:
+parse_lmp_temp_key:
+parse_lmp_timing_accuracy_res:	
+parse_lmp_unit_key:	
+parse_lmp_use_semi_permanend_key:
+	rtn
+
+	
+parse_lmp_unsniff_req:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_UNSNIFF_REQ,mem_lmi_opcode2
+	jam BT_EVT_REMOTE_UNSNIFF,mem_fifo_temp
+	call ui_ipc_send_event
+	branch sniff_exit
+	
+parse_lmp_encapsulated_header:
+	fetch 1,mem_rxbuf+1
+	bne ENCAPSULATED_MAJOR_TYPE_P192,parse_lmp_encapsulated_header_reject
+	fetch 1,mem_rxbuf+2
+	bne ENCAPSULATED_MINOR_TYPE_P192,parse_lmp_encapsulated_header_reject
+	fetch 1,mem_rxbuf+3
+	bne ENCAPSULATED_LEN_P192,parse_lmp_encapsulated_header_reject
+	call check_localsm
+	branch parse_lmp_encapsulated_header_master,true
+	jam SP_STAT_KEY_RECV,mem_sp_state
+parse_lmp_encapsulated_header_master:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_ENCAPSULATED_HEADER,mem_lmi_opcode2
+	branch parse_rx_done
+	
+parse_lmp_encapsulated_header_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch   reject_lmp_packet
+	
+parse_lmp_accepted_encapsulated_header:
+	//jam LMP_ENCAPSULATED_PAYLOAD,mem_lmi_opcode2
+	//branch   accept_lmp_msg  	
+	jam LMP_ENCAPSULATED_PAYLOAD,mem_lmo_opcode2
+      //   branch   accept_lmp_msg  	
+         rtn
+parse_lmp_accepted_simple_pairing_number:
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_SSP_PIN_FLAG,parse_lmp_accepted_simple_pairing_number_ssp_pin
+	beq SSP_MODE_PASSKEY_ENTRY_FLAG,parse_lmp_accepted_simple_pairing_number_passkey
+parse_lmp_accepted_simple_pairing_number_common:
+	call check_localsm
+	rtn true
+	jam SP_STAT_CONFIRM_RECV,mem_sp_state
+	rtn
+
+parse_lmp_accepted_simple_pairing_number_ssp_pin:
+	call g_noninit_number_confirm
+	jam BT_EVT_BT_GKEY_GENERATE,mem_fifo_temp
+	call ui_ipc_send_event
+	branch parse_lmp_accepted_simple_pairing_number_common
+
+
+parse_lmp_accepted_simple_pairing_number_passkey:
+	call check_localsm
+	rtn true
+	fetch 1,mem_authentication_passkey_times
+	beq 19,authentication_passkey_end
+	increase 1,pdata
+	store 1,mem_authentication_passkey_times
+//	branch p_authentication_passkey
+
+authentication_passkey:
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	jam      SP_STAT_COMMIT_CALC,mem_sp_state 
+	fetch 1,mem_authentication_passkey_times
+	copy pdata,queue
+	fetch 6,mem_pin
+	qisolate1 pdata
+	setarg 0x80
+	setflag true,0,pdata
+	store 1,mem_passkey_1bit
+	rtn
+
+authentication_passkey_end:	
+	jam SP_STAT_CONFIRM_RECV,mem_sp_state
+	rtn
+
+parse_lmp_accepted_dhkey_check:
+	call parse_lmp_accepted_dhkey_check_common
+pairing_success:
+	fetch 1,mem_flag_pairing_state
+	rtn blank
+	jam FLAG_PAIRING_STATE_NOT_PAIRING,mem_flag_pairing_state
+	jam BT_EVT_BT_PAIRING_SUCCESS,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+parse_lmp_accepted_dhkey_check_common:
+	//here must be change***  shyd
+	call check_localsm
+	ncall g_noninit,true	//when be master  call g_init
+	call g_init,true
+	call check_localsm
+	rtn true
+	jam SP_STAT_LINK_KEY_CALC,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+
+parse_simple_pairing_confirm:
+	arg mem_sp_confirm_remote,contw
+	arg mem_rxbuf+1,contr
+	call memcpy16
+	fetch 1,mem_ssp_mode_flag
+	rtneq  SSP_MODE_PASSKEY_ENTRY_FLAG
+	branch master_set_mem_master_sp_flag
+	
+parse_lmp_encapsulated_payload:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_RANDOM_SEND,parse_encapsulated_payload_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_KEY_RECV,parse_lmp_encapsulated_payload_reject
+parse_encapsulated_payload_master:
+	fetch    1,mem_sp_remote_key_recv_count
+	sub      pdata,0x20,contw
+	nbranch  parse_lmp_encapsulated_payload_reject,positive
+	arg      mem_sp_pubkey_remote,contw
+	iadd     contw,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	fetch    1,mem_sp_remote_key_recv_count
+	increase 16,pdata
+	store    1,mem_sp_remote_key_recv_count
+	bne ENCAPSULATED_LEN_P192,accept_lmp_msg
+parse_lmp_encapsulated_payload_completed:
+	call check_localsm
+	branch accept_lmp_msg,true
+	jam      SP_KEY_VALID,mem_sp_remote_key_invalid
+	jam      SP_STAT_KEY_GENERATE,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag  
+	branch   accept_lmp_msg
+parse_lmp_encapsulated_payload_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch   reject_lmp_packet	
+parse_lmp_accepted_encapsulated_payload: 
+	fetch 1,mem_sp_local_key_send_count
+	beq	ENCAPSULATED_LEN_P192,parse_lmp_encapsulated_payload_all_accepted
+	jam LMP_ENCAPSULATED_PAYLOAD,mem_lmo_opcode2
+	branch   parse_rx_done 
+	
+parse_lmp_encapsulated_payload_all_accepted:   
+	call check_localsm
+	branch parse_lmp_encapsulated_payload_all_accepted_master,true
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_PASSKEY_ENTRY_FLAG,parse_lmp_encapsulated_payload_all_accepted_get_passkey
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	jam      SP_STAT_COMMIT_CALC,mem_sp_state 
+	branch   parse_rx_done
+
+parse_lmp_encapsulated_payload_all_accepted_get_passkey:
+	jam BT_EVT_BT_GET_PASSKEY,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+parse_lmp_encapsulated_payload_all_accepted_master:
+	//call sp_master_generate_local_key
+	branch   parse_rx_done   
+
+parse_lmp_simple_pairing_number:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_RANDOM_SEND,parse_lmp_simple_pairing_number_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_RANDOM_RECV,parse_lmp_simple_pairing_number_reject
+parse_lmp_simple_pairing_number_master:
+	arg      mem_sp_random_remote,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	call check_localsm
+	branch parse_lmp_simple_pairing_number_master0,true
+	jam      SP_STAT_RANDOM_SEND,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	branch accept_lmp_msg  
+parse_lmp_simple_pairing_number_master0:
+	jam SP_STAT_COMMIT_CALC,mem_master_sp_state
+	branch master_set_mem_master_sp_flag
+	//jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2
+	//branch accept_lmp_msg  
+parse_lmp_simple_pairing_number_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+	
+parse_dhkey_check:
+	fetch    1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_SEND,parse_dhkey_check_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_CONFIRM_RECV,parse_lmp_dhkey_check_reject
+parse_dhkey_check_master:
+	arg      mem_sp_check_result,contw
+	arg mem_rxbuf+1,contr
+	call memcpy16
+	call check_localsm
+	branch parse_dhkey_check_master0,true
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_SSP_PIN_FLAG,number_comparison_mode
+number_comparison_successed:
+	jam 0,mem_flag_mode_ssp_pin
+	jam SP_STAT_CONFIRM_CHECK,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	branch   parse_rx_done
+	
+parse_dhkey_check_master0:
+	jam      SP_STAT_CONFIRM_CHECK,mem_master_sp_state
+	jam      SP_FLAG_COMMIT,mem_master_sp_flag
+	branch   parse_rx_done
+parse_lmp_dhkey_check_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+
+number_comparison_mode:
+	fetch 1,mem_flag_mode_ssp_pin
+	bbit1 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT ,comparison_result
+	set1 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT,pdata
+	store 1,mem_flag_mode_ssp_pin
+	rtn
+	
+comparison_result:
+	bbit1 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,number_comparison_successed
+	jam 0,mem_flag_mode_ssp_pin
+	branch parse_lmp_dhkey_check_reject
+
+	
+parse_lmp_clkoffset_res:
+	branch parse_rx_done
+		
+parse_lmp_encryption_mode_req:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_ENCRYPT
+	store 1,mem_connection_options
+	call accept_lmp_msg
+	nrtn master					/* do sth only if we're master */
+	fetch 1,mem_rxbuf+1
+	fetcht 1,mem_op
+	setflag blank,op_stop_enc,temp
+	nsetflag blank,op_start_enc,temp
+	storet 1,mem_op
+	rtn 
+	
+parse_lmp_features_res:
+	fetcht 8,mem_rxbuf+1		/*fix bcp(baoshijie) err*/
+parse_lmp_features_res_not_hci:	
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_WAIT_FEATURES_RES
+
+	fetch 1,mem_connection_options
+	bbit0 CONNECTION_FEATURE_EXT,parse_lmp_send_conn
+
+	jam CONN_SM_SEND_FEATURES_EXT,mem_conn_sm
+	rtn
+parse_lmp_send_conn:
+	jam CONN_SM_SEND_CONN_REQ,mem_conn_sm
+	rtn
+parse_lmp_test_activate:
+	fetch 1,mem_debug_config
+	store 1,mem_test_mode_old_debug_config
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_TEST_ACTIVATE,mem_lmi_opcode2
+	rtn
+parse_lmp_test_control:
+	/* the 9 test control parameters are XORed with 0x55 */
+	/* doing the XOR here and storing in mem_temp_payload */
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_TEST_CONTROL,mem_lmi_opcode2
+	force 9,loopcnt
+	arg mem_rxbuf+1,contr
+	arg mem_temp_payload,contw
+parse_lmp_test_xor:
+	ifetch 1,contr
+	xor_into 0x55,pdata
+	istore 1,contw
+	loop parse_lmp_test_xor
+	fetch 1,test_mode_scenario
+	fetcht 1,mem_tester_emulate
+	set0 tester_no_whitening,temp
+	set0 tester_pattern_test,temp
+	beq EXIT_TEST_MODE,	 parse_lmp_test_control_exit
+	beq PAUSE_TEST_MODE,	 parse_lmp_test_control_pause
+	beq CLOSED_LOOP_BACK_ACL,	 parse_lmp_test_control_loopback
+	beq ACL_WITHOUT_WHITENING,	 parse_lmp_test_control_loopback_nowhite
+	beq CLOSED_LOOP_BACK_SCO,	 parse_lmp_test_control_loopback
+	beq SCO_WITHOUT_WHITENING,	 parse_lmp_test_control_loopback_nowhite
+	beq ZERO_PATTERN,	 parse_lmp_test_control_pattern
+	beq ONE_PATTERN,	 parse_lmp_test_control_pattern
+	beq ALT_PATTERN,	 parse_lmp_test_control_pattern
+	beq ALT2_PATTERN,	 parse_lmp_test_control_pattern
+	beq PSEUDORANDOM,	 parse_lmp_test_control_pattern
+	rtn
+parse_lmp_test_control_exit:
+	/* restoring old parameters */
+	fetch 1,mem_tester_emulate
+	set1 tester_exit,pdata
+	set1 tester_change,pdata
+	store 1,mem_tester_emulate
+	rtn
+parse_lmp_test_control_pattern:
+	set1 tester_pattern_test,temp
+	jam 5,mem_lch_code
+	fetch 2,test_mode_data_length
+	iforce loopcnt
+	store 2,mem_len
+	arg mem_rxbuf,contw
+	call pn9
+parse_lmp_test_control_loopback_nowhite:
+	set1 tester_no_whitening,temp
+parse_lmp_test_control_loopback:
+	set1 tester_change,temp
+	force 0,pdata
+	store 1,mem_slave_rcvcnt
+	store 2,mem_tst_pktcnt_crc
+	store 2,mem_tst_pktcnt_dmh
+	store 2,mem_tst_pktcnt_hec
+	store 2,mem_tst_pktcnt_sync
+	fetch 1,test_mode_hopping_mode
+	compare FIXED_FREQ,pdata,0xff
+	setflag true,tester_fixed_freq,temp
+	storet 1,mem_tester_emulate
+	rtn
+
+parse_lmp_test_control_pause:
+	set0 mark_testmode,mark
+	jam 0,mem_tester_emulate
+	fetch 1,mem_debug_config
+	set0 debug_tx_pattern,pdata
+	store 1,mem_debug_config
+	rtn
+
+
+	
+	
+
+lmp_copy_rand:	
+	arg mem_rxbuf+1,contr
+	arg mem_random_number,contw
+	branch memcpy16
+
+lmp_generate_key:
+	jam LMP_COMB_KEY,mem_lmo_opcode2
+	rtn
+
+lmp_start_encryption:
+	nrtn master
+	jam LMP_START_ENCRYPTION_REQ,mem_lmo_opcode2
+	rtn
+	
+lmp_accept_inrand:
+	arg mem_lap,rega
+	call generate_kinit
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_IN_RAND,mem_lmi_opcode2
+	rtn
+
+lmp_disconnect:
+	jam 10,mem_conn_timer
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam LOCAL_HOST,mem_disconn_reason_send	
+	rtn
+
+/*********************************/
+/*********lmp send*************/
+/********************************/
+	/* enable user if a lmp packet is to send */
+send_lmp:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_0,mem_patch2b
+	disable user
+	call lmo_fifo_process
+	fetch 1,mem_lmp_to_send
+	rtn blank
+/* lmp message to be processed. this will either be because host??? */
+/* wants to send a lmp message or because one resulted from the LMP */
+/* processing section */
+/********* outgoing lmp lookup table *************/
+	bbit1 7,send_lmp_escape
+send_lmp0:
+	beq LMP_NAME_REQ,	 send_lmp_name_req
+	beq LMP_NAME_RES,	 send_lmp_name_res
+	beq LMP_ACCEPTED,	 send_lmp_accepted
+	beq LMP_NOT_ACCEPTED,	 send_lmp_not_accepted
+	beq LMP_FEATURES_REQ,	 send_lmp_features_req
+	beq LMP_FEATURES_RES,	 send_lmp_features_res
+	beq LMP_TIMING_ACCURACY_RES,	 send_lmp_timing_accuracy_res
+	beq LMP_VERSION_REQ,	 send_lmp_version_req
+	beq LMP_VERSION_RES,	 send_lmp_version_res
+	beq LMP_SETUP_COMPLETE,	 send_lmp_setup_complete
+	beq LMP_SUPERVISION_TIMEOUT,	 send_lmp_superto
+	beq LMP_HOST_CONNECTION_REQ,send_lmp_no_payload
+	beq LMP_IN_RAND,send_lmp_inrand
+	beq LMP_COMB_KEY,send_lmp_comb_key
+	beq LMP_AU_RAND,send_lmp_aurand
+	beq LMP_SRES,send_lmp_sres
+	beq LMP_ENCRYPTION_MODE_REQ,send_lmp_encryption_mode_req
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,send_lmp_encryption_key_size_req
+	beq LMP_START_ENCRYPTION_REQ,send_lmp_start_encryption
+	beq LMP_DETACH,send_lmp_detach
+	beq LMP_QUALITY_OF_SERVICE_REQ, send_lmp_quality_of_service_req
+	beq LMP_UNIT_KEY,send_lmp_unit_key
+	//Optional (O)
+	beq LMP_INCR_POWER_REQ,send_lmp_inc_power	
+	beq LMP_CLKOFFSET_RES, send_lmp_clkoffset_res	
+	beq LMP_MAX_POWER,send_lmp_nopayload_reply
+	beq LMP_MAX_SLOT, send_lmp_max_slot
+	beq LMP_MAX_SLOT_REQ, send_lmp_max_slot_req
+	beq LMP_MIN_POWER,send_lmp_nopayload_reply
+	beq LMP_SLOT_OFFSET, send_lmp_slot_offset
+	beq LMP_SWITCH_REQ, send_lmp_switch_req
+	beq LMP_SNIFF_REQ, send_lmp_sniff_req
+	beq LMP_STOP_ENCRYPTION_REQ, send_lmp_stop_encryption_req	
+	beq LMP_TIMING_ACCURACY_REQ, send_lmp_timing_accuracy_req
+	beq LMP_UNSNIFF_REQ, send_lmp_unsniff_req
+	beq LMP_ENCAPSULATED_HEADER,send_lmp_encapsulated_header
+	beq LMP_ENCAPSULATED_PAYLOAD,send_lmp_encapsulated_payload
+	beq LMP_SIMPLE_PAIRING_CONFIRM,send_lmp_simple_pairing_comfirm
+	beq LMP_SIMPLE_PAIRING_NUMBER,send_lmp_simple_pairing_number
+	beq LMP_DHKEY_CHECK,send_lmp_dhkey_check
+	beq LMP_AUTO_RATE,send_lmp_auto_rate
+	beq LMP_ENC_KEY_SIZE_MASK_RES,send_lmp_enc_key_size_mask_res
+	//master only must(M)
+	beq LMP_CLKOFFSET_REQ, send_lmp_clkoffset_req
+	beq LMP_QUALITY_OF_SERVICE, send_lmp_quality_of_service
+	beq LMP_TEST_ACTIVATE, send_lmp_test_activate
+	beq LMP_TEST_CONTROL, send_lmp_test_control
+send_lmp_error:
+	branch assert
+	rtn
+send_lmp_escape:
+	beq LMP_EXT_ACCEPTED,send_lmpext_accepted
+	beq LMP_EXT_FEATURES_RES,send_lmpext_features_res
+	beq LMP_NOT_ACCEPTED_EXT,send_lmpext_not_accepted
+	beq LMP_EXT_FEATURES_REQ,send_lmpext_features_req
+	beq LMP_PACKET_TYPE_TABLE_REQ,send_lmpext_packet_type_table_req
+	beq LMP_PAUSE_ENCRYPTION_REQ,send_lmpext_pause_encryption_req
+	beq LMP_IO_CAP_REQ,send_lmp_io_cap_req
+         beq LMP_IO_CAP_RES,send_lmpext_io_cap_res
+         beq LMP_SNIFF_SUBRATING_REQ,send_lmpext_sniff_subrating_req
+         beq LMP_SNIFF_SUBRATING_RES,send_lmpext_sniff_subrating_res
+	branch assert
+
+
+/******** LMP follow messages **********/
+/****** TID follow received packet  *******/
+
+send_lmp_accepted:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode
+	istore 1,contw
+	call send_lmp_follow
+	set1 mark_ext_patch,mark
+	bpatch patch2b_1,mem_patch2b
+	fetch 1,mem_lmi_opcode
+	beq LMP_IN_RAND,send_lmp_accepted_inrand
+	beq LMP_ENCRYPTION_MODE_REQ,send_lmp_accepted_enc_mode
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,send_lmp_accepted_enc_key
+	beq LMP_SNIFF_REQ,send_lmp_accept_sniff_req
+	beq LMP_HOST_CONNECTION_REQ,send_lmp_accepted_connection
+	beq LMP_DHKEY_CHECK,send_lmp_accept_dhkey_check
+	beq LMP_START_ENCRYPTION_REQ,send_create_conn_start_l2cap_timer_sm  
+	rtn	
+	
+send_create_conn_start_l2cap_timer_sm:
+	fetch 1,mem_conn_sm
+	rtn blank
+	jam CONN_SM_WAIT_DONE,mem_conn_sm
+	setarg TIMER_ENPT_WAITE
+	arg enpt_delay_timer,queue
+	branch timer_init
+	
+send_lmp_accept_sniff_req:
+	branch sniff_init
+send_lmp_not_accepted:
+	force 3,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode
+	beq LMP_AU_RAND,send_not_accept_aurand
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	branch send_lmp_follow
+
+send_not_accept_aurand:
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	arg mem_sres_tid,temp
+	branch special_tid_store
+
+send_lmpext_accepted:	
+	force 4,queue
+	call send_lmpext
+	setarg LMP_ESCAPE
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	set0 7,pdata
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	branch send_lmp_follow
+
+send_lmpext_not_accepted:
+	force 5,queue
+	call send_lmpext
+	setarg LMP_ESCAPE
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	set0 7,pdata
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	branch send_lmp_follow
+	
+
+send_lmp_accepted_inrand:
+	call clear_linkkey
+	call tid_check	
+	rtn true
+	branch lmp_generate_key
+
+send_lmp_accepted_enc_mode:
+	fetch 1,mem_op
+	bbit1 op_start_enc,send_lmp_accepted_enc_start
+	rtnbit0 op_stop_enc
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	set0 op_stop_enc,pdata
+	call tid_reply
+	branch send_lmp_accepted_enc_exit
+send_lmp_accepted_enc_start:
+	jam LMP_ENCRYPTION_KEY_SIZE_REQ,mem_lmo_opcode2
+	set0 op_start_enc,pdata
+send_lmp_accepted_enc_exit:
+	store 1,mem_op
+	rtn
+
+send_lmp_accepted_enc_key:
+	call check_localsm
+	branch lmp_start_encryption,true
+	rtn
+
+send_lmp_accepted_connection:
+	jam LMP_PACKET_TYPE_TABLE_REQ,mem_lmo_opcode2
+	//jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_CONN_REQ,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_BB_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+send_lmp_accept_dhkey_check:
+	rtn
+/******** LMP reply messages **********/
+/****** TID always set to remote  *******/
+
+send_lmpext_features_res:
+	force 12,queue
+	call send_lmpext
+	setarg 0x01
+	istore 1,contw
+	fetch 2,mem_lmpext_ssp_enable
+	istore 2,contw
+	setarg 0
+	istore 3,contw
+	setarg 0x00
+	istore 4,contw
+	branch send_lmp_reply
+send_lmpext_io_cap_res:     
+	force 5,queue
+         call send_lmpext
+       	fetch 3,mem_sp_iocap_local
+         istore 3,contw
+	call send_lmp_reply
+	jam FLAG_PAIRING_STATE_PAIRING,mem_flag_pairing_state
+	fetch 1,mem_sp_iocap_local
+	beq DISPLAY_YESNO,responder_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_no_input_no_output
+	rtn
+
+responder_iocap_keyboard_only:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_keyboard_only_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_keyboard_only_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_keyboard_only_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_keyboard_only_initiator_iocap_no_input_no_output
+	rtn
+
+
+responder_iocap_display_yesno:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_display_yesno_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_display_yesno_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_display_yesno_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_display_yesno_initiator_iocap_no_input_no_output
+	rtn
+
+	
+responder_iocap_no_input_no_output:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_no_input_no_output_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_no_input_no_output_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_no_input_no_output_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output
+	rtn
+
+responder_iocap_keyboard_only_initiator_iocap_no_input_no_output:
+responder_iocap_display_yesno_initiator_iocap_no_input_no_output:
+responder_iocap_display_yesno_initiator_iocap_display_only:
+responder_iocap_no_input_no_output_initiator_iocap_display_only:
+responder_iocap_no_input_no_output_initiator_iocap_display_yesno:
+responder_iocap_no_input_no_output_initiator_iocap_keyboard_only:
+responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output:
+set_ssp_mode_justwork: 
+	jam SSP_MODE_JUST_WORK_FLAG,mem_ssp_mode_flag
+	rtn
+
+responder_iocap_display_yesno_initiator_iocap_display_yesno:
+set_ssp_mode_numeric_comparison: 
+	jam SSP_MODE_SSP_PIN_FLAG,mem_ssp_mode_flag
+	rtn
+
+responder_iocap_keyboard_only_initiator_iocap_display_yesno:
+responder_iocap_keyboard_only_initiator_iocap_keyboard_only:	
+responder_iocap_keyboard_only_initiator_iocap_display_only:	
+responder_iocap_display_yesno_initiator_iocap_keyboard_only:
+set_ssp_mode_passkey: 
+	jam SSP_MODE_PASSKEY_ENTRY_FLAG,mem_ssp_mode_flag
+	rtn
+
+
+
+         
+send_lmp_io_cap_req:
+	force 5,queue
+	call send_lmpext
+	fetch 3,mem_sp_iocap_local
+	istore 3,contw
+	branch send_lmp_request
+	
+
+send_lmpext_sniff_subrating_req: 
+
+	rtn
+send_lmpext_sniff_subrating_res: 
+         force 9,queue
+         call send_lmpext
+         fetch 1,mem_subsniff_rate
+         istore 1,contw
+         fetch 2,mem_subsniff_tcmax
+         istore 2,contw
+         fetch 4,mem_subsniff_instant
+         istore 4,contw
+	branch send_lmp_reply
+
+send_lmp_name_res:
+	force 17,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode  /* loading name offset */
+	copy pdata,temp
+	beq 0x00,send_lmp_name_res_offset_ok
+	beq 0x0e,send_lmp_name_res_offset_ok
+	beq 0x1c,send_lmp_name_res_offset_ok
+	rtn
+send_lmp_name_res_offset_ok:
+	istore 1,contw	/* writing name offset */
+	fetch 1,mem_local_name_length
+	istore 1,contw	/* writing name length */
+	arg 14,loopcnt
+	setarg mem_local_name
+	iadd temp,contr	/* setting read location */
+	call memcpy
+	branch send_lmp_reply
+
+
+send_lmp_timing_accuracy_res:
+	force 3,pdata
+	call msg_send_lmp
+	setarg 0x0114
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_clkoffset_res:
+	// dopod s505 must wait for this res
+	force 3,pdata
+	call msg_send_lmp
+	fetch 4,mem_clke_bt
+	isub clkn_bt,pdata
+	branch send_lmp_clkoffset_res_master,master
+	sub pdata,0,pdata		/* our role is slave */
+send_lmp_clkoffset_res_master:	
+	// bit 16-2 of clkslave-clkmaster
+	rshift2 pdata,pdata
+	set0 15,pdata
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_version_res:
+	force 6,pdata
+	call msg_send_lmp
+	fetch 5,mem_lmp_version
+	istore 5,contw
+	branch send_lmp_reply
+
+send_lmp_features_res:
+	force 9,pdata
+	call msg_send_lmp
+	fetch 8,mem_features
+	istore 8,contw
+	branch send_lmp_reply  
+
+
+/******** LMP request messages **********/
+/****** TID always set to local initiated *******/
+	
+
+send_lmpext_features_req:
+	force 12,queue
+	call send_lmpext
+	setarg 0x01
+	istore 1,contw
+	fetch 2,mem_lmpext_ssp_enable
+	istore 2,contw
+	setarg 0
+	istore 3,contw
+	setarg 0x00
+	istore 4,contw
+	branch send_lmp_request
+
+send_lmpext_packet_type_table_req:
+	force 3,queue
+	call send_lmpext
+	fetch 1,mem_ptt
+	istore 1,contw
+	disable user
+	call send_lmp_request
+	nrtn user
+	nrtn master
+	fetch 1,mem_afh_cfg
+	rtnbit0 AFH_CFG_ON
+	call afh_init
+	branch afh_open_all_channels
+	
+//default:featrue is enable,extfeature is disable
+ssp_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_2,mem_patch2b
+	fetch 1,mem_features+6
+	set1 param_featrue_ssp,pdata
+	store 1,mem_features+6
+	setarg param_lmpext_ssp_enable
+	store 2,mem_lmpext_ssp_enable
+	rtn
+
+ssp_disable:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_3,mem_patch2b
+	fetch 1,mem_features+6
+	set0 param_featrue_ssp,pdata
+	store 1,mem_features+6
+	setarg 0
+	store 2,mem_lmpext_ssp_enable
+	rtn
+	
+afh_init:
+	jam 0x3,mem_afh_cfg
+	setarg 0
+	store 4,mem_afh_timer
+	arg mem_afh_map_lo,contw
+	call afh_reset_map
+	arg mem_afh_map_new,contw
+	call afh_reset_map
+	arg mem_afh_classify_channel_map,contw
+	call afh_reset_map
+	branch afh_clear_error_counter
+afh_open_all_channels:
+	arg mem_afh_map_new,contw
+	call afh_reset_map
+	call afh_clear_error_counter
+	branch afh_set_send_flag
+
+
+afh_reset_map:
+	setarg 0xffffff
+	istore 3,contw
+	istore 3,contw
+	istore 3,contw
+	setarg 0x7f
+	istore 1,contw
+	rtn
+afh_clear_error_counter:
+	setarg 0
+	store 2,mem_afh_error_total
+	rtn
+afh_set_send_flag:
+	fetch 1,mem_afh_cfg
+	set1 send_lmp_set_afh,pdata
+	store 1,mem_afh_cfg
+	rtn
+
+
+send_lmpext_pause_encryption_req:
+	force 2,queue
+	call send_lmpext
+	nbranch send_lmp_reply,master
+	// assume slave will not send pause req firstly???
+	branch send_lmp_request
+
+
+	
+send_lmp_detach:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_disconn_reason_send
+	istore 1,contw
+	call send_lmp_request
+prepare_disconnect:
+	fetch 1,mem_op
+	set1 op_disconn,pdata
+	store 1,mem_op
+	jam 50,mem_conn_timer
+	rtn
+	
+
+send_lmp_no_payload:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_request
+send_lmp_nopayload_reply:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_reply
+	
+	
+send_lmp_encryption_mode_req:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_state_map
+	isolate0 smap_encryption,pdata
+	setflag true,0,pdata
+	and_into 1,pdata
+	istore 1,contw
+	branch send_lmp_request
+
+
+send_lmp_superto:
+	force 3,pdata
+	call msg_send_lmp
+	fetch 2,mem_supervision_to
+	istore 2,contw
+	branch send_lmp_request
+
+send_lmp_name_req:
+	jam 250,mem_conn_timer
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_name_offset
+	istore 1,contw
+	branch send_lmp_request
+
+send_lmp_test_control:
+	force 10,pdata
+	call msg_send_lmp
+	arg mem_temp_payload,contr
+	force 9,loopcnt
+send_lmp_test_control_loop:	
+	ifetch 1,contr
+	xor_into 0x55,pdata
+	istore 1,contw
+	loop send_lmp_test_control_loop
+	branch send_lmp_request  
+
+send_lmp_quality_of_service_req:
+	branch send_lmp_request
+send_lmp_unit_key:
+	branch send_lmp_request
+
+send_lmp_slot_offset:
+	rtn master
+	call calc_slot_offset
+	force 9,pdata
+	call msg_send_lmp
+	fetch 2,mem_slot_offset
+	istore 2,contw
+	fetch 3,mem_lap
+	istore 3,contw
+	fetch 1,mem_uap
+	istore 1,contw
+	fetch 2,mem_nap
+	istore 2,contw
+	bmark0 mark_switch_initiated,send_lmp_slot_offset_reply
+	set0 mark_switch_initiated,mark
+	call send_lmp_request
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	rtn
+send_lmp_slot_offset_reply:
+	call send_lmp_reply
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SWITCH_REQ,mem_lmi_opcode2
+	rtn
+	
+send_lmp_switch_req:
+	arg 0x200,temp
+	branch switch_on_native,master
+	deposit clke_bt
+	branch switch_slack
+switch_on_native:
+	deposit clkn_bt
+switch_slack:
+	deposit bt_clk
+	iadd temp,pdata
+	and_into 0x1fc,pdata
+	store 4,mem_sniff_anchor
+	force 5,pdata
+	call msg_send_lmp
+	fetch 4,mem_sniff_anchor		/* reused as switch instant */
+	rshift pdata,pdata
+	istore 4,contw
+	branch send_lmp_request
+	
+send_lmp_sniff_req:
+	force 10,pdata
+	call msg_send_lmp
+	arg mem_sniff_payload,contr
+	ifetch 9,contr
+	istore 9,contw
+	branch send_lmp_request
+
+	
+send_lmp_timing_accuracy_req:
+/* default to TID_NORM_SEND */
+	force 3,pdata
+	call msg_send_lmp
+	setarg 0x0114
+	istore 2,contw
+	branch send_lmp_request
+	
+send_lmp_unsniff_req:
+//--------------------need to completa
+	force 1,pdata
+	call msg_send_lmp
+	//fetch 1,mem_unsniff_pending
+	//nbranch send_msg_done,blank
+	//jam 1,mem_unsniff_pending
+	//fetch 2,mem_sniff_attempt
+	//fetch 2,mem_nsniff_attempt
+	//lshift3 pdata,pdata
+	//lshift pdata,pdata
+	//store 1,mem_unsniff_cnt
+	branch send_lmp_request
+
+	
+send_lmp_max_slot:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_max_slot
+	istore 1,contw
+	branch send_lmp_request
+	
+	
+send_lmp_max_slot_req:
+	force 2,pdata
+	call msg_send_lmp
+	setarg 0x05		/*5 slot*/
+	istore 1,contw
+	branch send_lmp_request
+
+
+send_lmp_inc_power:
+	force 2,pdata
+	call msg_send_lmp
+	setarg 0x00		/*5 slot*/
+	istore 1,contw
+	branch send_lmp_request
+
+
+
+send_lmp_setup_complete:
+	jam LMP_MAX_SLOT_REQ,mem_lmo_opcode2
+	fetch 1,mem_state
+	set1 state_conn_comp,pdata
+	store 1,mem_state
+	copy clkn_bt,pdata
+	store 4,mem_aurand_send_delay_time
+	fetch 1,mem_lmp_conn_state
+	bbit1 SENT_SETUP_COMPLETE,send_lmp_setup_complete_has_sent
+	set1 SENT_SETUP_COMPLETE,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_SETUP_COMPLETE,mem_fifo_temp
+	call ui_ipc_send_event
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_request
+send_lmp_setup_complete_has_sent:
+	jam 0,mem_lmp_to_send
+	rtn
+	
+send_lmp_version_req:
+	force 6,pdata
+	call msg_send_lmp
+	fetch 5,mem_lmp_version
+	istore 5,contw
+	branch send_lmp_request
+
+send_lmp_features_req:
+	force 9,pdata
+	call msg_send_lmp
+	fetch 8,mem_features
+	istore 8,contw
+	branch send_lmp_request  
+
+sp_master_send_io_cap_get:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	fetch 1,mem_sp_local_key_invalid
+	rtnne SP_KEY_VALID
+	jam SP_MASTER_STAT_START_DONE,mem_master_sp_state
+	rtn
+
+sp_master_send_io_cap_send:
+	call tid_initiate
+	jam LMP_IO_CAP_REQ,mem_lmo_opcode2
+	jam SP_STAT_KEY_SEND,mem_master_sp_state
+	rtn
+	
+	
+sp_master_send_LMP_ENCAPSULATED_HEADER:
+	call tid_initiate
+	jam      LMP_ENCAPSULATED_HEADER,mem_lmo_opcode2
+	jam SP_STAT_RANDOM_SEND,mem_master_sp_state
+	rtn
+	
+sp_master_commitment_compare:
+	arg mem_sp_calc_result_high,rega
+	arg mem_sp_confirm_remote,regb
+	arg 16,loopcnt
+	call string_compare
+	branch sp_master_commitment_compare_success,zero
+	jam SP_STAT_NULL,mem_master_sp_state
+	call master_clear_mem_master_sp_flag
+	jam   PDU_NOT_ALLOWED,mem_lmo_reason2
+	jam 	LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2 
+	branch reject_lmp_packet
+sp_master_commitment_compare_success:
+	jam 	SP_STAT_CONFIRM_CALC,mem_master_sp_state
+	call master_set_mem_master_sp_flag
+	jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2
+	branch accept_lmp_msg  
+	
+
+	
+sp_master_send_lmp_simple_pairing_number:
+	jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmo_opcode2
+	rtn
+	
+
+
+sp_send_lmp_encapsulated_header:
+	// calculate the private & public key here
+	//jam      LMP_ENCAPSULATED_HEADER,mem_lmp_to_send
+	jam      LMP_ENCAPSULATED_HEADER,mem_lmo_opcode2
+	//jam      TID_PAIRING,mem_lmp_tid
+	rtn
+	//fetch 1,mem_tid_table
+	//set1 TID_PAIRING,pdata
+	//store 1,mem_tid_table
+     
+    
+send_lmp_encapsulated_header: 
+	jam 0,mem_sp_local_key_send_count
+	force 4,pdata
+	call msg_send_lmp
+	force ENCAPSULATED_MAJOR_TYPE_P192,pdata
+	istore 1,contw
+	force ENCAPSULATED_MINOR_TYPE_P192,pdata
+	istore 1,contw  
+	force ENCAPSULATED_LEN_P192,pdata
+	istore 1,contw 
+	call check_localsm
+	branch send_lmp_request,true
+	branch send_lmp_reply
+
+send_lmp_encapsulated_payload:
+	//jam      TID_PAIRING,mem_lmp_tid
+	 force 17,pdata
+	call msg_send_lmp
+	fetch 1,mem_sp_local_key_send_count
+	arg mem_sp_pubkey_local,contr
+	iadd contr,contr    
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw
+	fetch    1,mem_sp_local_key_send_count
+	increase 16,pdata
+	store    1,mem_sp_local_key_send_count
+	call check_localsm
+	branch send_lmp_request,true
+	branch send_lmp_reply
+	//branch send_lmp_request
+	
+sp_send_lmp_simple_pairing_comfirm:
+        jam      SP_STAT_RANDOM_RECV,mem_sp_state
+        jam      LMP_SIMPLE_PAIRING_CONFIRM,mem_lmo_opcode2
+        rtn
+send_lmp_simple_pairing_comfirm:
+        //jam      SP_STAT_RANDOM_RECV,mem_sp_state
+        //jam      TID_PAIRING,mem_lmp_tid
+        force    17,pdata
+        call msg_send_lmp   
+        arg      mem_sp_calc_result_high,contr
+        ifetch   8,contr
+        istore   8,contw
+        ifetch   8,contr
+        istore   8,contw 
+        branch send_lmp_reply
+
+sp_send_lmp_simple_pairing_number:
+	jam      LMP_SIMPLE_PAIRING_NUMBER,mem_lmo_opcode2
+	rtn
+
+send_lmp_simple_pairing_number:
+	//jam      TID_PAIRING,mem_lmp_tid
+	call check_localsm
+	call sp_local_random_key_generator,true
+	force    17,pdata
+	call msg_send_lmp
+	arg      mem_sp_random_local,contr
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw
+	call check_localsm
+	nbranch send_lmp_reply,true
+	branch send_lmp_request,true
+
+master_sp_sm_end:
+	//jam DEFAULT_STATEMACHINE,mem_sp_localsm
+	jam SP_STAT_DONE,mem_master_sp_state
+sp_aurand_send:
+	call tid_initiate
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	call check_localsm_master
+	branch sp_master_key_prarm_push,true
+	branch sp_link_key_prarm_push
+master_sp_send_lmp_dhkey_check:
+	call tid_reply
+sp_send_lmp_dhkey_check: 
+	jam      LMP_DHKEY_CHECK,mem_lmo_opcode2
+	rtn
+send_lmp_dhkey_check: 
+	//jam      TID_PAIRING,mem_lmp_tid
+	force    17,pdata
+	call     msg_send_lmp
+	arg      mem_sp_calc_result_high,contr
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw 
+	call check_localsm
+	nbranch send_lmp_reply,true
+	branch send_lmp_request,true
+
+send_lmp_enc_key_size_mask_res:
+	force 3,pdata
+	call msg_send_lmp   
+	setarg 0xfffe //enc key size mask
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_auto_rate:
+	branch send_lmp_request
+send_lmp_clkoffset_req:
+	branch send_lmp_request
+send_lmp_quality_of_service:
+	branch send_lmp_request
+send_lmp_test_activate:
+	branch send_lmp_request
+
+/******** LMP request/reply messages **********/
+/****** TID transaction specific *******/
+
+send_lmp_comb_key:
+	call generate_random_number
+	arg mem_lap,rega
+	call generate_linkkey
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_kinit,rega
+	arg mem_random_number,regb
+	call xor16
+	nbranch send_lmp_follow,master
+	branch send_lmp_tid
+
+send_lmp_inrand:
+	call generate_random_number
+	arg mem_plap,rega
+	call generate_kinit
+send_lmp_rand:	/* used by in_rand,au_rand,start_encrypt */
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_random_number,contr
+	call memcpy16
+	fetch 1,mem_conn_sm 
+	beq CONN_SM_AUTH_WAIT,send_lmp_request
+	beq CONN_SM_PAIRING_WAIT,send_lmp_request
+	branch send_lmp_tid
+
+send_lmp_aurand:
+	fetch 1,mem_pairing_auth
+	branch send_lmp_aurand_notpairing,blank
+	call check_localsm
+	call tid_initiate,true
+	ncall tid_reply,true
+	branch send_lmp_aurand_common
+send_lmp_aurand_notpairing:
+	call tid_initiate
+send_lmp_aurand_common:
+	call generate_random_number
+	branch send_lmp_rand
+
+send_lmp_sres:
+	arg mem_lap,rega
+	call function_e1
+	force 5,pdata
+	call msg_send_lmp
+	fetch 4,mem_input_store
+	istore 4,contw
+	arg mem_sres_tid,temp
+	call special_tid_store
+	call copy_aco
+	call check_localsm
+	branch send_lmp_sres_master,true
+	jam DONE_ENCRYP,mem_wait_encryption
+	fetch 1,mem_pairing_auth
+	rtn blank
+	jam LMP_AU_RAND,mem_lmo_opcode2
+send_lmp_sres_master:
+	fetch 1,mem_link_key_exists
+	rtn blank
+send_lmp_sres_startenc:
+	call check_localsm
+	nbranch send_lmp_sres_startenc_slave,true
+	fetch 1,mem_auth_enable
+	rtn blank
+	jam LMP_ENCRYPTION_MODE_REQ, mem_lmo_opcode2
+	rtn
+send_lmp_sres_startenc_slave:
+	rtnmark0 mark_slave_in_rand_accepted
+	set0 mark_slave_in_rand_accepted,mark
+	jam LMP_ENCRYPTION_MODE_REQ, mem_lmo_opcode2
+	rtn
+	
+
+	
+send_lmp_start_encryption:
+	call generate_random_number
+	call function_e3
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_random_number,contr
+	call memcpy16
+	branch send_lmp_tid
+
+send_lmp_stop_encryption_req:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_tid
+
+send_lmp_encryption_key_size_req:
+	force 2,pdata
+	call msg_send_lmp
+	force 16,pdata
+	istore 1,contw
+	store 1,mem_key_size
+	branch send_lmp_tid
+
+msg_send_lmp:
+/* FLOW is set high and LMP is indicated */
+	lshift3 pdata,pdata
+	or_into 0x07,pdata
+	store 1,mem_lmo_header_length
+	arg 17,loopcnt
+	arg mem_lmo_payload,contw
+	call clear_mem
+	arg mem_lmo_payload,contw
+	rtn
+
+send_lmpext:
+	and pdata,0x7f,rega
+	jam LMP_ESCAPE,mem_lmp_to_send
+	deposit queue
+	call msg_send_lmp
+	deposit rega
+	istore 1,contw
+	rtn
+
+send_lmp_follow:
+	fetch 1,mem_lmp_to_send
+	lshift pdata,pdata
+	fetcht 1,mem_state_map
+	isolate1 smap_lmptid,temp
+	setflag true,0,pdata
+	branch send_lmp_exit
+
+
+send_lmp_tid:
+	fetcht 1,mem_state_map
+	and_into 1,temp
+	branch send_lmp_end
+
+send_lmp_reply:
+	force 0,temp
+	branch send_lmp_end
+	
+send_lmp_request:
+	force 1,temp
+send_lmp_end:
+	fetch 1,mem_lmp_to_send
+	lshift pdata,pdata
+	setflag master,0,pdata
+	ixor temp,pdata
+send_lmp_exit:
+	store 1,mem_lmo_header_opcode
+	jam 0,mem_lmp_to_send
+	call lmo_fifo_process_lmo0empty
+	enable user
+	rtn
+
+//blank : not full 
+lmo_fifo_check:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	rtn
+
+lmo_fifo_process:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_4,mem_patch2b
+	fetch 1,mem_lmp_to_send
+	branch lmo_fifo_process_lmo0empty,blank
+	fetch 1,mem_lmo_opcode1
+	nrtn blank
+	branch lmo_fifo_process_lmo2to1
+lmo_fifo_process_lmo0empty:
+	fetch 1,mem_lmo_opcode1
+	branch lmo_fifo_process_lmo1_empty,blank
+	fetch 3,mem_lmo_opcode1
+	store 3,mem_lmp_to_send//1=>0
+	fetcht 1,mem_lmo_tid1
+	fetch 1,mem_state_map
+	set0 smap_lmptid,pdata
+	ior temp,pdata
+	store 1,mem_state_map
+	jam 0,mem_lmo_opcode1
+lmo_fifo_process_lmo2to1:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	fetch 4,mem_lmo_opcode2
+	store 4,mem_lmo_opcode1//2=>1
+	jam 0,mem_lmo_opcode2
+	rtn
+lmo_fifo_process_lmo1_empty:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	fetch 3,mem_lmo_opcode2
+	store 3,mem_lmp_to_send//2=>0	
+	fetcht 1,mem_lmo_tid2
+	fetch 1,mem_state_map
+	set0 smap_lmptid,pdata
+	ior temp,pdata
+	store 1,mem_state_map
+	jam 0,mem_lmo_opcode2
+	rtn
+	
+//input:temp
+special_tid_store:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_5,mem_patch2b
+	fetch 1,mem_state_map
+	copy pdata,regc
+	ifetch 1,temp
+	call pop_tid_follow
+	call send_lmp_follow
+	copy regc,pdata
+	store 1,mem_state_map
+	rtn
+	
+tid_reply:
+	fetcht 1,mem_state_map
+	set0 smap_lmptidinit,temp
+	storet 1,mem_state_map
+	rtn
+	
+tid_initiate:
+	fetcht 1,mem_state_map
+	set1 smap_lmptidinit,temp
+	storet 1,mem_state_map
+	rtn
+	
+	/* true if transaction from remote */
+tid_check:
+	nsetflag master,smap_lmptid,pdata //it is ok
+	fetcht 1,mem_state_map
+	ixor temp,pdata
+	isolate1 smap_lmptid,pdata
+	rtn	
+
+	/* set to remote */
+tid_set_reply:
+	fetch 1,mem_state_map
+	setflag master,smap_lmptid,pdata //it is ok
+	store 1,mem_state_map
+	rtn
+
+	/*rtn true when we lead lmp*/
+check_localsm:
+	fetch 1,mem_sp_localsm
+	compare 	LOCAL_STATEMACHINE,pdata,0x7f
+	rtn
+setlocalsm_master:
+	fetch 1,mem_sp_localsm
+	set1 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+setlocalsm_slave:
+	fetch 1,mem_sp_localsm
+	set0 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+check_localsm_master:
+	fetch 1,mem_sp_localsm
+	isolate1 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+	
+generate_random_number:
+	/* generating a 16 byte random number,storing in ape_random_number */
+	arg mem_random_number,contw
+generate_random:
+	force 16,loopcnt
+generate_random_another:
+generate_random_loop:
+	random pdata
+	istore 1,contw
+	loop generate_random_another
+	rtn
+
+generate_linkkey:
+	call function_e21
+	arg mem_link_key,rega
+	arg mem_input_store,regb
+	ifetch 8,rega					/* check if already got comb key */
+	fetcht 1,mem_state
+	nsetflag blank,state_combkey,temp
+	storet 1,mem_state
+	copy rega,contw
+	call  xor16
+	branch generate_linkkey_continue
+
+/*********************************/
+/*********lmp send*************/
+/********************************/
+
+process_conn_sm:
+	//nrtn master
+	set1 mark_ext_patch,mark
+	bpatch patch2b_6,mem_patch2b
+
+	call lmo_fifo_check
+	nrtn blank
+process_conn_sm_continue:
+	fetch 1,mem_conn_sm
+	rtn blank
+	/* state machine begins in standby */
+	//beq CONN_SM_STANDBY, host_create_conn_begin
+	//beq CONN_SM_WAIT_PAGE, host_create_conn_wait_page
+	beq CONN_SM_SEND_CONN_REQ, host_create_conn_send_conn_req
+	beq CONN_SM_WAIT_CONN_ACCEPT, host_create_conn_wait_accept
+	beq CONN_SM_SEND_FEATURES, host_create_conn_send_features
+	beq CONN_SM_WAIT_FEATURES_RES, host_create_conn_waiting
+	beq CONN_SM_SEND_SWITCH,host_create_conn_send_switch
+	beq CONN_SM_AUTH_PAIR, host_create_conn_auth_pair
+	beq CONN_SM_AUTH_PAIR_WAIT, host_create_conn_auth_pair_wait
+	beq CONN_SM_ENCRYPT, host_create_conn_encrypt
+	beq CONN_SM_ENCRYPT_WAIT, host_create_conn_encrypt_wait
+	beq CONN_SM_ENCRYPT_WAIT_CLEAR, host_create_conn_encrypt_wait_clear
+	beq CONN_SM_SEND_SETUP_COMPLETE, host_create_conn_send_setup_complete
+	beq CONN_SM_WAIT_SETUP_COMPLETE, host_create_conn_wait_setup_complete
+	beq CONN_SM_DETACH_DELAY,host_create_conn_master_detach
+	beq CONN_SM_SEND_VERSION, host_create_conn_send_version
+	beq CONN_SM_WAIT_VERSION, host_create_conn_waiting
+	beq CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION, host_creat_conn_wait_switch
+	beq CONN_SM_SEND_FEATURES_EXT,host_creat_conn_send_feat_ext
+	beq CONN_SM_WAIT_FEATURES_EXT,host_create_conn_waiting
+	beq CONN_SM_PAIRING,host_create_conn_pairing
+	beq CONN_SM_PAIRING_WAIT,host_create_conn_pairing_wait
+	beq CONN_SM_AUTH,host_create_conn_auth
+	beq CONN_SM_AUTH_WAIT,host_create_conn_auth_wait
+	beq CONN_SM_DONE,host_create_conn_done
+	beq CONN_SM_WAIT_DONE,host_create_conn_done_wait
+	jam CONN_SM_STANDBY,mem_conn_sm
+	/* sending error message to host */
+	rtn
+host_create_conn_done:
+	fetch 1,mem_lmp_conn_state		
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	rtnbit0 SENT_SETUP_COMPLETE
+	jam CONN_SM_STANDBY,mem_conn_sm
+	call host_conn_judge_encrypt
+	branch scheduler_start_upper_sm
+	
+host_conn_judge_encrypt:
+	fetch 1,mem_connection_options
+	rtnbit0 CONNECTION_ENCRYPT
+	jam CONN_SM_ENCRYPT_WAIT,mem_conn_sm
+	rtn
+
+host_create_conn_done_wait:
+	arg enpt_delay_timer,queue
+	call timer_check
+	nrtn blank
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn
+	
+host_create_conn_auth:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_AUTH,pdata
+	store 1,mem_connection_options
+	jam CONN_SM_AUTH_WAIT,mem_conn_sm
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	rtn 
+host_create_conn_auth_wait:
+	rtn
+host_create_conn_pairing:
+	fetch 1,mem_pincode_state
+	rtnne pincode_state_pincode_ready //wait for pincode
+	call host_auth
+	jam CONN_SM_PAIRING_WAIT,mem_conn_sm
+	rtn
+
+host_create_conn_pairing_wait:
+	rtn
+host_creat_conn_send_feat_ext:
+	jam CONN_SM_WAIT_FEATURES_EXT,mem_conn_sm
+	jam LMP_EXT_FEATURES_REQ,mem_lmo_opcode2
+	rtn
+host_create_conn_send_version:
+	jam CONN_SM_WAIT_VERSION,mem_conn_sm
+	jam LMP_VERSION_REQ,mem_lmo_opcode2
+	rtn 
+	
+host_creat_conn_wait_switch:
+	fetch 1,mem_switch_flag
+	rtneq SWITCH_FLAG_INIT
+	beq SWITCH_FLAG_ACCEPT,host_create_conn_switch_accept
+	arg switch_wait_timer,queue
+	call timer_check
+	nrtn blank
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	branch host_create_conn_switch
+host_create_conn_switch_accept:
+	rtn master
+	branch host_create_conn_auth_pair
+
+host_create_conn_send_features:
+	jam CONN_SM_WAIT_FEATURES_RES,mem_conn_sm
+	jam LMP_FEATURES_REQ,mem_lmo_opcode2
+	rtn 
+host_create_conn_send_switch:
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	jam CONN_SM_WAIT_CONN_ACCEPT,mem_conn_sm
+	setarg 0x1ff
+	store 2, mem_soft_timer
+	rtn
+host_create_conn_send_conn_req:
+	jam CONN_SM_WAIT_CONN_ACCEPT,mem_conn_sm
+	jam 0xff,mem_soft_timer
+	set0 mark_reconn_recieve_switch,mark
+	jam LMP_HOST_CONNECTION_REQ,mem_lmo_opcode2
+	branch init_lmp_reinit
+host_create_conn_wait_accept:
+	rtnmark1 mark_reconn_recieve_switch
+	fetch 2,mem_soft_timer
+	sub pdata,1,pdata
+	branch host_create_conn_resend,zero
+	store 2, mem_soft_timer
+	rtn
+host_create_conn_resend:
+	jam CONN_SM_SEND_SWITCH,mem_conn_sm
+	rtn
+host_create_conn_waiting:
+	/* we will exit waiting for connection request accepted, features res, or other commands to finish */
+	rtn 
+
+host_create_conn_switch:
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 SENT_SETUP_COMPLETE
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	jam CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION,mem_conn_sm
+	rtn 
+
+host_create_conn_send_setup_complete:
+	jam CONN_SM_WAIT_SETUP_COMPLETE,mem_conn_sm	
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn 
+
+host_create_conn_wait_setup_complete:
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	jam CONN_SM_STANDBY,mem_conn_sm	
+
+	rtn
+host_create_conn_wait_setup_complete_rtn:	
+	jam CONN_SM_AUTH_PAIR ,mem_conn_sm
+	rtn
+
+host_create_conn_master_detach:
+	fetch 1, mem_soft_timer
+	increase -1,pdata
+	branch host_create_conn_send_detach,blank//detach
+	store 1, mem_soft_timer
+	rtn 
+host_create_conn_send_detach:
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam LOCAL_HOST,mem_disconn_reason_send
+	jam 0,mem_conn_sm
+	rtn
+host_create_conn_auth_pair:
+	/* checking whether or not to do m/s switch */
+	fetch 1,mem_connection_options
+	bbit1 CONNECTION_SWITCH,host_create_conn_switch
+	bbit1 CONNECTION_AUTH,host_create_conn_auth_pair_true
+host_create_conn_sm_done:
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn
+host_create_conn_auth_pair_true:
+	fetch 1,mem_link_key_exists
+	branch host_create_conn_auth_pair_nokey,blank
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 SENT_SETUP_COMPLETE
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	fetch 4,mem_aurand_send_delay_time
+	arg 100,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nrtn positive
+	branch host_create_conn_auth
+
+
+
+host_create_conn_auth_pair_nokey:
+	jam CONN_SM_PAIRING,mem_conn_sm
+	jam 4,mem_pin_length
+	setarg 0x3030
+	store 2,mem_pin
+	istore 2,contw
+	jam pincode_state_pincode_ready,mem_pincode_state
+	branch host_create_conn_pairing
+
+host_create_conn_auth_pair_wait:
+	rtn
+host_create_conn_encrypt:
+	fetch 1,mem_connection_options
+	bbit1 CONNECTION_ENCRYPT,host_create_conn_encrypt_start
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn 
+
+host_create_conn_encrypt_start:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_ENCRYPT,pdata
+	store 1,mem_connection_options
+	jam LMP_ENCRYPTION_MODE_REQ,mem_lmo_opcode2  
+	rtn
+
+host_create_conn_encrypt_wait:
+	fetch 1, mem_wait_encryption
+	rtn blank
+	jam CONN_SM_STANDBY,mem_conn_sm
+	branch host_create_conn_encrypt_start 
+
+host_create_conn_encrypt_wait_clear:
+	jam CONN_SM_SEND_SETUP_COMPLETE,mem_conn_sm
+	rtn 
+
+host_auth:
+	fetch 1,mem_op
+	bbit1 op_inrand_req,remote_auth
+	call tid_initiate
+	jam LMP_IN_RAND,mem_lmo_opcode2
+	branch cmd_exit
+remote_auth:
+	fetch 1,mem_op
+	set0 op_inrand_req,pdata
+	store 1,mem_op
+	call lmp_accept_inrand
+	call tid_set_reply
+	branch cmd_exit
+
+pincode_reinit:
+	setarg 4
+	store 1,mem_pin_length
+	setarg 0x3030
+	istore 2,contw
+	istore 2,contw
+	rtn
+	
+
+
+
+
+
+
+module_init:
+	rtn wake
+	jam 0,mem_module_task
+	call le_modified_name
+	call adc_init_data
+	setarg module_process_idle
+	store 2,mem_cb_idle_process
+	setarg module_conn_process
+	store 2,mem_cb_bt_process
+	setarg module_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg module_conn_process
+	store 2,mem_cb_le_process
+	setarg module_lpm_lock
+	store 2,mem_cb_check_wakelock
+	setarg module_le_tx_update_data
+	store 2,mem_cb_update_notify_value
+	setarg module_le_tx_update_notify_continue
+	store 2,mem_cb_update_notify_continue
+	setarg module_hci_event_receive_spp_data
+	store 2,mem_cb_receive_spp_data
+	setarg module_le_receive_data
+	store 2,mem_cb_att_write
+	set1 mark_ext_patch,mark
+	bpatch patch2b_7,mem_patch2b
+	call module_lpm_uart_init
+	call module_gpio_init
+	call check_module_disabled
+	call eeprom_load_reconn_info
+	branch module_hci_event_enter_standby_mode
+
+
+module_lpm_uart_init:
+	fetch 4,mem_module_uart_rx_buffer
+	hstore 4,core_uart_rsaddr
+
+	fetch 4,mem_module_uart_tx_buffer
+	hstore 4,core_uart_tsaddr
+
+	hfetch 1,core_gpio_sel1
+	or_into 0x04,pdata
+	hstore 1,core_gpio_sel1
+	jam 0xff,mem_ucode_id_local
+	hjam 0x0,core_uart_ctrl
+
+	fetch 2,mem_module_uart_rx_buffer
+	hstore 2,core_uart_rrptr
+	fetch 2,mem_module_uart_tx_buffer
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+
+	hfetch 4,core_gpio_pu0
+	set1 7,pdata
+	hstore 4,core_gpio_pu0
+	
+	call hci_init_common
+	fetch 1,mem_module_flag
+	isolate1 MODULE_FLAG_UART_FLOW_CONTROL,pdata
+	hfetcht 1,core_uart_ctrl
+	setflag true,4,temp
+	hstoret 1,core_uart_ctrl
+	rtn
+	
+
+
+module_lpm_init:
+	call module_lpm_uart_init
+//	branch module_gpio_init
+	
+module_gpio_init:
+	//module state pin
+//	call ui_led_init	
+//	call app_led_start_blink
+	//module conn state pin
+	fetcht 1,mem_module_connect_state_gpio
+	call gpio_config_output
+	call module_set_conn_pin_low
+	
+	fetcht 1,mem_module_wake_up_gpio
+	branch gpio_config_input
+
+module_lpm_lock:
+	fetcht 1,mem_module_wake_up_gpio
+	call gpio_get_bit
+	nbranch app_put_lpm_wake_lock,true
+	branch app_get_lpm_wake_lock
+
+	
+/*************at dispatch*******************/
+module_process_idle:
+module_conn_process:
+module_app_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_0,mem_patch2c
+	call module_control_air_flow
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	branch module_process
+module_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_BB_CONNECTED,module_process_bb_conn
+	beq BT_EVT_BB_DISCONNECTED,module_process_bb_event_disconned
+	beq BT_EVT_RECONN_FAILED,module_process_reconn_fail
+	beq BT_EVT_SETUP_COMPLETE,module_process_setup_complete
+	beq BT_EVT_SPP_CONNECTED,module_process_spp_connected
+	beq BT_EVT_SPP_DISCONNECTED,module_process_spp_disconnected
+	beq BT_EVT_PINCODE_REQ,module_process_evt_pincode_req
+	beq BT_EVT_ENTER_SNIFF,module_process_enter_sniff
+	beq BT_EVT_EXIT_SNIFF,module_process_exit_sniff
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,module_process_page_time_out
+	beq BT_EVT_LE_CONNECTED,module_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,module_process_bb_even_le_disconn
+	beq BT_EVT_UNSNIFF_ACCEPT,module_process_unsniff_accept
+	beq BT_EVT_UNSNIFF_NOT_ACCEPT,module_process_unsniff_not_accept
+	beq BT_EVT_LE_PAIRING_FAIL,module_hci_event_le_pairing_fail
+	beq BT_EVT_LE_PAIRING_SUCCESS,module_hci_event_le_pairing_success
+	beq BT_EVT_LE_START_ENC,module_hci_event_start_enc
+	beq BT_EVT_LE_PAUSE_ENC,module_hci_event_pause_enc
+	beq BT_EVT_LE_TK_GENERATE,module_hci_event_le_tk
+	beq BT_EVT_BT_GKEY_GENERATE,module_hci_event_gkey_generate
+	beq BT_EVT_BT_GET_PASSKEY,module_hci_event_passkey_entry_mode
+	beq BT_EVT_BT_PAIRING_FAIL,module_hci_event_bt_pairing_fail	
+	beq BT_EVT_BT_PAIRING_SUCCESS,module_hci_event_bt_pairing_success
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,module_bb_event_timer
+	rtn
+
+	
+module_process_bb_event_disconned:
+	fetch 1,mem_flag_pairing_state
+	ncall module_hci_event_bt_pairing_fail,blank
+	call module_disconn_start
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_SPP_CONN
+	branch  module_spp_disconnected
+
+module_process_spp_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SPP_CONN,pdata
+	//set1 UI_STATE_SPP_NL_AUTO_DISCOVER,pdata
+	store 2,mem_ui_state_map
+	fetch 1,mem_module_spp_lpm_mult
+	store 1,mem_lpm_mult
+	call module_set_conn_pin_low
+	branch module_hci_event_spp_connect
+
+module_process_spp_disconnected:
+//	branch module_spp_disconnected
+module_spp_disconnected:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_SPP_CONN ,pdata
+	store 2,mem_ui_state_map
+	branch module_hci_event_spp_disconnect
+
+
+module_process_enter_sniff:
+
+module_sniff_param_check:
+	//fetch 1,mem_context
+	//rtnbit0 state_insniff
+	fetch 2,mem_context+coffset_tsniff
+	rshift pdata,pdata
+	fetcht 2,mem_sniff_param_interval
+	isub temp,null
+	nbranch module_sniff_param_check_unsniff,zero
+	branch app_lpm_mult_enable
+module_sniff_param_check_unsniff:
+	fetch 1,mem_module_task
+	rtnbit1 MOUDLE_TASK_UNSINFF
+	hfetch 2,core_uart_rxitems    //*
+	ncall module_set_unsniff_task_flag,blank    //*¼ÓƠâÁ½¾ä»°
+	branch app_bt_sniff_exit
+
+module_process_exit_sniff:
+	branch app_lpm_mult_disable
+ 	
+module_process_setup_complete:
+	branch module_conn_start
+	
+module_process_bb_even_le_disconn:
+	call module_disconn_start
+	branch module_hci_event_le_disconnect
+
+module_process_evt_pincode_req:
+	branch  app_bt_set_pincode
+	
+
+	
+module_process_unsniff_accept:
+	fetch 1,mem_module_task
+	bbit0 MOUDLE_TASK_UNSINFF,app_bt_enter_sniff
+	branch module_clear_unsniff_task_flag
+	
+module_process_unsniff_not_accept:
+	branch module_clear_unsniff_task_flag
+
+	
+module_process_le_conn:
+	call module_conn_start
+	fetch 1,mem_module_le_lpm_mult
+	store 1,mem_lpm_mult
+	branch module_hci_event_le_connect
+
+
+module_process_bb_conn:
+	jam 0,mem_flag_mode_ssp_pin
+	rtn
+
+module_process_page_time_out:
+module_process_reconn_fail:
+module_disconn_start:
+	call module_start_adv_discovery_by_command
+	branch module_set_conn_pin_high
+
+
+module_set_conn_pin_high:
+	fetcht 1,mem_module_connect_state_gpio
+	branch gpio_out_active
+
+module_conn_start:
+	call module_stop_adv_discovery
+	branch module_set_conn_pin_low
+	
+module_stop_adv_discovery:
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BT_BIT,pdata
+	call app_bt_stop_discovery,true
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BLE_BIT,pdata
+	call app_ble_stop_adv,true
+	rtn
+module_set_conn_pin_low:
+	fetcht 1,mem_module_connect_state_gpio
+	branch gpio_out_inactive
+
+module_process_with_credit:
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_DISABLE
+	branch rfcomm_send_uih_without_payload
+
+module_process:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_1,mem_patch2c
+	hfetch 1,core_uart_status
+	bbit1 uart_status_rx_fifo_empty,module_process_with_credit  //rx no data
+	call get_uart_rrptr
+	ifetch 1,contru
+	bne 0x01,module_hci_in_excp
+	hfetch 2,core_uart_rxitems
+	sub pdata,2,null
+	rtn positive
+	ifetch 1,contru
+	store 1,mem_uart_opcode
+	ifetcht 1,contru
+	copy contru,rega
+	storet 1,mem_uart_len
+	add temp,3,temp
+	hfetch 2,core_uart_rxitems
+	isub temp,temp
+	nrtn positive
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	call module_hci_cmd_control
+	fetch 1,mem_module_temp_nl_discard_packet
+	rtneq HCI_NOT_DISCARD_PACKET
+	branch module_hci_dicard_packet //discard this packet
+
+module_hci_in_excp:
+	call module_hci_event_invalid_packet
+	call wait_uarttx
+	branch module_hci_release_except
+
+
+module_hci_release_except:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_2,mem_patch2c
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	call get_uart_rrptr
+	ifetch 1,contru
+	sub pdata,0x01,null
+	ncall module_hci_dicard_bytes,zero
+	nbranch module_hci_release_except,zero
+	ifetch 1,contru
+	rtneq HCI_CMD_SPP_DATA_REQ
+	rtneq HCI_CMD_SET_CREDIT_GIVEN
+	increase -1,contru
+	call module_hci_dicard_bytes
+	branch module_hci_release_except
+
+module_hci_dicard_packet:
+	call get_uart_rrptr
+	increase 2,contru
+	ifetch 1,contru
+	iadd contru,contru
+module_hci_dicard_bytes:
+	branch uartd_rxdone
+	
+/*********************HCI CONTROL*********************/
+
+module_hci_cmd_control:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_3,mem_patch2c
+	fetch 1,mem_uart_opcode
+	beq HCI_CMD_SET_BT_ADDR_REQ,module_hci_cmd_set_bt_addr
+	beq HCI_CMD_SET_LE_ADDR_REQ,module_hci_cmd_set_le_addr
+	beq HCI_CMD_SET_VISIBILITY_REQ,module_hci_cmd_set_visibility	
+	beq HCI_CMD_SET_BT_NAME_REQ,module_hci_cmd_set_bt_name
+	beq HCI_CMD_SET_LE_NAME_REQ,module_hci_cmd_set_le_name
+	beq HCI_CMD_SPP_DATA_REQ,module_hci_cmd_receive_spp_data
+	beq HCI_CMD_LE_DATA_REQ,module_hci_cmd_receive_le_data
+	beq HCI_CMD_STATUS_IRQ,module_hci_cmd_inquire_status
+	beq HCI_CMD_SET_PAIRING_REQ,module_hci_cmd_set_pairing_mode
+	beq HCI_CMD_SET_PINCODE_REQ,module_hci_cmd_set_pincode	
+	beq HCI_CMD_SET_UARTCONTROL_REQ,module_hci_cmd_set_uart_control_mode
+	beq HCI_CMD_SET_UART_BAUD_REQ,module_hci_cmd_set_uart_baud
+	beq HCI_CMD_VERSION_REQ,module_hci_cmd_version_request
+	beq HCI_CMD_BT_DISCONNECT,module_hci_cmd_bt_disconnect
+	beq HCI_CMD_BLE_DISCONNECT,module_hci_cmd_ble_disconnect
+	beq HCI_CMD_SET_NVRAM_REQ,module_hci_cmd_set_nvram
+	beq HCI_CMD_CONFIRM_GKEY,module_hci_cmd_confirm_gkey
+	beq HCI_CMD_SET_CREDIT_GIVEN,module_hci_cmd_set_credit_given
+	beq HCI_CMD_AUTO_ADV_SCAN,module_hci_cmd_auto_adv
+	beq HCI_CMD_POWER_REQ,module_hci_cmd_power_request
+	beq HCI_CMD_POWER_SET,module_hci_cmd_power_set
+	beq HCI_CMD_PASSKEY_ENTRY,module_hci_cmd_passkey_entry
+	beq HCI_CMD_SET_GPIO,module_hci_cmd_set_gpio
+	beq HCI_CMD_READ_GPIO,module_hci_cmd_read_gpio
+	beq HCI_CMD_LE_SET_PAIRING,module_hci_cmd_le_set_pairing_mode
+	beq HCI_CMD_LE_SET_ADV_DATA,module_hci_cmd_le_set_adv_data
+	beq HCI_CMD_LE_SET_SCAN_DATA,module_hci_cmd_le_set_scan_data
+	beq HCI_CMD_LE_SEND_CONN_UPDATE_REQ,module_hci_cmd_le_send_conn_update_req
+	beq HCI_CMD_LE_START_PAIRING,module_hci_cmd_le_start_pairing
+	beq HCI_CMD_LE_CONFIRM_GKEY,module_hci_cmd_le_confirm_gkey
+	branch  module_hci_event_receive_invalid_cmd
+
+/*********************HCI COMMAND*********************/
+
+//command opcode 0x00
+module_hci_cmd_set_bt_addr:
+	fetch 1,mem_uart_len
+	bne 6,module_hci_event_receive_invalid_cmd
+	ifetch 6,contru
+	store 6,mem_lap
+	branch module_hci_event_receive_valid_cmd
+
+//command opcode 0x01
+module_hci_cmd_set_le_addr:
+	fetch 1,mem_uart_len
+	bne 6,module_hci_event_receive_invalid_cmd
+	ifetch 6,contru
+	store 6,mem_le_lap
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x02
+module_hci_cmd_set_visibility:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	copy rega,contru
+	call module_hci_event_receive_valid_cmd
+	ifetcht 1,contru
+	storet 1,mem_module_bluetooth_stauts_by_command
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BLE_CONNECTED
+	rtnbit1 UI_STATE_BT_CONNECTED
+module_start_adv_discovery_by_command:
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BT_BIT,pdata
+	nbranch moudle_start_adv_by_command,true
+	fetcht 1,mem_module_bluetooth_stauts_by_command
+	and temp,0x03,pdata
+	store 1,mem_scan_mode
+moudle_start_adv_by_command:
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BLE_BIT,pdata
+	nrtn true
+	fetcht 1,mem_module_bluetooth_stauts_by_command
+	isolate1 2,temp
+	branch app_ble_start_adv,true
+	branch app_ble_stop_adv
+
+//command opcode 0x03
+module_hci_cmd_set_bt_name:
+	fetch 1,mem_uart_len
+	sub pdata,32,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_local_name_length
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_local_name,contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x04
+module_hci_cmd_set_le_name:
+	fetch 1,mem_uart_len
+	sub pdata,0x13,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_le_name_len
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_name,contw
+	call uart_copy_rx_bytes_fast
+	call le_modified_name
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x05
+module_hci_cmd_receive_spp_data:
+	fetch 1,mem_ui_state_map
+	bbit0 UI_STATE_BT_SPP_CONN,module_hci_event_receive_invalid_cmd
+	call app_check_sniff
+	branch module_hci_cmd_spp_exut_sniff,true
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+//	call p_nl_clear_last_transmite_clock
+	fetch 1,mem_remote_credits
+	rtn blank
+	fetch 2,mem_nl_rx_len_all
+	bne 0,module_hci_cmd_pass_init_ng_rx_len_all
+	fetch 1,mem_uart_len
+	store 2,mem_nl_rx_len_all
+
+	copy rega,contru
+//	ifetch 2,contru
+//	store 2,mem_nl_rx_handle
+	copy contru,pdata
+	store 2,mem_nl_rx_data_src
+module_hci_cmd_pass_init_ng_rx_len_all:
+	call module_hci_cmd_get_current_packet_len_and_remain_len
+	branch spp_tx_rfcomm_packet
+module_hci_cmd_spp_exut_sniff:
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	branch module_exit_sniff
+
+module_hci_cmd_get_current_packet_len_and_remain_len:
+	call module_hci_cmd_get_current_patcket_len
+	fetch 2,mem_nl_rx_len_all
+	fetcht 2,mem_current_packet_length
+	isub temp,pdata
+	store 2,mem_nl_rx_len_all
+	rtn
+
+module_hci_cmd_get_current_patcket_len:
+	fetch 2,mem_nl_rx_len_all
+	arg DM_REFCOM_BUFF_LEN,temp
+	call not_greater_than
+	fetcht 2,mem_rfcomm_max_frame_size
+	call not_greater_than
+	fetcht 2,mem_pn_max_frame_size
+	call not_greater_than
+	store 2,mem_current_packet_length
+	rtn
+
+
+module_hci_command_tx_spp_tx_complete:
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	jam HCI_CMD_SPP_DATA_REQ,mem_uart_opcode
+	branch module_hci_event_receive_valid_cmd
+
+//command opcode 0x09
+module_hci_cmd_receive_le_data:
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BLE_CONNECTED
+	
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet //if packet should not be discarded, set to "NL_HCI_NOT_DISCARD_PACKET"
+	fetch 1,mem_le_continue_flag
+	nrtn blank
+ 	fetch 2,mem_module_hci_notify_len
+ 	branch module_hci_cmd_gatt_notify_start_packet,blank
+ 	fetcht 2,mem_module_hci_notify_offset
+ 	isub temp,null
+	nrtn zero   //not finish sending yet.
+	set1 mark_ext_patch,mark
+	bpatch patch2c_4,mem_patch2c
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet //discard in special way.
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,regb
+	nbranch assert,positive //debug, wont be negative
+	nbranch module_hci_cmd_gatt_notify_seperate,zero
+	call module_hci_cmd_gatt_notify_clear_len
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet //discard in special way.
+	branch module_set_le_tx_data_flag
+//	branch module_hci_event_receive_valid_cmd
+
+
+module_hci_cmd_gatt_notify_seperate:
+	fetch 1,mem_module_flag
+	rtnbit1 MODULE_FLAG_BLE_SEND_MTU23
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	fetch 2,mem_module_hci_notify_len
+	iadd contru,contru
+	copy contru,rega
+	setarg 0x0901
+	istore 2,contru
+	add regb,2,pdata
+	istore 1,contru
+	fetch 2,mem_module_hci_notify_att
+	istore 2,contru
+	copy rega,pdata
+	hstore 2,core_uart_rrptr
+module_hci_cmd_gatt_notify_clear_len:
+	setarg 0
+	store 2,mem_module_hci_notify_len//finish sending, discard this packet.
+	rtn
+	
+module_hci_cmd_gatt_notify_start_packet:
+	copy rega,contru
+	ifetch 2,contru // att handle	
+	store 2,mem_module_hci_notify_att
+	fetch 1,mem_uart_len  //length
+	increase -2,pdata
+
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	branch module_hci_event_receive_invalid_cmd,blank
+	store 2,mem_module_hci_notify_original_len
+
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_MTU23,module_hci_cmd_notify_start_packet_mtu23
+	
+	fetcht 2,mem_le_remote_mtu
+module_hci_cmd_gatt_notify_start_packet1:
+	fetch 2,mem_module_hci_notify_original_len	
+	call not_greater_than
+
+	store 2,mem_module_hci_notify_len
+	copy contru,pdata
+	store 2,mem_module_hci_notify_start
+	setarg 0
+	store 2,mem_module_hci_notify_offset
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+module_hci_cmd_notify_start_packet_mtu23:
+	arg 20,temp
+	branch module_hci_cmd_gatt_notify_start_packet1
+
+
+module_le_tx_update_data:
+	fetch 1,mem_le_notify_type
+	jam 0,mem_le_notify_type
+	nbranch module_le_send_md_notify,blank
+
+	fetch 2,mem_module_hci_notify_len
+	branch assert,blank
+	add pdata,3,temp   //1byte opcode,2byte handle
+	storet 2,mem_le_txpayload // L2CAP length
+	arg 20,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	store 2,mem_module_hci_notify_offset
+	//increase 7,pdata
+	//store 1,mem_le_txlen   //start packet baseband length
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,temp
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_MTU23,module_le_tx_no_continue
+	ncall module_le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_NOTIFICATION,mem_le_continue_type
+module_le_tx_no_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_5,mem_patch2c
+	arg 0x02,type  //LLIC:start
+	fetch 2,mem_module_hci_notify_att //att handle
+	store 2,mem_le_l2cap+1 //contw
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+module_le_send_att_notify_common:
+	//fetch 2,mem_module_hci_notify_offset // = 0
+	//iadd contru,contru
+	call uart_copy_rx_bytes_fast
+	fetch 1,mem_module_flag
+	bbit0 MODULE_FLAG_BLE_SEND_MTU23,module_le_send_not_fill_l2cap_len
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	call module_le_check_if_send_once_more
+	fetcht 1,mem_le_arq
+	fetch 1,mem_module_le_md_flag
+	branch module_le_send_non_l2cap_last,blank
+	nsetflag blank,md,temp	
+	storet 1,mem_le_arq
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam 1,mem_le_notify_type
+	fetcht 1,mem_le_arq
+	branch le_send_non_l2cap1
+
+module_le_send_non_l2cap_last:
+	call module_set_le_tx_data_flag
+	branch le_send_non_l2cap
+
+module_set_le_tx_data_flag:
+	fetch 1,mem_module_flag
+	set1 MODULE_FLAG_BLE_SEND_DATA,pdata
+	branch module_store_moule_flag
+	
+module_clear_le_tx_data_flag:
+	fetch 1,mem_module_flag
+	set0 MODULE_FLAG_BLE_SEND_DATA,pdata
+	branch module_store_moule_flag
+
+module_le_check_if_send_once_more:
+	jam 0,mem_module_le_md_flag
+	isub temp,null
+	rtn zero
+	nrtn positive
+	jam 1,mem_module_le_md_flag
+	rtn	
+
+module_le_send_att_insert_continue:
+	fetch 3,mem_le_xtype_fifo
+	nbranch module_le_send_att_insert_cont_next,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+2
+	rtn
+module_le_send_att_insert_cont_next:
+	call le_xtype_fifo_is_near_full
+	nbranch assert,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+1
+	rtn
+
+
+module_le_tx_update_notify_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_6,mem_patch2c
+	fetch 2,mem_module_hci_notify_len
+	branch assert,blank
+	fetcht 2,mem_module_hci_notify_offset
+	branch assert,blank
+	isub temp,pdata // current len
+	arg 27,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+	fetch 2,mem_module_hci_notify_offset
+	iadd contru,contru //start + offset
+	iadd loopcnt,pdata
+	store 2,mem_module_hci_notify_offset //offset += len;
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,temp // if(0 == offset - len){goto no_more_continue;}
+	ncall module_le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_NOTIFICATION,mem_le_continue_type
+	arg mem_le_txpayload,contw
+	call uart_copy_rx_bytes_fast
+	arg 1,type   // LLID : continue
+module_le_send_not_fill_l2cap_len:
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	branch le_send_non_l2cap
+
+	
+module_le_send_md_notify:
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,pdata
+	arg 20,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	add pdata,3,temp   //1byte opcode,2byte handle
+	storet 2,mem_le_txpayload // L2CAP length
+
+	fetcht 2,mem_module_hci_notify_len
+	iadd temp,pdata	
+	store 2,mem_module_hci_notify_len
+	
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+	fetch 2,mem_module_hci_notify_offset
+	iadd contru,contru  
+	iadd loopcnt,pdata
+	store 2,mem_module_hci_notify_offset  
+	arg 0x02,type  //LLIC:start
+	fetch 2,mem_module_hci_notify_att //att handle
+	store 2,mem_le_l2cap+1 //contw
+	branch module_le_send_att_notify_common
+
+//command opcode 0x0b
+module_hci_cmd_inquire_status:
+	branch module_hci_event_status_res
+
+
+//command opcode 0x0c
+module_hci_cmd_set_pairing_mode:
+	copy rega,contru
+	ifetch 1,contru
+	beq PAIRING_PINCODE,module_hci_pairing_pincode_mode
+	beq PAIRING_JUSTWORK,module_hci_pairing_just_work_mode
+	beq PAIRING_PASSKEY,module_hci_pairing_passkey
+	beq PAIRING_CONFIRM,module_hci_pairing_numeric_comparison
+	branch module_hci_event_receive_invalid_cmd
+module_hci_pairing_pincode_mode:
+	call ssp_disable
+	jam 0,mem_ssp_enable
+	branch module_hci_event_receive_valid_cmd
+module_hci_pairing_just_work_mode:
+	setarg SSP_MODE_JUST_WORK_IO_CAP_DATA
+module_hci_sspairing_mode:	
+	store 3,mem_sp_iocap_local
+	store 1,mem_ssp_mode_flag
+	call ssp_enable
+	jam 1,mem_ssp_enable
+	branch module_hci_event_receive_valid_cmd
+module_hci_pairing_passkey:
+	setarg SSP_MODE_PASSKEY_IO_CAP_DATA
+	branch module_hci_sspairing_mode
+
+module_hci_pairing_numeric_comparison:
+	setarg SSP_MODE_SSP_PIN_IO_CAP_DATA
+	branch module_hci_sspairing_mode
+
+//command opcode 0x0d
+module_hci_cmd_set_pincode:
+	fetch 1,mem_uart_len
+	sub pdata,16,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_pin_length
+	copy pdata,loopcnt
+	arg mem_pin,contw
+	call uart_copy_rx_bytes
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x0e
+module_hci_cmd_set_uart_control_mode:
+	copy rega,contru
+	ifetch 1,contru
+	hfetcht 1,core_uart_ctrl
+	nsetflag blank,4,temp
+	hstoret 1,core_uart_ctrl
+ 	branch module_hci_event_receive_valid_cmd
+
+ 	
+//command opcode 0x0f
+module_hci_cmd_set_uart_baud:
+	fetch 1,mem_uart_len
+	copy pdata,loopcnt
+	copy rega,contru
+	call string2dec_from_uart
+	setarg uart_clk
+	idiv temp
+	call wait_div_end
+	quotient pdata
+module_hci_cmd_set_uart_baud_ok:
+	store uart_baud_len,mem_baud
+	call module_hci_event_receive_valid_cmd
+	call wait_uarttx
+	branch uart_set_baud_by_mem
+
+
+//command opcode 0x10
+module_hci_cmd_version_request:
+	arg 2,rega
+	arg mem_soft_version_num,regb
+	arg 0,temp
+	branch module_hci_event_set_cmd
+module_hci_event_set_cmd_send_response:
+	store 2,mem_event_cmd_response_content
+	arg mem_event_cmd_response_content,regb
+	arg 0,temp
+	branch module_hci_event_set_cmd
+
+
+//command opcode 0x11
+module_hci_cmd_bt_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BT_CONNECTED,module_hci_event_receive_invalid_cmd
+module_hci_cmd_bt_disconnect_doing:
+	call module_hci_event_receive_valid_cmd
+	branch app_bt_disconnect
+
+	
+//command opcode 0x12
+module_hci_cmd_ble_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,module_hci_event_receive_invalid_cmd
+module_hci_cmd_ble_disconnect_doing:
+	call module_hci_event_receive_valid_cmd
+	branch app_ble_disconnect
+
+
+
+
+//command opcode 0x26
+module_hci_cmd_set_nvram:
+	fetch 1,mem_uart_len
+	copy pdata,loopcnt
+	copy rega,contru
+	fetch 2,mem_nv_data_ptr
+	icopy contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x28
+module_hci_cmd_confirm_gkey:
+	fetch 1,mem_ui_state_map
+	bbit0 UI_STATE_BT_CONNECTED,module_hci_event_receive_invalid_cmd	
+	ifetch 1,contru
+	fetcht 1,mem_flag_mode_ssp_pin
+	setflag blank,FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,temp
+	set1 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT ,temp
+	storet 1,mem_flag_mode_ssp_pin
+
+	call module_hci_event_receive_valid_cmd
+
+	fetch 1,mem_flag_mode_ssp_pin
+	bbit1 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT,module_hci_cmd_spp_number_comparison_result_is1
+	rtn
+
+dhkey_not_accept:
+	jam 0,mem_flag_mode_ssp_pin
+	jam BT_CMD_DHKEY_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+
+module_hci_cmd_spp_number_comparison_result_is1:
+	bbit1 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,number_comparison_successed
+	branch dhkey_not_accept	
+
+
+//command opcode 0x29
+module_hci_cmd_set_credit_given:
+	fetch 1,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_SPP_CONN
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_DISABLE
+	ifetch 1,contru
+	fetcht 1,mem_credit_given
+	iadd temp,temp
+	storet 1,mem_credit_given
+	rtn
+
+	
+//command opcode 0x2a
+module_hci_cmd_auto_adv:
+	arg 0x40,loopcnt
+	arg mem_le_adv_data_len,contw
+	call clear_mem
+	setarg 0
+	store 1,mem_regb
+	copy rega,contru
+module_hci_cmd_auto_adv_loop:
+	copy contru,pdata
+	store 2,mem_regc
+	call module_hci_cmd_auto_adv_adv_analys
+
+	fetch 1,mem_regb
+	fetcht 1,mem_temp
+	increase 1,temp
+	iadd temp,pdata
+	store 1,mem_regb
+
+	sub pdata,32,null
+	nbranch module_hci_cmd_auto_adv_store_scan,positive
+module_hci_cmd_auto_adv_store_adv:
+	fetcht 1,mem_le_adv_data_len
+	setarg mem_le_adv_data
+	iadd temp,pdata
+	store 2,mem_contw
+	fetcht 1,mem_temp
+	increase 1,temp
+	fetch 1,mem_le_adv_data_len
+	iadd temp,pdata
+	store 1,mem_le_adv_data_len
+	branch module_hci_cmd_auto_adv_store_common
+module_hci_cmd_auto_adv_store_scan:
+	fetcht 1,mem_le_scan_data_len
+	setarg mem_le_scan_data
+	iadd temp,pdata
+	store 2,mem_contw
+	fetcht 1,mem_temp
+	increase 1,temp
+	fetch 1,mem_le_scan_data_len
+	iadd temp,pdata
+	store 1,mem_le_scan_data_len
+module_hci_cmd_auto_adv_store_common:
+	fetch 2,mem_contw
+	copy pdata,contw
+	fetch 2,mem_regc
+	copy pdata,contru
+
+	copy temp,loopcnt
+	call uart_copy_rx_bytes_fast
+
+	fetch 1,mem_uart_len
+	fetcht 1,mem_regb
+	isub temp,null
+	nbranch  module_hci_cmd_auto_adv_loop,zero
+	jam 0x1f,mem_le_adv_data_len
+	jam 0x1f,mem_le_scan_data_len
+	branch module_hci_event_receive_valid_cmd
+
+//block of adv len in mem_temp
+module_hci_cmd_auto_adv_adv_analys:
+	ifetch 1,contru
+	store 1,mem_temp
+	ifetch 1,contru
+	store 1,mem_rega
+	rtn
+
+
+//command opcode 0x2b
+module_hci_cmd_power_request:
+	arg 0,temp
+	arg 2,rega
+	fetch 2,mem_module_vdd_quotient
+	store 2,mem_event_cmd_response_content
+	arg mem_event_cmd_response_content,regb
+	branch module_hci_event_set_cmd
+
+
+//command opcode 0x2c
+module_hci_cmd_power_set:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	ifetch 1,contru
+	store 1,mem_module_read_vdd_flag
+	setarg 0x00
+	store 2,mem_module_vdd_quotient
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x30
+module_hci_cmd_passkey_entry:
+	ifetch 4,contru
+	store 4,mem_pin
+	jam 4,mem_pin_length
+	jam 0,mem_authentication_passkey_times
+	call module_hci_event_receive_valid_cmd
+	branch authentication_passkey
+
+
+//command opcode 0x31
+module_hci_cmd_set_gpio:
+	fetch 1,mem_uart_len
+	bne 3,module_hci_event_receive_invalid_cmd
+	ifetch 1,contru
+	beq 0x00,module_set_gpio_input
+	beq 0x01,module_set_gpio_output
+	branch module_hci_event_receive_invalid_cmd
+module_set_gpio_input:
+	ifetcht 1,contru
+	ifetch 1,contru
+	nsetflag blank,7,temp
+	call gpio_config_input
+	branch module_hci_event_receive_valid_cmd
+
+module_set_gpio_output:
+	ifetcht 1,contru
+	call gpio_config_output0
+	ifetch 1,contru	
+	isolate1 0,pdata
+	call gpio_out_flag
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x32
+module_hci_cmd_read_gpio:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	ifetcht 1,contru
+	call gpio_get_bit
+	setarg 0x0
+	nsetflag true,0,pdata
+	arg 1,rega
+	branch module_hci_event_set_cmd_send_response
+
+
+//command opcode 0x33
+module_hci_cmd_le_set_pairing_mode:
+	copy rega,contru
+	ifetch 1,contru
+	store 1,mem_le_pairing_mode
+	arg 0,temp
+	isolate1  LE_PAIRING_MODE_SECURE_CONNECT_BIT,pdata
+	setflag true,0,temp 
+	storet 1,mem_le_secure_connect_enable
+	beq LE_PAIRING_MODE_NONE, module_le_set_no_pairing
+	beq LE_PAIRING_MODE_LAGACY_JUSTWORK,module_le_set_pairing_mode_lagacy_just_work
+	beq LE_PAIRING_MODE_LAGACY_PASSKEY,module_le_set_pairing_mode_lagacy_passkey
+	beq LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK,module_le_set_pairing_mode_secure_justwork
+	beq LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC,module_le_set_pairing_mode_secure_numeric
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,module_le_set_pairing_mode_secure_passkey
+	jam 0,mem_le_secure_connect_enable
+	branch module_hci_event_receive_invalid_cmd
+		
+module_le_set_pairing_mode_secure_justwork:
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	branch module_le_set_noinputnooutput
+module_le_set_pairing_mode_secure_numeric:
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	jam FLAG_IOCAP_DISPLAYYESNO,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+module_le_set_pairing_mode_secure_passkey:	
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	branch module_le_set_displayonly
+module_le_set_no_pairing:
+	jam FLAG_LE_NO_BONDING_NO_MITM,mem_le_pres_auth
+module_le_set_noinputnooutput:	
+	jam FLAG_IOCAP_NOINPUTNOOUTPUT,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+module_le_set_pairing_mode_lagacy_just_work:
+	jam FLAG_LE_BONDING_MITM,mem_le_pres_auth
+	branch module_le_set_noinputnooutput
+module_le_set_pairing_mode_lagacy_passkey:
+	jam FLAG_LE_BONDING_MITM,mem_le_pres_auth
+module_le_set_displayonly:	
+	jam FLAG_IOCAP_DISPLAYONLY,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+
+	
+//command opcode 0x34
+module_hci_cmd_le_set_adv_data:
+	fetch 1,mem_uart_len
+	sub pdata,31,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_adv_data,contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+	
+
+//command opcode 0x35
+module_hci_cmd_le_set_scan_data:
+	fetch 1,mem_uart_len
+	sub pdata,31,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_scan_data,contw
+	call uart_copy_rx_bytes_fast	
+	branch module_hci_event_receive_valid_cmd	
+
+	
+//command opcode 0x36
+module_hci_cmd_le_send_conn_update_req:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,module_hci_event_receive_invalid_cmd
+	fetch 1,mem_uart_len
+	bne 0x08,module_hci_event_receive_invalid_cmd
+	copy rega,contru
+	ifetch 8,contru
+	store 8,mem_le_interal_min
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	call  ui_ipc_send_cmd
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x38
+module_hci_cmd_le_start_pairing:
+	fetch 1,mem_le_pairing_mode
+	branch module_hci_event_receive_invalid_cmd,blank
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_NULL,module_hci_event_receive_invalid_cmd
+	fetch 1,mem_le_enc_state
+	bne FLAG_LE_ENC_NULL,module_hci_event_receive_invalid_cmd
+	call check_51cmd_le_smp_sec_req
+	branch module_hci_event_receive_valid_cmd	
+
+
+//command opcode 0x48
+module_hci_cmd_le_confirm_gkey:
+	ifetch 1,contru
+	beq 0x01,module_hci_cmd_le_confirm_gkey_fail
+	fetch 1,mem_le_secure_connect_state
+	beq LE_SC_STAT_SEND_PUBLIC_KEY,module_hci_cmd_le_confirm_gkey_ok
+	beq LE_SC_STAT_RECEIVE_DHKEY,module_hci_cmd_le_confirm_gkey_ok
+	beq LE_SC_STAT_WAIT_CONFIRM_GKEY,module_hci_cmd_le_confirm_gkey_ok
+	branch module_hci_event_receive_invalid_cmd		
+module_hci_cmd_le_confirm_gkey_ok:
+	jam FLAG_LE_SC_CONFRIM_GKEY_OK,mem_le_sc_confirm_gkey_flag
+	branch module_hci_event_receive_valid_cmd	
+	
+module_hci_cmd_le_confirm_gkey_fail:
+	call le_pairing_failed
+	branch module_hci_event_receive_valid_cmd	
+/*********************HCI EVENT*********************/
+
+module_hci_event_receive_invalid_cmd:
+	arg 1,temp
+	arg 0,rega
+	branch module_hci_event_set_cmd
+
+module_hci_event_receive_valid_cmd:
+	arg 0,temp
+	arg 0,rega
+	branch module_hci_event_set_cmd
+
+
+//event opcode 0x00
+module_hci_event_spp_connect:
+	jam  HCI_EVENT_SPP_CONN_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x02
+module_hci_event_le_connect:
+	jam  HCI_EVENT_LE_CONN_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x03
+module_hci_event_spp_disconnect:
+	jam  HCI_EVENT_SPP_DIS_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+	
+module_hci_event_le_disconnect:
+	jam  HCI_EVENT_LE_DIS_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+
+
+
+//event opcode 0x06
+//input:
+//	temp: success 0; fail 1
+//	rega:Response Content length
+//	regb:Response Content address
+module_hci_event_set_cmd:
+	fetch 1,mem_uart_opcode
+	copy pdata,regc
+	jam  HCI_EVENT_CMD_RES,mem_uart_opcode
+	setarg 2
+	iadd rega,pdata
+	call module_hci_prepare_tx
+	copy regc,pdata
+	istore 1,contwu
+	istoret 1,contwu
+	copy rega,loopcnt
+	copy regb,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+
+//event opcode 0x07
+module_hci_event_receive_spp_data:
+//	call p_nl_clear_last_transmite_clock
+	jam HCI_EVENT_SPP_DATA_REP,mem_uart_opcode
+	fetch 1,mem_current_length
+	rtn blank
+	call module_hci_prepare_tx
+	fetch 1,mem_current_length
+	copy pdata,loopcnt
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+//event opcode 0x08
+module_hci_event_receive_le_data:
+	jam HCI_EVENT_LE_DATA_REP,mem_uart_opcode
+	fetch 1,mem_module_le_rx_data_len
+	icopy loopcnt
+	increase 2,pdata
+	call module_hci_prepare_tx
+	fetch 2,mem_module_le_rx_data_handle // Attribute handle
+	istore 2,contwu
+	fetch 2,mem_module_le_rx_data_address
+	icopy contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+//event opcode 0x09
+module_hci_event_enter_standby_mode:
+	jam HCI_EVENT_STANDBY_REP,mem_uart_opcode
+module_hci_event_enter_standby_mode_len0:
+	setarg 0
+	call module_hci_prepare_tx
+	branch uartd_send
+
+
+//event opcode 0x0a
+module_hci_event_status_res:
+	jam HCI_EVENT_STATUS_RES,mem_uart_opcode
+	setarg 1
+	call module_hci_prepare_tx
+	
+	call module_hci_read_bt_status
+	
+	fetch 2,mem_ui_state_map	
+	arg UI_STATE_BT_HID_CONN,queue
+	qisolate1 pdata
+	setflag true,3,temp
+
+	arg UI_STATE_BLE_CONNECTED,queue
+	qisolate1 pdata
+	setflag true,5,temp	
+	
+	fetch 1,mem_ui_state_map
+	arg UI_STATE_BT_SPP_CONN,queue
+	qisolate1 pdata
+	setflag true,4,temp	
+	
+	istoret 1,contwu
+	branch uartd_send
+
+//	temp: bit0 3.0 inquiry;bit1 3.0 scan;bit2 ble adv;
+
+module_hci_read_bt_status:
+	arg 0,temp
+	fetch 1,mem_scan_mode
+	arg inq_scan_mode,queue
+	qisolate1 pdata
+	setflag true,0,temp
+	arg page_scan_mode,queue
+	qisolate1 pdata
+	setflag true,1,temp	
+
+	fetch 1,mem_le_adv_enable
+	arg 0,queue
+	qisolate1 pdata
+	setflag true,2,temp	
+	rtn
+
+
+
+//event opcode 0x0d
+module_hci_event_store_device:
+	jam HCI_EVENT_NVRAM_REP,mem_uart_opcode
+	fetch 1,mem_nv_data_number
+	mul32 pdata,34,pdata
+	icopy loopcnt
+	call module_hci_prepare_tx
+	fetch 2,mem_nv_data_ptr
+	icopy contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+
+//event opcode 0x0e
+module_hci_event_gkey_generate:
+	jam HCI_EVENT_GKEY,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_gkey
+	istore 4,contwu
+	branch uartd_send
+
+//event opcode 0x0f
+module_hci_event_invalid_packet:
+	jam HCI_EVENT_INVALID_PACKET,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+
+//event opcode 0x10
+module_hci_event_passkey_entry_mode:
+	jam  HCI_EVENT_GET_PASSKEY,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x11
+module_hci_event_le_tk:
+	jam HCI_EVENT_LE_TK,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_le_tk
+	istore 4,contwu
+	branch uartd_send
+
+//event opcode 0x14
+module_hci_event_le_pairing_fail:
+	arg FLAG_BLE_PAIRING_FAIL,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_le_pairing_success:
+	arg FLAG_BLE_PAIRING_SUCCESS,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_bt_pairing_fail:
+	arg FLAG_BT_PAIRING_FAIL,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_bt_pairing_success:
+	arg FLAG_BT_PAIRING_SUCCESS,rega
+module_hci_event_pairing_completed:
+	jam 0,mem_flag_mode_ssp_pin
+	jam HCI_EVENT_LE_PAIRING_STATE,mem_uart_opcode
+	setarg 2
+	call module_hci_prepare_tx
+	copy rega,pdata
+	istore 2,contwu
+	branch uartd_send
+
+//event opcode 0x15
+module_hci_event_pause_enc:
+	arg FLAG_EVENT_PAUSE_ENC,regc
+	branch module_hci_event_enc
+module_hci_event_start_enc:
+	arg FLAG_EVENT_START_ENC,regc
+module_hci_event_enc:
+	jam HCI_EVENT_LE_ENCRYPTION_STATE,mem_uart_opcode
+	setarg 1
+	call module_hci_prepare_tx
+	copy regc,pdata
+	istore 1,contwu
+	branch uartd_send
+
+//event opcode 0x1d
+module_hci_event_le_gkey:
+	jam HCI_EVENT_LE_GKEY,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_gkey
+	istore 4,contwu
+	branch uartd_send
+
+//****************************************************************//
+	//module_hci_prepare_tx
+	//function:write hci packet header
+	//input: pdata-----packet length  (1byte)
+	//input: mem_uart_opcode------opcode (1byte)
+	//output:contwu --- pointer to packet payload
+	//use reg: contwu,pdata
+//****************************************************************//
+	
+module_hci_prepare_tx:
+	jam 0x02,mem_uart_cmd
+	store 1,mem_uart_len
+	storet 8,mem_temp
+	set1 mark_ext_patch,mark
+	bpatch patch2c_7,mem_patch2c
+	call module_set_mcu_wake_pin_high_delay
+	fetcht 8,mem_temp
+	call uartd_prepare_tx
+	fetch 3,mem_uart_cmd
+	istore 3,contwu
+	rtn
+
+
+
+module_set_mcu_wake_pin_high_delay:
+	call module_check_mcu_wake_pin_high
+	rtn true
+module_set_mcu_wake_pin_h_delay:
+	call module_set_mcu_wake_pin_high
+	fetch 4,mem_module_mcu_wake_delay_us
+	rshift2 pdata,pdata
+	rtn blank
+	branch delay
+module_set_mcu_wake_pin_high:
+	//call ice_break
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_out_active
+module_check_mcu_wake_pin_high:
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_check_active
+module_set_mcu_wake_pin_low:
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_out_inactive
+
+
+delay:
+	increase -1,pdata
+	nbranch delay,blank
+	rtn
+
+
+/*********************hci command end*********************/
+
+/*********************hci ble receive data start*********************/
+
+//rega is le rx data address
+//regb is le rx data length
+//mem_le_att_handle is write handle
+module_le_receive_data:
+	copy rega,pdata
+	store 2,mem_module_le_rx_data_address
+	copy regb,pdata
+	store 1,mem_module_le_rx_data_len
+	fetch 2,mem_le_att_handle
+	fetcht 2,mem_module_data_write_handle
+	isub temp,null
+	branch module_le_receive_data_ok,zero
+	fetcht 2,mem_module_data_write_handle2
+	isub temp,null
+	nrtn zero
+module_le_receive_data_ok:	
+	store 2,mem_module_le_rx_data_handle
+	branch module_set_le_rx_data_flag
+	
+
+module_le_transmit:
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_DATA,module_hci_event_send_le_data
+module_le_transmit1:
+	fetch 1,mem_module_flag
+	rtnbit0 MODULE_FLAG_BLE_RECEIVED_DATA	//not received le data form master
+	call module_hci_event_receive_le_data
+	branch module_clear_le_rx_data_flag
+
+module_hci_event_send_le_data:
+	jam HCI_CMD_LE_DATA_REQ,mem_uart_opcode
+	call module_hci_event_receive_valid_cmd
+	call module_clear_le_tx_data_flag
+	branch module_le_transmit1
+
+
+module_set_le_rx_data_flag:
+	fetch 1,mem_module_flag
+	set1 MODULE_FLAG_BLE_RECEIVED_DATA,pdata
+module_store_moule_flag:
+	store 1,mem_module_flag
+	rtn
+
+module_clear_le_rx_data_flag:
+	fetch 1,mem_module_flag
+	set0 MODULE_FLAG_BLE_RECEIVED_DATA,pdata
+	branch module_store_moule_flag
+
+
+/*********************hci ble receive data end*********************/
+
+module_exit_sniff:
+	fetch 1,mem_module_task
+	rtnbit1 MOUDLE_TASK_UNSINFF
+	call module_set_unsniff_task_flag	
+	branch app_bt_sniff_exit
+
+
+
+
+module_bb_event_timer:
+	storet 1,mem_app_evt_timer_count
+module_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	set1 mark_ext_patch,mark
+	bpatch patch2d_0,mem_patch2d
+	call module_read_vdd_timer
+	branch module_bb_event_100ms_loop
+
+module_read_vdd_timer:
+	fetch 1,mem_module_read_vdd_flag
+	rtn blank
+	fetch 1,mem_module_read_vdd_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_module_read_vdd_count
+	nrtn blank
+	jam FLAG_MODULE_READ_VDD_COUNT,mem_module_read_vdd_count
+	call adc_set_mode
+	call vdd_calculate_by_mode
+	div pdata,0x64
+	call wait_div_end
+	quotient pdata
+	remainder temp
+	store 1,mem_module_vdd_quotient
+	storet 1,mem_module_vdd_remainder
+	rtn	
+	
+
+
+module_set_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set1 MOUDLE_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+module_clear_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set0 MOUDLE_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+module_control_air_flow:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_1,mem_patch2d
+	call check_uart_tx_buff
+	branch app_l2cap_flow_control_enable,positive
+	branch app_l2cap_flow_control_disable
+
+
+
+/*************at end*******************/
+		
+
+mouse_init:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_2,mem_patch2d
+	setarg le_mouse
+	store 2,mem_cb_le_process
+	setarg mouse_send_process
+	store 2,mem_cb_bt_process
+	setarg mouse_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg mouse_priority_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg mouse_idle
+	store 2,mem_cb_idle_process
+	setarg mouse_le_notify_update_data
+	store 2,mem_cb_update_notify_value
+	jam 0,mem_sp_flag
+	jam 0,mem_master_sp_flag
+	set1 mark_ext_patch,mark
+	bpatch patch2d_3,mem_patch2d
+	call mouse_init_common
+	rtn wake
+	call mouse_init_environment
+	call mouse_dpi_init
+	setarg mouse_before_hibernate
+	store 2,mem_cb_before_hibernate
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch mouse_check_reconn_target
+
+mouse_init_environment:
+	call app_initflag_check
+	branch mouse_load_eeprom_param,zero
+	call eeprom_store_le_local_addr
+	call eeprom_store_mouse_dpi
+	branch app_initflag_store
+mouse_load_eeprom_param:
+	call eeprom_load_reconn_info
+	call eeprom_load_le_loacal_addr
+	branch eeprom_load_mouse_dpi
+
+mouse_dpi_init:
+	jam DPI_BUTTON_STATE_UP,mem_mouse_dpi_button_state
+	branch mouse_modified_dpi
+
+mouse_idle:
+	call ui_check_paring_button
+	call mouse_check_dpi
+	branch mouse_wheel_check
+
+mouse_check_dpi:
+	fetcht 1,mem_dpi_button_gpio
+	call gpio_get_bit
+	nbranch mouse_dpi_up,true
+mouse_dpi_down:
+	fetch 1,mem_mouse_dpi_button_state
+	rtneq DPI_BUTTON_STATE_DOWN
+	jam DPI_BUTTON_STATE_DOWN,mem_mouse_dpi_button_state
+	rtn
+mouse_dpi_up:
+	fetch 1,mem_mouse_dpi_button_state
+	rtneq DPI_BUTTON_STATE_UP
+	jam DPI_BUTTON_STATE_UP,mem_mouse_dpi_button_state
+	fetch 1,mem_mouse_dpi
+	increase 1,pdata
+	and pdata,0x03,pdata
+	store 1,mem_mouse_dpi
+	branch mouse_modified_dpi
+mouse_modified_dpi:
+	setarg MOUSE_DPI_ADDRESS
+	call twspi_read
+	and pdata,0xfc,temp
+	fetch 1,mem_mouse_dpi
+	iadd temp,pdata
+	lshift8 pdata,pdata
+	add pdata,MOUSE_DPI_ADDRESS,pdata
+	call twspi_write
+	branch eeprom_store_mouse_dpi
+
+mouse_init_common:
+	call mouse_init_sunt
+	call mouse_gpio_init
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_QDECODER,pdata
+	hstore 2,core_clkoff
+	rtn
+	
+mouse_gpio_init:
+	rtn wake
+	call lpm_disable_exen_output
+	fetcht 1,mem_mwhee_a_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_mwhee_b_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_lbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_rbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_mbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_sbutton1_gpio
+	call gpio_config_input
+	fetcht 1,mem_sbutton2_gpio
+	call gpio_config_input
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_dpi_button_gpio
+	branch gpio_config_input
+
+	
+mouse_before_hibernate:
+	setarg 0xbc05
+	call twspi_write
+	jam 1,mem_lpm_current_mult
+
+mouse_process_lpm_before:
+	call mouse_wheel_check
+	arg 25,temp					// set sclk high
+	call gpio_config_output
+	hjam 0,core_gpio_sel1
+	fetcht 1,mem_mwhee_a_data_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_mwhee_b_data_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_lbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_rbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_mbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_sbutton1_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_sbutton2_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_set_wake
+	fetch 1,mem_lpm_current_mult
+	nrtn blank					// 7.5ms, no gpio wakeup
+	branch gpio_clr_wake
+	
+mouse_wheel_check:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_4,mem_patch2d
+	call mouse_t_wheel_scan
+	call mouse_wheel_scan
+	fetch 1,mem_wheel_tb_new_pinlevel
+	fetcht 1,mem_wheel_tb_old_pinlevel
+	store 1,mem_wheel_tb_old_pinlevel
+	isub temp,null
+	nbranch app_lpm_wake_auto_lock,zero
+	fetch 1,mem_mwheel_b_new_pinlevel
+	fetcht 1,mem_mwheel_b_old_pinlevel
+	store 1,mem_mwheel_b_old_pinlevel
+	isub temp,null
+	nbranch app_lpm_wake_auto_lock,zero
+	rtn
+mouse_t_wheel_scan:
+	arg 0,rega
+	fetcht 1,mem_whee_ta_data_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_whee_tb_data_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	copy rega,pdata
+	store 1,mem_wheel_tb_new_pinlevel
+	beq 0x01,p_mouse_t_wheel_scan_judge1
+	beq 0x02,p_mouse_t_wheel_scan_judge2
+	fetch 1,mem_wheel_tog
+	bbit1 7,p_mouse_t_wheel_scan_judge3
+	rtn
+
+p_mouse_t_wheel_scan_judge1:
+	fetch 1,mem_wheel_tb_old_pinlevel
+	beq 0,p_mouse_t_wheel_scan_judge11
+	beq 3,p_mouse_t_wheel_scan_judge12
+	rtn
+p_mouse_t_wheel_scan_judge2:
+	fetch 1,mem_wheel_tb_old_pinlevel
+	beq 0,p_mouse_t_wheel_scan_judge21
+	beq 3,p_mouse_t_wheel_scan_judge22
+	rtn
+p_mouse_t_wheel_scan_judge11:
+	jam 0x82,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge12:
+	jam 0x81,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge21:
+	jam 0x80,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge22:
+	jam 0x83,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge3:
+	fetch 1,mem_wheel_tog
+	set0 7,pdata
+	store 1,mem_wheel_tog
+	fetch 1,mem_wheel_tog
+	beq 0,p_mouse_t_wheel_scan_judge30
+	beq 1,p_mouse_t_wheel_scan_judge31
+	beq 2,p_mouse_t_wheel_scan_judge32
+	beq 3,p_mouse_t_wheel_scan_judge33
+	rtn
+p_mouse_t_wheel_scan_judge30:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 3,p_mouse_wheel_t_forward
+	rtn
+p_mouse_t_wheel_scan_judge31:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 0,p_mouse_wheel_t_forward
+	rtn
+p_mouse_t_wheel_scan_judge32:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 3,p_mouse_wheel_t_back
+	rtn
+p_mouse_t_wheel_scan_judge33:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 0,p_mouse_wheel_t_back
+	rtn
+p_mouse_wheel_t_forward:
+	fetch 1,mem_mouse_tz_data_count1
+	increase 1,pdata
+	store 1,mem_mouse_tz_data_count1
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_tz_data_count1
+	fetch 1,mem_mouse_tz_data
+	increase 1,pdata
+	store 1,mem_mouse_tz_data
+	rtn
+p_mouse_wheel_t_back:
+	fetch 1,mem_mouse_tz_data_count
+	increase 1,pdata
+	store 1,mem_mouse_tz_data_count
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_tz_data_count
+	fetch 1,mem_mouse_tz_data
+	increase -1,pdata
+	store 1,mem_mouse_tz_data
+	rtn
+
+
+mouse_wheel_scan:
+	arg 0,rega
+	fetcht 1,mem_mwhee_a_data_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_mwhee_b_data_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	copy rega,pdata
+	store 1,mem_mwheel_b_new_pinlevel
+	beq 0x01,mouse_wheel_scan_judge1
+	beq 0x02,mouse_wheel_scan_judge2
+	fetch 1,mem_mwheel_tog
+	bbit1 7,mouse_wheel_scan_judge3
+	rtn
+
+mouse_wheel_scan_judge1:
+	fetch 1,mem_mwheel_b_old_pinlevel
+	beq 0,mouse_wheel_scan_judge11
+	beq 3,mouse_wheel_scan_judge12
+	rtn
+mouse_wheel_scan_judge2:
+	fetch 1,mem_mwheel_b_old_pinlevel
+	beq 0,mouse_wheel_scan_judge21
+	beq 3,mouse_wheel_scan_judge22
+	rtn
+mouse_wheel_scan_judge11:
+	jam 0x82,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge12:
+	jam 0x81,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge21:
+	jam 0x80,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge22:
+	jam 0x83,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge3:
+	fetch 1,mem_mwheel_tog
+	set0 7,pdata
+	store 1,mem_mwheel_tog
+	fetch 1,mem_mwheel_tog
+	beq 0,mouse_wheel_scan_judge30
+	beq 1,mouse_wheel_scan_judge31
+	beq 2,mouse_wheel_scan_judge32
+	beq 3,mouse_wheel_scan_judge33
+	rtn
+mouse_wheel_scan_judge30:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 3,mouse_wheel_forward
+	rtn
+mouse_wheel_scan_judge31:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 0,mouse_wheel_forward
+	rtn
+mouse_wheel_scan_judge32:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 3,mouse_wheel_back
+	rtn
+mouse_wheel_scan_judge33:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 0,mouse_wheel_back
+	rtn
+mouse_wheel_forward:
+	fetch 1,mem_mouse_z_data_count1
+	increase 1,pdata
+	store 1,mem_mouse_z_data_count1
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_z_data_count1
+	fetch 1,mem_mouse_z_data
+	increase 1,pdata
+	store 1,mem_mouse_z_data
+	rtn
+mouse_wheel_back:
+	fetch 1,mem_mouse_z_data_count
+	increase 1,pdata
+	store 1,mem_mouse_z_data_count
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_z_data_count
+	fetch 1,mem_mouse_z_data
+	increase -1,pdata
+	store 1,mem_mouse_z_data
+	rtn
+	
+
+le_mouse_bb_event_write_request:
+	call app_ble_store_reconn_info
+	jam MOUSE_MODE_STATE_BLE,mem_mouse_mode_state
+	call app_lpm_mult_enable
+le_mouse_bb_event_enc_info:
+	branch app_ble_start_write
+
+	
+mouse_hid_connected:
+	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	rtn
+	
+mouse_send_process:
+	fetch 1,mem_app_handshake_flag
+	rtn blank
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	call mouse_motion
+	nrtn user
+	call mouse_no_data_timer_init
+mouse_send_data:
+	arg 9,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	fetch 7,mem_mouse_key
+	istore 7,contw
+	rtn
+bt_send_empty_data:
+	setarg 0
+	store 6,mem_mouse_x
+	store 1,mem_mouse_tz
+	branch mouse_send_data
+p_le_send_empty_data:
+	setarg 0
+	store 6,mem_mouse_x
+	store 1,mem_mouse_tz
+	branch mouse_fill_data_le
+
+mouse_no_data_timer_init:
+	fetch 2,mem_mouse_no_data_timeout
+	store 2,mem_mouse_no_data_timer
+	rtn
+
+	
+mouse_le_notify_update_data:
+	fetcht 2, mem_le_notify_handle
+	call le_att_get_handle_ptr 
+	ifetch 1,contr
+	store 1,mem_le_notify_len
+	arg mem_le_l2cap,contw
+	increase 1,contw
+	fetcht 2,mem_le_notify_handle
+	istoret 2,contw
+	call le_att_get_handle_ptr 
+	ifetch 1,contr
+	icopy loopcnt
+	call memcpy
+	fetcht 1,mem_le_notify_len
+	increase 7,temp
+	branch le_send_packet
+
+	
+mouse_fill_data_le:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_5,mem_patch2d
+	fetcht 2, mem_le_notify_handle
+	call le_att_get_handle_ptr
+	add contr,1,contw
+mouse_fill_data:
+	fetch 7,mem_mouse_key
+	istore 7,contw
+	rtn
+
+mouse_motion:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_6,mem_patch2d
+	disable user
+	setarg 0
+	store 6,mem_mouse_x
+	call sensor_motion
+	call mouse_sensor_sdio_low
+	call mouse_zwheel
+	call mouse_t_zwheel
+	branch mouse_key
+	
+sensor_motion:
+	fetch 1,mem_mouse_move_flag
+	call mouse_read_sensor_common,blank
+	jam 1,mem_mouse_move_flag
+	disable user
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_get_bit
+	nrtn true
+	setarg 0
+	call twspi_read
+	//bne P3065_ID,twspi_reset
+	setarg 2
+	call twspi_read
+	rtnbit0 7
+	setarg 3
+	call twspi_read
+	call extsign
+	store 2,mem_mouse_x
+	setarg 4
+	call twspi_read
+	call extsign
+	sub pdata,0,pdata
+	store 2,mem_mouse_y
+	fetch 4,mem_mouse_x
+	enable user
+	rtn
+
+mouse_read_sensor3610_data:
+	call spi_ncs_enable
+	call mouse_read_sensor_common
+	arg 5,pdata
+	call twspi_read
+	store 1,mem_mouse_xy_h
+	arg 7,pdata
+	call twspi_read
+	store 1,mem_sensor_shutter_hi
+	arg 8,pdata
+	call twspi_read
+	store 1,mem_sensor_shutter_lo
+	branch spi_ncs_disable
+
+
+mouse_3610_smart_enable:
+	fetch 1,mem_sensor_shutter_hi
+	rtnne 0
+	fetch 1,mem_sensor_shutter_lo
+	sub pdata,45,null
+	rtn positive
+	jam 0,mem_sensor_smart_flag
+	setarg 0xba41
+	call sensor_write
+	setarg 0x0032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+mouse_3610_smart_disable:
+	fetch 1,mem_sensor_shutter_hi
+	rtnne 0
+	fetch 1,mem_sensor_shutter_lo
+	sub pdata,45,null
+	nrtn positive
+	jam 1,mem_sensor_smart_flag
+	setarg 0xba41
+	call sensor_write
+	setarg 0x8032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+
+
+
+mouse_read_sensor_common:
+	arg 3,pdata
+	call twspi_read
+	store 2,mem_mouse_x
+	arg 4,pdata
+	call twspi_read
+	store 2,mem_mouse_y
+	rtn
+
+mouse_zwheel:
+	fetch 1,mem_mouse_z_data
+	rtn blank	
+	store 1,mem_mouse_z
+	jam 0,mem_mouse_z_data
+	enable user
+	rtn
+mouse_t_zwheel:
+	fetch 1,mem_mouse_tz_data
+	rtn blank	
+	store 1,mem_mouse_tz
+	jam 0,mem_mouse_tz_data
+	enable user
+	rtn
+mouse_check_key_gpio:
+	arg 0,rega
+	fetcht 1,mem_lbutton_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_rbutton_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	fetcht 1,mem_mbutton_gpio
+	call gpio_get_bit
+	setflag true,2,rega
+	fetcht 1,mem_sbutton1_gpio
+	call gpio_get_bit
+	setflag true,3,rega
+	fetcht 1,mem_sbutton2_gpio
+	call gpio_get_bit
+	setflag true,4,rega
+	copy rega,pdata
+	rtn
+mouse_key:
+	call mouse_check_key_gpio
+	fetcht 1,mem_mouse_key
+	store 1,mem_mouse_key	
+	ixor temp,pdata
+	sub pdata,0,null
+	rtn zero
+	enable user
+	rtn
+	
+
+
+	/* sdio high will cost extra 9mA */
+mouse_sensor_sdio_low:
+	arg 26,temp
+	call gpio_get_bit
+	rtn true
+	setarg 0x0a
+	call twspi_read
+	nop 1000
+	branch mouse_sensor_sdio_low
+
+mouse_init_sunt:
+	call spid_init
+	rtn wake
+mouse_init_p3204:	
+	setarg 0
+	call twspi_read
+	store 1,mem_sensor_id
+	beq P3204_ID,mouse_init_p3204_cont
+	//beq P3610_ID,mouse_init_p3610
+	beq P3065_ID,mouse_init_p3204_cont
+	call twspi_reset
+	nop 1000
+	branch mouse_init_p3204
+mouse_init_p3204_cont:
+	setarg 0x8006
+	call twspi_write
+	nop 1000
+	rtn
+
+mouse_init_sensor_reset:
+	fetcht 1,mem_sensor_reset_gpio
+	call gpio_out_active
+	call delay_10ms
+	fetcht 1,mem_sensor_reset_gpio
+	call gpio_out_inactive
+	branch delay_10ms
+
+mouse_init_p3610:
+	setarg 0xba41
+	call sensor_write
+	setarg 0x0d11
+	call sensor_write
+	setarg 0x041b
+	call sensor_write
+	setarg 0x041c
+	call sensor_write
+	setarg 0x0f1d
+	call sensor_write
+	setarg 0x0032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+	
+	
+//input-rega
+set_sensor_reg:
+	setarg 0xba41
+	call sensor_write
+	nop 4000
+	setarg 0xff7f
+	call sensor_write
+	copy rega,pdata
+	call sensor_write
+	setarg 0x007f
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+
+extsign:
+	rtnbit0 7
+	arg 0xff00,temp
+	ior temp,pdata
+	rtn
+
+extsign_bit3:
+	rtnbit0 3
+	arg 0xf0,temp
+	ior temp,pdata
+	rtn
+
+le_mouse:
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	fetch 1,mem_mouse_le_notify_handle
+	store 1,mem_le_notify_handle
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	rtnbit0 0
+	fetch 1,mem_le_switch_send_data
+	rtnbit0 0
+	call mouse_motion
+	nrtn user
+	call mouse_no_data_timer_init
+	fetch 1,mem_mouse_le_notify_handle
+	store 1,mem_le_notify_handle
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch mouse_fill_data_le
+
+mouse_priority_bb_event:	
+	copy regc,pdata
+	beq BT_EVT_LE_CONNECTED,le_mouse_bb_event_connected
+	beq BT_EVT_BB_CONNECTED,mouse_stop_discovery
+	beq BT_EVT_LE_DISCONNECTED,mouse_bb_disconnected
+	beq BT_EVT_BB_DISCONNECTED,mouse_bb_disconnected
+	beq BT_EVT_SETUP_COMPLETE,mouse_bt_event_setup_complete
+	beq BT_EVT_BUTTON_LONG_PRESSED,mouse_bb_event_discovery_btn
+	beq BT_EVT_HID_HANDSHAKE,mouse_bt_hid_handshake
+	beq BT_EVT_HID_CONNECTED,mouse_bt_hid_connected
+	beq BT_EVT_LE_WRITE_REQUEST,le_mouse_bb_event_write_request
+	beq BT_EVT_LE_ENC_INFO,le_mouse_bb_event_enc_info
+	beq BT_EVT_RECONN_FAILED,mouse_bb_event_reconn_failed
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,mouse_bb_event_reconn_failed
+	beq BT_EVT_PINCODE_REQ,mouse_bb_event_pincode
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,mouse_bb_event_timer
+	rtn
+
+le_mouse_bb_event_connected:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set0 APP_DISC_BY_BUTTON ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	setarg 0
+	store 2,mem_mouse_direct_timer
+	call mouse_no_data_timer_init
+	branch mouse_stop_discovery
+
+mouse_bb_event_pincode:
+	call pincode_reinit
+	branch app_bt_set_pincode
+	
+mouse_bb_event_reconn_failed:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch app_bb_hibernate
+
+	
+mouse_bt_hid_connected:
+	call mouse_hid_connected
+	rtn
+mouse_bt_event_setup_complete:
+	rtn
+
+mouse_bb_disconnected:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_7,mem_patch2d
+	call mouse_bb_discon_clear_stack
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	bbit1 APP_DISC_BLE,mouse4_0_event_bb_disconn
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	bbit1 APP_DISC_AFTER_PAIRING,mouse_event_light_state_pairing
+	bbit1 APP_DISC_AFTER_RECONN,mouse_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,mouse_event_light_state_hibernate
+	branch mouse_start_discovery
+mouse_bb_discon_clear_stack:
+	setarg 0
+	store 8,mem_whee_ta_data_gpio
+	istore 8,contw
+	jam 0,mem_mouse_send_blank_timer
+	jam 0,mem_mouse_move_flag
+	jam APP_HANDSHAKE_NULL,mem_app_handshake_flag
+	jam 0,mem_ltk_exists
+	jam 0,mem_mouse_mode_state
+	jam 0,mem_reconnect_timeout
+	rtn
+
+mouse_event_light_state_pairing:
+	bbit1 APP_DISC_AFTER_HANDSHAKE,mouse_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,mouse_event_light_state_hibernate
+	branch mouse_start_discovery
+mouse_event_light_state_hibernate:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch app_bb_hibernate
+
+mouse4_0_event_bb_disconn:
+	call le_clean_att_list_handle_enable
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	branch app_bb_hibernate
+
+mouse_bb_event_timer:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_0,mem_patch2e
+	storet 1,mem_app_evt_timer_count
+mouse_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call mouse_check_hid_handshake_timer
+	call mouse_check_discovery_timeout_timer
+	call mouse_check_direct_timeout_timer
+	call mouse_check_no_data_timeout_timer
+	call mouse_check_mouse_state_timer
+	branch mouse_bb_event_100ms_loop
+
+mouse_check_mouse_state_timer:
+	fetch 1,mem_mouse_statue_led_timer
+	rtn blank
+	pincrease -1
+	store 1,mem_mouse_statue_led_timer
+	nrtn blank
+	branch mouse_devce_led_off
+	
+
+mouse_check_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+	branch mouse_bt_hid_handshake
+
+mouse_check_discovery_timeout_timer:	
+	fetch 2,mem_mouse_discovery_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_discovery_timer
+	nrtn blank
+	call mouse_stop_discovery
+	branch app_enter_hibernate
+
+mouse_check_direct_timeout_timer:
+	fetch 2,mem_mouse_direct_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_direct_timer
+	nrtn blank
+	call app_ble_stop_direct_adv
+	branch app_enter_hibernate
+
+mouse_check_blank_data_timeout_timer:
+	fetch 2,mem_mouse_blank_data_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_blank_data_timer
+	nrtn blank
+	jam 0,mem_mouse_send_blank_timer
+	rtn
+
+mouse_check_no_data_timeout_timer:
+	fetch 2,mem_mouse_no_data_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_no_data_timer
+	nrtn blank
+	branch mouse_disconnect
+	
+mouse_bb_event_discovery_btn:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_1,mem_patch2e
+	jam 0,mem_mouse_send_blank_timer
+	jam 1,mem_reconnect_timeout
+	setarg 0
+	store 2,mem_mouse_direct_timer
+	call mouse_disconnect
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call mouse4_0_bb_event_discovery_btn,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call mouse3_0_bb_event_discovery_btn,true
+	call app_lpm_mult_disable
+	branch mouse_start_discovery
+
+
+
+mouse3_0_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch app_bt_start_discovery_short,blank	
+	branch app_bt_start_reconnect
+	
+mouse4_0_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch mouse4_0_no_reconn_target,blank
+	fetch 2,mem_mouse_direct_timeout
+	store 2,mem_mouse_direct_timer
+	call app_lpm_mult_enable
+	branch app_ble_start_direct_adv
+mouse4_0_no_reconn_target:
+	call app_led_start_blink
+	branch app_ble_start_adv
+
+mouse3_0_bb_event_discovery_btn:
+	fetch 2,mem_ui_state_map
+	isolate1 UI_STATE_BT_RECONNECT,pdata
+	call app_bt_reconnect_cancel,true
+	rtn
+mouse4_0_bb_event_discovery_btn:
+	call le_clean_att_list_handle_enable
+	rtn
+	
+mouse_bt_hid_handshake:
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+	jam MOUSE_MODE_STATE_BT,mem_mouse_mode_state
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	store 1,mem_hid_handshake_timer_count
+	branch app_bt_enter_sniff
+
+mouse_check_reconn_target:
+	fetch 1,mem_xrecord_mode
+	beq REC_3_MODE,mouse3_0_check_reconn_target
+	beq REC_4_MODE,mouse4_0_check_reconn_target	
+	branch mouse_start_discovery
+
+mouse_start_discovery:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_2,mem_patch2e
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_ADV,mouse_start_discovery_norandom
+	random pdata					//random ble addr
+	store 1,mem_le_lap+1
+mouse_start_discovery_norandom:
+	call app_lpm_mult_disable
+	fetch 2,mem_discovery_timeout
+	store 2,mem_mouse_discovery_timer
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call app_ble_start_adv,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call app_bt_start_discovery,true
+	branch app_led_start_blink
+
+mouse_stop_discovery:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_3,mem_patch2e
+	setarg 0
+	store 2,mem_mouse_discovery_timer
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call app_ble_stop_adv,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call app_bt_stop_discovery,true
+	branch app_led_stop_blink
+
+mouse_disconnect:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_4,mem_patch2e
+	setarg 0
+	store 2,mem_mouse_no_data_timer
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,app_bt_disconnect
+	rtn
+
+eeprom_store_mouse_dpi:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_5,mem_patch2e
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_write_eep_data
+
+eeprom_load_mouse_dpi:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_6,mem_patch2e
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_read_eep_data
+
+//mosue up led
+
+mouse_check_mouse_statue:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_7,mem_patch2e
+	fetch 1,mem_sensor_squal_reg
+	call sensor_read
+	beq 0x0,mouse_statue_up
+	rtn
+	//branch p_mouse_devce_led_off
+mouse_devce_led_off:
+	fetcht 1,mem_device1_led_gpio
+	call gpio_out_inactive
+	fetcht 1,mem_device2_led_gpio
+	call gpio_out_inactive
+	fetcht 1,mem_device3_led_gpio
+	branch gpio_out_inactive
+mouse_statue_up:
+	fetch 1,mem_reconn_mode
+	rtn blank
+	jam 0,mem_reconn_mode
+	jam 60,mem_mouse_statue_led_timer         // led on 6s
+	call mouse_devce_led_off
+	fetch 1,mem_device_flag
+	beq 0x01,mouse_device1_led_on  	//device_1
+	beq 0x02,mouse_device2_led_on		//device_2
+	beq 0x03,mouse_device3_led_on		//device_3
+	rtn
+mouse_device1_led_on:
+	fetcht 1,mem_device1_led_gpio
+	branch gpio_out_active
+mouse_device2_led_on:
+	fetcht 1,mem_device2_led_gpio
+	branch gpio_out_active
+mouse_device3_led_on:
+	fetcht 1,mem_device3_led_gpio
+	branch gpio_out_active
+	
+
+
+
+
+
+
+/* ===================== two wire SPI gpio ======================= */
+
+twspi_reset:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_0,mem_patch2f
+	hfetch 1,core_gpio_oe3
+	arg 0x06,temp
+	ior temp,pdata
+	hstore 1,core_gpio_oe3
+	hfetch 1,core_gpio_out3
+	ior temp,pdata
+	hstore 1,core_gpio_out3
+	hjam 0,core_gpio_sel1	
+	hfetch 1,core_gpio_out3
+	set0 1,pdata
+	set0 2,pdata
+	hstore 1,core_gpio_out3	
+	nop 30
+	hjam 1,core_gpio_sel1	
+	rtn
+	
+// input read reg number: pdata 
+//output reg data: pdata
+sensor_read:
+	copy pdata,regb
+	call spi_ncs_enable
+	nop 100
+	copy regb,pdata
+	call twspi_read
+	copy pdata,regb
+	call spi_ncs_disable
+	nop 100
+	copy regb,pdata
+	rtn
+// input write reg number: pdata 
+sensor_write:
+	copy pdata,regb
+	call spi_ncs_enable
+	nop 100
+	copy regb,pdata
+	call twspi_write
+	call spi_ncs_disable
+	nop 100
+	rtn
+//spi gpio init .
+//0xff :disable spi ncs gpio init
+spi_ncs_gpio_init:
+	fetch 1,mem_spi_ncs_gpio
+	rtneq 0xff
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_config_output
+
+//nsc gpio ouput low
+spi_ncs_enable:
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_out_active
+
+//ncs gpio output high
+spi_ncs_disable:
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_out_inactive
+
+// input write reg number: regb 
+twspi_write:
+	branch spid_write_reg
+	
+// input read reg number: regb 
+//output reg data: pdata
+twspi_read:
+	branch spid_read_reg
+
+
+
+/* ===================== code loading ======================= */
+
+
+read_function_aes:
+	nbranch read_function,user
+	hfetch 1,core_gpio_key2
+	or_into 0x20,pdata   	// enable aes 
+	hstore 1,core_gpio_key2
+read_function:
+	copy temp,null
+	branch read_fuction_zero,zero
+	copy regc,pc
+read_fuction_zero:
+	isolate0 0,null
+	branch set_ucode_status
+	
+/* return temp = block length */
+get_block_header:
+	force 4,temp
+get_block_header0:
+	arg mem_ucode_buf,rega
+	hfetch 1,core_gpio_key2
+	and_into 0xdf,pdata   	// disable aes for header
+	hstore 1,core_gpio_key2
+	call read_function
+	arg 0x55aa,rega
+	fetch 2,mem_ucode_buf
+	ifetcht 2,contr
+	isub rega,null
+	rtn	
+
+read_first_block:
+	arg 2,temp
+	arg mem_ucode_ptr,rega
+	call read_function
+	fetch 2,mem_ucode_ptr
+	store 2,mem_addr_mi
+	call get_iv,user
+	rtn
+	
+get_iv:
+	arg 16,temp
+	arg mem_ucode_keybuf,rega
+	hfetch 1,core_gpio_key2
+	and_into 0xdf,pdata   // disable aes for iv
+	hstore 1,core_gpio_key2
+	call read_function
+	arg mem_ucode_keybuf,contr
+	arg 16,loopcnt
+	call aes_load_data
+	call aes_init
+	call aes_clear_data
+	branch do_aes_cbc					/* generate first IV */
+
+load_storage:
+	disable match
+	call get_block_header
+	nrtn zero
+	enable match
+	hjam 0x80, core_ucode_ctrl
+	hjam 0,core_ucode_hi
+	hjam 0,core_ucode_low
+	arg core_ucode_data,rega
+	call read_function_aes
+	hjam 0x0, core_ucode_ctrl
+	call get_block_header
+	nrtn zero
+	force 0,pdata
+	hstore 2,core_docd_paddr
+	arg core_docd_pdata,rega
+	call read_function_aes
+load_storage_loop:
+	arg 6,temp
+	call get_block_header0
+	nrtn zero
+	ifetch 2,contr
+	iforce rega
+	call read_function
+	branch load_storage_loop
+
+
+
+	
+	/* only load memory data from eeprom */
+reload_eeprom:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_1,mem_patch2f
+	call clean_mem
+	setarg 0x1000
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	arg 2,loopcnt
+reload_eeprom_loop:
+	call get_block_header
+	nrtn zero
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	loop reload_eeprom_loop
+	branch load_storage_loop
+	
+loadcode:
+	hjam 0x25,core_clkoff			// disable debug uart
+	hjam 5,core_docd_ctrl
+	call clean_mem
+	set1 mark_ext_patch,mark
+	bpatch patch2f_2,mem_patch2f
+loadcode_lpm:
+	disable user
+	call otp_enable_chgpump
+	setarg otp_ucode_flag
+	arg mem_otp_ucode_flag,rega
+	arg 2,temp
+	call otpd_read_data
+	fetch 2,mem_otp_ucode_flag
+	bbit0 otp_uflag_aes, loadcode_otp
+	setarg otp_ucode_aeskey
+	arg mem_ucode_keybuf,rega
+	arg 16,temp
+	call otpd_read_data
+	hjam lock_otp,core_misc_ctrl	// disable further read/write of key
+	arg mem_ucode_keybuf,contr
+	call load_key
+	enable user					// set user for aes
+loadcode_otp:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_3,mem_patch2f
+	fetch 2,mem_otp_ucode_flag
+	byteswap pdata,pdata
+	arg 0x7ff,temp
+	iand temp,pdata
+	branch loadcode_spi, zero
+	call otp_set_addr
+	arg otpd_read_code,regc
+	call get_iv,user
+	call load_storage
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_otp,true	// crc error, try again
+loadcode_spi:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_4,mem_patch2f
+	call otp_disable_chgpump
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_flash, loadcode_iic
+	setarg 0x0
+	store 3,mem_addr_hi
+	call spid_init_flash
+	arg spid_read_flash,regc
+	call read_first_block
+	call load_storage
+	nbranch loadcode_iic,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_spi,true	// crc error, try again
+loadcode_iic:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_5,mem_patch2f
+	call clear_eeprom_size_2k
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_eep,loadcode_hci
+	call loadcode_iic_by_eeprom
+	nbranch loadcode_iic_eeprom_2k,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_iic,true	// crc error, try again
+	branch loadcode_hci
+loadcode_iic_eeprom_2k:
+	call set_eeprom_size_2k
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_eep,loadcode_hci
+	call loadcode_iic_by_eeprom
+	nbranch loadcode_hci,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_iic_eeprom_2k,true	// crc error, try again
+loadcode_hci:
+	force regidx_key,regext_index
+	call aes_clear
+	hjam 0x21,core_clkoff			// enable debug uart
+	fetch 1,mem_otp_ucode_flag
+	rtnbit0 otp_uflag_hci
+	call hci_init
+loadcode_hci_loop:
+	call hci_rx_packet
+	branch loadcode_hci_loop
+
+
+loadcode_iic_by_eeprom:
+	setarg 0x0
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	call iicd_init_12m
+	call read_first_block
+	branch load_storage
+
+
+
+/* true flag is set into status */
+set_ucode_status:
+	fetch 1,mem_ucode_status
+	lshift pdata,pdata
+	setflag true,0,pdata
+	isolate0 15,rega
+	rtn true
+	store 1,mem_ucode_status
+	rtn
+
+	/* queue is bit position of hw done status */
+decrypt_code:
+	hfetch 1,core_gpio_key2
+	rtnbit0 5
+	branch decrypt_code_skip	/* skip to key generation at first for speed */
+decrypt_code_loop:
+	hfetch 1,core_dma_status
+	qisolate1 pdata
+	rtn true
+decrypt_code_skip:
+	hfetch 1,core_misc_status
+	bbit0 1,decrypt_code_loop
+	call do_aes_cbc
+	branch decrypt_code_loop
+
+
+
+load_ucode:
+	fetch 2,mem_patch_ptr
+	rtn blank
+	hjam 0x80, core_ucode_ctrl
+	hjam 0,core_ucode_hi
+	hjam 0,core_ucode_low
+	fetcht 2,mem_patch_len
+	lshift2 temp,loopcnt
+	iforce contr
+load_ucode_loop:
+	ifetch 1,contr
+	hstore 1,core_ucode_data
+	loop load_ucode_loop
+	hjam 0x0, core_ucode_ctrl
+	rtn
+
+
+/* ===================== SPI dma ======================= */
+
+spid_init:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_6,mem_patch2f
+	fetch 1,mem_spi_init_clk
+	hstore 1,core_spid_ctrl	// A7530 should at least 34, or write fail
+	fetch 1,mem_spi_init_delay_time
+	hstore 1,core_spid_delay	// 4us delay
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	setarg mem_spid_rbuf
+	hstore 2,core_spid_rxaddr
+	hfetch 1,core_gpio_sel1
+	set1 0,pdata
+	set0 1,pdata
+	hstore 1,core_gpio_sel1
+	rtn
+
+spid_reset:
+	hfetch 1,core_spid_ctrl
+	set1 7,pdata
+	hstore 1,core_spid_ctrl
+	set0 7,pdata
+	hstore 1,core_spid_ctrl
+	rtn
+
+
+/* pdata 6:0 is reg address, 15:8 is data to write */
+spid_write_reg:
+	set1 7,pdata
+	store 2,mem_spid_tbuf
+	set1 mark_ext_patch,mark
+	bpatch patch2f_7,mem_patch2f
+	hjam 2,core_spid_txlen
+	hjam 0,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+
+/* pdata 6:0 is reg address */
+spid_read_reg:
+	force 1,temp
+/* pdata 6:0 is burst reg address, temp is bytes to read */
+spid_read_regs:
+//	nop 100
+	store 1,mem_spid_tbuf
+	set1 mark_ext_patch,mark
+	bpatch patch30_0,mem_patch30
+	hjam 1,core_spid_txlen
+	hstoret 2,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	call wait_spid_done
+	fetch 1,mem_spid_rbuf
+	rtn
+
+wait_spid_done:
+	fetch 2,mem_afh_error_total
+	increase 1,pdata
+	store 2,mem_afh_error_total
+	hfetch 1,core_dma_status
+	bbit0 spid_done,wait_spid_done
+	rtn
+
+spid_init_flash:
+	hjam 0x40,core_spid_ctrl
+	hjam 0x0,core_spid_delay
+	hfetch 1,core_gpio_sel1
+	set0 0,pdata
+	set1 1,pdata
+	hstore 1,core_gpio_sel1
+	setarg 0
+	store 4,mem_spid_tbuf
+	rtn
+
+spid_unlock_flash:
+	setarg 0
+	hstore 2,core_spid_rxlen
+	setarg 1
+	hstore 1,core_spid_txlen
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	jam 6,mem_spid_tbuf
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+
+
+	/* pdata is flash address, rega pointers to txdata(4 ahead bytes should be left), temp is length */
+spid_write_flash:
+	increase 4,temp
+	hstoret 2,core_spid_txlen
+	increase -4,rega
+	arg 2,temp
+	istoret 1,rega
+	rshift16 pdata,temp
+	istoret 1,contw
+	rshift8 pdata,temp
+	istoret 1,contw
+	istore 1,contw
+	deposit rega
+	hstore 2,core_spid_txaddr
+	setarg 0
+	hstore 2,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+	
+
+/* temp is length, rega pointers to buf */
+spid_read_flash:
+	hstoret 2,core_spid_rxlen
+	setarg 4
+	hstore 2,core_spid_txlen
+	jam 3,mem_spid_tbuf
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	deposit rega
+	hstore 2,core_spid_rxaddr
+	hfetch 1,core_spid_ctrl
+	isolate0 15,rega
+	setflag true,6,pdata
+	hstore 1,core_spid_ctrl
+	hjam spid_start,core_misc_ctrl
+spi_read_flash_wait:
+	hfetch 1,core_dma_status
+	bbit1 7,spi_read_flash_wait			// waiting for spid write
+	arg spid_done,queue
+	call decrypt_code
+	call wait_spid_done
+	isolate1 spid_crcok,pdata
+	call set_ucode_status
+	fetch 1,mem_addr_hi
+	lshift16 pdata,regb
+	fetch 1,mem_addr_mi
+	lshift8 pdata,pdata
+	ior regb,regb
+	fetch 1,mem_addr_lo
+	ior regb,pdata
+	iadd temp,pdata
+	store 1,mem_addr_lo
+	rshift8 pdata,pdata
+	store 1,mem_addr_mi
+	rshift8 pdata,pdata
+	store 1,mem_addr_hi
+	rtn
+
+
+/* ===================== I2C dma ======================= */
+
+/*iicd_init_5m:
+	hjam 0xa,core_clksel			// use 5M rc clock to load eeprom
+	hjam 2,core_iicd_scl_low
+ 	hjam 3,core_iicd_scl_high
+	hjam 3,core_iicd_start_setup
+	hjam 3,core_iicd_start_hold
+	hjam 3,core_iicd_stop_setup
+	hjam 2,core_iicd_data_setup
+	rtn
+*/
+iicd_init_12m:
+	hjam 5,core_iicd_scl_low
+ 	hjam 7,core_iicd_scl_high
+	hjam 7,core_iicd_start_setup
+	hjam 7,core_iicd_start_hold
+	hjam 7,core_iicd_stop_setup
+	hjam 5,core_iicd_data_setup
+	rtn
+
+
+
+wait_iicd_done:
+	hfetch 1,core_dma_status
+	bbit0 iicd_done,wait_iicd_done
+	rtn
+
+/*
+pdata is tx length
+rega is points to tx buffer
+regb is points to rx buffer
+temp is rx length
+*/
+iicd_read_data:
+	hstore 2,core_iicd_txlen
+	deposit rega
+	hstore 2,core_iicd_txaddr	
+	deposit regb
+	hstore 2,core_iicd_rxaddr
+	deposit temp	
+	hstore 2,core_iicd_rxlen
+	arg 1,temp
+	nsetflag blank,1,temp
+	hstore 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	branch wait_iicd_done
+
+
+set_eeprom_size_2k:
+	set1 mark_eeprom_size,mark
+	jam 0x08,mem_eeprom_block_size
+	rtn
+
+clear_eeprom_size_2k:
+	set0 mark_eeprom_size,mark
+	jam 0x20,mem_eeprom_block_size
+	rtn
+
+
+iicd_read_eep_data_size_2k:
+ 	fetch 1,mem_eeprom_base
+	iadd regb,pdata
+	store 1,mem_addr_mi
+	branch iicd_read_eep_size_2k
+
+iicd_read_eep_size_2k_lcadcode:
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	store 1,mem_addr_mi
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr:pdata
+iicd_read_eep_size_2k:
+ 	setarg 3
+	hstore 2,core_iicd_txlen
+	jam 0xa0,mem_iicd_tbuf
+	jam 0xa1,mem_iicd_tbuf+2
+	branch iicd_read_eep_common
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr offset:regb
+iicd_read_eep_data:
+	set1 mark_ext_patch,mark
+	bpatch patch30_1,mem_patch30
+	bmark1 mark_eeprom_size,iicd_read_eep_data_size_2k
+	fetch 2,mem_eeprom_base
+	iadd regb,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+
+/* rega pointers to buf, temp is length  */
+iicd_read_eep:
+	set1 mark_ext_patch,mark
+	bpatch patch30_2,mem_patch30
+	bmark1 mark_eeprom_size,iicd_read_eep_size_2k_lcadcode
+	nop 30000
+	setarg 4
+	hstore 2,core_iicd_txlen
+	jam 0xa0,mem_iicd_tbuf
+	jam 0xa1,mem_iicd_tbuf+3
+iicd_read_eep_common:	
+	setarg mem_iicd_tbuf
+	hstore 2,core_iicd_txaddr
+	hstoret 2,core_iicd_rxlen
+	deposit rega
+	hstore 2,core_iicd_rxaddr
+	setarg 2
+	isolate0 15,rega
+	setflag true,0,pdata
+	hstore 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	arg iicd_done,queue
+	call decrypt_code
+	call wait_iicd_done
+	isolate1 iicd_crcok,pdata
+	call set_ucode_status
+	bmark1 mark_eeprom_size,iicd_read_eep_load_code_size_2k
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	rtn
+
+iicd_read_eep_load_code_size_2k:
+	fetch 1,mem_addr_mi
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	rtn
+	
+
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr offset:regb
+iicd_write_eep_data:
+	fetch 2,mem_eeprom_base
+	iadd regb,pdata
+
+//cuur ptr:pdata length:temp buf:rega
+iicd_write_ota_data:
+	store 2,mem_pdatatemp //curr ptr
+	set1 mark_ext_patch,mark
+	bpatch patch30_3,mem_patch30
+	storet 2,mem_temp	//len
+	copy rega,pdata
+	store 2,mem_contr
+iicd_write_eep_loop:
+	call iicd_eep_transparency
+
+	fetcht 2,mem_regb
+	fetch 2,mem_contr
+	copy pdata,rega
+	fetch 2,mem_pdatatemp
+	
+	call iicd_write_eep
+	
+
+	
+	fetch 2,mem_regb
+	fetcht 2,mem_contr
+	iadd temp,temp
+	storet 2,mem_contr
+	fetcht 2,mem_pdatatemp
+	iadd temp,temp
+	storet 2,mem_pdatatemp
+	fetch 2,mem_temp
+	nbranch iicd_write_eep_loop,blank
+	rtn
+	
+//in:
+//1.size 2.len 3.src 4.des
+//mem_regc page's area
+//mem_pdatatemp curr ptr
+//mem_temp all len      
+//mem_regb curr len
+iicd_eep_transparency:
+	set1 mark_ext_patch,mark
+	bpatch patch30_4,mem_patch30
+	fetch 2,mem_eeprom_block_size
+	increase -1,pdata
+	fetcht 2,mem_pdatatemp
+	ior temp,pdata
+	increase 1,pdata
+	store 3,mem_regc
+
+	fetch 2,mem_temp
+	iadd temp,pdata
+
+	fetcht 3,mem_regc
+	isub temp,pdata
+	nbranch iicd_eep_deal_short_packet,positive
+	store 2,mem_temp
+	fetch 3,mem_regc
+	fetcht 2,mem_pdatatemp
+	isub temp,pdata
+	store 2,mem_regb
+	rtn
+iicd_eep_deal_short_packet:
+	fetch 2,mem_temp
+	store 2,mem_regb
+	setarg 0
+	store 2,mem_temp
+	rtn
+
+iicd_write_eep_size_2k:
+	increase 2,temp
+	hstoret 2,core_iicd_txlen
+	increase -2,rega
+	ifetcht 3,rega
+	copy temp,regb
+	arg 0xa0,temp
+	istoret 1,rega
+//	byteswap pdata,pdata
+	istore 1,contw
+	branch iicd_write_eep_common
+
+	/* pdata is eeprom address, rega pointers to txdata(3 ahead bytes should be left), temp is length */
+iicd_write_eep:
+	copy pdata,regb
+	set1 mark_ext_patch,mark
+	bpatch patch30_5,mem_patch30
+	nop 30000
+	bmark1 mark_eeprom_size,iicd_write_eep_size_2k
+	copy regb,pdata
+	increase 3,temp
+	hstoret 2,core_iicd_txlen
+	increase -3,rega
+	ifetcht 3,rega
+	copy temp,regb
+	arg 0xa0,temp
+	istoret 1,rega
+	byteswap pdata,pdata
+	istore 2,contw
+iicd_write_eep_common:	
+	deposit rega
+	hstore 2,core_iicd_txaddr
+	setarg 0
+	hstore 2,core_iicd_rxlen
+	hjam 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	call wait_iicd_done
+	copy regb,pdata
+	istore 3,rega
+	nop 10000
+	nop 10000
+	nop 10000
+	rtn
+
+/* ===================== OTP ======================= */
+
+otp_enable_chgpump:
+	hjam 0x70,rfen_chgpump
+	nop param_chgpump_delay
+	rtn
+
+otp_disable_chgpump:
+	hjam 0x30,rfen_chgpump
+	rtn
+	
+otp_set_addr:
+	lshift3 pdata,pdata
+	hstore 2,core_otp_addr
+	hjam 0,core_otpd_ctrl
+	rtn	
+
+/* pdata = otp address, rega pointers data, loopcnt is count */
+otp_write:
+	call otp_set_addr
+	call otp_ce
+otp_program:
+	ifetcht 1,rega
+	increase 1,rega
+	force 0,queue
+otp_program_bit:
+	qisolate0 temp
+	branch otp_skip_0,true
+	hfetch 1,core_otp_din
+	set1 6,pdata				/* din */
+	set1 7,pdata				/* dle */
+	hstore 1,core_otp_din
+	hjam 0x02,core_otp_ctrl	/* web */
+	hjam 0x82,core_otp_ctrl
+	set0 7,pdata				/* dle */
+	hstore 1,core_otp_din
+	hjam 0x8a,core_otp_ctrl	/* pgmen */
+	nop 11
+	hjam 0xca,core_otp_ctrl	/* vppen */
+	nop 33
+	hjam 0x4a,core_otp_ctrl	/* web 2nd */
+	nop 44
+	hjam 0xca,core_otp_ctrl	/* release web */
+	nop 22
+	hjam 0x8a,core_otp_ctrl	/* release vppen */
+	nop 33
+	hjam 0x82,core_otp_ctrl	/* release pgmen */
+	nop 1
+	hjam 0x92,core_otp_ctrl	/* pgmvfy */
+	nop 10
+	hjam 0xb2,core_otp_ctrl	/* readen */
+	hfetch 1,core_otp_rdata
+	hjam 0x92,core_otp_ctrl	/* release readen */
+	nop 1
+	hjam 0x82,core_otp_ctrl	/* release pgmvfy */
+	qisolate0 pdata
+	branch otp_program_bit,true	/* program error */
+otp_skip_0:
+	hfetch 2,core_otp_addr
+	increase 1,pdata
+	hstore 2,core_otp_addr
+	increase 1,queue
+	compare 8,queue,0xf
+	nbranch otp_program_bit,true
+	loop otp_program
+	hjam 0x83,core_otp_ctrl
+	rtn
+
+otp_ce:
+	hjam 0x82,core_otp_ctrl	/* ceb */
+	nop 12
+	hjam 0x80,core_otp_ctrl	/* rstn */
+	hjam 0x82,core_otp_ctrl	/* release rstn */
+	nop 150					/* waiting for vdd25 stable */
+	rtn
+
+	/* rega points to data, temp is count */
+otpd_read_init:
+	call otp_ce
+	hjam 0xa2,core_otp_ctrl	/* readen */
+	deposit rega
+	hstore 2,core_otpd_addr
+	set1 11,temp
+	isolate0 15,pdata
+	setflag true,15,temp
+	hstoret 2,core_otpd_len
+	hjam otpd_start,core_misc_ctrl
+	rtn
+
+otpd_wait_end:
+	hfetch 1,core_dma_status
+	bbit0 otpd_done,otpd_wait_end
+	rtn
+	
+	/* pdata=otp address, rega points to data, temp is count */
+otpd_read_data:
+	call otp_set_addr
+	call otpd_read_init
+	call otpd_wait_end
+	hjam 0x83,core_otp_ctrl	/* release ceb */
+	rtn
+
+
+
+/* rega pointers to buf, temp is length */
+otpd_read_code:	
+	hfetch 2,core_current_otp_addr
+	hstore 2,core_otp_addr
+	call otpd_read_init
+	arg otpd_done,queue
+	call decrypt_code
+	call otpd_wait_end
+	isolate1 otpd_crcok,pdata	
+	call set_ucode_status
+	hjam 0x83,core_otp_ctrl	/* release ceb */
+	rtn
+
+/* ===================== uart dma ======================= */
+uartd_prepare_tx:
+	hfetch 2,core_uart_twptr
+	iforce contwu
+	rtn
+
+uartd_send:
+	deposit contwu
+	hstore 2,core_uart_twptr
+	rtn
+
+uartd_rxdone:
+	deposit contru
+	hstore 2,core_uart_rrptr
+	rtn
+
+uart_set_baud_by_mem:
+	fetch uart_baud_len,mem_baud
+	hstore uart_baud_len,core_uart_baud
+	rtn
+
+uart_copy_tx_bytes_fast:
+	deposit loopcnt
+	rtn blank
+uart_copy_tx_bytes_fast_loop:
+	increase -8,loopcnt
+	call uart_tx_8_bytes,positive
+	rtn zero
+	branch uart_copy_tx_bytes_fast_loop,positive
+	increase 8,loopcnt
+uart_copy_tx_bytes_fast_loop_four:
+	increase -4,loopcnt
+	call uart_tx_4_bytes,positive
+	rtn zero
+	branch uart_copy_tx_bytes_fast_loop_four,positive
+	increase 4,loopcnt
+	branch uart_copy_tx_bytes
+
+uart_tx_8_bytes:
+	ifetch 8,contr
+	istore 8,contwu
+	rtn
+
+uart_tx_4_bytes:
+	ifetch 4,contr
+	istore 4,contwu
+	rtn
+
+uart_copy_tx_bytes:
+	deposit loopcnt
+	rtn blank
+uart_copy_tx_bytes_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop uart_copy_tx_bytes_loop
+	rtn
+
+uart_copy_rx_bytes_fast:
+	deposit loopcnt
+	rtn blank
+uart_copy_rx_bytes_fast_loop:
+	increase -8,loopcnt
+	call uart_rx_8_bytes,positive
+	rtn zero
+	branch uart_copy_rx_bytes_fast_loop,positive
+	increase 8,loopcnt
+uart_copy_rx_bytes_fast_loop_four:
+	increase -4,loopcnt
+	call uart_rx_4_bytes,positive
+	rtn zero
+	branch uart_copy_rx_bytes_fast_loop_four,positive
+	increase 4,loopcnt
+	branch uart_copy_rx_bytes
+
+uart_rx_8_bytes:
+	ifetch 8,contru
+	istore 8,contw
+	rtn
+
+uart_rx_4_bytes:
+	ifetch 4,contru
+	istore 4,contw
+	rtn
+
+
+uart_copy_rx_bytes:
+	deposit loopcnt
+	rtn blank
+uart_copy_rx_bytes_loop:
+	ifetch 1,contru
+	istore 1,contw
+	loop uart_copy_rx_bytes_loop
+	rtn
+
+
+/* ===================== eeprom data ======================= */
+
+check_51cmd_update_device_record:
+	set1 mark_ext_patch,mark
+	bpatch patch30_6,mem_patch30
+	fetch 1,mem_nv_data_number
+	rtn blank		// not nv data
+	call check_nvram
+	call init_device_list,zero
+	call nvram_find_addr_from_bd_list
+write_device_record:
+	fetch 1,mem_nv_data_number
+	icopy regc
+	fetcht 2,mem_nv_data_ptr
+	storet 2,mem_list_item_ptr
+write_device_loop_find:
+	copy regc,pdata
+	branch module_hci_event_store_device,blank  //EEPROM
+	increase -1,regc
+	copy temp,rega
+	ifetch 1,rega
+	fetcht 1,mem_select_list_item
+	isub temp,null
+	call set_index_finded_device,zero
+	branch write_device_loop_find0,positive
+	ifetch 1,rega
+	increase 1,pdata
+	istore 1,rega
+write_device_loop_find0:
+	fetcht 2,mem_list_item_ptr
+	increase NV_DATA_LEN,temp
+	storet 2,mem_list_item_ptr
+	branch write_device_loop_find
+
+set_index_finded_device:
+	setarg 0
+	istore 1,rega
+	fetch 1,mem_temp_reconn_record
+	istore 1,contw	
+	bne REC_3_MODE,set_index_finded_device_ble_mode
+	arg mem_link_key,regb
+set_index_find_device_MASTER_ADDR:
+	ifetch 6,contr
+	istore 8,contw
+	setarg 0
+	istore 8,contw
+	copy regb,contr
+store_rec_data_common:
+	call memcpy16
+	force 1,null
+	rtn
+
+set_index_finded_device_ble_mode:
+	beq REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,set_index_finded_device_IRK
+	beq REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,set_index_finded_device_EDIV
+	arg mem_le_ltk,regb
+	branch set_index_find_device_MASTER_ADDR
+
+set_index_finded_device_IRK:
+	arg mem_le_irk,contr
+	call memcpy16
+store_ble_rec_data_common:
+	arg mem_le_ltk,contr
+	branch store_rec_data_common
+
+set_index_finded_device_EDIV:
+	arg mem_le_rand,contr
+	call memcpy16
+	branch store_ble_rec_data_common
+
+
+nvram_find_addr_from_bd_list:
+	call disable_usr
+	fetch 1,mem_nv_data_number
+	rtn blank		// not nv data
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,find_addr_from_bd_list_SPP_mode
+//	bbit1 UI_STATE_BLE_CONNECTED,find_addr_from_bd_list_ble_mode
+find_addr_from_bd_list_ble_mode:
+	fetch 1,mem_le_conn_peer_addr_type
+	beq MASTER_PUBLIC_ADDR,find_addr_from_bd_list_static_addr
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	branch find_addr_from_bd_list_static_addr,true
+	compare 0x40,pdata,0xc0
+	branch find_addr_from_bd_list_random_addr,true
+	compare 0x00,pdata,0xc0
+	branch find_addr_from_bd_list_random_non_resolvable_private_address,true
+find_addr_from_bd_list_static_addr:
+	jam REC_4_MODE_STATIC_ADDRESS,mem_temp_reconn_record
+	fetch 6,mem_le_plap
+	branch find_addr_from_bd_list_common
+	
+find_addr_from_bd_list_random_non_resolvable_private_address:	
+	jam REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,mem_temp_reconn_record
+	branch find_addr_from_bd_list_common
+
+//input :pdata EDIV and rands
+find_addr_from_bd_list_random_addr:
+	jam REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,mem_temp_reconn_record
+	branch find_addr_from_bd_list_common
+	
+//input :pdata EDIV and rands
+find_addr_from_bd_list_SPP_mode:
+	set1 mark_ext_patch,mark
+	bpatch patch30_7,mem_patch30
+	jam REC_3_MODE,mem_temp_reconn_record
+	fetch 6,mem_plap
+find_addr_from_bd_list_common:
+	store 6,mem_temp_reconn_record+1
+	fetch 2,mem_nv_data_ptr
+	ifetcht 1,pdata
+	pincrease 1
+	store 2,mem_list_item_ptr
+	storet 1,mem_select_list_item
+	fetch 1,mem_nv_data_number
+	icopy regc
+nvram_find_addr_from_list:
+	fetch 2,mem_list_item_ptr
+	copy pdata,rega
+	call nvram_find_addr_from_list_compare
+	rtn user
+	fetcht 2,mem_list_item_ptr
+	increase NV_DATA_LEN,temp
+	storet 2,mem_list_item_ptr
+	increase -1,temp
+	ifetch 1,temp
+	store 1,mem_select_list_item
+	increase -1,regc
+	nbranch nvram_find_addr_from_list,zero
+	fetch 1,mem_nv_data_number
+	pincrease DECREASED_ONE
+	store 1,mem_select_list_item
+	rtn
+nvram_find_addr_from_list_compare:
+	fetch 1,mem_temp_reconn_record
+	bne REC_3_MODE,find_addr_from_list_compare_ble_mode
+find_master_addr_from_list_compare:
+	arg mem_temp_reconn_record,regb
+	arg 7,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+
+find_addr_from_list_compare_ble_mode:
+	beq REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,find_irk_form_list_compare
+	beq REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,find_ediv_form_list_compare
+	branch find_master_addr_from_list_compare
+
+find_irk_form_list_compare:
+	ifetcht 1,rega
+	isub temp,null
+	nrtn zero
+	arg mem_le_prand,contw
+	arg 16,loopcnt
+	call clear_mem
+	fetch 3,mem_le_plap+3
+	store 3,mem_le_prand
+	call genernate_master_MacAddress
+	fetch 2,mem_le_aes_128+13
+	byteswap pdata,pdata
+	lshift8 pdata,temp
+	ifetch 1,contr
+	iadd temp,pdata
+	fetcht 3,mem_le_plap
+	isub temp,null
+	branch enable_usr,zero
+	rtn
+
+
+genernate_master_MacAddress:
+	arg mem_le_prand ,contr
+	call load_data128
+//	arg mem_le_irk,contr
+	ifetch 1,rega
+	call load_regext
+	force 0x38,aes_ctrl
+	force 0x0,aes_ctrl
+	call wait_aes
+	arg mem_le_aes_128,contw
+	branch store_aes_result
+
+find_ediv_form_list_compare:
+	ifetcht 1,rega
+	isub temp,null
+	nrtn zero
+	copy contr,rega
+	add contr,8,regc
+	arg mem_le_rand,regb
+	arg 8,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	copy regc,rega
+	arg mem_le_irk,regb
+	arg 8,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+
+check_nvram:
+	fetch 2,mem_nv_data_ptr
+	ifetcht 1,pdata
+	pincrease NV_DATA_LEN
+	ifetch 1,pdata
+	isub temp,null
+	rtn
+
+init_device_list:
+	fetch 1,mem_nv_data_number
+	icopy loopcnt
+	fetcht 2,mem_nv_data_ptr
+	setarg 0
+init_device_list_loop:
+	istore 1,temp
+	increase NV_DATA_LEN,temp
+	pincrease 1
+	loop init_device_list_loop
+	rtn
+
+load_device_list:
+	set1 mark_ext_patch,mark
+	bpatch patch31_0,mem_patch31
+	call nvram_find_addr_from_bd_list
+	nbranch clear_key_exists,user
+	add rega,10,contr
+//	copy rega,contr
+	arg mem_link_key,contw
+	call  memcpy16
+	branch check_link_key_load
+clear_key_exists:
+	jam 0,mem_link_key_exists
+	rtn
+
+load_device_list_mode_4:
+	fetch 9,mem_le_ediv
+	branch clear_ltk_exists,blank
+	call nvram_find_addr_from_bd_list
+	nbranch clear_ltk_exists,user
+	fetch 2,mem_list_item_ptr
+	add pdata,1,contr
+	arg mem_le_irk,contw
+	call  memcpy16
+	arg mem_le_ltk,contw
+	call  memcpy16
+	jam 1,mem_ltk_exists
+	rtn
+
+load_device_list_mode_4_shutter:
+	fetch 2,mem_le_ediv
+	nbranch load_device_list_mode_4_shutter_label,blank
+	fetch 6,mem_le_rand
+	branch clear_ltk_exists_iphone_lost_ltk,blank
+load_device_list_mode_4_shutter_label:
+	jam LTK_NOT_LOST,mem_ltk_states
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	jam 1,mem_ltk_exists
+	rtn
+
+clear_ltk_exists_iphone_lost_ltk:
+	jam IPHONE_LOST_LTK,mem_ltk_states
+clear_ltk_exists:
+	jam 0,mem_ltk_exists
+	rtn
+
+
+eeprom_store_le_reconn_info:
+	fetch 6,mem_le_plap
+	store 6,mem_temp_lap
+	jam REC_4_MODE,mem_record_bt_mode
+	branch eeprom_store_reconn_info
+eeprom_store_bd_reconn_info:
+	fetch 6,mem_plap
+	store 6,mem_temp_lap
+	jam REC_3_MODE,mem_record_bt_mode
+eeprom_store_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch31_1,mem_patch31
+	fetch 1,mem_device_option
+	beq dvc_op_module,check_51cmd_update_device_record
+	call eeprom_store_remote_bdaddr
+	call eeprom_store_last_record_index
+	fetch 1,mem_record_bt_mode
+	beq REC_4_MODE,eeprom_store_rec_4_mode
+	beq REC_3_MODE,eeprom_store_link_key
+	rtn
+eeprom_store_rec_4_mode:
+	call eeprom_store_le_ltl
+	branch eeprom_store_le_local_addr
+	
+//
+eeprom_load_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch31_2,mem_patch31
+	call eeprom_load_reconn_bdaddr
+	fetch 1,mem_select_list_item
+	rtneq 0xff
+	fetch 6,mem_temp_lap
+	store 6,mem_hci_plap
+	fetch 1,mem_record_bt_mode
+	store 1,mem_xrecord_mode
+	beq REC_3_MODE,eeprom_load_rec_3_mode
+	beq REC_4_MODE,eeprom_load_rec_4_mode
+	rtn
+eeprom_load_reconn_bdaddr:
+	call eeprom_load_last_record_index
+	fetch 1,mem_select_list_item
+	rtneq 0xff
+	branch eeprom_load_remote_bdaddr
+eeprom_load_rec_3_mode:
+	call eeprom_load_link_key
+	branch check_link_key_load
+eeprom_load_rec_4_mode:
+	call eeprom_load_ltk_key
+	branch check_ltk_load
+
+
+
+eeprom_erase_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch31_4,mem_patch31
+	setarg 0x0
+	store 3,mem_plap
+	istore 3,contw
+	branch eeprom_store_remote_bdaddr
+	
+eeprom_load_last_record_index:
+	arg 1,temp
+	arg mem_select_list_item,rega
+	arg eeprom_last_record,regb
+	branch iicd_read_eep_data
+
+eeprom_store_last_record_index:
+	arg 1,temp
+	arg mem_select_list_item,rega
+	arg eeprom_last_record,regb
+	branch iicd_write_eep_data
+
+
+eeprom_store_remote_bdaddr:
+	set1 mark_ext_patch,mark
+	bpatch patch31_5,mem_patch31
+	call eeprom_load_bdaddr_list
+	disable user
+	call find_addr_from_bd_list
+	rtn user
+eeprom_store_remote_addr_unfind:
+	jam 0,mem_select_list_item
+	fetch 6,mem_temp_lap
+	store 6,mem_bdaddr_list_buff+1
+	fetch 1,mem_record_bt_mode
+	store 1,mem_bdaddr_list_buff
+	arg 28,temp
+	arg mem_bdaddr_list_buff,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_write_eep_data
+
+
+eeprom_store_le_local_addr:
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_le_reconn_local_addr,regb
+	branch iicd_write_eep_data
+	
+eeprom_load_le_loacal_addr:
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_le_reconn_local_addr,regb
+	branch iicd_read_eep_data
+
+
+eeprom_load_remote_bdaddr:
+	set1 mark_ext_patch,mark
+	bpatch patch31_6,mem_patch31
+	arg 7,temp
+	arg mem_temp_reconn_record,rega
+	arg eeprom_bdaddr_list,regb
+	fetch 1,mem_select_list_item
+	mul32 pdata,7,pdata
+	iadd regb,regb
+	branch iicd_read_eep_data
+
+eeprom_linkkey_addr:
+	arg 0x10,temp
+	arg eeprom_linkkey_list,regb
+	fetch 1,mem_select_list_item
+	lshift4 pdata,pdata
+	iadd regb,regb
+	rtn
+	
+eeprom_store_le_ltl:
+	arg mem_le_ltk,rega
+	branch eeprom_store_link_key_common
+eeprom_store_link_key:
+	arg mem_link_key,rega
+eeprom_store_link_key_common:
+	set1 mark_ext_patch,mark
+	bpatch patch31_7,mem_patch31
+	call eeprom_linkkey_addr
+	branch iicd_write_eep_data
+
+eeprom_load_ltk_key:
+	arg mem_le_ltk,rega
+	branch eeprom_load_link_key_common
+eeprom_load_link_key:
+	arg mem_link_key,rega
+eeprom_load_link_key_common:
+	set1 mark_ext_patch,mark
+	bpatch patch32_0,mem_patch32
+	call eeprom_linkkey_addr
+	branch iicd_read_eep_data
+
+
+	
+eeprom_load_bdaddr_list:
+	arg 28,temp
+	arg mem_bdaddr_list_buff+7,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_read_eep_data
+
+
+find_addr_from_bd_list:
+	set1 mark_ext_patch,mark
+	bpatch patch32_1,mem_patch32
+	setarg mem_bdaddr_list_buff+7
+	store 2,mem_list_item_ptr
+	jam 0,mem_select_list_item
+	arg 4,loopcnt
+find_addr_from_list:
+	copy loopcnt,pdata
+	store 1,mem_pdatatemp
+	fetch 2,mem_list_item_ptr
+	copy pdata,rega
+	call find_addr_from_list_compare
+	rtn user
+	fetch 2,mem_list_item_ptr
+	increase 7,pdata
+	store 2,mem_list_item_ptr
+	fetch 1,mem_select_list_item
+	increase 1,pdata
+	store 1,mem_select_list_item
+	fetch 1,mem_pdatatemp
+	copy pdata,loopcnt
+	loop find_addr_from_list
+	rtn
+
+
+check_link_key_load:
+	fetch 8,mem_link_key
+	fetcht 8,mem_link_key+8
+	ior temp,pdata
+	rtn blank
+	jam 1,mem_link_key_exists
+	rtn
+check_ltk_load:
+	fetch 6,mem_hci_plap
+	rtn blank
+	jam 1,mem_ltk_exists
+	rtn
+
+find_addr_from_list_compare:
+	arg mem_temp_reconn_record,regb
+	arg 7,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+enable_usr:
+	enable user
+	rtn
+
+
+/* =============== GPIO CONTROL ================= */
+
+
+	//temp [4:0]=GPIO number, 0-31, 
+gpio_set_wake_by_current_state:
+	set1 mark_ext_patch,mark
+	bpatch patch32_2,mem_patch32
+	set1 7,temp
+	call gpio_get_bit
+	nsetflag true,7,temp
+	//branch gpio_set_wake
+	//fall through
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_set_wake:
+	set1 mark_ext_patch,mark
+	bpatch patch32_3,mem_patch32
+	isolate0 7,temp
+	and temp,0x1f,queue
+	fetch 4,mem_gpio_wakeup_low
+	qsetflag true,pdata
+	store 4,mem_gpio_wakeup_low
+	fetch 4,mem_gpio_wakeup_high
+	nqsetflag true,pdata
+	store 4,mem_gpio_wakeup_high
+	rtn
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_clr_wake:
+	set1 mark_ext_patch,mark
+	bpatch patch32_4,mem_patch32
+	isolate0 7,temp
+	and temp,0x1f,queue
+	fetch 4,mem_gpio_wakeup_low
+	qset0 pdata
+	store 4,mem_gpio_wakeup_low
+	fetch 4,mem_gpio_wakeup_high
+	qset0 pdata
+	store 4,mem_gpio_wakeup_high
+	rtn
+
+
+gpio_config_input_nowake:
+	call gpio_clr_wake
+	branch gpio_config_input_without_wake
+
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_config_input:
+	ncall gpio_set_wake,wake
+
+gpio_config_input_without_wake:
+	arg core_gpio_pd0,contw
+	call gpio_set_bit
+	setflip gpio_active_bit,temp
+	arg core_gpio_pu0,contw
+	call gpio_set_bit
+	set0 gpio_active_bit,temp
+	arg core_gpio_oe0,contw
+	branch gpio_set_bit
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active. set gpio to inactive state
+gpio_config_output:	
+	setflip gpio_active_bit,temp
+	call gpio_out
+gpio_config_output0:
+	set1 gpio_active_bit,temp
+	arg core_gpio_oe0,contw
+	branch gpio_set_bit
+	
+gpio_common:
+	and temp,0x07,queue
+	rshift3 temp,pdata
+	and_into 3,pdata
+	iadd contw,contw
+	ifetch 1,contw
+	rtn
+
+gpio_check_active:
+	arg core_gpio_out0,contw
+	branch get_bit_common
+
+	
+	/* temp is gpio number, return true if gpio active */
+gpio_get_bit:
+	arg core_gpio_in,contw
+get_bit_common:
+	call gpio_common
+	isolate1 gpio_active_bit,temp
+	branch gpio_get_bit_reverse,true
+	qisolate0 pdata
+	rtn
+gpio_get_bit_reverse:
+	qisolate1 pdata
+	rtn
+
+gpio_out_inactive:
+	isolate1 7,null
+	branch gpio_out_flag
+
+gpio_out_active:
+	isolate0 7,null
+
+	/* temp is gpio number,  [7]=1,set out equa true flag if gpio active */
+gpio_out_flag:
+	setarg 0
+	nsetflag true,gpio_active_bit,pdata
+	ixor temp,temp
+	
+	/* temp is gpio number,0-31, [7]=out bit value */
+gpio_out:
+	arg core_gpio_out0,contw
+
+	//temp [4:0]=GPIO number, 0-31, [7]=bit value; contw is gpio reg base
+gpio_set_bit:
+	call gpio_common
+	isolate1 gpio_active_bit,temp
+	qsetflag true,pdata
+	istore 1,contw
+	rtn
+
+gpio_set_before_lpm_common:
+	arg -1,rega
+	hfetch 1,core_gpio_sel1
+	isolate1 1,pdata
+	call neglact4_from_23_pin,true	//spi
+	 
+	and pdata,0x3,regb
+	sub regb,1,null
+	call neglact2_form_25_pin,zero	//two spi
+	 
+	isolate1 2,pdata
+	call neglect2_from_6_pin,true	//uart
+	 
+	isolate1 3,pdata
+	call neglect4_from_9_pin,true	//spi
+
+	isolate1 5,pdata
+	call neglact2_form_27_pin,true	//clock external
+
+	isolate1 6,pdata
+	arg 4,queue
+	call neglact_1_pin,true
+	nsetflag true,4,rega			//pwm0 gpio4
+
+	isolate1 7,pdata
+	arg 5,queue
+	call neglact_1_pin,true			//pwm0 gpio5
+
+	hfetch 1,core_gpio_sel2
+	isolate1 0,pdata
+	arg 3,queue
+	call neglact_1_pin,true			//pwm0 gpio3
+	
+	hfetcht 1,core_gpio_sel
+	isolate1 0,temp
+	arg 5,queue
+	call neglact_1_pin,true			//ADC gpio5
+
+	ior temp,pdata
+
+	isolate1 1,pdata
+	arg 6,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio6
+	
+	isolate1 2,pdata
+	arg 7,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio7
+	
+	isolate1 3,pdata
+	arg 18,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio18
+	
+	isolate1 4,pdata
+	arg 19,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio19
+	
+	isolate1 5,pdata
+	arg 20,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio20
+	
+	isolate1 6,pdata
+	arg 21,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio21
+
+	isolate1 7,pdata
+	arg 22,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio22
+
+	hfetch 1,core_uart_ctrl
+	isolate1 4,pdata
+	call neglact2_form_2_pin,true
+	set1 mark_ext_patch,mark
+	bpatch patch32_5,mem_patch32
+
+	hfetch 4,core_gpio_pu0
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata
+	invert pdata,pdata
+	iand rega,pdata
+	//set0 4,pdata //revc
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata	
+	hstore 4,core_gpio_pd0
+	rtn
+neglect2_from_6_pin: //uart
+	 arg 6,queue
+	 branch neglect_2_pin
+neglect4_from_9_pin:
+	 arg 9,queue
+	 branch neglact_4_pin
+neglact4_from_23_pin:
+	 arg 23,queue
+	 branch neglact_4_pin
+neglact2_form_25_pin:
+	 arg 25,queue
+	 branch neglect_2_pin
+neglact2_form_27_pin:
+	 arg 27,queue
+	 branch neglect_2_pin
+neglact2_form_2_pin:
+	 arg 2,queue
+	 branch neglect_2_pin
+neglact_1_pin:
+	arg 1,loopcnt
+	branch neglect_pin_loop
+neglact_4_pin:
+	 arg 4,loopcnt
+	 branch neglect_pin_loop
+neglect_2_pin:
+	 arg 2,loopcnt
+neglect_pin_loop:
+	 qset0 rega
+	 increase 1,queue
+	 loop neglect_pin_loop
+	 rtn
+
+
+
+
+
+
+/* ===================== sniff GPIO CONTROL ======================= */
+gpio_cfg_uart_tx_output:
+	call gpio_uart2gpio
+	arg UART_WAKEUP_TX,temp
+	branch gpio_config_output
+
+gpio_pu_uart_tx:
+	call gpio_cfg_uart_tx_output
+	arg UART_WAKEUP_TX,temp
+	branch gpio_out_inactive
+
+
+
+gpio_rx_config_input_with_pu:
+	call gpio_uart2gpio
+	hfetch 1, core_gpio_pu0
+	set1 UART_WAKEUP_RX,pdata
+	hstore 1,core_gpio_pu0
+	arg UART_WAKEUP_RX,temp
+	branch gpio_config_input
+	
+gpio_uart2gpio:
+	hfetch 1,core_gpio_sel1
+	and_into 0xfb,pdata
+	hstore 1,core_gpio_sel1
+	rtn
+
+gpio_check_uart_state:
+	hfetch 1,core_gpio_sel1
+	isolate1 2,pdata
+	rtn
+
+load_chip_option:
+	call otp_enable_chgpump
+	setarg OTP_CHIP_FUNCTIONS
+	arg mem_chip_functions,rega
+	arg 0x02,temp
+	call otpd_read_data
+	branch otp_disable_chgpump
+	
+//mem_adc_config_flag 0:vinlpm 1:Hvin 2: GPIO
+
+adc_init_data:
+	set1 mark_ext_patch,mark
+	bpatch patch32_6,mem_patch32
+
+	call otp_enable_chgpump
+	setarg otp_adc_io_0_5V_addr
+	arg mem_0_5_adc_io_data,rega
+	arg 14,temp
+	call otpd_read_data
+	call otp_disable_chgpump
+	
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,adc_init_data_vinlpm
+	bbit1 ADC_CONFIG_HVIN,adc_init_data_hvin
+	bbit1 ADC_CONFIG_GPIO,adc_init_data_io
+	rtn	
+
+adc_init_data_vinlpm:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_vinlpm,zero
+	setarg 0x4dfa
+	store 2,mem_3v_adc_vinlpm_data	
+	setarg 0x4894
+	store 2,mem_2v_adc_vinlpm_data
+	branch set_vdd_reference_voltage_1v
+
+adc_check_data_vinlpm:
+	fetch 2,mem_3v_adc_vinlpm_data
+	nbranch adc_check_2v_vinlpm,blank
+	setarg 0x4dfa
+	store 2,mem_3v_adc_vinlpm_data
+adc_check_2v_vinlpm:	
+	fetch 2,mem_2v_adc_vinlpm_data
+	nbranch set_vdd_reference_voltage_1v,blank
+	setarg 0x4894
+	store 2,mem_2v_adc_vinlpm_data
+set_vdd_reference_voltage_1v:
+	setarg 100
+	store 2,mem_reference_voltage //set reference voltage = 1V
+	rtn		
+
+adc_init_data_hvin:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_hvin,zero
+	setarg 0x5932
+	store 2,mem_5v_adc_hvin_data	
+	setarg 0x4323
+	store 2,mem_1v_adc_hvin_data
+	branch set_vdd_reference_voltage_4v
+
+adc_check_data_hvin:
+	fetch 2,mem_5v_adc_hvin_data
+	nbranch adc_check_1v_hvin,blank
+	setarg 0x5932
+	store 2,mem_5v_adc_hvin_data
+adc_check_1v_hvin:	
+	fetch 2,mem_1v_adc_hvin_data
+	nbranch set_vdd_reference_voltage_4v,blank
+	setarg 0x4323
+	store 2,mem_1v_adc_hvin_data
+set_vdd_reference_voltage_4v:
+	setarg 400
+	store 2,mem_reference_voltage //set reference voltage = 4V
+	rtn 	
+
+adc_init_data_io:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_io,zero
+	setarg 0x6946
+	store 2,mem_1v_adc_io_data	
+	setarg 0x5377
+	store 2,mem_0_5_adc_io_data
+	branch set_vdd_reference_voltage_0_5v
+
+adc_check_data_io:
+	fetch 2,mem_1v_adc_io_data
+	nbranch adc_check_0_5v_io,blank
+	setarg 0x6946
+	store 2,mem_1v_adc_io_data
+adc_check_0_5v_io:
+	fetch 2,mem_0_5_adc_io_data
+	nbranch set_vdd_reference_voltage_0_5v,blank
+	setarg 0x5377
+	store 2,mem_0_5_adc_io_data
+set_vdd_reference_voltage_0_5v:
+	setarg 50
+	store 2,mem_reference_voltage //set reference voltage = 0.5V
+	rtn	
+
+
+adc_set_mode:
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,adc_check_vinlpm
+	bbit1 ADC_CONFIG_HVIN,adc_check_hvin
+	bbit1 ADC_CONFIG_GPIO,adc_check_gpio
+	rtn
+adc_check_vinlpm:
+	hjam 0xbf,rf_adc_mode	//read VINLPM voltage directly	
+	branch read_adc
+adc_check_hvin:
+	hjam 0xaf,rf_adc_mode	//read HVIN voltage directly
+	branch read_adc
+adc_check_gpio:
+	hjam 0x8f,rf_adc_mode
+	fetch 1,mem_adc_channel
+	hstore 1,rf_adc_ch
+	branch read_adc
+read_adc:
+	set1 mark_ext_patch,mark
+	bpatch patch32_7,mem_patch32
+	hfetch 1,core_uart_baud + 1
+	set1 7,pdata
+	hstore 1,core_uart_baud + 1 
+	hfetch 1,rf_adc_ch
+	or_into 0x30,pdata
+	hstore 1,rf_adc_ch
+	hjam 0x7c,rfen_adc
+	hjam 0xaa,rf_adc_gc
+	nop 5000
+	hfetcht 2,core_adc_sum
+	hfetch 1,core_uart_baud + 1
+	set0 7,pdata
+	hstore 1,core_uart_baud + 1
+	storet 2,mem_adc_current_value
+	rtn
+
+vdd_calculate_by_mode:
+	set1 mark_ext_patch,mark
+	bpatch patch33_0,mem_patch33
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,vdd_calculate_vinlpm
+	bbit1 ADC_CONFIG_HVIN,vdd_calculate_hvin
+	bbit1 ADC_CONFIG_GPIO,vdd_calculate_io
+	rtn
+
+vdd_calculate_vinlpm:
+	fetch 2,mem_3v_adc_vinlpm_data
+	fetcht 2,mem_2v_adc_vinlpm_data
+	arg 200,regc
+	branch vdd_calculate
+
+vdd_calculate_hvin:
+	fetch 2,mem_5v_adc_hvin_data
+	fetcht 2,mem_1v_adc_hvin_data
+	arg 100,regc
+	branch vdd_calculate
+
+vdd_calculate_io:
+	fetch 2,mem_1v_adc_io_data
+	fetcht 2,mem_0_5_adc_io_data
+	arg 50,regc
+	branch vdd_calculate
+	
+vdd_calculate:
+	isub temp,rega
+	fetch 2,mem_adc_current_value
+	isub temp,pdata
+	nbranch vdd_calculate1,positive
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	iadd regb,pdata
+vdd_calculate2:
+	idiv rega
+	call wait_div_end
+	quotient pdata	
+	rtn
+
+vdd_calculate1:
+	copy temp,pdata
+	fetcht 2,mem_adc_current_value
+	isub temp,pdata
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	isub regb,pdata
+	branch vdd_calculate2
+
+
+
+
+rfcomm_init:
+	rtn wake
+	jam 0,mem_rfcomm_send_more_pkt
+	jam BITS9600,memRemoteRPNBitRate        
+	jam DATABITS8,memRemotePRNDataBits      
+	jam 0x11,memRemotePRNXon
+	jam 0x13,memRemotePRNXoff
+	setarg 0
+	store 3,memRemotePRNStopBit
+	store 1,mem_spp_state                  
+	jam 0,memui_reconnect_mode
+	//branch rfcomm_init_spp
+rfcomm_init_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch33_1,mem_patch33
+	setarg 0
+	store 1,mem_spp_state
+	store 1,mem_remote_spp_channel
+	store 1,mem_pn_dlci
+	fetch 1,mem_credit_flag
+	beq CREDIT_ENABLE,rfcomm_init_spp_with_credit
+	jam 0x50,mem_credit_given
+	rtn
+
+rfcomm_init_spp_with_credit:
+	jam 0x00,mem_credit_given
+	rtn
+
+set_CR_bit:
+	or_into 0x02,temp
+	rtn
+
+
+/*below added by koufan*/
+
+/*rfcomm_send */
+
+
+
+	/*rfcomm_calculate_FCS_sabm*/
+	/*input: address in temp*/
+	/*output: FCS in pdata  */
+rfcomm_calculate_FCS_sabm:
+	copy temp,pdata
+	reverse pdata,pdata //address
+	store 1,memFCStemp3
+	force INI_TX_SABM,pdata
+	reverse pdata,pdata
+	store 1,memFCStemp2
+	force 0x01,pdata                        
+	reverse pdata,pdata
+	store 1,memFCStemp1
+	call caculate_fcs
+	copy temp,pdata                        
+	rtn
+rfcomm_calculate_FCS_ua:
+	reverse pdata,pdata //address
+	store 1,memFCStemp3
+	force   RSP_TX_UA, pdata
+	reverse pdata, pdata
+	store   1, memFCStemp2
+	force   0x01, pdata
+	reverse pdata, pdata
+	store   1, memFCStemp1
+	branch caculate_fcs
+	/* FCS return from temp                */
+rfcomm_calculate_FCS_dlci0:
+	fetch 1,mem_rfcomm_initiator
+	branch rfcomm_calculate_FCS_dlci0_res,blank
+	setarg 0x70 //FCS of initiator
+	rtn
+rfcomm_calculate_FCS_dlci0_res:
+	setarg 0xaa//FCS of responder
+	rtn
+	
+rfcomm_save_FCS_uih:
+	reverse pdata, pdata //address 
+	store 1,memFCStemp3                     /* contw distroided                    */
+	force RSP_RX_UIH,pdata 
+	call caculate_UIHdata_fcs
+	fetcht 2,mem_contw_temp
+	copy temp,contw
+	istore 1,contw                      /* save FCS for later use              */
+	copy contw,temp
+	storet 2,mem_contw_temp
+	force RSP_RX_UIH_WDATA,pdata             /* P/F =1 + RSP_RX_UIH                 */
+	call caculate_UIHdata_fcs
+	fetcht 2,mem_contw_temp
+	copy temp,contw
+	istore 1,contw             /* save FCS for later use              */
+	rtn	
+/**********************************************************************/
+/* This subroutine caculates the FCS for UIH data                     */
+/* Input:                                                             */
+/*        the address byte at memFCStemp3(bit reversed), control byte */
+/*        at pdata (not bit reversed)                                 */
+/* Output:                                                            */
+/*        pdata: the FCS                                              */
+/**********************************************************************/  
+caculate_UIHdata_fcs:
+	reverse pdata,pdata
+	store   1,memFCStemp2
+	fetch   2, memFCStemp2                     
+	lshift8 pdata,pdata
+	store 3,mem_mod2div_temp
+	arg     0x107,regA
+	arg 0xf,regB
+	call mod2div
+	xor_into     0xd7, pdata
+	invert  pdata,pdata
+	reverse pdata,pdata
+	rtn
+	
+/**********************************************************************/
+/* This subroutine caculates the FCS                                  */
+/* Input:                                                             */
+/*        the address byte at memFCStemp3, control byte at memFCStemp2*/  
+/*        lenght at memFCStemp1 (all above data are bit reversed)     */
+/* Output:                                                            */
+/*        temp: the FCS                                               */
+/**********************************************************************/     
+caculate_fcs:
+	fetch 3, memFCStemp1                    /* load 3 bytes start at memFCStemp1   */
+	store 3,mem_mod2div_temp
+	arg 0x107,regA
+	arg 0xf,regB  //24bit(memFCStemp1+..+memFCStemp3) - 9bit(regA) = 15bit
+	call mod2div
+	lshift8 pdata,pdata 
+	arg 0x7, regB  //16bit(lshift8 pdata,pdata ) - 9bit(regA) = 7bit
+	call mod2div
+	xor_into     0x2b, pdata		//0x3d
+	invert  pdata, pdata                        
+	reverse pdata, pdata                      /* FCS at pdata                        */
+	copy    pdata, temp
+	rtn
+
+mod2div:
+	arg 0,regC
+	copy regB,loopcnt
+	call right_shift_n // right shift pdata (regB)bit
+	icopy temp
+mod2div_loop:
+	//jam 1,0x1fff
+//mod2div_loop1:
+	//fetch 1,0x1fff
+	//nbranch mod2div_loop1,blank
+	copy temp,pdata
+	lshift regC,regC//quotient
+	bbit0 8, mod2div_not_enough_reduction//the high bit of 0x107
+	ixor regA,temp// temp----remainer
+	increase 1,regC// quotient
+mod2div_not_enough_reduction: //Minuend smaller than Subtrahend
+	lshift temp,temp
+	fetch 3,mem_mod2div_temp
+	increase -1,regB
+	compare 0xff,regB,0xff
+	branch mod2div_end,true
+	copy regB,loopcnt
+	call right_shift_n // right shift pdata (regB)bit
+	isolate1 0,pdata
+	setflag true,0,temp //move a new bit from Dividend(queue) into Minuend(pdata)
+	branch mod2div_loop
+mod2div_end:
+	//output:remainer in pdata
+	rshift  temp,pdata
+	rtn
+
+get_rfcomm_snd_adss:
+	fetcht 1,mem_pn_dlci
+dlci_to_address_cmd:
+	//input DLCI from temp
+	lshift2 temp,temp
+	set1 RFCOMM_ADDRESS_EXT_LEN,temp
+	fetch 1,mem_rfcomm_initiator
+	ncall set_CR_bit,blank
+	storet 1,mem_rfcomm_send_adss
+	rtn
+
+channel_to_dlci:
+	//input channel from temp
+	lshift temp,temp
+	fetch 1,mem_rfcomm_initiator
+	setflag blank,0,temp //direction in dlci
+	//output dlci to temp
+	rtn
+rfcomm_rx_process_DLCI0_sabm:
+	fetcht 1,mem_current_channel //address
+	jam 0xd7,mem_current_fcs //FCS
+	call rfcomm_send_ua
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_SABM,pdata
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_UA,pdata
+	store 1,mem_rfcomm_state
+	jam 0,mem_rfcomm_initiator
+	branch rfcomm_rx_process_end
+rfcomm_rx_process_DLCI0_ua:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_UA,pdata
+	store 1,mem_rfcomm_state
+	branch rfcomm_rx_process_end
+
+	
+rfcomm_rx_process:
+	set1 mark_ext_patch,mark
+	bpatch patch33_2,mem_patch33
+	fetch 1,memui_reconnect_mode
+	beq NO_RECONNECTION,rfcomm_rx_process_remote_page
+	branch rfcomm_rx_process_reconn
+
+rfcomm_rx_process_remote_page:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_head_struct
+	fetch 1,mem_current_channel
+	beq 0,parse_dlci0_rp
+	branch parse_uih_rp
+parse_dlci0_rp:
+	set1 mark_ext_patch,mark
+	bpatch patch33_3,mem_patch33
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_SABM,rfcomm_rx_process_DLCI0_sabm
+	beq RFCOMM_FRAME_TYPE_UA,rfcomm_rx_process_DLCI0_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_DLCI0_rp_uih
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_rp_spp_disconn_send_event
+	rtn
+
+
+parse_DLCI0_rp_uih:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_uih_head_struct
+	fetch 1,mem_uih_cmd_type
+	beq UIH_PARAM_NEG_CMD,parse_DLCI0_rp_uih_pn_cmd
+	beq UIH_PARAM_NEG_RES,parse_DLCI0_rp_uih_pn_res
+	beq UIH_MODEM_STATUS_CMD,parse_DLCI0_rp_uih_ms_cmd
+	beq UIH_MODEM_STATUS_RES,parse_DLCI0_rp_uih_ms_res
+	beq UIH_PARAM_CMD_REMOVE_PORT,parse_DLCI0_rp_uih_cmd_port	
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_pn_cmd:
+	call parse_DLCI0_rp_uih_pn_res_common
+
+	branch parse_DLCI0_rp_uih_pn_cmd_spp
+
+parse_DLCI0_rp_uih_pn_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_PN_RES,pdata
+	store 1,mem_spp_state
+	call rfcomm_send_param_neg_res
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_pn_res:
+	call parse_DLCI0_rp_uih_pn_res_common
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_rp_uih_pn_res_common:
+	call get_param_payload_ptr
+	branch  get_rfcomm_prarmer_negotiation
+
+get_rfcomm_param_modem_status:
+	call get_param_payload_ptr
+	ifetch 1,contr
+	rshift3 pdata,pdata
+	store 1,mem_ms_channel
+	ifetch 1,contr
+	store 1,mem_ms_param
+	rtn
+
+
+get_rfcomm_head_struct:
+	ifetch 1,contr
+	store 1,mem_current_adss
+	rshift3 pdata,pdata
+	store 1,mem_current_channel
+	ifetch 1,contr
+	store 1,mem_current_frame_type
+get_rfcomm_current_length:
+	call get_rfcomm_length_common
+	storet 2,mem_current_length
+	copy contr,pdata
+	store 2,mem_rfcomm_uih_payload_ptr
+	rtn
+
+get_rfcomm_uih_head_struct:
+	ifetch 1,contr
+	rshift pdata,pdata
+	store 1,mem_uih_cmd_type
+	call get_rfcomm_length_common
+	storet 2,mem_uih_length
+	copy contr,pdata
+	store 2,mem_param_payload_ptr
+	rtn
+
+
+get_param_payload_ptr:
+	fetch 2,mem_param_payload_ptr
+	copy pdata,contr
+	rtn
+
+get_rfcomm_length_common:
+	ifetch 1,contr
+	copy pdata,temp
+	rshift temp,temp
+	rtnbit1 0
+	ifetch 1,contr
+	lshift3 pdata,pdata
+	lshift4 pdata,pdata
+	iadd temp,temp
+	rtn
+
+get_rfcomm_prarmer_negotiation:
+	ifetch 1,contr
+	store 1,mem_pn_dlci
+	ifetch 1,contr
+	store 1,mem_pn_credit_flow_type_info
+	ifetch 1,contr
+	store 1,mem_pn_priority
+	ifetch 1,contr
+	store 1,mem_pn_acknowledg_timer
+	ifetch 2,contr
+	store 2,mem_pn_max_frame_size
+	ifetch 1,contr
+	store 1,mem_pn_max_retrans
+	ifetch 1,contr
+	store 1,mem_remote_credits
+	rtn
+
+
+parse_DLCI0_rp_uih_ms_cmd:
+	call get_rfcomm_param_modem_status
+
+	branch parse_DLCI0_rp_uih_ms_cmd_spp
+
+parse_DLCI0_rp_uih_ms_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_RES,pdata
+	store 1,mem_spp_state
+	fetcht 1,mem_pn_dlci
+	lshift2 temp,temp
+	or_into 3,temp
+	call rfcomm_send_modem_status_res
+	jam MORE_PKT_MSC_CMD_SPP,mem_rfcomm_send_more_pkt
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_ms_res:
+	jam BT_EVT_SPP_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	sub pdata,1,null
+	branch parse_DLCI0_rp_uih_MS_RES_spp,zero
+	branch assert
+parse_DLCI0_rp_uih_ms_res_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_rp_uih_cmd_port:
+	call get_param_payload_ptr
+	ifetch 1,contr
+	store 1,mem_rpn_dlci
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x000e
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	//setarg 5
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch33_4,mem_patch33
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1191
+	istore 2,contw
+	//fetch 1,mem_pn_dlci
+	//setarg 0x0b
+	fetch 1,mem_rpn_dlci
+	istore 1,contw //DLCI
+	setarg 0x000007
+	istore 5,contw
+//	setarg 0 //max frame size
+//	istore 2,contw 
+	setarg 0x01 //max retrans
+	istore 2,contw
+//	setarg 0x00
+//	istore 1,contw // init credits
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+
+
+parse_uih_rp:
+	branch parse_uih_rp_spp
+
+parse_uih_rp_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch33_5,mem_patch33
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_UA,parse_uih_rp_spp_ua
+	beq RFCOMM_FRAME_TYPE_SABM,parse_uih_rp_spp_sabm
+	beq RFCOMM_FRAME_TYPE_UIH,parse_uih_spp_uih
+	beq RFCOMM_FRAME_TYPE_UIH_CREDITS,parse_uih_spp_uih_credits
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_rp_spp_disconn
+	rtn
+parse_uih_rp_spp_ua:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+parse_uih_rp_spp_sabm:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	set1 RFCOMM_CHANNEL_STATE_SABM,pdata
+	store 1,mem_spp_state
+	fetch 1,mem_current_adss
+	call rfcomm_calculate_FCS_ua
+	store 1,mem_current_fcs
+	call rfcomm_send_ua
+	fetch 1,mem_current_adss
+	rshift2 pdata,pdata
+	store 1,mem_pn_dlci
+	lshift2 pdata,pdata
+	set0 RFCOMM_ADDRESS_CR,pdata
+	set1 RFCOMM_ADDRESS_EXT_LEN,pdata 
+	arg mem_HIUfcs_spp,temp // mem_HIUfcs_HF_WCredits in regB++
+	storet 2,mem_contw_temp
+	call rfcomm_save_FCS_uih
+	branch rfcomm_rx_process_end
+	
+parse_uih_spp_uih_credits:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	increase 1,pdata
+	store 2,mem_rfcomm_uih_payload_ptr
+	ifetch 1,contr //remote credits
+	fetcht 1,mem_remote_credits
+	iadd temp,pdata
+	store 1,mem_remote_credits
+parse_uih_spp_uih:
+	call rfcomm_increase_credit_given
+parse_uih_spp_uih_cont:
+	call get_rfcomm_snd_adss
+	call rfcomm_send_uih_without_payload
+	call spp_process_rx_data
+	branch rfcomm_rx_process_end
+
+parse_uih_rp_spp_disconn_send_event:
+	jam BT_EVT_SPP_DISCONNECTED,mem_fifo_temp
+	call ui_ipc_send_event	
+parse_uih_rp_spp_disconn:
+	call rfcomm_init_spp
+	fetch 1,mem_current_adss
+	call rfcomm_calculate_FCS_ua
+	store 1,mem_current_fcs
+	call rfcomm_send_ua
+	branch rfcomm_rx_process_end
+	
+///////////////////////////////////////////
+///////////////////////////////////////////
+///////////////////////////////////////////
+rfcomm_rx_process_reconn:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_head_struct
+	fetch 1,mem_current_channel
+	beq 0,parse_DLCI0_reconn
+	branch parse_uih_reconn
+		
+parse_DLCI0_reconn:
+	set1 mark_ext_patch,mark
+	bpatch patch33_6,mem_patch33
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_SABM,rfcomm_rx_process_DLCI0_sabm
+	beq RFCOMM_FRAME_TYPE_UA,rfcomm_rx_process_DLCI0_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_DLCI0_reconn_uih
+	branch rfcomm_rx_process_end
+parse_DLCI0_reconn_uih:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_uih_head_struct
+	fetch 1,mem_uih_cmd_type
+	beq UIH_PARAM_NEG_CMD,parse_DLCI0_reconn_uih_pn_cmd
+	beq UIH_PARAM_NEG_RES,parse_DLCI0_reconn_uih_pn_cmd
+	beq UIH_MODEM_STATUS_CMD,parse_DLCI0_reconn_uih_ms_cmd
+	beq UIH_MODEM_STATUS_RES,parse_DLCI0_reconn_uih_ms_res
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_reconn_uih_pn_cmd:
+	call parse_DLCI0_rp_uih_pn_res_common
+	fetch 1,mem_pn_dlci
+	rshift pdata,pdata
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_pn_cmd_spp,zero
+	branch assert
+parse_DLCI0_reconn_uih_pn_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_reconn_uih_ms_cmd:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_ms_cmd_spp,zero
+	branch assert
+	branch rfcomm_rx_process_end
+parse_DLCI0_reconn_uih_ms_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_RES,pdata
+	store 1,mem_spp_state
+	fetcht 1,mem_pn_dlci
+	lshift2 temp,temp
+	or_into 3,temp
+	call rfcomm_send_modem_status_res
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_reconn_uih_ms_res:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_ms_res_spp,zero
+	branch assert
+parse_DLCI0_reconn_uih_ms_res_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_uih_reconn:
+	fetch 1,mem_current_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_uih_reconn_spp,zero
+	branch assert
+	branch rfcomm_rx_process_end
+
+parse_uih_reconn_spp:
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_UA,parse_uih_reconn_spp_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_uih_spp_uih
+	beq RFCOMM_FRAME_TYPE_UIH_CREDITS,parse_uih_spp_uih_credits
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_reconn_spp_disconn
+parse_uih_reconn_spp_ua:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+parse_uih_reconn_spp_sabm:
+	branch parse_uih_reconn_spp_sabm//loop
+parse_uih_reconn_spp_disconn:
+	branch parse_uih_rp_spp_disconn
+rfcomm_rx_process_end:
+	rtn
+	
+rfcomm_send_more_pkt:
+	fetch 1,mem_rfcomm_send_more_pkt
+	rtn blank
+	beq MORE_PKT_MSC_CMD_SPP,rfcomm_send_more_pkt_msc_cmd_spp
+	branch assert
+	
+rfcomm_send_more_pkt_msc_cmd_spp:
+	jam 0,mem_rfcomm_send_more_pkt
+	call l2cap_malloc_rfcomm_channel
+	arg SPP_SLAVE_CHANNEL,temp
+	fetcht 1,mem_pn_dlci
+	lshift2 temp,temp
+rfcomm_send_more_pkt_msc_cmd_spp0:
+	or_into 0x03,temp
+	arg 0xaa,regA
+	call rfcomm_send_modem_status_cmd
+	call l2cap_get_rfcomm_tx_buff
+	copy contw,contr
+	ifetch 2, contr
+	branch assert,blank
+	rtn
+
+rfcomm_send_sabm:
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0004
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_current_adss
+	istore 1,contw //address
+	set1 mark_ext_patch,mark
+	bpatch patch33_7,mem_patch33
+	setarg 0x013f
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_ua:
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0004
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_current_adss
+	istore 1,contw //address
+	set1 mark_ext_patch,mark
+	bpatch patch34_0,mem_patch34
+	setarg 0x0173
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_param_neg_cmd:
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x000e
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch34_1,mem_patch34
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1183
+	istore 2,contw
+	copy temp,pdata //DLCI in temp
+	istore 1,contw
+	setarg 0x0000f0
+	istore 3,contw
+	setarg RFCOMM_MAX_FRAME_SIZE
+	istore 2,contw
+	setarg 0
+	istore 1,contw
+	setarg 0x01		//change here later
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	jam 0x10,mem_credit_given
+	rtn
+rfcomm_send_param_neg_res:
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x000e
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch34_2,mem_patch34
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1181
+	istore 2,contw
+	fetch 1,mem_pn_dlci
+	istore 1,contw //DLCI
+	setarg 0x0000e0
+	istore 3,contw
+	fetch 2,mem_rfcomm_max_frame_size
+	istore 2,contw 
+	setarg 0x00 //max retrans
+	istore 1,contw
+	fetch 1,mem_rfcomm_credit_init_data
+	istore 1,contw // init credits
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+rfcomm_send_modem_status_cmd:
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0008
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch34_3,mem_patch34
+	setarg 0x09ef
+	istore 2,contw
+	setarg 0x05e3
+	istore 2,contw
+	copy temp,pdata //DLCI adress
+	istore 1,contw
+	setarg 0x8d
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+rfcomm_send_modem_status_res:
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0008
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	copy temp,timeup
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch34_4,mem_patch34
+	setarg 0x09ef
+	istore 2,contw
+	setarg 0x05e1
+	istore 2,contw
+	copy timeup,pdata //DLCI address in temp
+	istore 1,contw
+	setarg 0x8d
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+rfcomm_send_uih_without_payload:
+	set1 mark_ext_patch,mark
+	bpatch patch34_5,mem_patch34
+	fetch 1,mem_credit_given
+	rtn blank
+	hfetch 2,core_uart_rxitems
+	nrtn blank
+	copy rega,pdata
+	store 1,mem_pdatatemp+1
+	storet 1,mem_pdatatemp
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x05
+	istore 2,contw
+	fetch 2,mem_RFCOMM_remote_CID
+	istore 2,contw
+	fetch 1,mem_rfcomm_send_adss
+	istore 1,contw
+	setarg 0x01ff
+	istore 2,contw
+	fetch 1,mem_credit_given
+	istore 1,contw
+	fetch 1,mem_HIUfcs_SPP_WCredits
+	istore 1,contw
+	jam 0,mem_credit_given
+	rtn
+	
+rfcomm_increase_credit_given:
+	set1 mark_ext_patch,mark
+	bpatch patch34_6,mem_patch34
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_ENABLE
+	fetch 2,mem_current_length
+	rtn blank
+	fetch 1,mem_credit_given
+	increase 1,pdata
+	store 1,mem_credit_given
+	rtn
+
+spp_process_rx_data:
+	fetch 2,mem_cb_receive_spp_data
+	branch callback_func
+
+spp_tx_rfcomm_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch34_7,mem_patch34
+	//credit
+	fetch 1,mem_remote_credits
+	rtn blank
+	increase -1,pdata
+	store 1,mem_remote_credits
+	fetch 2,mem_pn_max_frame_size
+	fetcht 2,mem_current_packet_length
+	isub temp,null
+	branch ssp_tx_rfcomm_from_uart,positive
+	store 2,mem_current_packet_length
+ssp_tx_rfcomm_from_uart:
+	fetch 1,mem_credit_given
+	branch ssp_tx_rfcomm_from_uart_without_credit,blank
+	jam 1,mem_rfcomm_send_offset
+	fetch 1,mem_HIUfcs_SPP_WCredits
+	store 1,mem_rfcomm_send_fcs
+	setarg RSP_RX_UIH_WDATA
+	store 1,mem_rfcomm_send_frame_type
+	branch ssp_tx_rfcomm_from_uart_common
+ssp_tx_rfcomm_from_uart_without_credit:
+	jam 0,mem_rfcomm_send_offset
+	fetch 1,mem_HIUfcs_SPP
+	store 1,mem_rfcomm_send_fcs
+	setarg RSP_TX_UIH
+	store 1,mem_rfcomm_send_frame_type
+ssp_tx_rfcomm_from_uart_common:
+	set1 mark_ext_patch,mark
+	bpatch patch35_0,mem_patch35
+	fetch 2,mem_current_packet_length
+	sub pdata,127,null
+	branch ssp_tx_rfcomm_from_uart_common0,positive
+	fetch 1,mem_rfcomm_send_offset
+	increase 1,pdata
+	store 1,mem_rfcomm_send_offset
+ssp_tx_rfcomm_from_uart_common0:
+	call get_rfcomm_snd_adss
+	fetch 2,mem_current_packet_length
+	increase 8,pdata	//fcs + rfcommhead + l2caphead == 8
+	fetcht 1,mem_rfcomm_send_offset
+	iadd temp,rega
+	//rfcomm payload
+	call l2cap_malloc
+	store 2,mem_rfcomm_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_rfcomm_tx_payload_ptr
+	copy pdata,contw
+	fetch 1,mem_rfcomm_send_adss
+	istore 1,contw
+	fetch 1,mem_rfcomm_send_frame_type
+	istore 1,contw
+	call ssp_tx_write_length
+	call ssp_tx_write_given_credit
+	set1 mark_ext_patch,mark
+	bpatch patch35_1,mem_patch35
+	fetch 2,mem_nl_rx_data_src		//src
+	copy pdata,contru
+	fetch 2,mem_current_packet_length
+	copy pdata,loopcnt
+	call uart_copy_rx_bytes_fast
+	copy contw,temp
+	copy contru,pdata
+	store 2,mem_nl_rx_data_src
+	copy temp,contw	
+	fetch 1,mem_rfcomm_send_fcs
+	istore 1,contw
+	fetch 2,mem_rfcomm_tx_buff_ptr
+	copy pdata,contw
+	fetch 2,mem_current_packet_length
+	fetcht 1,mem_rfcomm_send_offset
+	iadd temp,pdata
+	increase 4,pdata
+	istore 2,contw
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw
+	jam 0,mem_credit_given	//whatever mem_credit_given is set to 0
+	fetch 2,mem_nl_rx_len_all
+	beq 0,module_hci_command_tx_spp_tx_complete
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	rtn
+
+ssp_tx_write_length:
+	set1 mark_ext_patch,mark
+	bpatch patch35_2,mem_patch35
+	fetch 2,mem_current_packet_length
+	sub pdata,0x7f,null
+	nbranch ssp_tx_write_long_packet,positive
+	lshift pdata,pdata
+	set1 0,pdata
+	istore 1,contw
+	rtn
+ssp_tx_write_long_packet:
+	fetch 2,mem_current_packet_length
+	rshift3 pdata,pdata
+	rshift4 pdata,temp
+	and_into 0x7f,pdata
+	lshift pdata,pdata
+	set0 0,pdata
+	istore 1,contw
+	istoret 1,contw
+	rtn
+ssp_tx_write_given_credit:
+	fetch 1,mem_credit_given
+	rtn blank
+	istore 1,contw
+	rtn
+
+	
+
+
+scheduler_process:
+	set1 mark_ext_patch,mark
+	bpatch patch35_3,mem_patch35
+	call check_51cmd
+	call app_process_bb_event
+	call process_conn_sm
+/* check the connection state sequence byte */
+	set1 mark_ext_patch,mark
+	bpatch patch35_4,mem_patch35
+	call sp_calc_sequence
+	call simple_pairing_sequence
+	call master_simple_paring_sequence
+//return if it is hci mode. 'cause the following is host part.
+//notify BB to tx a l2cap packet
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	//for conn to MTK 
+	call l2cap_call_proc_sigal_pending
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	set1 mark_ext_patch,mark
+	bpatch patch35_5,mem_patch35
+//to generat a new l2cap packet
+	call process_upper_sm
+	call l2cap_send_config_req
+	call rfcomm_send_more_pkt//use this function to send msc_cmd after msc_rep sent
+scheduler_process0:
+	call scheduler_tx_disconnect_hid //may not used
+	set1 mark_ext_patch,mark
+	bpatch patch35_6,mem_patch35
+//	call l2cap_malloc_is_fifo_full
+//	nrtn blank
+	branch app_process_bt
+	
+scheduler_tx_disconnect_hid:
+	fetch 1,mem_CONTROL_tasks		
+	bbit1 L2CAP_DISCONNECT_INTERRUPT,L2CAP_disconnect_interrupt_req
+	bbit1 L2CAP_DISCONNECT_CONTROL,L2CAP_disconnect_control_req
+	rtn
+	
+scheduler_tx_l2cap_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch35_7,mem_patch35
+	call l2cap_malloc_is_fifo_empty
+	rtn blank //empty
+	fetch 1,mem_op
+	rtnbit1 op_txl2cap
+	call l2cap_malloc_fifo_out
+	store 2,mem_txptr
+	copy pdata,contr
+	ifetch 2,contr
+	increase 4,pdata
+	store 2,mem_tx_len
+	jam 6,mem_tx_lch//start pkt
+	set1 mark_ext_patch,mark
+	bpatch patch36_0,mem_patch36
+	fetch 2,mem_l2cap_tx_multi_offset
+	branch scheduler_tx_l2cap_start_pkt,blank
+	fetch 1,mem_op
+	rtnbit0 op_pkt_comp
+	set0 op_pkt_comp,pdata
+	store 1,mem_op
+	jam 5,mem_tx_lch//continue pkt
+	fetcht 2,mem_l2cap_tx_multi_offset
+	fetch 2,mem_txptr
+	iadd temp,pdata
+	store 2,mem_txptr
+	fetch 2,mem_tx_len
+	isub temp,pdata
+	store 2,mem_tx_len
+scheduler_tx_l2cap_start_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch36_1,mem_patch36
+	fetch 2,mem_tx_len
+	branch assert,blank
+	arg l2cap_max_pkt_len,temp //max len of dh3 pkt
+	isub temp,pdata
+	nbranch scheduler_Tx_l2cap_last_pkt,positive
+	set1 mark_ext_patch,mark
+	bpatch patch36_2,mem_patch36
+	storet 2,mem_tx_len //l2cap_max_pkt_len
+	fetch 2,mem_l2cap_tx_multi_offset
+	iadd temp,pdata
+	store 2,mem_l2cap_tx_multi_offset
+	branch scheduler_Tx_l2cap_pkt_end
+scheduler_Tx_l2cap_last_pkt:
+	setarg 0
+	store 2,mem_l2cap_tx_multi_offset
+scheduler_Tx_l2cap_pkt_end:
+	fetch 1,mem_op
+	set1 op_txl2cap,pdata
+	store 1,mem_op
+	rtn
+
+scheduler_start_upper_sm:
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_HID,scheduler_start_upper_sm_hid
+	jam UPPERSM_RECONN_SDP_CONN,mem_upper_sm_reconn
+	rtn
+scheduler_start_upper_sm_hid:
+	jam UPPERSM_RECONN_HID_CTRL_CONN,mem_upper_sm_reconn
+	rtn
+	
+process_upper_sm:
+	fetch 1,memui_reconnect_mode
+	nbranch process_upper_sm_reconn,blank
+process_upper_sm_remote_page:
+	fetch 1,mem_upper_sm_remote_page
+	//beq UPPERSM_RP_IDLE,process_upper_sm_rp_idle
+	rtn blank
+	//nothing to do when remote page to create a connection.
+	jam 0,mem_upper_sm_remote_page
+process_upper_sm_rp_wait:
+	rtn
+
+
+process_upper_sm_reconn:
+	set1 mark_ext_patch,mark
+	bpatch patch36_3,mem_patch36
+	fetch 1,mem_upper_sm_reconn
+	rtn blank
+	beq UPPERSM_RECONN_SDP_CONN,process_upper_sm_reconn_sdp_conn
+	beq UPPERSM_RECONN_SDP_CONN_WAIT,process_upper_sm_reconn_sdp_conn_wait
+	beq UPPERSM_RECONN_SDP_CFG,process_upper_sm_reconn_sdp_cfg
+	beq UPPERSM_RECONN_SDP_CFG_WAIT,process_upper_sm_reconn_sdp_cfg_wait
+	beq UPPERSM_RECONN_SS_SPP,process_upper_sm_reconn_ss_spp
+	beq UPPERSM_RECONN_SS_SPP_WAIT,process_upper_sm_reconn_ss_spp_wait
+	beq UPPERSM_RECONN_SDP_DISCONN,process_upper_sm_reconn_sdp_disconn
+	beq UPPERSM_RECONN_SDP_DISCONN_WAIT,process_upper_sm_reconn_sdp_disconn_wait
+	beq UPPERSM_RECONN_HID_CTRL_CONN,process_upper_sm_reconn_hid_ctrl_conn
+	beq UPPERSM_RECONN_HID_CTRL_CONN_WAIT,process_upper_sm_reconn_hid_ctrl_conn_wait
+	beq UPPERSM_RECONN_HID_CTRL_CFG,process_upper_sm_reconn_hid_ctrl_cfg
+	beq UPPERSM_RECONN_HID_CTRL_CFG_WAIT,process_upper_sm_reconn_hid_ctrl_cfg_wait
+	beq UPPERSM_RECONN_HID_INT_CONN,process_upper_sm_reconn_hid_int_conn
+	beq UPPERSM_RECONN_HID_INT_CONN_WAIT,process_upper_sm_reconn_hid_int_conn_wait
+	beq UPPERSM_RECONN_HID_INT_CFG,process_upper_sm_reconn_hid_int_cfg
+	beq UPPERSM_RECONN_HID_INT_CFG_WAIT,process_upper_sm_reconn_hid_int_cfg_wait
+	beq UPPERSM_RECONN_RFCOMM_CONN,process_upper_sm_reconn_rfcomm_conn
+	beq UPPERSM_RECONN_RFCOMM_CONN_WAIT,process_upper_sm_reconn_rfcomm_conn_wait
+	beq UPPERSM_RECONN_RFCOMM_CFG,process_upper_sm_reconn_rfcomm_cfg
+	beq UPPERSM_RECONN_RFCOMM_CFG_WAIT,process_upper_sm_reconn_rfcomm_cfg_wait
+	beq UPPERSM_RECONN_RFCOMM_SABM,process_upper_sm_reconn_rfcomm_sabm
+	beq UPPERSM_RECONN_RFCOMM_SABM_WAIT,process_upper_sm_reconn_rfcomm_sabm_wait
+	beq UPPERSM_RECONN_SPP_CMD_PN,process_upper_sm_reconn_spp_cmd_pn
+	beq UPPERSM_RECONN_SPP_CMD_PN_WAIT,process_upper_sm_reconn_spp_cmd_pn_wait
+	beq UPPERSM_RECONN_SPP_SABM,process_upper_sm_reconn_spp_sabm
+	beq UPPERSM_RECONN_SPP_SABM_WAIT,process_upper_sm_reconn_spp_sabm_wait
+	beq UPPERSM_RECONN_SPP_CMD_MS,process_upper_sm_reconn_spp_cmd_ms
+	beq UPPERSM_RECONN_SPP_CMD_MS_WAIT,process_upper_sm_reconn_spp_cmd_ms_wait
+process_upper_sm_reconn_wait:
+	rtn
+process_upper_sm_reconn_sdp_conn:
+	call upper_sm_send_sdp_conn //return n-user if sending failed
+	jam UPPERSM_RECONN_SDP_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_sdp_state
+	rtn
+process_upper_sm_reconn_sdp_cfg:
+	jam UPPERSM_RECONN_SDP_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	rtnbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ
+	jam UPPERSM_RECONN_SDP_CFG,mem_upper_sm_reconn
+	call upper_sm_send_sdp_cfg //return n-user if sending failed
+	jam UPPERSM_RECONN_SDP_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+	rtn
+process_upper_sm_reconn_ss_spp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	call upper_sm_send_ss_spp
+	jam UPPERSM_RECONN_SS_SPP_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_sdp_disconn:
+	call upper_sm_send_sdp_disconn
+	jam UPPERSM_RECONN_SDP_DISCONN_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_hid_ctrl_conn:
+	call upper_sm_send_hid_ctrl_conn
+	jam UPPERSM_RECONN_HID_CTRL_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_hid_control_state
+	rtn
+process_upper_sm_reconn_hid_ctrl_cfg:    
+	call upper_sm_send_hid_ctrl_cfg
+	jam UPPERSM_RECONN_HID_CTRL_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_control_state
+	rtn
+process_upper_sm_reconn_hid_int_conn:
+	call upper_sm_send_hid_int_conn
+	jam UPPERSM_RECONN_HID_INT_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+process_upper_sm_reconn_hid_int_cfg:    
+	call upper_sm_send_hid_int_cfg
+	jam UPPERSM_RECONN_HID_INT_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+process_upper_sm_reconn_rfcomm_conn:
+	call upper_sm_send_rfcomm_conn
+	jam UPPERSM_RECONN_RFCOMM_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_rfcomm_cfg: 
+	call upper_sm_send_rfcomm_cfg
+	jam UPPERSM_RECONN_RFCOMM_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_rfcomm_sabm:
+	call upper_sm_send_rfcomm_sabm
+	jam UPPERSM_RECONN_RFCOMM_SABM_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_SABM,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_spp_cmd_pn: 
+	call upper_sm_send_spp_cmd_pn
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_CMD
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_CMD_PN_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_spp_sabm:   
+	call upper_sm_send_spp_sabm
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_SABM
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_SABM_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_remote_spp_channel //address in pdata
+	lshift3 pdata,pdata
+	or_into 3,pdata
+	arg mem_HIUfcs_SPP,temp // mem_HIUfcs_spp_WCredits in regB++
+	storet 2,mem_contw_temp
+	branch rfcomm_save_FCS_uih
+process_upper_sm_reconn_spp_cmd_ms: 
+	call upper_sm_send_spp_cmd_ms
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_CMD
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_CMD_MS_WAIT,mem_upper_sm_reconn
+	rtn
+
+process_upper_sm_reconn_sdp_conn_wait:
+	fetch 1,mem_sdp_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_SDP_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_sdp_cfg_wait:
+	fetch 1,mem_sdp_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_SS_SPP ,mem_upper_sm_reconn
+process_upper_sm_reconn_ss_spp_wait:
+	fetch 1,mem_message_to_uppersm
+	rtnne RECIEVE_SS_REASULT_HF
+	jam 0,mem_message_to_uppersm
+	jam UPPERSM_RECONN_SDP_DISCONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_sdp_disconn_wait:
+	fetch 1,mem_sdp_state
+	nrtn blank
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_HID,process_upper_sm_reconn_setup_hid
+	bbit1 support_SPP,process_upper_sm_reconn_setup_rfcomm
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_hid_ctrl_conn_wait:
+	fetch 1,mem_hid_control_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_HID_CTRL_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_ctrl_cfg_wait:
+	fetch 1,mem_hid_control_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_HID_INT_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_int_conn_wait:  
+	fetch 1,mem_hid_interrupt_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_HID_INT_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_int_cfg_wait:  
+	fetch 1,mem_hid_interrupt_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_SPP,process_upper_sm_reconn_setup_rfcomm
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_rfcomm_conn_wait: 
+	fetch 1,mem_rfcomm_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_RFCOMM_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_rfcomm_cfg_wait:
+	fetch 1,mem_rfcomm_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_RFCOMM_SABM,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_rfcomm_sabm_wait:  
+	fetch 1,mem_rfcomm_state
+	rtnne L2CAP_CHANNEL_RFCOMM_DLCI0_OPENED
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_SPP,process_upper_sm_reconn_setup_spp
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_spp_cmd_pn_wait:
+	fetch 1,mem_spp_state
+	rtnbit0 RFCOMM_CHANNEL_STATE_PN_RES
+	jam UPPERSM_RECONN_SPP_SABM,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_spp_sabm_wait:
+	fetch 1,mem_spp_state
+	rtnbit0 RFCOMM_CHANNEL_STATE_UA
+	jam UPPERSM_RECONN_SPP_CMD_MS ,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_spp_cmd_ms_wait: 
+	fetch 1,mem_spp_state
+	rtnne RFCOMM_CHANNEL_SETUP_COMPLETE
+	branch process_upper_sm_reconn_termination
+
+process_upper_sm_reconn_setup_hid:
+	jam UPPERSM_RECONN_HID_CTRL_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+
+process_upper_sm_reconn_setup_rfcomm:
+	jam UPPERSM_RECONN_RFCOMM_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_setup_spp:
+	jam UPPERSM_RECONN_SPP_CMD_PN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+
+
+
+process_upper_sm_reconn_termination:
+	jam 0,mem_upper_sm_reconn
+	rtn
+upper_sm_send_sdp_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch36_4,mem_patch36
+	call l2cap_malloc_signal_channel
+	setarg PSM_SDP
+	copy pdata,temp
+	setarg L2CAP_SDP_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+	
+upper_sm_send_sdp_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch36_5,mem_patch36
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_SDP_remote_CID
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+	
+upper_sm_send_sdp_disconn:
+	set1 mark_ext_patch,mark
+	bpatch patch36_6,mem_patch36
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_SDP_remote_CID
+	copy pdata,temp
+	arg L2CAP_SDP_channel,timeup
+	call ML2CAP_send_signal_disconn_req
+	fetch 1,mem_sdp_state
+	set0 L2CAP_CHANNEL_STATE_RCV_CFG_RES ,pdata
+	store 1,mem_sdp_state
+	rtn
+//service search
+upper_sm_send_ss_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch36_7,mem_patch36
+	call l2cap_malloc_sdp_channel
+	call sdp_send_spp_request
+	branch MSDP_send_req_done
+
+upper_sm_send_rfcomm_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch37_0,mem_patch37
+	call l2cap_malloc_signal_channel
+	setarg PSM_RFCOMM
+	copy pdata,temp
+	setarg L2CAP_RFCOMM_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+
+upper_sm_send_rfcomm_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch37_1,mem_patch37
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_rfcomm_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_hid_ctrl_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch37_2,mem_patch37
+	call l2cap_malloc_signal_channel
+	setarg PSM_HID_control
+	copy pdata,temp
+	setarg L2CAP_HID_Control_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+
+upper_sm_send_hid_ctrl_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch37_3,mem_patch37
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_hid_ctrl_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_hid_int_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch37_4,mem_patch37
+	call l2cap_malloc_signal_channel
+	setarg PSM_HID_interrupt
+	copy pdata,temp
+	setarg L2CAP_HID_interrupt_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+	
+upper_sm_send_hid_int_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch37_5,mem_patch37
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_hid_int_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_rfcomm_sabm:
+	set1 mark_ext_patch,mark
+	bpatch patch37_6,mem_patch37
+	call l2cap_malloc_rfcomm_channel
+	//force 3,temp //address
+	jam 3,mem_current_adss
+	jam 0x1c,mem_current_fcs
+	call rfcomm_send_sabm
+	jam 1,mem_rfcomm_initiator
+	rtn
+
+upper_sm_send_spp_cmd_pn:
+	set1 mark_ext_patch,mark
+	bpatch patch37_7,mem_patch37
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_remote_spp_channel
+	call channel_to_dlci
+	storet 1,mem_pn_dlci
+	branch rfcomm_send_param_neg_cmd
+
+upper_sm_send_spp_sabm:
+	set1 mark_ext_patch,mark
+	bpatch patch38_0,mem_patch38
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd
+	call rfcomm_calculate_FCS_sabm //sabm fcs use once only,not need to save
+	store 1,mem_current_fcs
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd
+	storet 1,mem_current_adss
+	branch rfcomm_send_sabm
+
+upper_sm_send_spp_cmd_ms:
+	set1 mark_ext_patch,mark
+	bpatch patch38_1,mem_patch38
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd //address in temp
+	branch rfcomm_send_modem_status_cmd
+
+
+
+/**********************************************************************/
+/* Subroutine: sdp_process                                         */
+/* Process Service Discovery Request                                  */
+/* Called from L2CAP, check PDUID, branch to different req processings*/
+/*                                                                    */  
+/* Input:       mem_L2CAP_Rx_payload                                  */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+sdp_process:
+	set1 mark_ext_patch,mark
+	bpatch patch38_2,mem_patch38
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+	ifetch 1,contr
+	copy pdata,regB				/* PDUID */
+	store 1,mem_sdp_pduid
+	ifetch 2,contr
+	store 2,mem_sdp_transactionid			/* save transaction id */
+	ifetch 1,contr				/* higher byte of parameter length */
+	lshift8 pdata,timeup				
+	ifetch 1,contr				/* lower byte of parameter length */
+	iadd timeup,timeup				/* parameter length stored in "timeup" */
+	set1 mark_ext_patch,mark
+	bpatch patch38_3,mem_patch38
+	deposit regB						/* PDUID  */
+	beq 2,servicesearch_req			
+	beq 4,patch_serviceattribute_req
+	beq 6,patch_servicesearchattribute_req
+	beq 7,servicesearchattribute_res
+	branch sdp_insufficient_resource
+
+/**********************************************************************/
+/* servicesearch_req			                              */
+/* Processing Service Search Request                                  */
+/* Call: ask_serviceclassid, empty_response                     */
+/*                                                                    */  
+/* Input:       mem_L2CAP_Rx_payload pointer in contr                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+servicesearch_req:
+	call ask_serviceclassid
+	compare 1,temp,0xff
+	branch empth_sa_rsp,true
+	compare 0xff,temp,0xff
+	branch sdp_invalid_reqest_syntax,true
+
+	ifetch 2,contr				/* max aservice record count */
+	store 2,mem_sdp_record_maxcnt
+	increase -2,timeup
+
+	increase -1,timeup				/* continuation state 1 byte (0) */
+	nbranch sdp_invalid_pdu_size,zero		/* invalid pdu size */
+	arg mem_uuid_search_pat,timeup
+	ifetch 2,timeup
+	rtn blank
+	increase 2,timeup
+	call search_uuid
+	call l2cap_get_sdp_tx_payload			/* put the pointer to Tx buffer  */
+	force 3,pdata						/* PDUID 3, Service Search Response */
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid			/* write transaction id */
+	istore 2,contw
+	lshift2 queue,pdata
+	add pdata,5,pdata
+	add pdata,5,regC
+	byteswap pdata,pdata
+	istore 2,contw							/* write parLength */
+	deposit queue
+	byteswap pdata,pdata
+	istore 2,contw							/* write TotSrvRecCount */
+	istore 2,contw							/* write CurSrvRecCount */
+	arg mem_handle_list,contr
+	copy queue,loopcnt
+	branch servicesearch_req_blank,zero
+servicesearch_req_loop:	
+	ifetch 4,contr
+	istore 4,contw
+	loop servicesearch_req_loop
+servicesearch_req_blank:	
+	force 0,pdata
+	istore 1,contw							/* continuation state */
+	deposit regC
+	store 1,mem_sdp_tx_pkt_length
+	branch assert,blank
+	rtn
+
+/**********************************************************************/
+/* serviceattribute_req			                              */
+/* Processing Service Attribute Request                               */
+/* Call: ask_attributeid, empty_response (if 3 stored attr.     */
+/* not asked) or answer_attributelist                              */  
+/* Input:       mem_L2CAP_Rx_payload pointer in contr                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+patch_serviceattribute_req:
+	ifetch 4,contr				/* service record handle */
+	store 4,mem_sdp_record_handle	 
+	increase -4,timeup
+	iforce temp
+	ifetch 2,contr				/* max attribute byte count */
+	byteswap pdata,pdata
+	increase -18,pdata	
+	store 2,mem_sdp_attribute_maxbyte
+	increase -2,timeup
+	call dataelementtype6		/* result: data size stored in regA */
+	branch sdp_invalid_reqest_syntax,zero
+	compare 5,regA,0xff
+	//branch serviceattribute_req_all,true
+	branch patch_serviceattribute_judge_WholeRangle,true
+patch_serviceattribute_isnot_wholerangle:
+	arg mem_attrib_list,contw
+	force 0,queue
+	branch patch_serviceattribute_req_loop
+patch_serviceattribute_judge_wholerangle:
+	ifetch 1,contr
+	bne 0xa,sdp_invalid_reqest_syntax
+	ifetch 2,contr
+	nbranch patch_serviceattribute_judge_WholeRangle_false1,blank
+	ifetch 1,contr
+	bne 0xff,patch_serviceattribute_judge_WholeRangle_false2
+	ifetch 1,contr
+	bne 0xff,patch_serviceattribute_judge_WholeRangle_false3		//also exist potential bug because mem_attrib_list length is only 7f
+	increase -5,contr
+	branch serviceattribute_req_all
+patch_serviceattribute_judge_wholerangle_false3:
+	increase -5,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_judge_wholerangle_false2:
+	increase -4,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_judge_wholerangle_false1:
+	increase -3,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_req_loop:	
+	ifetch 1,contr
+	beq 0x09, patch_serviceattribute_req_one_id
+	beq 0x0a, patch_serviceattribute_req_range_id
+patch_serviceattribute_req_range_id:
+	ifetch 2, contr
+	istore 2, contw
+	increase 1,queue
+	byteswap pdata,regB
+	ifetch 2, contr
+	byteswap pdata,pdata
+patch_serviceattribute_req_range_id_increase:	
+	increase 1, regB
+	isub regB, null
+	nbranch patch_serviceattribute_req_range_id_finish,positive
+	copy pdata, regC
+	byteswap regB,pdata
+	istore 2, contw
+	increase 1,queue
+	copy regC, pdata
+	branch patch_serviceattribute_req_range_id_increase
+patch_serviceattribute_req_range_id_finish:
+	increase -5,timeup
+	increase -5,regA
+	branch patch_serviceattribute_req_check_next_id
+patch_serviceattribute_req_one_id:
+	ifetch 2,contr
+	istore 2,contw //save the attribute id in mem_attrib_list
+	increase 1,queue
+	increase -3,timeup
+	increase -3,regA
+patch_serviceattribute_req_check_next_id:	
+	nbranch sdp_invalid_reqest_syntax,positive
+	nbranch patch_serviceattribute_req_loop,zero
+	increase -1,timeup
+	nbranch sdp_invalid_reqest_syntax,zero
+	
+	call l2cap_get_sdp_tx_payload
+	increase 10,contw//arg mem_SDP_Tx_payload+10,contw
+	arg mem_attrib_list,regA
+patch_answer_handle_attributelist_next:
+	set1 mark_ext_patch,mark
+	bpatch patch38_4,mem_patch38
+	copy queue,pdata
+	branch answer_handle_attributelist_end,blank
+	ifetch 2,regA
+	branch answer_handle_attributelist_end,blank
+	iforce regB /* regB is the attribute ID */
+	fetch 4,mem_sdp_record_handle	
+	iforce temp
+	call search_handle_attrib
+	branch patch_answer_handle_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call patch_sdp_data_len
+	branch patch_answer_handle_attributelist_notfound,blank
+	iforce loopcnt	
+	call memcpy
+patch_answer_handle_attributelist_notfound:
+	increase 2,regA
+	increase -1, queue
+	branch patch_answer_handle_attributelist_next
+
+answer_handle_attributelist_end:
+	set1 mark_ext_patch,mark
+	bpatch patch38_5,mem_patch38
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata//setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,regA
+	byteswap regA, pdata
+	add temp,8,regB//store 2,mem_SDP_Tx_payload+8
+	istore 2,regB
+	increase 3,regA
+	byteswap regA, pdata
+	add temp,5,regB//store 2,mem_SDP_Tx_payload+5
+	istore 2,regB
+	increase 3,regA
+	byteswap regA, pdata
+	add temp,3,regB//store 2,mem_SDP_Tx_payload+3// ParLength
+	istore 2,regB	
+	increase 5,regA
+	copy regA,pdata
+	store 2,mem_sdp_tx_pkt_length
+	setarg 0x36
+	add temp,7,regB//jam 0x36, mem_SDP_Tx_payload+7
+	istore 1,regB
+	setarg 5
+	istore 1,temp//jam 5,mem_SDP_Tx_payload	// PDU ID
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regB//store 2,mem_SDP_Tx_payload+1
+	istore 2,regB
+	rtn
+serviceattribute_req_all:	
+	ifetch 1,contr
+	bne 0xa,sdp_invalid_reqest_syntax
+	ifetch 2,contr
+	nbranch sdp_invalid_reqest_syntax,blank
+	ifetch 1,contr
+	bne 0xff,sdp_invalid_reqest_syntax
+	ifetch 1,contr
+	bne 0xff,sdp_invalid_reqest_syntax
+	increase -5,timeup
+	ifetch 1, contr
+	beq 0, continue_zero
+	beq 1, continue_one_byte
+	beq 2, continue_two_byte
+continue_zero:	
+	store 2, mem_sdp_continue_byte
+	increase -1,timeup				/* continuation state byte (0) */
+	branch continue_end
+continue_one_byte:
+	ifetch 1, contr
+	store 2, mem_sdp_continue_byte
+	increase -2,timeup				/* continuation state byte (1) */
+	branch continue_end
+continue_two_byte:
+	ifetch 2, contr
+	byteswap pdata,pdata
+	store 2, mem_sdp_continue_byte	
+	increase -3,timeup				/* continuation state byte (2) */
+continue_end:
+	nbranch sdp_invalid_pdu_size,zero		/* invalid pdu size */
+	set1 mark_ext_patch,mark
+	bpatch patch38_6,mem_patch38
+	call 	search_handle
+	nbranch sdp_invalid_service_record_handle,zero
+	copy contr,regA
+	call l2cap_get_sdp_tx_payload
+	copy regA,contr
+	increase 3,contw//arg mem_SDP_Tx_payload+3,contw
+	copy contr,timeup //sdp start pointer
+	call sdp_get_data
+	copy pdata, regA //sdp total length
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regB
+	copy regA,pdata
+	isub regB,regB //total_length - continue_byte in regB
+	fetch 2, mem_sdp_attribute_maxbyte
+	isub regB, null
+	nbranch fragment_sdp, positive
+	// the last fragment
+	disable user
+	fetch 2, mem_sdp_continue_byte
+	branch fisrt_fragment,blank
+	iadd timeup, contr //set the read pointer
+	increase 3,regB //include the total length field, 3 bytes
+	copy regB, loopcnt
+	copy loopcnt, pdata
+	increase 3, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	copy loopcnt, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	branch answer_attributelist_full_loop
+fisrt_fragment:
+	add regA,6,loopcnt
+	branch parlength_continue_byte, user
+	byteswap loopcnt,pdata
+	branch parlength_continue_byte_end
+parlength_continue_byte:
+	copy loopcnt, pdata
+	increase 2, pdata
+	byteswap pdata,pdata
+parlength_continue_byte_end:
+	istore 2,contw				/* ParLength */
+	increase -3,loopcnt
+	byteswap loopcnt,pdata			
+	istore 2,contw				/* AttrListByteCount */
+	copy timeup,contr
+	branch answer_attributelist_full_loop
+fragment_sdp:
+	enable user
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, regA
+	copy pdata, loopcnt
+	fetch 2, mem_sdp_continue_byte
+	branch fisrt_fragment,blank
+	iadd timeup, contr
+	copy regA,pdata
+	increase 5,pdata
+	byteswap pdata,pdata	
+	istore 2, contw
+	copy regA,pdata
+	byteswap pdata,pdata
+	istore 2, contw
+answer_attributelist_full_loop:	
+	ifetch 1,contr
+	istore 1,contw
+	loop answer_attributelist_full_loop
+	nbranch last_frag_continue, user
+	force 2,pdata
+	istore 1,contw
+	copy contr, pdata
+	isub timeup, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	branch sdp_frag_end
+last_frag_continue:
+	force 0,pdata
+	istore 1,contw
+sdp_frag_end:	
+	fetch 2,mem_sdp_tx_payload_ptr//setarg mem_SDP_Tx_payload
+	isub contw,pdata
+	sub pdata,0,pdata
+	store 2,mem_sdp_tx_pkt_length
+	call l2cap_get_sdp_tx_payload//jam 5,mem_SDP_Tx_payload
+	setarg 5
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid
+	istore 2,contw//store 2,mem_SDP_Tx_payload+1
+	rtn			
+/**********************************************************************/
+/* servicesearchattribute_req                          		      */
+/* Processing Service Search Attribute Request                        */
+/* Call: ask_serviceclassid, ask_attributeid, empty_response */
+/*       or answer_attributelist                                   */  
+/* Input:       contr                                                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length             */
+/*                                                                    */
+/**********************************************************************/     
+patch_servicesearchattribute_req:
+	//compare 29,timeup,0xff
+	//branch empty_ssa_rsp,true
+	call ask_serviceclassid
+	compare 0xff,temp,0xff
+	branch patch_servicesearchattribute_req_all,true
+	ifetch 2,contr				/* max attribute byte count */
+	byteswap pdata,pdata
+	increase -18,pdata	
+	store 2,mem_sdp_attribute_maxbyte
+	increase -2,timeup
+	call dataelementtype6
+	arg mem_attrib_list,contw
+	force 0,queue
+patch_servicesearchattribute_req_loop:	
+	ifetch 3,contr //service recorde handle 0x0a0000ffff
+	bne 0x09,patch_servicesearchattribute_req_all
+patch_servicesearchattribute_req_uuid:
+	rshift8 pdata,pdata
+	istore 2,contw //save the attribute id in mem_attrib_list
+	increase 1,queue
+	increase -3,timeup
+	increase -3,regA
+	nbranch sdp_invalid_reqest_syntax,positive
+	nbranch patch_servicesearchattribute_req_loop,zero
+	increase -1,timeup
+	nbranch sdp_invalid_reqest_syntax,zero
+patch_servicesearchattribute_req_search:
+	call l2cap_get_sdp_tx_payload
+	increase 13,contw//arg mem_SDP_Tx_payload+13,contw
+	fetch 2,mem_uuid_search_pat
+	iforce regC
+	arg mem_attrib_list,regA
+patch_answer_attributelist_next:	
+	ifetch 4,regA
+	branch patch_answer_attributelist_end,blank
+	ifetch 2,regA
+	iforce regB						/* regB is the attribute ID */
+	call search_attrib
+	branch patch_answer_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call patch_sdp_data_len
+	iforce loopcnt	
+patch_answer_attributelist_attrib_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop patch_answer_attributelist_attrib_loop
+patch_answer_attributelist_notfound:
+	increase 2,regA
+	branch patch_answer_attributelist_next
+patch_servicesearchattribute_req_all:
+	set1 mark_ext_patch,mark
+	bpatch patch38_7,mem_patch38
+	//bne 0x0a,sdp_invalid_reqest_syntax
+	//rshift8 pdata,pdata
+	//nbranch sdp_invalid_reqest_syntax,blank
+	ifetch 1,contr
+	//bne 0xff,sdp_invalid_reqest_syntax
+	ifetch 1,contr
+	//bne 0xff,sdp_invalid_reqest_syntax
+	increase -5,timeup
+	increase -5,rega
+	nbranch sdp_invalid_reqest_syntax,positive
+	ifetch 1,contr
+	increase -1,timeup
+	jam 0,mem_sdp_continue_byte
+	jam 0,mem_sdp_continue_byte+1
+	nbranch patch_servicesearchattribute_req_all_continue,blank
+	arg mem_uuid_search_pat,timeup
+	ifetch 2,timeup
+	//rtn blank
+	increase 2,timeup
+	call search_uuid  //handle number in queue
+	deposit queue
+	store 1,mem_handle_humber
+	branch empty_ssa_rsp,blank
+	arg 0,queue
+	call l2cap_get_sdp_tx_payload
+	increase 10,contw//arg mem_SDP_Tx_payload+10,contw
+	branch servicesearchattribute_req_next_handle
+
+patch_servicesearchattribute_req_all_continue:
+	ifetch 2,contr
+	increase -2,timeup
+	byteswap pdata,pdata
+	store 2, mem_sdp_continue_byte	
+	arg mem_uuid_search_pat,timeup
+	ifetch 2,timeup
+	//rtn blank
+	increase 2,timeup
+	call search_uuid  //handle number in queue
+	deposit queue
+	store 1,mem_handle_humber
+	branch empty_ssa_rsp,blank
+	arg 0,queue
+	call l2cap_get_sdp_tx_payload
+	increase 7,contw//arg mem_SDP_Tx_payload+10,contw
+	branch servicesearchattribute_req_next_handle_continue
+	
+patch_answer_attributelist_end:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,13,pdata//setarg mem_SDP_Tx_payload+13
+	isub contw,pdata
+	branch patch_no_attribute_return,zero
+	sub pdata,0,pdata
+	add temp,12,regB//store 1,mem_SDP_Tx_payload+12
+	istore 1,regB
+	increase 3,pdata
+	add temp,9,regB//store 1,mem_SDP_Tx_payload+9
+	istore 1,regB
+	increase 3,pdata
+	byteswap pdata,pdata
+	add temp,5,regB//store 2,mem_SDP_Tx_payload+5
+	istore 2,regB		/* AttrListByteCount */
+	rshift8 pdata,pdata
+	increase 3,pdata
+	byteswap pdata,pdata
+	add temp,3,regB//store 2,mem_SDP_Tx_payload+3
+	istore 2,regB		/* ParLength */
+	rshift8 pdata,pdata
+	increase 5,pdata
+	store 1,mem_sdp_tx_pkt_length	/*packet length*/
+	
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regB//mem_SDP_Tx_payload+1
+	istore 2,regB
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload//PDU ID 
+	//jam 0,mem_SDP_Tx_payload+8		
+	//jam 0x36,mem_SDP_Tx_payload+7
+	//jam 0,mem_SDP_Tx_payload+11		
+	//jam 0x36,mem_SDP_Tx_payload+10
+	setarg 0x0036
+	add temp,7,regB
+	istore 2,regB
+	add temp,10,regB
+	istore 2,regB
+	rtn
+patch_no_attribute_return:
+	jam 10,mem_sdp_tx_pkt_length
+	call l2cap_get_sdp_tx_payload
+	//jam 7,mem_SDP_Tx_payload	//PDU ID
+	setarg 7
+	istore 1,contw 
+	fetch 2,mem_sdp_transactionid
+	istore 2,contw
+	//store 2,mem_SDP_Tx_payload+1
+	//jam 0,mem_SDP_Tx_payload+3
+	//jam 5,mem_SDP_Tx_payload+4	 //ParLength =5
+	setarg 0x0500
+	istore 2,contw
+	//jam 0,mem_SDP_Tx_payload+5
+	//jam 2,mem_SDP_Tx_payload+6	// AttrListByteCount =2
+	setarg 0x0200
+	istore 2,contw
+	//jam 0x35,mem_SDP_Tx_payload+7
+	//jam 0,mem_SDP_Tx_payload+8
+	//jam 0,mem_SDP_Tx_payload+9
+	setarg 0x000035
+	istore 3,contw
+	rtn
+	
+servicesearchattribute_req_attributelist_loop:	
+	ifetch 1,contr
+	istore 1,contw
+	increase 1, regB //mem_sdp_continue_byte
+	increase -1, regA  //mem_sdp_attribute_maxbyte
+	branch servicesearchattribute_req_check_next_ctn,zero
+	loop servicesearchattribute_req_attributelist_loop
+servicesearchattribute_req_check_next_ctn:	
+	copy contw, timeup
+	copy regB, pdata
+	store 2, mem_sdp_continue_byte
+	copy regA, pdata
+	store 2, mem_sdp_attribute_maxbyte
+	branch answer_attributelist_with_ctn_bytes,blank
+	branch answer_attributelist_with_ctn_end, user
+	copy timeup,contw
+servicesearchattribute_req_check_handle:	
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch servicesearchattribute_req_next_handle,zero
+	branch answer_attributelist_end_long
+
+servicesearchattribute_req_attributelist_loop_continue:
+	ifetch 1,contr
+	istore 1,contw
+	increase 1, regb //mem_sdp_continue_byte
+	increase -1, rega  //mem_sdp_attribute_maxbyte
+	branch servicesearchattribute_req_check_next_ctn_continue,zero
+	loop servicesearchattribute_req_attributelist_loop_continue	
+servicesearchattribute_req_check_next_ctn_continue:	
+	copy contw, timeup
+	copy regb, pdata
+	store 2, mem_sdp_continue_byte
+	copy rega, pdata
+	store 2, mem_sdp_attribute_maxbyte
+	branch answer_attributelist_with_ctn_bytes_continue,blank
+	branch answer_attributelist_with_ctn_end, user
+	copy timeup,contw
+servicesearchattribute_req_check_handle_continue:
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch servicesearchattribute_req_next_handle_continue,zero
+	branch answer_attributelist_end_long_continue
+	
+servicesearchattribute_req_next_handle:	
+	arg mem_handle_list,contr
+	lshift2 queue,pdata
+	iadd contr,contr
+	ifetch 4, contr //handle in pdata
+	iforce temp
+	call 	search_handle
+	copy contr,timeup
+	call sdp_get_data
+	add pdata,3,loopcnt
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, regA
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regB
+	copy timeup,contr
+	branch servicesearchattribute_req_attributelist_loop
+
+servicesearchattribute_req_next_handle_continue:
+	arg mem_handle_list,contr
+	lshift2 queue,pdata
+	iadd contr,contr
+	ifetch 4, contr //handle in pdata
+	iforce temp
+	call search_handle
+	copy contr,timeup
+	call sdp_get_data
+	add pdata,3,pdata
+	fetcht 2,mem_sdp_continue_byte
+	isub temp,loopcnt
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, rega
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regb
+	copy timeup,contr
+	iadd contr,contr
+	branch servicesearchattribute_req_attributelist_loop_continue
+	
+answer_attributelist_with_ctn_bytes:
+	arg 0, queue
+	arg 0, regB
+answer_attributelist_calc_attribute_length:	
+	arg mem_handle_list,contr
+	lshift2 queue,pdata
+	iadd contr,contr
+	ifetch 4, contr //handle in pdata
+	iforce temp
+	call 	search_handle
+	call sdp_get_data
+	add pdata,3,pdata
+	iadd regB, regB
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch answer_attributelist_calc_attribute_length,zero
+	
+	copy timeup,contw
+	force 2,pdata
+	istore 1,contw
+	fetch 2, mem_sdp_continue_byte
+	byteswap pdata,pdata
+	istore 2, contw
+	increase -3,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata //setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce regA
+
+	deposit regB //no longer use regB??
+	add temp,9,regB//store 1,mem_SDP_Tx_payload+9
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,8,regB
+	istore 1,regB//store 1,mem_SDP_Tx_payload+8
+	increase 3,regA
+	deposit regA
+	add temp,6,regB
+	istore 1,regB//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	rshift8 pdata,pdata
+	add temp,5,regB
+	istore 1,regB//store 1,mem_SDP_Tx_payload+5
+	increase 5,regA
+	deposit regA
+	add temp,4,regB
+	istore 1,regB//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	rshift8 pdata,pdata
+	add temp,3,regB
+	istore 1,regB//store 1,mem_SDP_Tx_payload+3
+	increase 5,regA
+	deposit regA
+	store 2,mem_sdp_tx_pkt_length	
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	 //PDU ID
+	setarg 0x36
+	add temp,7,regB//jam 0x36,mem_SDP_Tx_payload+7
+	istore 1,regB
+	add temp,1,regB//store 2,mem_SDP_Tx_payload+1
+	fetch 2,mem_sdp_transactionid
+	istore 2,regB
+	rtn
+
+answer_attributelist_with_ctn_bytes_continue:
+	arg 0, queue
+	arg 0, regb
+answer_attributelist_calc_attribute_length_continue:		
+	copy timeup,contw
+	force 2,pdata
+	istore 1,contw
+	fetch 2, mem_sdp_continue_byte
+	byteswap pdata,pdata
+	istore 2, contw
+	increase -3,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,7,pdata //setarg mem_SDP_Tx_payload+7
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce rega
+	
+	deposit rega
+	add temp,6,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	rshift8 pdata,pdata
+	add temp,5,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+5
+	increase 5,rega
+	deposit rega
+	add temp,4,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	rshift8 pdata,pdata
+	add temp,3,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+3
+	increase 5,rega
+	deposit rega
+	store 2,mem_sdp_tx_pkt_length	
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	 //PDU ID
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	fetch 2,mem_sdp_transactionid
+	istore 2,regb
+	rtn	
+	
+answer_attributelist_with_ctn_end:
+	copy timeup,contw
+	force 0,pdata
+	istore 1,contw
+	increase -1, contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,7,pdata//setarg mem_SDP_Tx_payload+7
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce regA
+
+	deposit regA
+	add temp,6,regB//store 1,mem_SDP_Tx_payload+6
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,5,regB//store 1,mem_SDP_Tx_payload+5  /* AttrListByteCount */
+	istore 1,regB
+	increase 3,regA
+	deposit regA
+	add temp,4,regB//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,3,regB//store 1,mem_SDP_Tx_payload+3
+	istore 1,regB
+	increase 5,regA
+	deposit regA
+	store 2,mem_sdp_tx_pkt_length	
+
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	/* PDU ID */
+	
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regB//store 2,mem_SDP_Tx_payload+1
+	istore 2,regB
+	rtn
+	
+answer_attributelist_end_long:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata//setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce regA
+
+	deposit regA
+	add temp,9,regB//store 1,mem_SDP_Tx_payload+9
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,8,regB//store 1,mem_SDP_Tx_payload+8
+	istore 1,regB
+	
+	increase 3,regA
+	deposit regA
+	add temp,6,regB//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,5,regB//store 1,mem_SDP_Tx_payload+5
+	istore 1,regB
+	increase 3,regA
+	deposit regA
+	add temp,4,regB//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,3,regB//store 1,mem_SDP_Tx_payload+3
+	istore 1,regB
+	increase 5,regA
+	deposit regA
+	store 2,mem_sdp_tx_pkt_length	
+	setarg 0x36
+	add temp,7,regB
+	istore 1,regB//jam 0x36,mem_SDP_Tx_payload+7
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	/* PDU ID */
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regB//store 2,mem_SDP_Tx_payload+1
+	istore 2,regB
+	rtn	
+
+answer_attributelist_end_long_continue:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,7,pdata//setarg mem_SDP_Tx_payload+7
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce rega
+	
+	//increase 3,rega
+	deposit rega
+	add temp,6,regb//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,5,regb//store 1,mem_SDP_Tx_payload+5
+	istore 1,regb
+	increase 3,rega
+	deposit rega
+	add temp,4,regb//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,3,regb//store 1,mem_SDP_Tx_payload+3
+	istore 1,regb
+	increase 5,rega
+	deposit rega
+	store 2,mem_sdp_tx_pkt_length	
+	//setarg 0x36
+	//add temp,7,regb
+	//istore 1,regb//jam 0x36,mem_SDP_Tx_payload+7
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	/* PDU ID */
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	istore 2,regb
+	rtn	
+	
+patch_sdp_data_len:
+	copy contr,timeup
+	ifetch 1,contr
+	and pdata,0x07,loopcnt
+	rshift3 pdata,pdata
+	beq 6,patch_sdp_data_len_6
+	beq 1,sdp_data_len_1
+	beq 4,sdp_data_len_6
+	beq 5,sdp_data_len_5
+	branch sdp_data_len_rtn
+patch_sdp_data_len_6:
+	call patch_sdp_get_data_6
+	branch sdp_data_len_rtn
+patch_sdp_get_data_6:
+	deposit loopcnt
+	beq 5,patch_sdp_get_data_6_8bit
+	beq 6,patch_sdp_get_data_6_16bit
+	force 3,loopcnt
+	branch sdp_get_data_1
+patch_sdp_get_data_6_8bit:
+	ifetch 1,contr
+	increase 2,pdata
+	rtn
+patch_sdp_get_data_6_16bit:
+	ifetch 2,contr
+	byteswap pdata,pdata
+	increase 3,pdata
+	rtn
+
+sdp_send_spp_request:
+	call l2cap_get_sdp_tx_payload
+	copy pdata,contw
+	setarg 6//Search Attr Req
+	istore 1,contw
+	setarg sdp_tid_spp					
+	istore 2,contw
+	setarg 0x0f00 //length15
+	istore 2,contw
+	setarg 0x1a0535
+	istore 3,contw
+	setarg 0x0111
+	lshift16 pdata,pdata //UUID
+	istore 4,contw
+	setarg 0x2600 //max return len
+	istore 2,contw
+	setarg 0x0335
+	istore 2,contw
+	setarg 0x0009
+	istore 2,contw
+	setarg 0x0004
+	istore 2,contw
+	jam 0x14,mem_sdp_tx_pkt_length
+	rtn
+
+/**********************************************************************/
+/* servicesearchattribute_res			                      */
+/* Processing Service Search Attribute Response                       */
+/* Call: dataelementtype6, attribute_reading                    */
+/* Input:       contr                                                 */
+/* Output:      mem_sdp_record_handle,mem_sdp_search_failed           */
+/*                                                                    */
+/**********************************************************************/     
+servicesearchattribute_res:
+	copy contr,temp				/* save reading pointer */
+	fetch 2,mem_sdp_transactionid			/* check if this is the response for   */
+	beq sdp_tid_spp,servicesearchattribute_res_spp
+	//no profiles now, hs,hf,pbap,avtarg were cut off
+	//maybe add something about spp
+	branch srchfail
+
+servicesearchattribute_res_spp:
+	copy temp,contr
+	increase -3,timeup
+	copy timeup,pdata
+	beq 2,srchfail// empty response
+	call find_rfcomm_channel_number
+	rtn user
+	store 1,mem_remote_spp_channel
+	jam RECIEVE_SS_REASULT_HF,mem_message_to_uppersm
+	rtn
+
+srchfail:
+	rtn
+	/* find_rfcomm_channel_number	*/
+	/* input att_list_lenth in pdata   	*/
+	/* input att_list_ptr in contr		*/
+	/* output channel_number in pdata	*/
+	/* output failed while user was set	*/
+find_rfcomm_channel_number:
+	enable user
+	copy pdata,loopcnt
+	arg 0x0400,temp //att_descriptor_list
+find_rfcomm_channel_number_loop://find att_descriptor_list
+	ifetch 2,contr
+	isub temp,null
+	branch find_rfcomm_channel_number_find_adl,zero
+	increase -1,contr
+	loop find_rfcomm_channel_number_loop
+	rtn
+find_rfcomm_channel_number_find_adl:
+	arg 0x0300,temp
+find_rfcomm_channel_number_loop2:
+	ifetch 2,contr
+	isub temp,null
+	branch find_rfcomm_channel_number_find_rfcomm,zero
+	increase -1,contr
+	loop find_rfcomm_channel_number_loop2
+	rtn
+find_rfcomm_channel_number_find_rfcomm:
+	ifetch 1,contr
+	ifetch 1,contr
+	disable user
+	rtn
+
+sdp_invalid_service_record_handle:		
+	setarg 0x0200
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_invalid_pdu_size:				
+	setarg 0x0400
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_insufficient_resource:			
+	setarg 0x0600
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_invalid_reqest_syntax:			
+	setarg 0x0300
+	store 2,mem_sdp_error_code
+sdp_error_response:	
+	call l2cap_get_sdp_tx_payload
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid			
+	istore 2,contw
+	setarg 0x0200					
+	istore 2,contw
+	fetch 2,mem_sdp_error_code			
+	istore 2,contw
+	jam  7,mem_sdp_tx_pkt_length
+	rtn
+
+ask_serviceclassid:  
+	set1 mark_ext_patch,mark
+	bpatch patch39_0,mem_patch39
+	force 0,temp					/* use "temp" to mark syntax error or to mark 128 bit uuid */
+	arg mem_uuid_search_pat,contw
+	call dataelementtype6
+	branch asksrv_error,zero
+classidloop:
+	ifetch 1,contr
+	increase -1,regA
+	increase -1,timeup
+	compare 0x18,pdata,0xf8			/* 5 MSB: b00011: uuid */
+	nbranch asksrv_error,true
+	compare 0x04,pdata,0x07			/* 3 LSB: b100 128 bits uuid */
+	nbranch cmp032,true
+	force 1,temp					/* mark it as 128 bit uuid */
+skip2bytes:
+	ifetch 1,contr
+	increase -1,regA	
+	increase -1,timeup
+	bne 0x00, frstbwrong
+	ifetch 1,contr
+	increase -1,regA	
+	increase -1,timeup
+	beq 0x00, cmpuuid
+	branch scndbwrong
+frstbwrong:  
+	increase 1,contr
+	increase -1,regA	
+	increase -1,timeup
+scndbwrong:  
+	increase 2,contr				/* skip 2 bytes, first 2 bytes already wrong */
+	increase -2,regA	
+	increase -2,timeup
+	compare 0x00,temp,0xff                        /* 128 bits or 32 bits ? */
+	branch loopornot,true
+	increase 12,contr				/* skip 12 bytes, first 2 bytes already wrong */
+	increase -12,regA	
+	increase -12,timeup
+	branch loopornot
+cmp032:
+	compare 0x02,pdata,0x07			/* 3 LSB: b010 32 bits uuid */
+	nbranch cmp016,true
+	branch skip2bytes			
+cmp016:
+	compare 0x01,pdata,0x07			/* 3 LSB: b001 16 bit uuid */
+	nbranch asksrv_error,true
+cmpuuid:
+	ifetch 2,contr				/* higher order byte */
+	increase -2,regA
+	increase -2,timeup
+	istore 2,contw
+uuidsize:
+	compare 0x00,temp,0xff			/* is this 128 bits uuid */
+	branch loopornot,true
+	copy contr,temp
+	set1 mark_ext_patch,mark
+	bpatch patch39_1,mem_patch39
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x10, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x80, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x80, wrong12b
+	ifetch 1,contr
+	bne 0x5f, wrong12b
+	ifetch 1,contr
+	bne 0x9b, wrong12b
+	ifetch 1,contr
+	bne 0x34, wrong12b
+	ifetch 1,contr
+	beq 0xfb, chck12dn
+wrong12b:
+	copy temp,contr  
+wrong12b1:
+	increase 12,contr				/* skip 12 bytes */
+	force 0x00,queue
+	force 0x00,temp
+	branch chck12dn
+chck12dn:
+	increase -12,timeup
+	increase -12,regA
+loopornot:
+	compare 0x00,regA,0xff
+	nbranch classidloop,true
+	force 0,pdata
+	istore 2,contw			/* end list with null */
+	rtn,
+asksrv_error:
+	arg 0xff,temp
+	rtn
+
+/**********************************************************************/
+/* Subroutine: dataelementtype6                                    */
+/* Parse Data Element Sequence, obtain the data size                  */
+/* Input:  SDP Rx Buf Pointer in contr, parameter count in timeup     */
+/* Output: data size in regA, SDP Rx Buf Pointer in contr             */
+/*         and  parameter count in timeup, return with zero flag set: */
+/*         syntax error                                               */
+/**********************************************************************/     
+dataelementtype6:
+	ifetch 1,contr
+	increase -1,timeup
+	compare 0x30,pdata,0xf8			/* 5 MSB: b00110: type 6 */
+	nbranch dsize_error,true
+	compare 0x07,pdata,0x07			/* 3 LSB: b111: 32 bits */
+	branch dsize32,true
+	compare 0x06,pdata,0x07			/* 3 LSB: b110: 16 bits */
+	branch dsize16,true
+	compare 0x05,pdata,0x07			/* 3 LSB: b101: 8 bits */
+	nbranch dsize_error,true
+	ifetch 1,contr
+	copy pdata,regA				/* data in reg A */
+	increase -1,timeup
+	branch dsize
+dsize32:
+	increase 2,contr				/* just move pointer +2, zero in 2 high byte */
+	increase -2,timeup
+dsize16:
+	ifetch 2,contr
+	byteswap pdata,regA
+	increase -2,timeup
+dsize:
+	force 0x01,pdata
+	rtn
+dsize_error:
+	force 0x00,pdata
+	rtn
+
+/**********************************************************************/
+/* Subroutine: empty_response                                      */
+/* Send empty response                                                */
+/*                                                                    */
+/* Input:       mem_sdp_pduid, mem_sdp_transactionid                  */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length             */
+/*                                                                    */
+/**********************************************************************/     
+empth_sa_rsp:
+	setarg 0x03
+	store 1, mem_sdp_pduid
+	branch empty_response
+empty_ssa_rsp:
+	setarg 0x07
+	store 1, mem_sdp_pduid
+empty_response:
+	call l2cap_get_sdp_tx_payload			/* empty attribute list */
+	fetch 1,mem_sdp_pduid				/* PDUID */
+	istore 1,contw
+	copy pdata,regB
+	fetch 2,mem_sdp_transactionid			/* copy back transaction id */
+	istore 2,contw
+	
+	setarg 0x0500
+	istore 2, contw
+	compare 0x05,regB,0xff			/* pduid 3 */
+	branch fullsearch,true
+	compare 0x07,regB,0xff			/* pduid 3 */
+	branch fullsearch,true
+	setarg 0x000000
+	istore 3,contw
+	istore 2,contw
+	branch outempty
+
+fullsearch:					/* pduid must be 5 or 7 */
+	//force 0x00,pdata
+	//istore 1,contw
+	//force 0x02,pdata
+	//istore 1,contw
+	//force 0x35,pdata
+	//istore 1,contw
+	setarg 0x350200
+	istore 3,contw
+	//force 0x00,pdata
+	//istore 1,contw
+	//force 0x00,pdata
+	//istore 1,contw
+	setarg 0
+	istore 2, contw
+outempty:
+	jam 10,mem_sdp_tx_pkt_length
+	rtn
+
+sdp_data_len:
+	copy contr,timeup
+	ifetch 1,contr
+	and pdata,0x7,loopcnt
+	rshift3 pdata,pdata
+	beq 6,sdp_data_len_6
+	beq 1,sdp_data_len_1
+	beq 4,sdp_data_len_6
+	beq 5,sdp_data_len_5
+sdp_data_len_rtn:	
+	copy timeup,contr
+	rtn
+sdp_data_len_1:
+	call sdp_data_size
+	increase 1,pdata
+	branch sdp_data_len_rtn
+sdp_data_len_5:
+	force 2,pdata
+	branch sdp_data_len_rtn
+sdp_data_len_6:
+	call sdp_get_data_6
+	increase 2,pdata
+	branch sdp_data_len_rtn
+	
+sdp_get_data:
+	ifetch 1,contr
+	and pdata,0x7,loopcnt
+	rshift3 pdata,pdata
+	beq 6,sdp_get_data_6
+	beq 1,sdp_get_data_1
+	beq 5,sdp_get_data_6_8bit
+	rtn
+sdp_get_data_1:
+	call sdp_data_size
+	iforce loopcnt
+	force 0,temp
+sdp_get_data_1_loop:	
+	lshift8 temp,temp
+	ifetch 1,contr
+	ior temp,temp
+	loop sdp_get_data_1_loop
+	rtn
+sdp_get_data_6:
+	deposit loopcnt
+	beq 5,sdp_get_data_6_8bit
+	beq 6,sdp_get_data_6_16bit
+	force 3,loopcnt
+	branch sdp_get_data_1
+sdp_get_data_6_8bit:
+	ifetch 1,contr
+	rtn
+sdp_get_data_6_16bit:
+	ifetch 2,contr
+	byteswap pdata,pdata
+	rtn
+
+	/* get data size according to size index in loopcnt */
+sdp_data_size:
+	force 1,pdata
+	copy loopcnt,null
+	rtn zero
+sdp_data_size_loop:
+	lshift pdata,pdata
+	loop sdp_data_size_loop
+	rtn
+
+
+
+	/* return handles in queue if found */
+search_uuid:
+	iforce regC
+	set1 mark_ext_patch,mark
+	bpatch patch39_2,mem_patch39
+	force 0,queue
+	fetch 2, mem_ui_uuid_table
+	iforce contr
+	arg mem_handle_list,contw
+search_uuid_next:
+	disable user
+	ifetch 1,contr
+	rtn blank
+	iforce loopcnt
+search_uuid_loop:	
+	ifetch 2,contr
+	isub regC,null
+	nbranch search_uuid_not_found,zero
+	enable user					/* uuid match */
+search_uuid_not_found:
+	loop search_uuid_loop
+	ifetch 4,contr					/* get handle */
+	nbranch search_uuid_nomatch,user
+	istore 4,contw
+	increase 1,queue
+search_uuid_nomatch:	
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_uuid_next
+
+	/* return handle in pdata if found, 0 if not */
+search_handle:
+	set1 mark_ext_patch,mark
+	bpatch patch39_3,mem_patch39
+	fetch 2,mem_ui_uuid_table
+	iforce contr
+search_handle_loop:	
+	ifetch 1,contr
+	rtn blank
+	lshift pdata,pdata
+	iadd contr,contr
+	ifetch 4,contr
+	isub temp,null
+	rtn zero
+	call sdp_get_data
+	iadd contr,contr
+	branch search_handle_loop
+
+/**
+* input regB and regC.regB is the attribute ID and regC is UUID.
+* set contr if find attribute or 0 if not
+*/
+	
+search_attrib:
+	set1 mark_ext_patch,mark
+	bpatch patch39_4,mem_patch39
+	fetch 2,mem_ui_uuid_table
+	iforce contr
+search_attrib_next:
+	ifetch 1,contr
+	branch search_attrib_end, blank
+	iforce loopcnt
+search_attrib_loop:	
+	ifetch 2,contr
+	isub regC,null						/* regC is UUID, compare it */
+	branch search_attrib_found_uuid,zero
+	loop search_attrib_loop
+	increase 4,contr
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_attrib_next	
+search_attrib_found_uuid:
+	increase -1,loopcnt
+	lshift loopcnt,pdata
+	iadd contr,contr
+	increase 4,contr
+	call sdp_get_data
+	iadd contr,temp					/* attribute list end */
+search_attrib_loop_attribs:	
+	increase 1,contr
+	ifetch 2,contr
+	isub regB,timeup
+	//force 0x1,pdata,zero
+	setflag zero, 0,pdata
+	copy timeup, timeup
+	rtn zero							/* attribute found */
+	call sdp_data_len
+	iadd contr,contr
+	deposit temp
+	isub contr,null
+	branch search_attrib_end, zero /*attribute end, not found the attribute, return contr = 0*/
+	branch search_attrib_loop_attribs	
+search_attrib_end:
+	force 0,contr
+	force 0,pdata
+	rtn
+	
+
+//search the attribute according the record handle
+//record handle in temp, attribute in regB
+//set the contr to zero if not found
+search_handle_attrib:	
+	set1 mark_ext_patch,mark
+	bpatch patch39_5,mem_patch39
+	fetch 2,mem_ui_uuid_table
+	iforce contr
+search_handle_attrib_next:
+	ifetch 1,contr
+	branch search_handle_attrib_end, blank
+	lshift pdata,pdata
+	iadd contr, contr
+	ifetch 4,contr
+	isub temp,null						/* regC is UUID, compare it */
+	branch search_handl_attrib_found_handle,zero
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_handle_attrib_next	
+search_handl_attrib_found_handle:
+	call sdp_get_data
+	iadd contr,temp					/* attribute list end */
+search_handle_attrib_loop_attribs:	
+	increase 1,contr
+	ifetch 2,contr
+	isub regB,null
+	rtn zero							/* attribute found */
+	call sdp_data_len
+	iadd contr,contr
+	deposit temp
+	isub contr,null
+	branch search_handle_attrib_end, zero /*attribute end, not found the attribute, return contr = 0*/
+	branch search_handle_attrib_loop_attribs
+search_handle_attrib_end:
+	force 0,contr
+	rtn	
+
+	
+
+	
+function_g2:
+	set1 mark_ext_patch,mark
+	bpatch patch39_6,mem_patch39
+	jam 80,mem_AES_CMAC_data_length
+	arg memdat,contw
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	call inverse_memdat	
+	arg mem_le_mrand,contr
+	call store_inverse_k	
+	call function_AES_CMAC	
+
+	arg mem_AES_CMAC_temp,contw
+	call load_inverse_result
+	setarg 1000000
+	copy pdata,rega
+	fetch 4,mem_AES_CMAC_temp
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	store 4,mem_gkey
+//call ice_break
+	rtn
+
+function_f6_eb:
+	jam 65,mem_AES_CMAC_data_length
+	arg memdat,contw
+	call store_addr_common_a
+	call store_addr_common_b
+	fetch 3,mem_le_pres+1
+	istore 3,contw
+//	arg mem_le_r,contr
+//	call memcpy16	
+	call get_r
+	
+	arg mem_le_mrand,contr
+	call memcpy16
+	arg mem_le_srand,contr
+	call memcpy16
+	call inverse_memdat
+	arg mem_le_mackey ,contr
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+//	call p_store_inverse_k	
+	branch function_AES_CMAC
+//	arg mem_AES_CMAC_temp,contw
+//	branch p_load_inverse_result
+
+get_r:
+	fetch 4,mem_le_tk
+	istore 4,contw
+	call memset0_4
+	branch memset0_8
+
+function_f6_ea:
+	set1 mark_ext_patch,mark
+	bpatch patch39_7,mem_patch39
+	jam 65,mem_AES_CMAC_data_length
+	arg memdat,contw
+	call store_addr_common_b
+	call store_addr_common_a
+	fetch 3,mem_le_preq+1
+	istore 3,contw
+//	arg mem_le_r,contr
+//	call memcpy16	
+	call get_r
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_mrand,contr
+	call memcpy16
+	call inverse_memdat
+	arg mem_le_mackey ,contr
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+//	call p_store_inverse_k	
+	call function_AES_CMAC
+	arg mem_AES_CMAC_temp,contw
+	branch load_inverse_result
+
+function_f5:
+	jam 32,mem_AES_CMAC_data_length
+	arg mem_le_dhkey_256 ,contr
+	arg memdat,contw
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_slat,contr
+	call store_inverse_k	
+	call function_AES_CMAC
+	arg mem_AES_CMAC_k,contw
+	call store_aes_result
+	arg 1,temp
+	call function_f5_common
+	arg mem_le_ltk,contw
+	call load_inverse_result
+	arg 0,temp
+	call function_f5_common
+	arg mem_le_mackey,contw
+//	branch p_load_inverse_result
+	branch store_aes_result
+
+
+function_f5_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_0,mem_patch3a
+	jam 53,mem_AES_CMAC_data_length
+	setarg 0x100
+	store 2,memdat
+	call store_addr_common_b
+	call store_addr_common_a
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_mrand,contr
+	call memcpy16
+//	fetch 4,mem_le_keyid 0x62746c65
+	setarg 0x6c65
+	istore 2,contw
+	setarg 0x6274
+	istore 2,contw
+	istoret 1,contw   //counter
+	call inverse_memdat	
+	branch function_AES_CMAC
+
+store_addr_common_b:
+	fetch 6,mem_le_lap
+	istore 6,contw
+	fetch 1,mem_le_conn_own_addr_type
+	istore 1,contw
+	rtn
+
+store_addr_common_a:
+	fetch 6,mem_le_plap
+	istore 6,contw
+//	setarg 0x2dcfc1
+//	istore 3,contw
+//	setarg 0xa71370
+//	istore 3,contw
+	fetch 1,mem_le_conn_peer_addr_type
+	istore 1,contw
+	rtn
+
+function_f4_ca:
+	jam 65,mem_AES_CMAC_data_length
+	fetch 1,mem_passkey_1bit
+	store 1,memdat
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_mrand,contr
+	call store_inverse_k	
+	branch function_AES_CMAC
+	
+
+function_f4_cb:
+	jam 65,mem_AES_CMAC_data_length
+	fetch 1,mem_passkey_1bit
+	store 1,memdat
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_srand,contr
+	call store_inverse_k	
+	branch function_AES_CMAC
+
+function_AES_CMAC:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_1,mem_patch3a
+	call function_AES_CMAC_Generate_Subkey
+//call ice_break
+//	jam 65,mem_AES_CMAC_data_length
+//call ice_break
+	fetch 1,mem_AES_CMAC_data_length
+	copy pdata,temp
+function_ceil16:
+	increase 15,pdata
+	rshift4 pdata,pdata
+	copy pdata,regb
+	branch function_AES_CMAC_set_flag_0_balnk,blank
+	and temp,0x0f,pdata
+	nbranch function_AES_CMAC_set_flag_0,blank
+//	flag =1;
+	arg mem_AES_CMAC_k1,regc
+	arg memdat,pdata
+	increase -16,pdata
+//	iadd temp,pdata
+//	isub rega,rega
+	iadd temp,rega	
+	arg mem_AES_CMAC_M_last,contw
+	arg 4,loopcnt	
+	call xor_loop
+//call ice_break
+//	arg mem_f4_k1,contr
+//	call load_key
+	branch function_AES_CMAC_aes
+
+function_AES_CMAC_set_flag_0_balnk:
+	arg 1,regb
+	arg 0,rega
+//	arg mem_f4_test_data,pdata
+	branch function_AES_CMAC_set_flag_0_common
+//call ice_break
+
+function_AES_CMAC_set_flag_0:
+//	flag = 0;
+	and temp,0x0f,rega
+function_AES_CMAC_set_flag_0_common:
+	arg memdat,pdata
+	iadd temp,pdata
+	isub rega,contr
+//call ice_break
+	arg mem_AES_CMAC_temp,contw
+	call function_AES_CMAC_padding
+//call ice_break
+	arg mem_AES_CMAC_k2,regc
+	arg mem_AES_CMAC_temp,rega
+	arg mem_AES_CMAC_M_last,contw
+	arg 4,loopcnt	
+	call xor_loop	
+//call ice_break
+
+//	arg mem_f4_k2,contr
+//	call load_key
+
+//	branch p_function_f4_aes
+function_AES_CMAC_aes:
+//	arg mem_f4_k,contr
+//	call load_key
+//	arg mem_AES_CMAC_xor,contr
+//	call load_data128
+	call aes_clear_data
+	call aes_init	
+//	arg mem_f4_k,contr
+//	call load_key
+	arg memdat,contr
+function_AES_CMAC_aes_loop:
+//generate_mic_loop:
+	increase -1,regb
+	deposit regb
+	branch function_AES_CMAC_aes_loop_end,blank
+	call load_data128
+	call do_aes_cbc
+	branch function_AES_CMAC_aes_loop
+//generate_mic_end:
+function_AES_CMAC_aes_loop_end:	
+	arg mem_AES_CMAC_temp,contw
+	call store_aes_result
+	arg mem_AES_CMAC_M_last,contr
+	call load_data128
+	call aes_init	
+	arg mem_AES_CMAC_temp,contr
+	call load_data128	
+	branch do_aes_cbc
+
+
+
+load_inverse_result:
+//	arg mem_AES_CMAC_temp,contw
+	copy contw,rega
+	call store_aes_result
+//	arg mem_AES_CMAC_temp,rega
+	arg 16,loopcnt
+	branch inverse_data
+	
+store_inverse_k:
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+inverse_k:	
+	arg 16,loopcnt
+	arg mem_AES_CMAC_k,rega	
+	branch inverse_data
+	
+inverse_memdat:
+	fetch 1,mem_AES_CMAC_data_length
+	copy pdata,loopcnt
+	arg memdat,rega
+	branch inverse_data
+
+bn_lshift_0_inverse:
+	ifetch 1,regA
+	lshift pdata,pdata
+	isolate1 0,regC
+	setflag true,0,pdata	
+	isolate1 8,pdata
+	setflag true,0,regC	
+	istore 1,rega
+         increase -1,rega
+	loop bn_lshift_0_inverse
+	rtn	
+
+function_AES_CMAC_k1_inverse:
+	arg mem_AES_CMAC_k1,regA
+function_AES_CMAC_inverse_common:
+	increase 15,rega
+	force 16,loopcnt
+	force 0,regC
+	branch  bn_lshift_0_inverse	
+
+function_AES_CMAC_k2_inverse:
+	arg mem_AES_CMAC_k2,regA
+	branch function_AES_CMAC_inverse_common
+	
+
+function_AES_CMAC_Generate_Subkey:
+	arg mem_AES_CMAC_k,contr
+	call load_key
+//	arg mem_AES_CMAC_xor,contr
+//	call aes_load_xor
+	force regidx_xor,regext_index
+	call aes_clear
+	call aes_clear_data
+	call do_aes_ocb
+	
+//	force 0x38,aes_ctrl
+//	force 0x0,aes_ctrl
+//	call wait_aes
+	arg mem_AES_CMAC_k1,contw
+	call store_aes_result
+function_AES_CMAC_k1:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_2,mem_patch3a
+	fetch 1,mem_AES_CMAC_k1
+	isolate1 7,pdata
+	nbranch function_AES_CMAC_k1_0,true	
+	call function_AES_CMAC_k1_inverse
+	
+//p_function_f4_k1_xor:
+	arg mem_AES_CMAC_k1,regc
+//	arg mem_AES_CMAC_rb,rega
+	arg mem_AES_CMAC_k1,contw
+//	arg 3,loopcnt
+//	call xor_loop
+	call function_AES_CMAC_xor_rb
+	branch function_AES_CMAC_k2
+function_AES_CMAC_k1_0:	
+	call function_AES_CMAC_k1_inverse
+function_AES_CMAC_k2:
+//call ice_break
+	arg mem_AES_CMAC_k1,contr
+	arg mem_AES_CMAC_k2,contw
+	call memcpy16
+	fetch 1,mem_AES_CMAC_k2
+	isolate1 7,pdata
+	nbranch function_AES_CMAC_k2_inverse,true		
+	call function_AES_CMAC_k2_inverse
+//p_function_f4_k2_xor:
+	arg mem_AES_CMAC_k2,regc
+//	arg mem_AES_CMAC_rb,rega
+	arg mem_AES_CMAC_k2,contw
+//	arg 3,loopcnt
+//	branch xor_loop	
+
+
+//rb:00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 87 
+function_AES_CMAC_xor_rb:
+	arg 3,loopcnt
+function_AES_CMAC_xor_rb_loop:	
+	arg 0,temp
+	call function_AES_CMAC_xor_loop_common	
+	increase 4,regc
+	loop  function_AES_CMAC_xor_rb_loop
+	arg 0x8700,temp
+	lshift16 temp,temp
+function_AES_CMAC_xor_loop_common:	
+	ifetch   4,regc
+	ixor  temp,pdata
+	istore   4,contw	
+	rtn
+		
+
+
+
+//input rega :length <16	contr,contw
+function_AES_CMAC_padding:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_3,mem_patch3a
+	arg 16,loopcnt
+	arg 0,pdata
+function_AES_CMAC_padding_loop:
+	isub rega,null
+	branch function_AES_CMAC_padding_beq_length,zero
+	branch function_AES_CMAC_padding_big_length,positive
+	ifetcht 1,contr
+	istoret 1,contw
+function_AES_CMAC_padding_loop2:	
+	increase 1,pdata
+	loop function_AES_CMAC_padding_loop
+	rtn
+function_AES_CMAC_padding_beq_length:	
+	arg 0x80,temp
+function_AES_CMAC_padding_common:
+	istoret 1,contw
+	branch  function_AES_CMAC_padding_loop2
+
+function_AES_CMAC_padding_big_length:
+	arg 0,temp
+	branch function_AES_CMAC_padding_common
+
+	
+generate_kinit:
+	call function_e22
+	arg mem_input_store,contr
+	arg mem_kinit,contw		/* Kinit is ready */
+	branch memcpy16
+
+
+function_e21:	/* rega pointers to bdaddr */
+	disable user
+	call function_expand
+	arg mem_random_number,contr
+	arg mem_x,contw
+	force 15,loopcnt
+	call memcpy			
+	ifetch 1,contr
+	xor_into 6,pdata
+	istore 1,contw
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+
+
+	
+function_e22:		/* rega pointers to bdaddr */
+	fetcht 1,mem_pin_length
+	force 16,regb			/* total 16 bytes */
+	add temp,6,regc		/* regc is l' */
+	sub regc,16,null		
+	branch function_e22_pin_init,positive 
+	force 16,regc
+function_e22_pin_init:			/* generate x from pin and bdaddr */
+	arg mem_x,contw
+function_e22_genx_pin:
+	arg mem_pin,contr
+	copy temp,loopcnt
+	disable user
+function_e22_genx_loop:
+	ifetch 1,contr
+	istore 1,contw
+	increase -1,regb
+	branch function_e22_genx_end,zero
+	loop function_e22_genx_loop
+	branch function_e22_genx_pin,user
+	enable user
+	force 6,loopcnt
+	copy rega,contr
+	branch function_e22_genx_loop
+function_e22_genx_end:
+	arg mem_random_number,contr
+	arg mem_y,contw
+	call memcpy16
+	fetch 1,mem_y15
+	ixor regc,pdata
+	store 1,mem_y15	/* inpy[15] = rand_num[15]^l'; */
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+
+
+
+
+function_e1:	/* rega pointers to bdaddr */
+	disable user
+	call function_expand
+	branch function_hash
+
+function_e3:
+	arg mem_aco,rega
+	enable user
+	call function_expand
+	call function_hash
+	arg mem_input_store,contr
+	arg mem_kc,contw
+	branch memcpy16
+
+	/* costs 41769 clocks */
+function_hash:
+	setarg mem_random_number
+	store 2,memp_ar_input
+	setarg mem_link_key
+	store 2,memp_ar_key
+	set0 mark_ar2,mark
+	call function_ar
+	arg mem_input_store,rega
+	arg mem_random_number,regb
+	arg mem_x,contw
+	call xor16
+	arg mem_x,rega
+	arg mem_y,regb
+	copy regb,contw
+	enable user
+	call add16
+	call key_offset
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+	
+
+	/* totally costs 20700 clocks */
+function_ar:
+	jam 0,mem_ar_hround
+	fetch 2,memp_ar_key
+	iforce contr
+	arg mem_key_store,contw
+	call memcpy16
+	fetch 2,memp_ar_input
+	iforce contr
+	arg mem_input_store,contw
+	call memcpy16
+	
+function_ar_loop:
+	call key_scheduling
+	disable user
+	bmark0 mark_ar2,function_ar_original
+	fetch 1,mem_ar_hround
+	bne 4,function_ar_original
+	fetch 2,memp_ar_input
+	iforce regb
+	call xor_mod32_ar2
+function_ar_original:
+	call xor_mod32
+	call el_boxes
+	fetch 1,mem_ar_hround
+	increase 1,pdata
+	store 1,mem_ar_hround
+
+	call key_scheduling
+	enable user
+	call xor_mod32
+	call pht
+	call permute
+	call pht
+	call permute
+	call pht
+	call permute
+	call pht
+	fetch 1,mem_ar_hround
+	increase 1,pdata
+	store 1,mem_ar_hround
+	bne 16,function_ar_loop
+	call key_scheduling
+	disable user
+	branch xor_mod32
+	
+/* input round number and temp key in mem_key_store, and output the next temp key in mem_key_store */
+/* round key is generated and store in mem_round_key */
+key_scheduling:
+	fetch 1,mem_ar_hround
+	arg mem_key_store,contr
+	branch key_sched_zero,blank
+	iforce regb      			/* regb is half round */
+	force 17,loopcnt
+	copy contr,contw
+key_rotateloop:
+	ifetch 1,contr
+	lshift3 pdata,temp
+	rshift2 pdata,pdata
+	rshift3 pdata,pdata
+	ior temp,pdata
+	istore 1,contw
+	loop key_rotateloop
+	setarg mem_key_store
+	iadd regb,contr
+	force 16,loopcnt    
+	arg mem_round_key,contw
+key_select_octet_loop:
+	ifetch 1,contr
+	istore 1,contw
+	compare mem_key_store_end,contr,0xff
+	nbranch key_select_octet_nwrap,true
+	increase -17,contr
+key_select_octet_nwrap:
+	loop key_select_octet_loop
+	force 0,rega         /* rega is index of octet within row */
+	add regb,-1,regc    /* this is the row index, half_round#1 is 0 */
+	lshift2 regc,regc
+	lshift2 regc,regc
+	call enable_authrom
+	setarg mem_b_box
+	iadd regc,regc       /* regc hold the starting address of the row */
+	arg mem_round_key,contw
+	force 16,loopcnt
+bias_round_key_loop:
+	ifetcht 1,regc
+	ifetch 1,contw
+	iadd temp,pdata
+	istore 1,contw
+	increase 1,regc
+	loop bias_round_key_loop
+	branch disable_authrom
+
+key_sched_zero:    /* round 0, key1 */
+	force 16,loopcnt
+	force 0,temp
+create_byte_16_loop:
+	ifetch 1,contr
+	ixor temp,temp
+	loop create_byte_16_loop
+	deposit temp
+	istore 1,contr    	/* store the byte #16 */
+	arg mem_key_store,contr
+	arg mem_round_key,contw
+	branch memcpy16
+
+xor_mod32:     /* xor on 0,3, add on 1,2. if user is set, invert. x in rega and y in regb, out in contw */
+	arg mem_round_key,regb
+xor_mod32_ar2:
+	force 16,loopcnt
+	arg mem_input_store,rega
+	copy rega,contw
+xor_mod32_loop:	
+	ifetcht 1,rega
+	ifetch 1,regb
+	ixor temp,alarm
+	and loopcnt,3,regc
+	nbranch xor_mod32_invert,user
+	xor_into 3,regc
+xor_mod32_invert:
+	sub regc,1,regc
+	branch xor_even,positive
+	iadd temp,alarm
+xor_even:
+	deposit alarm
+	istore 1,contw
+	increase 1,rega
+	increase 1,regb
+	loop xor_mod32_loop
+	rtn
+
+el_boxes:
+	call enable_authrom
+	force 16,loopcnt
+	arg mem_input_store,rega
+el_box_loop:	
+	ifetch 1,rega
+	arg mem_e_box,contr
+	and loopcnt,3,regc
+	sub regc,1,null
+	branch e_boxes,positive
+	arg mem_l_box,contr
+e_boxes:
+	iadd contr,contr
+	ifetch 1,contr
+	istore 1,rega
+	increase 1,rega
+	loop el_box_loop
+	branch disable_authrom
+
+pht:				
+	force 8,loopcnt
+	arg mem_input_store,contr
+	copy contr,contw
+pht_loop:
+	ifetch 1,contr
+	iforce rega
+	ifetch 1,contr
+	iforce regb
+	lshift rega,pdata
+	iadd regb,pdata
+	istore 1,contw
+	deposit rega
+	iadd regb,pdata
+	istore 1,contw
+	loop pht_loop
+	rtn
+
+/* 8 11 12 15 2 1 6 5 10 9 14 13 0 7 4 3 */
+permute:			
+	setarg 0x8ae42c
+	iforce temp
+	force 7,loopcnt
+	call permute_exchange
+	setarg 0xd751b
+	iforce temp
+	force 5,loopcnt
+	call permute_exchange
+	fetch 1,mem_input_store+15
+	iforce rega
+	fetch 1,mem_input_store+3
+	store 1,mem_input_store+15
+	deposit rega
+	store 1,mem_input_store+3
+	rtn
+
+permute_exchange:
+	and temp,0xf,regb
+permute_loop:
+	and temp,0xf,pdata
+	arg mem_input_store,contw
+	iadd contw,contw
+	ifetch 1,contw
+	iforce regc
+	deposit rega
+	istore 1,contw
+	copy regc,rega
+	rshift4 temp,temp
+	loop permute_loop	
+	setarg mem_input_store
+	iadd regb,contw
+	deposit rega
+	istore 1,contw
+	rtn
+
+add16:
+	enable user
+	branch xor_add16
+
+xor16:
+	disable user
+xor_add16:	/* if user is set, do add, else do xor */
+	force 16,loopcnt	/* rega and regb pointers to src, contw is result */
+xoradd_loop:
+	ifetcht 1,rega
+	ifetch 1,regb
+	branch xoradd_add,user
+	ixor temp,pdata
+	branch xoradd_store
+xoradd_add:	
+	iadd temp,pdata
+xoradd_store:	
+	istore 1,contw
+	increase 1,rega
+	increase 1,regb
+	loop xoradd_loop
+	rtn
+
+	
+function_expand:		/* rega pointers to bdaddr, or aco and user is set */
+	arg mem_y,contw
+	ifetch 6,rega
+	istore 6,contw
+	branch expand_12,user
+	ifetch 6,rega
+	branch expand_cont
+expand_12:
+	ifetch 6,contr
+expand_cont:
+	istore 6,contw
+	ifetch 4,rega
+	istore 4,contw
+	rtn
+
+key_offset:
+	arg mem_link_key,contr
+	arg mem_x,contw
+	arg 0,temp
+	setarg 0x8395a7
+	call concatenate_temp24
+	setarg 0xb3c1df
+	call concatenate_temp24
+	setarg 0xe5e9
+	call concatenate_temp16
+	copy temp,regab
+	disable user
+	call key_addxor
+	copy regab,temp
+	enable user
+	branch key_addxor
+
+key_addxor:
+	force 8,loopcnt
+key_addxor_loop:	
+	ifetch 1,contr
+	compare 1,loopcnt,1
+	branch key_high,user
+	branch key_xor,true
+key_add:	
+	iadd temp,pdata
+	branch key_store
+key_high:
+	branch key_add,true
+key_xor:
+	ixor temp,pdata
+key_store:
+	istore 1,contw
+	rshift8 temp,temp
+	loop key_addxor_loop
+	rtn
+
+copy_aco:
+	fetch 6,mem_input_store+4
+	store 6,mem_aco
+	ifetch 6,contr
+	istore 6,contw
+	rtn
+	
+concatenate_temp24:
+	lshift8 temp,temp
+concatenate_temp16:
+	lshift16 temp,temp
+	ior temp,temp
+	rtn
+
+
+loop1:	
+	branch loop1
+
+/* ==================== LE security ================= */
+
+generate_stk:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_4,mem_patch3a
+	call function_s1
+	arg mem_le_ltk,contw
+	branch store_aes_result
+
+	/* contr = rand pointer */
+authenticate_rconfirm:
+	arg mem_le_srand,contw
+	branch authenticate_mconfirm,master
+	arg mem_le_mrand,contw
+authenticate_mconfirm:
+	copy contr,rega
+	call memcpy16
+	call function_c1
+	arg mem_le_rconfirm,contr
+	branch compare_res
+
+generate_confirm:
+	arg mem_le_mrand,rega
+	branch generate_mrand,master
+	arg mem_le_srand,rega
+generate_mrand:
+	copy rega,contw
+	call generate_random
+	branch function_c1
+
+generate_sk:
+	arg mem_le_skdm,contr
+	call load_data128
+	arg mem_le_ltk,contr
+	call load_regext
+	force 0x38,aes_ctrl
+	force 0x0,aes_ctrl
+	call wait_aes
+	arg mem_le_sk,contw
+	branch store_aes_result
+
+	/* temp=packet counter, rega = length or block counter*/
+first_block_counter:
+	force 0x49,pdata
+	branch first_block
+first_block_data:
+	force 1,pdata
+first_block:
+	force regidx_data,regext_index			/* B0 */
+	lshift8 temp,regext
+	ior regext,regext
+	increase 1,regext_index
+	rshift8 temp,regext
+	rshift16 regext,regext
+	fetch 2,mem_le_ivm
+	lshift16,pdata,pdata
+	ior regext,regext				/* octet3&octet4 of counter and low 16 bit of IV */
+	increase 1,regext_index
+	ifetch 4,contr					/* IV2-IV5 */
+	iforce regext
+	increase 1,regext_index
+	ifetch 2,contr					/* IV6-IV7 */
+	byteswap rega,regext
+	lshift16 regext,regext
+	ior regext,regext
+	increase 1,regext_index
+	rtn
+
+
+	/* temp=packet counter, regc pointers to data */	
+generate_mic:
+	add regc,1,contr
+	ifetch 1,contr
+	iforce rega
+	call first_block_counter
+	call do_aes_ocb
+
+	force regidx_data,regext_index			/* B1 */
+	ifetch 1,regc
+	and_into 0x3,pdata
+	lshift16 pdata,regext
+	set1 8,regext
+	call clear_hidata
+	call do_aes_cbc
+
+	copy rega,loopcnt
+	add regc,2,contr
+	call padding_data
+generate_mic_loop:
+	call aes_load_data
+	call do_aes_cbc
+	deposit loopcnt
+	branch generate_mic_end,blank
+	branch generate_mic_loop
+generate_mic_end:
+	force regidx_result,regext_index
+	deposit regext
+	store 4,mem_le_mic
+	rtn
+
+aes_crypt_data:
+	increase 1,rega
+	call first_block_data
+	copy regc,contr
+	call aes_load_xor
+	call do_aes_ctr
+	call store_enc_data
+	increase 16,regc
+	increase -16,regb
+	branch aes_crypt_data,positive
+	rtn
+	
+le_encrypt:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_5,mem_patch3a
+	arg mem_le_txheader,regc
+	fetcht 5,mem_le_pcnt_tx
+	call generate_mic
+	force regidx_xor,regext_index
+	iforce regext
+	force 0,rega					/* rega is block counter */
+	call first_block_data
+	call do_aes_ctr
+	arg mem_le_txpayload,regc
+	fetch 1,mem_le_txlen
+	add pdata,-1,regb
+	iadd regc,contw
+	force regidx_result,regext_index
+	deposit regext
+	istore 4,contw	
+	call aes_crypt_data
+	fetch 1,mem_le_txlen
+	increase 4,pdata
+	store 1,mem_le_txlen
+	fetcht 5,mem_le_pcnt_tx
+	increase 1,temp
+	storet 5,mem_le_pcnt_tx
+	rtn
+
+le_decrypt:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_6,mem_patch3a
+	fetch 1,mem_le_rxbuf+1
+	sub pdata,20,null
+	branch le_dec_cont,positive
+le_dec_cont:
+	arg mem_le_rxbuf+2,regc
+	add pdata,-1,regb
+	increase -4,pdata				/* mic will be discarded */
+	store 1,mem_le_rxbuf+1
+	iadd regc,contr
+	ifetch 4,contr
+	force regidx_xor,regext_index
+	iforce regext
+	force 0,rega					/* rega is block counter */
+	fetcht 5,mem_le_pcnt_rx
+	call first_block_data
+	call do_aes_ctr
+	force regidx_result,regext_index
+	deposit regext
+	store 4,mem_le_peer_mic
+	call aes_crypt_data
+	arg mem_le_rxbuf,regc
+	call generate_mic
+	fetcht 4,mem_le_peer_mic
+	isub temp,pdata				/* MIC ok? */
+	nrtn blank
+	fetch 4,mem_le_last_mic			/* reduntdant packet? */
+	isub temp,pdata
+	rtn blank
+	storet 4,mem_le_last_mic
+	fetch 5,mem_le_pcnt_rx
+	increase 1,pdata
+	store 5,mem_le_pcnt_rx
+	force 0,pdata
+	rtn
+
+wait_aes:
+	nbranch wait_aes,aes_ready
+	rtn
+
+do_aes_ocb:
+	force 0x30,aes_ctrl
+	force 0x0,aes_ctrl
+	branch wait_aes
+
+do_aes_cbc:
+	force 0x32,aes_ctrl
+	force 0x2,aes_ctrl
+	branch wait_aes
+
+do_aes_ctr:
+	force 0x34,aes_ctrl
+	force 0x4,aes_ctrl
+	branch wait_aes
+
+	
+aes_init:
+	force 1,aes_ctrl
+	force 0,aes_ctrl
+	rtn
+function_s1:
+	force regidx_data,regext_index
+	fetch 4,mem_le_mrand
+	iforce regext
+	increase 1,regext_index
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	fetch 4,mem_le_srand
+	iforce regext
+	increase 1,regext_index
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	call aes_clear
+	increase -4,regext_index
+	fetch 4,mem_le_tk
+	copy pdata,regext
+	increase 4,regext_index
+	force 0x38,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+	/* rega pointers to random number */
+function_c1:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_7,mem_patch3a
+	fetch 6,mem_le_lap
+	fetcht 6,mem_le_plap
+	branch function_c1_master,master
+	fetch 6,mem_le_plap
+	fetcht 6,mem_le_lap
+function_c1_master:
+	force regidx_xor,regext_index
+	copy temp,regext
+	increase 1,regext_index
+	rshift32 temp,regext
+	lshift16 pdata,pdata
+	ior regext,regext
+	increase 1,regext_index
+	rshift32 pdata,regext
+	increase 1,regext_index
+	force 0,regext					/* p2 = ia || ra */
+	force 0,pdata
+	fetch 1,mem_le_conn_peer_addr_type
+	fetcht 1,mem_le_adv_own_addr_type
+	nbranch function_c1_irat,master
+	//conn as master
+	fetch 1,mem_le_conn_own_addr_type
+	fetcht 1,mem_le_conn_peer_addr_type
+function_c1_irat:
+	store 1,mem_le_iat
+	storet 1,mem_le_rat
+	force regidx_data,regext_index
+	arg mem_le_iat,regb
+	force 4,loopcnt
+function_c1_loop1:
+	ifetch 4,rega		
+	ifetcht 4,regb
+	ixor temp,regext
+	increase 1,regext_index
+	increase 4,rega
+	increase 4,regb
+	loop function_c1_loop1		/* p1 ^ r */
+	call aes_clear				/* k = 0 */
+	increase -4,regext_index
+	fetch 4,mem_le_tk
+	copy pdata,regext
+	increase 4,regext_index
+	force 0x38,aes_ctrl
+	force 0xc,aes_ctrl
+	call wait_aes
+
+	call aes_clear_data
+	force 0x3a,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+padding_data:
+	compare 0,loopcnt,3
+	rtn true
+	deposit contr
+	iadd loopcnt,contw
+	force 0,pdata
+padding_loop:
+	istore 1,contw
+	increase 1,loopcnt
+	compare 0,loopcnt,3
+	rtn true
+	branch padding_loop
+
+aes_load_data:
+	force regidx_data,regext_index
+load_data_loop:
+	deposit loopcnt
+	branch load_data_padding,blank
+	ifetch 4,contr
+	increase -4,loopcnt
+load_data_padding:
+	iforce regext
+	increase 1,regext_index
+	compare regidx_key,regext_index,0xf
+	rtn true
+	branch load_data_loop
+
+aes_load_xor:
+	force regidx_xor,regext_index
+	branch load_regext
+load_key:
+	force regidx_key,regext_index
+	branch load_regext
+load_data128:
+	force regidx_data,regext_index
+load_regext:
+	force 4,loopcnt
+load_regext_loop:
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	loop load_regext_loop
+	rtn
+
+load_sk:
+	arg mem_le_sk,contr
+	branch load_key
+
+clear_hidata:
+	force 4,loopcnt
+	branch clear_data_rest
+
+aes_clear_data:
+	force regidx_data,regext_index
+aes_clear:
+	force 4,loopcnt
+clear_loop:
+	force 0,regext
+clear_data_rest:
+	increase 1,regext_index
+	loop clear_loop
+	rtn
+
+store_aes_result:
+	force regidx_result,regext_index
+	force 4,loopcnt
+send_aes_result_loop:
+	deposit regext
+	istore 4,contw
+	increase 1,regext_index
+	loop send_aes_result_loop
+	rtn
+
+store_enc_data:
+	force regidx_result,regext_index
+	copy regc,contw
+	add regb,1,loopcnt
+	sub loopcnt,15,null
+	branch store_enc_loop,positive
+	force 16,loopcnt
+store_enc_loop:
+	deposit regext
+	sub loopcnt,3,null
+	branch store_enc_byte,positive
+	istore 4,contw
+	increase -4,loopcnt
+	rtn zero
+	increase 1,regext_index
+	branch store_enc_loop
+store_enc_byte:
+	istore 1,contw
+	rshift8 pdata,pdata
+	loop store_enc_byte
+	rtn
+	
+	/* contr pointers to value to be compared */
+compare_res:
+	force regidx_result,regext_index
+	force 4,loopcnt
+compare_res_loop:
+	ifetch 4,contr
+	isub regext,null
+	nrtn zero
+	increase 1,regext_index
+	loop compare_res_loop
+	force 0,null
+	rtn
+
+enable_authrom:
+	hfetch 1,core_clkoff
+	set0 CLOCK_OFF_AUTH_ROM,pdata
+	hstore 1,core_clkoff
+	rtn
+
+disable_authrom:
+	hfetch 1,core_clkoff
+	set1 CLOCK_OFF_AUTH_ROM,pdata
+	hstore 1,core_clkoff
+	rtn
+
+init_memp:
+	arg mem_p,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3fbff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3cfff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffef
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x26c7f
+	setsect 2,0x146b
+	setsect 3,0x37bb3
+	istore 9,contw
+	setsect 0,0x1feb8
+	setsect 1,0x10c12
+	setsect 2,0x2b722
+	setsect 3,0x29fa6
+	istore 9,contw
+	setsect 0,0xe70f
+	setsect 1,0x16720
+	setsect 2,0x519e
+	setsect 3,0x19084
+	istore 9,contw
+	setsect 0,0x31012
+	setsect 1,0x360bf
+	setsect 2,0x3f0af
+	setsect 3,0x3d3
+	istore 9,contw
+	setsect 0,0x3a188
+	setsect 1,0x3ad0
+	setsect 2,0x3cbf2
+	setsect 3,0x243d9
+	istore 9,contw
+	setsect 0,0x2b030
+	setsect 1,0x36a03
+	setsect 2,0x11188
+	setsect 3,0x1e520
+	istore 9,contw
+	setsect 0,0x3a11e
+	setsect 1,0xfe5d
+	setsect 2,0xdd57
+	setsect 3,0x1ac93
+	istore 9,contw
+	setsect 0,0x11ed
+	setsect 1,0x218c4
+	setsect 2,0x8da7
+	setsect 3,0x257ff
+	istore 9,contw
+	setsect 0,0x3192b
+	setsect 1,0x34641
+	setsect 2,0x1be0c
+	setsect 3,0x366ad
+	istore 9,contw
+	setsect 0,0x1f83
+	setsect 1,0x15a23
+	setsect 2,0x3f9b0
+	setsect 3,0x3949
+	istore 9,contw
+	setsect 0,0x13a51
+	setsect 1,0x153fd
+	setsect 2,0x3372a
+	setsect 3,0xf1bb
+	istore 9,contw
+	setsect 0,0x3ae85
+	setsect 1,0x1eed9
+	setsect 2,0x9e66
+	setsect 3,0x1a8
+	istore 8,contw
+	rtn
+	
+
+
+init_memp_256:
+ 	arg mem_p_256,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3ffff
+        setsect 2,0x3ffff
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3f
+        setsect 2,0x0
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x0
+        setsect 1,0x0
+        setsect 2,0x1000
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x3ff00
+        setsect 1,0x3ffff
+        setsect 2,0x3ffcf
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3ffff
+        setsect 2,0x3ffff
+        setsect 3,0x3ff
+        istore 9,contw
+        setsect 0,0x0
+        setsect 1,0x0
+        setsect 2,0x0
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x10000
+        setsect 1,0x0
+        setsect 2,0x3f000
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x296ff
+        setsect 1,0x22630
+        setsect 2,0x3945d
+        setsect 3,0x3d284
+        istore 9,contw
+        setsect 0,0x333a0
+        setsect 1,0x4b7a
+        setsect 2,0x37d8
+        setsect 3,0x3c9dc
+        istore 9,contw
+        setsect 0,0x3a440
+        setsect 1,0x1b958
+        setsect 2,0x38bce
+        setsect 3,0x1091f
+        istore 9,contw
+        setsect 0,0x2e12c
+        setsect 1,0x1f47c
+        setsect 2,0x356b1
+        setsect 3,0x2fd47
+        istore 9,contw
+        setsect 0,0x6837
+        setsect 1,0x2ed90
+        setsect 2,0x1ecec
+        setsect 3,0x1acc5
+        istore 9,contw
+        setsect 0,0x23357
+        setsect 1,0x18af3
+        setsect 2,0xf9e1
+        setsect 3,0x129f0
+        istore 9,contw
+        setsect 0,0x2e7eb
+        setsect 1,0x3e6e3
+        setsect 2,0x3e1a7
+        setsect 3,0x10b8b
+        istore 9,contw
+        setsect 0,0x24fe3
+        setsect 1,0x20ef
+        setsect 2,0x1b5a6
+        setsect 3,0xdc2f
+        istore 9,contw
+        setsect 0,0x13860
+        setsect 1,0x2bd69
+        setsect 2,0x391a
+        setsect 3,0x1b222
+        istore 9,contw
+        rtn
+
+
+
+shutter_init:
+	//call  shutter_le_init_rf_param
+	rtn wake	
+	call init_shutter_le_att_list
+	call shutter_init_param	
+	hjam 0x00,core_gpio_sel1//1: GPIO[26:25] is two wire SPI, 2: GPIO[26:23] is SPI, 3: GPIO[26:23] is PCM
+	call shutter_key_init
+	setarg shutter_le_before_hibernate
+	store 2,mem_cb_before_hibernate
+
+	setarg shutter_le_process_lpm_before
+	store 2,mem_cb_before_lpm
+	
+	setarg shutter_le_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+	
+	setarg scale_process_idle	//
+	store 2,mem_cb_idle_process
+	
+	setarg scale_process	//
+	store 2,mem_cb_le_process
+	
+	setarg scale_process_bb_event 
+	store 2,mem_cb_bb_event_process
+	
+	setarg shutter_le_scale_lpm_lock
+	store 2,mem_cb_check_wakelock
+
+	setarg shutter_le_send_att_handle_value_notification
+	store 2,mem_cb_update_notify_value
+
+shutter_init0:	
+	setarg shutter_le_receive_data
+	store 2,mem_cb_att_write
+	call shutter_le_queue_init
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	set1 mark_ext_patch,mark
+	bpatch patch3b_0,mem_patch3b
+	fetch 1, mem_hard_soft_switch_case
+	beq HARD_SWITCH, shutter_le_hard_switch_power_on_signal
+	call shutter_ui_led_init
+	call ui_button_init
+	call ui_button_polling
+	jam SHUTTER_POWER_UP,mem_shutter_powerup_flag
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BTN_DOWN
+	branch app_enter_hibernate
+
+shutter_le_hard_switch_power_on_signal:
+	//call ice_break
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	jam 1,mem_enable_key_scan
+	call shutter_ui_led_init
+	setarg mem_power_on_led_style
+	call shutter_ui_led_send
+in_poweron_hard_switch_led:
+	call ui_led_blink_polling
+	fetch 1,mem_led_blink_count
+	nbranch in_poweron_hard_switch_led,blank
+shutter_le_soft_switch_power_on_signal:
+	//call ice_break
+	jam ON,mem_le_adv_enable
+	setarg 0
+	store 4,mem_shutter_send_data
+	call shutter_ui_led_init
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	call shutter_le_fast_advertise
+
+	jam PAIR_UNKNOWN,mem_pair_state
+	call le_modified_name
+	fetch 6,mem_le_lap
+	call shutter_byteswap
+	call shutter_updata_mac
+	rtn
+
+	
+//pdata:adv interval value
+shutter_le_adv_interval_set:
+	store 2,mem_lpm_interval
+	increase -4,pdata
+	store 2,mem_le_adv_interval_min
+	store 2,mem_le_adv_interval_max
+	rtn
+	
+shutter_updata_mac:
+	fetcht 2,mem_adv_lap_ptr
+	rtn blank
+	istore 6,temp
+	rtn
+	
+shutter_byteswap:
+	store 6,mem_tmp_buffer
+	fetch 1,mem_tmp_buffer
+	store 1,mem_tmp_buffer+11
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+10
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+9
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+8
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+7
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+6
+	fetch 6,mem_tmp_buffer+6
+	rtn
+	
+shutter_le_fast_advertise:
+	jam 0,mem_shutter_key_data_flag_1
+	fetch 2,mem_le_fast_adv_timeout_timer_count
+	nbranch in_shutter_skip_set,blank
+	setarg mem_fast_adv_led_style
+	call shutter_ui_led_send
+	setarg FAST_ADV_INTERVAL_VALUE
+	call shutter_le_adv_interval_set
+in_shutter_skip_set:
+	fetch 2,mem_le_fast_adv_timeout
+	store 2,mem_le_fast_adv_timeout_timer_count
+	rtn
+
+shutter_le_scale_lpm_lock:
+	//fetcht 4,mem_last_clk_rx
+	//copy clkn_bt,pdata
+	//isub temp,pdata
+	//arg 8,temp
+	//isub temp,null
+	//nbranch app_get_lpm_wake_lock,positive
+	fetch 1,mem_scale_txbuff_inuse
+	beq 1,app_get_lpm_wake_lock
+	fetch 1, mem_queue_ele_num
+	nbranch app_get_lpm_wake_lock,blank
+	branch app_put_lpm_wake_lock
+
+scale_process_bb_event:
+	copy regc,pdata
+	//beq BT_EVT_BUTTON_LONG_PRESSED,app_ble_disconnect
+	beq BT_EVT_BUTTON_UP,shutter_bb_event_button_up
+	beq BT_EVT_BUTTON_LONG_PRESSED,shutter_evt_button_long_pressed
+	beq BT_EVT_LE_CONNECTED,scale_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,scale_process_le_discon
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,shutter_le_bb_event_timer
+	rtn
+
+shutter_le_bb_event_timer:
+	storet 1,mem_app_evt_timer_count
+shutter_le_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	set1 mark_ext_patch,mark
+	bpatch patch3b_1,mem_patch3b
+	call ui_button_check_long_press
+	call shutter_le_shutter_fast_adv_timer
+	call shutter_le_sleep_timer
+	call shutter_ui_button_timeout_timer
+	call shutter_ui_power_timeout_timer
+	call shutter_app_updata_le_param_timer
+	call shutter_conn_update_timer
+	branch shutter_le_bb_event_100ms_loop
+
+shutter_conn_update_timer:
+	fetch 1,mem_shutter_conn_update_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_shutter_conn_update_timer
+	nrtn blank
+	jam 0x05,mem_lpm_mult
+	rtn	
+
+shutter_app_updata_le_param_timer:
+	fetch 1,mem_send_updata_le_param_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_send_updata_le_param_timer
+	nrtn blank
+	fetch 1,mem_le_state  
+	bbit0 lestate_encryption,shutter_app_updata_le_param
+	jam 1,mem_send_updata_le_param_timer
+	rtn
+
+shutter_app_updata_le_param:
+	call  app_lpm_mult_enable
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	branch  ui_ipc_send_cmd
+
+
+shutter_le_shutter_fast_adv_timer:
+	fetch 1, mem_shutter_powerup_flag
+	rtnne SHUTTER_POWER_ON
+	fetch 2,mem_le_fast_adv_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_fast_adv_timeout_timer_count
+	nrtn blank
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,in_is_connected
+	setarg mem_slow_adv_led_style
+	call shutter_ui_led_send
+in_is_connected:
+	setarg SLOW_ADV_INTERVAL_VALUE
+	branch shutter_le_adv_interval_set
+
+shutter_le_sleep_timer:
+	fetch 2,mem_le_sleep_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_sleep_timeout_timer_count
+	nrtn blank
+	//call shutter_ui_led_init
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	call shutter_shutter_power_off_end
+	//goto sleep
+	//call shutter_le_sleep_req_hibernate
+	rtn
+
+scale_process_le_conn:
+	jam 0,mem_lpm_mode
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	jam PAIR_UNKNOWN,mem_pair_state
+	//call shutter_update_last_clk
+	call app_ble_stop_adv
+//	call shutter_check_51cmd_le_smp_sec_req
+//	call shutter_app_updata_le_param
+
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	//call p_update_last_clk
+	call app_ble_stop_adv
+	//call check_51cmd_le_smp_sec_req
+	//call p_app_updata_le_param
+	call  app_lpm_mult_enable
+	//call ice_break
+	jam 0,mem_le_fast_adv_timeout_timer_count
+	setarg mem_connected_led_style
+	call shutter_ui_led_send
+	jam 0,mem_led_gpio
+	rtn
+
+scale_process_le_discon:
+	//setarg 0
+	//store 1,mem_hci_curr_len
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	jam 0,mem_ltk_exists
+	jam DEFAULT_STATES,mem_ltk_states
+	jam 0,mem_shutter_find_type_value_flag
+	call shutter_le_queue_clear
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 1, mem_le_sleep_flag
+	bne 0,shutter_le_sleep_enter
+	call shutter_le_fast_advertise
+	jam PAIR_UNKNOWN,mem_pair_state
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	setarg 0 
+	store 2, mem_l2cap_rxbuff2_len
+
+	call shutter_le_tx_buff_unuse
+	//call le_att_client_clr
+	call app_ble_start_adv
+	//call app_led_start_blink
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	rtn
+
+shutter_le_tx_buff_inuse:
+	//call ui_led_on
+	jam 1,mem_scale_txbuff_inuse
+	rtn
+shutter_le_check_tx_buff:
+	fetch 1,mem_scale_txbuff_inuse
+	rtn
+shutter_le_tx_buff_unuse:
+	//call ui_led_off
+	jam 0,mem_scale_txbuff_inuse
+	rtn
+
+shutter_le_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+
+shutter_le_sleep_req_hibernate:
+	jam 0x01,mem_le_sleep_flag
+shutter_le_sleep_req_ok:	
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+shutter_le_sleep_enter:
+	call shutter_le_sleep_clr
+	call wait_uarttx
+	jam 0x00,mem_le_sleep_flag
+	branch app_bb_hibernate
+
+shutter_le_sleep_clr:
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	store 2, mem_l2cap_rxbuff2_len
+	branch shutter_le_tx_buff_unuse
+	//branch le_att_client_clr
+
+scale_process:
+	fetch 1, mem_exchange_mtu_req
+	ncall shutter_le_parse_att_exchange_mtu_request,blank
+	call shutter_le_send_packet
+	branch shutter_le_key_process
+
+shutter_le_parse_att_exchange_mtu_request:
+	//fetch 1,mem_le_state
+	//bbit0 lestate_encryption,shutter_le_parse_att_exchange_mtu_request_save
+	jam 0, mem_exchange_mtu_req
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+shutter_le_parse_att_exchange_mtu_request_save:
+	jam 1, mem_exchange_mtu_req
+	rtn
+
+scale_process_idle:
+	call shutter_le_send_packet
+	branch shutter_le_key_process
+
+shutter_le_before_hibernate:
+	call shutter_shutter_scan_key
+	fetch 2, mem_key_value_temp
+	branch in_enter_hibernate,blank
+	branch app_enter_hibernate
+in_enter_hibernate:	
+	call gpio_set_before_lpm_common
+	branch shutter_le_process_lpm_before
+
+
+
+
+
+shutter_ui_led_init:
+	fetch 1, mem_shutter_led_num
+	copy pdata,loopcnt
+	setarg mem_led_map
+	copy pdata,rega
+in_lp1:
+	copy rega,contr
+	ifetch 1,contr
+	beq INVALID_PIN_NUM,in_lp1_end
+	copy pdata,temp
+	store 1, mem_led_gpio
+	//call ice_break
+	call ui_led_init
+in_lp1_end:
+	loop in_lp1
+shutter_ui_led_init_end:
+	rtn
+
+
+
+//pdata = address of led_style 
+shutter_ui_led_send:
+	copy pdata,contr
+	force 7,loopcnt
+	//setarg mem_temp_led_style
+	//copy pdata,contw
+	arg mem_temp_led_style,contw
+	call memcpy
+	set1 mark_ext_patch,mark
+	bpatch patch3b_2,mem_patch3b
+	fetch 1, mem_temp_led_type
+	rtneq LED_INVALID
+	fetcht 2,mem_temp_led_on_time
+	storet 2,mem_led_light_time
+	fetcht 2, mem_temp_led_off_time
+	storet 2,mem_led_dark_time
+	fetcht 1,mem_temp_blink_count
+	storet 1, mem_led_blink_count
+	//call ice_break
+	call ui_led_blink_stop
+	fetcht 1,mem_temp_led_pin
+	storet 1, mem_led_gpio
+	fetch 1, mem_temp_led_type
+	beq LED_OFF,shutter_ui_led_send_end
+	beq LED_ON,	ui_led_on
+	beq LED_BLINK,ui_led_blink_start1
+shutter_ui_led_send_end:
+	rtn
+
+shutter_ui_led_off:
+	branch ui_led_blink_stop
+
+
+shutter_key_init:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	copy pdata,loopcnt
+	setarg mem_key_conf0_pin
+	copy pdata,rega
+shutter_key_lp1:
+	ifetcht 1, rega
+	call gpio_config_input
+	increase KEY_CONF_STRUCT_LEN,rega
+	loop shutter_key_lp1
+shutter_key_init_end:
+	rtn
+	
+
+shutter_shutter_scan_key:
+	//setarg mem_key_conf0_pin
+	//copy pdata, rega
+	arg mem_key_conf0_pin,rega
+	force 0,regb
+	jam 0,mem_key_value_temp
+in_scan_key_lp1:
+	ifetcht 1, rega
+	call gpio_get_bit
+	set1 mark_ext_patch,mark
+	bpatch patch3b_3,mem_patch3b
+	fetch 2, mem_key_value_temp
+	copy regb,queue
+	qsetflag true,pdata
+	store 2, mem_key_value_temp
+	increase KEY_CONF_STRUCT_LEN,rega
+	increase 1,regb
+	fetch 1,mem_shutter_key_num
+	ixor regb,null
+	nbranch in_scan_key_lp1,zero
+	//call ice_break
+	fetch 2,mem_key_value_temp
+	fetcht 2,mem_key_value
+	ixor temp,null
+	rtn zero
+	enable user
+	rtn
+
+shutter_le_key_process:
+	arg temp_timer,queue
+	call timer_check
+	nrtn blank
+	call shutter_le_packet_interval_set
+	fetch 1,mem_enable_key_scan
+	rtn blank
+	disable user
+	call shutter_le_process_lpm_before
+	set1 mark_ext_patch,mark
+	bpatch patch3b_4,mem_patch3b
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	call shutter_shutter_scan_key
+	nbranch lpm_button_clean_wake_lock,user
+	call lpm_button_get_wake_lock
+	disable user
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,shutter_le_fast_advertise
+	call shutter_shutter_cancel_key_shake
+	branch  in_le_key_process_end,positive
+	fetch 2, mem_key_value_temp
+	store 2,mem_key_value_temp4
+	jam 0,mem_key_value_temp6
+	force 0,queue
+	//call ice_break
+shutter_le_key_lp1:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_5,mem_patch3b
+	fetch 2, mem_key_value
+	rshift pdata,temp
+	storet 2,mem_key_value
+	and pdata,0x01,pdata
+	fetcht 2, mem_key_value_temp4
+	and temp,0x01,rega
+	rshift temp,temp
+	storet 2,mem_key_value_temp4
+	ixor rega,null
+	ncall shutter_le_send_key_data,zero
+	fetch 1,mem_shutter_key_num
+	fetcht 1, mem_key_value_temp6
+	increase 1,temp
+	storet 1, mem_key_value_temp6
+	copy temp,queue
+	ixor queue,null
+	//call ice_break
+	nbranch shutter_le_key_lp1,zero
+	fetch 2,mem_key_value_temp
+	store 2, mem_key_value
+	rtn
+in_le_key_process_end:
+	setarg 0
+	store 2,mem_key_value_temp
+	store 2,mem_key_value
+	rtn
+
+//queue = key index
+//rega =1 press, =0 release
+shutter_le_send_key_data:
+	//call ice_break
+	deposit rega
+	branch in_le_key_is_release,blank
+	set1 mark_ext_patch,mark
+	bpatch patch3b_6,mem_patch3b
+	copy queue,pdata
+	beq 0,in_le_send_key0_press
+	beq 1,in_le_send_key1_press
+	beq 2,in_le_send_key2_press
+	beq 3,in_le_send_key3_press
+	beq 4,in_le_send_key4_press
+	beq 5,in_le_send_key5_press
+in_le_send_lable:
+	fetch 1,mem_le_enc_state
+	rtnne  FLAG_LE_ENC_END
+	fetch 1,mem_shutter_key_data_flag_1
+	nrtn blank
+	ifetch 1,temp
+	rtn blank
+	store 1, mem_key_packet_count
+	increase 1,temp
+	storet 2,mem_key_next_addr
+in_le_send_lp1:
+	fetch 2, mem_key_next_addr
+	ifetcht 1, pdata //length
+	copy temp,loopcnt
+	iadd temp,temp
+	storet 2, mem_key_next_addr
+	copy pdata,temp
+	call shutter_le_queue_put
+	fetch 1, mem_key_packet_count
+	increase -1,pdata
+	store 1, mem_key_packet_count
+	nbranch in_le_send_lp1,zero
+	branch shutter_le_send_packet
+//function end
+
+in_le_key_is_release:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_7,mem_patch3b
+	copy queue,pdata
+	beq 0,in_le_send_key0_rel
+	beq 1,in_le_send_key1_rel
+	beq 2,in_le_send_key2_rel
+	beq 3,in_le_send_key3_rel
+	beq 4,in_le_send_key4_rel
+	beq 5,in_le_send_key5_rel
+	branch in_le_send_lable
+
+in_le_send_key0_press:
+	fetch 1,mem_key_conf0_led
+	call shutter_le_key_led_index
+	arg mem_key0_press,temp
+	branch in_le_send_lable
+in_le_send_key1_press:
+//	fetch 1,0x4ff0
+//	increase 1,pdata
+//	store 1,0x4ff0
+	
+	fetch 1,mem_key_conf1_led
+	call shutter_le_key_led_index
+	arg mem_key1_press,temp
+	branch in_le_send_lable
+in_le_send_key2_press:
+	fetch 1,mem_key_conf2_led
+	call shutter_le_key_led_index
+	arg mem_key2_press,temp
+	branch in_le_send_lable
+in_le_send_key3_press:
+	fetch 1,mem_key_conf3_led
+	call shutter_le_key_led_index
+	arg mem_key3_press,temp
+	branch in_le_send_lable
+in_le_send_key4_press:
+	fetch 1,mem_key_conf4_led
+	call shutter_le_key_led_index
+	arg mem_key4_press,temp
+	branch in_le_send_lable
+in_le_send_key5_press:
+	fetch 1,mem_key_conf5_led
+	call shutter_le_key_led_index
+	arg mem_key5_press,temp
+	branch in_le_send_lable
+
+in_le_send_key0_rel:
+	fetch 1,mem_key_conf0_led
+	call shutter_le_disble_key_led
+	arg mem_key0_release,temp
+	branch in_le_send_lable
+in_le_send_key1_rel:
+//	fetch 1,0x4ff1
+//	increase 1,pdata
+//	store 1,0x4ff1
+	
+	fetch 1,mem_key_conf1_led
+	call shutter_le_disble_key_led
+	arg mem_key1_release,temp
+	branch in_le_send_lable
+in_le_send_key2_rel:
+	fetch 1,mem_key_conf2_led
+	call shutter_le_disble_key_led
+	arg mem_key2_release,temp
+	branch in_le_send_lable
+in_le_send_key3_rel:
+	fetch 1,mem_key_conf3_led
+	call shutter_le_disble_key_led
+	arg mem_key3_release,temp
+	branch in_le_send_lable
+in_le_send_key4_rel:
+	fetch 1,mem_key_conf4_led
+	call shutter_le_disble_key_led
+	arg mem_key4_release,temp
+	branch in_le_send_lable
+in_le_send_key5_rel:
+	fetch 1,mem_key_conf5_led
+	call shutter_le_disble_key_led
+	arg mem_key5_release,temp
+	branch in_le_send_lable
+
+shutter_le_disble_key_led:
+	compare LED_ON,pdata,0xff
+	rtn true
+	force 3,pdata
+	branch shutter_le_key_led_index
+	//rtn
+
+//pdata = key led index
+shutter_le_key_led_index:
+	beq 0,in_le_key_led_0
+	beq 1,in_le_key_led_1
+	beq 2,in_le_key_led_2
+	beq 3,in_le_key_led_3
+	//setarg 0xff
+in_le_light_led:
+	branch shutter_ui_led_send
+//end
+
+in_le_key_led_0:
+	setarg mem_key_led_style_ind_0
+	branch shutter_ui_led_send
+in_le_key_led_1:
+	setarg mem_key_led_style_ind_1
+	branch shutter_ui_led_send
+in_le_key_led_2:
+	setarg mem_key_led_style_ind_2
+	branch shutter_ui_led_send
+in_le_key_led_3:
+	setarg mem_key_led_style_ind_3
+	branch shutter_ui_led_send
+
+//////////////////////////////////////////////////////////////////////////////////////////
+/////SOFT WTICH////////
+shutter_ui_power_timeout_timer:
+	fetch 1,mem_power_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_power_timer
+	nrtn blank
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,shutter_le_soft_switch_power_on_signal
+	branch shutter_shutter_power_off_signal
+
+shutter_ui_button_timeout_timer:
+	fetch 1,mem_shutter_button_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_shutter_button_timer
+	nrtn blank
+	branch app_led_off
+
+shutter_shuuter_led_on:
+	fetch 1,mem_shutter_button_timeout
+	store 1,mem_shutter_button_timer
+	branch  app_led_on
+
+shutter_bb_event_button_up:
+	//call ice_break
+	//fetch 2,mem_ui_state_map
+	//rtnbit1 UI_STATE_BLE_CONNECTED
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,in_power_release
+	branch app_enter_hibernate
+in_power_release:
+	jam 1,mem_enable_key_scan
+	rtn
+
+shutter_evt_button_long_pressed:
+	//call ice_break
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,shutter_le_power_off
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	//jam ON,mem_le_adv_enable
+	setarg mem_power_on_led_style
+shutter_shutter_power_on:
+shutter_shutter_power_on_off:
+	fetcht 1,mem_power_timeout
+	storet 1,mem_power_timer
+	branch shutter_ui_led_send
+	
+shutter_le_power_off:
+	//call ice_break
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	jam 0,mem_enable_key_scan
+	jam OFF,mem_le_adv_enable
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,shutter_shutter_power_off_end
+	call app_ble_disconnect
+shutter_shutter_power_off_end:
+	jam OFF,mem_le_adv_enable
+	setarg mem_powe_off_led_style
+	branch shutter_shutter_power_on_off
+
+shutter_shutter_power_off_signal:	
+	call shutter_ui_led_init
+	branch app_enter_hibernate
+//end
+	
+shutter_le_process_lpm_before:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	copy pdata,loopcnt
+	setarg mem_key_conf0_pin
+	copy pdata,rega
+in_shutter_process_lpm_before_lp1:
+	ifetcht 1, rega
+	call gpio_set_wake_by_current_state
+	increase KEY_CONF_STRUCT_LEN,rega
+	loop in_shutter_process_lpm_before_lp1
+shutter_le_process_lpm_before_end:
+	rtn
+
+
+shutter_le_queue_init:
+	jam 0,mem_queue_ele_num
+	setarg mem_queue_start
+	store 2, mem_queue_read
+	store 2, mem_queue_write
+	rtn
+//end
+
+shutter_le_queue_clear:
+	branch shutter_le_queue_init
+
+//output:user flag
+//input:temp,loopcnt
+shutter_le_queue_put:
+	disable user
+	fetch 1,mem_queue_ele_num
+	compare  QUEUE_ELE_COUNT,pdata,0xff
+	rtn true
+
+	enable user
+	fetch 2, mem_queue_write
+	copy pdata,contw
+	copy temp,contr
+	call memcpy
+	
+	fetch 1,mem_queue_ele_num
+	increase 1,pdata
+	store 1, mem_queue_ele_num
+	
+	setarg mem_queue_write
+	call shutter_le_queue_increase
+	rtn
+
+//pdata
+shutter_le_queue_increase:
+	copy pdata,rega
+	arg mem_queue_end,temp
+	ifetch 2,rega
+	increase QUEUE_ELE_LENGTH,pdata
+	isub temp,null
+	nbranch shutter_le_queue_put_end,positive
+	setarg mem_queue_start
+shutter_le_queue_put_end:
+	istore 2,rega
+	rtn
+	
+//output: pdata
+//output: user flag
+shutter_le_queue_get:
+	disable user
+	fetch 1,mem_queue_ele_num
+	rtn blank
+	enable user
+	fetch 1,mem_queue_ele_num
+	increase -1,pdata
+	store 1, mem_queue_ele_num
+
+	fetch 2,mem_queue_read
+	store 2,mem_queue_temp
+
+	setarg mem_queue_read
+	call shutter_le_queue_increase
+	fetch 2,mem_queue_temp
+	rtn
+
+shutter_le_queue_read_point:
+	disable user
+	fetch 1,mem_queue_ele_num
+	rtn blank
+	enable user
+	fetch 2,mem_queue_read
+	rtn
+
+shutter_le_packet_interval_set:
+	fetch 2, mem_packet_interval_set
+	arg temp_timer,queue
+	branch timer_init
+
+shutter_le_send_packet:
+	//fetch 1,mem_le_pairing_state
+	//rtneq FLAG_LE_PAIRING_AFTER_AUTH
+	//call shutter_le_check_tx_buff
+	//nrtn blank
+	//arg temp_timer,queue
+	//call timer_check
+	//nrtn blank
+	//call shutter_le_packet_interval_set
+	call shutter_le_queue_read_point
+	nrtn user
+	disable user
+	//copy pdata,contr
+	//ifetcht 1,contr
+	//increase -3,temp
+	//copy temp,loopcnt
+	//ifetcht 2,contr
+	//storet 2,mem_le_notify_handle
+	//arg mem_shutter_send_data,contw
+	//call memcpy
+	force 0x0013,temp
+	storet 2,mem_le_notify_handle
+	branch shutter_le_shutter_send_keydata
+
+shutter_le_shutter_send_keydata:
+	arg 2, loopcnt
+	fetcht 2, mem_le_notify_handle
+	arg mem_shutter_send_data, contr
+	call shutter_le_tx_notification
+	
+	//fetch 1,mem_shutter_1key_send_sm
+	//beq FLAG_SHUTTER_1KEY_SEND_STEP2,shutter_le_shutter_1key_send_step2
+  	//beq FLAG_SHUTTER_1KEY_SEND_STEP3,shutter_le_shutter_1key_send_step3
+ 	//beq FLAG_SHUTTER_1KEY_SEND_STEP4,shutter_le_shutter_1key_send_step4
+	rtn	
+
+shutter_le_tx_indication:
+	jam ATTOP_HANDLE_VALUE_INDICATION,mem_fifo_temp
+	branch shutter_le_tx_common
+shutter_le_tx_notification:
+	call le_xtype_fifo_is_empty
+	nrtn blank
+	fetch 1,mem_shutter_key_data_flag
+	nrtn blank
+ 	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+shutter_le_tx_common:
+	//add loopcnt,7,pdata
+	//store 1,mem_scale_tx_length
+	//arg mem_le_l2cap+1,contw
+	//istoret 2,contw
+	//call memcpy
+	call le_xtype_fifo_in
+	branch  shutter_le_tx_buff_inuse
+
+shutter_shutter_cancel_key_shake:
+	fetcht 4,mem_shutter_clkn_bt_last
+	deposit clkn_bt
+	store 4,mem_shutter_clkn_bt_last
+	isub temp,pdata	
+	nrtn positive 
+	sub pdata,20,pdata
+	rtn
+
+shutter_le_send_att_handle_value_notification:
+	//call shutter_le_tx_buff_unuse
+	call shutter_le_queue_get
+	nrtn user
+	disable user
+	copy pdata,contr
+	ifetcht 1,contr
+	increase -3,temp
+	copy temp,loopcnt
+	//fetcht 2, mem_le_notify_handle
+	ifetcht 2,contr
+	//arg mem_shutter_send_data, contr
+	add loopcnt,7,pdata
+	store 1,mem_scale_tx_length
+	arg mem_le_l2cap+1,contw
+	istoret 2,contw
+	call memcpy
+	fetcht 1,mem_scale_tx_length
+	branch le_send_packet
+	
+shutter_le_receive_data:	
+	fetch 1,mem_le_att_opcode
+	beq ATTOP_WRITE_REQUEST,shutter_le_parse_att_write_request
+	beq ATTOP_WRITE_COMMAND,shutter_le_parse_att_write_command
+	rtn
+shutter_le_parse_att_write_request:
+	fetch 2,mem_le_att_handle
+	beq  ATT_WRITE_REQUEST_HANDLE,shutter_key_data_send
+	rtn
+shutter_le_parse_att_write_command:
+shutter_key_data_send:
+	jam 0,mem_shutter_key_data_flag
+	rtn
+
+init_shutter_le_att_list:
+	arg mem_shutter_le_att_list,contw
+	setsect 0,0x20001
+	setsect 1,0x20000
+	setsect 2,0x1022
+	setsect 3,0x860
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x3200
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12a05
+	setsect 1,0x10000
+	setsect 2,0x2000
+	setsect 3,0xa408
+	istore 9,contw
+	setsect 0,0x2
+	setsect 1,0x140
+	setsect 2,0x20
+	setsect 3,0x8a0
+	istore 9,contw
+	setsect 0,0x21800
+	setsect 1,0x8001
+	setsect 2,0x28030
+ 	setsect 3,0x804
+	istore 9,contw
+	setsect 0,0x20007
+	setsect 1,0x28000
+	setsect 2,0x3132
+	setsect 3,0x1a5a1
+	istore 9,contw
+	setsect 0,0x17370
+	setsect 1,0x35859
+	setsect 2,0xc422
+	setsect 3,0x8115
+	istore 9,contw
+	setsect 0,0x2020
+	setsect 1,0x808
+	setsect 2,0x20202
+	setsect 3,0x20
+	istore 9,contw
+	setsect 0,0x302
+	setsect 1,0x804a
+	setsect 2,0x90
+	setsect 3,0x408
+	istore 9,contw
+	setsect 0,0x22a
+	setsect 1,0x28032
+	setsect 2,0x2000
+	setsect 3,0xa00c
+	istore 9,contw
+	setsect 0,0x30201
+	setsect 1,0x8002
+	setsect 2,0x2a040
+	setsect 3,0x1820
+	istore 9,contw
+	setsect 0,0x600
+	setsect 1,0x1900
+	setsect 2,0x12c0
+	setsect 3,0x30
+	istore 9,contw
+	setsect 0,0x2
+	setsect 1,0x2808a
+	setsect 2,0xd180
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12803
+	setsect 1,0x38080
+	setsect 2,0x2000
+	setsect 3,0xa940
+	istore 9,contw
+	setsect 0,0x20207
+	setsect 1,0x18922
+	setsect 2,0x1826
+	setsect 3,0x3c00
+	istore 9,contw
+	setsect 0,0x200
+	setsect 1,0x8a00
+	setsect 2,0x18120
+	setsect 3,0x40
+	istore 9,contw
+	setsect 0,0x302
+	setsect 1,0x1804a
+	setsect 2,0x110
+	setsect 3,0x13808
+	istore 9,contw
+	setarg 0x1012a
+	istore 3,contw
+	setsect 0,0x20012
+	setsect 1,0x200c0
+	setsect 2,0x12012
+	setsect 3,0x4c
+	istore 9,contw
+	setsect 0,0x24d02
+	setsect 1,0x8a
+	setsect 2,0x14280
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x22902
+	setsect 1,0x0
+	setsect 2,0x150
+	setsect 3,0x2008
+	istore 9,contw
+	setsect 0,0x20229
+	setsect 1,0x18040
+	setsect 2,0x2001
+	setsect 3,0xa00c
+	istore 9,contw
+	setsect 0,0x31201
+	setsect 1,0x8005
+	setsect 2,0x2a4d0
+	setsect 3,0x8
+	istore 9,contw
+	setsect 0,0x1828
+	setsect 1,0x8080
+	setsect 2,0x2290
+	setsect 3,0x0
+	istore 9,contw
+	setsect 0,0x20019
+	setsect 1,0x24200
+	setsect 2,0x3022
+	setsect 3,0x6804
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x1b020
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x2a4b
+	setsect 1,0x30151
+	setsect 2,0x1090
+	setsect 3,0x684
+	istore 9,contw
+	setsect 0,0x10285
+	setsect 1,0x27a42
+	setsect 2,0x9ea0
+	setsect 3,0x2788
+	istore 9,contw
+	setsect 0,0x11530
+	setsect 1,0x30940
+	setsect 2,0x10750
+	setsect 3,0x654
+	istore 9,contw
+	setsect 0,0x81
+	setsect 1,0x4170
+	setsect 2,0x6090
+	setsect 3,0x684
+	istore 9,contw
+	setsect 0,0x10385
+	setsect 1,0x241c1
+	setsect 2,0x29e01
+	setsect 3,0x579c
+	istore 9,contw
+	setsect 0,0x12500
+	setsect 1,0x5d40
+	setsect 2,0x8950
+	setsect 3,0xa04
+	istore 9,contw
+	setsect 0,0x10875
+	setsect 1,0x14065
+	setsect 2,0x25001
+	setsect 3,0x17d0
+	istore 9,contw
+	setsect 0,0x1907
+	setsect 1,0x10a40
+	setsect 2,0x81f
+	setsect 3,0x300
+	istore 8,contw
+	setsect 0,0x2001c
+	setsect 1,0x200c0
+	setsect 2,0x2012
+	setsect 3,0x74
+	istore 9,contw
+	setsect 0,0x24a02
+	setsect 1,0x410a
+	setsect 2,0x11
+	setsect 3,0x7804
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x1f040
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12a4c
+	setsect 1,0x0
+	setsect 2,0x2002
+	setsect 3,0xa000
+	istore 9,contw
+	setsect 0,0xf02
+	setsect 1,0x846
+	setsect 2,0x3020
+	setsect 3,0x4a0
+	istore 9,contw
+	setsect 0,0x2212
+	setsect 1,0x24080
+	setsect 2,0x12a1
+	setsect 3,0x8c00
+	istore 9,contw
+	setsect 0,0x20200
+	setsect 1,0x8a40
+	setsect 2,0x0
+	setsect 3,0x0
+	istore 9,contw
+	rtn
+	
+shutter_init_param:
+	jam 1,mem_le_pres_auth
+	jam 1,mem_le_flag
+	jam 1,mem_le_pairing_mode
+	setarg 0x1b
+ 	store 2,mem_le_pairing_handle
+ 	jam 1,mem_le_adv_direct_addr_type
+ 	jam 3,mem_empty_count
+ 	jam 0x50,mem_le_transmit_window
+ 
+ 	jam 0x17,mem_le_local_mtu
+ 	jam 0x17,mem_le_remote_mtu
+ 	arg mem_le_pres,contw
+ 	setsect 0,0x302
+	setsect 1,0x40
+	setsect 2,0x1021
+	setsect 3,0x0
+	istore 7,contw
+	arg mem_le_interal_min,contw
+	setsect 0,0x8
+	setsect 1,0x4
+	setsect 2,0x2c000
+	setsect 3,0x4
+	istore 8,contw
+	rtn
+
+	
+
+publickey_init:
+	fetch 1,mem_ssp_enable
+	nbranch sp_initialize,blank
+	branch sp_initialize_256
+
+publickey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_0,mem_patch3c
+	fetch 1,mem_ssp_enable
+	rtn blank
+	fetch 1,mem_sp_local_key_invalid
+	rtnne SP_KEY_VALID
+	fetch 1,mem_le_secure_connect_enable
+	rtn blank
+	fetch 1,mem_le_sc_local_key_invalid
+	rtneq SP_KEY_VALID_256
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,stop_publickey_calc_256
+	fetch 1,mem_le_sc_calc
+	beq SP_CALC_STANDBY,sp_initialize_256
+	rtn
+stop_publickey_calc_256:
+	jam SP_CALC_STANDBY,mem_le_sc_calc	
+	rtn
+	
+
+sp_initialize:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_1,mem_patch3c
+	fetch 1,mem_ssp_enable 
+	branch ssp_disable, blank
+	call ssp_enable
+	call sp_clear_flags
+	branch sp_pubkey_calc 
+	
+sp_clear_flags:
+	setarg 0
+	store 8,mem_sp_state_start
+	store 4,mem_sp_flag_start
+	store 7,mem_sp_iocap_remote
+	rtn
+
+sp_generate_local_key:
+	jam SP_FLAG_COMMIT,mem_sp_flag  
+	branch sp_generate_local_key0
+sp_master_generate_local_key:
+	fetch 1,mem_sp_local_key_invalid
+	beq SP_KEY_VALID,sp_dhkey_calc
+	branch assert
+sp_generate_local_key0:
+	fetch 1,mem_sp_local_key_invalid
+	beq SP_KEY_VALID,sp_start_send_pubkey
+	branch sp_pubkey_calc
+    
+sp_start_send_pubkey:
+	call sp_dhkey_calc
+	fetch 1,mem_master_sp_state
+	nrtn blank
+	jam SP_STAT_KEY_SEND,mem_sp_state
+	rtn
+    
+sp_calculate_commitment:
+	fetch 1,mem_sp_calc
+	bne SP_CALC_STANDBY,sp_calculate_commitment_wait_dhkey_calc
+	call sp_local_random_key_generator
+	arg mem_sp_prarm_stack,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+	setarg mem_sp_pubkey_local_x_end
+	istore 2,contw
+	setarg mem_sp_pubkey_remote_x_end
+	istore 2,contw
+	branch sp_calculate_commitment0
+master_sp_calculate_commitment:
+	arg mem_sp_prarm_stack,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	setarg mem_sp_pubkey_remote_x_end
+	istore 2,contw
+	setarg mem_sp_pubkey_local_x_end
+	istore 2,contw
+sp_calculate_commitment0:
+	call function_f1
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_COMMIT_CALC,master_sp_calculate_commitment0
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	jam SP_STAT_COMMIT_SEND,mem_sp_state
+	rtn
+master_sp_calculate_commitment0:
+	jam SP_STAT_COMMITMENT_COMPARE,mem_master_sp_state
+	call sp_master_generate_local_key
+	branch master_set_mem_master_sp_flag 
+
+sp_local_random_key_generator:
+	arg mem_sp_random_local,contw
+	force 8,queue
+	branch random_generator
+  
+sp_calculate_commitment_wait_dhkey_calc:
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+    
+sp_confirm_check:
+    /* calculate Ea here */
+	set1 mark_ext_patch,mark
+	bpatch patch3c_2,mem_patch3c
+	arg      mem_addr_value,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    3,mem_sp_iocap_remote
+	istore   3,contw 
+
+	call     function_f3a
+
+	arg      mem_sp_calc_result_high,regA
+	arg      mem_sp_check_result,regB    
+	force    4,queue 
+	call     compare4
+	nbranch  sp_confirm_check_failed,true  
+
+	call sp_confirm_check_success
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	branch tid_set_reply
+    
+sp_confirm_check_success:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check_success_master
+	jam SP_STAT_CONFIRM_CALC,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag  
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	rtn
+sp_confirm_check_success_master:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam SP_STATE_END,mem_master_sp_state
+	branch master_set_mem_master_sp_flag
+	//accept opcode?
+	
+sp_confirm_check_failed:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check_failed_master
+	jam SP_STAT_NULL,mem_sp_state
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	//accept opcode?
+	jam      AUTHENTICATION_FAILURE_ERROR,mem_lmo_reason2 
+	rtn
+sp_confirm_check_failed_master:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam SP_STAT_NULL,mem_master_sp_state
+	rtn
+    
+sp_confirm_calc:
+	fetch 1,mem_sp_dh_ready
+	beq SP_FLAG_COMMIT, sp_confirm_calc_ready
+	jam 	SP_STAT_CONFIRM_CALC,mem_master_sp_state
+	branch master_set_mem_master_sp_flag
+sp_confirm_calc_ready:
+	arg      mem_addr_value,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    3,mem_sp_iocap_local
+	istore   3,contw 
+
+	call     function_f3b
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CALC,sp_confirm_calc_master
+	jam      SP_STAT_CONFIRM_SEND,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+sp_confirm_calc_master:
+	jam      SP_STAT_CONFIRM_SEND,mem_master_sp_state
+	jam      SP_FLAG_COMMIT,mem_master_sp_flag
+	rtn   
+
+sp_master_key_prarm_push:
+	arg mem_sp_prarm_stack,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	branch sp_link_key_calc
+sp_link_key_prarm_push:
+	jam      SP_STAT_DONE,mem_sp_state    
+	arg mem_sp_prarm_stack,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+sp_link_key_calc:
+    /*calculate Link key here */
+	arg      mem_addr_value,contw
+	fetch    6,mem_sp_prarm_stack
+	istore   6,contw
+	fetch    6,mem_sp_prarm_stack+6
+	istore   6,contw
+	
+	call     function_f2    
+
+	/*handle linkkey  */
+	jam 1,mem_link_key_exists
+	arg mem_link_key,contw
+	arg mem_sp_calc_result_high,contr
+	call memcpy16
+	branch  generate_linkkey_continue
+
+    
+sp_pubkey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_3,mem_patch3c
+	fetch    1,mem_sp_local_key_invalid
+	rtnne SP_KEY_INVALID
+	fetch    1,mem_sp_calc
+	rtnne  SP_CALC_STANDBY
+	arg      mem_sp_private_key,contw 
+	force    11,queue
+	call     random_generator
+	random   pdata
+	rshift   pdata,pdata
+	istore   2,contw 
+/* we don't need fixed private key,generate random key instead */ 
+	arg      mem_k,contw
+	arg      mem_sp_private_key,contr	
+	call     memcpy24 //mem_sp_private_key=>mem_k 24BYTES
+
+	arg      mem_ax,contw
+	arg      mem_gx,contr
+	call     memcpy48 //mem_gx=>mem_ax 48bytes
+
+	arg      mem_az,contw
+	call     bn_zero
+	jam      1,mem_az //0=>mem_az 24bytes
+
+	call     eckp_calc_init
+	jam SP_CALC_PUBKEY,mem_sp_calc
+	rtn    
+	
+sp_pubkey_generated:
+	arg      mem_sp_pubkey_local,contw
+	arg      mem_bx,contr
+	call     memcpy48   
+	jam      SP_KEY_VALID,mem_sp_local_key_invalid
+	jam      SP_CALC_STANDBY,mem_sp_calc
+	rtn
+
+sp_dhkey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_4,mem_patch3c
+	fetch    1,mem_sp_dhkey_invalid
+	rtnne  SP_KEY_INVALID
+	fetch    1,mem_sp_calc
+	rtnne  SP_CALC_STANDBY
+
+	arg      mem_k,contw
+	arg      mem_sp_private_key,contr	
+	call     memcpy24
+
+	arg      mem_ax,contw
+	arg      mem_sp_pubkey_remote,contr
+	call     memcpy48
+
+	arg      mem_az,contw
+	call     bn_zero
+	jam      1,mem_az
+
+	call     eckp_calc_init
+	jam      SP_CALC_DHKEY,mem_sp_calc
+	rtn 	
+	
+sp_dhkey_generated:
+	jam SP_FLAG_COMMIT,mem_sp_dh_ready
+	arg mem_sp_dhkey,contw
+	arg mem_bx,contr
+	call memcpy24
+	jam SP_KEY_VALID,mem_sp_dhkey_invalid
+	jam SP_CALC_STANDBY,mem_sp_calc
+	rtn
+
+random_generator:
+	increase -1,queue
+	nrtn     positive
+	random   pdata
+	istore   2,contw  
+	branch   random_generator
+compare4:
+	increase -1,queue
+	nbranch  compare4_success,positive
+	ifetch   4,regA
+	copy     pdata,temp
+	ifetch   4,regB
+	iflip    temp,pdata
+	nbranch  compare4_failed,zero
+	increase 4,regA
+	increase 4,regB
+	branch   compare4
+compare4_failed:
+	disable  true
+	rtn
+compare4_success:
+	enable   true
+	rtn
+
+/*************************************************/
+/** Message state machine routines ***************/
+/*************************************************/
+// simple pairing support 
+
+simple_pairing_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_5,mem_patch3c
+         fetch 1,mem_sp_flag
+         rtn blank
+	call lmo_fifo_check
+	nrtn blank
+	jam      SP_FLAG_STANDBY,mem_sp_flag
+	fetch    1,mem_sp_state
+	beq  SP_STAT_KEY_SEND,sp_send_LMP_ENCAPSULATED_HEADER
+	beq  SP_STAT_COMMIT_SEND,sp_send_LMP_SIMPLE_PAIRING_COMFIRM
+	beq  SP_STAT_RANDOM_SEND,sp_send_LMP_SIMPLE_PAIRING_NUMBER
+	beq  SP_STAT_CONFIRM_SEND,sp_send_LMP_DHKEY_CHECK
+	beq  SP_STAT_KEY_GENERATE,sp_generate_local_key
+	beq  SP_STAT_COMMIT_CALC,sp_calculate_commitment
+	beq  SP_STAT_CONFIRM_CHECK,sp_confirm_check
+	beq  SP_STAT_CONFIRM_CALC,sp_confirm_calc
+	beq  SP_STAT_LINK_KEY_CALC,sp_link_key_prarm_push
+	//beq  SP_STAT_FEATURE_EXT_SEND,send_LMP_FEATURES_REQ_EXT
+	rtn  
+
+master_simple_paring_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_6,mem_patch3c
+	fetch 1,mem_master_sp_flag
+	rtn blank
+	call lmo_fifo_check
+	nrtn blank
+	jam SP_FLAG_STANDBY,mem_master_sp_flag
+	fetch 1,mem_master_sp_state
+	beq SP_MASTER_STAT_START_SKIP,sp_master_send_io_cap_get
+	beq SP_MASTER_STAT_START_DONE,sp_master_send_io_cap_send
+	beq SP_STAT_KEY_SEND,sp_master_send_LMP_ENCAPSULATED_HEADER
+	beq SP_STAT_COMMIT_CALC,master_sp_calculate_commitment
+	beq SP_STAT_COMMITMENT_COMPARE,sp_master_commitment_compare
+	beq SP_STAT_RANDOM_SEND,sp_master_send_LMP_SIMPLE_PAIRING_NUMBER
+	beq SP_STAT_CONFIRM_CALC,sp_confirm_calc
+	beq SP_STAT_CONFIRM_SEND,master_sp_send_lmp_dhkey_check
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check
+	beq SP_STATE_END,master_sp_sm_end
+	rtn
+
+master_set_mem_master_sp_flag:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	rtn
+	
+master_clear_mem_master_sp_flag:
+	jam SP_FLAG_STANDBY,mem_master_sp_flag
+	rtn
+sp_calc_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_7,mem_patch3c
+	fetch 1,mem_ssp_enable
+	rtn blank
+	fetch 1,mem_sp_calc
+	rtn blank
+	increase 0x80,pdata
+	store    1,mem_sp_calc
+	rtnbit1 7
+	fetch    1,mem_ec_loopc
+	branch   sp_calc_sequence_done,blank
+	branch   eckp_calc
+
+sp_calc_sequence_done:    
+	call ecunmapz
+	fetch 1,mem_sp_calc
+	beq  SP_CALC_PUBKEY,sp_pubkey_generated
+	beq  SP_CALC_DHKEY,sp_dhkey_generated
+	rtn
+
+
+bn_testbit:
+	and pdata,7,queue
+	rshift3 pdata,pdata
+	iadd contr,contr
+	ifetch 1,contr
+	qisolate0 pdata
+	rtn
+
+
+ec_copy:
+	call memcpy24
+	call memcpy24
+	branch memcpy24
+	
+	
+bn_eq_zero:
+	ifetch 8,contr
+	nrtn blank
+	ifetch 8,contr
+	nrtn blank
+	ifetch 8,contr
+	rtn
+	
+	
+	/* return zero if eq */
+
+bn_eq_0:	
+	ifetch 4,regA
+	iforce temp
+	ifetch 4,regB
+	isub temp,null
+	nrtn zero
+	increase 4,regA
+	increase 4,regB
+	loop bn_eq_0
+	rtn
+
+	/* return positive if A >= B */
+bn_bigeq:
+	force 6,loopcnt
+	increase 20,regA
+	increase 20,regB
+bn_bigeq_0:	
+	ifetch 4,regB
+	iforce temp
+	ifetch 4,regA
+	isub temp,pdata
+	nrtn positive
+	nrtn blank
+	increase -4,regA
+	increase -4,regB
+	loop bn_bigeq_0
+	rtn
+
+bn_add:
+	force 6,loopcnt
+	force 0,regC
+bn_add_0:	
+	ifetch 4,regA
+	iforce temp
+	ifetch 4,regB
+	iadd temp,pdata
+	iadd regC,pdata
+	istore 4,contw
+	isolate1 32,pdata
+	setflag true,0,regC
+	increase 4,regA
+	increase 4,regB
+	loop bn_add_0
+	rtn
+
+bn_sub:
+	force 6,loopcnt
+	force 0,regC
+bn_sub_0:	
+	ifetch 4,regB
+	iforce temp
+	ifetch 4,regA
+	isub temp,pdata
+	isub regC,pdata
+	istore 4,contw
+	isolate1 32,pdata
+	setflag true,0,regC
+	increase 4,regA
+	increase 4,regB
+	loop bn_sub_0
+	rtn
+
+bn_rshift6:
+	force 6,loopcnt
+	increase 20,regA
+bn_rshift:
+	force 0,regC
+bn_rshift_0:	
+	ifetch 4,regA
+	isolate1 0,pdata
+	setflag true,1,regC
+	rshift pdata,pdata
+	isolate1 0,regC
+	setflag true,31,pdata
+	istore 4,regA
+	increase -4,regA
+	rshift regC,regC
+	loop bn_rshift_0
+	rtn
+
+bn_lshift:
+	force 6,loopcnt
+	force 0,regC
+bn_lshift_0:	
+	ifetch 4,regA
+	isolate1 31,pdata
+	setflag true,1,regC
+	lshift pdata,pdata
+	isolate1 0,regC
+	setflag true,0,pdata
+	istore 4,regA
+	increase 4,regA
+	rshift regC,regC
+	loop bn_lshift_0
+	rtn
+	
+bn_lshiftmod:
+	call bn_lshift
+bn_lshiftmod_ismod:	
+	isolate1 0,regC
+	branch bn_lshiftmod_0,true
+	arg mem_p,regB
+	copy regA,regC
+	increase -24,regA
+	call bn_bigeq
+	nrtn positive
+	copy regC,regA
+bn_lshiftmod_0:
+	increase -24,regA
+	arg mem_p,regB
+	copy regA,contw
+	branch bn_sub
+	
+
+bn_addmod:
+	call bn_add
+	copy contw,regA
+	branch bn_lshiftmod_ismod
+	
+bn_submod:
+	call bn_sub
+	isolate0 0,regC
+	rtn true
+	arg mem_p,regB
+	add contw,-24,regA
+	copy regA,contw
+	branch bn_add
+	
+
+bn_p192mod:
+	copy contw,timeup				/* save result ptr */
+	copy regA,alarm				/* temp save regA */
+	arg mem_tmp2,regB
+	copy regB,contw
+	add regA,24,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	force 0,pdata
+	istore 8,contw
+	copy timeup,contw
+	call bn_addmod
+	arg mem_tmp2,regB
+	copy regB,contw
+	force 0,pdata
+	istore 8,contw
+	add alarm,32,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	copy timeup,regA
+	copy regA,contw
+	call bn_addmod
+	arg mem_tmp2,regB
+	copy regB,contw
+	add alarm,40,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	istore 8,contw
+	copy timeup,regA
+	copy regA,contw
+	branch bn_addmod
+		
+
+bn_load:
+	force 6,loopcnt
+bn_load_0:	
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	loop bn_load_0
+	rtn
+
+
+	/* cost 1562 clks */	
+bn_mulmod:
+	copy contw,timeup					/* save result ptr */
+	arg mem_tmp1,contw
+	call bn_zero
+	arg mem_tmp1,contw
+	copy regA,contr
+	force 0,regext_index
+	call bn_load
+	copy regB,contr
+	call bn_load
+	force 0,regB
+bn_mulmod_1:	
+	force 0,temp
+	force 6,regC
+bn_mulmod_0:
+	ifetch 4,contw					/* d[i+j] */
+	iforce regA
+	copy regB,regext_index
+	deposit regext
+	copy regC,regext_index
+	imul32 regext,pdata
+	iadd regA,pdata					/* uv = a[i]*b[j] + d[i+j] */
+	iadd temp,pdata					/* uv += u */
+	istore 4,contw					/* ->d[i+j] */
+	rshift32 pdata,temp				/* temp = u = uv >> 32 */
+	increase 1,regC
+	compare 12,regC,0xff
+	nbranch bn_mulmod_0,true
+	deposit temp
+	istore 4,contw					/* d[i + 12] = u */
+	increase -24,contw
+	increase 1,regB
+	compare 6,regB,0xff
+	nbranch bn_mulmod_1,true
+	arg mem_tmp1,regA
+	copy timeup,contw
+	branch bn_p192mod
+
+	
+bn_sqrmod:
+	copy regA,regB
+	branch bn_mulmod
+
+bn_rshifteven:
+	copy regA,alarm
+bn_rshifteven_1:
+	copy alarm,regA
+	ifetch 1,regA
+	isolate1 0,pdata
+	rtn true
+	call bn_rshift6
+	ifetch 1,regB
+	isolate0 0,pdata
+	branch bn_rshifteven_0,true
+	arg mem_p,regA
+	copy regB,contw
+	call bn_add
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB						/* [6] */
+	increase -24,regB
+bn_rshifteven_0:
+	add regB,24,regA
+	force 7,loopcnt
+	call bn_rshift
+	branch bn_rshifteven_1
+
+	/* cost 141910 clks */
+bn_invmod:
+	copy contw,timeup					/* save result ptr */
+	arg mem_tmp0,contw				/* x */
+	call bn_zero
+	force 0,pdata
+	store 4,mem_tmp5
+	store 4,mem_t2
+	jam 1,mem_tmp0
+	arg mem_tmp1,contw				/* y */
+	call bn_zero
+	arg mem_p,contr
+	arg mem_tmp2,contw				/* a */
+	call memcpy24
+	copy regA,contr
+	arg mem_tmp3,contw				/* b */
+	call memcpy24
+bn_invmod_2:	
+	arg mem_tmp3,contr
+	call bn_eq_zero
+	branch bn_invmod_0,blank
+	arg mem_tmp3,regA
+	arg mem_tmp0,regB
+	call bn_rshifteven
+
+	arg mem_tmp2,regA
+	arg mem_tmp1,regB
+	call bn_rshifteven
+	arg mem_tmp3,regA
+	arg mem_tmp2,regB
+	call bn_bigeq
+	branch bn_invmod_1,positive
+	arg mem_tmp2,regA
+	arg mem_tmp3,regB
+	copy regA,contw
+	call bn_sub
+	arg mem_tmp0,regA
+	arg mem_tmp1,regB
+	copy regB,contw
+	call bn_add
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_2
+bn_invmod_1:
+	arg mem_tmp3,regA
+	arg mem_tmp2,regB
+	copy regA,contw
+	call bn_sub
+	arg mem_tmp1,regA
+	arg mem_tmp0,regB
+	copy regB,contw
+	call bn_add
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_2
+bn_invmod_0:
+	arg mem_tmp0,contw
+	call bn_zero
+	fetch 1,mem_tmp5
+	store 1,mem_tmp0
+	store 1,mem_tmp0a
+	arg mem_tmp0,regA
+	arg mem_tmp1,regB
+	copy regB,contw
+	call bn_addmod
+	arg mem_p,regA
+	arg mem_tmp1,regB
+	copy timeup,contw
+	branch bn_submod
+	
+
+
+	/* cost 64742 clks */
+ecdbl:
+	arg mem_cz,regA
+	arg mem_t2,contw
+	call bn_sqrmod
+	arg mem_t2,regA
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_a,regA
+	arg mem_t3,regB
+	arg mem_t3,contw
+	call bn_mulmod		/* t3=a*z4	*/
+	arg mem_cx,regA
+	arg mem_t2,contw
+	call bn_sqrmod
+	arg mem_t2,contr
+	arg mem_t1,contw
+	call memcpy24
+	arg mem_t1,regA
+	call bn_lshiftmod
+	arg mem_t2,regA
+	arg mem_t1,regB
+	arg mem_t2,contw
+	call bn_addmod
+	arg mem_t2,regA
+	arg mem_t3,regB
+	arg mem_t2,contw
+	call bn_addmod		/* t2=3*x2 + z*z4		D  */
+	arg mem_cx,contr
+	arg mem_t1,contw
+	call memcpy24
+	arg mem_cy,regA
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_t1,regA
+	call bn_lshiftmod
+	arg mem_t1,regA
+	call bn_lshiftmod
+	arg mem_t1,regA		
+	arg mem_t3,regB
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=4x*y2	B	*/
+	arg mem_t3,regA
+	arg mem_t0,contw
+	call bn_sqrmod
+	arg mem_t0,regA
+	call bn_lshiftmod
+	arg mem_t0,regA
+	call bn_lshiftmod		
+	arg mem_t0,regA		
+	call bn_lshiftmod		/* t0=8*y4		C */
+	arg mem_cy,contr
+	arg mem_t3,contw
+	call memcpy24
+	arg mem_t3,regA
+	call bn_lshiftmod
+	arg mem_t3,regA
+	arg mem_cz,regB
+	arg mem_cz,contw
+	call bn_mulmod		
+	arg mem_t2,regA
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_t3,regA
+	arg mem_t1,regB
+	arg mem_t3,contw
+	call bn_submod
+	arg mem_t3,regA
+	arg mem_t1,regB
+	arg mem_cx,contw
+	call bn_submod
+	arg mem_t1,regA
+	arg mem_cx,regB
+	arg mem_t3,contw
+	call bn_submod
+	arg mem_t3,regA
+	arg mem_t2,regB
+	arg mem_t3,contw
+	call bn_mulmod		
+	arg mem_t3,regA
+	arg mem_t0,regB
+	arg mem_cy,contw
+	branch bn_submod
+	
+
+	/* cost 104904	clks */
+ecadd:
+	arg mem_az,regA
+	arg mem_t7,contw
+	call bn_sqrmod
+	arg mem_cx,regA
+	arg mem_t7,regB
+	arg mem_t0,contw
+	call bn_mulmod		/* n1=t0=xa*zb2  */
+	arg mem_az,regA
+	arg mem_t7,regB
+	arg mem_t7,contw
+	call bn_mulmod	
+	arg mem_cy,regA
+	arg mem_t7,regB
+	arg mem_t1,contw
+	call bn_mulmod		/* n2=t1=ya*zb3 */
+	arg mem_cz,regA
+	arg mem_t7,contw
+	call bn_sqrmod
+	arg mem_ax,regA
+	arg mem_t7,regB
+	arg mem_t2,contw
+	call bn_mulmod		/* n3=t2=xb*za2 */
+	arg mem_cz,regA
+	arg mem_t7,regB
+	arg mem_t7,contw
+	call bn_mulmod	
+	arg mem_ay,regA
+	arg mem_t7,regB
+	arg mem_t3,contw
+	call bn_mulmod		/* n4=t3=yb*za3 */
+	arg mem_t0,regA
+	arg mem_t2,regB
+	arg mem_t7,contw
+	call bn_submod		/* n5=t7=n1-n3=t0-t2 */
+	arg mem_t0,regA
+	arg mem_t2,regB
+	arg mem_t0,contw
+	call bn_addmod		/* n7=t0=n1+n3=t0+t2 */
+	arg mem_t1,regA
+	arg mem_t3,regB
+	arg mem_t2,contw
+	call bn_submod		/* n6=t2=n2-n4=t1-t3 */
+	arg mem_t1,regA
+	arg mem_t3,regB
+	arg mem_t1,contw
+	call bn_addmod		/* n8=t1=n2+n4=t1+t3 */
+	arg mem_t1,regA
+	arg mem_t7,regB
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=n8*n5 */
+	arg mem_cz,regA
+	arg mem_az,regB
+	arg mem_t3,contw
+	call bn_mulmod	
+	arg mem_t3,regA
+	arg mem_t7,regB
+	arg mem_cz,contw
+	call bn_mulmod		/* z=za*zb*n5 */
+	arg mem_t7,regA
+	arg mem_t7,contw
+	call bn_sqrmod		/* t7=n5^2 */
+	arg mem_t7,regA
+	arg mem_t0,regB
+	arg mem_t3,contw
+	call bn_mulmod		/* t3=n5^2*n7 */
+	arg mem_t7,regA
+	arg mem_t1,regB
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=n8*n5^3 */
+	arg mem_t2,regA
+	arg mem_cx,contw
+	call bn_sqrmod		
+	arg mem_cx,regA
+	arg mem_t3,regB
+	arg mem_cx,contw
+	call bn_submod		/* x=n6^2-n5^2*n7 */
+	arg mem_cx,contr
+	arg mem_t7,contw
+	call memcpy24
+	arg mem_t7,regA
+	call bn_lshiftmod		/* t7=2*x */
+	arg mem_t3,regA
+	arg mem_t7,regB
+	arg mem_t3,contw
+	call bn_submod		/* t3=n9 */
+	arg mem_t3,regA
+	arg mem_t2,regB
+	arg mem_t2,contw
+	call bn_mulmod		/* t2=n9*n6 */
+	arg mem_t2,regA
+	arg mem_t1,regB
+	arg mem_cy,contw
+	call bn_submod	
+	arg mem_cy,regA
+	arg mem_p,regB
+	arg mem_cy,contw
+	force 0,regC
+	fetch 1,mem_cy
+	isolate1 0,pdata
+	call bn_add,true
+	copy regC,alarm
+	arg mem_cy,regA
+	call bn_rshift6
+	fetch 1,mem_cy5
+	isolate1 0,alarm
+	setflag true,7,pdata
+	store 1,mem_cy5
+	rtn
+
+	/* cost 22276983 clks */
+
+eckp_0:	
+	fetch 1,mem_ec_loopc
+	increase -1,pdata
+	nrtn positive
+	store 1,mem_ec_loopc
+	fetch 1,mem_ec_infinite
+	call ecdbl,blank
+	fetch 1,mem_ec_loopc
+	arg mem_k,contr
+	call bn_testbit
+	branch eckp_0,true
+	fetch 1,mem_ec_infinite
+	nbranch eckp_1,blank
+	call ecadd
+	branch eckp_0
+eckp_1:
+	jam 0,mem_ec_infinite
+	arg mem_ax,contr
+	arg mem_cx,contw
+	call ec_copy
+	branch eckp_0
+
+	/* cost 162522 clks */
+ecunmapz:
+	arg mem_cz,regA
+	arg mem_t3,contw
+	call bn_invmod			/* t3 = 1/z */
+	arg mem_t3,regA
+	arg mem_t1,contw		
+	call bn_sqrmod			/* t1 = 1/z2 */
+	arg mem_cx,regA
+	arg mem_t1,regB
+	arg mem_bx,contw
+	call bn_mulmod
+	arg mem_t3,regA
+	arg mem_t1,regB
+	arg mem_t2,contw			
+	call bn_mulmod			/* t2 = 1/z3 */
+	arg mem_cy,regA
+	arg mem_t2,regB
+	arg mem_by,contw
+	branch bn_mulmod		
+	
+	
+
+sha_endian_swap2:	
+	ifetch 4,contr
+	force 4,regA
+	increase 3,contw
+sha_endian_loop:	
+	istore 1,contw
+	rshift8 pdata,pdata
+	increase -2,contw
+	increase -1,regA
+	nbranch sha_endian_loop,zero
+	increase 5,contw
+	loop sha_endian_swap2
+	rtn	
+
+
+sha_getw:
+	lshift2 queue,pdata
+	iadd timeup,contr
+	ifetch 4,contr
+	rtn
+	
+sha_r:
+	force 16,alarm
+	arg memdat,timeup
+sha_r_loop:	
+	add alarm,-7,queue
+	call sha_getw
+	iforce temp						/* W[t - 7] */
+	add alarm,-16,queue
+	call sha_getw
+	iadd temp,temp					/* W[t-7] + W[t-16] */
+	add alarm,-2,queue
+	call sha_getw
+	shasx pdata,1,pdata
+	iadd temp,temp					/* S1(W[t -  2]) + W[t-7] + W[t-16] */
+	add alarm,-15,queue
+	call sha_getw
+	shasx pdata,0,pdata
+	iadd temp,temp					/* S0(W[t - 15]) + S1(W[t -  2]) + W[t-7] + W[t-16] */
+	lshift2 alarm,pdata
+	iadd timeup,contw
+	istoret 4,contw
+	increase 1,alarm
+	compare 64,alarm,0xff
+	nbranch sha_r_loop,true
+	rtn
+	
+
+sha_init:
+	arg memh0,contr
+	force 7,regext_index
+sha_init_0:	
+	ifetch 4,contr
+	iforce regext
+	increase -1,regext_index
+	branch sha_init_0,positive
+	rtn
+
+sha:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_0,mem_patch3d
+	call sha_r		/* preprocessing data into R() */
+	arg memahbak,contw
+	force 0,regext_index
+sha_0:	
+	deposit regext
+	istore 4,contw
+	increase 1,regext_index
+	compare 8,regext_index,0xff
+	nbranch sha_0,true
+	call enable_authrom
+	arg memk,timeup
+	arg memdat,alarm
+	force 64,loopcnt
+sha_loop:	
+	ifetcht 4,alarm
+	ifetch 4,timeup
+	increase 4,timeup
+	increase 4,alarm
+	iadd temp,pdata			/* x+K */
+	force 7,regext_index
+	iadd regext,temp			/* x+K+h */
+	force 4,regext_index
+	shasx regext,3,pdata
+	iadd temp,temp			/* temp = s3(e)+x+K+h */
+	force 5,regext_index
+	deposit regext
+	force 6,regext_index
+	ixor regext,pdata
+	force 4,regext_index
+	iand regext,pdata			/* (e & (f ^ g)) */
+	force 6,regext_index
+	ixor regext,pdata			/* F1(e, f, g) = g ^ (e & (f ^ g)) */
+	iadd temp,temp			/* temp1 = h + S3(e) + F1(e,f,g) + K + x */
+	force 7,regext_index
+	copy temp,regext			/* save to H */
+	force 3,regext_index
+	deposit regext
+	iadd temp,regext			/* save to D */
+	force 0,regext_index
+	deposit regext
+	force 1,regext_index
+	iand regext,temp			/* a & b */
+	ior regext,pdata			/* a | b */			
+	force 2,regext_index
+	iand regext,pdata			/* (c & (a | b)) */
+	ior temp,temp				/* F0:(a & b) | (c & (a | b)) */
+	force 0,regext_index
+	shasx regext,2,pdata
+	iadd temp,pdata			/* temp2 = S2(a) + F0(a,b,c) */
+	force 7,regext_index
+	iadd regext,regext			/* h = temp1 + temp2 */
+	regexrot					/* rotate move h,a-g => a-h */
+	loop sha_loop
+	arg memahbak,contr
+	force 0,regext_index
+sha_1:	
+	ifetch 4,contr
+	iadd regext,regext
+	increase 1,regext_index
+	compare 8,regext_index,0xff
+	nbranch sha_1,true
+	branch disable_authrom
+
+	
+sha_result:
+	arg   memresult,contw
+	force 7,regext_index
+sha_regext_save:
+	deposit regext
+	istore  4,contw 
+	increase -1,regext_index
+	branch   sha_regext_save,positive
+	rtn	
+
+pad_xor:
+//	arg memx_end,contr
+	arg      memdat,contw
+	increase -4,contr
+	sub      loopcnt,16,regA
+pad_xor_0:	    
+	ifetch   4,contr
+	ixor     temp,pdata
+	istore   4,contw	
+	increase -8,contr	
+	loop  pad_xor_0
+	copy     regA,loopcnt
+	deposit  temp
+pad_xor_1:	
+	istore 4,contw
+	loop pad_xor_1
+	rtn
+
+g_noninit_number_confirm:
+	call g_noninit0
+	call sha_result
+	branch g_common0
+
+g_noninit:
+	call g_noninit0
+	branch g_common0
+	
+g_noninit0:
+ 	arg      mem_sp_pubkey_remote_x_end,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_pubkey_local_x_end,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_random_remote_end,contr
+	call     memcpy_dword_swap4
+	call     sha_init
+	call     sha	
+ 	arg      mem_sp_random_local_end,contr
+	arg      memdat,contw
+	branch g_common
+	
+g_init:
+ 	arg      mem_sp_pubkey_local_x_end,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_pubkey_remote_x_end,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_random_local_end,contr
+	call     memcpy_dword_swap4
+	call     sha_init
+	call     sha	
+ 	arg      mem_sp_random_remote_end,contr
+	arg      memdat,contw
+	call g_common
+	branch g_common0
+	
+g_common:	
+	call     memcpy_dword_swap4
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	force    5,loopcnt
+	call memset0
+	setarg 640
+	istore 4,contw
+	branch sha
+g_common0:
+	fetch 4,memresult
+//	store 4,mem_gkey
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	store 4,mem_gkey
+	quotient pdata
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	arg 1000,rega
+	imul32 rega,pdata
+	fetcht 4,mem_gkey
+	iadd temp,pdata
+	store 4,mem_gkey
+	rtn
+
+function_f1_no_key:
+	jam 0,mem_passkey_1bit
+	branch function_f1_common
+	
+function_f1:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f1_no_key
+function_f1_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_1,mem_patch3d
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	fetch 2,mem_sp_prarm_stack
+	copy pdata,contr
+	force    4,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	fetch 2,mem_sp_prarm_stack+2
+	copy pdata,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	fetch 2,mem_sp_prarm_stack+4
+	copy pdata,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	istore   3,contw
+	
+	fetch 1,mem_passkey_1bit
+	
+	istore   1,contw
+	force    0,pdata
+	istore   8,contw
+	setarg   0x0388
+	istore   4,contw
+	call     sha
+	call     sha_result
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	fetch 2,mem_sp_prarm_stack
+	copy pdata,contr
+	force    4,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call		bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha
+	branch     sha_result
+	
+	
+function_f2:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	fetch 2,mem_sp_prarm_stack+12
+	copy pdata,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	fetch 2,mem_sp_prarm_stack+14
+	copy pdata,contr
+	call     memcpy_dword_swap4
+
+	setarg   0x62746c
+	lshift8  pdata,pdata
+	or_into       0x6b,pdata       
+	istore   4,contw
+	arg      mem_addr_value_end,contr
+	force    3,loopcnt
+	call     memcpy_dword_swap
+	
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	force    0,pdata
+	istore   8,contw
+	setarg   0x0380
+	istore   4,contw
+	call     sha
+
+	call     sha_result
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	arg      mem_sp_dhkey_end,contr 
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha
+	branch     sha_result
+	
+
+function_f3a:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f3a_no_pin
+function_f3a_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_2,mem_patch3d
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      mem_sp_random_remote_end,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	arg      mem_sp_random_local_end,contr
+	call     memcpy_dword_swap4
+	branch function_f3_common
+
+function_f3a_no_pin:
+	setarg 0
+	store 4,mem_pin
+	branch function_f3a_common
+
+function_f3b_no_pin:
+	setarg 0
+	store 4,mem_pin
+	branch function_f3b_common
+
+
+function_f3b:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f3b_no_pin
+function_f3b_common:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+
+	arg      mem_sp_random_local_end,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	arg      mem_sp_random_remote_end,contr
+	call     memcpy_dword_swap4
+function_f3_common:    
+	setarg   0x0    
+	istore   8,contw
+	istore   4,contw
+	fetch 4,mem_pin
+	istore   4,contw
+	
+	copy     contw,temp
+	jam      0x80,mem_addr_padding
+	copy     temp,contw
+	arg      mem_addr_iocap_end,contr
+	call     memcpy_dword_swap4
+
+	call     sha
+    
+	arg      memdat,contw
+	force 7,loopcnt
+	call memset0
+	istore   4,contw
+	setarg   0x03F8
+	istore   4,contw
+	call     sha
+	call     sha_result
+	
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	arg      mem_sp_dhkey_end,contr 
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha	
+	branch     sha_result
+		
+/*
+eckp:
+	jam 192,mem_ec_loopc
+	jam 1,mem_ec_infinite
+*/
+eckp_calc_init:
+	jam      192,mem_ec_loopc
+eckp_calc_init_1:    
+	fetch    1,mem_ec_loopc
+	rtn      blank
+	increase -1,pdata
+	store    1,mem_ec_loopc 	
+	arg      mem_k,contr
+	call     bn_testbit
+	branch eckp_calc_init_1,true
+	arg      mem_ax,contr
+	arg      mem_cx,contw
+	branch     ec_copy	
+	
+eckp_calc:
+	call     ecdbl  
+	fetch    1,mem_ec_loopc
+	increase -1,pdata
+	store    1,mem_ec_loopc
+	arg      mem_k,contr
+	call     bn_testbit
+	rtn	true
+	branch     ecadd                
+	             
+memcpy_dword_swap4:
+	force 4,loopcnt
+memcpy_dword_swap:
+	increase -4,contr
+memcpy_dword_swap_loop:
+	ifetch   4,contr
+	istore   4,contw
+	increase -8,contr
+	loop   memcpy_dword_swap_loop 
+    	rtn
+
+	
+
+
+sp_initialize_256:	
+	set1 mark_ext_patch,mark
+	bpatch patch3d_3,mem_patch3d
+	fetch 1,mem_le_secure_connect_enable
+	branch  le_secure_connection_disable,blank
+	call le_secure_connection_enable
+	call sp_clear_flags
+//	jam SP_KEY_INVALID_256,mem_le_sc_local_key_invalid
+	branch sp_pubkey_calc_256
+    	
+
+
+
+sp_pubkey_calc_256:
+	fetch    1,mem_le_sc_local_key_invalid
+	rtnne SP_KEY_INVALID
+	fetch    1,mem_le_sc_calc
+	rtnne  SP_CALC_STANDBY
+	
+	arg      mem_le_private_key_256,contw 
+	force    15,queue
+	call     random_generator
+	random   pdata
+	rshift   pdata,pdata
+	istore   2,contw 
+
+	arg      mem_k_256,contw
+	arg      mem_le_private_key_256,contr	
+	call     memcpy32 //mem_sp_private_key=>mem_k 
+
+	arg      mem_ax_256,contw
+	arg      mem_gx_256,contr
+	call     memcpy64 //mem_gx=>mem_ax 
+	
+	arg      mem_az_256,contw
+	call      clear_mem_256
+	jam      1,mem_az_256 //0=>mem_az 
+
+	call     eckp_calc_init_256
+	jam SP_CALC_PUBKEY_256,mem_le_sc_calc
+	rtn    
+
+sp_pubkey_generated_256:
+	arg      mem_le_pubkey_local_x_256,contw
+	arg      mem_bx_256,contr
+	call     memcpy64   
+	jam      SP_KEY_VALID_256,mem_le_sc_local_key_invalid
+	jam      SP_CALC_STANDBY,mem_le_sc_calc
+	rtn
+	
+
+
+sp_dhkey_calc_256:
+	fetch    1,mem_sp_dhkey_invalid
+	rtnne  SP_KEY_INVALID
+	fetch    1,mem_le_sc_calc
+	rtnne  SP_CALC_STANDBY
+
+	arg      mem_k_256,contw
+	arg      mem_le_private_key_256,contr	
+	call     memcpy32
+
+	arg      mem_ax_256,contw
+	arg      mem_le_pubkey_remote_x_256,contr
+	call     memcpy64
+
+	arg      mem_az_256,contw
+	call     clear_mem_256
+	jam      1,mem_az_256 //0=>mem_az 
+
+	call     eckp_calc_init_256
+	jam     SP_CALC_DHKEY_256,mem_le_sc_calc
+	rtn 
+
+
+sp_dhkey_generated_256:
+//	jam SP_FLAG_COMMIT,mem_sp_dh_ready
+	arg mem_le_dhkey_256,contw
+	arg mem_bx_256,contr
+	call memcpy32
+	jam SP_KEY_VALID_256,mem_sp_dhkey_invalid
+	jam SP_CALC_STANDBY,mem_le_sc_calc
+	rtn
+
+
+
+sp_calc_sequence_256:
+	fetch 1,mem_le_secure_connect_enable
+	rtn blank
+	fetch 1,mem_le_sc_calc
+	rtn blank
+	increase 0x80,pdata
+	store    1,mem_le_sc_calc
+	rtnbit1 7
+	fetch    2,mem_ec_loopc
+	branch   sp_calc_sequence_done_256,blank
+	branch   eckp_calc_256
+
+sp_calc_sequence_done_256:    
+	set1 mark_ext_patch,mark
+	bpatch patch3d_4,mem_patch3d
+	call ecunmapz_256
+	fetch 1,mem_le_sc_calc
+	beq  SP_CALC_PUBKEY_256,sp_pubkey_generated_256
+	beq  SP_CALC_DHKEY_256,sp_dhkey_generated_256
+	rtn
+
+
+eckp_calc_256:
+	call     ecdbl_256  
+	fetch    2,mem_ec_loopc
+	increase -1,pdata
+	store    2,mem_ec_loopc
+	arg      mem_k_256,contr
+	call     bn_testbit
+	rtn	true
+	branch     ecadd_256   
+
+eckp_calc_init_256:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_5,mem_patch3d
+	setarg 256,pdata
+	store 2,mem_ec_loopc
+eckp_calc_init_256_1:    
+	fetch    2,mem_ec_loopc
+	rtn      blank
+	increase -1,pdata
+	store    2,mem_ec_loopc
+	arg      mem_k_256,contr
+	call     bn_testbit
+	branch eckp_calc_init_256_1,true
+	arg      mem_ax_256,contr
+	arg      mem_cx_256,contw
+	branch     memcpy96	
+
+
+ecunmapz_256:
+	arg mem_cz_256,regA
+	arg mem_t3_256,contw
+	call bn_invmod_256			/* t3 = 1/z */
+	arg mem_t3_256,regA
+	arg mem_t1_256,contw		
+	call bn_sqrmod_256			/* t1 = 1/z2 */
+	arg mem_cx_256,regA
+	arg mem_t1_256,regB
+	arg mem_bx_256,contw
+	call bn_mulmod_256
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_t2_256,contw			
+	call bn_mulmod_256			/* t2 = 1/z3 */
+	arg mem_cy_256,regA
+	arg mem_t2_256,regB
+	arg mem_by_256,contw
+	branch bn_mulmod_256	
+	
+ecdbl_256:
+	arg mem_cz_256,regA
+	arg mem_t2_256,contw
+	call bn_sqrmod_256
+	arg mem_t2_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256
+//call ice_break
+	arg mem_a_256,regA
+	arg mem_t3_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* t3=a*z4	*/
+	arg mem_cx_256,regA
+	arg mem_t2_256,contw
+	call bn_sqrmod_256
+//call ice_break
+	arg mem_t2_256,contr
+	arg mem_t1_256,contw
+	call memcpy32
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t2_256,regA
+	arg mem_t1_256,regB
+	arg mem_t2_256,contw
+	call bn_addmod_256
+//call ice_break
+	arg mem_t2_256,regA
+	arg mem_t3_256,regB
+	arg mem_t2_256,contw
+	call bn_addmod_256		/* t2=3*x2 + z*z4		D  */
+//call ice_break
+	arg mem_cx_256,contr
+	arg mem_t1_256,contw
+	call memcpy32
+	arg mem_cy_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t1_256,regA		
+	arg mem_t3_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		//S = 4X1Y1^2/* t1=4x*y2	B	*/
+	arg mem_t3_256,regA
+	arg mem_t0_256,contw
+	call bn_sqrmod_256
+	arg mem_t0_256,regA
+	call bn_lshiftmod_256
+	arg mem_t0_256,regA
+	call bn_lshiftmod_256		
+	arg mem_t0_256,regA		
+	call bn_lshiftmod_256	//T = 8Y1^4	/* t0=8*y4		C */
+	arg mem_cy_256,contr
+	arg mem_t3_256,contw
+	call memcpy32
+	arg mem_t3_256,regA
+	call bn_lshiftmod_256
+	arg mem_t3_256,regA
+	arg mem_cz_256,regB
+	arg mem_cz_256,contw
+	call bn_mulmod_256		//z = 2Y1Z1
+
+
+	arg mem_t2_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256   // M ^2
+//call ice_break
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256  // t2^2 - 4*cx *cy^2 
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_cx_256,contw
+	call bn_submod_256   //X2
+	arg mem_t1_256,regA
+	arg mem_cx_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256   //S-X2
+	arg mem_t3_256,regA
+	arg mem_t2_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256	//M(S-X2)	
+	arg mem_t3_256,regA
+	arg mem_t0_256,regB
+	arg mem_cy_256,contw
+	branch bn_submod_256  //M(S-X2)-T Y2	
+
+ecadd_256:
+
+	arg mem_az_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256
+	arg mem_cx_256,regA
+	arg mem_t7_256,regB
+	arg mem_t0_256,contw
+	call bn_mulmod_256		/* n1=t0=xa*zb2 U1 = X1Z0^2*/
+
+
+	arg mem_az_256,regA
+	arg mem_t7_256,regB
+	arg mem_t7_256,contw
+	call bn_mulmod_256	
+	arg mem_cy_256,regA
+	arg mem_t7_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* n2=t1=ya*zb3   S1 = Y1Z0^3*/
+
+
+	arg mem_cz_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256
+	arg mem_ax_256,regA
+	arg mem_t7_256,regB
+	arg mem_t2_256,contw
+	call bn_mulmod_256		/* n3=t2=xb*za2  U0 = X0Z1^2*/
+
+	arg mem_cz_256,regA
+	arg mem_t7_256,regB
+	arg mem_t7_256,contw
+	call bn_mulmod_256	
+	arg mem_ay_256,regA
+	arg mem_t7_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* n4=t3=yb*za3 S0 = Y0Z1^3*/
+
+
+//	arg mem_t0_256,regA
+//	arg mem_t2_256,regB
+	arg mem_t0_256,regb
+	arg mem_t2_256,rega
+	arg mem_t7_256,contw
+	call bn_submod_256		/* n5=t7=n1-n3=t0-t2   W=U1-U0*/
+	arg mem_t0_256,regA
+	arg mem_t2_256,regB
+	arg mem_t0_256,contw
+	call bn_addmod_256		/* n7=t0=n1+n3=t0+t2    T=U1+U0 */
+//	arg mem_t1_256,regA
+//	arg mem_t3_256,regB
+	arg mem_t1_256,regb
+	arg mem_t3_256,rega
+	arg mem_t2_256,contw
+	call bn_submod_256		/* n6=t2=n2-n4=t1-t3  S1-S0 */
+	arg mem_t1_256,regA
+	arg mem_t3_256,regB
+	arg mem_t1_256,contw
+	call bn_addmod_256		/* n8=t1=n2+n4=t1+t3 M=S1+S0*/
+	arg mem_t1_256,regA
+	arg mem_t7_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* t1=n8*n5     MW */
+	arg mem_cz_256,regA
+	arg mem_az_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256	      //Z0Z1
+	arg mem_t3_256,regA
+	arg mem_t7_256,regB
+	arg mem_cz_256,contw
+	call bn_mulmod_256		/* z=za*zb*n5   Z0Z1W */
+
+	arg mem_t7_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256		/* t7=n5^2 */
+	arg mem_t7_256,regA
+	arg mem_t0_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* t3=n5^2*n7 */
+	arg mem_t7_256,regA
+	arg mem_t1_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* t1=n8*n5^3 */
+	arg mem_t2_256,regA
+	arg mem_cx_256,contw
+	call bn_sqrmod_256		
+	arg mem_cx_256,regA
+	arg mem_t3_256,regB
+	arg mem_cx_256,contw
+	call bn_submod_256		/* x=n6^2-n5^2*n7 */
+	arg mem_cx_256,contr
+	arg mem_t7_256,contw
+	call memcpy32
+	arg mem_t7_256,regA
+	call bn_lshiftmod_256		/* t7=2*x */
+	arg mem_t3_256,regA
+	arg mem_t7_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256		/* t3=n9 */
+	arg mem_t3_256,regA
+	arg mem_t2_256,regB
+	arg mem_t2_256,contw
+	call bn_mulmod_256		/* t2=n9*n6 */
+	arg mem_t2_256,regA
+	arg mem_t1_256,regB
+	arg mem_cy_256,contw
+	call bn_submod_256	
+	arg mem_cy_256,regA
+	arg mem_p_256,regB
+	arg mem_cy_256,contw
+	force 0,regC
+	fetch 1,mem_cy_256
+	isolate1 0,pdata
+	call bn_add_256,true
+	copy regC,alarm
+	arg mem_cy_256,regA
+	call bn_rshift_256
+	fetch 1,mem_cy5_256
+	isolate1 0,alarm
+	setflag true,7,pdata
+	store 1,mem_cy5_256
+	rtn	
+
+bn_invmod_256:
+	copy contw,timeup					 
+	arg mem_tmp0_256,contw			 
+	call clear_mem_256
+	force 0,pdata
+//	store 4,mem_tmp52
+	store 4,mem_t2_256
+	jam 1,mem_tmp0_256      //y1
+	arg mem_tmp1_256,contw	//y2			 
+	call clear_mem_512      
+	arg mem_p_256,contr
+	arg mem_tmp2_256,contw		//j		 
+	call memcpy32
+	copy regA,contr
+	arg mem_tmp3_256,contw		//i		 
+	call memcpy32
+	
+//	arg mem_tmp22,regA
+//	arg mem_tmp32,regB
+//	call p_bn_bigeq_256
+//	branch assert,positive
+bn_invmod_256_2:	
+	arg mem_tmp3_256,contr
+	call bn_eq_zero_256
+	branch bn_invmod_256_0,blank
+//call ice_break    	
+//fetch 1,0x4ffe
+//increase 1,pdata
+//store 1,0x4ffe
+	arg mem_tmp3_256,regA
+	arg mem_tmp0_256,regB
+	call bn_rshifteven_256
+	arg mem_tmp2_256,regA
+	arg mem_tmp1_256,regB
+	call bn_rshifteven_256
+	
+	arg mem_tmp3_256,regA
+	arg mem_tmp2_256,regB
+	call bn_bigeq_256
+	branch bn_invmod_256_1,positive
+	arg mem_tmp2_256,regA
+	arg mem_tmp3_256,regB
+	copy regA,contw
+	call bn_sub_256
+	arg mem_tmp0_256,regA
+	arg mem_tmp1_256,regB
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_256_2
+bn_invmod_256_1:
+	arg mem_tmp3_256,regA
+	arg mem_tmp2_256,regB
+	copy regA,contw
+	call bn_sub_256
+	arg mem_tmp1_256,regA
+	arg mem_tmp0_256,regB
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_256_2
+bn_invmod_256_0:
+//call ice_break
+	arg mem_tmp1_256,regA
+	copy timeup,contw
+	call  bn_p256mod
+//call ice_break
+	arg mem_p_256,regA
+	copy timeup,regB
+	copy timeup,contw
+	branch bn_submod_256
+
+
+bn_mulmod_256:
+	copy contw,timeup					/* save result ptr */
+	
+	force 0,regext_index
+	
+	arg mem_tmp1_256,contw
+	call clear_mem_512
+	arg mem_regext,contw
+	call clear_mem_512
+//	jam 0,mem_regext_index
+
+//	arg mem_tmp12,contw
+	copy regA,contr
+//	force 0,regext_index
+	jam 0,mem_regext
+	setarg 0
+	call bn_load_mem
+	copy regB,contr
+	call bn_load_256
+//	force 0,regB
+//	jam 0,mem_regb
+	force 0,queue
+	arg mem_tmp1_256,contw	
+bn_mulmod_256_1:	
+//	copy regb,pdata
+//	store 1,
+	arg mem_regext,temp
+	copy queue,regb
+	lshift2 regb,pdata
+//	lshift4 pdata,pdata
+	iadd temp,regb	
+	force 0,temp
+	force 0,regC
+bn_mulmod_256_0:
+//	copy contw,pdata
+//	store 2,mem_contw
+//call ice_break
+//	copy pdata,contw
+	ifetch 4,contw					/* d[i+j] */
+	iforce regA
+//	copy regB,regext_index
+//	deposit regext
+	ifetch 4,regb
+	copy regC,regext_index
+	imul32 regext,pdata
+	iadd regA,pdata					/* uv = a[i]*b[j] + d[i+j] */
+	iadd temp,pdata					/* uv += u */
+	istore 4,contw					/* ->d[i+j] */
+	rshift32 pdata,temp				/* temp = u = uv >> 32 */
+	increase 1,regC
+	compare 8,regC,0xff
+	nbranch bn_mulmod_256_0,true
+//call ice_break
+	deposit temp
+	istore 4,contw					/* d[i + 12] = u */
+	increase -32,contw
+//	fetch 1,mem_regb
+//	copy pdata,regb
+	increase 1,queue
+	compare 8,queue,0xff
+	nbranch bn_mulmod_256_1,true
+	arg mem_tmp1_256,regA
+	copy timeup,contw
+	branch bn_p256mod
+
+bn_p256mod:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_6,mem_patch3d
+	copy contw,timeup				/* save result ptr */
+	copy regA,alarm				/* temp save regA */
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	call memset0_4	
+	istore 8,contw
+	add regA,44,contr
+	call memcpy8
+	call memcpy12
+	copy regb,rega
+	call  bn_lshiftmod_256 //2S1
+	arg mem_tmp2_256,regB
+	copy alarm,rega   
+	copy timeup,contw
+	call bn_addmod_256 //T+2S1
+//call ice_break	
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	call memset0_4	
+	istore 8,contw
+	add alarm,48,contr
+	call memcpy16
+	call memset0_4	
+	copy regb,rega
+	call  bn_lshiftmod_256 //2S2
+//call ice_break	
+//	arg 0,regB
+
+	arg mem_tmp2_256,regB
+	copy timeup,rega   
+	copy regA,contw	
+	call bn_addmod_256  //+2S2
+//call ice_break	
+//	arg 0,regB
+		
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,32,contr
+	call memcpy12
+	call memset0_4	
+	istore 8,contw
+	add alarm,56,contr
+	call memcpy8
+	copy timeup,regA
+	copy regA,contw
+	call bn_addmod_256 //+S3
+//call ice_break	
+//	arg 0,regB
+
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,36,contr
+	call memcpy12
+	add alarm,52,contr	
+	call memcpy12
+	add alarm,52,contr
+	call memcpy4
+	add alarm,32,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_addmod_256 //+S4	
+//call ice_break	
+//	arg 1,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,44,contr
+	call memcpy12
+	call memset0_4	
+	istore 8,contw
+	add alarm,32,contr
+	call memcpy4
+	add alarm,40,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D1	
+//call ice_break	
+//	arg 2,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,48,contr
+	call memcpy8
+	call memcpy8
+	force 0,pdata
+	istore 8,contw
+	add alarm,36,contr
+	call memcpy4
+	add alarm,44,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D2	
+//call ice_break	
+//	arg 3,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,52,contr
+	call memcpy12
+	add alarm,32,contr
+	call memcpy12
+	call memset0_4	
+	add alarm,48,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D3
+//call ice_break	
+//	arg 4,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,56,contr
+	call memcpy8
+	call memset0_4	
+	add alarm,36,contr
+	call memcpy12
+	call memset0_4	
+	add alarm,52,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	branch  bn_submod_256 //-D4	
+
+
+bn_load_mem:
+	force 32,loopcnt
+	arg mem_regext,contw
+	iadd contw,contw
+	branch memcpy
+
+bn_load_256:
+	force 8,loopcnt
+	branch bn_load_0
+
+bn_sqrmod_256:
+	copy regA,regB
+	branch bn_mulmod_256
+
+bn_add_256:
+	force 8,loopcnt
+ 	branch bn_add+1
+
+bn_addmod_256:
+	call bn_add_256
+	copy contw,regA
+	branch bn_lshiftmod_ismod_256
+
+bn_lshiftmod_256:
+	call bn_lshift_256
+bn_lshiftmod_ismod_256:	
+	isolate1 0,regC
+	branch bn_lshiftmod_p_256,true
+	arg mem_p_256,regB
+	copy regA,regC
+	increase -32,regA
+	call bn_bigeq_256
+	nrtn positive
+	copy regC,regA
+	branch sub_p2_256
+	
+bn_lshiftmod_p_256:
+	call sub_p2_256
+//	nrtn true
+	copy regA,regC
+	increase -32,regA
+	arg mem_p_256,regB
+	call bn_bigeq_256
+	nrtn positive
+	copy regC,regA
+	branch sub_p2_256
+		
+	
+sub_p2_256:
+	increase -32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	branch bn_sub_256
+	
+
+
+	
+bn_submod_256:
+	call bn_sub_256
+//	isolate1 0,regC
+	branch  bn_submod_256_np,true
+//	copy regA,regC
+//	increase -32,regA
+	add contw,-32,regA
+	arg mem_p_256,regB
+	call bn_bigeq_256
+	nrtn positive
+	arg mem_p_256,regB
+	add contw,-32,regA
+//	copy regC,regA
+	copy rega,contw
+	branch  bn_sub_256
+bn_submod_256_np:	
+	add contw,-32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	call bn_add_256
+//	isolate1 0,regC
+	rtn true
+	add contw,-32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	branch bn_add_256	
+
+
+ 
+bn_sub_256:
+	force 8,loopcnt
+	branch bn_sub+1
+
+bn_rshift_256:
+	force 8,loopcnt
+	increase 28,regA
+	branch bn_rshift
+
+bn_lshift_256:
+	force 8,loopcnt
+	force 0,regC
+	branch bn_lshift_0
+
+bn_bigeq_256:
+	force 8,loopcnt
+	increase 28,regA
+	increase 28,regB
+	branch bn_bigeq_0
+
+
+bn_eq_zero_256:
+	ifetch 8,contr
+	nrtn blank
+	branch bn_eq_zero
+
+
+
+	
+bn_rshifteven_256:
+	copy regA,alarm
+bn_rshifteven_256_1:
+	copy alarm,regA
+	ifetch 1,regA
+	isolate1 0,pdata
+	rtn true
+	call bn_rshift_256
+	ifetch 1,regB
+	isolate0 0,pdata
+	branch bn_rshifteven_256_0,true
+	arg mem_p_256,regA
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB						 
+	increase -32,regB
+bn_rshifteven_256_0:
+	add regB,32,regA
+	force 9,loopcnt
+	call bn_rshift
+	branch bn_rshifteven_256_1		
+
+
+
+ui_init:
+	call lpm_disable_exen_output
+	rtn wake
+	call ui_button_init
+	call ui_timer_init
+	branch ui_led_init
+
+ui_dispatch:
+	call ui_led_blink_polling
+	
+	branch ui_timer_check
+	
+ui_button_init:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_7,mem_patch3d
+	fetch 1,mem_ui_button_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	iforce temp
+	call gpio_config_output
+	fetcht 1,mem_ui_button_gpio
+	call gpio_out_inactive
+	nop 100
+	fetcht 1,mem_ui_button_gpio
+	call gpio_config_input
+	branch ui_button_polling
+
+
+	
+ui_button_polling:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_0,mem_patch3e
+	fetch 1,mem_ui_button_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	copy pdata,temp
+	call gpio_get_bit
+	nbranch ui_button_up,true
+	//fall through
+ui_button_down:
+	call ui_button_check_long_press
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BTN_DOWN
+	store 2,mem_ui_state_map
+	fetch 1,mem_ui_button_last_state
+	rtneq UI_BUTTON_STATE_DOWN
+	jam UI_BUTTON_STATE_DOWN,mem_ui_button_last_state
+	//Down Edge
+	fetch 1,mem_ui_button_timeout
+	store 1,mem_ui_button_timer //start long press timer
+	call lpm_button_get_wake_lock
+	jam BT_EVT_BUTTON_DOWN,mem_fifo_temp
+	branch ui_ipc_send_event
+ui_button_up:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BTN_DOWN
+	store 2,mem_ui_state_map
+	fetch 1,mem_ui_button_last_state
+	rtneq UI_BUTTON_STATE_UP
+	jam UI_BUTTON_STATE_UP,mem_ui_button_last_state
+	//Up Edge
+	jam 0,mem_ui_button_timer//stop long press timer
+	call lpm_button_clean_wake_lock
+	jam BT_EVT_BUTTON_UP,mem_fifo_temp
+	branch ui_ipc_send_event
+
+ui_button_check_long_press:
+	fetch 1,mem_ui_button_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_ui_button_timer
+	nrtn blank
+	//Long Press
+	jam BT_EVT_BUTTON_LONG_PRESSED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+lpm_button_get_wake_lock:
+	arg wake_lock_button,queue
+	branch lpm_get_wake_lock
+	
+lpm_button_clean_wake_lock:
+	arg wake_lock_button,queue
+	branch lpm_put_wake_lock
+
+ui_led_init:
+	fetch 1,mem_led_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	iforce temp
+	call gpio_config_output
+	branch ui_led_off
+	
+ui_led_blink_stop:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_LED_BLINK
+	store 2,mem_ui_state_map
+	jam ui_led_stop,mem_led_switch
+ui_led_off:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_LED_ON
+	store 2,mem_ui_state_map
+	fetcht 1,mem_led_gpio
+	branch gpio_out_inactive
+
+ui_led_on:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_LED_ON
+	store 2,mem_ui_state_map
+	jam ui_led_stop,mem_led_switch
+	fetcht 1,mem_led_gpio
+	branch gpio_out_active
+
+ui_led_blink_start:
+	jam 0xff,mem_led_blink_count
+ui_led_blink_start1:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_LED_BLINK
+	store 2,mem_ui_state_map
+	jam ui_led_start,mem_led_switch
+	rtn
+	
+ui_led_blink_polling:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_1,mem_patch3e
+	fetch 1,mem_led_blink_count
+	rtn blank
+	fetch 1,mem_led_switch
+	rtneq ui_led_stop
+	arg ui_led_blink,queue
+	call timer_check
+	nrtn blank
+	fetch 1,mem_led_switch
+	beq ui_led_dark_time,in_ui_led_blink_polling_dark
+	call ui_led_on
+	jam ui_led_dark_time,mem_led_switch
+	fetch 2,mem_led_light_time
+	branch in_ui_led_blink_timer_start
+in_ui_led_blink_polling_dark:
+	call ui_led_off
+	fetch 1,mem_led_blink_count
+	beq LED_FLASH_INFINITE,in_ui_led_infinite
+	increase -1,pdata
+	store 1, mem_led_blink_count
+in_ui_led_infinite:
+	jam ui_led_light_time,mem_led_switch
+	fetch 2,mem_led_dark_time
+in_ui_led_blink_timer_start:
+	arg ui_led_blink,queue
+	branch timer_init	
+
+ui_timer_timeout:
+	setarg 0x1000
+	lshift16 pdata,pdata
+	iadd regb,regb
+	rtn
+	
+ui_timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_2,mem_patch3e
+	arg 0,rega
+	fetcht 4,mem_ui_timer_last_btclk
+	copy clkn_bt,regb
+	copy regb,pdata
+	isub temp,null
+	ncall ui_timer_timeout,positive
+	//call ice_break
+ui_timer_check_loop:
+	copy regb,pdata
+	increase 160,temp    //320btclk = 100ms
+	increase 160,temp
+	isub temp,null
+	nbranch ui_timer_check_end,positive
+	increase 1,rega   //increase 1 every 100ms count
+	and rega,0x0f,pdata
+	nbranch ui_timer_check_loop,blank
+	arg 0,rega  //reset timer if it's longer than 1.5s between 2 checks
+	call ui_timer_check_send_evt
+ui_timer_init:
+	copy clkn_bt,pdata
+	store 4,mem_ui_timer_last_btclk
+	rtn
+ui_timer_check_end:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_3,mem_patch3e
+	copy rega,pdata
+	rtn blank
+	increase -160,temp    //320btclk = 100ms
+	increase -160,temp
+	set0 28,temp
+	storet 4,mem_ui_timer_last_btclk
+ui_timer_check_send_evt:
+	increase BT_EVT_TIMER_INIT,pdata
+	store 1,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+
+//**********************************************************//
+//************UI Inter-Processor Communication*******//
+//**********************************************************//
+ui_ipc_get_lock:
+	jam 1,mem_ipc_lock_bt
+ui_ipc_get_lock_wait:
+	fetch 1,mem_ipc_lock_c51
+	nbranch ui_ipc_get_lock_wait,blank
+	rtn
+	
+ui_ipc_put_lock:
+	jam 0,mem_ipc_lock_bt
+	rtn
+	
+
+	
+ui_ipc_send_event:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_4,mem_patch3e
+	call ui_ipc_get_lock
+	copy rega,pdata
+	store 4,mem_ipc_rega_temp
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_in
+	fetch 4,mem_ipc_rega_temp
+	copy pdata,rega
+	branch ui_ipc_put_lock
+
+ui_ipc_send_cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_5,mem_patch3e
+	call ui_ipc_get_lock
+	copy rega,pdata
+	store 4,mem_ipc_rega_temp	
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_in
+	fetch 4,mem_ipc_rega_temp
+	copy pdata,rega	
+	branch ui_ipc_put_lock
+
+ui_ipc_clean_all_fifo:
+	setarg 0
+	store UTIL_FIFO_LEN,mem_ipc_fifo_c512bt
+	store UTIL_FIFO_LEN,mem_ipc_fifo_bt2c51
+	rtn
+	
+check_51cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_6,mem_patch3e
+	fetch 1,mem_hci_cmd
+	nrtn blank
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_is_empty
+	rtn blank
+	jam IPC_CONTINUE_PROCESS,mem_ipc_skip_continue_proc
+	call check_51cmd_once
+	fetch 1,mem_ipc_skip_continue_proc
+	branch check_51cmd,blank
+	rtn
+
+check_51cmd_once:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_7,mem_patch3e
+	call ui_ipc_get_lock
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_out
+	copy pdata,temp
+	call ui_ipc_put_lock
+	copy temp,pdata
+	rtn blank
+ 	beq BT_CMD_START_DISCOVERY,check_51cmd_start_discovery
+  	beq BT_CMD_STOP_DISCOVERY,check_51cmd_stop_discovery
+  	beq BT_CMD_RECONNECT,check_51cmd_reconnect
+  	beq BT_CMD_ENTER_SNIFF_SUBRATING,check_51cmd_enter_sniff_subrating
+  	beq BT_CMD_EXIT_SNIFF_SUBRATING,check_51cmd_exit_sniff_subrating
+  	beq BT_CMD_SNIFF_TEST,check_51cmd_sniff_test
+	beq BT_CMD_START_INQUIRY,check_51cmd_inq
+	beq BT_CMD_STOP_INQUIRY,check_51cmd_stop_inq
+	beq BT_CMD_START_ADV,check_51cmd_adv
+	beq BT_CMD_STOP_ADV,check_51cmd_stop_adv
+	beq BT_CMD_START_DIRECT_ADV,check_51cmd_direct_adv
+	beq BT_CMD_STOP_DIRECT_ADV,check_51cmd_stop_direct_adv
+	beq BT_CMD_LED_BLINK,ui_led_blink_start
+	beq BT_CMD_LED_ON,ui_led_on
+	beq BT_CMD_LED_OFF,ui_led_blink_stop
+	beq BT_CMD_LE_START_CONN,check_51cmd_le_start_con
+	beq BT_CMD_LE_START_SCAN,check_51cmd_start_scan
+	beq BT_CMD_LE_STOP_SCAN,check_51cmd_stop_scan
+	beq BT_CMD_ENTER_HIBERNATE,check_51cmd_hibernate
+	beq BT_CMD_LE_SMP_SECURITY_REQUEST,check_51cmd_le_smp_sec_req
+	beq BT_CMD_LE_START_WRITE,check_51cmd_le_start_write
+	beq BT_CMD_BB_RECONN_CANCEL,check_51cmd_bb_reconn_cancel
+	//context related, process in context
+	store 1,mem_fifo_temp
+	set1 mark_ext_patch,mark
+	bpatch patch3f_0,mem_patch3f
+	call lmo_fifo_check
+	nbranch check_51cmd_restore,blank  //process this cmd next time while lmo fifo is full
+check_51cmd_once_continue:
+	fetch 1,mem_fifo_temp
+	bmark0 mark_context,check_51cmd_check_idle
+  	beq BT_CMD_ENTER_SNIFF,cmd_in_sniff
+  	beq BT_CMD_EXIT_SNIFF,cmd_exit_sniff
+  	beq BT_CMD_SET_PIN_CODE,check_51cmd_pincode
+	beq BT_CMD_DISCONNECT,check_51cmd_disconnect
+	beq BT_CMD_LE_DISCONNECT,check_51cmd_le_disconnect
+	beq BT_CMD_ROLE_SWITCH,check_51cmd_role_switch
+	beq BT_CMD_STORE_RECONN_INFO_LE,eeprom_store_le_reconn_info
+	beq BT_CMD_STORE_RECONN_INFO_BT,eeprom_store_bd_reconn_info
+	beq BT_CMD_LE_UPDATE_CONN,check_51cmd_ble_update_connect_param
+	beq BT_CMD_DHKEY_NOT_ACCEPT,check_51cmd_dhkey_not_accept
+  	rtn
+
+check_51cmd_dhkey_not_accept:
+	call tid_set_reply
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	branch parse_lmp_dhkey_check_reject	
+
+check_51cmd_ble_update_connect_param:
+	jam XT_LL_CONNECTION_PARAM_REQ,mem_fifo_temp
+	branch le_xtype_fifo_in
+check_51cmd_check_idle:
+	store 1,mem_fifo_temp
+  	call context_check_idle
+	branch check_51cmd_restore,zero
+	call context_search_plap
+	nrtn zero
+check_51cmd_restore:
+	jam IPC_SKIP_CONTINUE_PROCESS,mem_ipc_skip_continue_proc
+	branch ui_ipc_send_cmd
+
+
+check_51cmd_role_switch:
+  	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	nrtn master
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	jam LMP_SWITCH_REQ ,mem_lmo_opcode2
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	rtn
+	
+check_51cmd_start_discovery:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_DISCOVERY
+	store 2,mem_ui_state_map
+	jam 3,mem_scan_mode
+	rtn
+	
+check_51cmd_stop_discovery:
+	jam 0,mem_hid_handshake_timer_count
+	jam 0,mem_scan_mode
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_DISCOVERY
+	store 2,mem_ui_state_map
+	rtn
+	
+check_51cmd_reconnect:	
+	jam hci_cmd_create_conn,mem_hci_cmd
+	rtn
+	
+check_51cmd_disconnect:
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam OTHER_END_TERMINATED,mem_disconn_reason_send
+	rtn
+	
+	
+check_51cmd_enter_sniff_subrating:
+	rtn
+	
+check_51cmd_exit_sniff_subrating:
+	rtn	
+	
+check_51cmd_sniff_test:
+	rtn
+	
+check_51cmd_pincode:
+	jam pincode_state_pincode_ready,mem_pincode_state
+	branch cmd_pair
+
+check_51cmd_inq:
+	rtn
+check_51cmd_stop_inq:
+	rtn
+check_51cmd_adv:
+	jam ON,mem_le_adv_enable
+	jam ADV_IND,mem_le_adv_type
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	rtn
+check_51cmd_stop_adv:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	jam OFF,mem_le_adv_enable
+	rtn
+check_51cmd_direct_adv:
+	jam ON,mem_le_adv_enable
+	jam ADV_DIRECT_IND,mem_le_adv_type
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	rtn
+check_51cmd_stop_direct_adv:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	jam OFF,mem_le_adv_enable
+	rtn
+check_51cmd_le_disconnect:
+	setarg 10 // 100ms
+	store 2,mem_le_superto
+	jam XT_LL_TERMINATE_IND,mem_fifo_temp
+	branch le_xtype_fifo_in
+check_51cmd_le_start_con:
+	jam ON,mem_le_scan_enable
+	jam hci_cmd_le_create_conn,mem_hci_cmd
+//	fetch 6,mem_app_peer_addr
+//	store 6,mem_le_conn_peer_addr
+	rtn
+check_51cmd_start_scan:
+	jam ON,mem_le_scan_enable
+	rtn
+check_51cmd_stop_scan:
+	jam OFF,mem_le_scan_enable
+	jam 0,mem_hci_cmd
+	rtn
+check_51cmd_le_smp_sec_req:
+	jam XT_SMP_SECURITY_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+check_51cmd_hibernate:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_1,mem_patch3f
+	fetch 2,mem_cb_before_hibernate
+	call callback_func
+	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+	fetch 1,mem_ui_button_gpio
+	beq UI_BUTTON_GPIO_DISABLE,check_51cmd_hibernate_btn_disabled
+	copy pdata,temp
+	call gpio_config_input
+check_51cmd_hibernate_btn_disabled:
+	call ui_led_off
+	call ui_ipc_clean_all_fifo
+	branch lpm_hibernate
+	
+check_51cmd_le_start_write:
+	jam 1,mem_le_switch_send_data
+	rtn
+
+check_51cmd_bb_reconn_cancel:
+	force page_length_timer,queue
+	branch timer_stop
+
+
+ui_check_paring_button:
+	fetch 1,mem_ui_state_map
+	rtnbit0 UI_STATE_BTN_DOWN
+	rtnbit0 UI_STATE_BT_RECONNECT
+	branch check_51cmd_bb_reconn_cancel
+
+
+
+right_shift_n: //rshiftN pdata,pdata
+	sub loopcnt,0,null
+	rtn zero
+right_shift_n_loop: 
+	rshift pdata,pdata
+	loop right_shift_n_loop
+	rtn
+	
+push_stack:
+	deposit contw
+	store 2, mem_contw
+	storet 8,mem_temp
+	deposit timeup
+	store 4,mem_timeup
+	deposit rega
+	store 4, mem_rega
+	deposit regb
+	store 4, mem_regb
+	deposit regc
+	store 3, mem_regc
+	deposit contr
+	store 2, mem_contr
+	rtn
+pop_stack:
+	fetcht 8,mem_temp
+	fetch 4,mem_timeup
+	iforce timeup
+	fetch 4, mem_rega
+	iforce rega
+	fetch 4, mem_regb
+	iforce regb
+	fetch 3,mem_regc
+	iforce regc
+	fetch 2, mem_contw
+	iforce contw
+	fetch 2, mem_contr
+	iforce contr
+	rtn
+	
+get_contw:
+	fetch 2,mem_contw
+	copy pdata,contw
+	rtn
+get_contr:
+	fetch 2,mem_contr
+	copy pdata,contr
+	rtn
+store_contw:
+	copy contw,pdata
+	store 2,mem_contw
+	rtn
+store_contr:
+	copy contr,pdata
+	store 2,mem_contr
+	rtn	
+	
+
+//
+save_cont_pointers:
+	copy contw,pdata
+	store 2,mem_hold_contw
+	copy contr,pdata
+	store 2,mem_hold_contr
+	rtn
+load_cont_pointers:
+	fetch 2,mem_hold_contw
+	copy pdata,contw
+	fetch 2,mem_hold_contr
+	copy pdata,contr
+	rtn
+
+memcpy96:
+	call memcpy32
+memcpy64:
+	call memcpy32
+	branch memcpy32
+memcpy12:
+	call memcpy8
+memcpy4:
+	ifetch 4,contr
+	istore 4,contw
+	rtn	
+memcpy8:
+	ifetch 8,contr
+	istore 8,contw
+	rtn	
+
+memcpy48:
+	call memcpy16
+memcpy32:
+	call memcpy8
+memcpy24:
+	call memcpy8
+memcpy16:
+	call memcpy8
+	branch memcpy8
+
+
+
+delay_10ms:
+	copy clkn_bt,pdata
+	increase 16,pdata
+	increase 16,pdata
+delay_ms_wait:
+	copy clkn_bt,temp
+	isub temp,null
+	branch delay_ms_wait,positive
+	rtn
+
+bn_zero:
+	force 3,loopcnt
+memset0:
+	force 0,pdata
+memset8:
+	istore   8,contw
+	loop   memset8
+	rtn
+
+memset0_8:
+	force 0,pdata
+	istore 8,contw
+	rtn
+memset0_4:
+	force 0,pdata
+	istore 4,contw
+	rtn	
+	
+clear_mem_256:
+	force 4,loopcnt
+	branch memset0 
+clear_mem_512:
+	force 8,loopcnt
+	branch memset0 
+
+clear_mem:
+	deposit loopcnt
+	rtn blank
+	setarg 0
+clear_mem_loop:
+	istore 1,contw
+	loop clear_mem_loop
+	rtn
+	
+
+clear_temp_block:
+	arg 32,loopcnt
+	arg mem_temp_block0,contw
+	branch clear_mem
+	
+xor_loop:
+	ifetch   4,regc
+	ifetcht 4,rega
+	ixor     temp,pdata
+	istore   4,contw	
+	increase 4,rega
+	increase 4,regc
+	loop  xor_loop
+	rtn
+	
+// 11 22 -> 22 11; 11 22 33 -> 33 22 11 
+// rega:data addr ;loopnct:length
+inverse_data:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_2,mem_patch3f
+	copy loopcnt,pdata
+	sub pdata,1,null
+	rtn positive
+	iadd rega,regb	
+	increase -1,regb
+	rshift loopcnt,loopcnt
+inverse_loop:
+	ifetcht 1,rega
+	ifetch 1,regb
+	istore 1,rega
+	istoret 1,regb
+	increase -1,regb
+	increase 1,rega
+	loop inverse_loop
+	rtn
+
+
+memcpy_fast:
+	deposit loopcnt
+	rtn blank
+memcpy_fast_loop:
+	increase -8,loopcnt
+	call memcpy8,positive
+	rtn zero
+	branch memcpy_fast_loop,positive
+	increase 8,loopcnt
+memcpy_fast_loop_four:
+	increase -4,loopcnt
+	call memcpy4,positive
+	rtn zero
+	branch memcpy_fast_loop_four,positive
+	increase 4,loopcnt
+	branch memcpy
+ 
+memcpy:
+	deposit loopcnt
+	rtn blank
+memcpy_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop memcpy_loop
+	rtn
+
+timer_stop:
+	setarg 0
+timer_init:
+	rshift clkn_bt,temp
+	storet 4,mem_last_clkn
+	arg mem_timers,contw
+	iforce temp
+	lshift queue,pdata
+	iadd contw,contw
+	istoret 2,contw
+	set1 mark_ext_patch,mark
+	bpatch patch3f_3,mem_patch3f
+	rtn
+
+timer_check_timeout:
+	arg 0x800,timeup
+	lshift16 timeup,timeup
+	iadd timeup,pdata
+	rtn
+
+
+timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_4,mem_patch3f
+	fetcht 4,mem_last_clkn
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn	
+	isub temp,null
+	ncall timer_check_timeout,positive	
+	isub temp,timeup
+	copy timeup,temp
+	arg mem_timers,contr
+	copy contr,contw
+	arg 16,loopcnt
+timer_loop:
+	ifetch 2,contr
+	isub temp,pdata
+	branch timer_counting,positive
+	force 0,pdata
+timer_counting:
+	istore 2,contw
+	loop timer_loop	
+	arg mem_timers,contr
+	lshift queue,pdata
+	iadd contr,contr
+	ifetch 2,contr
+	rtn
+
+
+
+	/* pdata 28+16 bit add temp 26+16 bit, result in temp */
+clk_add:
+	iadd temp,temp
+	copy temp, loopcnt
+	setarg 3750
+	isub loopcnt,pdata
+	rtn positive
+	sub pdata,0,pdata
+	rshift16 temp,temp
+	increase 1,temp
+	lshift16 temp,temp
+	ior temp,temp
+	rtn
+
+clk_diff_rt:
+	call clk_diff
+	branch clk2rt
+
+/* pdata -temp -> pdata, all are 28+16 bits, set user if negative */
+clk_diff:
+	disable user
+	isub temp,pdata
+	branch clk_diff_pos,positive
+	enable user
+	sub pdata,0,pdata
+clk_diff_pos:
+	rtnbit0 15
+	arg -61786,temp
+	iadd temp,pdata
+	set0 64,pdata
+	rtn
+
+clk2rt:
+	iforce contr
+	rshift16 pdata,pdata
+	arg 3750,temp
+	imul32 temp,pdata
+	iadd contr,pdata
+	rtn
+
+	/* pdata = clks in, temp = lpo out */
+clk2lpo:
+	lshift8 pdata,pdata
+	lshift4 pdata,pdata
+	fetcht 3,mem_clks_per_lpo
+	idiv temp
+	call wait_div_end
+	quotient temp
+	rtn
+
+	/* rt clk -> bt+rt clk */
+clk2bt:
+	arg 3750,temp
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	lshift16 pdata,pdata
+	remainder temp
+	ior temp,temp
+	rtn
+
+
+
+//input:contru 
+//output:temp
+//used register: temp regc
+string2dec_from_uart:
+	arg 0,temp
+string2dec_from_uart_done:
+         copy temp,regc
+	ifetch 1,contru
+	call uchar2dialog	
+	copy regc,temp
+	call swap
+	arg 10,regb
+	imul32 regb,pdata
+	iadd temp,pdata
+	copy pdata,temp
+	loop string2dec_from_uart_done
+	rtn
+	
+
+
+uchar2dialog:
+	arg 0x3a,temp
+	isub temp,null
+	nbranch uchar2dialog_number,positive
+	arg 0x61,temp
+	isub temp,null
+	branch uchar2dialog_a2f,positive
+	arg 0x37,temp
+	isub temp,pdata
+	rtn
+uchar2dialog_number:
+	arg 0x30,temp
+	isub temp,pdata
+	rtn
+uchar2dialog_a2f:
+	arg 0x57,temp
+	isub temp,pdata
+	rtn
+
+pn9:
+	copy temp,alarm
+	setarg 0x1ff
+	force 0,regb
+pn9_loop:	
+	rshift3 pdata,rega
+	rshift rega,rega
+	ixor rega,rega
+	isolate1 0,rega
+	setflag true,9,pdata
+	rshift temp,temp
+	isolate1 0,pdata
+	setflag true,7,temp
+	rshift pdata,pdata
+	increase 1,regb
+	compare 0,regb,0x7
+	nbranch pn9_loop,true
+	istoret 1,contw
+	loop pn9_loop
+	copy alarm,temp
+	rtn
+
+
+wait_div_end:	
+	rtn modone
+	branch wait_div_end
+
+
+
+
+//input:
+//	count:loopcnt str1:rega str2:regb
+//output:
+//	same:set falg true ,diff set falg false
+// using:
+//	reg:temp null flag:zero
+string_compare:
+	ifetch 1,rega
+	ifetcht 1,regb
+	isub temp,null
+	nrtn zero
+	increase 1,rega
+	increase 1,regb
+	loop string_compare
+	force 0,null
+	rtn
+
+	/* pdata = temp if pdata > temp */
+ceiling:
+	isub temp,null
+	nrtn positive
+	deposit temp
+	rtn
+	
+swap:
+	iadd temp,pdata
+	isub temp,temp
+	isub temp,pdata
+	rtn
+
+clean_mem:
+	arg 0x200,loopcnt
+	arg 0x4000,contw
+	branch memset0				// clear xram at boot
+/*
+slave_savelist:
+	fetch 5,mem_sync_clke
+	store 5,mem_pdatatemp
+	fetch 2,mem_clks_per_lpo
+	istore 2,contw
+	setarg 0
+	setflag match,7,pdata
+	setflag wake,6,pdata
+	setflag sync,5,pdata
+	setflag attempt,4,pdata
+	istore 1,contw
+	branch savelist_2
+
+
+le_savelist:
+	fetch 5,mem_sync_clke
+	store 5,mem_pdatatemp
+	fetch 1,mem_le_ch_mapped
+	istore 1,contw
+	fetch 2,mem_le_event_count
+	arg 0x0fff,contr
+	iand contr,pdata
+	setflag match,15,pdata
+	setflag wake,14,pdata
+	setflag sync,13,pdata
+	setflag attempt,12,pdata
+	istore 2,contw
+	branch savelist_2
+savelist:		
+	store 8,mem_pdatatemp
+savelist_2:
+	fetch 1,mem_seqi
+	rtneq 0x7f
+	and_into 0x7f,pdata
+	lshift3 pdata,pdata
+	arg mem_savelist,contw
+	iadd contw,contw
+	fetch 8,mem_pdatatemp
+	istore 8,contw
+	fetch 1,mem_seqi
+	isolate1 7,pdata
+	increase 1,pdata
+	and_into 0x7f,pdata
+	setflag true,7,pdata
+	store 1,mem_seqi
+	fetch 8,mem_pdatatemp
+	rtn	
+*/
+
+	//cb function ptr in pdata
+callback_func:
+	rtn blank
+	copy pdata,pc	//rtn through cb functon.
+	//branch assert
+
+wait_uarttx:
+	hfetch 2,core_uart_txitems
+	nbranch wait_uarttx,blank
+	rtn
+
+get_uart_rrptr:
+	hfetch 2,core_uart_rrptr
+	copy pdata,contru
+	rtn 
+
+
+ice_break:
+	hjam 0x1,core_ice_ctrl
+	rtn
+
+ice_setbp:
+	hstore 2,core_ice_break0
+	hfetch 1,core_ice_ctrl
+	set1 4,pdata
+	hstore 1,core_ice_ctrl
+	rtn
+ice_setbp2:
+	hstore 2,core_ice_break1
+	hfetch 1,core_ice_ctrl
+	set1 6,pdata
+	hstore 1,core_ice_ctrl
+	rtn
+	
+ice_set_write_bp:
+	hstore 2,core_ice_break0
+	hjam 0x30,core_ice_ctrl
+	rtn
+	
+
+
+test_enable_white:
+	hfetch 1,core_config
+	set0 whiteoff_bit,pdata
+	hstore 1,core_config			/* whitening on */
+	rtn
+
+check_uart_tx_buff:
+	hfetch 2,core_uart_txitems
+	arg UART_AIR_CONTROL_THRESHOLD,temp
+pdata_sub_temp:
+	isub temp,null
+	rtn
+
+	//fuction fifo_in
+	//rega pointer to fifo memory , *(rega+len) is the end of fifo
+	//mem_fifo_temp data into fifo
+	//assert if fifo was full
+fifo_in:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_5,mem_patch3f
+	ifetcht UTIL_FIFO_LEN,rega
+	and temp,0xff,pdata
+	nbranch fifo_in_push,blank
+	rshift8 temp,pdata
+	istore UTIL_FIFO_LEN,rega
+fifo_in_push:
+	increase UTIL_FIFO_LEN+UTIL_FIFO_OFFSET,rega
+	ifetch 1,rega
+	nbranch assert,blank //fifo full
+	fetch 1,mem_fifo_temp
+	istore 1,rega
+	rtn
+	
+	//fuction fifo_out
+	//rega pointer to fifo memory
+	//pdata  data from fifo, blank mains fifo empty
+fifo_out:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_6,mem_patch3f
+	arg UTIL_FIFO_LEN,loopcnt
+	ifetch UTIL_FIFO_LEN,rega
+	rtn blank
+fifo_out_loop:
+	ifetch 1,rega
+	nbranch fifo_out_end,blank
+	increase 1,rega
+	loop fifo_out_loop
+	branch assert
+fifo_out_end:
+	arg 0,temp
+	istoret 1,rega
+	rtn
+
+	//fuction fifo_is_empty
+	//rega pointer to fifo memory
+	//blank--- fifo is empty
+fifo_is_empty:
+	ifetch UTIL_FIFO_LEN,rega
+	rtn
+
+	//fuction fifo_is_full
+	//rega pointer to fifo memory
+	//blank--- fifo is NOT full
+fifo_is_full:
+	ifetch 1,rega
+	rtn
+	//rega pointer to fifo memory
+	//blank--- fifo is NOT near full
+fifo_is_near_full:
+	ifetch 2,rega
+	rtn
+
+	//rega pointer to fifo memory
+	//count output via pdata
+fifo_content_count:
+	arg 0,temp
+fifo_content_count_loop:
+	fetch 1,contr
+	loop fifo_content_count_loop,blank
+	increase 1,temp
+	loop fifo_content_count_loop
+	copy temp,pdata
+	rtn
+	
+not_greater_than:
+	isub temp,null
+	nrtn positive
+	copy temp,pdata
+	rtn
+
+
Index: Receive_Code/output/bt_program23.rom
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/bt_program23.rom	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/bt_program23.rom	(working copy)
@@ -0,0 +1,32691 @@
+11000101000100101000000000000111
+11000000000000011000000000010101
+11000000010000110000001000110010
+11000000010001010000000111111011
+11000000010001011000001001010100
+11000000010110100000000000110101
+00100000001000000011101100110001
+11000000000000011000000011011000
+11000000000011001000001000101010
+11000000000101011000000001110011
+11000000000101110000000011001111
+11000000000110010000000000011110
+11000000000110011000000010111100
+11000000000111100000000010010100
+11000000000111110000000010011101
+11000000010010101000000111110100
+11000000011011000000000001011011
+11000000011011001000000111000101
+11000000011011100000000100111011
+11000000011110111000000010000110
+00100000001000000011101100110001
+11011000111000000000000000001110
+00100000010000000111111011100010
+00100100010110100000000000011010
+00100000010000000000000000011011
+00100000010000000000000010011101
+00100000001000000011000000011011
+01011000000000000000000000001110
+11011000111000000000000000001110
+00100000001000000111111011010100
+01101000000000001100010001101011
+11000000000000001100110010111011
+11000000000000010000000000101101
+11000000000000011100110011011010
+11000000000000100100110011101000
+11000000000000101100110011101101
+11000000000000110100110011110010
+11000000000000111100110100010000
+11000000000001000100110100100111
+11000000000001001100110100101101
+11000000000001010100110100110010
+11000000000001011100110100110101
+11000000000001100100110100111001
+11000000000001101100110101100100
+00100000001000000011101100110001
+01011001000000000000001100000010
+01100000000000100100010011011100
+01011000000000010000000000010000
+11100000101000011000000000000000
+01101000000000110100010011011101
+01100000000000110100010001101100
+00011000000000000000010000001011
+00100000001000000100111110001001
+01101000000000001100000100110010
+00100000001110100011110101001011
+11000000000000011100000000001100
+11000000000001001000000000111101
+11000000000001010101100111011101
+11000010100000110101110111001010
+11000010100000111100000000001100
+00100000011000000000000000000000
+00100000011101011000000000000000
+00100000010000000111010011111101
+11011111001000000000000010000111
+11011000101000000100100110110010
+11011000110000000100101011000001
+00100000010000000111111011001101
+00100000010000000111010111001001
+01110000100000001000000100000000
+00100000010000000111001110100101
+01011000000000000111001101111100
+01100000000000010100001010001100
+01011000000000000111010010001100
+01100000000000010100001010001110
+01011000000000000111001101100101
+01100000000000010100001010011000
+01011000000000000111001101111010
+01100000000000010100001010010100
+01011000000000000111001101110001
+01100000000000010100001010010000
+01011000000000000000000011000110
+01100000000000010100001010010110
+00100000010000000000000111010000
+01011000000000000111001011101111
+01100000000000010100001010001010
+01011000000000000111010011110100
+01100000000000010100001010011010
+00100000010000000000000100001011
+01110000010000100001001000000000
+01110000010010001100011100000000
+00100000001000000111001010101101
+01101000000000001100011101010101
+11000000000000000000000001011110
+00100000001000000111001010110001
+01110000010001110101011000000001
+01110000010001110101101100000001
+00100000010000000111001110000010
+01011000000000000100011101110001
+00100000010000000111001110001110
+00100000010000000111110101000100
+01101000000000001100011100010011
+00100100001110100000000001100011
+01110000010000111111100100000001
+01011000000000000000000000000000
+01100000000000100100011100101001
+00100000010000000111001110000010
+01101000000000010100011101001000
+01100000000000010100011101001010
+00100000001000000000000001101101
+01101000000000010100011101001000
+01100000000000010100011101001010
+01110000010010001011101100000000
+01110000010000111111100100000001
+01011000000000000100011101100011
+00100000001000000111001110001110
+01101000000000110000001100000100
+01100000000000110000001101110010
+01101000000000110000001101110010
+01101000000010110100010100101100
+10011000010001100111110000000000
+00100000001000101100101110110100
+00100000001000000000000001111010
+01101000000000110000001101110010
+01101000000010110100101111110010
+10011000010001100111110000000000
+00100100011000101000000000000000
+01101000000000110000001101110010
+01100000000000110100101101001011
+01110000010000111111011100011100
+01011000000000000000000100000000
+01100000000000010100010100111001
+01110000010000111111100100000000
+01110000010010110101000100000001
+00100000001000000011111001101001
+00100000010000000111110110000000
+11011010001000000100011011111000
+00100000010000000111111110010101
+00011111111000100000010000000000
+00100000010000000111110110000100
+00011000010000100111111000000000
+00100000011110100000000000000000
+11000000000010110000000010001111
+00100000001000000111110110110011
+01110000010000111111100100000001
+01110000010000100111000100011011
+01101000000000110100101101001011
+01100000000000110100010100101100
+00100000011000000000000000000000
+00011010011000100111111000000000
+11000000000000010000000010010111
+00100000001000000100111110111001
+01101000000000001100000100110010
+11000000100001001000000010011010
+01110000010010001011101100000001
+01011000000000000000000000000011
+01100000000000010000001110010000
+00100000011000000000000000000000
+11101000110000011000000000000000
+01100000000000011000001110011010
+11000000000010011000000010100011
+11000000000011011000000010100010
+00100000011000000000000000000000
+00100000001000000000000111101001
+01101000000000001100101111111000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100101111111000
+11000000000000001000000010101010
+11000000000000000000000010110011
+00100000011000000000000000000000
+01011000000000000000000000100111
+01100000000000010100010011111000
+01110000010001010000101100000010
+01011000000000000000000000000001
+01100000000000010100010100001100
+01110000010010110101001000000000
+01110000010010110101001100000001
+01110000000010011011110100010010
+00100000001000000100101111010110
+01011000000000000000000001100000
+01100000000000010100010011111000
+01110000010001010000101100000010
+01011000000000000000000000000001
+01100000000000010100010100001100
+01110000010010110101001000000000
+01110000010010110101001100000001
+01110000000010011011110100010010
+00100000001000000100101111010110
+01101000000000001100010001101011
+11000000000010010000000010111111
+00100000001000000100110000101011
+01101000000000010100010011111000
+01100000000000010100010001101100
+01101000000000001100010100001011
+00011111111000100111001000000000
+11011000110000000100010100001100
+00100000010000000111111011001101
+00100000001000000100111110000001
+00011010011000100111111000000000
+11000000000101101111010001110101
+11000000000010000111010001111010
+11000000000010100111001100110100
+11000000000010101000000011110110
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000111001011111101
+00100000011000000000000000000000
+01101000000000010100101111011111
+01100000000000010100011101001010
+01011000000000000100011101111111
+00100000010000000111001110001110
+01110000010010110101000100000001
+01110000010001110101101100000001
+01110000010010110101001000100001
+00100000010000000100101111000010
+00100000011000000000000000000000
+01101000000000001000000000000101
+00011111111000001111111000000001
+01100000000000001000000000000101
+00100000010000000100101101010001
+00100000010000000000000011011111
+01111000010101001111110000000000
+00100000011000000000000000000000
+01101000000000001100101101010010
+11000000000100001000000011100100
+11000000000100101000000011101110
+11000000000100110000000011110101
+00100000011000000000000000000000
+01011000000000000000000000011010
+01100000000000010100010011111000
+01110000010001010000101100000010
+01011000000000000000000000000001
+01100000000000010100010100001100
+01110000010010110101001000000000
+01110000010010110101001100000001
+01110000000010011011110100010010
+00100000010000000100101111010110
+00100000011000000000000000000000
+01110000010010110101001000100110
+01110000000010011011110100000010
+00100000010000000100101111010110
+01101000000000010100011100001011
+01111001001000000111111000001001
+01100000000000010100011100001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000110100010100101100
+01110000010010111111100000000010
+01110000010010110101000100000000
+01110000010000100001001000000000
+01110000010010001100011100000000
+01110000010001001011001000000000
+01110000010010001100011000000000
+01110000010010001100000000000000
+00100000010000000000000100010000
+01101000000000010100011101001000
+01100000000000010100011101001010
+01101000000000001100011101000011
+11000000100000000111001101101001
+00100000010000000000000001101101
+01110000010001110100011000000000
+01011000000000000000000000000000
+01100000000000010000001010000110
+01011000000000000000000000000000
+01100000000000010000001010001000
+00100000001000000111001101100011
+01110000010010110110000000000000
+01011000000000000100101101100101
+01100000000000010100101101100001
+01100000000000010100101101100011
+00100000011000000000000000000000
+00100000001000000000000100001011
+01111000010101000111110000000000
+01101000000000001100101101100000
+00101111111000011111111000000110
+00100000011000001000000000000000
+01111000001101000111110000000000
+01101000000000010100101101100011
+00011111111000100000101000000000
+00011000010000100000110000000000
+00100000010000000111111011001101
+01101000000000001100101101100000
+00011111111000001111111000000001
+01100000000000001100101101100000
+01011000000000000100101101100011
+00100000001000000000000100011111
+00011111111000100010001000000000
+11011000010000000100101111011101
+11101010001000010000000000000000
+00011111111000001111111000010100
+10011000010001100111110000000000
+00100100001000010000000100100110
+01011000000000000100101101100101
+11100010001000010000000000000000
+00100000011000000000000000000000
+01111000010101000111110000000000
+01101000000000001100101101100000
+00100000011110100000000000000000
+01111000001101000111110000000000
+01101000000000001100101101100000
+00011111111000001111111111111111
+01100000000000001100101101100000
+01101000000000010100101101100001
+01100000000000010100101111011101
+01011000000000000100101101100001
+00100000010000000000000100011111
+01101000000000010100101111011101
+00100000011000000000000000000000
+01111000010101000111110000000000
+01101000000000001100101101100000
+00100000011110100000000000000000
+01111000001101000111110000000000
+01101000000000010100101101100001
+00100000011000000000000000000000
+01101000000000001100011110101001
+00100000011110100000000000000000
+00100000010000000111001110101111
+00100100001101000111110100101000
+00100000010000000111110100100110
+01111000010101000111110000000000
+01101000000000010100101111011111
+01100000000000010100011101001010
+01101000000000001100101101010001
+11000000000000000000000001101101
+00100000010000000111010011011110
+00100000001000010000000101011111
+01101000000000010100011110110110
+01100000000000010100011111000000
+01110000010001111100001000000000
+00011000000000000000111000000000
+01101000000000010100011110111000
+00011111111000110000010000000000
+01100000000010010100011110111000
+00011111111000010111111000000001
+01101000000010010100011111000000
+00011000010000010010001000000001
+00011000010000110000010000000000
+01100000000010010100011111000000
+10011010001000101111110000000000
+00100100010000101000000101100011
+01101000000000001100011110101001
+01101000000010001100011111000010
+00011000010000001000010000000001
+01100000000010001100011111000010
+00011000010000100000111000000000
+10011000111000101111110000000000
+00100100001000101000000101001011
+01101000000000010100011110110110
+01100000000000010100011110111000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100011110110110
+01100000000000010100011110111000
+00100000011000000000000000000000
+00011010001000100111111000000000
+00100000001110100000000110000001
+00011000111000100111111000000000
+11000000000000000000000110000111
+11000000000000001000000110001110
+11000000000000010000000110010101
+11000000000000011000000110011100
+11101000010000001000000000000000
+00100000011110100000000000000000
+01100000000000001100011110111010
+00011000010000001000010000000001
+01100000000010010100011110111011
+01101000000000010100011110111011
+11101111111010001000000000000000
+00011000010000100111001000000000
+10011000010000001000010000000000
+01100000000010010100011110111011
+00011111111000100000010000000000
+00100000010000000000000100010001
+01101000000000001100011110111010
+00011111111000001111111111111111
+01100000000000001100011110111010
+00100100001000101000000101101111
+00100000001000000000000101111011
+00100000010000000000000100110101
+00100100011101000000000000000000
+01111000010101000111110000000000
+01110000000010011011110100010010
+00100000010000000100101111010110
+00100000001000000111001101011111
+00011000111000100111111000000000
+11000000000000000000000110100011
+11000000000000001000000110101010
+11000000000000010000000110110001
+11000000000000011000000110111000
+00100000001000000000000101101010
+01110000010010110101111000000001
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110111111
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101101010
+01110000010010110101111000000010
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110111111
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101101010
+01110000010010110101110100000001
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110111111
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101101010
+01110000010010110101110100000010
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110111111
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101101010
+01110000010010110101111000000000
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110111111
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101101010
+01110000010010110101111000000000
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110111111
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101101010
+01110000010010110101110100000000
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110111111
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101101010
+01110000010010110101110100000000
+11011000110000000100101101011000
+11011111001000000000000000000111
+00100000010000000000000110111111
+01100000000000001100101101011111
+11011000010000000100101101010100
+00100000001000000000000101101010
+11011010001000000000000000000000
+11101000110000001000000000000000
+10011010001000001010001000000000
+11000010000000000000000111000000
+00011010001000010111111011111111
+00100000011000000000000000000000
+00100000010000000111001100011111
+00100000010000000111001100010011
+00100000001000000111001011111110
+01101000000000001100011101011010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101011010
+00100100011110100000000000000000
+01101000000000001100011101010110
+11000000000000001000000001100110
+00100000001000000111010010001010
+01110000100000001000000100000100
+01101000000100100000000001111000
+01111001001000000111111000000111
+01100000000100100000000001111000
+01110000100000000100001100000001
+01011000000000000100000000000000
+01100000000100010000000001010100
+01011000000000000100000000110000
+01100000000100010000000001010110
+01011000000000000001111100000000
+01100000000100010000000001011010
+01011000000000000001111100010000
+01100000000100010000000001011100
+01011000000000000100000000000000
+01100000000100010000000001011000
+01011000000000000001111100000000
+01100000000100010000000001011110
+01100000000100010000000001100000
+01011000000000000000000110100000
+01100000000100010000000001010010
+01101000000100010000000001010000
+01111001001111111111111000001111
+01100000000100010000000001010000
+01110000100000000110001010000001
+00100000011000000000000000000000
+01101000000000111000001100001011
+01100000000000111100101111101010
+01110000010010111110011100000010
+01110000010010111110100000101001
+01110000010010111110100100001000
+01101000000100010000000001011110
+00011111111000100001010000000000
+11011111001000000000000000001011
+11011000110000000100101111100111
+00100000010000000110001100111011
+00100000001000000110001100011111
+01101000000100100000000001111000
+01101000000110100000000001111100
+10011000010000011111111000000000
+00011111111001000111111000000000
+10011010001000010111111000000000
+01100000000100100000000001110000
+00100000011000000000000000000000
+01100000000010001000000000010111
+00011000010000001010001000000000
+00100000010000000011101000010011
+01011000000000000000010100000000
+00100000010000000011101100110101
+01110000100010010000011000000001
+01110000100010010000000000111100
+01110000100010010000000111100000
+01110000100010010110110100010010
+00100000000000000000000000001010
+01110000100010010000001000000001
+01110000100010010000001000111101
+00100000000000000000000000001010
+01110000100010010000001110110111
+00100000000000000000000000001010
+01110000100010010000001001111111
+01101000000000001100101101010001
+11000000000000000000001000011011
+01101000000000001100001010000000
+11000010100000000000001000010011
+11000010100000001000001000010111
+11000010100000010000001000011011
+11000010100000011000001000011111
+11000010100000100000001000100011
+01110000100010010101011011110000
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+01110000100010010101011011011111
+00100000010000000011100111110101
+01110000100010010101010111011111
+00100000011000000000000000000000
+01110000100010010101011011111111
+00100000010000000011100111110101
+01110000100010010101010111011111
+00100000011000000000000000000000
+01110000100010010101011011001110
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+01110000100010010101011011001011
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+01110000100010010101011011000000
+01110000100010010101010111011000
+00100000011000000000000000000000
+00100000010000000100100110000101
+00100000010000000000001000110000
+00100000010000000100101001101101
+01101000000000001100000100110010
+11000000000001010101110110001110
+00100000011000000000000000000000
+00100000001101101000001000000000
+00100000001000000100100110010100
+00100000001100001000001001000011
+01110000100010010101010111010100
+00100000000000000000000000000100
+01110000100010010101010111010010
+00100000000000000000000000000100
+01110000100010010101010111010001
+00100000000000000000000000000100
+01101000000000001100101101010001
+11000000000000000000001001010001
+01101000000000001100001010000000
+11000010100000000000001001000001
+11000010100000001000001001001110
+11000010100000010000001001000001
+11000010100000011000001001001110
+11000010100000100000001001001110
+01110000100010010101010111010000
+01110000100010010101011011100000
+00011000000000000010101000000000
+01111000010100001111110000000000
+01111000010100000111110000000000
+01111000001011110111110000000000
+01110000100010010000001000000000
+01110000100010010000000100000000
+01110000100010010000000000000000
+01110000100010010000001100000000
+01110000100010010000010001110000
+01110000100010010000011000000000
+00100000011000000000000000000000
+01110000100010010101010111010000
+01110000100010010101011011000000
+00100000001000000000001001000011
+01110000100010010101010111010000
+01110000100010010101011011000000
+00100000011000000000000000000000
+01101000000000001100001000011000
+00100100001110100000001001011010
+00100000010000000011110011010010
+00100000000000000111010100110000
+00100000000000000111010100110000
+00100000000000000111010100110000
+00100000010000000011101001011111
+01110000100000000100001000000101
+00100000000000000000000000000001
+01110000100000000100001000000100
+01101000000100001000100101101011
+00011111111000010111111011001111
+01100000000100001000100101101011
+00011111111000011111111000110000
+01100000000100001000100101101011
+00100000011000000000000000000000
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+00100000010000000011101110101011
+01110000100000000000011000001000
+01111001001111111000000000100101
+01000100100000000100000000000000
+01101000000100001000000100111011
+01100000000000001100001010111000
+00100000010000000110000011100011
+00100000100000000000000000000000
+00100100010101011111111101101011
+00100000010000000011100111111100
+00100000010000000110001000011101
+00100000010000000011101100111100
+00100000010000000100001011101010
+01111001001111111000000000100101
+01000100100000001100000000000000
+00100000010000000110011000000111
+00100000010000000101001100001100
+00100000010000000111110011101111
+00100000010000000011110101001011
+00100100010101011110010101110001
+01111001001111111000000000100101
+01000100100000010100000000000000
+00100000010101011011110101010101
+00100000010000000111010111100000
+00100000010101011011110000101001
+01111001001111111000000000100101
+01000100100000011100000000000000
+00100000010000000111011011110111
+00100000010000000111101011001111
+00100000010000000111010111100011
+00100000010000000100100100010001
+01111001001111111000000000100101
+01000100100000100100000000000000
+00100000010000000011000001000011
+00100000010000000011110101100000
+00100000010000000011000010011110
+00100000010000000011001100111110
+00100000010000000011001110110011
+00100000010000000011000000101001
+00100000010000000011110001010011
+00100000001000000011000000011001
+00100000010000000011000000101110
+11000110100001001000000000000000
+01111001001111111000000000001001
+00100000010000000011001001100000
+00100000001000000100100101111101
+01111001001111111000000000100101
+01000100100000101100000000000000
+00100000010000000011001010011111
+00100100001000101011000000111000
+00100000010000000011001001000110
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000010100000000100100100010101
+11000010100000001011000110001000
+00100000001000000011010000011111
+01111001001111111000000000100101
+01000100100000110100000000000000
+00100000010000000011001001101001
+00011111001000100111110000000000
+00100000011000101000000000000000
+00100000010000000011001001000110
+01101000000000001000000000110000
+11000010100000011011000011101000
+01101000000000001000000000110001
+11000010100000001011000110001000
+00100000001000000011010000011111
+01101000000000001100001001110001
+00100000011110100000000000000000
+11000000000000001011000001010011
+11000000000000010011000001011000
+11000000000000011011000001011011
+11000000000000101011000001100000
+11000000000011011011000001010000
+00100000010000000011001010010111
+00100000011000101000000000000000
+00100000010000000011001010011010
+00100000011000101000000000000000
+01110000010000100111000100000000
+00100000011000000000000000000000
+01110000000000111011111100011011
+01110000010000100111000100000000
+00100000011000000000000000000000
+01111001001000000000000000011100
+01111001001111111000000000011110
+01110000000000001000111011111111
+01110000000000001000110000011111
+00100000001000000011000001001110
+01111001001111111000000000011100
+00011000000000000011011000000000
+00100000001000000011000001001110
+00100000010000000011001010011010
+00100000011000101000000000000000
+00011000000000000000010000000001
+01110000000000010110110100000101
+00100000001000000011000001101000
+01111001001111111000000000100101
+01000100100000111100000000000000
+01101000000000110100001001110011
+00100000001110100011000001001110
+01110000010001110000101000000001
+01110000000000000101010100000011
+00100000001000000011000001100111
+00011000000000000000010000100101
+01111001001111111000000000100101
+01000100100001000100000000000001
+01101000000000001000000011110000
+00100000001110100011000001101111
+00011111111010011111111000000000
+00011111111100100111111000000000
+00011111111000001111111111111111
+01100000000000001100000101000110
+01100000000000001000000011101111
+01110000000000001000110100011111
+01111001001111111000000000001100
+00100000010000000011001001111010
+00100100001000101011000010010001
+00100000010000000011101100010001
+01100000000000001000000001110111
+01100000000010001000000001111100
+01101000000000110100001001110011
+01100000000000110000000001000000
+01111001001111111000000000100101
+01000100100001001100000000000001
+00100000010000000111111011100010
+00011000000000000111111000000000
+00101000010000011111111000000001
+01111101001000001111111000000101
+01111001001000000111111000000011
+01100000000000001000000000110000
+01110000000010011011110100000011
+00100000010000000111110110000110
+00011000000000000111111000000000
+01111001001000001111111000000100
+01100000000000001000000001001100
+01011000000000000000000000000000
+01111001001000000111111000000001
+01100000000000001000000000110001
+01111000001101001111110000000000
+00100000010000000011001001100000
+01111000010101001111110000000000
+00011000000000000000111000000100
+01101000000000010100000101011001
+00100000010000000111111011010100
+00100000001000000011000001001110
+01111001001111111000000000100101
+01000100100001010100000000000001
+01101000000000110100001001110011
+01100000000000110000000001000000
+00101000010000011111111000000001
+00100000001000001011000010011000
+00100000001000000011000001001110
+11011000101000000000000100000000
+11011111001000000000000000001000
+00100000010000000111111010010001
+01110000000010011011110100000100
+00100000010000000111110110000110
+00100000001000000011000001001110
+11000110100011100000000000000000
+00011000000000000000111000000010
+00100000010000000111111011100010
+01111101001110100000000000011100
+00100100001110100011000010100100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100001011100000000000001
+01101000000010010100000101011011
+00011000000000000000111000000100
+00100000010000000011011110011111
+00100000011101000000000000000000
+00100000010000000011100100110111
+00011000000000000100100000000000
+00100000011000011000000000000000
+01111001001111111000000000001011
+01111001001111111000000000000000
+00011100010000001100001000000001
+00101000000011111111111000011110
+01111001001000001100100000000010
+00101100001000000000010000000000
+00100100001000001011000011010000
+01111001001111111000000000100101
+01000100100001100100000000000001
+01101000000000001000000000010010
+00011111111000001111111000000001
+01100000000000001000000000010010
+00100000010000000011100101101110
+00100000010000000011100101100111
+00100000010000000011100110001011
+00100000010000000011101011101110
+00100000010000000011101011110100
+00100000010000000011101100000101
+00100000010000000011011011000110
+00100000010000000011000011000010
+00100000001000000011000010101100
+01111001001111111000000000100101
+01000100100001101100000000000001
+01101000000000001000000010001100
+00011111111000001111111111111111
+01100000000000001000000010001100
+00100000011000010000000000000000
+01110000000000001000110000011111
+01101000000000001000000010001110
+00011111111000001111111111111111
+01100000000000001000000010001110
+00100000011000010000000000000000
+01111001010000000000000000011110
+01110000000000001000111011111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100001110100000000000001
+00100000010000000011100101101110
+00100000010000000011100101100000
+00100000010000000011100110001011
+00100000010000000011101011111010
+00100000010000000011101001111111
+00100000010000000011101010100011
+00100000001011000011000011011011
+00100000010000000011000011000010
+00100000001000000011000010101111
+01111001001111111000000000100101
+01000100100001111100000000000001
+00100000010000000011101001010000
+00100000010000000011101100001101
+00100000010000000011010110000100
+01111001001111111000000000000001
+11000110100001011000000000000000
+01111001001111111000000000100101
+01000100100010000100000000000010
+01101000000000001000000000010011
+00011111111000001111111000000001
+01100000000000001000000000010011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100010001100000000000010
+01111000001101001111110000000000
+01111000001110000111110000000000
+01101000000000010100000101010101
+00100000001110100011000011110001
+00011000000000000000111000001101
+00100000010000000111111011100010
+00100100011110100000000000000000
+01111001001111111000000000100101
+01000100100010010100000000000010
+01101000000010010100000101010111
+00011000000000000000111000101000
+00100000010000000011011110011111
+00100000001101000011000100101111
+00011000000000000000111000000100
+00100000010000000111111011100010
+00100100001110100011000100001000
+01101000000000001000000001001100
+11000010100000100011000011111101
+00100000001000000011000100000000
+11011000101000000000000100000000
+11011111001000000000000000001000
+00100000010000000111111010010001
+01111001001111111000000000100101
+01000100100010011100000000000010
+01110000000000000011000000000000
+00100000010000000101001100001101
+01110000010001110000101000000000
+01110000000010011011110100010011
+00100000010000000111110110000110
+00100000001000000011000100101111
+01111001001111111000000000100101
+01000100100010100100000000000010
+00011000000000000001011000000000
+00110100011100110000001000000000
+01101000000000001000000011110001
+00011111111000001111111111111111
+10011100010000101111111000000000
+00101111111000000000011000000000
+00100100001000001011000100001000
+00011000100000100111111000000000
+01100000000000001000000110000000
+00011000000000000100110000000000
+00011000000000000100100000000000
+01111001001111111000000000100101
+01000100100010101100000000000010
+00100000001000011011000100101111
+00100000010000000011100101110010
+11011001011000000000011000000000
+00110100011100110000001000000000
+01111001001111111000000000100101
+01000100100010110100000000000010
+01101000000000100000000011110001
+10011000000000000100001000000000
+00011111111000001111111000000001
+01100000000000100000000011110001
+00101000000011111111111000001100
+01111001001000001100100000000010
+00101100001000000000010000000000
+00100100001000001011000101000101
+01101000000000001000000000001100
+00011111111000001111111000000001
+01100000000000001000000000001100
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011110100
+00100000010000000011101100000101
+00100000010000000011011011000110
+00100000010000000011000100110110
+00100000001000000011000100010101
+01111001001111111000000000100101
+01000100100010111100000000000010
+01111000010101001111110000000000
+01101000000000010100000101010101
+00100000011110100000000000000000
+00011000000000000000111000001101
+00100000001000000111111011010100
+01111001001111111000000000100101
+01000100100011000100000000000011
+01101000000000001000000010001101
+00011111111000001111111111111111
+01100000000000001000000010001101
+00100000011000010000000000000000
+01110000000000001000110100011111
+01101000000000001000000011101111
+00011111111000001111111111111111
+01100000000000001000000011101111
+00100000011000010000000000000000
+01111001010000000000000000001100
+01101000000000001100000101000110
+01100000000000001000000011101111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100011001100000000000011
+00100000010000000011100101100000
+00100000010000000011101011111010
+00100000010000000011101001111111
+00100000010000000011101010100011
+00100000001011000011000101001110
+00100000010000000011000100110110
+00100000001000000011000100011011
+00100000010000000011011011000110
+01101000000000001000000000001101
+00011111111000001111111000000001
+01100000000000001000000000001101
+00011000000000000011011000000000
+01101000000000100000000011110001
+01111001001111111000000000100101
+01000100100011010100000000000011
+00100000010000000011101011101100
+00100000010000000011100101110010
+00011100110000001100110000000001
+00011100001000010100001111111101
+00011100100000010100100111111100
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011110100
+00100000010000000011101100000101
+00011100010000100111111000000000
+01100000000000100000000101100000
+00011000000000000000100000000000
+00011000000000000000001000000010
+00100000010000000011101100001101
+00100000010000000011011111101110
+01111001001111111000000000100101
+01000100100011011100000000000011
+00100000010000000011101011101010
+00011100001000011100001000000010
+00011100100000010100100111111100
+00100000010000000011100101100000
+00100000010000000011101011111010
+00100000010000000011101001111111
+00100000010000000011101010100011
+00100000010011000011011011000110
+00100000001011000011000101110101
+01101000000000001000000000010000
+00100000001110100011000100010101
+00011111111000001111111111111111
+01100000000000001000000000010000
+00100000001000000011000101010100
+01111001001111111000000000100101
+01000100100011100100000000000011
+01101000000000001000000000001110
+00011111111000001111111000000001
+01100000000000001000000000001110
+00100000010000000011010010001101
+00100000010000000011001100110111
+00100000001011000011000110000000
+00100000010000000011010010110000
+00100100001110100011000101111011
+00100000001000000011000100010101
+01111001001111111000000000100101
+01000100100011101100000000000011
+01101000000000001000000000110000
+01111001001111111111111000000011
+01100000000000001000000000110000
+00100000010000000011010010011001
+01111000010101001111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100011110100000000000011
+01111000001101001111110000000000
+01111000001110000111110000000000
+00100000010000000011001000011010
+00100000011101000000000000000000
+00100000010000000011110101000010
+00100000010000000011101011101100
+00011100010000001100001000000001
+00100000010000000011100101111001
+00011000000000000100100000000011
+00100000010000000110100011011100
+00100000010000000011010011100111
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011110100
+00100000010000000011101100000101
+00100000010000000011011111101100
+01111001001111111000000000100101
+01000100100011111100000000000011
+00100000010000000101001100011111
+00100000010000000011001100101000
+00100100001101101011000110100100
+00100000010000000011101100101100
+00100000010000000011011110101100
+01101000000000001000000000001111
+00011111111000001111111000000001
+01100000000000001000000000001111
+01111001001111111000000000100101
+01000100100100000100000000000100
+00100000010000000110100011000000
+00100000010000000011000110110000
+00100100011101001000000000000000
+00100000010000000011011101110101
+00100100001110100011000110101101
+01111000010101001111110000000000
+00100000011000000000000000000000
+00100000010000000011010011100111
+00100000010000000011001100011101
+00100000001000000011000110011010
+00100000001101101011000110110011
+00100000010000000011101100100010
+00100000001000010011000111000001
+00100000010000000011000111001101
+00100100001101000011000111000001
+01101000000000001000000001001100
+11000100000000100000000000000000
+11000011100000011000000000000000
+01101000000000001000000001001011
+11000011100000011000000000000000
+00100000010000000011000111010110
+00100100011110100000000000000000
+01101000000000001000000101101101
+00011111111000001111111111111111
+01100000000000001000000101101101
+00100100011110100000000000000000
+00100000001000000101011000011101
+01111001001111111000000000100101
+01000100100100001100000000000100
+00100000010000000011010010111000
+01111000010101001111110000000000
+01101000000000001000000001001100
+11000010100000100011000111001000
+00100000011000000000000000000000
+01101000000000001000000001001100
+11000011100000011000000000000000
+11011000101000000000000100000000
+11011111001000000000000000001000
+00100000001000000111111010010001
+01111001001111111000000000100101
+01000100100100010100000000000100
+01111000001101000111110000000000
+01101000000000001000000001001011
+11000100000000011000000000000000
+00100000010000000011000111010110
+00100100011110100000000000000000
+01111000010101000111110000000000
+00100000011000000000000000000000
+01101000000000001000000001110010
+00011111111000001111111111111111
+01100000000000001000000001110010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100100011100000000000100
+01101000000000001000000000110000
+11000010100000111011000111100100
+01101000000000001000100011011001
+00100000001110100011000111100100
+01110000000010001101100100000000
+01110000000010011011110100011000
+00100000010000000111110110000110
+00100000001000000011000111100100
+01111001001111111000000000100101
+01000100100100100100000000000100
+00100000010000000011001010010100
+01101000000000001000000000110000
+01111001001000000111111000000111
+01100000000000001000000000110000
+01110000010000100101110100000001
+01101000000000001000000001010101
+11000000100010110011000111101101
+00100000011000000000000000000000
+01110000000010001101100100000001
+01101000000000001000000000110000
+01111001001111111111111000000111
+01100000000000001000000000110000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100100101100000000000100
+01111000010101000111110000000000
+01101000000000001000000000110000
+11000100000000001000000000000000
+01101000000000010000000000110010
+00100100011110100000000000000000
+01101000000000100000000000110100
+00100000001110000011000111111110
+10011101000001100111111000000000
+00100000001000000011000111111111
+10011100010001100111111000000000
+00011111111001100111110000000100
+00100100011000010000000000000000
+01101000000000001000000000110000
+01111001001111111111111000000001
+01100000000000001000000000110000
+01111000001101000111110000000000
+00100000011000000000000000000000
+00011111111000100000010000000000
+01111001001111111000000000100101
+01000100100100110100000000000100
+01100000000000100000000000110100
+01110000010001011111010000000001
+01101000000000001000000000110000
+01111001001000000111111000000001
+01100000000000001000000000110000
+00011000000000000111111000000000
+01100000000000010000000000110010
+01110000000000000111001100000001
+01110000000000000111010000000000
+01110000000000001000101100000000
+01101000000000100000000000110100
+00011100010000100000010000000000
+10011000010001100111111000000000
+00011111111010110111111000000000
+00011111111000001111111111111000
+01100000000000001000000010001010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100100111100000000000100
+00100000010000000011000111110011
+00100100011101000000000000000000
+01111000010101000111110000000000
+01110000000000000001000100100000
+01111001001111111000000000001011
+00100000010000000011101011101100
+00100000010000000011001100101011
+11000101000001011011001000101111
+00100000010000000011010010110000
+00100100001110100011001000100001
+01111001001111111000000000100101
+01000100100101000100000000000101
+01111000010101000111110000000000
+00011100010000100111111000000000
+01100000000000100100000101101010
+01111000001110000111110000000000
+01111000001101001111110000000000
+01110000000010011011110100101010
+00100000001000000111110110000110
+01111001001111111000000000100101
+01000100100101001100000000000101
+00100000010000000011101011101010
+00100000010000000011001100100000
+01111000010110000111110000000000
+01111000010101001111110000000000
+00100000010000000011100010100111
+00100000010000000011010010001101
+01111001001111111000000000100101
+01000100100101010100000000000101
+00100000010000000011010011011001
+00100000001101101011001000111110
+00100000010000000011010010110000
+00100100001110100011001000110111
+00100000001000000011001000100110
+01101000000000001000000000110001
+01111001001111111111111000000001
+01100000000000001000000000110001
+00100000010000000011101100101100
+00100000010000000011100011010001
+01111000001101000111110000000000
+01110000000010011011110100101011
+00100000001000000111110110000110
+01111001001111111000000000100101
+01000100100101011100000000000101
+01111001001000000000000000001001
+00011010001000100111111000000000
+01100000000000010000000000011110
+00011000000000000111001001010000
+11011000101000000000001101100010
+00011010001000001000110000000001
+11101000110000001000000000000000
+00011010001000100000110000000000
+11000010100000000111111011001101
+11011000101000000000000000110000
+00100000010000000111111011001101
+01111000010101110111110000000000
+01101000000000001000000001110111
+10011000000000000000100000000000
+01110000000000001000101000000001
+00100000001101001011001001011001
+01110000000000001000101000000001
+01101000000000001000000000110000
+11000100000000001000000000000000
+01101000000000001000000001110011
+01100000000000001000000010001010
+01101000000000001000000001110100
+01100000000000001000000010001011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100101100100000000000101
+01101000000000010000000000011110
+10011000000000000000101000000000
+00011000000000000111001001010000
+11011000110000000000001101100010
+00100000001110110111111011001101
+11011000110000000000000000110000
+00100000001000000111111011001101
+01101000000000001100001010000001
+00011111111000100111001000000000
+01101000000010001000000000010101
+00011000010000001000010000000001
+00101000010000011111111000000011
+00100100001000001011001001110000
+11011000010000000000000000000000
+01100000000010001000000000010101
+00011000010011111111111001010000
+11011010001000000100000001000000
+10011010001000001010001000000000
+11101010001000001000000000000000
+11000010100000001011001001111000
+11000011100000000000000000000000
+11000011100000011000000000000000
+11000010000000000011001001101100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100101101100000000000101
+11011010011000000011001010101101
+00100000010000000011001010100010
+00100100011000101000000000000000
+00011010001000100111111000000000
+01100000000000010000000000011110
+00011000000000000111110000000000
+00100000011000000000000000000000
+00100000010000000011011110101001
+00100000001000001011001010001011
+01101000000000010000000000011110
+00011111111000001000101000010111
+01101000000000001000000001000111
+11100000101000001000000000000000
+11011010011000000011001011101101
+00100000001000000011001010100010
+01101000000000001000000001000111
+00101111111011111111111000000011
+00100000001000001011001010010000
+00011000000000000111110000000001
+00100000011000000000000000000000
+00011000000000000111110000000000
+00100000011000000000000000000000
+11011010011000000011001011101010
+00100000001000000011001010100010
+01101000000010010000000000011110
+11011010011000000011001100010010
+00100000001000000011001010100010
+01101000000010001100001001110010
+11011010011000000011001010111000
+00100000001000000011001010100010
+01111001001111111000000000100101
+01000100100101110100000000000101
+01101000000010110100001001110011
+11011010011000000011001010110001
+00100000001000000011001010100010
+11011010011000000011001010111110
+00100000001000000011001010100010
+11011010011000000011001100001001
+01111001001111111000000000100101
+01000100100101111100000000000101
+11011010001000000100000001000000
+01101000000000001100001010000001
+00011111111000100111001000000000
+11101010001000001000000000000000
+00011010011000100111101000000000
+00011010001000001010001001010000
+11000010000000000011001010100111
+00011000000000000111110000000001
+00100000011000000000000000000000
+11000010100000000011001010101001
+11000010100000011011001010101001
+00011000000000000111110000000000
+00100000011000000000000000000000
+11000010100000011011001010110011
+11000011000000000011001010101001
+00011010001000001000110000010000
+11101000110000110000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000001000000011001010101001
+11000011000000000011001010101001
+00011010001000001000110000010110
+11101000110000001000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000001000000011001010101001
+11000011000000001011001010101001
+00100000010000000011001011110110
+00100000010000000011001011011010
+10011000010001100111111000000000
+00011111111000001111111000000001
+00100000001000010011001011010100
+00011000110000100010010000000000
+01100000000001001000100111000110
+01101000000000001100010101100101
+00100100001110100011001011001100
+01101000000001001000100111000110
+00011010010000100000110000000000
+00011111111000001111111000000101
+00100000001000000011001011001111
+01101000000001001000100111000110
+00011010010000100000110000000000
+00011111111000001111111000010100
+00100100001000010011001010101001
+00011000010000100100001000000000
+00100000010000000011001100000010
+00011000000000000111110000000000
+00100000011000000000000000000000
+10011000000000000010010000000000
+00011010001000001000110000000010
+11101000110000010000000000000000
+00100000001110100011001011010000
+00100000010000000011001100000010
+00100000001000000011001010111111
+00011111111100010001011000000000
+00011001011011001001011000000000
+00100000001000101011001011100100
+00101001011000000001111000001111
+00100100011000001000000000000000
+00011000010100010001011000000000
+00011001011011001001011000000000
+00100100011000101000000000000000
+01111001001000000000010000011100
+00100000011000000000000000000000
+00011000010100010001011000000000
+00011001011011001001011000000000
+00101001011000000001111000001111
+00100100011000001000000000000000
+01111001001000000111111000011100
+00100000011000000000000000000000
+11000011000000000011001010101001
+00011000000000000111110000000000
+00100000011000000000000000000000
+11000011000000000011001010101001
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000010100000000011001010101001
+00011010001000001000110000010111
+11101000110000001000000000000000
+11000011000000011011001010101001
+00011000000000000111110000000000
+00100000011000000000000000000000
+00011010001000001000110000000001
+11101000110010001000000000000000
+00011100010000100111111000000000
+00101000010011111111111000000001
+00011010001000001000110000000100
+11101000110010100000000000000000
+00100000011000001000000000000000
+00011010001000001000110000001000
+11101000110000110000000000000000
+00100000010000000011100011100101
+00011101000000100111111000000000
+00100000011000000000000000000000
+00011010001000001000110000000010
+00011010001000001000101000000100
+11101000110000010000000000000000
+10011000010000001001011000000000
+00011001011000100111111000000000
+11100000101000100000000000000000
+00100000001000000100100111011100
+11000011000000001011001010101001
+00100000010000000011001011110110
+10011011011000001111111000000000
+10011011011000001111111000000000
+10011000111000001111111000000000
+10011000010001100111110000000000
+00100100001000010011001010101001
+00011000000000000111110000000000
+00100000011000000000000000000000
+11000011000000000011001010101001
+00011000010000100111111000000000
+10011010001001100111110000000000
+00100000001111110011001010101001
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000010100000000011001010101001
+11101010001000001000000000000000
+01111001001111111111111000000111
+11100010001000001000000000000000
+00100000001000000011001010101001
+01111001001111111000000000100101
+01000100100110000100000000000110
+00100000010000000011101011101100
+00011100010000001100001000000001
+00100000010000000011100101111001
+00011000000000000100100000000011
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011110100
+00100000010000000011101100000101
+00100000001000000011011111101100
+01111001001111111000000000100101
+01000100100110001100000000000110
+00100000010000000011101011101010
+00011100010000001100001000000001
+00100000010000000011100101111001
+00011000000000000100100000000011
+00100000010000000011100101100000
+00100000010000000011010010000001
+00100000010000000011101010000110
+00100000010000000011101011111010
+00100000010000000011101001111111
+00100000010000000011101010100011
+00100100011011000000000000000000
+00100000010000000011101001010000
+00100000001000000011010110000010
+01111001001111111000000000100101
+01000100100110010100000000000110
+01101000000000001000000110000000
+10011000000000000000100000000000
+00011000000000000000001000000001
+00100000010000000011001100011101
+00100000001000000011001100101000
+01101000000000001100000100110011
+11000100000000000000000000000000
+00011000000000000000111000000101
+00100000010000000111111011100010
+00100100011110100000000000000000
+01101000000010010100000101001101
+00011000000000000000111000000100
+00100000010000000011011110011111
+00100000011101000000000000000000
+00100000010000000011001101001110
+00011000000000000000111000000101
+01101000000000010100000101001111
+00100100001011000111111011010100
+00011000000010100111111000000000
+10011110101000010111111000000000
+00100000001000000111111011010100
+01111001001111111000000000100101
+01000100100110011100000000000110
+01110000000000011000000000000000
+01111000010110000111110000000000
+01111000010101110111110000000000
+00100000010000000011100100110111
+00011100010000010100001111111100
+00011000000000000100100000000001
+00100000010000000011100101101110
+00100000010000000011100101100000
+01111001010000000000000000011101
+01101000000000001000000000000110
+00011111111000001111111000000001
+01100000000000001000000000000110
+00100000010000000011100110001011
+00100000010000000011101001111111
+00100000010000000011101010101011
+00100100011011000000000000000000
+01111001001111111000000000100101
+01000100100110100100000000000110
+00011000000000000011011000000000
+00100000010000000011100110010010
+01101000000000001000000000000111
+00011111111000001111111000000001
+01100000000000001000000000000111
+00100000010000000011100101101110
+00100000010000000011101011101010
+00011100001000011100001000000010
+00011000000000000100100000000001
+00100000010000000011100101100111
+00100000010000000011100110001011
+00100000010000000011101011101110
+00100000010000000011101011111111
+00011100010000100111111000000000
+01100000000000100000000101100000
+00100000010000000011101100000101
+00011000000000000000001000000010
+00011000000000000000100000000000
+00100000010000000011101100001101
+00100000010000000011011111101110
+00100000010000000011001101111010
+00011100001000010100001111111101
+00011100110000001100110000000001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100110101100000000000110
+01101000000000001100000101110001
+00100000011110100000000000000000
+11011000101000000000000110110001
+01101000000000001100010110101110
+00011111111000100111001000000000
+00011111111000001111111000000001
+11100000101000001000000000000000
+00011000101000100000010000000000
+00011111111000001111111000000001
+01100000000000010100001001111110
+00011000010000100000101000000000
+01011000000000000000000000001001
+11100000101000001000000000000000
+11011000110000000100010110101111
+00100000010000000111111011001101
+11011010011000000100011000100101
+11011111001000000000000000000100
+00100000010000000011001110011101
+11011010011000000100011000001111
+11011111001000000000000000000001
+00100000010000000011001110011101
+00011000000000000000001000001010
+01110000010000100111110100000010
+01011000000000000000000110110001
+01100000000000010000000101101110
+00100000010000000011101011101010
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011111111
+00100000010000000011101100000101
+00100000010000000011101100001101
+00100000010000000011011111101110
+00100000011000000000000000000000
+00011000101000100000010000000000
+00011010011000100000110000000000
+11101000110000001000000000000000
+00100000011110100000000000000000
+00011111111000111111111000000000
+11000010000000000011001110100001
+00011111111000100010001000000000
+00011111111000001111111000000010
+00011111111000100000111000000000
+01101000000000010100001001111110
+10011000111000001111111000000000
+01100000000000010100001001111110
+00011000010000100000101000000000
+00011010001000100111111000000000
+00011111111000001111111000000001
+11100000101000001000000000000000
+00011010011000100000110000000000
+11101000110000001000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010001000100111001000000000
+00100000001000000111111011001101
+01101000000000001100000100110011
+11000100000000001000000000000000
+00011000000000000000111000000110
+00100000010000000111111011100010
+00100100011110100000000000000000
+01101000000010010100000101010001
+00011000000000000000111000101000
+00100000010000000011011110011111
+00100000011101000000000000000000
+00011000000000000000100000000000
+01110000000000000001000000001000
+01111001001111111000000000001011
+00100000010000000011001111000011
+00011000000000000000111000000110
+01101000000000010100000101010011
+00100000001000000111111011010100
+01111001001111111000000000100101
+01000100100110110100000000000110
+01111000010110000111110000000000
+00100000010000000011100100110111
+01101000000000001000000000001000
+00011111111000001111111000000001
+01100000000000001000000000001000
+00011000000000000100110000000000
+00100000010000000011100101111001
+00011100010000001100001000000001
+00011000000000000100100000000010
+01111001001111111000000000100101
+01000100100110111100000000000110
+00100000010000000011100101100000
+00100000010000000011101001111111
+00100000010000000011101010101011
+00100100011011000000000000000000
+00100000010000000011100110010010
+01101000000000001000000000001001
+00011111111000001111111000000001
+01100000000000001000000000001001
+00011000000000000011011000000000
+00100000010000000011101011101010
+00011100001000011100001000000010
+00011000000000000100100000000001
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011111111
+00100000010000000011101100000101
+00100000010000000011011011000110
+00011000000000000000100000000000
+11011001011000000000011000000000
+00110101001100110000001000000000
+00011101000000011101000000000011
+00011100001000010100001111111101
+01111001001111111000000000100101
+01000100100111000100000000000111
+00011100110000001100110000000001
+00100000010000000011100101100000
+00100000010000000011101001111111
+00100000010000000011101010011101
+00100100001011000011001111110000
+00100000010000000011101100001101
+00100000010000000011010110000100
+11000101000001011011001111111000
+01111001001111111000000000100101
+01000100100111001100000000000111
+01101000000000001000000000010000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000000000010000
+00100000010000000011101011101100
+00100000001000000011001111100110
+01111001001111111000000000100101
+01000100100111010100000000000111
+01111001001111111101000000000001
+01111001001000000101000000000000
+01101000000000001000000000001010
+00011111111000001111111000000001
+01100000000000001000000000001010
+00100000010000000011101011101010
+00011100001000011100001000000010
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011111111
+00100000010000000011101100000101
+00100000010000000011011011000110
+00101101000000000000011000000011
+00100000001000001011010000001010
+00110111110010111000001000000000
+00100000001000000011010000000110
+01101000000000100000000101100100
+00011111111000011111111000000011
+00011111111000100101000000000000
+01111001001111111000000000100101
+01000100100111011100000000000111
+01101000000000110000000101110111
+01100000000000110000000001000000
+00100000010000000011010010001101
+00100000010000000011010011011001
+00100000001101101011010000010111
+00100000010000000011010010110000
+00100100001110100011010000010010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100111100100000000000111
+00100000010000000011010010011001
+00100000010000000011001001111010
+00100100011000101000000000000000
+01110000000000000011000100000000
+00100000010000000011100011010001
+00100000001000000011001001100000
+01111001001111111000000000100101
+01000100100111101100000000000111
+00100000010000000011100011100001
+00100000010000000011010001000111
+00100000011101000000000000000000
+01111001001111111000000000100101
+01000100100111110100000000000111
+00100000010000000011110101000010
+00100000010000000110100011000000
+00100000010000000011010101111001
+00100100001101101011010000110100
+00100000010000000011101100101100
+00100000010000000110100011011100
+00100000010000000011010011100111
+00100000010000000011011111011110
+00100000010000000011011110101100
+00100000010000000101001100011111
+01101000000000001000000000001011
+00011111111000001111111000000001
+01100000000000001000000000001011
+00100000010000000011100011010001
+01111001001111111000000000100101
+01000100100111111100000000000111
+00100000010000000011110010100000
+00100000010000000011101100100010
+00100000001000010011010000111110
+00100000010000000011000111001101
+00100100001101000011010000111110
+00100000010000000011011101110101
+00100100001110100011010000100100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000000100000000001000
+01110000000000010101000000000000
+01110000000000010111111000000000
+00100000010000000011010010111000
+01111001001111111000000000010001
+00100000010000000111111110000000
+01101000000000001000000000110000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000001100000000001000
+00100000010000000011000111110011
+00100100011101000000000000000000
+00011000100000100000010000000000
+00100000010000000011101100010001
+01100000000000001000000110000000
+00011000010000100000100000000000
+01110000000000000001000100100000
+01111001001111111000000000100101
+01000100101000010100000000001000
+00100000010000000011101011101100
+00011000000000000000001000000010
+00100000010000000011011111010101
+00011100010000100111111000000000
+01100000000000100000000101100000
+00100000010000000011011111101100
+00100000010000000011101011101010
+01111000001101111111110000000000
+00100000010000000011010101011010
+00100000001011000011010001100011
+00100000010000000011100110010010
+00100000010000000011010010110000
+00100100001110100011010001010000
+11000110100000100000000000000000
+01110000000000000111110000110100
+01111001001000000000000000000011
+00100000011000000000000000000000
+01111000001110000111110000000000
+00100000010000000011010010001101
+00100000010000000011100100110111
+01111001001111111000000000100101
+01000100101000011100000000001000
+00100000010000000011001100110111
+00100000001011000011010001110000
+00100000010000000011010010110000
+00100100001110100011010001100110
+01111000010110000111110000000000
+00011101000000100111111000000000
+01100000000000100100000101101010
+00100000011000000000000000000000
+01111000001101001111110000000000
+11000101100000100011010001110110
+01111001001111111000000000000100
+01110000000000000111110000000011
+01110000000000000111110100110011
+00100000010000000101100100000011
+00011000100000100111111000000000
+01100000000000001000000001110111
+00011000000000000111111000000000
+01100000000000110000000000111000
+01101000000000001000000000110001
+01111001001000000111111000000001
+01100000000000001000000000110001
+00100000010000000011101100101100
+01111000010101001111110000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000100100000000001000
+01111000010101101111110000000000
+01111001001111111000000000000101
+01111001001111111000000000001010
+01111001001111111000000000010000
+01111001001111111000000000001111
+01101000000000001000000001000111
+01111001001111111111111000000101
+01111001001000000111111000000100
+01100000000000001000000001000111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000101100000000001000
+01110000000000000001000100100000
+01110000000000000100011101010000
+01101000000000010100000101011111
+01100000000000010000000000111110
+00011100010000100111111000000000
+01100000000000100100000101101010
+00100000011110000000000000000000
+00011101000000100111111000000000
+01100000000000100100000101101010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000110100000000001000
+00100000010000000101001100011011
+00100000010000000011010010110100
+01100000000000001000000001000110
+01011000000000000000000000000000
+01100000000000010000001010000110
+01011000000000000001110010000000
+01100000000000010000000001010001
+01101000000000001000000000110000
+01111001001000000111111000000000
+01100000000000001000000000110000
+01110000000000000100101100000000
+01110000000000000100110000000000
+01110000000000001001111100000000
+00100000001000000011101100101100
+01111001001111111000000000100101
+01000100101000111100000000001000
+00011000000000000111111000000000
+01100000000001000100001001100001
+11100000101001000000000000000000
+00100000010000000011000111101111
+00100000001000000011001010010100
+01101000000000001000000000010001
+00011111111000001111111111111111
+01100000000000001000000000010001
+00100000011000000000000000000000
+01101000000000001100000101101111
+00011111111000001111111000000001
+01100000000000001100000101101111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001000100000000001001
+01101000000000001100001001110001
+11000000000000011011010010111110
+01101000000000001000000001001000
+11000000100000001011010011000010
+00100000010000000011111110011101
+00100100001000101011010011000010
+00100000010000000011000111001010
+01110000010000100111000100000000
+01111001001111111000000000100101
+01000100101001001100000000001001
+00100000010000000011111000010010
+00100000010000000011011101101010
+01110000000010011011110100000010
+00100000010000000111110110000110
+00100000010000000101001100001101
+00100000010000000100001011101011
+00100000010000000111010111110100
+01101000000000001000000000110000
+01111001001111111111111000000000
+01100000000000001000000000110000
+01110000010001110000101000000000
+01101000000000001000000001001100
+00101111111000011000000000000000
+00100000001000001011010011010011
+01111001001111111000000000000001
+01101000000000001000000001000111
+11000011000000011011010011010101
+01101000000000001000000001001011
+11000100000000110000000000000000
+01111001001111111000000000000010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001010100000000001001
+01101000000000001000000101110011
+00100000011110100000000000000000
+00011111111000100000100000000000
+00100000010000000011010101111001
+00100100011101101000000000000000
+00011000000000000000001000000000
+00100000010000000011011111011110
+00011000100000100111111000000000
+01100000000000001000000001110111
+00011000000000000111111000000000
+01100000000000001000000101110011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001011100000000001001
+01101000000000001000000000110000
+11000011000000010011010011110101
+00011000000000000000001000000111
+11000101100000111011010011110100
+00100000010000000011011110101001
+00100100001000001011010011110101
+00100000001101110011010011110101
+00100000010000000011010100100011
+01011000000000000000000000000010
+01100000000000010100000101101000
+00100000011000000000000000000000
+00100100011101110000000000000000
+01111001001111111000000000100101
+01000100101001100100000000001001
+00100000010000000011001010000011
+00100100001000101011010100001000
+01101000000000001000000001000111
+11000011000000011011010100010001
+11000101000000101011010100010101
+01101000000000001000000101111110
+11000010100000110011010100011100
+01101000000000010100000101101000
+00011111111000001111111111111111
+01100000000000010100000101101000
+00100000001110100011010100000101
+01101000000000001100000101100101
+10011000000000000000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001101100000000001001
+00100000010000000011011100000011
+00100000010000000011011110101001
+00100000001000001011010100010001
+00100000010000000101011000100001
+00100000001101000011010100100000
+01101000000000001000000001001011
+11000010100000110011010100100010
+11000101000000101011010100010101
+01101000000000001000000101111110
+11000010100000110011010100011100
+00011000000000000000001000000001
+00100000011101001000000000000000
+00011000000000000000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001110100000000001001
+01101000000000001000000000011001
+10011000000000000000001000000000
+11000001100000001000000000000000
+00011000000000000000001000000000
+00100000011000000000000000000000
+01101000000000001000000101010111
+00011111111000010000001000001111
+01111001001000000000000000000101
+00100000011000000000000000000000
+00011000000000000000001000010011
+00100000001000000011010100100011
+00100000010000000011010100101101
+01111001001111111000000000100101
+01000100101001111100000000001001
+01101000000010001000000001000111
+01111001001000000000010000000011
+01100000000010001000000001000111
+00011000001000100111111000000000
+01100000000000001100000101100101
+01011000000000001111111111111111
+01100000000000010100000101101000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101010000100000000001010
+01101000000000001000000001001100
+00101111111011111111111000000101
+01101000000000010100001001111110
+00100000001000001011010101000100
+00011000000000000000001000000011
+00011111111001100111110000010001
+00100000011000010000000000000000
+00011000000000000000001000000100
+00011111111001100111110000011011
+00100000011000010000000000000000
+00011000000000000000001000001010
+00011111111001100111110001111001
+00100000011000010000000000000000
+00011000000000000000001000001011
+00011111111001100111110010110111
+00100000011000010000000000000000
+00011000000000000000001000001110
+00011111111001100111110011100000
+00100000011000010000000000000000
+00011000000000000000001000001111
+00100000011000000000000000000000
+00011000000000000000001000000011
+00011111111001100111110000010001
+00100000011000010000000000000000
+00011000000000000000001000000100
+00011111111001100111110000110110
+00100000011000010000000000000000
+00011000000000000000001000001010
+11011000010000000000000101101111
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000000000000000001000001110
+11011000010000000000001010100111
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000000000000000001000001111
+00100000011000000000000000000000
+01101000000000001000000000110000
+11000011000000001011010101011001
+01101000000000010000000000110010
+00100000001110100011010101011001
+00100100001101110011010101011011
+00100000010000000011101011101100
+00011101000000001100001000000001
+01111000001010000111110000000000
+01101000000000010000000000111110
+00011111111000110111111000000000
+11011000010000000000010100000000
+10011000010000001111111000000000
+00100000010000000011101010111101
+00100000010000000011100110000010
+00011000000000000100100000000011
+00100000010000000011100101100000
+00100000010000000011010010000001
+00100000010000000011101010000110
+01111001001111111000000000100101
+01000100101010001100000000001010
+01101000000000010000000000111110
+00011111111000110111111000000000
+00100000010000000011101010111101
+00100000010000000011101001111111
+01111000001001101111110000000000
+01101000000000010000000000111110
+11011000010000000000001110111011
+10011000010000001011011000000000
+00110111110000011000010000000000
+00011011010000100000010000000000
+01100000000010110000000010011001
+01111000010001101111110000000000
+00100100011011000000000000000000
+11011101001000000000001110111011
+00011100001000100101000000000000
+00100000001101011011101111101101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101010010100000000001010
+00100000010000000011010101010100
+00100100001011000011100110010010
+00100000010000000011101001010000
+11000101100010001011010110000010
+01101000000000010000000011110101
+00011111111000001111111000000001
+01100000000000010000000011110101
+00011100001000110000010000000000
+00011000010000011001110001000000
+01111001001111111000000000100101
+01000100101010011100000000001010
+01111000001000111111110000000000
+01111000001001010111110000000000
+01111000001001011111110000000000
+00001001100000000000000000000011
+00011001100011001111111000000000
+01100000000000001000000101011100
+00001001100000000000000000000100
+00001000000000001000000000000111
+00011001100000100111111000000000
+01100000000000001000000000011001
+00001001100000000000000000000011
+00011001100011001111111000000000
+01100000000000001000000101011101
+01101000000000001000000000011001
+00011111111001100111110000000011
+00100000001000010011010110011010
+11000000000000111011010110011010
+01101000000000001000000001001100
+00101111111011111111111000000101
+01111001001000001010101000000001
+01111001001111111000000000100101
+01000100101010100100000000001010
+00001001100000000000000000001000
+01111000010001011111110000000000
+01111000010001010111110000000000
+00100000001000110011011010101000
+11000101100010001011010110100100
+01101000000000010000000011110111
+00011111111000001111111000000001
+01100000000000010000000011110111
+01111001001111111000000000100101
+01000100101010101100000000001010
+01101000000000001000000101011100
+00101111111000000000111000000000
+01111001001000001000000000001010
+00100000001000001011010110110101
+10101000100000000000111000000000
+00100000001000001011010110110100
+11000101100000111011011011000110
+01101000000010001000000010101111
+10101000010000000000111000000000
+00100100001000001011011011000110
+01101000000000001000000001000111
+01111001001111111111111000000101
+01111001001000000111111000000100
+01100000000000001000000001000111
+01111000001101101111110000000000
+01111001001111111000000000100101
+01000100101010110100000000001010
+01101000000000001000000000011001
+00011111111000100000001000000000
+11000101000001010011010111000101
+01101000000010001000000101011101
+01101000000000001000000001000111
+01111001001111111111111000000000
+00101000010011111111111000000000
+01111001001000001111111000000000
+00101000010011111111111000000001
+01111001001000001111111000000001
+01100000000000001000000001000111
+00101000010011000000000000000001
+00100000001000001011010111000101
+00100000010000000011011100000011
+01111001001111111000000000100101
+01000100101010111100000000001010
+11011000010000000000000000000000
+00100000010000000011101010110100
+00011000001000010111111000001111
+11000000000000001011010111110100
+11000000000000000011011011000110
+11000000000000010011011011010011
+01101000000010001000000101011101
+01101000000000001000000001000111
+10101000010000000000100000000000
+00100100001000001011010111010100
+11000101100001010011010111010011
+11000011000000111011010111010100
+01111001001000000000000000001111
+01111001001111111000000000100101
+01000100101011000100000000001011
+00011000001000100111111000000000
+11000000000000011011010111110110
+11000000000000100011010111111010
+11000000000000111011010111100100
+11000000000001000011010111111001
+11011000010000000000000000000100
+00100000010000000011101010110100
+11000000000001010011010111110101
+11000000000001011011010111111000
+11011000010000000000000000001000
+00100000010000000011101010110100
+11000000000001110011010111110101
+11000000000001111011010111111000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101011001100000000001011
+01111000001001101111110000000000
+01111000001001001111110000000000
+01111000001001110111110000000000
+11011000101000000000000011010000
+00011000000000000111001000011110
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000011010111101011
+11000101100000111011011011000110
+00001001100000000000000000010000
+01111101001000110000000000001000
+00100000001000110011011010110101
+00100000001000000011011010010110
+00100000001000000011011011000110
+01111001001000000000000000010000
+01111000001001100111110000000000
+00100000001000000011010111111011
+01111001001000000000000000010000
+01111001001000000010101000000010
+01111000001001101111110000000000
+01111001001111111000000000100101
+01000100101011010100000000001011
+11000101000000001011011011000110
+00101010101011000000000000000001
+00100000001000001011011000001000
+01111000010000111111110000000000
+01111000001001101111110000000000
+01111000010001100111110000000000
+00011100010000001001011000000010
+00110100010100110000010000000000
+00100100001011000011011010110101
+01111001001000000000000000010000
+01111000001000111111110000000000
+01111001001111111000000000100101
+01000100101011011100000000001011
+01111000001001110111110000000000
+01111000001001001111110000000000
+00001001100000000000000000000011
+00011001100011001111111000000000
+01100000000000001000000101111111
+00001001100000000000000000000101
+11000101000010000011011000010100
+00011001100010010111001000000000
+00011111001010010111001000000000
+00100000001000000011011000010111
+00001001100000000000000000000101
+00011001100000110111001000000000
+00001001100000000000000000000011
+01111001001111111000000000100101
+01000100101011100100000000001011
+00011111001000100111111000000000
+01100000000000010000000101011110
+00100000001110100011011001011011
+10011110101001100111110000000000
+00100000001000010011011010110101
+01111001001111111000000000100101
+01000100101011101100000000001011
+01111001001111111000000000000000
+01101000000000001000000101111111
+00011111111000010111111000000011
+11011000101000000000010001110101
+11000000000000011011011000101011
+11000101000010001011011001010111
+01101000000000001000000101111111
+00011111111000010111111000000011
+11000000000000010011011000110000
+11000000000000001011011001000101
+00100000001000000011011010110101
+01101000000000010000000101011110
+00011111111001100111110001110000
+00100100001000010011011010110101
+11000101000001111011011010010110
+00100000001000000011011001010111
+01111001001111111000000000100101
+01000100101011110100000000001011
+11000101000001111011011010010110
+01101000000000010000000101011110
+11011000010000000000001011100000
+10011000010001100111110000000000
+00100000001000010011011010110101
+01101000000000001000001010001100
+11000011000000000011011000111011
+11000011000000001011011001000000
+00100000001000000011011011000110
+01110000000000101000101000000001
+01101000000000010000001010000110
+11000000100000000011011011000110
+11011000101000000001000000000000
+00100000001000000011011001010111
+01110000000000101000101000000010
+01101000000000010000001010001000
+11000000100000000011011011000110
+11011000101000000001010000000000
+00100000001000000011011001010111
+01111001001111111000000000100101
+01000100101011111100000000001011
+11000101000001111011011010010110
+01101000000000010000000101011110
+11011000010000000000001011100000
+10011000010001100111110000000000
+00100000001000010011011010110101
+01101000000000001000001010001010
+11000000000000001011011001010000
+11000000000000010011011001010100
+00100000001000000011011011000110
+11011000101000000001000000000000
+01101000000000010000001010000110
+10011000101000001000101000000000
+00100000001000000011011001010111
+11011000101000000001010000000000
+01101000000000010000001010001000
+10011000101000001000101000000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000011011001010111
+01111001001111111000000000100101
+01000100101100000100000000001100
+00001001100000000000000000010000
+00100000001000110011011010101111
+01101000000000001100001111110011
+11000000000000001011011011000110
+11000101000010001011011010000010
+11000101000001111011011011000011
+01101000000000001000000101111111
+00101111111000000000011000000011
+00100000001000001011011010000010
+01101000000000010000000101011110
+00100000001110100011011010000010
+01111001001111111000000000100101
+01000100101100001100000000001100
+01101000000000001000001010001010
+11000000000000001011011001101110
+11000000000000010011011001111000
+00100000001000000011101100110001
+01101000000000010000001010000110
+01101000000010010000000101011110
+10011000010000001111111000000000
+01100000000000010000001010000110
+11000000000000000011101100110001
+01101000000010010001000000000000
+00011000010000001000010000000100
+10011000010001100111110000000000
+00100000010000101011011111001101
+00100000001000000011011010000010
+01101000000000010000001010001000
+01101000000010010000000101011110
+10011000010000001111111000000000
+01100000000000010000001010001000
+11000000000000000011101100110001
+01101000000010010001010000000000
+00011000010000001000010000000100
+10011000010001100111110000000000
+00100000010000101011011111010001
+00100000001000000011011010000010
+01111001001111111000000000100101
+01000100101100010100000000001100
+01101000000010001000000001001100
+01101000000000001000000101111111
+00101111111000000000011000000011
+01111001001000001000010000000110
+01111101001000001000010000000111
+01100000000010001000000001001100
+00100100001000001011011010001100
+01111001001000000000000000000001
+11000101100010001011011010010110
+00101000010011111111111000000110
+00100000001000001011011010010110
+01101000000000010000000011111001
+00011111111000001111111000000001
+01100000000000010000000011111001
+01111001001000000000000000000101
+01111001001111111000010000000111
+01111001001111111000000000000001
+01100000000010001000000001001100
+01111001001111111000000000100101
+01000100101100011100000000001100
+01101000000010001000000101011101
+01101000000000001000000001000111
+01111001001000000111111000000101
+00101000010011111111111000000010
+01111001001000001111111000000010
+00101000000011111111111000001010
+01111001001000001111111000000111
+01100000000000001000000001000111
+01101000000000010000000101011110
+00100100001110100011011011000110
+01101000000000001000000001001100
+01111001001111111111111000000111
+01100000000000001000000001001100
+01101000000000001000000101111111
+00101111111000000000111000000001
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101100100100000000001100
+01111000010101101111110000000000
+01101000000000010000000000011010
+00011111111000001111111000000001
+01100000000000010000000000011010
+00100000001000000011011011000110
+01101000000000010000000000011100
+00011111111000001111111000000001
+01100000000000010000000000011100
+00100000010000000011011010110110
+11000101100010001011011010110101
+01111001001000000000000000000101
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101100101100000000001100
+01101000000000001000000101111111
+00101111111000000000011000000011
+00100100001000001011011010111111
+01101000000010001000000001001100
+01111001001111111000010000000110
+01100000000010001000000001001100
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111001001111111000010000000111
+01100000000010001000000001001100
+00100000001000000011111011001010
+01101000000000001000000001000111
+01111001001000000111111000000101
+01100000000000001000000001000111
+01111001001111111000000000100101
+01000100101100110100000000001100
+01111000010011101111110000000000
+01111000010011100111110000000000
+01111000010001101111110000000000
+01111000010001100111110000000000
+01111000010001001111110000000000
+01111000010001110111110000000000
+01111000010000111111110000000000
+00100000001100001011100110010010
+00110111110100111000001000000000
+00100000000000000000000001100100
+00100000001000000011100110010010
+01111001001111111000000000100101
+01000100101100111100000000001100
+01111000001001001111110000000000
+01111000001001100111110000000000
+00001001100000000000000001001000
+00101111111011111111111000111010
+01111001001000001000000000000000
+00011100000000100000010000000000
+01010111111000000100000000000000
+01010111111000000011110000000000
+01111000001010101111110000000000
+00111000000010111111111111111111
+00111000000011001111111111111111
+00100000000000000000000000100000
+00101001101010000000000000000000
+00011101100000100111111000000000
+01100000000000011000000101110111
+00011101101000100111111000000000
+01100000000000001000000101111010
+00011000010000100100000000000000
+00100000001000001011011011101001
+00100000001000000011011010110101
+01111001001111111000000000100101
+01000100101101000100000000001101
+00001001100000000000000001001000
+01010111111000000011111000000000
+01010111111000000000100000000000
+01010111111000000101110000000000
+01010111111000000010010000000000
+00011000000000000111111000000000
+00001001100000000000000000010000
+00100000001000110011011010110101
+01011111111111111111111111111100
+10011010010000010111111000000000
+01100000000000100000000101100100
+00011011101000100111111000000000
+01100000000000011000000101110100
+00011011100000100111111000000000
+01100000000000001000000101110010
+00011000100000100111111000000000
+01100000000000001000000101110011
+00011101110000100111111000000000
+01100000000000010000000101111011
+00011100001000100111111000000000
+00001000000000001000001000100000
+00101000001000000001111000000010
+01111001001000001000000000001011
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101101001100000000001101
+01101000000000001000000001000111
+11000100000000011000000000000000
+01111001001111111111111000000011
+01111001010000000111111000000110
+01100000000000001000000001000111
+01101000000000001100000101100101
+11000000000010011011011100011001
+11000001000000111000000000000000
+01101000000000001000000001001011
+11000100000000110000000000000000
+01111001001111111111111000000110
+01111001001000000111111000000111
+01100000000000001000000001001011
+01111001001111111000000000000010
+01101000000000010100001011010110
+00100100011110100000000000000000
+01101000000000001000000001001011
+01111001001111111111111000000111
+01100000000000001000000001001011
+00100000001000000100011111111011
+01111001001111111000000000100101
+01000100101101010100000000001101
+01101000000000001000001111011101
+00011111111000110111111000000000
+11000000000010001011011100110110
+11000000000010010011011100111111
+11000000000011000011011101101010
+11000000001111111011011100100110
+11000001100000011000000000000000
+01101000000000001000001111011110
+11000000000101011011011100101110
+11000000000010001011011100101001
+00100000011000000000000000000000
+01101000000000001000001111011110
+01111001001000000111111000000111
+00100000011000000000000000000000
+00100000011101001000000000000000
+01101000000000001000000000110000
+11000011100000100000000000000000
+01110000000000000111110000110001
+00100000011000000000000000000000
+00100000011101001000000000000000
+01101000000000001000000000110001
+00101111111011111111111000000100
+00100000001000001011011100110011
+00100000011000000000000000000000
+01111001001111111111111000000100
+01100000000000001000000000110001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101101011100000000001101
+01101000000000001000000001001100
+01111001001000000111111000000010
+01100000000000001000000001001100
+01110000100000000001000100000001
+01101000000000001000000000110000
+00101111111011111111111000000100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101101100100000000001101
+01101000000000001000000001001100
+01111001001111111111111000000010
+01100000000000001000000001001100
+01110000100000000001000100000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101101101100000000001101
+00011100010000100111111000000000
+01100000000000100100001010110001
+00011100010000001010001000000011
+00100000001101001011011101001101
+00011101000000001010001000000011
+01101000000010010000000000110010
+00011010001000100111111000000000
+01111001001111111111111000011011
+10011000010001101111110000000000
+01101000000000010000000001110101
+00100000010000000111111101010011
+00011000000001110010011000000000
+10011010011001100111111000000000
+00100000001000010011011101010111
+10011000010000001111111000000000
+10011010001000001111111000000000
+01100000000000100000000000110100
+01110000010001011111010000000000
+01101000000000001000000000110000
+01111001001000000111111000000001
+01100000000000001000000000110000
+01101000000000001000000001110011
+01100000000000001000000010001010
+01011000000000000000000000000000
+01100000000000011100001000001001
+01100000000000011100001000001100
+01100000000000001100000111111001
+01110000000010011011110100001011
+00100000010000000111110110000110
+01101000000000010100000101100001
+01100000000000010000000000111110
+00100100011101001000000000000000
+00011000100000001000111111111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101101110100000000001101
+01101000000000001000000000110000
+11000100000000001000000000000000
+01111001001111111111111000000001
+01100000000000001000000000110000
+01101000000000010100000101011111
+01100000000000010000000000111110
+01111000010101011111110000000000
+01110000000010011011110100001100
+00100000001000000111110110000110
+01111001001111111000000000100101
+01000100101101111100000000001101
+01111000001101110111110000000000
+01101000000000001000000000110000
+11000010100000001011011110000011
+11000110000010001000000000000000
+01101000000000001000000001000111
+11000011100000011000000000000000
+01101000000000001000000001001000
+00100100011110100000000000000000
+01101000000000001000000001001011
+11000011100000110000000000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+11000011000000010011011110010010
+01101000000000001000000010001010
+11000000000000010011011110001001
+01101000000000001000000001000111
+11000010100000011011011110011011
+11000101100001000011011110011011
+00100100001101001011011110011011
+01101000000000001000000001001000
+00100100001110100011011110011011
+01101000000000001000000011101110
+00011111111000001111111111111111
+01100000000000001000000011101110
+00100100001110100011011110000001
+01110000000000001110111000010000
+00100000001000000011011110011011
+01101000000000001000000010001010
+11000000100000001011011110011011
+01101000000000001000000010001011
+00100000001110100011011110011011
+00011111111000001111111111111111
+01100000000000001000000010001011
+01101000000000001000000001000111
+11000011100000011000000000000000
+00100100011101101000000000000000
+01101000000000001000000010001010
+00011111111000001111111111111111
+01100000000000001000000010001010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110000100000000001110
+01111000010010000111110000000000
+00011000010000100011011000000000
+00100000010000000011001010100001
+01111000010101000111110000000000
+00100100011000101000000000000000
+00011000000000000011011000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001100000111111000
+10101000100000011111111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110001100000000001110
+01111001001111111000000000000001
+01110000000000101001001100000000
+01101000000000001000001010001100
+00100000011110100000000000000000
+00101111111011111111111000000000
+11011000110000000001000000000000
+00100000010000001100001011111010
+01111001001111111000000000100101
+01000100101110010100000000001110
+01101000000000001000001010010011
+11000000000000001011011111000001
+01110000000000101001001100000000
+01101000000000001000001010001100
+11000100000000001000000000000000
+11011000110000000001010000000000
+00100000010000000100001011111010
+01101000000000001000001010010011
+11000000000000001011011111000111
+00100000011000000000000000000000
+01101000000000001000001010001100
+01111001001111111111111000000000
+01100000000000001000001010001100
+01011000000000000000000000000000
+01100000000000010000001010000110
+00100000011000000000000000000000
+01101000000000001000001010001100
+01111001001111111111111000000001
+01100000000000001000001010001100
+01011000000000000000000000000000
+01100000000000010000001010001000
+00100000011000000000000000000000
+01101000000000001000001010001100
+01111001001000000111111000000000
+01100000000000001000001010001100
+00100000011000000000000000000000
+01101000000000001000001010001100
+01111001001000000111111000000001
+01100000000000001000001010001100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110011100000000001110
+00011101000000001100001000000001
+00100000010000000011100110000010
+00011000000000000100100000000011
+00100000010000000011100101100111
+00100000010000000011101011101110
+00100000010000000011101011111111
+00100000001000000011101100000101
+01111001001111111000000000100101
+01000100101110100100000000001110
+00100000010000000011101011101010
+00011101000000100111111000000000
+01101000000010100100000101101010
+10011000010001100111111000000000
+11000001100000001000000000000000
+00101000001000000011111000000000
+00100100001000001011011111101001
+01101000000000001000000000011001
+00100000011110100000000000000000
+00100000010000000011011111010101
+00101000001000000011111000010000
+00100000001000001011011011000110
+00011100001000110000010000000000
+00011000010000011001110001000000
+01111001001111111000000000100101
+01000100101110101100000000001110
+01111000001000111111110000000000
+01111000001001010111110000000000
+01111000001011011111110000000000
+01111001001111111000000000010000
+00011000100000100111111000000000
+00001000000000001000011000000011
+00011000001000100111111000000000
+00001000000000001000011000000100
+01101000000000001000000001000111
+00001000000000001000000000000100
+00001000000000001000011000000011
+01111000001001000111110000000000
+00001000000000001000011000001000
+01111000010011011111110000000000
+01111000010001000111110000000000
+01111000010001010111110000000000
+01111001001111111010101000000010
+11011000010000000000000000000000
+00100000010000000011101010110100
+01111001001111111000000000100101
+01000100101110110100000000001110
+00011000001000010111111000011111
+11000000000010011011100001000000
+11000000000000000011011011000110
+11000000000000001011011011000110
+11000000000000010011100000100010
+11000000000000011011100001010010
+11000000000000100011100001011000
+11000000000000111011100000010110
+11000000000001000011100001010111
+11011000010000000000000000000100
+00100000010000000011101010110100
+11000000000001010011100001010100
+11000000000001011011100001011010
+11011000010000000000000000001000
+00100000010000000011101010110100
+11000000000001111011100001011010
+00100000001000000011100001010100
+01111001001111111000000000100101
+01000100101110111100000000001110
+01111000001011101111110000000000
+01111000001001001111110000000000
+01111000001001110111110000000000
+00011000000000000111001000011110
+11011000110000000000000010110010
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000011100000011101
+11000101000000111011100010000101
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101111000100000000001111
+01101000000000001000000110000000
+00011111111000100000100000000000
+01101000000000001000000010001111
+00011111111000100011100000000000
+01101000000000011100000101001010
+00011111111000100011101000000000
+01101000000000010100000101000100
+00011111111000100101110000000000
+01111000001001001111110000000000
+01111000001011100111110000000000
+00011100000000100010001000000000
+00100000010000000011100101111001
+01111000001010101111110000000000
+00100000000000000000000000100000
+00011100001000100001011000000000
+01101000000000100000000101100000
+00011111111000100100001000000000
+01010011110000000111111000000000
+01111001001000000111111000111010
+00001000000000001000011001001000
+01010011111000000111111000000000
+00001000000000001000011001001000
+00011001011000100100001000000000
+00011010001000100100000000000000
+01111000001001000111110000000000
+00001000000000001000011000010000
+01111000010001000111110000000000
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101111001100000000001111
+01111000001001110111110000000000
+01111000001001001111110000000000
+01111000001011100111110000000000
+01101000000000001000001111011100
+00011111111000010000010111111000
+11011000110000000000001111011100
+00011000010000001000010000001000
+00011000010000001010011110111000
+00100100001000010011100001001111
+11101000110001001000000000000000
+00001000000000001000011001001000
+00011010011000100000010000000000
+00100000001000000011100001001001
+11101000110001001000000000000000
+00001000010000011000011000000000
+00100000001000000011100010000101
+01111000001011100111110000000000
+00100000001000000011100001011101
+01111000001011100111110000000000
+01111001001000000000000000010000
+00100000001000000011100001011101
+01111001001000000010101000000010
+01111000001011101111110000000000
+00100000001000000011100001011101
+01111001001000000010101000000010
+01111000001011101111110000000000
+01111001001000000000000000010000
+01111001001111111000000000100101
+01000100101111010100000000001111
+01101000000000001000000001001100
+11000011000000101011100001110011
+00011000001001100111110000000011
+00100000001000010011100001110011
+01111000010001110111110000000000
+01111000010011100111110000000000
+01111000001011101111110000000000
+01111000010000111111110000000000
+01111001001000000010101000000001
+00101010101011111111111000000010
+00100000001000001011100001101101
+01011000000010101011111011101110
+00001000000000001000011000010100
+00100000001000000011100001110001
+01011000010111111010111010111010
+00001000000000001000011000011000
+01011000000000000000000000010010
+00001000000000001000011000000110
+01111000001000111111110000000000
+01111001001000000000000000010000
+01111000001001110111110000000000
+01111000001001001111110000000000
+11000101000000101011100010001110
+01101000000000001100001001111101
+00001000000000001000011000000011
+01101000000000010100001001111110
+10011000000000000111001000000000
+11000101000010000011100001111101
+00001000000000001000011000000101
+00100000001000000011100001111110
+00001000000000001000011000001101
+00011111001000100111111000000000
+00100000001110100011100010000101
+01101000000000010000000101101110
+10011000000000000000110000000000
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000011100010000010
+01111000001001000111110000000000
+00001000000000001000011000010000
+01111000010001000111110000000000
+00100000010000000011010100100011
+01101000000000001000000001001100
+11000011000000101011011011000110
+00011000000000000111111000000000
+00001000000000001000011000000110
+00100000001000000011011011000110
+01111001001111111000000000100101
+01000100101111011100000000001111
+11000101000010000011100010010111
+01101000000000001000000101111111
+00001000000000001000011000000011
+01101000000000001000000101011110
+10011000000000000010011000000000
+00001000000000001000011000000101
+00100000001000000011100010011100
+01101000000000001000000101111111
+00001000000000001000011000000011
+01101000000000010000000101011110
+10011000000000000010011000000000
+00001000000000001000011000001101
+11011000110000000000010001110101
+00011010011000100111110000000000
+00100000001000101011100010100011
+11101000110000001000000000000000
+00001000000000001000011000001000
+00011010011000001010011111111111
+00100000001000000011100010011101
+01101000000000010000000011111011
+00011111111000001111111000000001
+01100000000000010000000011111011
+00100000001000000011100010000101
+01101000000000100000000101100100
+00011111111000001010001000000111
+01101000000000010000000101110000
+00100100001110100011100010101101
+00011010001000001010001111111101
+00100000001000000011100010110101
+00011111111011111111111000001100
+01101000000110010000000001000000
+00011000010000001000010000000001
+10011000010001100111111000000000
+00100100001000010011100010110100
+00011010001000001010001111111111
+00100000001000000011100010110000
+00011111111001100111111000000000
+00110111110100011000001000000000
+00101100010000000000011000000000
+00100100001000001011100010110101
+10011000000000000101001000000000
+00011010001000100101000000000000
+10011000000000000101001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101111100100000000001111
+00110111110100010000001000000000
+00011011010000100111111000000000
+10011000000000000000110000000000
+00011111111100010111111000000000
+10011100010001100111001000000000
+00011111001000010111001000000011
+00100100001000101011100011000111
+00011000000000000111111000000000
+00100000001000000011100011001011
+11011000010000000000111010100110
+00011000000000000111111000000000
+10011000010000001111111000000000
+11000010000000000011100011001001
+10011000110000001111111000000000
+00011111111001101111110000001100
+00100000010000000111111101010011
+00011000000001111111111000000000
+01100000000000010000000101110000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101111101100000000001111
+00011011010000100111111000000000
+00011011001000100000010000000000
+10011000010001100111110000000000
+01111101001000010111111000101100
+10011000010001100000010000000000
+01011000000000000000111010100110
+00101000010011000000000000001111
+00100000001000001011100011011101
+01011111111111110000111010100110
+10011000010000001000010000000000
+01100000000010110000001101101010
+00100000011110110000000000000000
+01100000000010110000000000111000
+00100000011000000000000000000000
+01111000010110000111110000000000
+01101000000000110000001101101010
+00100000001110110011100011100101
+01101000000000110000000000111000
+10011011001000001110000000000000
+00011110000000001110000000001010
+01011000000000000000111010100110
+10011110000001100111111000000000
+00101111111011000000000000001111
+00100000001000001011100011101111
+01011000000000001111000101011010
+10011110000000001110000000000000
+00011110000000100011010000000000
+00100000011000000000000000000000
+00011000000000000111110000000000
+00100000001000000011100011101101
+01111001001111111000000000100101
+01000100101111110100000000001111
+00100000010000000011100110110001
+00011100001000100111111000000000
+00011111111000010111111110000000
+00101100100000000000111000000011
+00100100001000001011100011111011
+00011111111010010111111000000000
+10011010111000001111111000000000
+00100000001000000011100011111100
+00011010111000100111111000000000
+00011111111001101111110001001111
+01111000001010101111110000000000
+00100000010000000111111101010011
+00011000000001110010001000000000
+00011010001000001000010111011000
+00100000001000010011100100000100
+00011010001000111000010000000000
+00100000001000000011100100000110
+00011000010000111000010000000000
+00011000010000001000010000000001
+01111001001111111000000000100101
+01000100101111111100000000001111
+01101000000000001000000000110001
+11000011000000011011100100011000
+01101000000000100100000101110010
+10011100001001100111110000000000
+00100000001000010011100100011000
+00100000010000000011100100110111
+01101000000000001100000101111001
+00100000011110100000000000000000
+01101000000000001000000000110001
+01111001001000000111111000000010
+01100000000000001000000000110001
+01101000000000101100000110000111
+01100000000000101100000101111010
+11101000110000101000000000000000
+01100000000000101100000101111111
+00100000010000000011100100111100
+01101000000000001000000000110001
+11000100000000010000000000000000
+00101100001011111111111000000001
+00100000001000001011100100110100
+00011000010010010010001000000000
+00011000010000010000111000000111
+01011000000000000100000101111010
+10011010001000001010001000000000
+11101010001000001000000000000000
+10101111111011000000000000000000
+00100000001000001011100100100101
+00011000010000100111111000000000
+00100000001000000011100100110001
+01101000000000001100000110000100
+10011000000000000010010000000000
+00011100001000100111111000000000
+00011111111000010111111110000000
+00011111111010010111111000000000
+10011010111000001111111000000000
+10011010010001101111110000000000
+01011000000000000100000110010010
+00100000010000000111111101010011
+00011000000001110010001000000000
+10011010001000001000110000000000
+11101000110000001000000000000000
+01100000000000001100000110000101
+10011000000000000000010000000000
+00100000011000000000000000000000
+01101000000000001100000110000101
+10011000000000000000010000000000
+00100000011000000000000000000000
+01101000000000001000000000110001
+01111001001111111111111000000010
+01111001001111111111111000000011
+01100000000000001000000000110001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000000100000000010000
+11011000101000000100000110010010
+00011000000000000111001000001010
+00100000010000000111111010010001
+11011000101000000100000110010010
+00011000000000000010011000000000
+00011000000000000000111000000010
+01101000000000101100000101111010
+10011000000000000000010000000000
+00101000111000011111111000000010
+00100000001000001011100101001001
+00011000010000110000010000000000
+00101000010011000000000000000000
+00100000001000001011100101001101
+00011010011000100111111000000000
+11100000101000001000000000000000
+00011000010010110000010000000000
+00011010011000001010011000000010
+00101010011000011111110000101000
+00100100001000001011100101010110
+01101000000000101100000101111111
+10011000000000000000010000000000
+00101000111000011111111000000010
+00100000001000001011100101010110
+00011000010000110000010000000000
+00011010011001100111110001001110
+00100000001000010011100101001001
+00011000000000000010011000000001
+00011000111000001000111111111111
+00100100001000101011100101000100
+11011010001000000100000110010010
+00011000101000100111111000000000
+10011010001001100111111000000000
+01100000000000001100000110000100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000001100000000010000
+00100000010000000011100011110001
+01101000000000001000000101111110
+11000011000000101011100101100110
+01101000000010001000001111110010
+00100000001000000011100110111001
+01111001001111111000000000100101
+01000100110000010100000000010000
+00100000010000000011100011110001
+01101000000000001000000101111110
+11000011000000100011100101101101
+01101000000010001000001111110001
+00100000001000000011100111001001
+00011000000000000101101000000000
+01101000000000011100000101000111
+10011000000000000101100000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000011100000000010000
+01101000000000001100001001110110
+00011111111000100101101000000000
+01101000000000011100001001110011
+00011111111000100101100000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000100100000000010000
+01101000000000010100000101000100
+00011111111000100101110000000000
+01101000000000001100000101000011
+00011111111000100101101000000000
+01101000000000011100000101000000
+00011111111000100101100000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000101100000000010000
+01101000000000010000000001000100
+00011111111000100101110000000000
+01101000000000001000000001000011
+00011111111000100101101000000000
+01101000000000011000000001000000
+00011111111000100101100000000000
+00100000011000000000000000000000
+11000101000100000011100110001110
+11000110100011101000000000000000
+11000110100011111000000000000000
+00011101100000010101100100000000
+01111000001010101111110000000000
+00100000000000000000000000100000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000110100000000010000
+00100000001100001011100110100011
+01110000100010010101010111010100
+00100000000000000000000000000100
+01110000100010010101010111010010
+00100000000000000000000000000100
+01110000100010010101010111010001
+00100000000000000000000000000100
+01101000000000001100001010000000
+11000010100000000011100110100001
+11000010100000001011100110101110
+11000010100000010011100110100001
+11000010100000011011100110101110
+11000010100000100011100110101110
+01110000100010010101010111010000
+01110000100010010101011011100000
+00011000000000000010101000000000
+01111000010100001111110000000000
+01111000010100000111110000000000
+01111000001011110111110000000000
+01110000100010010000001000000000
+01110000100010010000000100000000
+01110000100010010000000000000000
+01110000100010010000001100000000
+01110000100010010000010001110000
+01110000100010010000011000000000
+00100000011000000000000000000000
+01110000100010010101010111010000
+01110000100010010101011011000000
+00100000001000000011100110100011
+01111001001111111000000000100101
+01000100110000111100000000010000
+01110000100010010000001000000000
+01110000100010010000000100000000
+01110000100010010000000000011000
+01110000100010010000001110100111
+01110000100010010000010001111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001000100000000010001
+01100000000010001000000000010111
+00011000010000001010001000000100
+01110000100010010110110100000111
+00100000001000000011101000010011
+01111001001111111000000000100101
+01000100110001001100000000010001
+01110000100010010000000111001111
+00100000000000000000000000001010
+01110000100010010000000011111111
+01110000100010010000001110101111
+01110000100010010000010011111111
+00100000000000000000000000001010
+01110000100010010000001010100000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001010100000000010001
+01100000000010001000000000010111
+00011000010000001010001000000000
+00100000010000000011101000010011
+01011000000000000000010100000000
+00100000010000000011101100110101
+01110000100010010000011000000001
+01110000100010010000000000111100
+01110000100010010000000111100000
+01110000100010010110110100010010
+00100000000000000000000000001010
+01110000100010010000001000000001
+01110000100010010000001000111101
+00100000000000000000000000001010
+01110000100010010000001110110111
+00100000000000000000000000001010
+01110000100010010000001001111111
+01101000000000001100001010000000
+11000010100000000011100111100001
+11000010100000001011100111100101
+11000010100000010011100111101001
+11000010100000011011100111101101
+11000010100000100011100111110001
+01110000100010010101011011110000
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+01110000100010010101011011011111
+00100000010000000011100111110101
+01110000100010010101010111011111
+00100000011000000000000000000000
+01110000100010010101011011111111
+00100000010000000011100111110101
+01110000100010010101010111011111
+00100000011000000000000000000000
+01110000100010010101011011001110
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+01110000100010010101011011001011
+00100000010000000011100111110101
+01110000100010010101010111011000
+00100000011000000000000000000000
+00100000000000000000000000000100
+01110000100010010101010111010001
+00100000000000000000000000000100
+01110000100010010101010111010010
+00100000000000000000000000000100
+01110000100010010101010111010100
+00100000011000000000000000000000
+01110000100000000100001000000110
+00100000010000000011101101100100
+01101000000000010100000101100011
+11000011000001110011100111111110
+10011000000000000000110000000000
+11011000010000001000100100000000
+11101000110000001000000000000000
+11000000011111111011101000001000
+10011000010000011000101000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00100000001000000011101000000010
+01111001001111111000000000100101
+01000100110001011100000000010001
+00100000010000000011110011010010
+00100000010000000011101001011111
+01011000000000000000011111010000
+10011100010000001111111000000000
+01100000000000100000000101101000
+01111001001000000010101000000011
+00011000000000000010101000000000
+00100100010101011011101000101011
+00100000001000000011101000111111
+01111001001111111000000000100101
+01000100110001100100000000010001
+01011000000000000000100101100000
+10011010001000001000010000000000
+01101000000000001100000101011101
+01110000100010010101111100000100
+10011000010011111111111000000000
+01101000000010001100000101011110
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111010001000000000
+00011000000001110111111000000000
+00011111111100000111111000000000
+00011111111100100111111000000000
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011111111011010111111000000000
+00011111111000111111111000000000
+10011010001000011111111000000000
+01100000000100100000100101100000
+01110000100010010101111101000100
+01110000100010010101111111000100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001101100000000010001
+01110000100010010000011000000010
+01011000000000111101000010010000
+00100000010000000011101100110101
+01110000100010010000000001111111
+00100000000000000000000010000010
+01110000100010010101001000110000
+01110000100010010000000111010000
+01110000100010010101001001110000
+01110000100010010101001011110000
+00011000000000000111001000110010
+01101000000100001000100110000000
+11000010100000101011101000111010
+11000010000000000011101000110111
+01100000000000001100000101101110
+01110000100010010000000100000000
+01110000100010010000000000000000
+01110000100010010000011000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001110100000000010001
+01101000000000001100000101101110
+01111001001000000111111000000101
+01100000000100001000100101010010
+01101000000110001000100101010000
+00011000010000010000010000000111
+00011111111010011111111000000000
+10011000010000011111111000000000
+01100000000100001000100101010000
+01101000000100001000100101010001
+01111001001111111111111000000000
+01100000000100001000100101010001
+01101000000100001000100101010010
+01111001001111111111111000000101
+01100000000100001000100101010010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001111100000000010001
+01101000000100010000100110000001
+00011111111100011111111000000000
+00011111111010010111111000000000
+00011111111001100111111000000000
+00011111111000010111111011111111
+00011111111001101111110000001010
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011111111100100111111000000000
+00011000000001110000010000000000
+10011000010000011111111000000000
+01100000000000001000000000011000
+00100000011000000000000000000000
+01110000100000000100001000000110
+01101000000100001000100101101011
+01111001001111111111111000000100
+01111001001111111111111000000101
+01100000000100001000100101101011
+01110000100010010000010100000000
+01110000100010010000010000000000
+01110000100010010000010001110000
+01110000100010010000010111111111
+01101000000100001000100101101011
+01111001001000000111111000000100
+01111001001000000111111000000101
+01100000000100001000100101101011
+00100000010000000011101001111101
+01101000000100001000100101101000
+01111001001000000111111000000111
+01100000000100001000100101101000
+01111001001111111111111000000111
+01100000000100001000100101101000
+01111001001000000111111000000111
+01100000000100001000100101101000
+01110000100000000100001000000100
+01101000000100001000100101101011
+00011111111000010111111011001111
+01100000000100001000100101101011
+00011111111000011111111000110000
+01100000000100001000100101101011
+00100000011000000000000000000000
+01011000000000000000111100001111
+00100000001000000011110011101011
+01011000000000000000100000001111
+00100000001000000011110011101011
+01111001001111111000000000100101
+01000100110010000100000000010010
+00100000010000000011100110111111
+01111000010100000111110000000000
+01111000001100001111110000000000
+01111000001010110111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010001100000000010010
+01101000000000001000000001001100
+00101111111011111111111000000010
+01111001001000001111111000000000
+01100000000100001000000000010001
+11011000110000000000000001100010
+11101000110001001000000000000000
+10011000000000000110010000000000
+11101000110000111000000000000000
+10011000000000000110011000000000
+01101000000000001000000001010100
+00011111111000001110100111111111
+01111000001011010111110000000000
+00100000011000000000000000000000
+00011011010000100111111000000000
+01100000000000110000000010011001
+01111000010001101111110000000000
+00100100001011000011100110010010
+11011101001000000000001110111011
+00011101000000001101000000000001
+00011101000000010101000111111100
+00100000011000000000000000000000
+01111000001001101111110000000000
+00110111110010111000010000000000
+00100000001011000011101010010101
+00101101000000000000010000000010
+00100100001000001011101010011110
+00100000001000000011101010010101
+01111001001111111000000000100101
+01000100110010010100000000010010
+11011001011000000000011000000000
+01111000001001101111110000000000
+00110100011100110000010000000000
+01111000010001101111110000000000
+00100100001011000011100110010010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010011100000000010010
+01111000001001101111110000000000
+00110111110000011000010000000000
+01111000010001101111110000000000
+00100100001011000011100110010010
+11011101001000000000001110111011
+00011101000000010101000111111100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010100100000000010010
+10011000000000000010001000000000
+00011100001000100111111000000000
+10011000010000001001011000000000
+00011001011000100111111000000000
+01100000000000100100000101101010
+00011010001000100111111000000000
+00100000011000000000000000000000
+00011111111000100000010000000000
+01111001001111111000000000100101
+01000100110010101100000000010010
+00011000010000100111111000000000
+00100000010000000111111100011101
+00011100001100000111111000000000
+01111001001000000111111000101100
+00100000010000000111111100000110
+01111001001111111111111000101100
+00100000010000000011101100011010
+00100000010000000111111100000110
+00100000011101000000000000000000
+00100000010000000111111100010000
+10011000000000000011011000000000
+00110111110000011000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010110100000000010010
+00100000001110000011101011010011
+00110101001100110000001000000000
+00011101000000100000010000000000
+00100000001000000011101011010110
+00100000001101110011101011010101
+00110100011100110000001000000000
+00011100010000100000010000000000
+00100000001101000011101011100011
+00101000010000000000011000000001
+00100100001000001011101011001101
+01111001001111111000000000100101
+01000100110010111100000000010010
+01101000000000001000000000110000
+11000100000000000000000000000000
+01101000000000100100000101101010
+10011000010001100111111000000000
+00100100011000010000000000000000
+00011111111001100111110011111111
+00100000001000010011101011001101
+00100000011000000000000000000000
+00101000010000000000011000000011
+00100100001000001011101011001101
+00100000001000000011101011011001
+01111001001111111000000000100101
+01000100110011000100000000010011
+11011001011000000000011000000000
+00100000001000000011101011001101
+01111000010101000111110000000000
+00100000001000000011101011100110
+01111000001101000111110000000000
+00100000001000000011101011100110
+01111001001111111000000000100101
+01000100110011001100000000010011
+00100000010000000011101010000110
+01111000010100001111110000000000
+01111000001100000111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011010100000000010011
+11011001011000000000111001000011
+00110100011100110000001000000000
+01111000001010110111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011011100000000010011
+11011001011000000000110100000000
+00110100011100110000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011100100000000010011
+11011001011000000000111001000011
+00110101001100110000001000000000
+01111000001010110111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011101100000000010011
+01010001001000000111111000000000
+01111000001011101111110000000000
+01111001001000000010101000000000
+00001000000000001000011001001000
+01111000010011101111110000000000
+00100000011000000000000000000000
+00011100101000100000010000000000
+00011000010000011000010001100000
+00011000010000100001110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011110100000000010011
+01101000000000001100000100110000
+00011111111000001111111000000001
+11000000100000111011101100010111
+00011000000000000111111000000001
+01100000000000001100000100110000
+10011000000000000000100000000000
+00100000011000000000000000000000
+00011011001000100000010000000000
+00100000011101001000000000000000
+00011011010000100000010000000000
+00100000011000000000000000000000
+00011100010000100111111000000000
+00100000011101001000000000000000
+00011101000000100111111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011111100000000010011
+01101000000010100000000001001101
+00100000010000000011101100011110
+10011000010001100001011000000000
+00011001011000100111111000000000
+01101000000010010000000001010001
+00011000010000111000010000000000
+10011000010001100111111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100000100000000010100
+00100000010000000011101100011110
+01100000000000100000000001001101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100001100000000010100
+00100000011000000000000000000000
+00100000001000000011101100110100
+00100000011110100000000000000000
+00011111111000110111111000000000
+00011111111000001111111111111101
+00011111111000001111111111111111
+00100100001000101011101100111000
+00011000000000000111111000000000
+00100000011000000000000000000000
+11011111001000000000000000010000
+11011000101000000000000000000000
+00100000010000000111111010010001
+11011000101000000000001101100010
+11011111001000000000000000001010
+00100000010000000111111010010001
+01110000000010001101011000000000
+01110000000010011011110100000000
+01110000000000111011000000000000
+01110000000000010111111000000000
+01110000000000111111011100000000
+01111001001111111000000000100101
+01000100110100010100000000010100
+01110000000000010110110000000000
+01110000000000010101000000000000
+01110000000000010101101100000000
+01011000100111101000101100110011
+01100000000000011100000101000111
+01011000000000000000000101010011
+01100000000000010000000010000011
+01110000000000001000010100011110
+01110000000000001000011000000001
+01110000000000001000100000000111
+01011000000100101110100100000100
+01100000000000011000000010000000
+01110000000000001000111101100000
+01110000010000010111000000000101
+01110000000000000001010000000010
+01101000000000001100011011100010
+00100100010110100111000111101010
+01101000000000001100010101100011
+00100100010110100111001001000001
+01111001001111111000000000100101
+01000100110100011100000000010100
+00100000011101011000000000000000
+01011000000000000000000000000000
+01100000000000010100001001111110
+00011100010000110111111000000000
+01100000000000100100000100110100
+00100000011000000000000000000000
+01110000100010010000100100011111
+01110000100010010001001001000101
+01110000100010010101001100000000
+01110000100010010110111110001000
+01110000100010010111001100110000
+01110000100010010101011011001001
+01110000100010010000011111111111
+01110000100010010000100000000001
+01110000100010010000101011111000
+01110000100010010000101111111111
+01110000100010010001101011111011
+01110000100010010001101111111011
+01110000100010010001110011111011
+01110000100010010001110111110110
+01110000100010010001111011110010
+01110000100010010001111111101110
+01110000100010010010000011101010
+01110000100010010010000111100110
+01110000100010010010001011100010
+01110000100010010010001111011110
+01110000100010010010010011011010
+01110000100010010010010111010110
+01110000100010010010011011010010
+01110000100010010010011111001110
+01110000100010010010100011001010
+01110000100010010010100111000110
+01110000100010010010101011000010
+01110000100010010010101110111101
+01110000100010010010110010111001
+01110000100010010010110110110101
+01110000100010010010111010110001
+01110000100010010010111110101101
+01110000100010010011000010101001
+01110000100010010011000110000000
+01110000100010010011001010000000
+01110000100010010011001110000000
+01110000100010010011010011000000
+01110000100010010011010111000001
+01110000100010010011011011000010
+01110000100010010011011111000011
+01110000100010010011100011000100
+01110000100010010011100111000101
+01110000100010010011101011000110
+01110000100010010011101111000111
+01110000100010010011110000000110
+01110000100010010011110100000111
+01110000100010010011111001000110
+01110000100010010011111110000101
+01110000100010010100000010000110
+01110000100010010100000110000111
+01110000100010010100001011000110
+01110000100010010100001111000111
+01110000100010010100010011010110
+01110000100010010100010111010111
+01110000100010010100011011100110
+01110000100010010100011111110101
+01110000100010010100100000000000
+01110000100010010100100111111000
+01110000100010010100101001111111
+01110000100010010100110011111011
+01110000100010010100110111101111
+01110000100010010100111011101100
+01110000100010010100111101011110
+01110000100010010101011101001100
+01110000100010010101100001101100
+01110000100010010101100101010000
+01110000100010010110100011100100
+01110000100010010110100100000000
+01110000100010010110101000000000
+01110000100010010110101100110000
+00100000011000000000000000000000
+01011000000000001110111000100001
+01100000000100010000000001010000
+01101000000100001000000100111110
+11000011000000011110000100111011
+01111000001101011111110000000000
+11000011000000111011101110110110
+01111000010101011111110000000000
+00011100111000100111111000000000
+00100100001110100011101110110110
+11011000010111111111111111111111
+00100000001000000011110000100100
+01101000000100011000000100111100
+01100000000100011000000001001100
+11101000110000001000000000000000
+00011111111000011111111011101111
+11100000101000001000000000000000
+00100000010000000011110011110110
+01101000000100001000000001001111
+01111001001000000111111000000100
+01100000000100001000000001001111
+00100000010000000011110011110110
+00100000010101011011101111000111
+01101000000100001000000001001110
+01111001001111111111111000000011
+01100000000100001000000001001110
+00100000010000000011110011110110
+00100000011101011000000000000000
+00100000001000000110000100111011
+01101000000000001100001000111000
+01100000000100001000000010000110
+01101000000000011100001000101101
+01100000000100011000000010000000
+01101000000000100100001000100001
+01100000000100100000000001110100
+01101000000000100100001000011101
+01100000000100100000000001110000
+01101000000001000100001000100101
+01100000000101000000000001111000
+01101000000001000100001000110000
+10011000000000000000000000000000
+01101000000101000000000101000000
+01100000000001000000000010100000
+00100000010000000110000110011111
+00100000011000000000000000000000
+00011000000000100111111000000000
+01100000000001000100001000110000
+01101000000101000000000001110000
+01100000000001000100001000011101
+11101000110001000000000000000000
+11100000101001000000000000000000
+01101000000100011000000010000000
+01100000000000011100001000101101
+01101000000100001000000010000110
+01100000000000001100001000111000
+00100000001000000011110011111100
+01101000000100001000000010110100
+00100100001110100011101111101000
+01101000000000011100001000001111
+00100100011110100000000000000000
+01110000100000001011010011000000
+01110000100000000000011010000000
+01101000000100001000000100101101
+11000100000000001000000000000000
+01101000000100011000000101001001
+01100000000000011100001000001111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100100100000000010100
+00011011010000100111111000000000
+00100000010000000111111100000100
+01101000000010100100000111111111
+00011000010001100111110011111111
+00100000011000010000000000000000
+00011111111011010111111000000000
+00011111111100100111111000000000
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+11011000010000000000000011001000
+00100000010000000111111101011110
+01100000000000001000000010011000
+00100100001101000011101111111110
+00011111111001100111111000000000
+01101000000010011100001000001111
+10011000010000001111111000000000
+01100000000000011100001000001111
+01011000000000000000000000000000
+01100000000000100100000111111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100101100000000010100
+00100000010000000011110011111100
+01101000000100100000000100111000
+01111001001111111111111000001111
+01100000000100100000000001001100
+00100000010000000011110011110100
+11011000010111111111111111111111
+01101000000000001100000111110111
+01100000000000001100001000011100
+01101000000000001100001000011010
+01111001001000000111111000000111
+01100000000000001100001000011010
+01111001001111111000000000100101
+01000100110100110100000000010100
+00100000010000000011101001111011
+01101000000000100100000111111111
+10011000010000001111111000000000
+01100000000000100100000111111111
+00100000010000000011101111010111
+01101000000000101100001000011000
+01100000000100100000000001001100
+00011111111011110010001000000000
+00110111110110011000001000000000
+00011011001000100111111000000000
+01100000000000110100001000000011
+01110000100000000000010100000010
+00110111110110011000001000000000
+00110111110110011000001000000000
+00011010001000100111111000000000
+01100000000100001000000001001111
+01110000100000000000010100000010
+00110111110110011000001000000000
+00110111110110011000001000000000
+01100000000110100000000001001100
+01110000100000000000010100010000
+00110111110111111000001000000000
+01111001001111111000000000100101
+01000100110100111100000000010100
+01011000000000000000000000000000
+00011100111000100111110000000000
+00100000001000101011110000110101
+01101000000100001000000100111100
+01101000000110001000000100111101
+10011000010001100111110000000000
+00100000001000010011110000110011
+00011000010000100111111000000000
+10011100111001100111111000000000
+00011111111000001111111000000001
+00011111111000001111111000001000
+00110111110110011000001000000000
+10011110001000001111111000000000
+01101000000010100100000111111011
+10011000010000001111111000000000
+01101000000010011100001000001111
+10011000010011111111111000000000
+00011111111011001111111000000000
+00011111111100011111111000000000
+00011111111000001111111001101110
+11011000010000000000111010100110
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011111111100000111111000000000
+00011000000001110000010000000000
+10011000010000011111111000000000
+01101000000010110100001000000011
+00100000010000000111111011111001
+00011000010000100011001000000000
+01101000000000110100000001001000
+00100000010000000011100011100101
+00011011010000100111111000000000
+01100000000000110000100110111110
+00011100111000100111111000000000
+11100000101000001000000000000000
+01101000000100001000000100011101
+00011111111000011111111011110000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110101000100000000010101
+00100000010000000011101111100010
+01101000000000011100001000001111
+00100000011110100000000000000000
+01101000000000001100000100110001
+00100000011110100000000000000000
+01101000000000001100011011100010
+00100000001110100011110001011110
+01101000000000001100011000111001
+00100000011110100000000000000000
+01101000000000001100010101100101
+00100100011110100000000000000000
+00100000010000000011110100001110
+00100100011110100000000000000000
+01101000000000001100000001000000
+00101111111000000000111000000011
+00100100001000001011110010001010
+01101000000000010100000001000010
+00100000011110100000000000000000
+00100000011101011000000000000000
+01111001001111111000000000100101
+01000100110101001100000000010101
+01101000000010001000000010011111
+01101000000000010100000001000010
+10011000010011111111111000000000
+00011000010100011000010000000000
+00011000010010110000010000000000
+10011000010001100111111000000000
+01101000000010100100000001000100
+10011000010000001111111000000000
+01101000000010001100000111110110
+10011000010001100111111000000000
+00011111111100000110000000000000
+01111001001111111000000000100101
+01000100110101010100000000010101
+01101000000000010100000001001110
+00011111111000110111111000000000
+00100000010000000111111100011101
+00011110000000100111111000000000
+00100000010000000111111100000110
+00011011010000100000010000000000
+00100000010000000111111100000100
+00100000011101000000000000000000
+00100000010000000111111100010110
+01111001001111111000000000100101
+01000100110101011100000000010101
+01101000000000001100001000011000
+10011000010001100111110000000000
+00100000001000010011110000000001
+01100000000010100100000111111011
+00100000010000000011110110011111
+00100000010000000100100010100101
+01101000000010100100000111111011
+00100000001000000011110000010001
+01111001001111111000000000100101
+01000100110101100100000000010101
+01101000000000001100000001000000
+11000011100000000000000000000000
+11000011100000011000000000000000
+01101000000000001100011011100010
+00100000001110100011110010010011
+01101000000000001100011000111001
+00100000011110100000000000000000
+01111001001111111000000000100101
+01000100110101101100000000010101
+01101000000000001100001111111111
+00100100001110100011110010011001
+01101000000000001100000100110011
+00100000011110100000000000000000
+01101000000000010100000111110100
+00100000011110100000000000000000
+01101000000010001100000111110110
+10011000010001100111111000000000
+11011000010000000001110101001100
+10011000010011111111111000000000
+00100000001000000011110001111111
+01111001001111111000000000100101
+01000100110101110100000000010101
+01111000010101011111110000000000
+01101000000000001000000000110000
+11000100000000001000000000000000
+00100100001101101011110010111100
+00100000010000000011110010110111
+01101000000000010100000101100001
+01100000000000010000000000111110
+01101000000000001000000001000111
+11000010100000011011110011001011
+11000101100001101011110011001011
+00100000010000000100100000010110
+00100100001110100011110011001011
+01101000000000010100001010100100
+00100000010000000111111101101001
+01110000000000001001111100000000
+11000101100001101011110011001011
+01101000000000001100001000010100
+00100000001110100011110011001111
+00011111111000001111111111111111
+01100000000000001100001000010100
+00100000011000000000000000000000
+01110000010000011111100100000000
+01101000000000011100001000001001
+00011111111000001111111000000001
+01100000000000011100001000001001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110101111100000000010101
+01101000000010010100000101100001
+00011000010000110000010000000000
+01101000000000010000000000111110
+10011000010000001111111000000000
+01100000000000010000000000111110
+01110000000000001001111100000000
+01101000000000011100001000001100
+00011111111000001111111000000001
+01100000000000011100001000001100
+01101000000000001100000111111001
+00011111111000001111111000000001
+01100000000000001100000111111001
+00100000011000000000000000000000
+01110000000000001001111100000000
+01101000000000001100001000010011
+01100000000000001100001000010100
+00100000011000000000000000000000
+01101000000010001100001000010010
+01100000000010001000000010011111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110000100000000010110
+01101000000000001100001000011000
+00100100011110100000000000000000
+01110000100000000100001000000110
+01011000000000000000111100001100
+00100000010000000011110011101011
+01011000000000110000110101000000
+00100000010000000011101100110101
+00110111110110011000001000000000
+00011110001000100110000000000000
+00100000010000000011101001111011
+01110000100000000100001000000100
+00100000000000000000000000001010
+00110111110110011000001000000000
+00011110001000100111111000000000
+10011110000001100111111000000000
+00011111111000001111111000110000
+11011000010000000000000011111111
+00100000010000000111111101011110
+01100000000000001100001000011000
+00100000000000000111010100110000
+00100000000000000111010100110000
+00100000000000000111010100110000
+00100000011000000000000000000000
+11011000101000000000111111111111
+10011000101000010000101000000000
+01101000000000001100001000010101
+00011111111000010111111011110000
+00011111111011010111111000000000
+10011000101000011111111000000000
+01100000000100010000000001001100
+11101000110000010000000000000000
+11100000101000010000000000000000
+01011000000000000000000000000001
+00100000001000000011110011110111
+01011000000000000000000000000010
+00110111110110011000001000000000
+01100000000100001000000000000101
+00110111110110011000001000000000
+00110111110110011000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110001100000000010110
+01101000000000100000000010100000
+01100000000100100000000001001100
+01011000000000000000000000000100
+00100000010000000011110011110111
+01101000000000100000000010100100
+01100000000100100000000001001100
+01011000000000000000000000001000
+00100000001000000011110011110111
+01101000000000010100000111110010
+11111001001000000111111000000000
+01100000000000010100000111110010
+00100000011000000000000000000000
+01101000000000010100000111110010
+11111001001111111111111000000000
+01100000000000010100000111110010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110010100000000010110
+00100000010000000011110110011101
+01101000000000010100000111110010
+00011111111000100010001000000000
+01101000000000001000000001001100
+00101111111011111111111000000110
+01111001001000001010001000001011
+01101000000000001000000001111000
+01101000000010001000000001111100
+10011000010000001111111000000000
+01101000000010001000000001001000
+10011000010000001111111000000000
+01111101001110100010001000001010
+01111001001111111000000000100101
+01000100110110011100000000010110
+01101000000000010000001010000110
+01101000000010010000001010001000
+10011000010000001111111000000000
+01111101001110100010001000001101
+01101000000000101100011011110000
+01111101001110100010001000001111
+01101000000000101100011011111000
+01111101001110100010001000001110
+01101000000000001100001001110001
+01111101001110100010001000001000
+01101000000000001100000100110010
+00101111111000011111111000001010
+00100000010000001011110100101100
+00100000001000000011110100110001
+01101000000100010000000100010010
+01111101001110100010001000000110
+01101000000100010000000100001110
+01111101001110100010001000000101
+00100000011000000000000000000000
+01011111111111111111111111111000
+10011010001000010010001000000000
+00011010001000100111111000000000
+01100000000000010100000111110010
+00100000011110100000000000000000
+00100000011101101000000000000000
+01111000001101011111110000000000
+00100000011000000000000000000000
+01101000000100100000000100111000
+01111001001111111111111000011011
+01100000000100100000000001001100
+00100000010000000011110011110100
+00100000001000000011101100110001
+01101000000100100000000100111100
+01111001001111111111111000010100
+01100000000100100000000001001100
+00100000001000000011110011110110
+01101000000000010100000111110000
+11000010100000000011101100110001
+00100000011000000000000000000000
+01101000000000010100000111110000
+11000010100000001011101100110001
+00100000011000000000000000000000
+01101000000000010100000111110000
+11000010100000010011101100110001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110100100000000010110
+01101000000000001100000100110010
+00100000001110100011110101001011
+11000000000000011100000000001100
+11000000000001001111001010010011
+11000000000001010101100111011101
+11000010100000110101110111001010
+11000010100000111100000000001100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110101100000000010110
+01110000000000010101000000000000
+01110000000000010111111000000000
+01110000000000010111111100000000
+01011000000000000000000000000000
+01100000000000101000100011010010
+01101000000000001100000100110010
+00100000001110100011110101010101
+11000000000001010101101000010010
+00100000011000000000000000000000
+00100000010000000111110011110100
+00100000010000000111110110011110
+00100000010000000011110101101001
+01101000000000010100001010010100
+00100000001000000111111101101001
+01101000000000010100001010010010
+00100000001000000111111101101001
+01101000000000010100001010010000
+00100000001000000111111101101001
+01111001001111111000000000100101
+01000100110110110100000000010110
+11011010001000000100011011110000
+00100000010000000111111110010101
+00100000011110100000000000000000
+00011111111000100010011000000000
+00100000010000000011110101110011
+00100000001000000011110110011011
+11011010011000000000000000000000
+00100000011000000000000000000000
+11000000000000001011110110001000
+11000000000010000011110111001111
+11000000000000101011110110101100
+11000000000010010011110110110011
+11000000000000110011110111001011
+11000000000000100011110111110110
+11000000000000010011110111111011
+11000000000010011011110111110110
+11000000000010100011110111000010
+11000000000010101011110111000110
+11000000000000011011110110100101
+11000000000001011011110110110111
+11000000000001100011110110111110
+11000000000010110011110111010011
+11000000000011000011110110100001
+11000000000101010011110110010001
+11000000000101011011110110001111
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000011110111010111
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000000000
+01100000000000010100011100001011
+01101000000000010100001010101111
+01111001001111111111111000000000
+01100000000000010100001010101111
+00100000011000000000000000000000
+01110000000000100100110100000000
+00100000011000000000000000000000
+01101000000000001000001001001101
+00011111111000001111111000000001
+01100000000000001000001001001101
+00011111111001100111110000000001
+00100000001000010011111001000111
+01110000000000100100110100000000
+01101000000000010100001010101111
+01111001001000000111111000001001
+01100000000000010100001010101111
+00100000001000000011111001010010
+01101000000000010100001010010110
+00100000001000000111111101101001
+01101000000000010100001010001010
+00100000001000000111111101101001
+01101000000000010100001010001110
+00100000001000000111111101101001
+01101000000000010100001010101111
+01111001001000000111111000000001
+01100000000000010100001010101111
+00100000001000000011111001111101
+01101000000000010100011100001011
+01111001001000000111111000000111
+01100000000000010100011100001011
+01101000000000010100001010101111
+01111001001000000111111000000010
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000000001
+01100000000000010100011100001011
+01101000000000010100001010101111
+01111001001000000111111000000100
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000000011
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000000101
+01100000000000010100011100001011
+01101000000000010100001010101111
+01111001001000000111111000000011
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001111111111111000000101
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000001001
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001111111111111000001001
+01100000000000010100011100001011
+01110000010001011001010100000000
+00100000001000000011111010000001
+01101000000000010100011100001011
+01111001001000000111111000000010
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100001010101111
+01111001001000000111111000000000
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100001010101111
+01111001001000000111111000001000
+01100000000000010100001010101111
+00100000001000000011111001010010
+01111001001111111000000000100101
+01000100110110111100000000010110
+01100000000010001000001001001110
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+00100000010000000111110100000010
+00100000010000000011111000111011
+00100000010000000011110111100101
+00100000010000000011110111101101
+01101000000000010100001010100000
+00100000010000000111111101101001
+00100000001000000011110111011010
+01101000000000001100001010101010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100001010101010
+00100100011110100000000000000000
+00100000010000000011001010010010
+00100000001000101011111001111001
+00100000011000000000000000000000
+01101000000000010100011100000111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011100000111
+00100100011110100000000000000000
+00100000010000000011111001011001
+00100000010000000011111001110011
+01101000000000010100001010011000
+00100000001000000111111101101001
+00100000010000000011111000001111
+01101000000000010100011100001011
+01111001001111111111111000000111
+01100000000000010100011100001011
+00100000011000000000000000000000
+01110000010000101010101000000000
+01101000000000010100011100001011
+11000010100000111011111000000000
+00101111111011000000000000000001
+00100000010000001011110101110001
+01111001001111111000000000100101
+01000100110111000100000000010111
+01101000000000010100011100001011
+01111001001111111111111000000000
+01111001001111111111111000000001
+01111001001111111111111000000010
+01111001001111111111111000000011
+01111001001111111111111000000111
+01100000000000010100011100001011
+00100000001000000011111010000001
+00100000010000000011111000001100
+00100000001000000011111001110101
+01011000000000000000000000000000
+01100000000000010100001010101101
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100001010101111
+01100000000000010100001010101101
+01011000000000000000000000000000
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000010100001010101111
+01111001001000000111111000000111
+01100000000000010100001010101101
+01011000000000000000000000000000
+01100000000000010100001010101111
+00100000011000000000000000000000
+01101000000000001100011100001011
+00101111111011111111111000000101
+00100000011000000000000000000000
+01011000000000001010101001010101
+01100000000000010000100111001110
+01111001001111111000000000100101
+01000100110111001100000000010111
+11011000010000000000000000000010
+11011010001000000000100111001110
+11011010010000000000000011000011
+00100000001000000110001001101111
+01111001001111111000000000100101
+01000100110111010100000000010111
+11011000010000000000000000000010
+11011010001000000000100110111110
+11011010010000000000000011000011
+00100000010000000110001001000101
+01101000000000010000100110111110
+11011000010000001010101001010101
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000001100010111110011
+01100000000000001100001010101010
+00100000011000000000000000000000
+11011000111000000000000000001001
+00100000001000000011110100000110
+11011000111000000000000000001001
+00100000001000000011110100001010
+01110000010000101010101100000101
+00100000001000000011111000110101
+01101000000000001100001010101011
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100001010101011
+00100100011110100000000000000000
+00100000001000000011111000110111
+01110000010000111111001100000001
+00100000011000000000000000000000
+01110000010000111111001100000000
+00100000011000000000000000000000
+01110000000010011011110100001010
+00100000001000000111110110010000
+01110000000010011011110100011101
+00100000001000000111110110010000
+01111001001111111000000000100101
+01000100110111011100000000010111
+01101000000000001100001010101100
+01100000000000001000000101101100
+01110000000000100100110000000001
+01110000000010011011110100000011
+00100000001000000111110110010000
+01110000000010011011110100011110
+00100000001000000111110110010000
+01110000000010011011110100000100
+00100000001000000111110110010000
+01101000000000010100011100010110
+01100000000000010100011100000111
+00100000010000000011111001101111
+01110000000010011011110100000001
+00100000001000000111110110010000
+01011000000000000000000000000000
+01100000000000010100011100000111
+01110000000010011011110100000010
+00100000001000000111110110010000
+01110000000010011011110100001111
+00100000001000000111110110010000
+01110000000010011011110100010000
+00100000001000000111110110010000
+01110000000010011011110100001110
+00100000001000000111110110010000
+01110000000010011011110100001101
+00100000001000000111110110010000
+01110000000010011011110100010111
+00100000001000000111110110010000
+01110000000010011011110100011000
+00100000001000000111110110010000
+01110000000010011011110100010110
+00100000001000000111110110010000
+01110000000010011011110100010001
+00100000001000000111110110010000
+01110000000010011011110100011100
+00100000001000000111110110010000
+01110000000010011011110100010101
+00100000001000000111110110010000
+01110000000010011011110100010100
+00100000001000000111110110010000
+01110000000010011011110100010011
+00100000001000000111110110010000
+01110000000010011011110100011001
+00100000001000000111110110010000
+01110000000010011011110100000110
+00100000001000000111110110010000
+01110000000010011011110100000101
+00100000001000000111110110010000
+01110000000010011011110100011111
+00100000001000000111110110010000
+01110000000010011011110100100000
+00100000001000000111110110010000
+01111001001000000000000000001101
+00100000011000000000000000000000
+01111001001111111000000000001101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110111100100000000010111
+01101000000000001100001001110001
+00100100011110100000000000000000
+00100000010000000011111010001010
+00100100010101000011111010100011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110111101100000000010111
+00011000011000100010001000000000
+11011000010000000000000000000100
+11101000011000001000000000000000
+11000000000000001011111010010101
+00011000010000001000010000000001
+11000000000000010011111010010101
+00011000011000100111111000000000
+01100000000100010000000001011000
+00100000011000000000000000000000
+01101000000100010000000100010010
+10011000010001100111110000000000
+00100100001000010011111010010101
+01111000010101000111110000000000
+00011010001000100000011000000000
+00100000010000000011111010101100
+10011000010000001000010000000000
+01101000000100010000000100010010
+10011000010001100111110000000000
+00100100001000010011111010011100
+00011010001000100000011000000000
+11101000011000001000000000000000
+11000000000000001011111100000110
+00100000001000000011101100110001
+01111001001111111000000000100101
+01000100110111110100000000010111
+01101000000100010000000001011000
+10011000000000000000011000000000
+00100000010000000011111010101100
+10011000011000001000011000000000
+00011000011000100111111000000000
+01100000000100010000000001011000
+00100000011000000000000000000000
+11101000011000001000000000000000
+00011000011000001000011000000010
+11000000000000010011111010110001
+11101000011000001000000000000000
+00100000011000000000000000000000
+11101000011000010000000000000000
+00100000011000000000000000000000
+01101000000100010000000001011110
+00011001010000001001010111111011
+10011001010000001001010000000000
+00100000011000000000000000000000
+11011000010000000000000000000100
+00100000001000000011111010111010
+11011000010000000000000000000010
+01111001001111111000000000100101
+01000100110111111100000000010111
+00011111001000001111001000000001
+01101000000100010000000001011110
+00011111111000100001010000000000
+00011111001000100111111000000000
+11100001010010001000000000000000
+00011111111000001111111111111111
+10011001010000001001010000000000
+00011001010000100111111000000000
+01100000000000010000001001111010
+00011000010000100111111000000000
+11000001000000010000000000000000
+01101000000000010000001001111010
+01100000000100010000000001011110
+00100000001000000011111011001010
+01011000000000000000000000000000
+01100000000000010000001001111010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000000100000000011000
+00100000011101011000000000000000
+01011000000000000011111110111111
+01100000000000010100001010010100
+01011000000000000000000110100000
+01100000000000010100001011010011
+01111001001111111000000000100101
+01000100111000001100000000011000
+01011000000000000001100000000000
+01100000000100010000000001010100
+01011000000000000001101111111111
+01100000000100010000000001010110
+01011000000000000001110000000000
+01100000000100010000000001011010
+00100000010000000011111011101101
+01110000100000000110001000000000
+01011000000000000001110000000000
+01100000000100010000000001011110
+01100000000100010000000001100000
+01011000000000000001100000000000
+01100000000100010000000001011000
+01100000000000010000001001100110
+01111001001111111000000000100101
+01000100111000010100000000011000
+01101000000100010000000001010000
+01111001001111111111111000001111
+01100000000100010000000001010000
+00100000010000000110001100100101
+01110000100000000100001100000001
+01110000100000000110001010000001
+00100000011000000000000000000000
+01011000000000000001111111111111
+01100000000100010000000001011100
+01101000000100001000000010000001
+00011111111000011111111000000111
+01100000000100001000000010000001
+01110000000000100111110011111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000011100000000011000
+01101000000100001000000100001100
+10011000000000000010010000000000
+11000011000000011011111011111110
+01101000000100010000000100010010
+10011000000000000010011000000000
+11011000010000000000010001001111
+10011000010001100111110000000000
+00100100011000101000000000000000
+01101000000100010000000001011000
+10011000000000000000011000000000
+00100000001000000011111010000011
+01101000000110001000000100001100
+00101000010011111111111000000110
+00100000001000001011111100000001
+01100000000100001000000000010101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000100100000000011000
+01101000000000001100001001110001
+00100000001110100011111100001100
+01111000001101000111110000000000
+00100000011000000000000000000000
+11101000011000010000000000000000
+10011000000000000110000000000000
+10011000000000000000111000000000
+11101000011000001000000000000000
+10011000000000000000010000000000
+00011110000010110111111000000000
+00011111111011001111111000000000
+11000000000111111011111100010101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000101100000000011000
+00011000111000100111111000000000
+11000000000000000011111101110000
+11000000000000001011111100101101
+11000000000000010011111100110010
+11000000000000011011111100110110
+11000000000000100011111101001001
+11000000000000101011111101110000
+11000000000000110011111101011010
+11000000000000111011111100100011
+11000000000010000011111101011101
+11000000000010001011111101100101
+00100000001000000011111101110000
+00100000010000000011111101110000
+00100000010000000111111101101011
+00100000010000000110010101100001
+00100000010000000011111000110111
+00100000010000000011111001000001
+00100000001000000110010101100100
+01110000010000101101010100000000
+00100000010000000011111000110101
+00100000010000000011111011010100
+00100000001000000011111001000011
+00100000010000000011111110001001
+01101000000100010000000000000000
+11100001010000010000000000000000
+00011000000000000111001000000110
+00100000001000000011111101110011
+11101000011000010000000000000000
+01100000000000010100001011010011
+01100000000100010000000001010010
+00100000011000000000000000000000
+11101000011000001000000000000000
+00011111111000100000010000000000
+01100000000100001000000000100100
+11101000011000001000000000000000
+10011000010000001000010000000000
+01111001001000000111111000000111
+01100000000100001000000000100011
+11101000011000001000000000000000
+10011000010000001000010000000000
+00011111111000100111001000000000
+11101000011000001000000000000000
+01100000000100001000000000100101
+10011000010000001000010000000000
+11000010000000000011111101000000
+00011000010000010000010011111111
+11101000011000001000000000000000
+10011000010001100111110000000000
+00100100001000101011111101011000
+00100000001000000011111101110000
+11011111001000000000000000100000
+11011000101000000100000000000000
+11011000010000000000000000000000
+11101000011000001000000000000000
+11100000101000001000000000000000
+10011000010000001000010000000000
+11000010000000000011111101001100
+00011000010000010000010011111111
+11101000011000001000000000000000
+10011000010001100111110000000000
+00100100001000101011111101011000
+01110000100000000010001100000000
+00100000010000000011111101110000
+00100000010000000011111010100011
+00100000001000000011000000000001
+01110000100000000010001100000000
+00100000001000000011000000000000
+11101000011000110000000000000000
+01100000000000110100000101000000
+00100000001000000011111101110000
+11101000011000001000000000000000
+01100000000000001000001010000011
+00011111111000100111001000000000
+11101000011000010000000000000000
+01100000000000010000001010000100
+00011111111000100000101000000000
+00100000010000000110001101010100
+00100000001000000011111101110000
+11101000011000001000000000000000
+01100000000000001000001010000011
+00011111111000100111001000000000
+11101000011000010000000000000000
+01100000000000010000001010000100
+11011000101000000001000000000000
+00100000010000000110001101010100
+01101000000010001000001010000011
+11011010001000000001000000000000
+01101000000000010000001010000100
+00100000001000000110001001110001
+01111001001111111000000000100101
+01000100111000110100000000011000
+00011000000000000111001000000100
+00100000010000000011111110001011
+00011000000000000111111000000001
+11100001010000001000000000000000
+00011110000000100111111000000000
+11100001010000011000000000000000
+00011000000000000000111000001110
+01111001001111111000000000100101
+01000100111000111100000000011000
+00100000010000000011111110001101
+00011000111000100111111000000000
+11100001010000001000000000000000
+00011111001000100111111000000000
+11100001010000001000000000000000
+00011000000000000000111000000101
+00011111001000001111001000000010
+00100000001000000011111010110111
+00011000000000000000111011111111
+00100000010000000011111110001011
+01011000000000000000000000000001
+11100001010000001000000000000000
+00011000000000000111001000000001
+00100000001000000011111101111001
+00011000000000000001010000001100
+00100000001000000011111110001110
+00011000000000000001010000001000
+00100000001000000011111110001110
+00011000000000000001010000000110
+00100000001000000011111010110011
+01111000001001111111110000000000
+01111000001001001111110000000000
+11101001010000001000000000000000
+00001000000000001000000000001000
+11000010000000000011111110010001
+01111000001001000111110000000000
+00001000000000001000000000010000
+01111000010001000111110000000000
+01111000010001001111110000000000
+01111000010001111111110000000000
+00011111111100001111111000000000
+00100000011000000000000000000000
+01110000010000100111000100000000
+00100000011000000000000000000000
+01101000000000110100001001110011
+01101000000010110000000001000000
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000001000000001001011
+11000010100000010011111110100110
+00100000010000000101100011111010
+01110000000000000111110000001000
+00100000001000000011111110011011
+01111001001111111111111000000010
+01100000000000001000000001001011
+00100000010000000101011000011000
+01011000000000000000000000000000
+01111001001101001111111000000001
+01100000000000001000000001111111
+00100000001000000011111110011011
+00100000011000000000000000000000
+01110000000000000111110000010111
+11011000101000000000001111111111
+01011000000000000000000000000000
+00101101000011111111111000011011
+01111001001000001111111000000001
+11100000101000001000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01101000000000010100001010000100
+11100000101000010000000000000000
+01101000000000001100001010000110
+11100000101000010000000000000000
+01101000000000001100001010001000
+11100000101000010000000000000000
+00100000001000000011111110011011
+01110000000000000111110000011000
+00100000001000000011111110011011
+00100000010000000110010101101110
+00100000011000001000000000000000
+11011000010000000000000000000111
+00100000010000000110010011110101
+00100100001000001011111111000110
+01110000010000101101010100000001
+00100000011000000000000000000000
+01101000000000001100001011010101
+11000001100000001000000000000000
+00100000010000000011111100101001
+00100000001000000011111110000011
+01111001001111111000000000100101
+01000100111001000100000000011001
+01101000000000010000001010001101
+00011111111000100000110000000000
+11101000110000001000000000000000
+00011111111000010000010000001111
+00011111111100011111111000000000
+11000000000001001011111111101011
+11000000000000111011111111101011
+11000000000001010011111111110111
+11000000000000101011111111100011
+11000000000000001011111111010111
+00100000011000000000000000000000
+00011000010000100111111000000000
+11000000000000101011111111011011
+11000000000000011011111111100010
+00100000011000000000000000000000
+01110000000010011011110100100111
+00100000010000000111110110000110
+01101000000000001100000100110010
+11000001100000110000000000000000
+00011000010000100111111000000000
+11000000000000101110010001010101
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000010000000011111111110111
+11011010001000000000000000000001
+00100000010000000100000000000101
+01101000000000010100001011011100
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+11011010001000000000000000000001
+00100000010000000100000000000101
+01101000000000010100001011011100
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01110000000010011011001000000001
+01101000000000001100001011100010
+01111001001000000111111000000110
+01100000000000001100001011100010
+01110000000010011011110100010010
+00100000001000000111110110000110
+11101000110000001000000000000000
+11000000000000001011111111111010
+00100000011000000000000000000000
+00011000110000100010001000000000
+01101000000000001100000100110010
+11000001100000011000000000000000
+00011010001000100000110000000000
+11101000110000001000000000000000
+01100000000000001100101100001111
+01100000000000001100101100100111
+01101000000000001100101100000001
+00100100011110100000000000000000
+01110000010010110010010000000010
+00100000011000000000000000000000
+00100000010000000100011111011100
+00011010001000100000010000000000
+01100000000010001000100110110010
+00011111111000100000101000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00100000011000000000000000000000
+00100000010000000100000110010110
+00100000011101011000000000000000
+00100000010000000100000000110100
+00100000010000000100000001010101
+01011000000000000100000110100001
+01100000000000010100001010010100
+01011000000000000100000010000010
+01100000000000010100001010010010
+01011000000000000100000111100110
+01100000000000010100001010010110
+01011000000000000100001001101000
+01100000000000010100001010001110
+01011000000000000100001001000110
+01100000000000010100001010011000
+01011000000000000100001001001011
+01100000000000010100001010001100
+01110000000010001101010000000000
+01110000000010001101010100000000
+00100000010000000100000000100111
+01101000000000010100011100001011
+11000010100001100011111001010100
+01101000000000001100001010110101
+11000000000110011100000000100100
+00100000001000000100001000111110
+01101000000000110100001001110011
+00100000001110100011111001010100
+00100000001000000011111001001001
+00100000010000000011111000101000
+00100000001000101100000000110010
+01011000000000000000000000000001
+01100000000000001100101011101001
+00100000010000000100001001111101
+01101000000000110100101100000111
+01100000000000110000000001000000
+01100000000000110100001001110011
+00100000010000000110010000110010
+01110000010000101011010100110011
+00100000001000000011111000100000
+00100000010000000100001010000100
+00100000001000000110010001000001
+01111001001111111000000000100101
+01000100111001001100000000011001
+01110000100000000111000000000000
+01110000100000000111100011111111
+01110000100000000111000111111111
+01110000100000000111001011111111
+01101000000100001000000001110011
+00011111111000011111111000000111
+01100000000100001000000001110011
+01110000100000001000000000000000
+01110000100000001000000100000000
+01110000100000000110111100000000
+01011000000000000000000000010011
+00011111111010011111111000000000
+00011111111000001111111000000111
+01100000000100001000000001100100
+01110000100000001000001111111111
+01110000100000001000010011111111
+01101000000100001000000010000101
+00011111111000011111111000000001
+01100000000100001000000010000101
+01101000000100001000000001000011
+01111001001000000111111000000010
+01100000000100001000000001000011
+01110000100000000110001100001100
+01110000100000000110011000110000
+01101000000100001000000001010001
+01111001001111111111111000000001
+01100000000100001000000001010001
+01101000000100001000000001100011
+01111001001000000111111000000000
+01100000000100001000000001100011
+00100000011000000000000000000000
+00100000010000000100000001011000
+00100000010000000100000001011100
+00100000001000000100000001100000
+01101000000000001100011100110111
+11000001011111111000000000000000
+01101000000010001100011100110111
+00100000001000000110010011101000
+01101000000000001100011100111000
+11000001011111111000000000000000
+01101000000010001100011100111000
+00100000001000000110010011101000
+01101000000000001100011100111001
+11000001011111111000000000000000
+01101000000010001100011100111001
+00100000001000000110010011101000
+01101000000000001100101100100100
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100101100100100
+00100100011110100000000000000000
+01111001001111111000000000100101
+01000100111001010100000000011001
+01101000000000001100101100100111
+00011111111000100010001000000000
+01101000000010001100011100111000
+00101010001011111111111000000000
+00100000010000000110010100000000
+01101000000010001100011100110111
+00101010001011111111111000000001
+00100000010000000110010100000000
+01101000000010001100011100111001
+00101010001011111111111000000010
+00100000010000000110010100000000
+00100000001000000100000001111101
+01101000000000001100101010100111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100101010100111
+00100100011110100000000000000000
+00100000001000000011111001111111
+01101000000000001100101010101000
+01100000000000001100101010100111
+00100000001000000011111010000001
+01110000010010110010011000000001
+00100000001000000100000010110100
+00100000010000000100100000010010
+00100100011110100000000000000000
+01101000000000110100101100000111
+01101000000010110000000001000000
+10011000010001100111110000000000
+00100000001000101100000010010111
+01101000000000001000001111111010
+11000000000000001100000100011001
+01101000000000001100001011100011
+11000001100111111000000000000000
+01101000000011000100101010111010
+01101000000001000100101010101010
+01100000000001000100101010111010
+10011000010001100111110000000000
+00100100010000101100000010101100
+01101000000011000100101011000010
+01101000000001000100101010110010
+01100000000001000100101011000010
+10011000010001100111110000000000
+00100100010000101100000011000111
+00100000011000000000000000000000
+01101000000000001100101011001010
+11000000001111111100000010101010
+01101000000011000100101010111010
+01101000000001000100101010101010
+01100000000001000100101010111010
+10011000010001100111110000000000
+00100000011000101000000000000000
+11011000110000000100101010101010
+11011010001000000100101011011110
+00100000010000000100000010111011
+11011010001000000000000000001010
+00100000010000000100000000000101
+01011000000000000000000001010011
+11100000101000010000000000000000
+01011000000000000000000110100001
+11100000101000010000000000000000
+01101000000001000100101011011110
+11100000101001000000000000000000
+00100000011000000000000000000000
+01100000000001000100101010101010
+00100000001000000100000010011001
+00100000010000000100100000010010
+00100100011110100000000000000000
+01101000000000001100101010101001
+11000011100000010000000000000000
+00100000010000000100000011100000
+01101000000000001100101010101010
+11000000000111001100000010000000
+01110000010010110010011000000000
+11011000110000000100101010101010
+11011010001000000100101011011110
+00100000010000000100000010111011
+00100000010000000100000011110001
+01101000000001000100101011011110
+11100000101001000000000000000000
+00100000011000000000000000000000
+11011000010000000000000000000000
+00011010001000001000101000000010
+11011111001000000000000000001000
+11101000110000001000000000000000
+11000011000000111100000011000011
+00011111111000010000111000000111
+11111001001000000000010000000000
+00100000001000000100000011000100
+11100000101000001000000000000000
+11000010000000000100000010111110
+11100010001010010000000000000000
+00100000011000000000000000000000
+00100000010000000100100000010010
+00100100011110100000000000000000
+00100000010000000100000011100000
+01101000000000001100101010110010
+11000000011111111100000100001101
+11000000011111110100000100001001
+01011000000000000000000000000000
+01100000000001000100101011011110
+00100000010000000100000011010110
+01101000000000001100101010101001
+11000010100000010100000011111111
+00100000010000000100000011111000
+01101000000000100100101011011110
+11100000101000100000000000000000
+00100000011000000000000000000000
+01101000000000001100101010110010
+00100000011110100000000000000000
+01111000001000001111110000000000
+01101000000000001100101010110010
+00011111111000100000111000000000
+01101000000001000100101011011110
+11111001001000001111111000000000
+01100000000001000100101011011110
+01111000010000001111110000000000
+00100000011000000000000000000000
+01101000000000010100101011111010
+01100000000000010100101010100001
+00100000011000000000000000000000
+01101000000000010100101010100001
+00100000011110100000000000000000
+01101000000000010100101010100001
+00011111111000001111111111111111
+01100000000000010100101010100001
+00100100011110100000000000000000
+00100000001000000100000011101010
+01011000000000000000000000000000
+01100000000000010100101010100001
+01101000000000010100011100001011
+11000010100001001011111001101011
+01101000000000010100011100001011
+11000010100000000011111001010010
+00100000011000000000000000000000
+11011010001000000000000000001010
+00100000010000000100000000000101
+01101000000000010100001011011110
+11100000101000010000000000000000
+01011000000000000000000110100001
+11100000101000010000000000000000
+00100000011000000000000000000000
+11011010001000000000000000000110
+00100000010000000100000000000101
+01101000000000010100001011011110
+11100000101000010000000000000000
+01011000000000000000001010100001
+11100000101000010000000000000000
+00100000011000000000000000000000
+00100000010000000100000011110001
+01011000000000000000000000000000
+11100000101001000000000000000000
+00100000010000000100000011111000
+01011000000000000000000000000000
+11100000101000100000000000000000
+01101000000000001100101010101001
+01111001001111111111111000000010
+01100000000000001100101010101001
+00100000011000000000000000000000
+00100000010000000100000011111000
+01011000000000000010000000000010
+11100000101000100000000000000000
+00100000011000000000000000000000
+00100000010000000100000011111000
+01011000000000000000000001000000
+11100000101000100000000000000000
+00100000010000000100000011110001
+01011000000000000000000000000000
+11100000101000010000000000000000
+01011000000000000000000000010000
+11100000101000111000000000000000
+01101000000000001100101010101001
+01111001001000000111111000000010
+01100000000000001100101010101001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111001011100000000011001
+01101000000000001100101010101001
+11000100000000001000000000000000
+01111001001111111111111000000001
+01100000000000001100101010101001
+01101000000010001100011100011000
+01011000000000000100011100011001
+10011000010000001000101000000000
+01101000000000001100101011001010
+00100000001110100100000100101000
+11000000000101010100000100101010
+11000000100101000100000100110100
+01100000000010001100011100011000
+00100000001000000011111001000101
+01100000000010001100011100011000
+00100000011000000000000000000000
+01101000000000001100011100011000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011100011000
+11011000101000000100011100011001
+10011000101000001000101000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01111000001101100111110000000000
+00100000001000000100000101000011
+00011111111001100111110000011101
+00100000011000010000000000000000
+11011000010000000000000000110000
+00011111111001100111110000100111
+00100100011000010000000000000000
+00100000001000101100000100111101
+11011000010000000000000000011101
+10011000010001100000010000000000
+00011000010000011000010000110000
+11100000101010001000000000000000
+01101000000000001100011100011000
+00011111111000001111111000000001
+01100000000000001100011100011000
+01111000010101100111110000000000
+00100000001000000100000101000011
+01101000000000010100001011011110
+00100000011110100000000000000000
+11011010001000000000000000000011
+00100000010000000100000000000101
+01101000000000010100001011011110
+11100000101000010000000000000000
+01011000000000001111111110100001
+11100000101000010000000000000000
+01011000000000000000000000000000
+01111001001101100111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111000010101000111110000000000
+01111000010101100111110000000000
+01101000000100001000000100011001
+11000011100000000000000000000000
+01101000000100001000000100011011
+11000010100000000100000101011001
+01101000000100001000000100011001
+11000011000000110100000101011001
+01101000000100001000000100011010
+00100000001000000100000101001111
+01111000001101000111110000000000
+01111000001101100111110000000000
+01101000000100001000000100011011
+00101111111011000000000000000000
+01101000000100001000000100011010
+11011000110000000100100111111111
+10011000110000001000110000000000
+11101000110000001000000000000000
+11000010100000111100000110010001
+00100100001000001100000110000010
+01111000010101100111110000000000
+10011000000000000000010000000000
+01101000000000001100011100110001
+00011111111001100111110000000100
+00100100011000010000000000000000
+00011111111000100010001000000000
+11011111001000000000000000000011
+11011000110000000100011100101011
+11101000110000001000000000000000
+10011000010001100111110000000000
+00100000001000101100000101001111
+11000010000000000100000101101011
+00011010001000100111111000000000
+11011000101000000100011100101011
+10011000101000001000101000000000
+11100000101010001000000000000000
+00011111111000001111111000000001
+01100000000000001100011100110001
+01101000000100001000000100011011
+00011111111010010111111000000000
+00100100001110100100000101111001
+00100000001000000100000110000000
+00011111111000001111111111111111
+00100000001000101100000110000000
+01101000000100001000000100011011
+00011111111000010111111000000001
+11000000000000000100000101001111
+11000000000000001100000110000000
+00100000011000000000000000000000
+01111000001101100111110000000000
+00100000011000000000000000000000
+00011111111000010000010011111111
+01101000000000001100011100110001
+00100000011110100000000000000000
+10011000000000000111001000000000
+11011000110000000100011100101011
+11101000110000001000000000000000
+10011000010001100111110000000000
+00100000001000101100001010010001
+11000010000000000100000110000111
+00100000011000000000000000000000
+01101000000100001000000100011011
+00011111111000010111111000000001
+11000000000000000100000110000000
+11000000000000001100000101001111
+00100000011000000000000000000000
+00011111111000010000111000000111
+01101000000000001100011100101001
+11111001001000001111111000000000
+01100000000000001100011100101001
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000001000100101011001010
+01100000000000001100011100110001
+00100000011000000000000000000000
+01101000000100001000000100011011
+01101000000100001000000100011010
+01101000000100001000000100011001
+11000011000000000100000110011010
+01011000000000000000000011111111
+01111000001101000111110000000000
+00100000011000000000000000000000
+00100000010000000100000110101100
+00100000011101011000000000000000
+01101000000000001100101100010111
+00100000010110100100001010011001
+00100000010000000100001010011100
+01101000000000001100011100110001
+00100000011110100000000000000000
+00100000010000000100000110111111
+01101000000000100000101100100110
+01100000000000100100101011111100
+00100000011000000000000000000000
+01101000000000010100011100001011
+11000100000000111000000000000000
+01101000000000001100101010101001
+11000011100000000000000000000000
+01101000000000010100101011001010
+01101000000010010100101100101000
+10011000010001100111110000000000
+00100000001000101100000110111011
+01101000000000010100101011001010
+01101000000010010100101100101001
+10011000010001100111110000000000
+00100000001000101100000110111011
+01101000000000010100011100001011
+11000010100001100100000110111011
+00100000011000000000000000000000
+01101000000000001100101010101001
+01111001001000000111111000000000
+01100000000000001100101010101001
+00100000001000000111111000111101
+01101000000100011000000010000011
+10011000000000000010010000000000
+01101000000100100000000001111000
+10011000000000000010001000000000
+01101000000111000000000001110000
+01011000000000000000000000000000
+01100000000100011000000010000011
+00100000000000000000000001100100
+01101000000100001000000100011100
+01100000000000001000101100100110
+01110000100000000111100000000000
+01101000000100001000000001110011
+00011111111000010111111011110000
+01100000000100001000000001110011
+00011111111000101111111011111111
+01100000000100001000000001111011
+01011000000000000000000011111111
+01100000000100011000000001110000
+01011000000000001111111111111111
+01100000000100010000000001111001
+00100000000000000000000001100100
+01101000000100011000000100011101
+10011010010000010111111000000000
+01100000000000011000101100100111
+00011010001000100111111000000000
+01100000000100100000000001111000
+01100000000111000000000001110000
+00011010010000100111111000000000
+01100000000100011000000010000011
+00100000011000000000000000000000
+01101000000000001100000100110011
+00100100011110100000000000000000
+01101000000000001100001010000011
+00100100011110100000000000000000
+01101000000000001100011100000001
+00100000011110100000000000000000
+01101000000000001100011100000010
+00100100011110100000000000000000
+00100000001000000011111001110101
+00011010011000100111111000000000
+11000000000000110100001001101101
+11000000000001010100001001000111
+11000000000010010100001001110001
+11000000000010000100001000100011
+11000000000101110011111000110010
+11000000000000001100001000111010
+11000000000000010100001000001100
+11000000000000100100001000000001
+11000000000010011100001000000001
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000100000111110100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111001100100000000011001
+01100000000010001000001001001110
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+00100000010000000100000001100100
+00100000010000000100001000011101
+00100000010000000100000001110111
+00100000010000000100000011100011
+00100000010000000100001010110011
+00100000001000000100000111110111
+01101000000000010100011100001011
+11000010100001100100001000111110
+01101000000000001100101010101001
+11000011000000000011111000001010
+01101000000000001100101010101001
+01111001001111111111111000000000
+01100000000000001100101010101001
+01101000000000010100011100001011
+01111001001111111111111000000111
+01100000000000010100011100001011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111001101100000000011001
+00100000010000000100001000011010
+01101000000000010100001010101101
+11000010100000000011111000001100
+11000010100000001100001000010100
+11000010100000010100001000010111
+00100000001000000100001000111110
+11000010100000101100001000010111
+11000010100000011100001000010111
+00100000001000000100001000111110
+01101000000000010100011100001011
+11000010100001100100001000111110
+00100000001000000011111000001010
+01110000010000101000001100000000
+01110000010010110000001000000000
+00100000011000000000000000000000
+01101000000000001100011100001001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011100001001
+00100100011110100000000000000000
+00100000001000000100001001110001
+01011000000000000000000000000000
+01100000000000010100101010011111
+01100000000000001100011100011000
+00100000010000000100001000101010
+00100000010000000100001000101101
+00100000010000000011111010000001
+00100000001000000100001000111110
+01110000010010101111100100000001
+01101000000010001100011100110111
+00100000001000000110010011111101
+01111001001111111000000000100101
+01000100111001110100000000011001
+01101000000000010100011100001011
+00101111111011111111111000000111
+00100000010000001011111001010000
+01101000000000010100011100010110
+01100000000000010100011100000111
+01101000000000010100001010101111
+01111001001000000111111000000000
+01100000000000010100001010101111
+01101000000000010100011100001011
+11000010100000000011111001010010
+00100000011000000000000000000000
+00100000010000000011111001110011
+01011000000000000000000000000000
+01100000000000010100101010011101
+00100000001000000011111001011001
+00100000010000000011111010000001
+01101000000000010100011100010110
+01100000000000010100101010011101
+00100000010000000011111001010111
+01110000010010110000000100000000
+00100000010000000011111001101111
+00100000010000000100000110011010
+00100000001000000100000110010110
+00100000001000000011111001110101
+01110000010001110000100100000000
+01110000010001110001100000000000
+00100000010000000100000110010110
+00100000001000000100000110011010
+01101000000000001100101100000001
+00100000001110100100001001010100
+11011000010000000000000101000000
+10011000010011111000010000000000
+00011100010000100111111000000000
+10011000010000001000010000000000
+00011100010000100111111000000000
+10011000010001100111110000000000
+00100100001000010100001001010001
+01101000000010001100101011101111
+00100000010000000110010011111101
+01111000001101000111110000000000
+01101000000100100000000100111000
+01111001001101000111111000011010
+01100000000100100000000001001100
+00100000010000000011110011110100
+01110000100000001000001100000000
+01110000100000001000010000000000
+01101000000100001000000010000101
+00011111111000010111111011110000
+01100000000100001000000010000101
+01011000000000000000000000000000
+01100000000000100000000010100100
+01011000000000000000000011111111
+01101000000010001100011100010101
+00011000010000100000111000000000
+11111001001000000111111000000000
+01100000000000100000000010100000
+00100000011000000000000000000000
+00100000010000000100001001011011
+01101000000000001000000010011111
+00100100011110100000000000000000
+01110000000000001010000000000000
+00100000011000000000000000000000
+01011000000000000000000000000010
+01100000000000001100011100001001
+00100000010000000100000110011010
+00100000001000000100000110010110
+01111001001111111000000000100101
+01000100111001111100000000011001
+00100000010000000111110100110011
+01110000010000101000001100000001
+00100000010000000100000110011010
+00100000010000000100000110010110
+00100000010000000011111001111111
+00100000010000000011111001111101
+01011000000000000000000000000000
+01100000000000010100011100000111
+01100000000000001100011100001001
+00100000001000000011111001111001
+01101000000000001100101011101001
+00011111111000010111111000000111
+01100000000000001100101100000000
+11011000010000000000000000000001
+11011010001000000100101100000000
+01011000000000000001111111101100
+00100000001000000110001010101000
+11011000010000000000000000000001
+11011010001000000100101100000000
+01011000000000000001111111101100
+00011111111100001111111000000000
+01100000000000010000001000011010
+00100000010000000110001001001100
+01101000000000001100101100000000
+00011111111000100010010000000000
+00011111111000010111111000001111
+11000000000001111100001010111001
+00011010010000100111111000000000
+01100000000000001100101011101001
+00100000011000000000000000000000
+00011000110000001000101111111111
+00100000010000000111111011001101
+01101000000000001100011100110001
+00011111111000001111111111111111
+01100000000000001100011100110001
+01101000000000001100101100100011
+11000000001111111100001010111101
+00100000001000000100001011000000
+01101000000001000100101011001010
+01100000000001000100101100011001
+00100000001000000100001011000000
+01101000000000001100011100110001
+00100000001110100100001011001010
+00011111111000100010010000000000
+01101000000000101100101011001010
+00011111111000100000010000000000
+00011000010000100111111000000000
+00101111111000011111111001111111
+00100000001000001100001010110000
+00011010010000001010010111111111
+01011000000000000100101100010010
+10011010010000001000101000000000
+00011000010000100111111000000000
+11100000101000001000000000000000
+00011000010000100111111000000000
+00011111111011001111111000000000
+00011111111000100000010000000000
+00100100001110100100001010100001
+01101000000000101100101100010010
+00100000010110100100001011001100
+00100000001000000100001011000000
+01011000000000000000000000000001
+01100000000000001100101100010111
+00100000001000000100001010101001
+01101000000000001100101011111000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100101011111000
+00100100011110100000000000000000
+00100000001000000111110100101111
+00011010010000100111111000000000
+00011111111000010111111000000001
+01100000000000001100101011101001
+00100000011000000000000000000000
+01110000010010110001011100000000
+00100000010000000100001011001100
+00100000001000000100001011000000
+01111001001111111000000000100101
+01000100111010001100000000011010
+01101000000100001000000100011001
+11000011100000000000000000000000
+01101000000100001000000100011011
+11000010100000000100001011010100
+01101000000100001000000100011001
+11000011000000110100001011010100
+01101000000100001000000100011010
+00100000001000000100001011000000
+00100000010000000100001011001111
+00100000001000000100001011000000
+01101000000001000100101011001010
+01100000000001000100101100011001
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000001100101100010111
+01100000000000101100101100010010
+01100000000001000100101011001010
+00100000011000000000000000000000
+01101000000000001100101010101001
+01111001001000000111111000000001
+01100000000000001100101010101001
+01101000000100001000000100011011
+00101111111011111111111000000000
+01100000000000001100101010100110
+01101000000100001000000100011010
+01100000000000001100101010100101
+11011000110000000100100111111111
+10011000110000001000110000000000
+11101000110000001000000000000000
+01101000000010001100011100110001
+00011000010001100111110000000100
+00100100001000010100001011000000
+10011000000000000000110000000000
+01011000000000000100101011001010
+10011000010000001000101000000000
+00011000110000100111111000000000
+11100000101000001000000000000000
+00011000010000001000010000000001
+01100000000010001100011100110001
+00100000001000000100001010011100
+00100000001101011100001011101111
+01011000000000000100001111110101
+11011000101000000100001011010110
+10011000101001100111001000000000
+00100000010000000111111010011111
+01111001001111111000000000100101
+01000100111010010100000000011010
+01011000000000000000010001110101
+11011000101000000000010001000000
+10011000101001100111001000000000
+00100000010000000111111010011111
+01011000000000000000001011110010
+11011000101000000000001010000110
+10011000101001100111001000000000
+00100000010000000111111010011111
+00100000001000000100100011000011
+01111001001111111000000000100101
+01000100111010011100000000011010
+00011000110000100000010000000000
+00011000010000100000110000000000
+11101000110000010000000000000000
+01100000000000010000001010001111
+11101000110000010000000000000000
+01100000000000010000001010010001
+00011000110000100111111000000000
+01100000000000010000001010001101
+01101000000000001100011100001010
+11000000000000000100001100000111
+00100000001000000100011010000100
+01101000000000010000001010001111
+00100000001110100100001110000011
+01111001001111111000000000100101
+01000100111010100100000000011010
+01101000000000001000001010010001
+11000000000000001100001100100001
+11000000001010000100001101100110
+11000000001010001100001101111011
+11000000001010010100001101111001
+11000000001010011100001101111001
+00100000001000000100001110000011
+01111001001111111000000000100101
+01000100111010101100000000011010
+00100000010000000100100000100001
+01101000000000001100001011100110
+11000000000000000100001100011111
+11000000000000001100001100011111
+11000000000000010100001100011111
+11000000000000011100001100011111
+11000000010000001100001100011111
+11000000011000000100001100011111
+11000000010000000100001100011111
+11000000001000000100001100011111
+00100000011000000000000000000000
+01011000000000000000000000000000
+00100000011000000000000000000000
+00100000010000000100001100010010
+00100100011110100000000000000000
+00100000010000000100100001011110
+00100000010000000100001110001000
+01101000000010010000001010011000
+00100000001110100100001110000010
+00100000010000000100100001101000
+01101000000000010000001010011000
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+00100000001000000100001110000011
+01101000000000001100001111110100
+00100000011110100000000000000000
+00011111111000100010001000000000
+01111001001111111000000000100101
+01000100111010110100000000011010
+01101000000000100000001011111110
+11011000010000000000000100000000
+10011000010000001000010000000000
+00011100010000100111111000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+01110000010000111111010000000000
+00011010001000100111111000000000
+11000000001010000100001100111100
+00100000001000000011101100110001
+11011001000000000000000000000000
+00100000010000000100100001011110
+00100000010000000100010000000100
+00100000010000000100100001101010
+00100000010000000111111001110000
+00100000010000000100010000110111
+00100000010000000100100001101000
+01011000000000000000000000001100
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+00100000001000000100001110000011
+01111001001111111000000000100101
+01000100111010111100000000011010
+01101000000000010000001010011110
+00011111111000001111111000000100
+00011111111100011111111000000000
+00011111111010010111111000000000
+00011111111000001000010000000001
+11011000110000000100001011110000
+11101000110000011000000000000000
+00100000011110100000000000000000
+01100000000000011000100111100001
+01101000000000001000100111100001
+00011111111000100010001000000000
+00100000010000000100001101011001
+00011010010000100111111000000000
+01100000000000001100001011110000
+00100000011000000000000000000000
+11011000111000000000000000000000
+11011010010000000000000000000000
+00011000111001100111110000000111
+00100100011000010000000000000000
+10101010001011111111111111111111
+00100000001000001100001101100000
+00100000001000000100001101100100
+00011000010000100111111000000000
+00100000001110100100001101100100
+11111001001000000010010000000000
+00011000010000001000010111111111
+00011000111000001000111000000001
+00100000001000000100001101011011
+00100000010000000100100000010110
+00100100011110100000000000000000
+00100000010000000100001100010010
+00100100011110100000000000000000
+00100000010000000100100001101100
+00100000010000000110101000111110
+00100000010000000100001101001000
+00100000001000000100001101110010
+00100000010000000100100000010110
+00100100011110100000000000000000
+00100000010000000100100001101100
+00100000010000000110101000111110
+00100000010000000100100001110110
+01101000000000010000001010011110
+00100000001110100100001110000010
+11100000101000010000000000000000
+01101000000000010100001011011000
+11100000101000010000000000000000
+00100000001000000100001110000011
+00100000010000000011111111001010
+00100000001000000100001110000011
+01111001001111111000000000100101
+01000100111011000100000000011011
+01110000000000101010110100000000
+00100000010000000110011010001111
+01101000000000001000001010101101
+11000001000000001000000000000000
+00100000001000000100001110000011
+00100000010000000100100000000011
+01011000000000000000000000000000
+01100000000000010000001010001111
+01100000000000010000001010010001
+01110000000000101001001100000001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111011001100000000011011
+00100000010000000100100001101010
+00011000000000000010010000000000
+01101000000000010000001010001111
+00011111111000100010011000000000
+01101000000000010000001010001101
+10011000000000000000110000000000
+00100000010000000100001110011000
+00011010011000100111111000000000
+00011010011000001010011111111100
+00011111111000001111111111111100
+00100100001110100100001110010000
+00011010010000100111111000000000
+01100000000000010000001010011000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111011010100000000011011
+11101000110000001000000000000000
+11000000000000001100001111010010
+11000000000000010100001111011010
+11000000000000011100010001100000
+11000000000000100100010010010001
+11000000000000101100010100110001
+11000000000000110100010101011011
+11000000000000111100010110101100
+11000000000001000100010111100010
+11000000000001001100010111110010
+11000000000001010100001110101000
+11000000000001011100010111110011
+00100000010000000100010111110100
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+01011000000000000000000000001011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+11101000110000010000000000000000
+11000000000000010100001110110110
+11000000000000011100001110111100
+00100000011000000000000000000000
+01011000000000100000000000001000
+11100000101000110000000000000000
+01011000000000000000001010000000
+11100000101000100000000000000000
+00011000000000000111111000001100
+00100000001000000100001111000001
+01011000000000110000000000001100
+11100000101000110000000000000000
+01011000000000000000000000000110
+11100000101001000000000000000000
+00011000000000000111111000010000
+10011010010000001010010000000000
+00100000001000000100001110100111
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+01100000000000010000100111000110
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000010000000100100001101010
+01011000000000000000000000001011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01101000000000010000100111000110
+00100000001000000100001110110011
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+10011000110000001000110000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000001000000100001110100111
+00100000010000000111111001110000
+00100000010000000111111001110101
+11011001000000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+01111001001111111000000000100101
+01000100111011011100000000011011
+00011000010000100111111000000000
+11000000000000001100001111101110
+11000000000000011100010000010000
+11000000000010001100010000011100
+11000000000010011100010000100111
+00100000010000000100010111110100
+00100000001000000100010001011111
+00100000010000000111111001110000
+11011000010000000000000001010000
+01101000000000010100001011011000
+00100100001110100100010001011001
+00011001011000100111111000000000
+01100000000000010100001011011000
+00011100010000100111111000000000
+01100000000000100000001011111110
+00100000010000000100001111111000
+00100000001000000100010000110011
+01100000000010010000001011111100
+00011001011000100111111000000000
+01100000000000010000001011110010
+00011010001000100111111000000000
+01100000000000010000001011110100
+00011010010000100111111000000000
+01100000000000010000001011110110
+00011010011000100111111000000000
+01100000000000010000001011111000
+00011000111000100111111000000000
+01100000000000010000001011111010
+00100000011000000000000000000000
+01101000000010010000001011111100
+01101000000000010000001011110010
+00011111111000100001011000000000
+01101000000000010000001011110100
+00011111111000100010001000000000
+01101000000000010000001011110110
+00011111111000100010010000000000
+01101000000000010000001011111000
+00011111111000100010011000000000
+01101000000000010000001011111010
+00011111111000100000111000000000
+00100000011000000000000000000000
+00100000010000000111111001110000
+01011000000000000000000001010001
+11011000010000000000000001010001
+01101000000000010100001011011010
+00100100001110100100010001011001
+00011001011000100111111000000000
+01100000000000010100001011011010
+01101000000000001100001011100001
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001011100001
+00100000001000000100010000111011
+00100000010000000111111001110000
+11011000010000000000000001010010
+01101000000000010100001011011100
+00100100001110100100010001011001
+00011001011000100111111000000000
+01100000000000010100001011011100
+01101000000000001100001011100010
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001011100010
+00100000001000000100010000111011
+00100000010000000111111001110000
+00011011010000100111111000000000
+11011000010000000000000001010011
+01101000000000010100001011011110
+00100100001110100100010001011001
+00011001011000100111111000000000
+01100000000000010100001011011110
+01101000000000001100001011100011
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001011100011
+00100000001000000100010000111011
+01011000000000000000000000000001
+01100000000000010000001010100110
+01110000010000111111010001010000
+00100000001000000100010000111101
+01101000000000001100001011100000
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001011100000
+01011000000000000000000000000000
+01100000000000010000001010100110
+01111001001111111000000000100101
+01000100111011100100000000011011
+00100000010000000111111001110101
+01011000000000000000000000000011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+01101000000000010000001010100110
+11000000000000001100010001010100
+00101001000011000000000000000000
+00100000001000001100010001001111
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+01011000000000000000000000001100
+00100000001000000100010001011011
+11100000101000010000000000000000
+00011000000000000111111000000010
+11100000101000010000000000000000
+01011000000000000000000000001100
+00100000001000000100010001011011
+01111001001000000001000000000000
+00100000001000000100010000111011
+10011010010000001010010000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000001000000100010001011111
+00100000001000000100001110100111
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+01111001001111111000000000100101
+01000100111011101100000000011011
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100010001111001
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100010001111111
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100010010001011
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100010010000101
+00100000011000000000000000000000
+00011001011000100111111000000000
+01100000000000010100001011011000
+01101000000000001100001011100000
+01111001001000000111111000000001
+01100000000000001100001011100000
+00100000001000000100001110100111
+00011001011000100111111000000000
+01100000000000010100001011011010
+01101000000000001100001011100001
+01111001001000000111111000000001
+01100000000000001100001011100001
+00100000011000000000000000000000
+00011001011000100111111000000000
+01100000000000010100001011011100
+01101000000000001100001011100011
+01111001001000000111111000000001
+01100000000000001100001011100011
+00100000011000000000000000000000
+00011001011000100111111000000000
+01100000000000010100001011011110
+01101000000000001100001011100010
+01111001001000000111111000000001
+01100000000000001100001011100010
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+00011000010000100010001000000000
+01111001001111111000000000100101
+01000100111011110100000000011011
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100010010101001
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100010011000111
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100010010110011
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100010010111101
+00100000001000000100010111110100
+00011000101000100001011000000000
+01101000000000001100001011100000
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100000
+00011001011000100000101000000000
+11011001011000000000000001010000
+01101000000000010100001011011000
+00011111111000100000010000000000
+00100000001000000100010011010000
+00011000101000100001011000000000
+01101000000000001100001011100010
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100010
+00011001011000100000101000000000
+11011001011000000000000001010010
+01101000000000010100001011011100
+00011111111000100000010000000000
+00100000001000000100010011010000
+00011000101000100001011000000000
+01101000000000001100001011100011
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100011
+00011001011000100000101000000000
+11011001011000000000000001010011
+01101000000000010100001011011110
+00011111111000100000010000000000
+00100000001000000100010011010000
+00011000101000100001011000000000
+01101000000000001100001011100001
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100001
+00011001011000100000101000000000
+11011001011000000000000001010001
+01101000000000010100001011011010
+00011111111000100000010000000000
+01111001001111111000000000100101
+01000100111011111100000000011011
+01011000000000000000000000000101
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000110
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001010
+10011010010000001010010000000000
+01100000000010010000001010101011
+00011000111000100111111000000000
+01100000000000001000001010101010
+00011000000000000111111001010000
+10101001011000011111111000000000
+00100000001000001100010011100111
+00011111111000001111111000000001
+00100000011000000000000000000000
+01111000010101000111110000000000
+11000011100000010000000000000000
+11000100000000000000000000000000
+11000100000000001000000000000000
+01111001001000000111111000000010
+00011000110000100000101000000000
+00011000101000001000101111111111
+11100000101000001000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001100001011100000
+00100000010000000100010011101000
+00100100001101000100010011111001
+01110000000000101010100101010000
+01101000000000010100001011011000
+01100000000000010000001010101011
+00100000001000000100010100001101
+01101000000000001100001011100001
+00100000010000000100010011101000
+00100100001101000100010100000000
+01110000000000101010100101010001
+01101000000000010100001011011010
+01100000000000010000001010101011
+00100000001000000100010100001101
+01101000000000001100001011100010
+00100000010000000100010011101000
+00100100001101000100010100000111
+01110000000000101010100101010010
+01101000000000010100001011011100
+01100000000000010000001010101011
+00100000001000000100010100001101
+01101000000000001100001011100011
+00100000010000000100010011101000
+00100100011101000000000000000000
+01110000000000101010100101010011
+01101000000000010100001011011110
+01100000000000010000001010101011
+01111001001111111000000000100101
+01000100111100000100000000011100
+00100000010000000100011111010110
+00100000010000000100100001011110
+00011000000000000010010000000000
+00100000010000000100100001101010
+00011000000000000111111000000100
+11100000101000001000000000000000
+01101000000000001100001011100101
+11100000101000001000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000000010000001010101011
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000001000000000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+01101000000000001000001010101001
+11000000001010001100010100100110
+01011000000000000000000000110000
+11100000101000010000000000000000
+00100000001000000100010100101000
+01011000000000000000001111100011
+11100000101000010000000000000000
+11011000010000000000000000001100
+01100000000010010000001010011000
+00100000010000000100100001101000
+01101000000000010000001010011000
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+01110000000000101010100100000000
+00100000001000000100001110100111
+00011000110000001000110000000001
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+01111001001111111000000000100101
+01000100111100001100000000011100
+01011000000000000000000001010000
+10011010001001100111110000000000
+00100000001000101100010101001010
+01011000000000000000000001010001
+10011010001001100111110000000000
+00100000001000101100010101001110
+01011000000000000000000001010010
+10011010001001100111110000000000
+00100000001000101100010101010010
+01011000000000000000000001010011
+10011010001001100111110000000000
+00100000001000101100010101010110
+00011000110000001000110000000010
+11101000110000010000000000000000
+10011000000000000111110000000000
+00100000001000000100001110100111
+01101000000000001100001011100000
+01111001001000000111111000000101
+01100000000000001100001011100000
+00100000001000000100001110100111
+01101000000000001100001011100001
+01111001001000000111111000000101
+01100000000000001100001011100001
+00100000001000000100001110100111
+01101000000000001100001011100010
+01111001001000000111111000000101
+01100000000000001100001011100010
+00100000001000000100001110100111
+01101000000000001100001011100011
+01111001001000000111111000000101
+01100000000000001100001011100011
+01110000000010011011110100000110
+00100000001000000111110110000110
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+00011010001000100000010000000000
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111100010100000000011100
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100010110000011
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100010110010011
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100010101110111
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100010101111101
+00100000010000000100010111110100
+00100000001000000100010110101000
+00011001011000100000010000000000
+01101000000000010100001011011100
+10011000010001100111110000000000
+00100000001000101100010110001001
+00100000010000000100010111110100
+00100000001000000100010110101000
+00011001011000100000010000000000
+01101000000000010100001011011110
+10011000010001100111110000000000
+00100000001000101100010110001011
+00100000010000000100010111110100
+00100000001000000100010110101000
+00011001011000100000010000000000
+01101000000000010100001011011000
+10011000010001100111110000000000
+00100000001000101100010110001111
+00100000010000000100010111110100
+00100000001000000100010110101000
+00100000010000000100011000001011
+00100000001000000100010110011011
+00100000010000000100011000010001
+01101000000000010100001011011100
+00100000001110100100010110011011
+00100000001000000100010110011011
+00100000010000000100011000000110
+01101000000000001000001010110001
+00100100001110100100010110011011
+00100000001000000100010110011011
+00011001011000100000010000000000
+01101000000000010100001011011010
+10011000010001100111110000000000
+00100000001000101100010110011001
+00100000010000000100010111110100
+00100000001000000100010110101000
+00100000010000000100011000000001
+00100000001000000100010110011011
+00100000010000000111111001110101
+01011000000000000000000000000111
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001000
+00100000001000000100010110101010
+00100000010000000111111001110101
+00100000001000000100010110101010
+10011010010000001010010000000000
+00100000001000000100001110100111
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111100011100000000011100
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100010111000111
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100010111001101
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100010111010011
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100010111011001
+00100000010000000100010111110100
+00100000001000000100010111100001
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001011011000
+10011000010001100111110000000000
+00100000010000101100011000000110
+00100000001000000100010111011111
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001011011010
+10011000010001100111110000000000
+00100000010000101100011000000001
+00100000001000000100010111011111
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001011011100
+10011000010001100111110000000000
+00100000010000101100011000001011
+00100000001000000100010111011111
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001011011110
+10011000010001100111110000000000
+00100000010000101100011000010001
+00100000001000000100010111011111
+00100000010000000111111001110101
+00100000001000000100001110100111
+00100000001000000100001110100111
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+10011000110000001000110000000000
+01011000000000000000000000001001
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000100
+10011010010000001010010000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000001000000100001110100111
+00100000001000000100001110100111
+00100000001000000100001110100111
+00011000000000000010010000000000
+00100000010000000100100001101010
+01011000000000000000000000000001
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+00011010010000001010010000000110
+11011010011000000000000000000100
+00100000001000000100001110100111
+01011000000000000000000000000000
+01100000000000010000001010100100
+01100000000000010100001011011010
+01110000010000101110000100000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010000001010011110
+01100000000000010100001011011000
+01110000010000101110000000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100001011011100
+01110000010000101110001000000000
+01101000000000001100001011100011
+11000000000000000100011000010111
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100001011011110
+01110000010000101110001100000000
+01101000000000001100001011100010
+11000000000000000100011000010111
+00100000011000000000000000000000
+01110000000010011011110100000111
+00100000001000000111110110000110
+01101000000000001000001010101000
+01111001001111111111111000000000
+01100000000000001000001010101000
+01101000000000010100001011011110
+00100000011110100000000000000000
+00100000010000000100100001011110
+01101000000000010100001011011110
+00011111111000100010001000000000
+00011000000000000010010001010011
+00100000001000000100011000101100
+01101000000000001000001010101000
+01111001001111111111111000000111
+01100000000000001000001010101000
+01101000000000010100001011011100
+00100000011110100000000000000000
+00100000010000000100100001011110
+01101000000000010100001011011100
+00011111111000100010001000000000
+00011000000000000010010001010010
+00100000010000000100011111010110
+00100000010000000100100001101010
+00011000000000000111111000000110
+11100000101000001000000000000000
+01101000000000001100001011100101
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00011010010000100111111000000000
+11100000101000010000000000000000
+00011000000000000000010000001000
+00100000001000000100011001110011
+01111001001111111000000000100101
+01000100111100100100000000011100
+00100000010000000100011111010110
+00100000010000000100100001101010
+01011000000000000000000000000010
+11100000101000001000000000000000
+01101000000000001100001011100101
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+11011000010000000000000000001000
+00100000001000000100011001110011
+01111001001111111000000000100101
+01000100111100101100000000011100
+00100000010000000100011111010110
+00100000010000000100100001101010
+01011000000000000000000000000100
+11100000101000001000000000000000
+01101000000000001100001011100101
+11100000101000001000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000001000000000000000
+01011000000000000000001111100011
+11100000101000010000000000000000
+11011000010000000000000000001100
+00100000001000000100011001110011
+01111001001111111000000000100101
+01000100111100110100000000011100
+00100000010000000100011111010110
+00100000010000000100100001101010
+01011000000000000000000000000110
+11100000101000001000000000000000
+01101000000000001100001011100101
+00011111111000001111111000000001
+00011000101000100010001000000000
+01100000000000001100001011100101
+00011010001000100000101000000000
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+11011000010000000000000000001000
+01100000000010010000001010011000
+00011000010000100111111000000000
+00100000001110100100100000000011
+00100000010000000100100001101000
+01101000000000010000001010011000
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+00100000011000000000000000000000
+01101000000000010000001010011110
+00100000001110100011101100110001
+00100000010000000100100001110110
+01101000000000010000001010011110
+11100000101000010000000000000000
+01101000000000010100001011011000
+11100000101000010000000000000000
+00100000011000000000000000000000
+01101000000000010000001010001111
+00100000001110100100001110000011
+01111001001111111000000000100101
+01000100111100111100000000011100
+01101000000000001000001010010001
+11000000000000001100011010001111
+11000000001010000100001101101110
+11000000001010001100001101111011
+11000000001010010100001101111001
+11000000001010011100001101111001
+00100000001000000100001110000011
+01111001001111111000000000100101
+01000100111101000100000000011101
+00100000010000000100100001011110
+00011000000000000010010000000000
+00100000010000000100100001101010
+00011111111000100000101000000000
+01101000000000010000001010001111
+00011111111000100010011000000000
+01101000000000010000001010001101
+10011000000000000000110000000000
+00100000010000000100011010011111
+00011010011000001010011111111100
+00100100001000101100011010011001
+00011010010000100000010000000000
+00100000010000000100011001110011
+00100000001000000100001110000011
+11101000110000001000000000000000
+11000000000000010100011010101010
+11000000000000001100011010101101
+11000000000000011100011010110111
+11000000000000101100011011110100
+11000000000000100100011100100111
+11000000000000111100011110101110
+11000000000000110100011101111011
+11000000000001000100010111100010
+11000000000001010100001111000011
+00100000001000000100011111001010
+00100000010000000111111001110000
+00100000010000000111111001110101
+00100000001000000100001111011010
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000001000000000000000
+00011010001000001010001111111111
+00100100001000101100011010110011
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+11101000110000010000000000000000
+00011111111001100111110000000000
+00100000001000101100011011001001
+11000000000000010100011011000101
+11000000000000100100011011000101
+00100000001000000100011011000111
+01110000000010011011110100010110
+00100000010000000111110110000110
+11101000110000010000000000000000
+00100000001000000100011011110001
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111101001100000000011101
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100011011011001
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100011011011111
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100011011101011
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100011011100101
+00100000001000000100011011110001
+00011001011000100111111000000000
+01100000000000010100001011011000
+01101000000000001100001011100000
+01111001001000000111111000000001
+01100000000000001100001011100000
+00100000001000000100011011110000
+00011001011000100111111000000000
+01100000000000010100001011011010
+01101000000000001100001011100001
+01111001001000000111111000000001
+01100000000000001100001011100001
+00100000001000000100011011110000
+00011001011000100111111000000000
+01100000000000010100001011011100
+01101000000000001100001011100010
+01111001001000000111111000000001
+01100000000000001100001011100010
+00100000001000000100011011110000
+00011001011000100111111000000000
+01100000000000010100001011011110
+01101000000000001100001011100011
+01111001001000000111111000000001
+01100000000000001100001011100011
+00100000010000000111111001110101
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+11101000110000010000000000000000
+00100100001110100100011100100001
+00100000010000000111111001110000
+00011001011000100000010000000000
+01111001001111111000000000100101
+01000100111101010100000000011101
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100011100001111
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100011100010011
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100011100010111
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100011100011011
+01101000000000001100001011100000
+01111001001000000111111000000101
+01100000000000001100001011100000
+00100000011000000000000000000000
+01101000000000001100001011100001
+01111001001000000111111000000101
+01100000000000001100001011100001
+00100000011000000000000000000000
+01101000000000001100001011100010
+01111001001000000111111000000101
+01100000000000001100001011100010
+00100000011000000000000000000000
+01101000000000001100001011100011
+01111001001000000111111000000101
+01100000000000001100001011100011
+01110000000010011011110100000110
+00100000001000000111110110000110
+00100000010000000111111001110101
+00011010001000001010001111111010
+00100000001000101100011100100110
+00011000110000001000110000000001
+00011010001000001010001111111111
+00100000001000000100011100100010
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011000110000001000110000000010
+00011111111000100000010000000000
+01011000000000000000000000000101
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+00011010001000001010001000000010
+00011010001000100111111000000000
+11100000101000010000000000000000
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111101011100000000011101
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100011101000111
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100011101011000
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100011101011110
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100011101100100
+00100000001000000100011101101001
+01101000000000001100001011100000
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100000
+11000010100000010100011101010101
+01101000000010001000001010101000
+01111001001000000000010000000110
+01100000000010001000001010101000
+00011000111000100111111000000000
+00011111111000001111111000000001
+01100000000000001000001010101010
+01101000000000001100001011100000
+01111001001000000111111000000010
+01100000000000001100001011100000
+01101000000000010100001011011000
+01100000000000010000001010101011
+00100000001000000100011101101001
+01101000000000001100001011100001
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100001
+01101000000000010100001011011010
+00100000001000000100011101101001
+01101000000000001100001011100010
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100010
+01101000000000010100001011011100
+00100000001000000100011101101001
+01101000000000001100001011100011
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001011100011
+01101000000000010100001011011110
+00011111111000100001011000000000
+00100000010000000111111001110101
+00011001011000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001010
+10011010010000001010010000000000
+00011010001000001010001111111010
+00100000001000101100011101111010
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010000000001
+00011010001000001010001111111111
+00100000001000000100011101110100
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111101100100000000011101
+01011000000000000000000001010000
+00011010001000100000010000000000
+10011000010001100111110000000000
+00100000001000101100011110010101
+01011000000000000000000001010010
+00011010001000100000010000000000
+10011000010001100111110000000000
+00100000001000101100011110011010
+01011000000000000000000001010011
+00011010001000100000010000000000
+10011000010001100111110000000000
+00100000001000101100011110011100
+00100000001000000100011110011110
+01011000000000000000000000000000
+01100000000000010000001010011110
+01100000000000010100001011011000
+01100000000000001100001011100000
+00100000001000000100011110100000
+00100000010000000100011000001011
+00100000001000000100011110100000
+00100000010000000100011000010001
+00100000001000000100011110100000
+01011000000000000000000000000000
+01100000000000010000001010100100
+00100000010000000111111001110101
+01011000000000000000000000000111
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001000
+10011010010000001010010000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+00100000010000000111111001110000
+01111001001111111000000000100101
+01000100111101101100000000011101
+01101000000000001100001011100101
+10101000111000011111111000000000
+00100100001000001100011111000110
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100011111000011
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100011111000110
+00100000001000000100011111000110
+01110000010000101101100000000000
+01110000010000101110000000000000
+00100000001000000100011111000110
+00100000010000000111111001110101
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000011000000000000000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01011000000000000000000000000110
+10011010010000001010010000000000
+00011000000000000010011000000100
+00100000011000000000000000000000
+01101000000000001100001011100101
+00011111111000001111111000000001
+11000000100000000100011111011010
+00011111111000001111111000000001
+01100000000000001100001011100101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111101110100000000011101
+11011010010000000000000000000000
+00100000010000000100100000001110
+00100100001110100011101100110001
+00100000010000000100100000100001
+11011010010000000001100000000000
+11011000111000000000000000000000
+01101000000010001100001011100110
+10101000010011111111111111111111
+00100000001000001100011111101100
+00100000010000000100100001000101
+00011001011001100111110000000000
+00100000001000010100011111101100
+00100000010000000100100000101100
+00100000001000000100011111110010
+00011010010000001010010010000000
+00011000111000001000111000000001
+01011000000000000000000000001000
+10011000111001100111110000000000
+00100000001000010100011111100100
+11011010010000000000000000000000
+00011010010000100111111000000000
+00100000001110100011101100110001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111101111100000000011101
+00100000010000000100100000011010
+00011000110000001000110000000001
+11101000110000010000000000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110000100000000011110
+00100000010000000100100000011010
+00011000110000100000101000000000
+00011000110000100000010000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110001100000000011110
+00100000010000000100100000010110
+00100000001110100011101100110001
+01101000000000011100001011101101
+01100000000000011100001011110000
+01101000000000011100001011101010
+01100000000000011100001011101101
+01101000000000011100001011100111
+01100000000000011100001011101010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110010100000000011110
+01101000000000011100001011100111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110011100000000011110
+01101000000000011100001011101010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110100100000000011110
+01101000000000011100001011110000
+00100000011000000000000000000000
+00100000010000000100100000010110
+00100000001110100011101100110001
+11011000110000000100001011100111
+11101000110000011000000000000000
+00100000001110100100100000011101
+00011000110000001000110111111101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110101100000000011110
+11011111001000000000000000000100
+11011000110000000100001011100111
+11011000010000000000000000000000
+11101000110000011000000000000000
+00011111111000010111111011111111
+10011000010000011000010000000000
+11000010000000000100100000100110
+01100000000010001100001011100110
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110110100000000011110
+00100000010000000100100000001110
+00100100001110100011101100110001
+00100000010000000100100000010110
+00100000001110100100100000111010
+01101000000000011100001011101010
+01100000000000011100001011100111
+11101000110000011000000000000000
+11100000101000011000000000000000
+11101000110000011000000000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+11011000010000000000000000000000
+00011001011000100111111000000000
+10011000111000001111111000000000
+11111001001000000000010000000000
+00011000111000001000111000000001
+10011000111001100111110000000000
+00100100001000101100100000111101
+00011010010011010111111000000000
+10011000010000011111111000000000
+01100000000000011100001011110000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111110111100000000011110
+00100000010000000100100000100001
+00011000111000100010011000000000
+11011000010000000000000000000000
+11011001011000000000000000000000
+00011000111000100111111000000000
+11000000000001000100100001010110
+01101000000000001100001011100110
+10101111111011111111111111111111
+00100000001000001100100001010110
+00011000010000001000010010000000
+00011000111000001000111000000001
+00011010001000100111111000000000
+10011000010001100111110000000000
+00100000001000101100100001010110
+00100000001000010100100001001011
+00011000010000100111111000000000
+10011010001001100111110000000000
+00100100001000010100100001011100
+00011000111000100111111000000000
+00011010011000100000010000000000
+10011000010001100001011000000000
+00011010011000100000111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111111000100000000011111
+11011010001000000000000001111111
+00100000010000000100011111011100
+01100000000000010000001010010100
+00011111111000001111111000000100
+01100000000000010000001010010110
+01011000000000000000000000000000
+01100000000000010000001010011000
+00100000011000000000000000000000
+01101000000000010000001010010100
+00100000001000000100100010001011
+01101000000000010000001010010110
+00100000001000000100100010001011
+01111001001111111000000000100101
+01000100111111001100000000011111
+11011010001000000000001011111111
+00100000010000000100011111011100
+01100000000000010000001010011010
+00011111111000001111111000000100
+01100000000000010000001010011100
+01011000000000000000000000000000
+01100000000000010000001010011110
+00100000011000000000000000000000
+01101000000000010000001010011010
+00100000001000000100100010001011
+01101000000000010000001010011100
+00100000001000000100100010001011
+01111001001111111000000000100101
+01000100111111010100000000011111
+00100000010000000111111001001000
+01110000000000101010110100000001
+00100000010000000100100000001110
+00100100011110100000000000000000
+11011010001000000000000001111111
+00100000010000000100011111011100
+01100000000000010000001010100000
+00011111111000001111111000000100
+01100000000000010000001010100010
+01011000000000000000000000000000
+01100000000000010000001010100100
+01110000000000101010110100000000
+00100000001000000111111001010110
+01101000000000010000001010100000
+00100000001000000100100010001011
+00100000001110100011101100110001
+00011111111000100000101000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111111011100000000011111
+11011010010000000000000000000000
+11011010001000000100001011100111
+00011010001000001010001111111110
+00011010001000001010001000000010
+01011000000000000100001011110011
+10011010001001100111110000000000
+00100000001000101100100010011111
+11101010001000001000000000000000
+00011010001000001010001000000001
+00100000001110100100100010010011
+11101010001010010000000000000000
+11101000010000010000000000000000
+10011010010000001010010000000000
+00011010010000001010010000000100
+00100000001000000100100010010011
+00011010010000100111111000000000
+00100000011000000000000000000000
+11011000111000000000000000001100
+00100000001000000011110100000110
+11011000111000000000000000001100
+00100000001000000011110100001010
+01111001001111111000000000100101
+01000100111111100100000000011111
+00100000010000000100100000100001
+01101000000000001100001011100110
+00100000011110100000000000000000
+00100000010000000100100010001110
+11011000010000000000000100000000
+10011000010001100111110000000000
+00100000001000010100100010100001
+00100000010000000100100010100011
+11011000101000000100001011110011
+11011010001000000100001011100111
+01011000000000000100001011110011
+10011010001001100111110000000000
+00100000011000101000000000000000
+11101010001000001000000000000000
+00011010001000001010001000000001
+00100100001110100100100010111010
+11100000101000010000000000000000
+00011010001000001010001000000010
+00100000001000000100100010110001
+11101010001000010000000000000000
+00011010001000001010001000000010
+00011111111000100000110000000000
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011111111000100111001000000000
+00011111001000001111001000000010
+00100000010000000111111011001101
+00100000001000000100100010110001
+01111001001111111000000000100101
+01000100111111101100000000011111
+00100000010000000100100000100001
+01101000000000001100001011100110
+00100000011110100000000000000000
+11011010001000000100001011101000
+00011010001000001010001111111101
+11011000110000000100001011110011
+00011010001000001010001000000011
+01011000000000000100001011110100
+10011010001001100111110000000000
+00100000011000101000000000000000
+11101000110000010000000000000000
+00100000001110100100100011001011
+00011111111000001111111000000100
+00011111111000100111001000000000
+00011000110000100010010000000000
+11101010001000010000000000000000
+00011111111000100000101000000000
+00011010010000100000110000000000
+00011000110000001000110111111110
+00100000010000000111111011001101
+00100000001000000100100011001011
+01101000000000001100010011011111
+01111001001000000111111000000011
+01100000000000001100010011011111
+00100000011000000000000000000000
+01101000000000001100010011011111
+01111001001111111111111000000011
+01100000000000001100010011011111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111111110100000000011111
+01111000010101011111110000000000
+01110000000000110111100000000001
+01110000000000110110001000000011
+01110000000000110111100100000001
+01011111111111111111111111111111
+01100000000000010000001101111100
+00011000000000000111111000000000
+01100000000000001000001101111010
+01100000000000001000001110000101
+01100000000000011100001000001001
+01100000000000011100001000001100
+01100000000000101100010010001100
+01111001001000000111111000100111
+01100000000000101100010010010001
+01110000010001000110010100000001
+01110000010001000110011000000000
+00100000001000000101000101111001
+01111001001111111000000000100101
+01000100111111111100000000011111
+01111000001101001111110000000000
+01110000000000110110001100000011
+01110000000000111001101100000001
+01110000010001001110001100000001
+01011000000000001111111111111111
+01100000000000010100010011100101
+00011000000000000111111000000000
+01100000000000101100010010010001
+01111001001000000111111000100111
+01100000000000101100010010001100
+00100000001000000100100011100010
+01111001001000000000000000100101
+01000100100000000100000000100000
+01111000010101001111110000000000
+01110000000000110110001100000001
+01110000010000111111111100000000
+01110000000000001001111100000000
+01110000010001010110101000000000
+01110000010001010110101100000000
+01101000000000010000001110010000
+01100000000000010100010101100001
+01101000000000010000001101100100
+00011111111011111111111000000101
+00011111111100011111111000000000
+01100000000000010000001110010000
+00100000001000000100100011100010
+00100000010000000100100101110110
+00100000010000000100101110010001
+00100000010000000101000101111100
+00100000001000000100100101111101
+01111001001000000000000000100101
+01000100100000001100000000100000
+00100000010000000100100101110110
+00100000010000000011110101100111
+01101000000000001000001101100011
+11000000000000011100100100011100
+00100000001000000100100100110010
+01111001001000000000000000100101
+01000100100000010100000000100000
+01111000001101001111110000000000
+00100000010000000101000101110000
+00100000001000010100100100101111
+00100000010000000011110101000101
+00100000010000000100100111000100
+00100000010000000100101111011000
+01111000010101101111110000000000
+00100000010000000100101001011010
+00100100011101101000000000000000
+01111001001000000000000000100101
+01000100100000011100000000100000
+01101000000000001000000000000101
+00011111111000001111111000000001
+01100000000000001000000000000101
+00100000010000000100101101010001
+01111000010101001111110000000000
+00100000011000000000000000000000
+00100000010000000100100101011011
+01111000010101001111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100000100100000000100000
+00100000010000000111101011001111
+00100000010000000101001010101001
+01111000010101110111110000000000
+00100000010000000101000101110000
+00100000001000010100100101011011
+00100000010000000011110101000101
+00100000010000000100100111000100
+00100000010000000100101000100000
+00100100001011000100100101001111
+00100000010000000100100101101000
+00100000001101101100100101000000
+00100000001000000100100101001001
+01111001001000000000000000100101
+01000100100000101100000000100000
+00100000010000000100100101101000
+00100000010000000100101101010001
+00100000010000000100101111011000
+01101000000000001000001100000010
+11000010100000100100100101010101
+00100000010000000100101111010000
+00100100001110100100100101010101
+01111001001000000000000000100101
+01000100100000110100000000100000
+00100000010000000100101001100011
+00100000010000000111110110011110
+01101000000000001000001110000101
+11000010100000011100100101011011
+01111001001000000000000000100101
+01000100100000111100000000100000
+00100000010000000101001010000111
+00100000010000000100101101000011
+00100000010000000100101100100010
+00100000001000000011100011010001
+01111001001000000000000000100101
+01000100100001000100000000100001
+01111000001101110111110000000000
+00100000010000000100101001011010
+00100000001101101100100101000000
+00100000001000000100100101001100
+01111001001000000000000000100101
+01000100100001001100000000100001
+00100000010000000100100101100010
+00100000010000000011111000010111
+00100000010000000111101010010110
+01110000000010011011110100010101
+00100000001000000111110110000110
+01110000000000110111100000000000
+01110000000000110110001100000000
+01110000000000110110001000000000
+01110000010001010110101100000000
+01110000010001010110101000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100001010100000000100001
+01101000000000001000000000000101
+00011111111000001111111000000001
+01100000000000001000000000000101
+01101000000000001000001101100010
+11000011100000011000000000000000
+01111001001000000111111000000011
+01100000000000001000001101100010
+01101000000000010100010101100001
+01100000000000010000001110010000
+01011000000000000000000000000000
+01100000000000100100010110010110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100001011100000000100001
+01110000100010010000111100110110
+01110000100010010000101101011111
+01111000001110110111110000000000
+01110000100010010001010000000111
+00100000001000000011110101000101
+01111001001000000000000000100101
+01000100100001100100000000100001
+01110000100010010000111100101110
+01110000100010010000101111111111
+01111000010110110111110000000000
+01110000100010010001010000000011
+11011011011000000000000000000000
+00100000011000000000000000000000
+01111000010001001111110000000000
+01111000010000111111110000000000
+01101000000000011000001110001010
+10011000000000000001111000000000
+01101000000000001000000000010110
+00011111111011011000010000000000
+01111001001000000000010000000001
+00011000010000110001110000000000
+00100000011000000000000000000000
+00100000010000000100100110010110
+00100000010000000011100110111001
+01011000000000000000010100000000
+00100000010000000011101100110101
+00100000001000000011100110111111
+00100000001101101011100111010000
+00100000010000000100100110010110
+00100000001000000011100111001001
+01111001001000000000000000100101
+01000100100001101100000000100001
+00100000010000000011100110110001
+01101000000000001000001110110000
+00100100001110100100100110101010
+01101000000000001000000000010110
+00011111111001100111110000100100
+00100000001000010100100110100100
+00011000000000000000010000000000
+11000001000100101000000000000000
+00011000000000000000010000011000
+11000001000100110000000000000000
+00011000000000000000010001001110
+00100000011000000000000000000000
+00011111111001100111110000001010
+00100000001000010100100110100111
+00011111111000001111111000000001
+00011111111000111111111000000000
+00011111111000001000010000000010
+00100000011000000000000000000000
+01101000000000001000000000010110
+00011111111000111000010000000000
+00100000011000000000000000000000
+11011000010000000000000111110100
+00100000011110100000000000000000
+11011000010000000000000011111010
+11000001000000001000000000000000
+11011000010000000000000010010110
+11000001000000010000000000000000
+11011000010000000000000001100100
+11000001000000011000000000000000
+11011000010000000000000001001011
+11000001000000100000000000000000
+11011000010000000000000000110010
+11000001000000101000000000000000
+11011000010000000000000000101000
+11000001000000110000000000000000
+11011000010000000000000000010100
+00100000011000000000000000000000
+01011000100011101000100110111110
+00011111111011010111111000000000
+00011111111000011111111011010110
+10011000000000000001001000000000
+01011000010101010101010101010101
+01100000000000011000001110001010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100001110100000000100001
+01111000001010000111110000000000
+01101000000000100000001110000110
+10011000000000000001001000000000
+00100000010000000100100111111011
+01011000000000000000001000000000
+00100000001101001100100111001110
+01101000000000010000001101110000
+00011111111000110111111000000000
+11011000010000000000010100000000
+10011000010000001111111000000000
+00100000010000000011101010111101
+00011011010000100111111000000000
+01100000000000110000001110110101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100001111100000000100001
+01101000000000001000000000010110
+00011111111000001111111000000001
+01100000000000001000000000010110
+11000001100101000000000000000000
+01110000000000000001011000100101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100010000100000000100010
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000100000000000000000000000000
+00011010001000001000101000011010
+11101000101000010000000000000000
+00011111111000001111111000000001
+11100000101000010000000000000000
+00011010001000001000110000011001
+11101000110000001000000000000000
+00011010001000001000101000011000
+11101000101010001000000000000000
+10011000010000001111111000000000
+00011111111001100111110000100100
+00100000001000010100100111101101
+00011111111000001111111111011011
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100010001100000000100010
+01101000000000101000001110010010
+00011000000000000000010000000000
+00011000000000000111001000100101
+11000011000000000100100111110110
+00011000010000001000010000000001
+00011111111000110111111000000000
+11000010000000000100100111110100
+00011000010000001111111111111111
+01100000000000001000001110000100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100010010100000000100010
+01101000000000001000001101111010
+10011000000000000000111000000000
+01101000000010101000001110010010
+10101000010011111111111111111111
+00100000001000001100101000010011
+01111001001000000000000000100101
+01000100100010011100000000100010
+01101000000000001000001110000100
+10011000111001100111111000000000
+00100000001000010100101000001001
+00011111111001100000111111111111
+00100000001000000100101000000010
+00011000111000100111001000000000
+00011000000000000000111000000000
+10101000010011111111111111111111
+00100000001000001100101000001110
+00011111001000001111001000000001
+00011111001000100111111000000000
+00100000001110100100101000010011
+00011000111000001000111000000001
+00011111001000001111001111111111
+00100000001000000100101000001011
+00011000111000100111111000000000
+01100000000000001000000000010110
+00100000011000000000000000000000
+00100000001101001100101000011001
+00110111110000011000001000000000
+00100000011000000000000000000000
+11011001011000000000111010100000
+00110100011100110000001000000000
+00100000011000000000000000000000
+01111000010010000111110000000000
+01101000000000010100001111111100
+00011111111000100001011000000000
+00100000001000000100101000100110
+01111001001000000000000000100101
+01000100100010100100000000100010
+01111000001010000111110000000000
+01101000000000010000001101110000
+01101000000010100100010110010110
+10011000010000001001011000000000
+00100000010000000100100110001110
+01111001001000000000000000100101
+01000100100010101100000000100010
+00100000010000000100100110000101
+01111000010101101111110000000000
+01111000001001101111110000000000
+01111000001100001111110000000000
+01111000010100000111110000000000
+00011001011000100011011000000000
+00110111110000011000010000000000
+00100000001101110100101000110011
+00011011010000100000010000000000
+01100000000010110000000010011001
+00100100001011000011011011000110
+00100000001101110100101000111010
+11011101001000000000000111100000
+00011100001000100101000000000000
+01101000000000001000001101100010
+11000011000000011100101000111010
+00100000010101011011101111101101
+01111001001000000000000000100101
+01000100100010110100000000100010
+00100000010000000011101001010000
+01111000001000111111110000000000
+01111000001001001111110000000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+01100000000000001000001100000010
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+00011111111000010111001000111111
+00100000001000101100101001001011
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000100101001000111
+01111001001000000000000000100101
+01000100100010111100000000100010
+00001001100000000000000000011000
+01111000001010000111110000000000
+11011011011000000000011001100100
+00011111111011110111111000000000
+00011111111100010111111000000000
+11100000101000011000000000000000
+00100000001000110011011011000110
+01111000001101101111110000000000
+01101000000000001000000000010111
+00011111111000001010001000000000
+00100000010000000011101000010011
+01111000010001101111110000000000
+00100000001000000011100110110001
+01111001001000000000000000100101
+01000100100011000100000000100011
+00100000010000000100101001100101
+01101000000010001000000000010111
+00100000010000000011100110111001
+00100000010000000011100110111111
+01111000001010000111110000000000
+11011001011000000001010101111100
+00100000001000000100101000100111
+00100000010000000100101001100101
+00100000001000000011011011000110
+01111001001000000000000000100101
+01000100100011001100000000100011
+00100000010000000100100110000101
+00100000010000000100100110010011
+00100000010000000100101001101101
+01101000000000001100000100110010
+11000000000001010101110110001110
+00100000011000000000000000000000
+01111001001000000010101000000000
+01111000001011101111110000000000
+01111000001100000111110000000000
+01111000010100001111110000000000
+00100000010000000100101000010110
+00011001001100010111111000000000
+00011111111011001111111000000000
+00011111111100011111111000000000
+00001000000000001000011000101000
+01111000001000111111110000000000
+01111000001001001111110000000000
+01111001001000000000000000100101
+01000100100011010100000000100011
+01101000000000001100010001100101
+00001000000000001000011000001000
+11101000110000001000000000000000
+00011111111000010111001000111111
+00001000000000001000011000001000
+00100000001000101100101010000011
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000100101010000000
+01111000001001000111110000000000
+00001000000000001000011000011000
+01111000010001000111110000000000
+00110111110100111000001000000000
+00100000000000000000000001100100
+01111000010011101111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100011011100000000100011
+01101000000000001100010100100000
+11000000000000001100101010011011
+01101000000000001100010100100001
+00011111111100100111111000000000
+00011111111010111111111000000000
+01100000000000001100010001100101
+01101000000010001100010000000000
+00011000010000001111111000000110
+01100000000000001100010001100110
+01101000000000110100010100111110
+01100000000000110100010001100111
+00011000010000100111001000000000
+11011000110000000100010000000001
+00100000010000000111111011000000
+00100000001000000100101010101011
+01101000000010010100010011111000
+00100000010000000100111101101010
+00011010001000100000101000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+01101000000000001100010100100010
+00011111111100100111111000000000
+00011111111010111111111000000000
+00011111111000001111111000000001
+01100000000000001100010001100101
+01011000000000000000000000001100
+01100000000000001100010001100110
+01101000000000110100010100111110
+01100000000000110100010001100111
+01101000000000110100001001110011
+11100000101000110000000000000000
+01111001001000000000000000100101
+01000100100011100100000000100011
+01101000000000001000000000000000
+00011111111000001111111000000001
+01100000000000001000000000000000
+11011011011000000000011100001000
+01111000010101101111110000000000
+00100000001000000100101001011010
+01111001001000000000000000100101
+01000100100011101100000000100011
+01101000000000001100010100111011
+11000001100000001000000000000000
+01101000000000001000000000000000
+00011111111000001111111000000001
+01100000000000001000000000000000
+11011000010000000000110000000011
+01101000000000001100010100111100
+01111101001110100000010000000110
+00011010001000100111111000000000
+01111101001110100000010000000111
+01100000000010010100010001100101
+01101000000000110100010100111110
+11100000101000110000000000000000
+01101000000000110000001101110010
+11100000101000110000000000000000
+00100000001000000100101001011010
+01111001001000000000000000100101
+01000100100011110100000000100011
+11011000010000000000000000000100
+01101000000000001100010100100001
+01111101001110100000010000000110
+01100000000010001100010001100101
+01101000000010001100010000100000
+00011000010000001111111000000110
+01100000000000001100010001100110
+01101000000000110100010100111110
+01100000000000110100010001100111
+11011000110000000100010000100001
+00011000010000100111001000000000
+00100000010000000111111011000000
+00100000001000000100101001100011
+01111001001000000000000000100101
+01000100100011111100000000100011
+00011000000000000111111111111111
+00111000000010000000000000000001
+01100000000000101000001110010010
+00100000010000000100100111101111
+00011000000000000111001000000100
+11011000101000000000001110000110
+00100000010000000101100100011000
+01101000000000010100010100111001
+01100000000000010000001110010000
+00011000000010100111111000000000
+00011111111000010111111000001111
+00011111111001100111110000000100
+00100000001000010100101011011111
+01100000000000001000001101111011
+01100000000000001000011000001010
+01111001001000000000000000100101
+01000100100100000100000000100100
+01101000000010010100001111110111
+01100000000010010000001101100100
+00011000010000100010011000000000
+00011100010000001111111000000111
+10011010011001101111110000000000
+00100000010000000111111101010011
+00011000000001110010001000000000
+10011010001001100111111000000000
+10011010011000001111111000000000
+01101000000010010100001111110101
+10011000010000001111111000000000
+01100000000000100000001101100110
+10011100010001100010001000000000
+00011010001000001010001111111010
+11011010010000000010001000000101
+01101000000000001100010100110010
+01111101001110100010010000000110
+01101000000000001100010100101011
+01111101001110100010010000000111
+00011010010000100111111000000000
+01100000000000010100010001100101
+01101000000000110100010100111110
+11100000101000110000000000000000
+01101000000000110000001101110010
+11100000101000110000000000000000
+01101000000000100000001110000110
+11100000101000100000000000000000
+00011000000010100111111000000000
+11100000101000010000000000000000
+00011000000010100111111000000000
+11100000101000001000000000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+00011010001010110111111000000000
+11100000101000010000000000000000
+00011010011010110111111000000000
+11100000101000010000000000000000
+01111001001000000000000000100101
+01000100100100001100000000100100
+01101000000000010100010100110111
+11100000101000010000000000000000
+01101000000000010100010100111001
+11100000101000010000000000000000
+01101000000000101000001110010010
+11100000101000101000000000000000
+01101000000000001000001101111011
+11011000010000000000000010100000
+10011000010000011111111000000000
+11100000101000001000000000000000
+00100000010000000100101001100011
+01011000000000000100010001100101
+00011111111000001000110000010010
+11101000110000011000000000000000
+01100000000000011000001110001010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100100010100000000100100
+01111000010101001111110000000000
+00100000001000000100100110111101
+01101000000000001000001101100010
+11000100000000101000000000000000
+01101000000000010000001101111100
+01101000000010010000001110000010
+10011000010001100111111000000000
+00100100011000010000000000000000
+01111001001000000000000000100101
+01000100100100011100000000100100
+01101000000000001100000100110010
+11000000100001001100101100101101
+01110000010000010011000100000001
+01101000000000001000001101100010
+01111001001111111111111000000101
+01111001001111111111111000000011
+01100000000000001000001101100010
+01101000000000100000001101100110
+01101000000010010000001101100100
+10011000010001100010001000000000
+01111001001000000000000000100101
+01000100100100100100000000100100
+01101000000000001100010001011011
+01100000000000001000001110001101
+11101000110010010000000000000000
+11101000110000010000000000000000
+00011111111010111111111000000000
+01100000000000010000001101100100
+00011000010010111000010000000000
+10011000010000001111111000000000
+11101000110010100000000000000000
+01100000000010100000001110001110
+10011010001000001111111000000000
+01100000000000100000001101100110
+00100000001000000101000110011001
+01111001001000000000000000100101
+01000100100100101100000000100100
+01101000000000001000001101100010
+11000100000000110000000000000000
+01101000000000010000001101111100
+01101000000010010000001110000010
+10011000010001100111111000000000
+00100100011000010000000000000000
+01101000000000001000001101100010
+01111001001111111111111000000110
+01100000000000001000001101100010
+01101000000000101100010001010110
+01100000000000101000001110010010
+00100000001000000100100111101111
+01111001001000000000000000100101
+01000100100100110100000000100100
+00100000010000000101000101111001
+00100000010000000100101101100110
+01101000000000001000001100000010
+00011111111000110111111000000000
+10011000010000101111111000000000
+00101111111011111111111000000010
+01111001001000001000000000001111
+01101000000000001000001100000011
+00100000001110100100101101100001
+01101000000000001000001101100010
+11000011000000100100101101100001
+00100000010000000111000110110110
+00100000010000000111000100100010
+00100100011110100000000000000000
+11000110000001111000000000000000
+01101000000010001000001101111001
+01111001010000000000010000000010
+01100000000010001000001101111001
+00100000001000000100111110100101
+01111001001000000000000000100101
+01000100100100111100000000100100
+01101000000010001000001101111001
+00101000010011000000000000000101
+00100000011000001000000000000000
+01101000000000001000001100000010
+00011111111000111111111000000000
+10011000010000101111111000000000
+11000100000000011000000000000000
+01111001001111111000010000000101
+01111001010000000000010000000011
+01100000000010001000001101111001
+00101000010000000000011000000011
+00100100011000001000000000000000
+01101000000000001100010001100111
+11000000000000101100101101111001
+01101000000000001100010101101011
+11000000000000010100101101111101
+00100000011000000000000000000000
+01101000000000001000001101100010
+01111001001000000111111000000100
+01100000000000001000001101100010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101000100000000100101
+01110000010001010110101100000000
+11011111111000000000000000000000
+01100000000000100100010010010110
+01100000000000101100010010001100
+01111001001000000111111000100111
+01100000000000101100010010010001
+01101000000000001000001101100010
+01111001001111111111111000000100
+01100000000000001000001101100010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101001100000000100101
+00100000010000000100100111010100
+00100000010000000100101000011100
+01101000000000001000000000000001
+00011111111000001111111000000001
+01100000000000001000000000000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101010100000000100101
+01101000000000001100001111111001
+11000001100000001000000000000000
+11011000111000000000000000000011
+00100000010000000111111011100010
+00100100011110100000000000000000
+01101000000000010100001111111010
+01101000000010010100001111111100
+10011000010001100111111000000000
+11011000111000000000000000000011
+00100000010000000111111011010100
+01111000010101001111110000000000
+00100000010000000100101100011110
+00100000010000000100101110001001
+00100100011101101000000000000000
+01111001001000000000000000100101
+01000100100101011100000000100101
+01101000000000110000001100000100
+01100000000000110000001101110010
+01101000000000001000000000000010
+00011111111000001111111000000001
+01100000000000001000000000000010
+00100000010000000100101110110100
+00100000011101001000000000000000
+00100000010000000100101010110011
+00100100011101101000000000000000
+01111001001000000000000000100101
+01000100100101100100000000100101
+01101000000000001000000000000100
+00011111111000001111111000000001
+01100000000000001000000000000100
+01101000000001001000001100001010
+01100000000001001000000100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101101100000000100101
+01101000000000001000001110111111
+11000001100011011000000000000000
+01101000000000110000001101110010
+01101000000010110100010100101100
+10011000010001100111110000000000
+00100100011000101000000000000000
+00100000010000000011001001111010
+00100100011000101000000000000000
+00100000010000000100101011010100
+00100000010000000100100011110101
+01111001001000000000000000100101
+01000100100101110100000000100101
+01110000010000100111000100000000
+01110000000000111001100100000000
+01110000010000111111100100000000
+01110000000000111011111100000000
+01110000000010011011110100101100
+00100000010000000100101111010110
+00100000001000000011001001100000
+11011010001000000000000000000001
+01101000000000001000001100000010
+11000011100000110000000000000000
+11011010001000000000000000000000
+00100000011000000000000000000000
+11011000110000000100010101000100
+00100000001000000111111110101000
+11011010001000000100010101000100
+00100000001000000111111110100010
+11011010001000000100010101000100
+00100000001000000111111110100100
+11011010001000000100010101000100
+00100000001000000111111110100110
+11011010001000000100010101000100
+00100000001000000111111110001000
+01111001001000000000000000100101
+01000100100101111100000000100101
+01101000000000001000001101111001
+11000011100000101000000000000000
+01101000000000001100000100110010
+11000000000001001100101111100010
+11011010001000000100010101000100
+00100000010000000111111110010101
+00100100001110100100101111110001
+00100000001000000100111110000111
+01101000000000001100100011001000
+00100100001110100100101111101001
+01101000000000001000001101100010
+11000011000000100100101111101101
+01101000000000001000001100000011
+00100000001110100100101111101101
+00100000001000000100111110000111
+01101000000000001100100011001000
+00011111111000001111111111111111
+01100000000000001100100011001000
+00100000001000000100111110000111
+01101000000000001100010101101010
+11000000100000010100101111110000
+01110000010010001100100000000011
+00100000001000000100101111011110
+00011111111000100000010000000000
+01111001001000000000000000100101
+01000100100110000100000000100110
+00011000010000100111111000000000
+11000011000000101100110000001101
+00011000000000000000001000000011
+01111001001111111111111000000101
+01100000000000001100010001100111
+01111001001000000000000000100101
+01000100100110001100000000100110
+01101000000000001100010001100111
+11000000000000000100110001010100
+11000000000000001100110001010110
+11000000000000010100110001011000
+11000000000000011100110001011010
+11000000000000100100110001101011
+11000000000000101100110010000100
+11000000000000110100110010000110
+11000000000000111100110010011100
+11000000000001000100110010100000
+11000000000001001100110010100000
+11000000000001010100110010100100
+11000000000001011100110010100100
+11000000000001100100110010100110
+11000000000001101100110010101010
+11000000000001111100110010101110
+11000000000010011100110010100100
+00100000001000000011101100110001
+01110000010001000110101000000000
+00011000000000000000001000000010
+11000011000000110100110000100110
+11000000001010010100110000100110
+11000000011010010100110000100110
+01110000010001000110100100000110
+01111001001111111111111000000110
+01100000000000001100010001101011
+01111001001000000000000000100101
+01000100100110010100000000100110
+01101000000000001100010001101011
+11000000000000001100110010111011
+11000000000000010100110011000011
+11000000000000011100110011011010
+11000000000000100100110011101000
+11000000000000101100110011101101
+11000000000000110100110011110010
+11000000000000111100110100010000
+11000000000001000100110100100111
+11000000000001001100110100101101
+11000000000001010100110100110010
+11000000000001011100110100110101
+11000000000001100100110100111001
+11000000000001101100110101100100
+00100000001000000011101100110001
+01110000010001000110100100000100
+01100000000000001100010001101011
+01111001001000000000000000100101
+01000100100110011100000000100110
+01101000000000001100010001101011
+11000000000000001100110101101111
+11000000000000010100110101110101
+11000000000000011100110101110101
+11000000000000100100110101111000
+11000000000000101100110101111101
+11000000000000110100110110010011
+11000000000000111100110110100111
+11000000000001000100110111101100
+11000000000001001100110111110100
+11000000000001010100111001011000
+11000000000001011100111001100000
+11000000000001100100111001110111
+11000000000001101100111001111100
+11000000000001110100111010001011
+11000000000001111100111010010010
+11000000000010000100111010111000
+11000000000010001100111011000000
+11000000000010010100111100011110
+11000000000010011100111100100101
+11000000000010110100111100100111
+11000000000010111100111101000110
+11000000000011000100111101100110
+11000000000011001100111101101000
+11000000000011011100111101110111
+11000000000011101100111101111001
+11000000000011110100111101111011
+11000000001010010100111101111101
+11000000011010010100111101111111
+11000000010011110100110001001011
+11000000010011111100110001001101
+11000000000011111100111100101001
+00100000001000000011101100110001
+01110000000010011011110100010000
+00100000010000000100101111010110
+01011000000000000000000000010001
+01100000000000010100010001100101
+01101000000000001000001101111001
+01111001001000000111111000000101
+01100000000000001000001101111001
+01110000000010011011110100010010
+00100000001000000100101111010110
+00011000000000000000010000001100
+00100000001000000100111110001001
+00011000000000000000010000001000
+00100000001000000100111110001001
+00011000000000000000010000000010
+00100000001000000100111110001001
+00011000000000000111111000000000
+11100000101001000000000000000000
+11100000101000010000000000000000
+00011000101000100000010000000000
+11011000101000000100010101010001
+00011000000000000111001000001000
+00100000010000000101100100011000
+01101000000001000100010101010001
+11100000010001000000000000000000
+00011000101000100000010000000000
+11011000101000000100010010011010
+00011000000000000111001000000100
+00100000010000000101100100011000
+01101000000000100100010010011010
+11100000010000100000000000000000
+00011000000000000000010000010111
+00100000001000000100111110001001
+00011000101000100000010000000000
+11011000101000000100010101011001
+00011000000000000111001000001000
+00100000010000000101100100011000
+01101000000001000100010101011001
+11100000010001000000000000000000
+00011000101000100000010000000000
+11011000101000000100010010011110
+00011000000000000111001000000100
+00100000010000000101100100011000
+01101000000000100100010010011110
+11100000010000100000000000000000
+00100000010000000111000011001000
+01101000000000001100010010110010
+11000000000000000100110001111110
+01110000000010011011110100100101
+00100000010000000100101111010110
+00011000000000000000010000001101
+00100000001000000100111110001001
+01110000010001010110101100000000
+01110000000010011011110100101101
+00100000010000000100101111010110
+00100000010000000111111000101001
+00011000000000000000010000001101
+00100000001000000100111110001001
+00011000000000000000010000000001
+00100000001000000100111110001001
+00011000000000000000010000000001
+00100000001101001100111110001001
+01101000000000001100000100110010
+11000000000001001100110010010010
+01101000000000001100010101101010
+11000000100000010100110010001111
+01110000000010011011110101000110
+00100000010000000100101111010110
+00100000001000000100110010010000
+01110000010001010110101100000011
+00011000000000000000010000000001
+00100000001000000100111110001001
+01110000010000010011000100000001
+01101000000000001100010101101010
+11000000100000010100110010010111
+01110000000010011011110101000110
+00100000010000000100101111010110
+01110000010001010110101100000011
+00011000000000000000010000000001
+00100000010000000100111110001001
+01110000010010001100001000000001
+00100000011000000000000000000000
+01101000000000001100010101010000
+11100000101000001000000000000000
+00011000000000000000010000000010
+00100000001000000100111110001001
+01011000000000000000000000000001
+11100000101001000000000000000000
+00011000000000000000010000001001
+00100000001000000100111110001001
+00011000000000000000010000000001
+00100000001000000100111110001001
+01101000000000101100010110101001
+11100000101000101000000000000000
+00011000000000000000010000000110
+00100000001000000100111110001001
+01011000000000000000000000000110
+11100000101000001000000000000000
+00011000000000000000010000000010
+00100000001000000100111110001001
+00011000101000001000101111111111
+01011000000000000000000000001100
+11100000101000010000000000000000
+01011000000000000000000000000101
+11100000101000010000000000000000
+01011000000000001011010000010010
+11100000101000010000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000001000100010110001101
+11100000101001000000000000000000
+00011000000000000000001000000010
+00100000001000000100111110000001
+01011001000000000000010000000001
+01100000000000100100010011010101
+01011000000001110000011100010000
+11100000101000011000000000000000
+01101000000000110100010011010110
+01100000000000110100010001101100
+00011000000000000000010000001011
+00100000001000000100111110001001
+01101000000000001100000100110010
+00011111111001100111110000001010
+00100000010000101100110011010001
+01101000000000001100000100110010
+11000000100001001100110011001101
+01110000010001110100011000000001
+01101000000000001100010011011010
+11000010100000001100110011001101
+01011000000000010000000000010000
+11100000101000011000000000000000
+01101000000000110100010011011101
+01100000000000110100010001101100
+00011000000000000000010000001011
+00100000001000000100111110001001
+01101000000010001100010011100001
+01101000000000001100010011011010
+00101111111011111111111000000001
+01111001001000001000010000000001
+01100000000010001100010011100001
+01101000000010001100010011100010
+01111001001000001000010000000001
+01100000000010001100010011100010
+00100000011000000000000000000000
+01101000000000001100010101100011
+11000000000000001100110011100001
+00100000010000000111000011000010
+11011000101000000100010001101100
+00100000010000000111000111000000
+00011000000000000000010000010101
+00100000001000000100111110001001
+11011000101000000100010011000011
+00100000010000000101100100010111
+00100000010000000110111011100111
+11011000101000000100010001101100
+00100000010000000110111100100100
+00011000000000000000010000010101
+00100000001000000100111110001001
+01101000000001000000001101010010
+00100000001101001100110011101011
+01101000000001000100010011000011
+00100000010000000100110101101001
+00100000001000000100111110001001
+01110000010001010110101000000000
+11011111111000000000000000001000
+11100000101000001000000000000000
+00011000000000000000010000000110
+00100000001000000100111110001001
+01110000000010011011110100101001
+00100000010000000111110110000110
+01110000000010011011110101000111
+00100000010000000100101111010110
+01101000000000001100000100110010
+11000000000001001100110100000001
+01101000000001000100010010100010
+00100000010000000100110101101001
+00100000010000000100111110001001
+01101000000000001100010100101011
+11000000000000000011111001111011
+01101000000000001000001101110111
+00101111111000011000000011000000
+00100000001000001011111001111011
+00100000011000000000000000000000
+01011000000100010010001000110011
+01100000000000011100010010100010
+01011000010001000101010101100110
+11100000101000011000000000000000
+01011000011101111000100010011001
+11100000101000011000000000000000
+01011000000000000001000100100010
+11100000101000011000000000000000
+01011000001100110100010001010101
+11100000101000011000000000000000
+01011000000000000000000001100110
+11100000101000001000000000000000
+01101000000001000100010010100010
+00100000010000000100110101101001
+00100000001000000100111110001001
+01101000000000001100000100110010
+11000000000001001100110100100010
+01101000000000001100010011011010
+11000011000000001100110100010111
+01110000000010011011110101001000
+00100000010000000100101111010110
+00100000001000000100110100011001
+01110000010001010110101100000011
+01110000010001010110101000000011
+11011000101000000100010101110001
+00011000000000000111001000001010
+00100000010000000101100100011000
+01101000000000010100010101110001
+01100000000000010100010001101100
+01101000000001000100010101110011
+11100000101001000000000000000000
+00011000000000000000010000001111
+00100000001000000100111110001001
+11011000101000000100010001101100
+00011000000000000111001000001000
+00100000010000000101100100011000
+00011000000000000000010000001111
+00100000001000000100111110001001
+01110000000010011011110101001001
+00100000010000000100101111010110
+01011000000000000000000000000000
+01100000000001000100010001101100
+11100000101001000000000000000000
+00100000001000000100111110000001
+01101000000000001100010100110010
+01100000000000001100010001101100
+01101000000000110100010100111110
+11100000101000110000000000000000
+00100000001000000100111110000001
+11011000101000000100010001101100
+00100000010000000101100100010111
+00100000001000000100111110000001
+01101000000000001100010011011111
+01100000000000001100010001101100
+00011000000000000000010000000110
+00100000001000000100111110001001
+01101000000000001000001111011010
+11000000000000011100110101001110
+11011000010000000000000001000001
+01100000000010010100010001100111
+01111001001000000000000000100101
+01000100100110100100000000100110
+11011000001000000000000000000010
+01011000000000000000000000000110
+01100000000000010100010001101001
+11011000101000000100010001101100
+11011111001000000000000000010110
+11011000110000000100011001011010
+00100000010000000111111011000000
+01110000000000111101101100010110
+01110000010001000110011000011011
+01101000000010001000001101111001
+01111001001000000000010000000100
+01100000000010001000001101111001
+01110000000000111101101000000011
+01101000000010001000001101111001
+00100000001000000100111110010011
+01110000000000111101101000000000
+01101000000000001000001111011011
+11000000000010110100110101011110
+11011111001000000000000000001111
+01110000010001000110011000001111
+00100000010000000100110101011000
+01110000010001010110010000000010
+01110000010001010110011000000011
+01110000000000111101101100000000
+00100000011000000000000000000000
+11011000110000000100011001011010
+10011000110000001000110000000000
+11011000101000000100010001100111
+00100000010000000111111011000000
+11011000001000000000000000000001
+00100000001000000100111110010000
+01110000000000111101101100110001
+11011111001000000000000000011011
+01110000010001000110011000011011
+00100000010000000100110101011000
+01110000000000111101101000000011
+00100000011000000000000000000000
+00100000010000000110111010000110
+11011000101000000100010001101100
+00100000010000000110111100100100
+00011000000000000000010000010101
+00100000001000000100111110001001
+01100000000001000100010001101100
+11101000110001000000000000000000
+11100000101001000000000000000000
+00011000000000000000010000010101
+00100000011000000000000000000000
+01110000000000111001110100001010
+01110000010001000110101100000001
+01101000000000011000001110011010
+01100000000000011100010001101100
+01101000000000001000001110011101
+11100000101000001000000000000000
+00100000001000000100111110000001
+01101000000000010100010101001100
+11100000101000010000000000000000
+00100000001000000100111110000001
+01101000000000010100010011100011
+01100000000000010100010001101100
+01101000000000010100010011100101
+11100000101000010000000000000000
+00100000001000000100111110000001
+11011001011000000000000000000010
+00011000000000000111111000000001
+01100000000000001100010001101100
+00100000010000000101000111100000
+00100000010000000101000111101010
+00100000001110100100110110010001
+00100100001000010100110110001110
+01111000010101000111110000000000
+11100000101000010000000000000000
+11101000110000001000000000000000
+00011111111000100111001000000000
+00100000010000000111111011000000
+00011001011000001001011111111111
+00100000001000101100110110010001
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000100110110000001
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000100110110001011
+00100000001101000100110101101110
+00100000001000000100111110000001
+01101000000000010100010011100011
+00100000001110100100110001001101
+01100000000000010100010001101100
+01101000000000010100010011100101
+11100000101000010000000000000000
+01101000000000010100010011111011
+11100000101000010000000000000000
+01101000000000010100010011101000
+11100000101000010000000000000000
+00100000001000000100111110000001
+01111000010101000111110000000000
+01101000000010010100010011100011
+01101000000000010100010011100101
+10011000010001100111110000000000
+00100100001000010100110110100100
+00011000010000100111111000000000
+11000001100000000000000000000000
+01111000001101000111110000000000
+01110000000000111001110100000001
+00100000001000000100110101101111
+00100000010000000100110110011101
+00100000011101000000000000000000
+01101000000010010100010011111011
+01011000000000000010100000000000
+10011000010001100111110000000000
+00100000001000101100110110110111
+01011000000000000010100000000001
+10011000010001100111110000000000
+00100000001000101100110101101110
+01011000000000000010100000000010
+10011000010001100111110000000000
+00100000001000101100110101101110
+01011000000000000010100000000011
+10011000010001100111110000000000
+00100000001000101100110101101110
+00100000001000000100110101101110
+01110000000000111101100100000000
+01101000000010010100010011100011
+01100000000010010000100111000110
+00100000010000000101001000011010
+00100100001110100100110101101110
+01101000000010010000100111000110
+00100000010000000101001000011010
+00100100001110100100110111010000
+00011000110000100010001000000000
+01101000000000001000001111011000
+00011111111000100111001000000000
+01101000000010001100010011100111
+10011000010001100111110000000000
+00100100001000101100110111001100
+11011010010000000100010011101000
+00100000010000000111111101010101
+00100000001000101100110111010011
+01101000000000010000001111001000
+01101000000010010100010011111011
+10011000010001100111110000000000
+00100000001000101100110111011011
+01101000000000010000100111000110
+00011111111000001111111000000001
+01100000000000010000100111000110
+00100000001000000100110110111100
+01101000000000001000001111011001
+11000000000000001100110111011011
+00100000001000000100110101101110
+01101000000000010000001111001000
+01101000000010010100010011111011
+10011000010001100111110000000000
+00100100001000101100110111001100
+01110000000000111101100100000001
+01101000000010010000100111000110
+01100000000010010000001111000011
+00100000001000000100110111001100
+01101000000000001000001111011001
+11000000000000000100110111001100
+01110000000000111101100100000010
+01101000000010010000100111000110
+00011000010000001000010111111111
+01100000000010010000001111000101
+01101000000000010000001111000011
+00011111111000100010001000000000
+01101000000000010000001111000101
+00011111111000100010010000000000
+01110000010001000110101100000111
+00011010001000100111111000000000
+01100000000000010100010001101100
+00011010010000100111111000000000
+11100000101000010000000000000000
+00011000000000000000010000001001
+00100000001000000100111110001001
+01101000000000010100010011100011
+11100000101000010000000000000000
+01101000000000010100010011100101
+11100000101000010000000000000000
+01101000000000010100010011101000
+11100000101000010000000000000000
+00011000000000000000010000001011
+00100000001000000100111110001001
+01101000000010010100010011100011
+01100000000010010000100111000110
+00100000010000000101000111100000
+00100000010000000101000111111000
+00011000110000001000110111111110
+00011000110000100111111000000000
+01100000000000010000001111000001
+01101000000010010100010011111011
+01011000000000000010100000000011
+10011000010001100111110000000000
+00100100001000101100111000111101
+11011001011000000000000000000010
+01111001001000000000000000100101
+01000100100110101100000000100110
+00100000010000000100111011111111
+00100100001000010100111000010011
+01101000000010010000100111000110
+00100000010000000101001000010111
+11000000000000001100111000010011
+00100000010000000100111100001011
+00100100001000101100111000010001
+00100100001101000100111000010101
+01111000010101000111110000000000
+00100000010000000100111000101000
+00100000010000000100111011111011
+00100000010000000101001000010111
+00100000010000000100111000101111
+00011001011000001001011111111111
+00100000001000101100111000010011
+00100000010000000100111011111011
+00100000001000000100111000000010
+00100000001101000100110101101110
+00100000001000000100111100010011
+00100000010000000100111100001110
+00100000010000000100111011111011
+00100000010000000101001000010111
+01101000000000001100010001101100
+11000000000010101100111000010011
+01101000000000001000001111000111
+00011111111000001111111000000101
+01101000000010001100010001101100
+10011000010001100111110000000000
+00100100001000101100111000010011
+00100000010000000111111001100100
+01101000000000010000100111000110
+00011111111000001111111111111111
+11100000101000010000000000000000
+00100000010000000100111100011010
+00100000010000000100111000101111
+00011001011000001001011111111111
+00100000001000101100111000010011
+00100000001000000100111000010001
+01101000000000010000100111000110
+01100000000000010100010001101101
+01101000000000001000001111011000
+00011111111000100111001000000000
+00100000010000000111111001100111
+00100000010000000111111011000000
+00100000001000000111111001101010
+00100000010000000111111001100100
+01101000000000010000100111000110
+11100000101000010000000000000000
+00100000010000000111111001101010
+01101000000000001000001111000111
+00011111111000100111001000000000
+00011111111000001111111000000101
+01100000000000001100010001101100
+00100000010000000111111001100100
+00100000010000000111111001100111
+10011111001001100000110000000000
+00011000110000001000110111111111
+00100000010000000111111011000000
+00100000001000000111111001101010
+01101000000010010100010011100011
+01100000000010010000100111000110
+00100000010000000100111011111111
+00100100001000010100110101101110
+00100000010000000101001000010111
+11000000000000001100110101101110
+00100000010000000100111100001011
+00100100001000101100111001010110
+01101000000000001100010011111010
+11000000100000010100111001001101
+01101000000000010100010011111011
+11011000010000000010101000000000
+10011000010001100111110000000000
+00100100001000101100111001001101
+01101000000000001100010001000000
+00100000001000000100111001001110
+01101000000000001000001111011000
+00011111111000100111001000000000
+00011111111000001111111000000010
+01100000000000001100010001101100
+01101000000000010000100111000110
+11100000101000010000000000000000
+00100000010000000111111001100111
+00100000010000000111111011000000
+00100000001000000100111110000001
+00100000010000000100111011111011
+00100000001000000100111000111111
+01101000000000001100010001100100
+00011111111000001111111111111111
+01100000000000001100010001100100
+00011111111000111111111000000000
+10011000110000001000110000000000
+11101000110010010000000000000000
+01100000000010010100010001101100
+00100000001000000100111110000001
+01101000000000001100010110101000
+11000011000000000100111001100110
+01101000000000010000001110011011
+01101000000010010100010110001011
+10011000010001100111110000000000
+00100000001000101100111001110001
+01101000000010010000001110011011
+00100000010000000101000111110101
+00100000001110100100110101101110
+11101000110000001000000000000000
+00100000001110100100111110000001
+00011111111001100111110000010110
+00100000001000010100111001101110
+00011000000000000111111000010110
+00011111111000100111001000000000
+00100000010000000111111011000000
+00100000001000000100111110000001
+01101000000000001100010101101100
+00100000001110100100111001100110
+01101000000000001000001101100010
+11000010100000100100111001100110
+01110000000000111001110100000101
+00100000001000000100110101101111
+01011000000000000000000000000011
+01100000000000010100010001101100
+01011000000000000000000000001000
+11100000101000010000000000000000
+00100000001000000100111110000001
+01101000000000010100010011100111
+10011000000000000010001000000000
+01101000000010010000001110011011
+00100000010000000101000111110101
+00100000001110100100110101101110
+11101000110000001000000000000000
+10011010001001100111001000000000
+00100100001000010100110101101110
+00011111001001100111110000010110
+00100000001000010100111010000111
+00011000000000000111001000010110
+00011010001000100111111000000000
+10011000110000001000110000000000
+00100000010000000111111011000000
+00100000001000000100111110000001
+01011000000000000000000000000011
+11100000101000010000000000000000
+01011000000000000000000000000111
+11100000101000010000000000000000
+01011000000000000000000000001001
+11100000101000010000000000000000
+00100000001000000100111110000001
+01101000000000001100010001100100
+00011111111000100010011000000000
+11011010001000000000001100001001
+11011010010000000100010001101100
+11011001011000000000000000000000
+01111000010110001111110000000000
+00011010001000100000110000000000
+11101000110010010000000000000000
+00011000110000100010001000000000
+00100000010000000101000111110101
+00100000001110100100111010101011
+11101000110000001000000000000000
+00011111111000100111001000000000
+10011001011000001001011000000000
+00011001011001100111110000011000
+00100100001000010100111010110000
+00011010010000100000101000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000100111010100011
+00011000101000100010010000000000
+01111000001110001111110000000000
+00011010011000001010011111111111
+00100000001000101100111010101011
+00100000001000000100111010011000
+00100100001110001100111010110110
+01111000010110001111110000000000
+00011001011000100000010000000000
+00011000010000001000010000000101
+00100000001000000100111110001001
+00100100001110001100111010110110
+01111000010110001111110000000000
+00011001011000100111111000000000
+10011111001001100000010000000000
+00011000010000001000010000000101
+00100000001000000100111110001001
+01110000000000111001110100010000
+00100000001000000100110101101111
+01101000000000010000001110011011
+00100000001110100100110001001101
+11100000101000010000000000000000
+01011000000000001111111111111111
+11100000101000010000000000000000
+01011000000000000010100000000000
+11100000101000010000000000000000
+00100000001000000100111110000001
+11011001011000000000000000000010
+01101000000000010100010011100011
+01100000000000010000100111000110
+01110000000000111101100100000000
+01101000000010010100010011100011
+01100000000010010000100111000110
+00100000010000000101000111100000
+00100000010000000101000111111000
+00011000110000001000110111111110
+00011000110000100111111000000000
+01100000000000010000001111000001
+01111001001000000000000000100101
+01000100100110110100000000100110
+00100000010000000100111011111111
+00100100001000010100111011110001
+01101000000010010000100111000110
+00100000010000000101001000010111
+11000000000000001100111011110100
+00100000010000000100111100000011
+00100100001000101100111011101101
+01101000000000001000001111011001
+11000000000000001100111011110100
+00100100001101000100111011011101
+01111000010101000111110000000000
+01101000000000001000001111011000
+00011111111000001111111000000100
+01100000000000001100010001101100
+00100000010000000111111001101010
+00100000001000000100111011101000
+01101000000000001100010001101100
+11000000000010100100111011110100
+01101000000000001000001111011000
+00011111111000001111111000000100
+01101000000010001100010001101100
+10011000010001100111110000000000
+00100100001000101100111011110100
+01101000000000010000100111000110
+00011111111000001111111111111111
+01100000000000010000001111000101
+00100000010000000100111100010101
+01101000000000010000100111000110
+01100000000000010000001111000011
+00100000010000000100111100001110
+00011001011000001001011111111111
+00100000001000101100111011101111
+00100000010000000100111011111011
+00100000001000000100111011001101
+01110000000000111101100100000001
+00100000001000000100111011101101
+01101000000000010000100111000110
+01100000000000010000001111000101
+00100000001000000100111011111000
+01101000000000010000100111000110
+00011111111000001111111111111111
+01100000000000010000001111000101
+00100000001000000100111011111000
+00100000001101000100110101101110
+00100000010000000100111100010101
+00100000001000000100111100010011
+01101000000010010000100111000110
+00011000010000001000010000000001
+01100000000010010000100111000110
+00100000011000000000000000000000
+01101000000010010000100111000110
+01101000000000010100010011100101
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000010001100010011100111
+11011010001000000100010011101000
+01101000000000001000001111000111
+00011111111000100111001000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+11011010010000000000001111001000
+00100000001000000111111101010101
+01101000000010001100010011111010
+11011010001000000100010011111011
+00100000001000000100111100000101
+01101000000000001000001111011000
+01100000000000001000000100000000
+00011111111000100111001000000000
+00100000010000000111111001100111
+00100000001000000111111011000000
+00100000010000000111111001100100
+00100000001000000100111110000001
+00100000010000000111111001100100
+01101000000000010000001111000011
+11100000101000010000000000000000
+01101000000000010000001111000101
+11100000101000010000000000000000
+01101000000000001000000100000000
+00011111111000100111001000000000
+00100000010000000111111011000000
+00100000001000000111111001101010
+01101000000000010100010011111000
+01100000000000010100010001101100
+01101000000000001100010100001011
+00011111111000100111001000000000
+11011000110000000100010100001100
+00100000010000000111111011000000
+00100000001000000100111110000001
+00011000000000000000010000000101
+00100000001000000100111110001001
+00011000000000000000010000000110
+00100000001000000100111110001001
+01101000000000001000001111011010
+11000000000000001100111100101110
+11000000000000010100111100110000
+01110000000000111101101000000000
+00100000011000000000000000000000
+01101000000000010100001010011110
+00100000001000000111111101101001
+01101000000000010100010110100000
+00100000001110100011101100110001
+01101000000010010100010110100110
+00100000001110100011101100110001
+10011000010001100111111000000000
+11011000010000000000000000011011
+00100000010000000111111110101111
+00011111111000100111001000000000
+11011010001000000000101001000001
+01101000000000010100010110100110
+10011010001000001010001000000000
+10011111001000001111111000000000
+01100000000000010100010110100110
+01101000000010010100010110100000
+10011000010001100000010000000000
+00100100010000101100111101011110
+01110000000000111101101000000010
+11011000101000000100010001100111
+00011010001000100000110000000000
+00100000010000000111111011000000
+11011000001000000000000000000001
+00100000001000000100111101011001
+01101000000000010100010110100000
+00100000001110100011101100110001
+00011111111000001000010000000101
+01100000000010010100010001100111
+11011000010000000000000000010010
+00100000010000000111111110101111
+00011111111000100111001000000000
+01100000000000010100010110100110
+01101000000010010100010110100000
+10011000010001100000010000000000
+00100100010000101100111101011110
+01110000000000111101101000000010
+11011000001000000000000000000010
+01101000000000010100010110100100
+01100000000000010100010001101100
+01101000000000010100010110100010
+11100000101000010000000000000000
+11011000110000000000101001000001
+00100000010000000111111011000000
+01011000000000000100010001100111
+10011000101001100111111000000000
+00011111111001100000010000000000
+01100000000010001100010001100110
+00100000001000000100111110010000
+01101000000000011100010101000100
+00100100001110100100111101100010
+01110000010001010100011000011111
+00100000011000000000000000000000
+00100000010000000100101111010100
+00100100001110100011101100110001
+01110000010001010100010100011111
+00100000011000000000000000000000
+00011000000000000000010000000110
+00100000001000000100111110001001
+00011000000000000000010000000101
+00100000001000000100111110001001
+01111001001000000000000000100101
+01000100100110111100000000100110
+00011000010000001000010000000001
+00100000010000000101000111110101
+00011000110000001000110111111110
+11101000110000010000000000000000
+11011000010000000010100100000010
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011000110000001000110000000001
+00011000110000100010001000000000
+11101000110000001000000000000000
+00100000011000000000000000000000
+01101000000000010100001010011100
+00100000001000000111111101101001
+00011000000000000000010000000110
+00100000001000000100111110001001
+00011000000000000000010000000110
+00100000001000000100111110001001
+00011000000000000000010000000110
+00100000001000000100111110001001
+00011000000000000000010000000110
+00100000001000000100111110001001
+01111001001000000000000000100101
+01000100100111000100000000100111
+01011000000000000100010001100111
+10011000101001100111111000000000
+00011111111001100000010000000000
+00100000001000000100111110001001
+00011000000000000000010000000000
+00011000000000000000001000000001
+01111001001000000000000000100101
+01000100100111001100000000100111
+01100000000010001100010001100110
+00101000001000000000011000000010
+00100100001000001100111110010000
+00011000010000001111111111111100
+01100000000000010100010001100111
+01101000000010001000001101111001
+00100000010000000100101111010000
+01111101001110100000010000000100
+01111001001000000000010000000101
+00011000010000010111111011111100
+10011000001000011111111000000000
+01100000000000001000001101111001
+00011111111000010111111000011111
+01100000000000001100010001100101
+01111001001000000000000000100101
+01000100100111010100000000100111
+01101000000000001100010001100101
+00101000001000000000011000000001
+00100100001000001100111110100000
+01101000000000001100010001100110
+00100000011110100000000000000000
+01101000000000111100010001100110
+01101000000000001000001101100010
+11000100000000100000000000000000
+00100000010000000111000110110110
+00100000001000000111000100001001
+01111001001000000000000000100101
+01000100100111011100000000100111
+00100000010000000100101111010010
+00100100001110100011101100110001
+00100100011110100000000000000000
+01101000000000001000001100000011
+00100000011110100000000000000000
+01101000000000001000001100000010
+00101111111000000000011000000001
+00100000001000001101001100000111
+01101000000000111000001100000011
+01101000000000001000001100000010
+00101111111000000000011000000010
+00100000001000001100111111001011
+01101000000000001000001100000100
+01100000000000001000001110111011
+00011111111000100010011000000000
+01111001001000000000000000100101
+01000100100111100100000000100111
+00011010011000100111111000000000
+11000000000000000101000000011111
+11000000000000001101000000101011
+11000000000000010101000000110011
+11000000000000011101000000111001
+11000000000000100101000001001010
+11000000000000101101000001001111
+11000000000000110101000001010100
+11000000000000111101000001011001
+11000000000001000101000001011010
+11000000000001001101000001011100
+11000000000001010101000001011101
+11000000000001011101000001100010
+11000000000001100101000001100101
+11000000000001101101000001101000
+11000000000010010101000001100011
+01100000000000001100010101010000
+01110000000010011011110100100111
+00100000001000000100101111010110
+01101000000000001000001100000011
+00011111111000010111111000011111
+00100000011110100000000000000000
+01101000000000010000001100000100
+01100000000000010000001110011110
+01101000000000010000001100000110
+11000000000000100101000000001101
+11000000000000110100111111111011
+00100000011000000000000000000000
+01110000010001010110100100000001
+01101000000000001000001110011010
+11000000000010010100111111101010
+11000000000010110100111111101110
+11000000001010010100111111100110
+01110000010001010110100100000000
+00100000011000000000000000000000
+01101000000000001000001100000011
+00011111111000100010010000000000
+11011010001000000000001100000100
+00100000010000000101000101101101
+01101000000000001000001100000011
+01101000000010010100010110011010
+10011000010000001111111000000000
+01100000000000010100010110011010
+01101000000010010100010110011100
+10011000010001100111110000000000
+00100000011000000000000000000000
+00100000010000000100111111011011
+00100100011000101000000000000000
+01110000010001010110100100000000
+00100000011000000000000000000000
+00100000010000000100111111011011
+00100100011000101000000000000000
+01110000010001010110100100000000
+00100000001000000101000100100011
+01101000000010010100010110100000
+01101000000000001000001100000011
+00011111111000100111001000000000
+10011000010000001111111000000000
+01100000000000010100010110100000
+11011111111000000000101001000001
+10011000010000001000101000000000
+11011000110000000000001100000100
+00100000010000000111111011000000
+00100000010000000100111111011011
+00100100011000101000000000000000
+01110000010001010110100100000000
+00100000001000000101000101101001
+01111001001000000000000000100101
+01000100100111101100000000100111
+11101000110000001000000000000000
+11000000000000001101000001101001
+11000000000000010101000010001011
+11000000000000011101000010010000
+11000000000000100101000010100000
+11000000000000101101000010101000
+11000000000000110101000011010101
+11000000000000111101000011010111
+11000000000001000101000011011000
+11000000000001001101000011100000
+11000000000001010101000011100011
+11000000000001011101000011100100
+11000000000001100101000011001001
+11000000000001101101000011010000
+01110000000010011011110101000101
+00100000001000000100101111010110
+01111001001000000000000000100101
+01000100100111110100000000100111
+11101000110000011000000000000000
+01100000000000011000001110011010
+11000000000000010101000011101000
+11000000000000011101000011100101
+11000000000000100101000011101011
+11000000000000110101000011101110
+11000000000001000101000011111000
+11000000000001010101000100001100
+11000000000001100101000100010000
+11000000000001110101000100010100
+11000000000010000101000100011010
+11000000000010010101000100100000
+11000000000010110101000101000010
+11000000000011000101000101101011
+11000000001010010101000100011110
+00100000011000000000000000000000
+11101000110001001000000000000000
+01100000000001001100010001011011
+11101000110000010000000000000000
+01100000000000010000001110000010
+01101000000000001000001101100010
+01111001001000000111111000000101
+01100000000000001000001101100010
+01101000000000001100000100110010
+11000001100001001000000000000000
+01110000010000010011000100000000
+01110000010010001100011100011110
+00100000011000000000000000000000
+11101000110000101000000000000000
+01100000000000101100010001010110
+11101000110000010000000000000000
+01100000000000010000001110000010
+01101000000000001000001101100010
+01111001001000000111111000000110
+01100000000000001000001101100010
+00100000011000000000000000000000
+01101000000000001100000100110010
+11000000100001001101000000110110
+01110000010010001011101100000001
+01011000000000000000000000010100
+01100000000000010000001110010000
+00100000011000000000000000000000
+11101000110001000000000000000000
+01100000000001000100010101110011
+11101000110000010000000000000000
+01100000000000010100010101110001
+11101000110001000000000000000000
+01100000000001000100010101010001
+11101000110000100000000000000000
+01100000000000100100010010011010
+01110000000010011011110100100100
+00100000010000000100101111010110
+01110000010001010110101100000001
+01101000000000001100010101101010
+11000001000000010000000000000000
+01101000000000001100000100110010
+11000000000001001110010000011000
+11000001100001010000000000000000
+00100000001000000110010000001100
+11101000110001000000000000000000
+01100000000001000100010101011001
+11101000110000100000000000000000
+01100000000000100100010010011110
+00100000001000000111000011001000
+01101000000000001000001101100010
+01111001001000000111111000000100
+01100000000000001000001101100010
+01110000000010011011110100100110
+00100000001000000100101111010110
+00100000011101001000000000000000
+01110000000010011011110100100110
+00100000010000000100101111010110
+01110000000010011011110100110010
+00100000001000000111110110000110
+00100000011000000000000000000000
+01110000000010011011110100101001
+00100000001000000100101111010110
+00100000011000000000000000000000
+01110000010001010110101100000010
+01110000000010011011110100101011
+00100000010000000100101111010110
+01110000000010011011110100110011
+00100000001000000111110110000110
+00100000011000000000000000000000
+01110000000010011011110100110011
+00100000001000000100101111010110
+00100000011101001000000000000000
+01110000000010011011110100101100
+00100000001000000100101111010110
+00100000011000000000000000000000
+01100000000000001100010011010101
+11101000110000110000000000000000
+11100000101000110000000000000000
+01110000000010011011110101000010
+00100000010000000100101111010110
+01101000000000001100000100110010
+11000000000001001101000001111011
+00100000010000000101000010000110
+01110000010001010110101000000001
+01101000000000001100010011010110
+11000000000000000101000001111000
+11000000000000001101000001111000
+11000000000000011101000001111000
+01101000000000001100010101101100
+11000000000000010101000001111101
+11011111111000000000000000000000
+01100000000000100100010101101101
+00100000011000000000000000000000
+01110000010010001011101000000001
+00100000011000000000000000000000
+11011010001000000100010101101101
+00011010001000100000101000000000
+11011111001000000000000000000011
+00100000010000000101100100011000
+01101000000000010100010101101111
+00011111111000010111111000000111
+01100000000000010100010101101111
+01110000000010011011110100110100
+00100000001000000111110110000110
+01101000000000001100010011011000
+11000011100000011000000000000000
+01101000000000001100010101101100
+11000100000000111000000000000000
+00100000001000000011111001101011
+01100000000000001100010011011100
+11101000110000110000000000000000
+11100000101000110000000000000000
+01110000000010011011110101000011
+00100000001000000100101111010110
+00011000110000100010001000000000
+01101000000000001100010101101100
+11000000010000011101000010011010
+00011010001000100000110000000000
+11011000101000000100010010110011
+00100000010000000111111010000111
+01110000000010011011110101000100
+00100000001101001100101111010110
+01110000000010011011110101000011
+00100000001000000100101111010110
+00011010001000100000110000000000
+11011000101000000100010010110011
+00100000010000000111111010000111
+01110000010001010110010000000010
+01110000010001010110011000001000
+00100000011000000000000000000000
+00011000110000100010001000000000
+01101000000000001100010101100011
+11000000000000001101000010101011
+00011010001000100000110000000000
+00100000010000000111000010111010
+00100000001000101101000011000000
+01110000000010011011110101000101
+00100000010000000100101111010110
+01110000010001010110101000000000
+01110000000010011011110100110000
+00100000001000000111110110000110
+11011000101000000000001101010010
+00011010001000100000110000000000
+00100000010000000111111010000111
+01101000000000001100010101101100
+11000000010000011101000010110110
+00100000010000000110111001101110
+01110000000010011011110101000100
+00100000010000000100101111010110
+01101000000000001100010101101100
+11000000010000010101110101100000
+00100000011000000000000000000000
+00100000010000000110111011011100
+11011000101000000000101000010001
+00100000010000000110111100100100
+11011010001000000000101000010001
+11011010010000000100010010110011
+11011111001000000000000000010000
+00100000010000000111111101010101
+00100100001000101101001011011000
+01110000000010011011110101000100
+00100000001000000100101111010110
+00100000010000000111000010110101
+01110000000010011011110100110001
+00100000010000000111110110000110
+01110000010001001011001000000001
+01110000010001010110101000000010
+01110000000010011011110100100011
+00100000001101001100101111010110
+01110000000010011011110101000100
+00100000001000000100101111010110
+01101000000000001000001100000011
+00011111111000001111111111111011
+01100000000000001000001111011011
+00011111111000100111001000000000
+11011000101000000000100011100010
+00011000110000001000110000000101
+00100000001000000111111011000000
+11011000101000000000100110010010
+00100000010000000111111010000111
+01110000010001010110011000000110
+01110000010001010110010000000010
+00100000011000000000000000000000
+11011000101000000000001101000010
+00100000001000000111111010000111
+00100000011000000000000000000000
+11011000101000000100010101111011
+00100000010000000111111010000111
+01101000000000001100010100101011
+11000001000000000000000000000000
+01101000000000001000001101110111
+00101111111000011000000011000000
+00100000011000001000000000000000
+00100000001000000011111001111011
+01110000010001010110101100000011
+01110000010001010110101000000011
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000010000001100001001
+01100000000000010100010101001110
+00100000011000000000000000000000
+00100000010000000101000011100101
+01110000000010011011110100000011
+00100000001000000100101111010110
+00100000010000000101000011111100
+01110000000010011011110100000101
+00100000001000000100101111010110
+00100000010000000101000011111100
+11101000110000010000000000000000
+01100000000000010100010011111011
+00100000010000000111111001101101
+11011000101000000100010011100111
+01101000000000010000001110011110
+00011111111000001111111111111001
+00100000010000000101000100000101
+01110000000010011011110100000111
+00100000001000000100101111010110
+00100000010000000101000011111100
+00100000010000000101000100001001
+01110000000010011011110100001001
+00100000001000000100101111010110
+00011111111011001111111000000000
+01100000000000010100010011100011
+11101000110000010000000000000000
+01100000000000010100010011100101
+00100000011000000000000000000000
+00100000010000000111111001101101
+11011000101000000100010011100111
+01101000000000010000001110011110
+00011111111000001111111111111011
+11100000101000001000000000000000
+00011111111000100111001000000000
+00100000010000000111111001100111
+00100000001000000111111011000000
+00100000010000000111111001101101
+11011000101000000100010011111010
+00100000001000000101000100000011
+01101000000000010000001100001001
+01100000000000010000001110011011
+01110000000010011011110100001011
+00100000001000000100101111010110
+11101000110000010000000000000000
+01100000000000010100010011100111
+01110000000010011011110100001101
+00100000001000000100101111010110
+01101000000000001000001100000011
+00011111111000001111111111111011
+00011111111000110111111000000000
+01100000000000001100010001100100
+01110000000010011011110100001111
+00100000001000000100101111010110
+00100000010000000101000011111100
+00100000010000000101000100000001
+01110000000010011011110100010001
+00100000001000000100101111010110
+00100000010000000101000100101111
+00100000001000000101000100100101
+00100000010000000101000100101111
+00100000010000000101000100100101
+00100100011000101000000000000000
+01110000000010011011110100010011
+00100000001000000100101111010110
+01101000000000001000001100000011
+00011111111000001111111111111100
+01100000000000010100010110011010
+00011111111000001111111111111101
+11101000110010010000000000000000
+01100000000010010100010110011100
+01100000000010010100010110011110
+00011000010000001000010111111101
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000001000001100000011
+00011111111000001111111111111001
+00011111111000100111001000000000
+00011111001000100010010000000000
+01101000000000001100010110101000
+11000011000000001101000101000000
+01101000000010010000001110011011
+00100000010000000101000111110101
+00100000011110100000000000000000
+11101000110000001000000000000000
+10011111001001100111110000000000
+00100000001000010101000100111100
+00011111111000100111001000000000
+00011000110000100000101000000000
+00011111001000100010010000000000
+11011000110000000000001100001011
+00100000010000000111111011000000
+11011010001000000000001100001011
+00100000001000000101000101101101
+01101000000000001000001100000011
+00011111111000001111111111111100
+01100000000000010100010110011010
+11101000110010010000000000000000
+01100000000010010100010110011100
+00011000010000001000010111111110
+01100000000010010100010110011110
+01101000000000001000001100000011
+00011111111000001111111111110111
+01100000000000010100010110100000
+00011111111000100111001000000000
+00011111001000100010010000000000
+01101000000000001100010110101000
+11000011000000001101000101011011
+01101000000010010000001110011011
+00100000010000000101000111110101
+00100000001110100101000101101001
+11101000110000001000000000000000
+10011111001001100111110000000000
+00100000001000010101000101010111
+00011111111000100111001000000000
+00011000110000100000101000000000
+00011111001000100010010000000000
+11011000110000000000001100001101
+00100000010000000111111011000000
+00011010010000100111001000000000
+11011000101000000000101001000001
+11011000110000000000001100001101
+00100000010000000111111011000000
+11011010001000000000001100001101
+01101000000000010000001100001011
+01100000000000010100010110100010
+01101000000010010000001110011011
+01100000000010010100010110100100
+00100000010000000101000101101101
+01101000000000010100010110011010
+01101000000010010100010110011100
+10011000010001100111110000000000
+00100100011000101000000000000000
+01110000000010011011110100010111
+00100000001000000100101111010110
+01110000000010011011110100011001
+00100000001000000100101111010110
+01101000000000010100001010011010
+00100000011110100000000000000000
+10011000000000000111101000000000
+01101000000010100000001101111110
+00100000010000000011101100011110
+10011000010001100001011000000000
+00011001011000100111111000000000
+01101000000010010000001110010000
+00011000010100100000010000000000
+00011000010000111000010000000000
+10011000010001100111111000000000
+00100000011000000000000000000000
+00100000010000000011101100011110
+01100000000000100000001101111110
+00100000011000000000000000000000
+01110000000000000001011000100100
+01111001001000000000000000100101
+01000100100111111100000000100111
+01101000000000001100001111111111
+00100000011110100000000000000000
+11011000111000000000000000000001
+00100000010000000111111011100010
+00100100011110100000000000000000
+01111000010101001111110000000000
+01111000001010000111110000000000
+00100000010000000100101100011110
+00100000010000000100100111010100
+00100000010000000100101010001010
+00100100001101101101000110010011
+01101000000000001000000000000011
+00011111111000001111111000000001
+01100000000000001000000000000011
+01111001001000000000000000100101
+01000100101000000100000000101000
+01101000000000001000001100000010
+00011111111000010111111000001111
+11000000000000011100101011000101
+11000000000000101101000110101111
+00100000000000000010011100010000
+01101000000000001000000000010110
+11000000100100111101000101111101
+11011000111000000000000000000001
+01101000000000010100010100011110
+00100000001000000111111011010100
+01111001001000000000000000100101
+01000100101000001100000000101000
+01101000000000001000001110011001
+00100000010000000100100110101101
+01101000000000010000001101100100
+10011000010011111111111000000000
+11011000010000000000000101110111
+10011000010011111111111000000000
+11011000010000011000011010100000
+10011000010001101111110000000000
+01101000000000001000001110001101
+11011000010000000100111000100000
+10011000010011111111111000000000
+01100000000000100100010110010110
+01111001001000000000000000100101
+01000100101000010100000000101000
+01101000000000010100000101100001
+00100000010000000111111101010011
+00011000000001111000010000000000
+10011000010000001111111000000000
+01100000000000010000001101110000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101000011100000000101000
+01101000000000110000001100001010
+01101000000010110100010100111110
+10011000010001100111110000000000
+00100100011000101000000000000000
+00100000010000000100101111001001
+00011010001000100111111000000000
+01100000000000001100010100101011
+01101000000000111000001100010111
+01100000000000111000000100000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+01101000000000110000001100000100
+01100000000000110000001101110010
+01111001001000000000000000100101
+01000100101000100100000000101000
+00011000110000001000110000000110
+11101000110001000000000000000000
+01100000000001000000001110000110
+11101000110010010000000000000000
+00011000010010111000010000000000
+11101000110000010000000000000000
+00011111111010111111111000000000
+01100000000000010000001101100100
+01100000000000100000001101100110
+10011000010001100111111000000000
+00011111111000001101000111111110
+11101000110001001000000000000000
+01100000000001001000001110001110
+01111001001000000000000000100101
+01000100101000101100000000101000
+11101000110000001000000000000000
+00011111111100011000010000000000
+00011000010000110000010000000000
+01100000000010001000001110011001
+00011111111000010111111000011111
+01100000000000001000001101111011
+00100000010000000101000110011001
+00100000010000000100100111101111
+00100000010000000100100100000010
+00100000010000000011001001111010
+00100100011000101000000000000000
+01111001001000000000000000100101
+01000100101000110100000000101000
+00100000010000000011100011010001
+01110000000010011011110100010100
+00100000010000000111110110000110
+00100000001000000011001001100000
+01111001001000000000000000100101
+01000100101000111100000000101000
+01101000000000010100010011100011
+10011000000000000010010000000000
+01101000000000010100010011100101
+10011000000000000010011000000000
+01101000000000010100011000110111
+10011000000000000000110000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+11101000110000010000000000000000
+00100000011110100000000000000000
+10011010010001100111110000000000
+00100100011000010000000000000000
+10011010011001100111110000000000
+00100000011000101000000000000000
+00100000001000010101000111110011
+00011000000000000111110000000001
+00100000011000000000000000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+00100000010000000101000111111000
+00100000001000101101001000000101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001000100000000101001
+01101000000000010100011000110111
+10011000000000000000110000000000
+11101000110000010000000000000000
+00100000011110100000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101000111111100
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001001100000000101001
+01101000000000010100011000110111
+10011000000000000000110000000000
+11101000110000010000000000000000
+00100000011110100000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00011000110000001000110111111110
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101001000001100
+01101000000000010000001111000001
+00011111111000100000110000000000
+00100000001000000101001000011011
+01111001001000000000000000100101
+01000100101001010100000000101001
+01101000000000010100011000110111
+10011000000000000000110000000000
+00011000010000100010001000000000
+11101000110000010000000000000000
+00100000001110100101001000101000
+10011010001001100111110000000000
+00100000001000101101001000101010
+11101000110000001000000000000000
+10011000110000001000110000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101001000011111
+01011000000000000000000000000001
+00100000011000000000000000000000
+11101000110000001000000000000000
+01100000000000001000001111000111
+00011111111000100111001000000000
+11011000101000000000001111001000
+00100000010000000111111011000000
+11101000110000001000000000000000
+01100000000000001000001111011000
+00100000010000000111111001101101
+01011000000000000000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001011100000000101001
+00100000010000000101001000111000
+00100000001000000101001001001010
+11011000010000000010101000000000
+00100000010000000101001000001000
+00100000011110100000000000000000
+11101000110000001000000000000000
+00011000110000100000101000000000
+01101000000010001100010001000000
+00011000010000100111001000000000
+10011000010001100111110000000000
+00100100001000010101001001000111
+10011000010001100000010000000000
+11011000110000000100010001000001
+00100000010000000111111011001101
+00011000010000100111001000000000
+00100100010000101101001010000011
+00100000011000000000000000000000
+00011111111000100111001000000000
+11011000110000000100010001000001
+00100000001000000111111011000000
+11011010011000000100010000100000
+11011010001000000100010000000001
+00100000010000000101001001010111
+01011000000000000000000000000000
+01111001001101000111111000000000
+01100000000000001000100110111110
+11011010011000000100010001000000
+11011010001000000100010000100001
+00100000010000000101001001010111
+00100000011101000000000000000000
+01101000000000001000100110111110
+00100000001110100011101100110001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001100100000000101001
+00100000010000000110010011000000
+00100000010000000111111010100101
+11011010010000000000000000000000
+11011000101000000000100111100010
+00100000010000000101001001110010
+01101000000000001100010001000000
+00011111111000001000010000000001
+10011010010000001010001000000000
+00011010001000001010001000000010
+00011010001001100111110000011111
+00100100001000010101001001110000
+11100000101010001000000000000000
+11011000010000000000000000001001
+11100000101010001000000000000000
+10011000000000000111001000000000
+00100000010000000111111011000000
+00011010001000100010010000000000
+00011010010000100111111000000000
+01100000000000001000100111100001
+11011000110000000000100111100001
+01011111111111111111111111100000
+10011010011000001000101000000000
+00100000001000000111111010000101
+00100000010000000011000111010100
+00100000001000000101001001101010
+11101010001000001000000000000000
+00100000011110100000000000000000
+00011111111000001111111000000001
+11101000110010001000000000000000
+00011000010001100111110000001001
+00100000001000101101001010000001
+10011010010000001010010000000000
+00011010001000100000110000000000
+10011000000000000111001000000000
+00100000010000000111111011000000
+00011000110000100010001000000000
+00011010001000100111111000000000
+10011010011001100111110000000000
+00100000011000010000000000000000
+00100000001000000101001001110010
+10011010001000001010001000000000
+00100000001000000101001001111101
+01011000000000000000000000100000
+11100000101000001000000000000000
+11000010000000000101001010000011
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001101100000000101001
+01111000010101011111110000000000
+00100000001101110101001010001100
+00100100001101101101001010011010
+00100000010000000011110010110111
+01101000000000010100000101100001
+01100000000000010000001101110000
+01101000000000001000001100000010
+00101111111000000000011000000001
+00100100001000001011110011001011
+01101000000000001100010001100101
+00101111111000000000011000000001
+00100100001000001011110011001011
+01101000000000010100001010100010
+00100000010000000111111101101001
+01101000000000001000001101100010
+11000010100000101011110011001011
+00100000001000000011110010110000
+01101000000010010100000101100001
+00011000010000110000010000000000
+01101000000000010000001101110000
+10011000010000001111111000000000
+01100000000000010000001101110000
+00100000001000000011110011000011
+01111001001000000000000000100101
+01000100101001110100000000101001
+01110000010001011001010100000000
+01101000000010010100010011111000
+00100000010000000100111101101010
+00011010001000100000101000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000001100010101100011
+11000001000000000000000000000000
+01101000000000001100010101100100
+11000001100000010000000000000000
+01111001001000000000000000100101
+01000100101010000100000000101010
+01110000010001010110010000000000
+01101000000000001100010101100110
+11000000000000001101001011101000
+11000000000000010101001011110000
+11000000000000011101001011100001
+11000000000000110101001011001010
+11000000000000111101001011000010
+11000000000001000101001010111000
+00100000011000000000000000000000
+01101000000000001100011011101011
+00011111111000100000111000000000
+00011111111000001111111000000001
+01100000000000001100011011101011
+01101000000000100100010101101101
+10101111111011111111111111111111
+01011000000000000000000010000000
+01111001001000001111111000000000
+01100000000000001100011011101100
+00100000001000000101001011100100
+01101000000000001100010101100111
+01110000010001010110011100000000
+11000000000000001101001011000111
+01110000010001010110010000000010
+00100000011000000000000000000000
+01110000010001010110101000000010
+01110000000010011011110101001101
+00100000001000000100101111010110
+01101000000000001000100011011101
+11000000000000011101001011001110
+01110000010001010110010000000010
+00100000011000000000000000000000
+00100000010000000110111010101110
+01101000000000001100010101101100
+11000000010000011101001011011001
+00100000010000000101000001111000
+00100000010000000110111010011010
+11011010001000000000101000010001
+11011010010000000000100110010010
+11011111001000000000000000010000
+00100000010000000111111101010101
+00100000001000101101001011011010
+00100000001000000101000010100110
+00100000001000000101001011010010
+01110000010001001011001000000001
+01101000000000001100010101101100
+11000000010000001101001011000111
+11000000010000011101001011000111
+01110000010001010110010000000010
+01110000010001010110011000000111
+00100000011000000000000000000000
+01101000000000001100010101101100
+11000000010000011101001011100110
+01110000010001101110110000000000
+01110000000010011011110101000011
+00100000001000000100101111010110
+01110000010001101110101100000000
+00100000001000000101000001111101
+01110000010001010110010000000010
+01101000000000001100010101101000
+11000000000000011101001011101100
+00100000011000000000000000000000
+01110000000010001101110100000000
+00100000010000000111101010111001
+01110000010001010110011000000010
+00100000011000000000000000000000
+00100000010000000100101111010000
+00100000001110100101001011110100
+01110000010001010110010000000010
+00100000011000000000000000000000
+01110000000010011011110101001100
+00100000010000000100101111010110
+01110000000010011011110101001100
+00100000010000000100101111010110
+01110000000010011011110101001100
+00100000001000000100101111010110
+11011111111000000000100011100010
+01101000000010001000001111011011
+10011000010000001000101000000000
+01101000000000001000001100000011
+00011111111000100111001000000000
+10011000010000001000010000000000
+00100000010000000111111011000000
+01100000000010001000001111011011
+00011000010000100111111000000000
+11000001101000000000000000000000
+01110000010001010110010000000010
+01110000010001010110011000000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101010001100000000101010
+01101000000000001000001111011011
+11000000100000000101001011111010
+00100000001000000100111111010100
+00100000011101011000000000000000
+01111001001000000000000000100101
+01000100101010010100000000101010
+01011000000000000000000000000000
+01100000000000001000000001001000
+01100000000000001000000001010101
+01100000000000001000000001111000
+01100000000000001000000001111100
+01100000000000001100000111111000
+01100000000000001000001111111101
+01100000000000001000000101101100
+01100000000000001000100011011001
+01110000010001011111010000000000
+01110000000000100100110100000000
+01110000000000111111111000000000
+01110000000010001101100100000000
+01110000000010001101100000000000
+01110000000000111111011100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101010011100000000101010
+00100000010101001101100100001010
+00100100010101001101100100001110
+00100000010000000101100011000101
+00100100011110100000000000000000
+01101000000000001000000001001100
+11000100000000110000000000000000
+01111001001111111111111000000110
+01111001001111111000000000000001
+01100000000000001000000001001100
+01101000000000001000010001110101
+01101000000010001000000001001100
+00101111111011111111111000000000
+01111001001000001000010000000001
+01100000000010001000000001001100
+00011000010000010000010000000010
+01100000000010001000000001111111
+01101000000010001000000001001100
+00011111111000110111111000000000
+01100000000000001000000001111101
+01111001001000000000000000100101
+01000100101010100100000000101010
+01101000000000001000000001111101
+11000000001111111101001101111111
+11000000000000011101001111001011
+11000000000000100101001111011101
+11000000000111100101001101110010
+11000000000000101101001101101110
+11000000000001111101010110111111
+11000000000010000101010001000000
+11000000000100011101010001011110
+11000000000111001101010111011000
+11000000000111000101010111010011
+11000000000110001101010001000011
+11000000000110111101010011001100
+11000000000100111101010011001000
+11000000000110011101010011000101
+11000000000100101101010011001010
+11000000000100110101010001011010
+11000000000000111101010001010010
+11000000000101101101010001001001
+11000000000101110101010001001010
+11000000000000001101010011000001
+11000000000000010101010010101100
+11000000000101000101010111001010
+11000000000001001101010010100010
+11000000000001011101010001111011
+11000000000001000101010001011111
+11000000000001100101010010000110
+11000000000011111101010001010110
+11000000000100000101010001011000
+11000000000100001101010011100110
+11000000000100010101010011100110
+11000000000110101101010011100111
+11000000000110110101010011101000
+11000000000100100101010011100110
+11000000000110100101010011101001
+11000000000010111101010011110010
+11000000000010001101010100001001
+11000000000010010101010100001101
+11000000000010011101010100001111
+11000000000001101101010100100001
+11000000000001110101010100100001
+11000000000101111101010011000110
+11000000000110000101010100100001
+11000000000001010101010100100001
+11000000000011000101010100100010
+11000000000110010101010100100001
+11000000000111101101010100100111
+11000000000111110101010101101000
+11000000000111111101010101100010
+11000000001000000101010110001111
+11000000001000001101010110100001
+11000000000000110101010110111110
+11000000000111010101001101110000
+01110000000000000111111000011001
+01110000000000000111110000000100
+00100000011000000000000000000000
+01110000000000000111110000000110
+00100000011000000000000000000000
+01110000000000000111110000111011
+00100000011000000000000000000000
+01101000000000100000010001110110
+00011111111000111111111000000000
+01100000000000100100000101110010
+01101000000000001000010001111010
+01100000000000001100000101111001
+01101000000000101000010001111011
+01100000000000101100000110000111
+01101000000000101000010010000000
+11100000101000101000000000000000
+01101000000000001000000000110001
+01111001001000000111111000000011
+01100000000000001000000000110001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101010101100000000101010
+01101000000000001000010001110110
+01111001001000000111111000000111
+01100000000000001000000001111101
+11000000010000001101001110100010
+11000000010000010101001110100111
+11000000010010101101010011001101
+11000000010010110101010011100110
+11000000010001011101010011011011
+11000000010000011101001110111111
+11000000010000100101001111000001
+11000000010010000101001110010100
+11000000010010111101001110111000
+11000000010011000101001110111101
+11000000010011001101001110010111
+11000000010011010101001110011010
+11000001010000100000000000000000
+01110000000000000111110010000010
+01110000000000000111111000011001
+00100000011000000000000000000000
+01110000000000000111110010000010
+01110000000000000111111000101110
+00100000011000000000000000000000
+00100000010000000101001110011100
+01110000000000000111110010011010
+00100000011000000000000000000000
+00100000010000000101001110011100
+00100000001000000101001110100000
+11011000101000000100011011100110
+01101000000000011000010001110111
+11100000101000011000000000000000
+00100000011000000000000000000000
+00100000001000001111011011110011
+00100000011000000000000000000000
+01101000000000001000010001111000
+01111001001000000111111000000111
+01100000000000001000001111101111
+11000000010001011101001110101100
+00100000011000000000000000000000
+01101000000000001000010001111000
+01111001001000000111111000000111
+01100000000000001000001111101111
+11000000010001011101001110110000
+00100000011000000000000000000000
+01101000000000001100000111111010
+01101000000010001000000001001100
+01111101001110100000010000000101
+01100000000010001000000001001100
+01101000000000001000000000110000
+11000100000000101000000000000000
+01111001001111111111111000000101
+01100000000000001000000000110000
+01101000000000001000001111111101
+00100100011110100000000000000000
+01110000000000000111110000110001
+00100000011000000000000000000000
+00100100001101001101001110111011
+01110000000000000111110000010010
+00100000001000000101100011110110
+01110000000000000111110010010111
+00100000011000000000000000000000
+00100000010000000101100011110110
+00100000001000000101011000010101
+01110000000000000111110010000100
+00100000011000000000000000000000
+01101000000010001000010001111001
+00011000010000010000010000000001
+01100000000010001000001111110110
+01101000000000001100001001110001
+11000000101010001101001111000111
+01110000010000100111000100000000
+01101000000000001000000001010101
+11000001100010101000000000000000
+01110000000000000101010100000100
+00100000001000000101100100100110
+01111001001000000000000000100101
+01000100101010110100000000101010
+01101000000000001000010001110110
+01100000000000001000001111101111
+11000000000110011101001111110100
+11000000000001000101010000000011
+11000000000001111101010000001010
+11000000000010000101010000010000
+11000000000010001101010000010001
+11000000000010010101010000011001
+11000000000011000101010000101111
+11000000000010111101010000110010
+11000000000010011101001111101011
+11000000000111101101010100110101
+11000000000111110101010110000001
+11000000001000000101010100110111
+11000000001000001101010101010100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101010111100000000101010
+01101000000000001000010001110110
+01100000000000001000001111101111
+11000000000000001101010000100110
+11000000000110011101001111111110
+11000000000001011101010000011010
+11000000000001000101010000011101
+11000000000010011101001111101110
+11000000001000000101010000100111
+11000000001000001101010000101010
+11000000000011000101010000101101
+11000000000010111101010000111110
+00100000011000000000000000000000
+01110000000010011011110100100000
+00100000010000000111110110000110
+00100000001000000011001000001010
+01110000000010011011110100011001
+00100000010000000111110110000110
+01110000010001011111010000000010
+01011000000000000000000001010000
+11011000111000000000000000001010
+00100000001000000111111011010100
+01101000000000001000001111110111
+01111001001000000111111000000000
+01100000000000001000001111110111
+01110000000010011011110100000001
+00100000010000000111110110000110
+01110000000000000111110010001011
+01101000000000001000000001010101
+11000000100000101101001100011110
+01110000000000000101010100000110
+00100000011000000000000000000000
+01110000000000111111000000001011
+01110000000000000111110000000111
+01110000000000000101010100000000
+00100000001000001101001100011110
+00100000011000000000000000000000
+01101000000000001100001001011101
+00100100011110100000000000000000
+00100000010000000011010010101001
+00100000010000000101011000010011
+00100000011101001000000000000000
+01111001001000000000000000100001
+00100000011000000000000000000000
+00100100011101001000000000000000
+01110000000000000111110000010000
+01101000000000001000000001001100
+11000100000000010000000000000000
+01110000000000000111110000010010
+00100000011000000000000000000000
+00100000001000000101011000010101
+00100000010000000101011001110010
+01101000000000001000000000110000
+11000011100000100000000000000000
+01110000000000000111110000110001
+01101000000000001000000001010101
+11000001100001010000000000000000
+01110000000000000101010100001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000000000111110000000111
+01110000000000111111000000010011
+00100000011000000000000000000000
+01101000000000001000010001110111
+11000000000000110101010000100011
+11000001100011000000000000000000
+01110000000000111111000000011000
+01110000000000000111110000000111
+00100000011000000000000000000000
+01110000000000111111000000000110
+01110000000000000111110000000111
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000010001101001000000000
+01110000000000000111110000000111
+00100000001000000101001100011110
+01110000000010001101001000000000
+01110000000000000111110000000111
+00100000001000000101001100011110
+01110000000010011011110100100100
+00100000001000000111110110000110
+01110000000010011011110100100011
+00100000010000000111110110000110
+00100000001000000011011101101010
+01110000000010011011110100100010
+00100000010000000111110110000110
+01011000000000000000000000000000
+01100000000000010000000001110101
+01101000000000010100001010000100
+00011111111000111111111000000000
+01100000000000010000000000110010
+01101000000000001100001010000110
+01100000000000001000000001110011
+01101000000000001100001010001000
+01100000000000001000000001110100
+00100000001000000011011101000110
+01110000000010011011110100100001
+00100000001000000111110110000110
+01101000000010001000010001110110
+01100000000010001000000001010100
+00100000001000000101010001010100
+01101000000000001000001111110111
+01111001001000000111111000000010
+01100000000000001000001111110111
+11000011100000011000000000000000
+01110000000000000111110000110001
+00100000001000000101001100011110
+00100000011000000000000000000000
+01101000000000001100000101110000
+01101000000010001000010001110110
+10011000010001100111110000000000
+00100000001000010101010001010100
+01110000000000000111110000000100
+01110000000000000111111000011111
+01110000000000000111110100101110
+00100000011000000000000000000000
+00100000010000000101011101100100
+00100000001000000101010001010100
+01110000000000000111110000000011
+00100000011000000000000000000000
+01110000000000000111110000100001
+00100000011000000000000000000000
+01110000000000000111110000100010
+00100000011000000000000000000000
+01101000000000001000000001010101
+11000001000010011000000000000000
+01110000000000000101010100000010
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000010000000101011000010000
+01110000000000111111101000000001
+01110000000010011011110100001010
+00100000010000000111110110000110
+00100000010000000101100011111110
+00100100001000001101011000011000
+00100100001101001101010001101010
+01110000000000000111110000000100
+01110000000000000111110100001000
+01110000000000000111111000100011
+00100000011000000000000000000000
+01101000000000001000000001001011
+01111001001000000111111000000010
+01100000000000001000000001001011
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111101001110100000010000000001
+01100000000010001000000001001100
+00100000011000000000000000000000
+01101000000000001000000001111111
+00011111111000110111111000000000
+00011111111000010111111000000001
+00100000011000000000000000000000
+01101000000000001100000100110010
+11000001100001010000000000000000
+01101000000000001000100011011001
+00100000010110100110010000000010
+00100000011000000000000000000000
+00100000010000000101010001110110
+00100000010000000101010001110010
+01100000000000001000001111111011
+00100000010000000101011000010000
+01110000000000000111110000001100
+01101000000000001100001001011101
+00100100011110100000000000000000
+01101000000000001000000000110000
+11000011100000110000000000000000
+01110000000000000111111000000110
+00100000001000000101001101101100
+11011010001000000000000001000000
+00100000010000000110111110101101
+01101000000000100000010001110110
+01101000000010100000010010110110
+10011000010001100111110000000000
+00100000001000101101010010001111
+01110000000000000111110000000111
+01110000000000111111000000000101
+00100000011000000000000000000000
+00100000010000000101010010010011
+01101000000000001100011011100010
+00100000001110100101010101010101
+00100000011000000000000000000000
+00100000010000000111000010101011
+00100000010000000011000111011010
+01101000000000001000000001001011
+00101111111011111111111000000001
+01111001001111111111111000000001
+01100000000000001000000001001011
+01101000000000001000000001010101
+11000000000011001101010010011101
+11000000000011000101010010011101
+00100000011000000000000000000000
+01101000000000001000100011011001
+11000001100000000000000000000000
+01101000000000001000000001001100
+11000011100000010000000000000000
+00100000001000000101100110111101
+11011010001000000000010001110110
+11011010010000000000010010100110
+11011000101000000000010010000110
+00100000010000000111000001110111
+11011010001000000000000001000000
+00100000010000000101100100011100
+01110000000000000111110000001011
+01101000000000001000000000110000
+11000011000000110101011000010011
+00100000011000000000000000000000
+01101000000000010000000101011110
+00011111111000001111001111111101
+01101000000010001000010001110110
+01011000000000000000000100000000
+10011000010000001000101000000000
+11011000110000000000010001111000
+00100000010000000111111011001101
+01101000000010001000000001010011
+01101000000000001000010001110111
+10011000010001100111111000000000
+00011111111001100111110000001110
+00100000001000010101010010111100
+00011000010000001111111000001110
+01100000000000001000000001010011
+01110000000000000111110000000001
+00100000011000000000000000000000
+01101000000000001000000001001100
+01111001001000000111111000000011
+01100000000000001000000001001100
+11000010100000100101011000011101
+00100000011000000000000000000000
+01101000000000001000010001110110
+01100000000000001000000001111101
+01110000000000000111110000000010
+00100000011000000000000000000000
+00100000001000000101010001010100
+01110000000000000111110000110000
+00100000011000000000000000000000
+01110000000000000111110000101000
+00100000011000000000000000000000
+01110000000000000111110000100110
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000010000000000110010
+10011000000000000000010000000000
+01101000000000001000010001110111
+01100000000000001000000010010100
+10011000010011111000010000000000
+01101000000000010000010001111000
+00011111111000111111111000000000
+01100000000000010000000010010101
+01101000000000100000010001111010
+00011111111000111111111000000000
+01100000000000100000000010010000
+00011000010000100111111000000000
+01100000000000010000000010010111
+00100000011000000000000000000000
+01101000000010001100000111111010
+01101000000000001000010001110111
+10011000010000101111110000000000
+00100100001000101101001110010001
+00101111111011111111111000000000
+01101000000000001000000001001100
+01111001001000001111111000000101
+01100000000000001000000001001100
+01110000000000000111110010000001
+01110000000000000111110110001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000001000000101010001010100
+00100000001000000101010001010100
+01101000000000010000010001110110
+01100000000000010000000101110000
+00100000011000000000000000000000
+01101000000000010000010001111001
+01101000000010001100001000010010
+10011000010011111111111000000000
+11011000010000000000011001000000
+10011000010001100111110000000000
+00100000011000000000000000000000
+00100000010000000101010011101100
+00100000001000010101010100000111
+01101000000000001000000000110000
+11000010100000001101010100000111
+01101000000000010000010001110111
+00011111111000111111111000000000
+01100000000000010000000001110101
+01101000000000010000010001111001
+00011111111000111111111000000000
+01100000000000010000000000110010
+01101000000000010000010001111011
+01100000000000001000000001110011
+10011000000000000000010000000000
+01101000000000010000010001111101
+01100000000000001000000001110100
+10011000010001100111110000000000
+00100100001000010101010100000100
+01100000000000001000000001110011
+01110000000000000111110000000011
+01110000000000000111110100010111
+00100000011000000000000000000000
+01110000000000000111111000100100
+00100000001000000101001101101100
+00100000010000000101010001010100
+00100000010000000101011000010000
+00100000010000000110111110110000
+00100000001000000011011100110110
+00100000010000000101010001010100
+00100000001000000011011100111111
+01101000000000100000010001110110
+00011111111000111111111000000000
+00100000001101001101010100011011
+01101000000010001100001001011101
+00100100001110100101010100011000
+01110000000000000111110000000100
+01110000000000000111110100010011
+01110000000000000111111000100100
+00100000011000000000000000000000
+01110000000000000111110000110100
+01110000000000000101010100000000
+00100000001000000011001000000110
+00100000010000000011001000000110
+01111001001000000000000000100010
+01101000000000001000000101101100
+01111001001111111111111000000010
+01100000000000001000000101101100
+00100000001000000101010001010100
+00100000011000000000000000000000
+01110000000000000111110000000011
+01110000000000000111110100011000
+01110000000010011011110100101110
+00100000010000000111110110000110
+00100000001000000011011101101010
+01101000000000001000010001110110
+11000000100000001101010100110011
+01101000000000001000010001110111
+11000000100000001101010100110011
+01101000000000001000010001111000
+11000000100110000101010100110011
+00100000010000000101100100000111
+00100000001000001101010100110000
+01110000000010001101001000000001
+01110000000000000111110000000011
+01110000000000000111110100111101
+00100000001000000101001100011110
+01110000000000000111111000100100
+00100000001000000101001101101100
+01110000000000000111110000111110
+00100000011000000000000000000000
+01101000000000001100011011101010
+11000000000000001101010100111110
+11000000000000010101010101000010
+00100000010000000101100100000111
+00100000011000001000000000000000
+01110000000010001101001000001000
+00100000011000000000000000000000
+00100000010000000111100101111111
+01110000000010011011110100110101
+00100000010000000111110110000110
+00100000001000000101010100111010
+00100000010000000101100100000111
+00100000011000001000000000000000
+01101000000000001100011011101011
+11000000000010011101010101010010
+00011111111000001111111000000001
+01100000000000001100011011101011
+01110000000010001101010000000001
+01110000000010001101001000000100
+01101000000000001100011011101011
+00011111111000100000111000000000
+01101000000000110100011100011001
+10101111111011111111111111111111
+01011000000000000000000010000000
+01111001001000001111111000000000
+01100000000000001100011011101100
+00100000011000000000000000000000
+01110000000010001101001000001000
+00100000011000000000000000000000
+00100000010000000101010101011010
+01101000000000001100011011101101
+00100000011110100000000000000000
+01110000010001101110110100000000
+01110000000010011011110100111000
+00100000001000000111110110000110
+00100000010000000101100100000111
+00100100010000001111100110000010
+00100000010000001111100110010010
+00100000010000000101100100000111
+00100000011000001000000000000000
+01110000000010001101001000001100
+01110000000010001101010000000001
+00100000011000000000000000000000
+11011000101000000000100110010010
+11011000110000000000010001110110
+00100000010000000111111010000111
+01101000000000001100011011101010
+11000001000000010000000000000000
+00100000001000000111011011110011
+01101000000000001000100011010011
+11000000000000111101010101101100
+01101000000000001000100011010010
+11000000100000001101010101111111
+01101000000000001000100011011011
+00011111111001100000101000100000
+00100100001000010101010101111111
+11011000101000000000100011101010
+10011000101000001000101000000000
+01101000000001000000010001110110
+11100000101001000000000000000000
+01101000000001000000010001111110
+11100000101001000000000000000000
+01101000000000001000100011011011
+00011111111000001111111000010000
+01100000000000001000100011011011
+11000000100110000101010001010100
+00100000010000000101100100000111
+00100000001000001101010001010100
+01110000000010001101110000000001
+01110000000010001101001000000010
+01110000000010001101010000000001
+00100000001000000101010001010100
+01110000000000000111111000100100
+00100000001000000101001101101100
+01101000000000001000100011011010
+11000000000110000101010110000101
+01110000000000000111110000111110
+00100000001000000101001100011110
+00100000010000000101100100000111
+00100000001000001101010110001110
+01101000000000001100011011101010
+11000000000000010101010110001100
+01110000000010001101010000000001
+01110000000010001101001000000100
+00100000001000000101001100011110
+01110000000010011011110100110110
+00100000001000000111110110000110
+00100000001000000101001100011110
+01101000000000001000100011010011
+11000000000000111101010110010011
+01101000000000001000100011010010
+11000000100000110101010110011111
+11011000101000000000100101010010
+01101000000001000000010001110110
+11100000101001000000000000000000
+01101000000001000000010001111110
+11100000101001000000000000000000
+00100000010000000101100100000111
+00100000001000001101010110011101
+01110000000010001101001000000111
+01110000000010001101010000000001
+00100000001000000101010001010100
+01110000000010001101001100000100
+00100000001000000111011011110011
+01110000000000000111111000100100
+00100000001000000101001101101100
+01101000000000001000100011010011
+11000000000001011101010110100101
+01101000000000001000100011010010
+11000000100001000101010110110100
+11011000101000000000100110000010
+11011000110000000000010001110110
+00100000010000000111111010000111
+00100000010000000101100100000111
+00100000001000001101010110110001
+01101000000000001100011011101010
+11000000000000001101010110110110
+01110000010001101110100100000000
+01110000000010001101001000001001
+01110000000010001101010000000001
+01110000000000000111110101000001
+00100000001000000101001100011110
+01110000000010001101001100001001
+01110000000010001101010100000001
+00100000001000000101001100011110
+01110000000000000111111000100100
+00100000001000000101001101101100
+01101000000000001100011011101001
+11000010100000111101010110111011
+01111001001000000111111000000110
+01100000000000001100011011101001
+00100000011000000000000000000000
+11000010100000000101010110101100
+01110000010001101110100100000000
+00100000001000000101010110110100
+00100000001000000101001100011110
+01101000000000001000000101101100
+01111001001111111111111000000001
+01100000000000001000000101101100
+00100000010000000101010001010100
+00100100011101001000000000000000
+01101000000000001000010001110110
+01101000000010001000000001001011
+01111001001110100000010000000100
+01111101001110100000010000000101
+01100000000010001000000001001011
+00100000011000000000000000000000
+01101000000011000000010001110110
+01101000000000001000000001010101
+11000001100000011000000000000000
+01101000000000001000000101101100
+11000011000000100101010111010001
+01110000000000000101010100010100
+00100000011000000000000000000000
+01110000000000000101010100000100
+00100000011000000000000000000000
+01101000000000001000000101111110
+01100000000000001000000101011010
+01110000000000000111110000000011
+01110000000000000111110100111000
+00100000011000000000000000000000
+01110000000000000111110000000011
+01110000000000000111110100111001
+00011000000000000111001000001001
+11011000110000000000010001110110
+11011000101000000000000101010001
+11101000110000001000000000000000
+00011111111000101111111001010101
+11100000101000001000000000000000
+11000010000000000101010111011101
+01101000000000001000000101010001
+01101000000010001000000101010000
+01111001001111111000010000000111
+01111001001111111000010000000100
+11000000011111111101010111110001
+11000000000000000101011000001010
+11000000000000101101010111111110
+11000000000000111101010111111101
+11000000000000110101010111111110
+11000000000001000101010111111101
+11000000000000001101010111110110
+11000000000000010101010111110110
+11000000000000011101010111110110
+11000000000001001101010111110110
+11000000000000100101010111110110
+00100000011000000000000000000000
+01101000000000001000000101010000
+01111001001000000111111000000011
+01111001001000000111111000000010
+01100000000000001000000101010000
+00100000011000000000000000000000
+01111001001000000000010000000100
+01110000000000010111111100000101
+01101000000000010000000101011000
+10011000000000000111001000000000
+01100000000000010000000101011110
+11011000101000000000010001110101
+00100000010000000111111101000000
+01111001001000000000010000000111
+01111001001000000000010000000010
+00011000000000000111111000000000
+01100000000000001000000000001011
+01100000000000010000000011111001
+01100000000000010000000011111011
+01100000000000010000000011110111
+01100000000000010000000011110101
+01101000000000001000000101010010
+00101111111000011111111000000000
+01111001001000001000010000000110
+01100000000010001000000101010000
+00100000011000000000000000000000
+01111001001111111000000000010001
+01110000000000010101000000000000
+01101000000000001000000101111110
+01111001001111111111111000000110
+01100000000000001000000101111110
+00100000011000000000000000000000
+11011000110000000000010001110110
+11011000101000000000010010000110
+00100000001000000111111010000111
+01110000000000000111110000001001
+00100000011000000000000000000000
+00100100011101001000000000000000
+01110000000000000111110000010001
+00100000011000000000000000000000
+11011010001000000100000101000000
+00100000010000000110111101111010
+01110000000000000111110000000011
+01110000000000000111110100001000
+00100000011000000000000000000000
+01110000000000000111001000001010
+01110000000000000111110000000111
+01110000000000111111000000010110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101011000100000000101011
+01111000010101000111110000000000
+00100000010000000101100011001010
+01101000000000001000000001001000
+00100000011110100000000000000000
+11000010100000111101011001010111
+11000000000000001101011101111100
+11000000000000010101011011101111
+11000000000000011101011001100010
+11000000000000100101011001111001
+11000000000100111101011111100100
+11000000000101000101011100010011
+11000000000110000101011011111111
+11000000000100101101011111011111
+11000000000100110101011100001110
+11000000000110001101011111001110
+11000000000110111101011101110111
+11000000000110011101011101101001
+11000000000001000101100001100010
+11000000000001001101100001011000
+11000000000001011101100001101101
+11000000000001100101100001110110
+11000000000001111101011101101111
+11000000000010000101100010011011
+11000000000010001101100010010001
+11000000000000111101011101011111
+11000000000101010101011110001011
+11000000000001010101011110001100
+11000000000011111101011111001001
+11000000000000110101011100000100
+11000000000100001101011101101100
+11000000000101101101011110111111
+11000000000101110101011111000100
+11000000000100010101011101101100
+11000000000110100101011110001101
+11000000000010011101011110100010
+11000000000010111101011110110001
+11000000000010010101100010011000
+11000000000101111101011110110111
+11000000000011000101011110111100
+11000000000111101101100000001000
+11000000000111110101100000010100
+11000000000111111101100000100110
+11000000001000000101100000110000
+11000000001000001101100001000101
+11000000000100011101100001010100
+11000000000111011101100001001111
+11000000000000101101100001010101
+11000000000101001101100001010110
+11000000000111000101100001010111
+11000000000111001101011110000010
+00100000001000000011101100110001
+00100000011000000000000000000000
+11000000010000001101011010000110
+11000000010000100101011010110010
+11000000010000010101011010001111
+11000000010000011101011100011000
+11000000010001011101011100100011
+11000000010010111101011101011011
+11000000010011001101011011100000
+11000000010011010101011010111101
+11000000010010101101011011100101
+11000000010010110101011011100110
+00100000001000000011101100110001
+00011000000000000111111000000010
+00100000010000000101100010100001
+01101000000000001000000001001001
+11100000101000001000000000000000
+00100000010000000101100010110000
+01111001001000000000000000100101
+01000100101011001100000000101011
+01101000000000001000000001001001
+11000000000001000101011010011001
+11000000000001111101011010011101
+11000000000010000101011010101000
+11000000000010111101011001111000
+11000000000110011101011010101011
+11000000001000001101011010110001
+11000000000010001101011001110010
+00100000011000000000000000000000
+01101000000000001000000001010101
+00100000011110100000000000000000
+01110000000000000101010100011011
+01011000000000000000000000001100
+11011000111000000000000000001011
+00100000001000000111111011010100
+00100000001000000011011101000110
+00011000000000000111111000000011
+00100000010000000101100010100001
+01101000000000001000000001001001
+11000000000001011101011010000001
+11100000101000001000000000000000
+01101000000000001000000001001010
+11100000101000001000000000000000
+00100000001000000101100010110000
+11100000101000001000000000000000
+01101000000000001000000001001010
+11100000101000001000000000000000
+11011000010000000000001111111011
+00100000001000000101100011101100
+00011000000000000000111000000100
+00100000010000000101100010101001
+01011000000000000000000001111111
+11100000101000001000000000000000
+01101000000000001000000001001001
+01111001001111111111111000000111
+11100000101000001000000000000000
+01101000000000001000000001001001
+00100000001000000101100010110000
+00011000000000000000111000000101
+00100000010000000101100010101001
+01011000000000000000000001111111
+11100000101000001000000000000000
+01101000000000001000000001001001
+01111001001111111111111000000111
+11100000101000001000000000000000
+01101000000000001000000001001010
+11100000101000001000000000000000
+00100000001000000101100010110000
+00100000010000000011010010101001
+00100000010000000101100011111110
+00100000011000001000000000000000
+00100000001000000101011000010011
+01101000000000001000000001001011
+11000010100000101101011010100100
+11000100000000100000000000000000
+01110000000000000111110000010010
+01111001001111111111111000000100
+00100000010000000101100011110110
+00100000001000000101011010100110
+01110000000000000111110000010000
+01111001001111111111111000000101
+01100000000000001000000001001011
+00100000011000000000000000000000
+00100000010000000101100100000111
+00100000001000001101011000010101
+00100000011000000000000000000000
+01110000000000000111110010001011
+01101000000000001000001111110111
+01111001001000000111111000000000
+01100000000000001000001111110111
+01110000000010011011110100000001
+00100000001000000111110110000110
+00100000011000000000000000000000
+00011000000000000000111000001100
+00100000010000000101100010101001
+01011000000000000000000000000001
+11100000101000001000000000000000
+01101000000000010000001111110100
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000100000000000000000
+00100000001000000101100010111001
+00011000000000000000111000000101
+00100000010000000101100010101001
+01101000000000011100011011100011
+11100000101000011000000000000000
+00100000010000000101100010111001
+01110000010001101110110100000001
+01101000000000001100011011100011
+11000000000000001101011011001110
+11000000000000010101011011001000
+11000000000000011101011011010100
+00100000011000000000000000000000
+01101000000000001100011011100110
+11000000000000000101011011011110
+11000000000000001101011011011110
+11000000000000010101011011011110
+11000000000000011101011011011010
+00100000011000000000000000000000
+01101000000000001100011011100110
+11000000000000000101011011011010
+11000000000000001101011011011100
+11000000000000010101011011011110
+11000000000000011101011011011010
+00100000011000000000000000000000
+01101000000000001100011011100110
+11000000000000000101011011011010
+11000000000000001101011011011010
+11000000000000010101011011011010
+11000000000000011101011011011010
+00100000011000000000000000000000
+01110000010001101110101000000011
+00100000011000000000000000000000
+01110000010001101110101000000001
+00100000011000000000000000000000
+01110000010001101110101000000010
+00100000011000000000000000000000
+00011000000000000000111000000101
+00100000010000000101100010101001
+01101000000000011100011011100011
+11100000101000011000000000000000
+00100000001000000101100010111011
+00100000011000000000000000000000
+00011000000000000000111000001001
+00100000010000000101100010101001
+01101000000000001000000010010100
+11100000101000001000000000000000
+01101000000000010000000010010101
+11100000101000010000000000000000
+01101000000000100000000010010000
+11100000101000100000000000000000
+00100000001000000101100010111001
+00011000000000000111111000010001
+00100000010000000101100010100001
+01101000000000001000000001001001
+00011111111000100000010000000000
+11000000000000000101011011110111
+11000000000001110101011011110111
+11000000000011100101011011110111
+00100000011000000000000000000000
+11100000101000001000000000000000
+01101000000000001100010110101110
+11100000101000001000000000000000
+11011111001000000000000000001110
+01011000000000000100010110101111
+10011000010000001000110000000000
+00100000010000000111111011001101
+00100000001000000101100010111001
+00011000000000000111111000000011
+00100000010000000101100010100001
+01011000000000000000000100010100
+11100000101000010000000000000000
+00100000001000000101100010111001
+00011000000000000111111000000011
+00100000010000000101100010100001
+01101000000000100000000101100100
+10011100010001100111111000000000
+00100000001101001101011100001010
+00011111111001100111111000000000
+00011111111010110111111000000000
+01111001001111111111111000001111
+11100000101000010000000000000000
+00100000001000000101100010111001
+00011000000000000111111000000110
+00100000010000000101100010100001
+01101000000000101100010110101001
+11100000101000101000000000000000
+00100000001000000101100010111001
+00011000000000000111111000001001
+00100000010000000101100010100001
+01101000000001000100000100111000
+11100000101001000000000000000000
+00100000001000000101100010111001
+00011000000000000000111000001100
+00100000010000000101100010101001
+01011000000000000000000000000001
+11100000101000001000000000000000
+01101000000000010000001111110100
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000100000000000000000
+00100000001000000101100010111011
+00011000000000000000111000000011
+00100000010000000101100010101001
+01101000000000001100000111111010
+11100000101000001000000000000000
+01111000010101000111110000000000
+00100000010000000101100010111011
+00100100011101000000000000000000
+00100100011101001000000000000000
+01101000000000001100000101111000
+11000100000000000000000000000000
+00100000010000000101011100111111
+00100000001000000101011101001001
+01111001001000000000000000100101
+01000100101011010100000000101011
+01101000000000001100000100111110
+01111001001000000111111000000011
+01100000000000001100000100111110
+01011000000000000000000100000001
+01100000000000010000001111110100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101011011100000000101011
+01101000000000001100000100111110
+01111001001111111111111000000011
+01100000000000001100000100111110
+01011000000000000000000000000000
+01100000000000010000001111110100
+00100000011000000000000000000000
+01110000010000010111100000000011
+01011000000000000000000000000000
+01100000000000100100000111100010
+11011000101000000100000101111010
+00100000010000000101011101001101
+11011000101000000100000110000111
+00100000010000000101011101001101
+11011000101000000100000111100110
+00100000010000000101011101001101
+00100000001000000101011101010100
+11011000101000000100000110000111
+00100000010000000101011101001101
+00100000010000000101011101010100
+00100000001000000101011101010111
+01011000111111111111111111111111
+11100000101000011000000000000000
+11100000101000011000000000000000
+11100000101000011000000000000000
+01011000000000000000000001111111
+11100000101000001000000000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100000101110110
+00100000011000000000000000000000
+01101000000000001100000101111000
+01111001001000000111111000000010
+01100000000000001100000101111000
+00100000011000000000000000000000
+00011000000000000000111000000010
+00100000010000000101100010101001
+00100100001101001101100010111001
+00100000001000000101100010111011
+00011000000000000111111000000010
+00100000010000000101100010100001
+01101000000000001000001111110000
+11100000101000001000000000000000
+00100000010000000101100010111011
+01101000000000001000000001001011
+01111001001000000111111000000011
+01100000000000001000000001001011
+01110000000000000111001000110010
+00100000011000000000000000000000
+00011000000000000111111000000001
+00100000010000000101100010100001
+00100000001000000101100010111011
+00011000000000000111111000000001
+00100000010000000101100010100001
+00100000001000000101100010111001
+00011000000000000111111000000010
+00100000010000000101100010100001
+01101000000000001000000001001100
+00101111111011000000000000000010
+01111001001000001111111000000000
+00011111111000010111111000000001
+11100000101000001000000000000000
+00100000001000000101100010111011
+00011000000000000111111000000011
+00100000010000000101100010100001
+01101000000000010000000001010001
+11100000101000010000000000000000
+00100000001000000101100010111011
+01110000000000000111001011111010
+00011000000000000111111000000010
+00100000010000000101100010100001
+01101000000000001000000001010011
+11100000101000001000000000000000
+00100000001000000101100010111011
+00011000000000000111111000001010
+00100000010000000101100010100001
+11011000110000000000000101010001
+00011000000000000111001000001001
+11101000110000001000000000000000
+00011111111000101111111001010101
+11100000101000001000000000000000
+11000010000000000101011110000110
+00100000001000000101100010111011
+00100000001000000101100010111011
+00100000001000000101100010111011
+00100000011101001000000000000000
+00100000010000000011100010111100
+00011000000000000111111000001001
+00100000010000000101100010100001
+01101000000000010000000101110000
+11100000101000010000000000000000
+01101000000000011100000101000000
+11100000101000011000000000000000
+01101000000000001100000101000011
+11100000101000001000000000000000
+01101000000000010100000101000100
+11100000101000010000000000000000
+11000101100000011101011110011110
+01111001001111111000000000000011
+00100000010000000101100010111011
+01110000000000000111110000010011
+00100000011000000000000000000000
+00100000010000000101100010111001
+01110000000000000111110000000011
+01110000000000000111110100010011
+00100000011000000000000000000000
+11011000010000000000001000000000
+00100000001101001101011110100110
+00011101000000100111111000000000
+00100000001000000101011110100111
+00011100010000100111111000000000
+00011100001000100111111000000000
+10011000010000001111111000000000
+00011111111000010111111111111100
+01100000000000100000000000110100
+00011000000000000111111000000101
+00100000010000000101100010100001
+01101000000000100000000000110100
+00011111111000110111111000000000
+11100000101000100000000000000000
+00100000001000000101100010111011
+00011000000000000111111000001010
+00100000010000000101100010100001
+11011000110000000000001111111111
+11101000110001001000000000000000
+11100000101001001000000000000000
+00100000001000000101100010111011
+00011000000000000111111000000011
+00100000010000000101100010100001
+01011000000000000000000100010100
+11100000101000010000000000000000
+00100000001000000101100010111011
+00011000000000000111111000000001
+00100000010000000101100010100001
+00100000001000000101100010111011
+00011000000000000111111000000010
+00100000010000000101100010100001
+01101000000000001100000101110000
+11100000101000001000000000000000
+00100000001000000101100010111011
+00011000000000000111111000000010
+00100000010000000101100010100001
+01011000000000000000000000000101
+11100000101000001000000000000000
+00100000001000000101100010111011
+00011000000000000111111000000010
+00100000010000000101100010100001
+01011000000000000000000000000000
+11100000101000001000000000000000
+00100000001000000101100010111011
+01110000000000000111110000101110
+01101000000000001000000000110000
+01111001001000000111111000000100
+01100000000000001000000000110000
+00011100010000100111111000000000
+01100000000000100000010000001111
+01101000000000001000001111110111
+11000010100000011101011111011101
+01111001001000000111111000000011
+01100000000000001000001111110111
+01110000000010011011110100000101
+00100000010000000111110110000110
+00011000000000000111111000000001
+00100000010000000101100010100001
+00100000001000000101100010111011
+01110000000000000100100000000000
+00100000011000000000000000000000
+00011000000000000111111000000110
+00100000010000000101100010100001
+01101000000000101100010110101001
+11100000101000101000000000000000
+00100000001000000101100010111011
+00011000000000000111111000001001
+00100000010000000101100010100001
+01101000000001000100000100111000
+11100000101001000000000000000000
+00100000001000000101100010111011
+01110000000010001101010100000001
+01101000000000001100011000111001
+11000001100000001000000000000000
+01110000000010001101001100010011
+00100000011000000000000000000000
+00100000010000000101100011111010
+01110000000000000111110010011001
+01110000000010001101001100000011
+00100000011000000000000000000000
+00100000010000000101100011111010
+01110000000000000111110000111101
+01110000000010001101001100000111
+00100000011000000000000000000000
+11011010001000000000100101110010
+11011010010000000000100110010010
+11011111001000000000000000010000
+00100000010000000111111101010101
+00100000001000101101100000000000
+01110000000010001101001100000000
+00100000010000000111011011110101
+01110000000000000111111000100100
+01110000000000000111110101000000
+00100000001000000101001101101100
+01110000000010001101001100001010
+00100000010000000111011011110011
+01110000000000000111110101000000
+00100000001000000101010001010100
+01110000000000000111110001000000
+00100000011000000000000000000000
+01110000000000000111110000111101
+00100000011000000000000000000000
+01110000000010001101101000000000
+00011000000000000111111000000100
+00100000010000000101100010100001
+00011000000000000111111000000001
+11100000101000001000000000000000
+00011000000000000111111000000001
+11100000101000001000000000000000
+00011000000000000111111000110000
+11100000101000001000000000000000
+00100000010000000101100100000111
+00100000001000001101100010111011
+00100000001000000101100010111001
+00011000000000000111111000010001
+00100000010000000101100010100001
+01101000000000001000100011011010
+11011000110000000100011010110010
+10011000110000001000110000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+01101000000000001000100011011010
+00011111111000001111111000010000
+01100000000000001000100011011010
+00100000010000000101100100000111
+00100000001000001101100010111011
+00100000001000000101100010111001
+01110000000010001101001000000110
+01110000000000000111110000111111
+00100000011000000000000000000000
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011000110000000000100101110010
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000001000000101100010111001
+01110000000000000111110001000000
+00100000011000000000000000000000
+00100000010000000101100100000111
+00100000010000001111011000101000
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011000110000000000100101000010
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000010000000101100100000111
+00100100001000001101100010111001
+00100000001000001101100010111011
+01110000000010001101001100001111
+00100000010000000101100011111010
+01110000000000000111110000001011
+00100000010000000101100100010010
+00100000001000001111011001100101
+00100000001000000111011001101111
+00100000010000000101100011110110
+01110000000000000111110001000001
+00100000011000000000000000000000
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011000110000000000100101110010
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000010000000101100100000111
+00100100001000001101100010111001
+00100000001000001101100010111011
+00011000000000000111111000000011
+00100000010000000101100010100001
+01011000000000001111111111111110
+11100000101000010000000000000000
+00100000001000000101100010111001
+00100000001000000101100010111011
+00100000001000000101100010111011
+00100000001000000101100010111011
+00100000001000000101100010111011
+00100000010000000101100100010110
+11011010001000000100000101000000
+00100000010000000101100100011100
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011010001000000000010010100110
+11011010010000000000010010000110
+00100000010000000111000001110111
+00100100001101001101100010110000
+00100000001000000101100010110110
+00100000010000000101100100010110
+11011010001000000000000001000000
+00100000010000000110111101111010
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011000110000000000010010000110
+00100000010000000111111010000111
+01101000000000001000000001010101
+11000000000011001101100010111011
+11000000000011000101100010111011
+00100000001000000101100010110110
+01101000000000001000100011011001
+00100000001110100101100001110011
+00100000010000000101100100000111
+00100000010000001101100011111010
+00100100010000001101100011110110
+00100000001000000101100001110100
+00100000010000000101100011111010
+00100000010000000101100100010110
+00100000001000000101100001100101
+11011010001000000100000101000000
+00100000010000000110111110101101
+00011000000000000111111000000101
+00100000010000000101100010100001
+01101000000000100000010010110110
+11100000101000100000000000000000
+11011000010000000000001111111011
+00100000010000000101100011101100
+00100000010000000111000010101011
+00100000010000000101100100000111
+00100000001000001101100010000101
+01110000000000111111111000000001
+01101000000000001000100011011001
+00100000011110100000000000000000
+01110000000000000111110000001011
+01101000000000001100001001011101
+00100000011110100000000000000000
+00100000010000000101100100000111
+00100100001000001101100010001101
+01101000000000001000001111111101
+00100000011110100000000000000000
+01110000000000000111110000001111
+00100000011000000000000000000000
+11000110100100001000000000000000
+01111001001111111000000000100001
+01110000000000000111110000001111
+00100000011000000000000000000000
+00100000010000000101100100010110
+00100000010000000110111110110000
+00011000000000000111111000010001
+00100000010000000101100010100001
+11011000110000000000010010000110
+00100000010000000111111010000111
+00100000001000000101100010110110
+00011000000000000111111000000001
+00100000010000000101100010100001
+00100000001000000101100010110110
+00011000000000000111111000000010
+00100000010000000101100010100001
+00011000000000000111111000010000
+11100000101000001000000000000000
+01100000000000001000000001010100
+00100000001000000101100010110110
+00011111111010011111111000000000
+00011111111000011111111000000111
+01100000000000001000001111011100
+11011111001000000000000000010001
+11011000101000000000001111011110
+00100000010000000111111010011111
+11011000101000000000001111011110
+00100000011000000000000000000000
+00011111111000010010001001111111
+01110000000000000100100001111111
+00011000111000100111111000000000
+00100000010000000101100010100001
+00011010001000100111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000001000000001001000
+00011111111000111111111000000000
+01101000000010001000000001001100
+00101000010011111111111000000001
+01111001001000001111111000000000
+00100000001000000101100011000000
+01101000000010001000000001001100
+00011000010000010000010000000001
+00100000001000000101100010111100
+00011000000000000000010000000000
+00100000001000000101100010111100
+00011000000000000000010000000001
+01101000000000001000000001001000
+00011111111000111111111000000000
+01111001001101001111111000000000
+10011000010000101111111000000000
+01100000000000001000001111011101
+01110000000000000100100000000000
+00100000010000000101100011010001
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001000000001111100
+00100000011110100000000000000000
+00100000010000000101100011001010
+01101000000000001000000001111100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101011100100000000101011
+01101000000000001000000001001000
+00100000001110100101100011010001
+01101000000000001000000001111000
+00100100011110100000000000000000
+00100000001000000101100011011011
+01101000000000001000000001111000
+00100000001110100101100011100001
+01101000000000011000000001111000
+01100000000000011000000001001000
+01101000000010001000000001111011
+01101000000000001000000001001100
+01111001001111111111111000000001
+10011000010000011111111000000000
+01100000000000001000000001001100
+01110000000000000111100000000000
+01101000000000001000000001111100
+00100000011110100000000000000000
+01101000000000100000000001111100
+01100000000000100000000001111000
+01110000000000000111110000000000
+00100000011000000000000000000000
+01101000000000001000000001111100
+00100000011110100000000000000000
+01101000000000011000000001111100
+01100000000000011000000001001000
+01101000000010001000000001111111
+01101000000000001000000001001100
+01111001001111111111111000000001
+10011000010000011111111000000000
+01100000000000001000000001001100
+01110000000000000111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101011101100000000101011
+01101000000000001000000001001100
+00011111111000100010011000000000
+11101000010000001000000000000000
+00100000010000000101010001101110
+00100000010000000101100010110000
+00011010011000100111111000000000
+01100000000000001000000001001100
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111001001111111000010000000000
+01100000000010001000000001001100
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111001001000000000010000000000
+01100000000010001000000001001100
+00100000011000000000000000000000
+01111101001101001111111000000001
+01101000000010001000000001001100
+10011000010000101111111000000000
+00101111111011111111111000000001
+00100000011000000000000000000000
+01101000000000001000000001001100
+01111001001101001111111000000001
+01100000000000001000000001001100
+00100000011000000000000000000000
+01101000000000001000100011011000
+00101111111000001111111000000001
+00100000011000000000000000000000
+01101000000000001000100011011000
+01111001001000000111111000000111
+01100000000000001000100011011000
+00100000011000000000000000000000
+01101000000000001000100011011000
+01111001001111111111111000000111
+01100000000000001000100011011000
+00100000011000000000000000000000
+01101000000000001000100011011000
+00101111111011111111111000000111
+01100000000000001000100011011000
+00100000011000000000000000000000
+11011000101000000000010010000110
+00011000000000000111001000010000
+00011000000010100111111000000000
+11100000101000001000000000000000
+11000010000000000101100100011000
+00100000011000000000000000000000
+00100000010000000110111101111110
+11011010001000000100001001100001
+11011010010000000000010010110110
+11101010001001000000000000000000
+01101000000010001000000000110000
+01111101001110100000010000000110
+01100000000010001000000000110000
+00011010001000100000101000000000
+00100000010000000111000001110111
+00100000001000000011000111101110
+01111001001000000000000000100101
+01000100101011110100000000101011
+00100000010000000101100011000101
+00100100011110100000000000000000
+01101000000000001000000001010101
+00100000011110100000000000000000
+11000000000000100101100101111011
+11000000000000101101100110000000
+11000000000000010101100101110010
+11000000000000011101100110001000
+11000000000001110101100101110101
+11000000000000110101100110100100
+11000000000000111101100110111100
+11000000000001001101100110111101
+11000000000001010101100111000110
+11000000000001011101100111001010
+11000000000001100101100110010010
+11000000000001101101100110010101
+11000000000001111101100110011011
+11000000000010010101100101100101
+11000000000010011101100110001000
+11000000000010000101100101101000
+11000000000010100101100101100010
+11000000000010101101100110001000
+11000000000010110101100101011100
+11000000000011000101100101100001
+11000000000010111101100101010101
+11000000000011001101100101011011
+11000000000011010101100101000110
+11000000000011011101100101010000
+01110000000000000101010100000000
+00100000011000000000000000000000
+01101000000000001000001111110111
+11000100000000010000000000000000
+11000100000000011000000000000000
+01110000000000000101010100000000
+00100000010000000101100101001100
+00100000001000000110100100001101
+01101000000000001000000101101100
+11000100000000001000000000000000
+01110000000000000101010100001010
+00100000011000000000000000000000
+11011000111000000000000000001011
+00100000010000000111111011100010
+00100100011110100000000000000000
+01110000000000000101010100011010
+00100000011000000000000000000000
+01101000000000001000000101101100
+01111001001111111111111000000000
+01100000000000001000000101101100
+01110000000000000101010100011001
+01110000000000000111110000001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000001000001111111010
+11000001100000010000000000000000
+00100000010000000101100111001100
+01110000000000000101010100011000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000000000101010100010101
+01110000000000000111110010000011
+00100000011000000000000000000000
+01110000000000000101010100010011
+01110000000000000111110000100101
+00100000011000000000000000000000
+01101000000000001100010111110100
+11000001000000000000000000000000
+11000000000000001101100101110000
+11011000111000000000000000001010
+00100000010000000111111011100010
+00100100011110100000000000000000
+01110000010001011111010000000000
+00100000001000000101100110001001
+00100000011101001000000000000000
+00100000001000000101100110100100
+01110000000000000101010100000011
+01110000000000000111110000100111
+00100000011000000000000000000000
+01110000000000000111110000010011
+01111001001000000000000000000011
+01110000000000000101010100000101
+01011000000000000000000111111111
+01100000000000010000001111111000
+00100000011000000000000000000000
+01110000000000000101010100000101
+01110000000000111111100011111111
+01111001001111111000000000100010
+01110000000000000111110000110011
+00100000001000000101001100011011
+11000110000100010000000000000000
+01101000000000010000001111111000
+00011111111001100111111000000001
+00100000001000101101100110000110
+01100000000000010000001111111000
+00100000011000000000000000000000
+01110000000000000101010100001110
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000001000001111110111
+11000100000000011000000000000000
+11000100000000010000000000000000
+01101000000000001000000101101100
+01111001001111111111111000000010
+01100000000000001000000101101100
+01110000000000000111110000010011
+01110000000000000101010100010000
+00100000011000000000000000000000
+01110000000000000101010100001101
+01110000000000000111110000110001
+00100000011000000000000000000000
+01101000000000001000001111110111
+11000100000000010000000000000000
+01110000000000000101010100000000
+00100000011000000000000000000000
+01110000000000000101010100000110
+00100000011000000000000000000000
+01101000000000001000001111111000
+00011111111000001111111111111111
+00100000001110100101100110100000
+01100000000000001000001111111000
+00100000011000000000000000000000
+01110000000000000111110000000111
+01110000000000111111000000010110
+01110000000000000101010100000000
+00100000011000000000000000000000
+01101000000000001000000101101100
+11000010100000010101100110001001
+11000010100000000101100110101001
+01110000000000000101010100011010
+00100000011000000000000000000000
+01101000000000001100001001011101
+00100000001110100101100110110101
+01101000000000001000001111110111
+11000100000000011000000000000000
+11000100000000010000000000000000
+01101000000000100000010000001111
+11011000010000000000000001100100
+10011000010000001000010000000000
+00011100010000100111111000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+00100000001000000101100101010101
+01110000000000000101010100010110
+01110000010001110001100000000100
+01011000000000000011000000110000
+01100000000000010100011100011001
+11100000101000010000000000000000
+01110000000000111111101000000010
+00100000001000000101100101011100
+00100000011000000000000000000000
+01101000000000001000000101101100
+11000010100000001101100111000001
+01110000000000000101010100011010
+00100000011000000000000000000000
+01101000000000001000000101101100
+01111001001111111111111000000001
+01100000000000001000000101101100
+01110000000000000111110000001111
+00100000011000000000000000000000
+01101000000000001000001111111110
+00100000011110100000000000000000
+01110000000000000101010100000000
+00100000001000000101100111000001
+01110000000000000101010100001100
+00100000011000000000000000000000
+01101000000000001000000001001011
+11000010100000010101100111010001
+00100000010000000101100011111010
+01110000000000000111110000001000
+00100000001000000011111110011011
+01101000000000001000000001001011
+01111001001111111111111000000010
+01100000000000001000000001001011
+00100000010000000101011000011000
+00100000010000000101100100000011
+00100000001000000011111110011011
+01011000000000000000000000000100
+01100000000000001100011100011000
+01011000000000000011000000110000
+11100000101000010000000000000000
+11100000101000010000000000000000
+00100000011000000000000000000000
+00100000011101011000000000000000
+01110000010001110010111100000000
+00100000010000000101001000110100
+00100000010000000110010101110111
+01011000000000000101101000011100
+01100000000000010100001010010100
+01011000000000000101101000011100
+01100000000000010100001010010010
+01011000000000000101101000100010
+01100000000000010100001010010110
+01011000000000000101101000011100
+01100000000000010100001010010000
+01011000000000000101101000011000
+01100000000000010100001010001010
+01011000000000000101101101100000
+01100000000000010100001010011100
+01011000000000000101101110100010
+01100000000000010100001010011110
+01011000000000000101110011111001
+01100000000000010100011000000111
+01011000000000000101110110000001
+01100000000000010100001010011010
+01111001001000000000000000100101
+01000100101011111100000000101011
+00100000010000000101100111111010
+00100000010000000101101000010011
+00100000010000000011110101001000
+00100000010000000110010001000001
+00100000001000000101110100001110
+01101000000000100100011100111110
+01100000000100100000000001010100
+01101000000000100100011101000010
+01100000000100100000000001011010
+01101000000100001000000010000001
+00011111111000011111111000000100
+01100000000100001000000010000001
+01110000000000100111110011111111
+01110000100000000110001000000000
+01101000000000010100011100111110
+01100000000100010000000001011000
+01101000000000010100011101000010
+01100000000100010000000001011110
+01100000000100010000000001100000
+01101000000100100000000001111000
+01111001001000000111111000000111
+01100000000100100000000001111000
+00100000010000000011111011100100
+01101000000000001100011101011010
+00101111111011111111111000000000
+01101000000110001000000001100010
+01111001001000001000010000000100
+01100000000110001000000001100010
+00100000011000000000000000000000
+00100000010000000101100111111010
+01101000000010001100011100101011
+00100000010000000110010011101000
+00100000010000000101101001110110
+01101000000010001100011100101001
+00100000001000000110010011011111
+01101000000010001100011100101001
+00100000010000000110010011110101
+00100100001000001011111000110111
+00100000001000000011111000110101
+01111001001000000000000000100101
+01000100101100000100000000101100
+00100000010000000101110111000101
+00100000010000000100100000001110
+00100100011110100000000000000000
+00100000001000000101101001111011
+00011010011000100111111000000000
+11000000000000001101101001100111
+11000000000000010101101000111110
+11000000000000100101101001101001
+11000000000000101101101001011011
+11000000000001000101101001000100
+11000000000001001101101001001011
+11000000000001010101101001011110
+11000000000001011101101001001111
+11000000000001100101101001011010
+11000000000010011101101001101001
+11000000000010100101101001100011
+11000000000010101101101001011100
+11000000000100011101101001011111
+11000000000100100101101001100010
+11000000000110000101110101001001
+11000000000110001101110101001011
+11000000000110010101110101011001
+11000000000110011101110101010111
+11000000000110100101110101000011
+11000000000110101101110100111001
+11000000000110110101110101000001
+11000000000110111101110101001101
+11000000000111000101110101001111
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000101110110100011
+00100000011000000000000000000000
+01101000000000001100011011101101
+00100100010110100101110101001101
+00100000010000000101101001101001
+01101000000000010100011100001011
+11000100000000100000000000000000
+00100000001000000101101001001011
+01101000000000010100011100001011
+01111001001000000111111000000100
+01100000000000010100011100001011
+01101000000000001100011100111011
+01100000000000001100001000010010
+00100000010000000101101001110110
+00100000001000000101110011100100
+01101000000000010100011100001011
+01111001001111111111111000000100
+01100000000000010100011100001011
+00100000001000000101110011101000
+01101000000000010100000001000010
+00011111111000110111111000000000
+01101000000010010100001010000100
+10011000010001100111110000000000
+00100100001000101101101001010101
+00100000001000000011111001111111
+01101000000000001100011100101111
+11000011100000000000000000000000
+01101000000100010000000100010010
+00100100010110100101110110111101
+00100000001000000011111001110111
+00100000001000000011111010000001
+00100000001000000101101001101101
+00100000010000000101101001101001
+00100000001000000101110011101010
+00100000001000000011111001000101
+01101000000000001100011100101111
+11000011000000000011111001111001
+00100000001000000101110111000001
+00100000001000000101110111000001
+00100000010000000101101001101101
+01101000000000001100011100111100
+01100000000000001100001000010010
+00100000001000000101110011100110
+01110000010001101110100100000000
+00100000011000000000000000000000
+00100000010000000101101011011111
+00100000001000000101101001101011
+01101000000010001100011100101011
+00100000001000000110010011111111
+00100000010000000101101001101111
+00100000001000000101101001110110
+01101000000000001100011100101110
+00101111111011111111111000000000
+00100000010000001011111001011001
+01101000000000001100011100101110
+00101111111011111111111000000001
+00100000010000001011111001100001
+00100000011000000000000000000000
+01101000000010001100011100101011
+00100000001000000110010011111101
+01101000000000001100011000000011
+11000001000000000000000000000000
+00100000001000000110100000111000
+01111001001000000000000000100101
+01000100101100001100000000101100
+01101000000100001000000100001100
+11000010100000011101101001111000
+00100000010000000111111101101110
+11101000011000001000000000000000
+11000000100000001101101010010011
+01101000000100010000000100010010
+00011111111001100111110000000010
+00100000011000010000000000000000
+11101000011000001000000000000000
+01100000000000001000010000010110
+11101000011010001000000000000000
+00011000011000100010001000000000
+01100000000010001000010000010111
+00011000010000001000010000000011
+01101000000100010000000100010010
+10011000010001100000010000000000
+00100100011000010000000000000000
+01110000000001000001100000000001
+00100000010000000101101010101010
+01101000000000001000010000011000
+11000001000000000000000000000000
+00100000001000000101101010100101
+00100000010000000101110100111111
+00100000010000000111111101101011
+00100000001000000101101010010110
+01111001001000000000000000100101
+01000100101100010100000000101100
+01101000000100010000000100010010
+00100000011110100000000000000000
+00100000010000000111111101101110
+11101000011000001000000000000000
+00011111111001100111110000000001
+00100100010000101101101010101001
+00100100001000101101101010010110
+11101000011000001000000000000000
+11000001000000101000000000000000
+11000001000101001000000000000000
+00011000011000001000011111111111
+00100000010000000101101010101001
+00100000001000000101101010010110
+00100000010000000111111101101110
+00011000011000001000011000000010
+11101000011000001000000000000000
+10011000011000001000011000000000
+00100000001000000110001100100010
+01111001001000000000000000100101
+01000100101100011100000000101100
+01101000000000001000010000010110
+11000000000000000101101011001100
+11000000000000001101101011010001
+11000000000000010101101011010110
+11000000000000011101101011101100
+11000000000000100101101011110101
+11000000000000101101101011111111
+11000000000001001101101100100011
+11000000000001011101101111010011
+11000000000001100101101111010100
+11000000000001101101101111101000
+11000000000001110101101111110000
+11000000000001111101101111110110
+11000000000010000101110000000010
+11000000000010001101110000001010
+11000000000010010101110000001110
+11000000000100110101110000010010
+11000000000101000101110000011001
+11000000000101001101110000101001
+11000000000101010101110000110010
+11000000000101011101110001100111
+11000000000101100101110001101101
+11000000000110000101110001110100
+11000000000110001101110001111010
+11000000000110010101110010001011
+11000000000110011101110010010011
+11000000000110100101110010110001
+11000000000110101101110010111001
+11000000000110110101110011000001
+11000000000111000101110011001011
+11000000001001000101110011010011
+00100000001000000101110011011110
+01101000000000001000010000010111
+11000000100000110101110011011110
+11101000011000110000000000000000
+01100000000000110100000101000000
+00100000001000000101110011100001
+01101000000000001000010000010111
+11000000100000110101110011011110
+11101000011000110000000000000000
+01100000000000110100010100111110
+00100000001000000101110011100001
+01101000000000001000010000010111
+11000000100000001101110011011110
+00011010001000100000011000000000
+00100000010000000101110011100001
+11101000011010001000000000000000
+01100000000010001100011100111101
+01101000000000010100011100001011
+11000011100001001000000000000000
+11000011100000000000000000000000
+01101000000000001100011100101110
+00101111111011111111111000000000
+00100100001000001101101011100101
+01101000000010001100011100111101
+00011000010000010111111000000011
+01100000000000001100000100110011
+01101000000000001100011100101110
+00101111111011111111111000000001
+00100100011000001000000000000000
+01101000000010001100011100111101
+00101000010011111111111000000010
+00100000001000001011111001100011
+00100000001000000011111001100001
+01101000000000001000010000010111
+00011111111001100111110000100000
+00100100001000010101110011011110
+01100000000000001100010110101110
+00011111111000100111001000000000
+00011010001000100000011000000000
+11011000101000000100010110101111
+00100000010000000110001101000001
+00100000001000000101110011100001
+01101000000000001000010000010111
+00011111111001100111110000010011
+00100100001000010101110011011110
+01100000000000001100010001000000
+00011111111000100111001000000000
+00011010001000100000011000000000
+11011000101000000100010001000001
+00100000010000000110001101000001
+00100000010000000101001000110100
+00100000001000000101110011100001
+01101000000000001100011100001011
+11000011000000100101110011011110
+00100000010000000011111000011101
+00100000001000001101101100001111
+01110000000001000001100000000000
+01101000000000001100011000000000
+00100000011110100000000000000000
+01101000000000010100011000001011
+11000000100000000101101100001101
+01101000000000001000010000010111
+01100000000000010100011000001011
+00011010001000100000011000000000
+00011000011000100111111000000000
+01100000000000010100011000001001
+00100000010000000101101100010001
+00100000001000000110100001011111
+01110000000001000001100000000000
+00100000001000000101110110011111
+00100000010000000101101100010111
+01101000000000010100011000001011
+01101000000010010100011100101100
+10011000010001100111111000000000
+01100000000000010100011000001011
+00100000011000000000000000000000
+01101000000000010100011000001011
+11011000010000000000000001101110
+00100000010000000111111110101111
+01101000000010010100011000000100
+00100000010000000111111110101111
+01101000000010010100010111110110
+00100000010000000111111110101111
+01100000000000010100011100101100
+00100000011000000000000000000000
+01110000000001000001100000000001
+01110000000001000001011000000101
+00100000001000000101110011100001
+01101000000000010100011100001011
+11000100000001001000000000000000
+01110000000001000001100000000000
+01101000000000001100010101101001
+00100100011110100000000000000000
+01101000000000010100011101100000
+00100000001110100101101101001010
+01101000000010010100011101011110
+10011000010001100111110000000000
+00100100011000101000000000000000
+01111001001000000000000000100101
+01000100101100100100000000101100
+01110000000001000001100000000000
+01101000000000010100011101100100
+01101000000010010100011101100000
+10011000010001100010010000000000
+00100100001000010011101100110001
+00100100001000101101101100111000
+00100000010000000101101101000111
+01110000000001000001100000000001
+00100000001000000101101110001110
+01101000000000001100011101011010
+11000011100000010000000000000000
+01101000000100010000000001011000
+10011000000000000000011000000000
+01101000000000010100011101100000
+10011000011000001000011000000000
+00011000011000100010001000000000
+01011000000000000000100100000001
+11100000011000010000000000000000
+00011010010000001111111000000010
+11100000011000001000000000000000
+01101000000000010100011101100010
+11100000011000010000000000000000
+00011010001000100111111000000000
+01100000000100010000000001011000
+01011000000000000000000000000000
+01100000000000010100011101100000
+00100000011000000000000000000000
+00011010001000100000011000000000
+11101000011000010000000000000000
+01100000000000010100011101100010
+01101000000000001000010000010111
+00011111111000001111111111111110
+00100100001000010101110011011110
+00100000001110100101110011011110
+01100000000000010100011101100100
+01101000000000001100011101011010
+11000010100000010101101101011110
+01101000000010010100010101001110
+01101000000000010100011101100100
+00100000010000000111111110101111
+01100000000000010100011101100000
+00011000011000100111111000000000
+01100000000000010100011101011100
+01011000000000000000000000000000
+01100000000000010100011101011110
+01110000000010011011110100011011
+00100000001000000100101111010110
+11011000010000000000000000010100
+00100000001000000101101101010101
+01101000000000001100011101011011
+01110000010001110101101100000000
+00100100001110100101101110111110
+01101000000000010100011101100000
+00100000001110100011101100110001
+00011111111000001000010000000011
+01100000000010010100010001100111
+11011000010000000000000000010100
+00100000010000000111111110101111
+00011111111000100111001000000000
+01100000000000010100011101011110
+01101000000010010100011101100000
+10011000010001100000010000000000
+01101000000000001100011101011010
+11000010100000010101101101110001
+00100100010000101101101110011010
+01110000000000111101101000000001
+01111001001000000000000000100101
+01000100101100101100000000101100
+11011000001000000000000000000010
+01101000000000010100011101100010
+01100000000000010100010001101100
+01101000000000010100011101011100
+00011111111000100000011000000000
+00100000010000000110001101000001
+01101000000000001100011101011010
+11000011000000010101101110111001
+01011000000000000100010001100111
+10011000101001100111111000000000
+00011111111001100000010000000000
+01100000000010001100010001100110
+01101000000000010100011101100100
+01101000000010010100011101100000
+00100000010000000101101110010100
+01101000000010001000001101111001
+01101000000000001000010000011001
+00100000001110100101101110001100
+01111101001110100000010000000100
+01100000000010001000001101111001
+01110000000010011011110100011011
+00100000010000000100101111010110
+01110000010001110101101100000001
+01101000000010001000001101111001
+00100000001000000100111110010010
+00100000010000000101101110001110
+00100000001000000100111110010000
+01101000000000001100011101011010
+01111001001000000111111000000011
+00100000001000000101110110011010
+01101000000000001100011101011010
+01111001001111111111111000000011
+00100000001000000101110110011010
+01110000000001000001100100000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100100011000010000000000000000
+01110000000001000001100100000001
+00100000011000000000000000000000
+01101000000000011100010101000100
+00100100001110100101101110011110
+01110000010001010100011000011111
+00100000011000000000000000000000
+00100000010000000100101111010100
+00100100001110100011101100110001
+01110000010001010100010100011111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101100110100000000101100
+01101000000000010100011101100000
+00100000001110100011101100110001
+01101000000010010100011101011110
+00100000001110100011101100110001
+10011000010001100111111000000000
+11011000010000000000000000011011
+00100000010000000111111110101111
+00011111111000100111001000000000
+01101000000000010100011101011100
+00011111111000100000011000000000
+01101000000000010100011101011110
+10011000011000001000011000000000
+10011111001000001111111000000000
+01100000000000010100011101011110
+01101000000010010100011101100000
+10011000010001100000010000000000
+00100100010000101101101110011010
+01110000000000111101101000000001
+11011000101000000100010001100111
+00100000010000000110001101000001
+11011000001000000000000000000001
+01011000000000000100010001100111
+10011000101001100111111000000000
+00011111111001100000010000000000
+01100000000010001100010001100110
+00100000001000000100111110010000
+01101000000000010100011101100100
+01101000000010010100011101100000
+10011000010001100111111000000000
+11011000010000000000000000010100
+00100000010000000111111110101111
+00011111111000100111001000000000
+00011111111000001000010000000011
+01100000000010010100010001100111
+01101000000010010100011101100000
+10011000010000001111111000000000
+01100000000000010100011101100000
+01101000000000010100011101011100
+00011111111000100000011000000000
+01101000000000010100011101011110
+10011000011000001000011000000000
+10011111001000001111111000000000
+01100000000000010100011101011110
+11011000001000000000000000000010
+01101000000000010100011101100010
+01100000000000010100010001101100
+00100000001000000101101101111000
+00100000001000000101110100010010
+00011010001000100000011000000000
+11101000011000001000000000000000
+11000000000000000101101111011011
+11000000000000001101101111011110
+11000000000000010101101111100100
+11000000000000011101101111100110
+00100000001000000101110011011110
+00100000010000000101011100110111
+01110000010001101110001000000000
+00100000001000000101110011100001
+01011000000001000000000000000011
+01100000000000011100011011100011
+01100000000000001100011011101010
+00100000010000000101011100101111
+01110000010001101110001000000001
+00100000001000000101110011100001
+01011000000001000000000000000010
+00100000001000000101101111011111
+01011000000001000000000000000001
+00100000001000000101101111011111
+01101000000000001000010000010111
+00011111111001100111110000010000
+00100100001000010101110011011110
+01100000000000001100011100011000
+00011111111000100111001000000000
+11011000101000000100011100011001
+00100000010000000110001101010100
+00100000001000000101110011100001
+00011010001000100000011000000000
+11101000011000001000000000000000
+01101000000110001000000001100010
+01111101001110100000010000000100
+01100000000110001000000001100010
+00100000001000000101110011100001
+01101000000000001000010000010111
+00011111111000100111001000000000
+00011010001000100000011000000000
+00100000010000000111111100100101
+01011010110111000110110000000000
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+01100000000000010100001011010011
+00100000010000000101110011100001
+00100000010000000111111101101011
+00100000001000000110001100100101
+11011010001000000000000000000010
+11011010010000000100001010100110
+11011000010000000000000000000000
+00100000001000000101110011101100
+01100000000000010000100111100001
+11011010010000000000100111100001
+11011000010000000000000000000000
+00100000001000000101110011101100
+01101000000000010100011100001011
+11000011000000000101110011011110
+00100000010000000101110011100001
+00100000001000000011111001010010
+01101000000000010100011100001011
+11000011000001001101110011011110
+00100000010000000101110011100001
+00100000001000000011111001101011
+01101000000000001000010000010111
+00011111111000100111001000000000
+00011010001000100000011000000000
+01101000000000010100001010111100
+00011111111000100000101000000000
+00100000010000000110001101000001
+00100000001000000101110011100001
+01101000000000001100011100001011
+11000011000000000101110011011110
+11101000011000001000000000000000
+01101000000010001100011011101001
+01111001001110100000010000000000
+01111001001000000000010000000111
+01100000000010001100011011101001
+00100000010000000101110011100001
+01101000000000001100011011101001
+11000010100000110101110000100111
+00100000011000000000000000000000
+01110000010001101110100100000000
+01110000000010011011110100100001
+00100000001000000111110110010000
+11000010100000000101010110101100
+00100000001000000101110000100100
+01101000000000001100011100001011
+11000100000000100000000000000000
+01101000000000001100011000000011
+11000001000000000000000000000000
+11101000011000001000000000000000
+01101000000010001100011000000001
+10011000010000001000010000000000
+01100000000010001100011000000001
+00100000011000000000000000000000
+11011111001000000000000001000000
+11011000101000000100010000000000
+00100000010000000111111010011111
+01011000000000000000000000000000
+01100000000000001000100111010110
+00011010001000100000011000000000
+00011000011000100111111000000000
+01100000000000010000100111011010
+00100000010000000101110001100010
+01101000000000001000100111010110
+01101000000010001000100111000110
+00011000010000001000010000000001
+10011000010000001111111000000000
+01100000000000001000100111010110
+00011111111001100111110000100000
+00100100001000010101110001001100
+01101000000010001100010000000000
+01011000000000000100010000000001
+10011000010000001111111000000000
+01100000000000010000100111011111
+01101000000010001000100111000110
+00011000010000001000010000000001
+01101000000000001100010000000000
+10011000010000001111111000000000
+01100000000000001100010000000000
+00100000001000000101110001010101
+01101000000010001100010000100000
+01011000000000000100010000100001
+10011000010000001111111000000000
+01100000000000010000100111011111
+01101000000010001000100111000110
+00011000010000001000010000000001
+01101000000000001100010000100000
+10011000010000001111111000000000
+01100000000000001100010000100000
+01101000000000010000100111011111
+00011111111000100000101000000000
+01101000000000010000100111011010
+00011111111000100000011000000000
+00011000010000100111001000000000
+00100000010000000110001101000001
+01101000000000001000010000010111
+01101000000010001000100111010110
+10011000010001100111110000000000
+00100100001000101101110000111000
+01110000010001000000000000011111
+01110000010001000010000000011111
+00100000001000000101110011100001
+11101000011000001000000000000000
+01100000000000001000100111000110
+11101000011000001000000000000000
+01100000000000001000100111010010
+00100000011000000000000000000000
+11011000010000000000000000000000
+11011010001000000000000000000010
+01101000000000010100011101001000
+01100000000000010000100111100001
+11011010010000000000100111100001
+00100000001000000101110011101100
+01101000000000001000010000010111
+11000000100000001101110011011110
+11101000011000001000000000000000
+01100000000000001100011101000110
+01011000000000000000000000000000
+01100000000000010100011101001000
+00100000001000000101110011100001
+11101000011000100000000000000000
+01100000000000100100011100011001
+01110000010001110001100000000100
+01110000010001101110101100000000
+00100000010000000101110011100001
+00100000001000000101010101001000
+01101000000000001000010000010111
+11000000100000011101110011011110
+11101000011000001000000000000000
+11000000000000000101110010000000
+11000000000000001101110010000101
+00100000001000000101110011011110
+11101000011010001000000000000000
+11101000011000001000000000000000
+01111101001110100000010000000111
+00100000010000000110010011011111
+00100000001000000101110011100001
+11101000011010001000000000000000
+00100000010000000110010011101010
+11101000011000001000000000000000
+00101111111011111111111000000000
+00100000010000000110010100000000
+00100000001000000101110011100001
+01101000000000001000010000010111
+11000000100000001101110011011110
+11101000011010001000000000000000
+00100000010000000110010011110101
+01011000000000000000000000000000
+01111101001000001111111000000000
+11011010001000000000000000000001
+00100000001000000101110000000110
+00011010001000100000011000000000
+11101000011000001000000000000000
+01100000000000001100010101101100
+11011000010000000000000000000000
+00101111111011111111111000000111
+01111001001000001000010000000000
+01100000000010001100010101100011
+11000000000000000101110010101001
+11000000000000001101110010101100
+11000000000000010101110010101110
+11000000010000001101110010100010
+11000000010000010101110010100100
+11000000010000011101110010100111
+01110000010001010110001100000000
+00100000001000000101110011011110
+01110000010001001101111100001101
+00100000001000000101110010101010
+01110000010001001101111100001101
+01110000010001001101110100000001
+00100000001000000101110011100001
+01110000010001001101111100001101
+00100000001000000101110010101111
+01110000010001001101111100000000
+01110000010001001101110100000011
+00100000001000000101110011100001
+01110000010001001101111100000101
+00100000001000000101110010101010
+01110000010001001101111100000101
+01110000010001001101110100000000
+00100000001000000101110011100001
+01101000000000001000010000010111
+00011111111001100111110000011111
+00100100001000010101110011011110
+00011111111000100111001000000000
+00011010001000100000011000000000
+11011000101000000100010000000001
+00100000010000000110001101000001
+00100000001000000101110011100001
+01101000000000001000010000010111
+00011111111001100111110000011111
+00100100001000010101110011011110
+00011111111000100111001000000000
+00011010001000100000011000000000
+11011000101000000100010000100001
+00100000010000000110001101000001
+00100000001000000101110011100001
+01101000000000010100011100001011
+11000011000001001101110011011110
+01101000000000001000010000010111
+11000000100001000101110011011110
+00011010001000100000011000000000
+11101000011001000000000000000000
+01100000000001000100010110001101
+01110000000010011011110100010010
+00100000010000000111110110010000
+00100000001000000101110011100001
+01101000000000001100010101101100
+00100000001110100101110011011110
+01101000000000001100010101101010
+11000000100000000101110011011110
+01101000000000001100010101101011
+11000000100000000101110011011110
+00100000010000000111111000101001
+00100000001000000101110011100001
+11101000011000001000000000000000
+11000000000000001101110011011100
+01101000000000001100010101100110
+11000000000000011101110011011010
+11000000000000110101110011011010
+11000000000000111101110011011010
+00100000001000000101110011011110
+01110000010001010110011100000001
+00100000001000000101110011100001
+00100000010000000101000010100110
+00100000001000000101110011100001
+11011000010000000000000000000001
+11011010001000000000000000000000
+00100000001000000101110011101100
+11011000010000000000000000000000
+11011010001000000000000000000000
+00100000001000000101110011101100
+01110000000001000001011000000000
+00100000001000000101110100001111
+01110000000001000001011000000010
+00100000001000000101110100001111
+01110000000001000001011000000011
+00100000001000000101110100001111
+01110000000001000001011000000101
+00100000001000000101110100001111
+01101000000000001000010000010110
+00011111111000100010011000000000
+01110000000001000001011000000110
+01011000000000000000000000000010
+10011010001000001111111000000000
+00100000010000000101110101100110
+00011010011000100111111000000000
+11100001010000001000000000000000
+11100001010010001000000000000000
+00011010001000100111001000000000
+00011010010000100000110000000000
+00100000010000000110001100111011
+00100000001000000110001100011111
+01110000000001000001011000000111
+01101000000000001000010000101110
+00100000011110100000000000000000
+00100000010000000101110101100110
+01101000000000001000010000101110
+00011111111000100111001000000000
+01101000000000010000010000110000
+00011111111000100000110000000000
+00100000010000000110001100101000
+00100000001000000110001100011111
+01110000000001000001011000001000
+01101000000000001100011101010001
+00011111111000100111001000000000
+00011111111000001111111000000010
+00100000010000000101110101100110
+01101000000000010100011101010100
+11100001010000010000000000000000
+01101000000000010100011101010010
+00011111111000100000110000000000
+00100000010000000110001100101000
+00100000001000000110001100011111
+01110000000001000001011000001001
+01011000000000000000000000000000
+00100000010000000101110101100110
+00100000001000000110001100011111
+01110000000001000001011000001010
+01011000000000000000000000000001
+00100000010000000101110101100110
+00100000010000000101110100100011
+01101000000000010100011100001011
+11011000111000000000000000000010
+10101111111011111111111111111111
+01111001001000001000010000000011
+11011000111000000000000000001001
+10101111111011111111111111111111
+01111001001000001000010000000101
+01101000000000001100011100001011
+11011000111000000000000000000100
+10101111111011111111111111111111
+01111001001000001000010000000100
+11100001010010001000000000000000
+00100000001000000110001100011111
+11011000010000000000000000000000
+01101000000000001100000100110011
+11011000111000000000000000000000
+10101111111011111111111111111111
+01111001001000001000010000000000
+11011000111000000000000000000001
+10101111111011111111111111111111
+01111001001000001000010000000001
+01101000000000001100001111111111
+11011000111000000000000000000000
+10101111111011111111111111111111
+01111001001000001000010000000010
+00100000011000000000000000000000
+01110000000001000001011000001101
+01101000000000001100001010111110
+00011111111011111111111000100010
+00011111111000100111001000000000
+00100000010000000101110101100110
+01101000000000010100001010111100
+00011111111000100000110000000000
+00100000010000000110001100101000
+00100000001000000110001100011111
+01110000000001000001011000001110
+01011000000000000000000000000100
+00100000010000000101110101100110
+01101000000000100000100011011110
+11100001010000100000000000000000
+00100000001000000110001100011111
+01110000000001000001011000001111
+00100000001000000101110100001111
+01110000000001000001011000010000
+00100000001000000101110100001111
+01110000000001000001011000010001
+01011000000000000000000000000100
+00100000010000000101110101100110
+01101000000000100100010101101101
+11100001010000100000000000000000
+00100000001000000110001100011111
+11011010001000000000000110000000
+00100000001000000101110101010000
+11011010001000000000000010000000
+00100000001000000101110101010000
+11011010001000000000000100000001
+00100000001000000101110101010000
+11011010001000000000000000000001
+01110000010001101110100100000000
+01110000000001000001011000010100
+01011000000000000000000000000010
+00100000010000000101110101100110
+00011010001000100111111000000000
+11100001010000010000000000000000
+00100000001000000110001100011111
+11011010011000000000000000000000
+00100000001000000101110101011010
+11011010011000000000000000000001
+01110000000001000001011000010101
+01011000000000000000000000000001
+00100000010000000101110101100110
+00011010011000100111111000000000
+11100001010000001000000000000000
+00100000001000000110001100011111
+01110000000001000001011000011101
+01011000000000000000000000000100
+00100000010000000101110101100110
+01101000000000100000100011011110
+11100001010000100000000000000000
+00100000001000000110001100011111
+01110000000001000001010100000010
+01100000000000001000010000010111
+01100000000011000000100111000110
+01111001001000000000000000100101
+01000100101100111100000000101100
+00100000010000000101110101110001
+01101000000011000000100111000110
+00100000010000000110001100011100
+01101000000000011000010000010101
+11100001010000011000000000000000
+00100000011000000000000000000000
+00100000010000000101110101111010
+00100000011000001000000000000000
+00100000010000000101110101111000
+01101000000000100100011100110111
+00011111111010110111111000000000
+00100000011110100000000000000000
+00100000001000000101110101111110
+01101000000010001100011100110110
+00100000001000000110010011111111
+01101000000010001100011100110110
+00100000001000000110010011110011
+01101000000010001100011100110110
+00100000001000000110010011111101
+00011111111000001111111111111111
+00100100001110100101110101111110
+00100000011000000000000000000000
+00011010001000100111111000000000
+01100000000000010100011101010010
+00011010010000100111111000000000
+01100000000000001100011101010001
+01101000000000010000001110011011
+01101000000010010100011101010110
+10011000010001100111110000000000
+00100000001000101101110110001100
+01101000000010010100011101011000
+10011000010001100111110000000000
+00100100011000101000000000000000
+01100000000000010100011101010100
+00100000001000000101110110011000
+01101000000000001100011101011010
+11000010100000011101110110010100
+01101000000000001100011101011010
+11000100000000001000000000000000
+00100000010000000101110100000011
+00100000001000000101110110011100
+01110000000001000001011000001001
+00100000010000000101110011100001
+00100000010000000101101110010001
+00100000001000000101110110010000
+01101000000000001100011101011010
+01111001001000000111111000000001
+01100000000000001100011101011010
+00100000011000000000000000000000
+01101000000000001100011101011010
+01111001001111111111111000000001
+00100000001000000101110110011010
+01101000000000001100011100101111
+11000011100000000000000000000000
+00100000010000000101110110111101
+00100000001000000011111001110111
+01100000000010001000001001001110
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+01111001001000000000000000100101
+01000100101101000100000000101101
+00100000010000000101110110101100
+00100000001000000101110110100100
+01101000000000001100011101000110
+00100000011110100000000000000000
+01101000000000001100011101000111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101000111
+00100100011110100000000000000000
+01110000010001110100011100001010
+00100000010000000110010111000000
+00100000010000000110010111011110
+00011111111001101111110001100100
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011000000001110000010000000000
+01100000000000001100011101001000
+01100000000010001100011101001001
+00100000011000000000000000000000
+01101000000000001100011100101111
+01111001001000000111111000000000
+01100000000000001100011100101111
+00100000011000000000000000000000
+01101000000000001100011100101111
+01111001001111111111111000000000
+01100000000000001100011100101111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101101001100000000101101
+00100000010000000111111110000100
+00100000001000010011111001000001
+00100000001000000011111001000011
+01111001001000000000000000100101
+01000100101101010100000000101101
+01011000000000000101111111000011
+01100000000000010100001010010000
+01011000000000000101111011100010
+01100000000000010100001010010010
+01011000000000000101111000100111
+01100000000000010100001010001110
+01011000000000000101111111010100
+01100000000000010100001010010110
+01011000000000000101110111101111
+01100000000000010100001010010100
+01011000000000000101111011111101
+01100000000000010100001010011100
+01110000000010001101010000000000
+01110000000010001101010100000000
+01111001001000000000000000100101
+01000100101101011100000000101101
+00100000010000000101111000001010
+00100000011101011000000000000000
+00100000010000000101110111100101
+00100000010000000101110111101101
+01011000000000000101111000100100
+01100000000000010100001010001100
+01101000000000010100011100001011
+11000010100001100110000001110100
+00100000001000000110000001110000
+00100000010000000011111000101000
+00100000001000101101110111101010
+00100000010000000110010001110010
+00100000010000000110000010011000
+00100000001000000011111000100000
+00100000010000000110010001000001
+00100000010000000110010001110110
+00100000001000000110000010011110
+01110000010001110100011100000001
+00100000001000000101111000000001
+00100000010000000111111000111111
+00100000010000000101110111110010
+00100000001000000101111000111110
+01101000000010001100011101010010
+00100000010000000110010011110101
+00100100001000001101110111111001
+01101000000000001100011101000111
+11000001000000000000000000000000
+01110000010001110100011100000000
+00100000011000000000000000000000
+01101000000000001100011101000111
+11000001000000001000000000000000
+01110000010001110100011100000001
+01101000000000001100011101000110
+00011111111000001111111000000001
+00011111111000010111111000000011
+01100000000000001100011101000110
+00100000001000000101111000000001
+01011000000000000000000000000110
+00100000010000000110000011101100
+00011111111000010000010011111100
+01101000000000001100011101000110
+10011000010000001111111000000000
+00011111111011010111111000000000
+00011111111000001111111000000110
+00100000010000000110000011101011
+00100000001000000110000010011000
+00100000010000000101111110001110
+00100000010000000101111000010000
+01101000000100010000000001010000
+01111001001111111111111000001011
+01100000000100010000000001010000
+00100000011000000000000000000000
+00100000011101011000000000000000
+00100000010000000011110100111110
+01101000000010001100011101100011
+00100000010000000110010011011111
+01101000000010001100011101100100
+00100000010000000110010011011111
+01101000000010001100011101001101
+00100000010000000110010011011111
+01101000000010001100011101001110
+00100000010000000110010011011111
+01101000000010001100011101001111
+00100000010000000110010011011111
+01101000000010001100011101010000
+00100000010000000110010011011111
+01101000000010001100011101010001
+00100000010000000110010011011111
+01101000000010001100011101010011
+00100000010000000110010011011111
+01101000000010001100011101010010
+00100000001000000110010011011111
+01011000000000001011110000000101
+00100000010000000110000011101011
+01110000000000001001111100000001
+00100000010000000101111000111110
+11011000010000000000000000011001
+00100000010000000110010011101000
+01110000100000001000000100000000
+01101000000010001100011101100011
+00100000010000000110010011000010
+01101000000010001100011101100100
+00100000010000000110010011000010
+01101000000010001100011101001101
+00100000010000000110010011000010
+01101000000010001100011101001110
+00100000010000000110010011000010
+01101000000010001100011101001111
+00100000010000000110010011000010
+01101000000010001100011101010000
+00100000010000000110010011000010
+01101000000010001100011101010001
+00100000010000000110010011000010
+01101000000010001100011101010011
+00100000010000000110010011000111
+01101000000000001000000010011111
+00100100011110100000000000000000
+00100000001000000110010011010010
+01111001001000000000000000100101
+01000100101101100100000000101101
+00100000010000000101111001001101
+00100000010000000101111010010100
+01101000000000001100011101011110
+01101000000010001100011101011101
+01100000000000001100011101011101
+10011000010001100111110000000000
+00100100001000101011111000111001
+01101000000000001100011101100110
+01101000000010001100011101100101
+01100000000000001100011101100101
+10011000010001100111110000000000
+00100100001000101011111000111001
+00100000011000000000000000000000
+11011010001000000000000000000000
+01101000000010001100011101011011
+00100000010000000110010011110101
+01111001001000001010001000000000
+01101000000010001100011101011100
+00100000010000000110010011110101
+01111001001000001010001000000001
+00011010001000100111111000000000
+01100000000000001100011101011110
+11000000000000001101111001011011
+11000000000000010101111001011111
+01101000000000001100011101011111
+11000010100000111101111001101011
+00100000011000000000000000000000
+01101000000000001100011101011101
+11000000000000000101111001100011
+11000000000000011101111001100101
+00100000011000000000000000000000
+01101000000000001100011101011101
+11000000000000000101111001100111
+11000000000000011101111001101001
+00100000011000000000000000000000
+01110000010001110101111110000010
+00100000011000000000000000000000
+01110000010001110101111110000001
+00100000011000000000000000000000
+01110000010001110101111110000000
+00100000011000000000000000000000
+01110000010001110101111110000011
+00100000011000000000000000000000
+01101000000000001100011101011111
+01111001001111111111111000000111
+01100000000000001100011101011111
+01101000000000001100011101011111
+11000000000000000101111001110100
+11000000000000001101111001110111
+11000000000000010101111001111010
+11000000000000011101111001111101
+00100000011000000000000000000000
+01101000000000001100011101011110
+11000000000000011101111010000000
+00100000011000000000000000000000
+01101000000000001100011101011110
+11000000000000000101111010000000
+00100000011000000000000000000000
+01101000000000001100011101011110
+11000000000000011101111010001010
+00100000011000000000000000000000
+01101000000000001100011101011110
+11000000000000000101111010001010
+00100000011000000000000000000000
+01101000000000001100011101100010
+00011111111000001111111000000001
+01100000000000001100011101100010
+00011111111001100111110000000001
+00100000011000010000000000000000
+01110000010001110110001000000000
+01101000000000001100011101100000
+00011111111000001111111000000001
+01100000000000001100011101100000
+00100000011000000000000000000000
+01101000000000001100011101100001
+00011111111000001111111000000001
+01100000000000001100011101100001
+00011111111001100111110000000001
+00100000011000010000000000000000
+01110000010001110110000100000000
+01101000000000001100011101100000
+00011111111000001111111111111111
+01100000000000001100011101100000
+00100000011000000000000000000000
+11011010001000000000000000000000
+01101000000010001100011101100011
+00100000010000000110010011110101
+01111001001000001010001000000000
+01101000000010001100011101100100
+00100000010000000110010011110101
+01111001001000001010001000000001
+00011010001000100111111000000000
+01100000000000001100011101100110
+11000000000000001101111010100010
+11000000000000010101111010100110
+01101000000000001100011101100111
+11000010100000111101111010110010
+00100000011000000000000000000000
+01101000000000001100011101100101
+11000000000000000101111010101010
+11000000000000011101111010101100
+00100000011000000000000000000000
+01101000000000001100011101100101
+11000000000000000101111010101110
+11000000000000011101111010110000
+00100000011000000000000000000000
+01110000010001110110011110000010
+00100000011000000000000000000000
+01110000010001110110011110000001
+00100000011000000000000000000000
+01110000010001110110011110000000
+00100000011000000000000000000000
+01110000010001110110011110000011
+00100000011000000000000000000000
+01101000000000001100011101100111
+01111001001111111111111000000111
+01100000000000001100011101100111
+01101000000000001100011101100111
+11000000000000000101111010111011
+11000000000000001101111010111110
+11000000000000010101111011000001
+11000000000000011101111011000100
+00100000011000000000000000000000
+01101000000000001100011101100110
+11000000000000011101111011000111
+00100000011000000000000000000000
+01101000000000001100011101100110
+11000000000000000101111011000111
+00100000011000000000000000000000
+01101000000000001100011101100110
+11000000000000011101111011010001
+00100000011000000000000000000000
+01101000000000001100011101100110
+11000000000000000101111011010001
+00100000011000000000000000000000
+01101000000000001100011101101010
+00011111111000001111111000000001
+01100000000000001100011101101010
+00011111111001100111110000000001
+00100000011000010000000000000000
+01110000010001110110101000000000
+01101000000000001100011101101000
+00011111111000001111111000000001
+01100000000000001100011101101000
+00100000011000000000000000000000
+01101000000000001100011101101001
+00011111111000001111111000000001
+01100000000000001100011101101001
+00011111111001100111110000000001
+00100000011000010000000000000000
+01110000010001110110100100000000
+01101000000000001100011101101000
+00011111111000001111111111111111
+01100000000000001100011101101000
+00100000011000000000000000000000
+00100000010000000011111001111011
+01110000010001110100101100000010
+00100000010000000011111001111111
+00100000001000000011111001101101
+01011000000000000000000000000010
+01100000000000001100011100001001
+00100000011000000000000000000000
+01101000000000001100001010000011
+00100000011110100000000000000000
+00100000010000000100100000010010
+00100100011110100000000000000000
+00100000010000000101111100010100
+00100100011101000000000000000000
+00100000010000000101111011111010
+11011010001000000000000000001001
+00100000010000000100000000000101
+01101000000000010100001011011110
+11100000101000010000000000000000
+01011000000000000000001010100001
+11100000101000010000000000000000
+01101000000000111100011100101001
+11100000101000111000000000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000110100011100101010
+01100000000000001100011100101111
+00100000001000000101111011101001
+01011000000000000000000000000000
+01100000000000110100011100101010
+01100000000000001100011100101111
+00100000001000000101111100001100
+01101000000000010100011100111001
+01100000000000010100011101000001
+00100000011000000000000000000000
+01101000000010010100010011111000
+00100000010000000101000111110101
+11101000110000001000000000000000
+01100000000000001000001110111110
+11011000101000000100010001101011
+00011000101000001000101000000001
+01101000000010010100010011111000
+11100000101010010000000000000000
+00100000010000000101000111110101
+11101000110000001000000000000000
+00011111111000100111001000000000
+00100000010000000111111011001101
+01101000000010001000001110111110
+00011000010000001000010000000111
+00100000001000000100111110001001
+01111001001000000000000000100101
+01000100101101101100000000101101
+01101000000010010100010011111000
+00100000010000000101000111110101
+00011000110000001000101000000001
+01101000000000111100011100101001
+11100000101000111000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101101110100000000101101
+01111000010101000111110000000000
+01011000000000000000000000000000
+01100000000000110100011100101010
+00100000010000000101111100011110
+00100000010000000101111110000111
+00100000010000000101111101100001
+00100000010000000101111101100111
+00100000001000000101111101111111
+01101000000000001100011100110101
+00100000010110100101111101011010
+01110000010001110011010100000001
+01111000010101000111110000000000
+01101000000010001100011101010011
+00100000010000000110010011110101
+00100100011000001000000000000000
+01011000000000000000000000000000
+00100000010000000110000011101100
+01011000000000000000000000000010
+00100000010000000110000011101100
+11000100000000111000000000000000
+01011000000000000000000000000011
+00100000010000000110000011101100
+00100000010000000101111110111011
+01100000000000010100011100101010
+01011000000000000000000000000100
+00100000010000000110000011101100
+00100000010000000101111110111011
+00011111111001100111111000000000
+01100000000000010100011100101100
+01101000000000100100011100101010
+01111000001101000111110000000000
+00100000011000000000000000000000
+00100000010000000110000011100111
+00100000010000000101111101011010
+11011111111000000000000000000101
+00100000010000000110000011101100
+01100000000000001100011100110000
+11011111111000000000000000000111
+00100000010000000110000011101100
+01100000000000001100011100110001
+11011111111000000000000000001000
+00100000010000000110000011101100
+01100000000000001100011100110010
+00100000001000000110000011101001
+01101000000000001100011100110001
+11000001100000000000000000000000
+01101000000000001100011100110010
+00011111111001100111110000101101
+00100000011000010000000000000000
+01110000010001110011001100000000
+01011000000000001011101001000001
+00100000010000000110000011011011
+01011000000000000000000000110010
+00100000010000000110000011011011
+01011000000000001011010101000001
+00100000001000000110000011011011
+01101000000000001100011100110001
+11000001100000000000000000000000
+01101000000000001100011100110010
+00011111111001100111110000101101
+00100100011000010000000000000000
+01110000010001110011001100000001
+01011000000000001011101001000001
+00100000010000000110000011011011
+01011000000000001000000000110010
+00100000010000000110000011011011
+01011000000000001011010101000001
+00100000001000000110000011011011
+11011111111000000000000000000011
+00100000010000000110000011101100
+01100000000000010100011100101010
+11011111111000000000000000000100
+00100000010000000110000011101100
+01100000000000010100011100101100
+00100000011000000000000000000000
+01101000000000001100011101101000
+00100000011110100000000000000000
+01100000000000001100011100101110
+01110000010001110110100000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001100011101100000
+00100000011110100000000000000000
+01100000000000001100011100101111
+01110000010001110110000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+11011010001000000000000000000000
+01101000000010001100011101001101
+00100000010000000110010011110101
+01111001001000001010001000000000
+01101000000010001100011101001110
+00100000010000000110010011110101
+01111001001000001010001000000001
+01101000000010001100011101001111
+00100000010000000110010011110101
+01111001001000001010001000000010
+01101000000010001100011101010000
+00100000010000000110010011110101
+01111001001000001010001000000011
+01101000000010001100011101010001
+00100000010000000110010011110101
+01111001001000001010001000000100
+00011010001000100111111000000000
+00100000011000000000000000000000
+00100000010000000101111101101101
+01101000000010001100011100101001
+01100000000000001100011100101001
+10011000010000101111111000000000
+00011111111001100111110000000000
+00100000011000101000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+11011000010000000000000000011010
+00100000010000000110010011110101
+00100000011000001000000000000000
+01011000000000000000000000001010
+00100000010000000110000011101100
+00100000000000000000001111101000
+00100000001000000101111110000111
+00100000010000000110000110101100
+00100000011101011000000000000000
+01011000000000000000000000000000
+00100000010000000110000011101100
+01100000000000001000001001001011
+11000000000110000101111110011000
+11000000000110001101111110011000
+00100000010000000110000011000000
+00100000000000000000001111101000
+00100000001000000101111110010000
+01011000000000001000000000000110
+00100000010000000110000011101011
+00100000000000000000001111101000
+00100000011000000000000000000000
+01101000000010001100011101010110
+00100000010000000110010011111111
+00100000010000000111111010001001
+01101000000010001100011101010110
+00100000010000000110010011111101
+00100000001000000111111010001001
+01011000000000001011101001000001
+00100000010000000110000011011011
+01011000000000000000110100010001
+00100000010000000110000011011011
+01011000000000000000010000011011
+00100000010000000110000011011011
+01011000000000000000010000011100
+00100000010000000110000011011011
+01011000000000000000111100011101
+00100000010000000110000011011011
+01011000000000000000000000110010
+00100000010000000110000011011011
+01011000000000001011010101000001
+00100000001000000110000011011011
+01011000000000001011101001000001
+00100000010000000110000011011011
+00100000000000000000111110100000
+01011000000000001111111101111111
+00100000010000000110000011011011
+00011010001000100111111000000000
+00100000010000000110000011011011
+01011000000000000000000001111111
+00100000010000000110000011011011
+01011000000000001011010101000001
+00100000001000000110000011011011
+11000100000000111000000000000000
+11011000010000001111111100000000
+10011000010000011111111000000000
+00100000011000000000000000000000
+11000100000000011000000000000000
+11011000010000000000000011110000
+10011000010000011111111000000000
+00100000011000000000000000000000
+00100000010000000100101111010100
+00100100011110100000000000000000
+01101000000000001100011101001100
+01100000000000001100010011111000
+01101000000010010100010011111000
+00100000010000000100111101101010
+11000100000000000000000000000000
+01101000000000001100010110010101
+11000100000000000000000000000000
+00100000010000000101111100010100
+00100100011101000000000000000000
+00100000010000000101111011111010
+01101000000000001100011101001100
+01100000000000001100010011111000
+01110000000010011011110100011011
+00100000010000000100101111010110
+00100000001000000101111100001100
+00011010011000100111111000000000
+11000000000010100101111111100111
+11000000000000001110000010000100
+11000000000010101101111111110110
+11000000000000010101111111110110
+11000000000000101101111111110101
+11000000000010000110000001001000
+11000000000010010110000001101000
+11000000000000110101111111110011
+11000000000101000101111011011011
+11000000000101001101111011011110
+11000000000000100101111111110000
+11000000000010011101111111110000
+11000000000001010101111111101110
+11000000000101110011111000110010
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000110000000010100
+00100000011000000000000000000000
+01101000000000010100001010101111
+01111001001111111111111000000000
+01100000000000010100001010101111
+01011000000000000000000000000000
+01100000000000010100011100111111
+00100000010000000101111011111010
+00100000001000000110000010000100
+00100000010000000101100111010111
+00100000001000000011111001000101
+01101000000000010100011100001011
+11000010100001100110000001110100
+00100000001000000011111000001010
+00100000010000000101111011011111
+00100000011000000000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101101111100000000101101
+00100000010000000110000000000000
+01101000000000010100001010101101
+11000010100000111110000000010000
+11000010100000000011111000001100
+11000010100000001110000000001010
+11000010100000010110000000001101
+11000010100000011110000000001101
+00100000001000000110000001110100
+01011000000000000000000000000000
+01100000000001000100011101011011
+11100000101001000000000000000000
+01110000010001110100010100000000
+01110000010001110011010100000000
+01110000010000101000001100000000
+01110000010001001011001000000000
+01110000010001110100101100000000
+01110000010001110011011000000000
+00100000011000000000000000000000
+11000010100000101110000000001101
+11000010100000011110000000001101
+00100000001000000110000001110100
+01101000000000010100011100001011
+11000010100001100110000001110100
+00100000001000000011111000001010
+00100000010000000101001010100000
+01101000000000010100001010101101
+11000010100000000011111000001100
+00100000001000000011111000001010
+01111001001000000000000000100101
+01000100101110000100000000101110
+01100000000010001000001001001110
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+00100000010000000110000000100111
+00100000010000000110000000101101
+00100000010000000110000000110100
+00100000010000000110000001000010
+00100000010000000110000000100001
+00100000001000000110000000010111
+01101000000000001100011101101100
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101101100
+00100100011110100000000000000000
+00100000001000000110000010101010
+01101000000000001100011100001001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011100001001
+00100100011110100000000000000000
+00100000001000000110000001101000
+01101000000000010100011100111101
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011100111101
+00100100011110100000000000000000
+00100000010000000110000010000100
+00100000001000000011111001110101
+01101000000000010100011100111111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011100111111
+00100100011110100000000000000000
+00100000010000000011111001011111
+00100000001000000011111001110101
+01101000000000010100011101000011
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011101000011
+00100100011110100000000000000000
+01110000010001110100010100000000
+00100000011000000000000000000000
+01101000000000010100011101000001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011101000001
+00100100011110100000000000000000
+00100000001000000110000010001111
+01111001001000000000000000100101
+01000100101110001100000000101110
+01110000010001110100010100000000
+01110000010001110011011000000001
+01011000000000000000000000000000
+01100000000000010100011100111111
+00100000010000000110000010001111
+01101000000000001100000100110010
+00101111111011111111111000000001
+00100000010000001110000001100110
+01101000000000001100000100110010
+00101111111011111111111000000000
+00100000010000001110000001100010
+00100000010000000011111010000001
+00100000001000000110000001110100
+01101000000000110100001001110011
+00100000001110100011111001010100
+00100000001000000011111001001001
+01101000000000110100001001110011
+00100000001110100110000001100000
+01101000000000010100011100110111
+01100000000000010100011100111111
+00100000010000000011111001111111
+00100000001000000011111001011101
+00100000010000000011111001101111
+00100000001000000011111001100011
+01101000000000010100011100001011
+00101111111011111111111000000111
+00100000010000001011111001010000
+00100000011000000000000000000000
+00100000010000000101001010100000
+00100000011000000000000000000000
+01110000010000101000001100000001
+00100000010000000011111001111111
+00100000010000000011111001111101
+01110000010001110100101100000001
+01011000000000000000000000000000
+01100000000000010100011100000111
+01100000000000001100011100001001
+00100000001000000011111001111001
+01101000000000001100001010110101
+11000000000110011110000001010111
+11000000000110100110000001011010
+00100000001000000110000001110100
+01111001001000000000000000100101
+01000100101110010100000000101110
+01101000000000010100011100001011
+11000010100001011110000001111010
+00011000000010100111111000000000
+01100000000000001100010100111111
+00100000010000000011111010000001
+01101000000000010100011100010110
+01100000000000010100011100111101
+01101000000000001100000100110010
+00101111111011111111111000000001
+00100000010000001011111001100011
+01101000000000001100000100110010
+00101111111011111111111000000000
+00100000010000001011111001010111
+00100000001000000011111001101111
+01111001001000000000000000100101
+01000100101110011100000000101110
+01011000000000000000000000000000
+01100000000000010100011100111101
+01101000000000001100000100110010
+00101111111011111111111000000001
+00100000010000001011111001100001
+01101000000000001100000100110010
+00101111111011111111111000000000
+00100000010000001011111001011001
+00100000001000000011111001110011
+01111001001000000000000000100101
+01000100101110100100000000101110
+01011000000000000000000000000000
+01100000000000010100011101000001
+01101000000000010100011100001011
+11000010100001001011111001101011
+01101000000000010100011100001011
+11000010100000000011111001010010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101110101100000000101110
+11011000010000000000000000000001
+11011010001000000100011101000110
+11011010010000000000000011000110
+00100000001000000110001001101111
+01111001001000000000000000100101
+01000100101110110100000000101110
+11011000010000000000000000000001
+11011010001000000100011101000110
+11011010010000000000000011000110
+00100000001000000110001001000101
+01111001001000000000000000100101
+01000100101110111100000000101110
+01101000000000001100011100110100
+00100000010000000110000011010001
+11000000000000000110000010110000
+00100000011000000000000000000000
+01101000000010001100011101010111
+00100000010000000110010011111101
+01101000000010001100011101011000
+00100000010000000110010011111101
+01101000000010001100011101011001
+00100000001000000110010011111101
+01101000000000001100011101101011
+00100000011110100000000000000000
+01110000010001110110101100000000
+01110000010001110110110000111100
+00100000010000000110000010101010
+01101000000000001100011101101101
+11000000000000001110000010111010
+11000000000000010110000010111100
+11000000000000011110000010111110
+00100000011000000000000000000000
+01101000000010001100011101010111
+00100000001000000110010011111111
+01101000000010001100011101011000
+00100000001000000110010011111111
+01101000000010001100011101011001
+00100000001000000110010011111111
+01111001001000000000000000100101
+01000100101111000100000000101111
+01101000000100001000000001110011
+11011000010000000000000000000110
+10011000010000011111111000000000
+01100000000100001000000001110011
+01101000000100001000000001110111
+10011000010000011111111000000000
+01100000000100001000000001110111
+01110000100000001000000100000000
+01101000000100001000000001110111
+01111001001111111111111000000001
+01111001001111111111111000000010
+01100000000100001000000001110111
+00100000000000000000000000011110
+01110000100000001000000100000001
+00100000011000000000000000000000
+00011111111000100010010000000000
+00100000010000000110000011100111
+00100000000000000000000001100100
+00011010010000100111111000000000
+00100000010000000110000011101100
+00011111111000100010010000000000
+00100000010000000110000011101001
+00100000000000000000000001100100
+00011010010000100111111000000000
+00100000011000000000000000000000
+00011111111000100010010000000000
+00100000010000000110000011100111
+00100000000000000000000001100100
+00011010010000100111111000000000
+00100000010000000110000011101011
+00100000010000000110000011101001
+00100000000000000000000001100100
+00100000011000000000000000000000
+01101000000000001100001010111011
+11000001011111111000000000000000
+01101000000010001100001010111011
+00100000001000000110010011101000
+01101000000010001100001010111011
+00100000001000000110010011111111
+01101000000010001100001010111011
+00100000001000000110010011111101
+00100000001000000110000111000001
+00100000001000000110000111001001
+00100100001101000110000011110001
+01101000000100001000000010000101
+00011111111000011111111000100000
+01100000000100001000000010000101
+00011000010000100111110000000000
+00100000001000101110000011110100
+00011010011000100111101000000000
+00101111110011000000000000000000
+00100000001000000110000110001110
+00011000000000000000010000000100
+11011010001000000000001000100001
+01101000000100001000000010000101
+00011111111000010111111011011111
+01100000000100001000000010000101
+00100000010000000110000011110001
+11011010001000000101010110101010
+01101000000000010000001000100001
+11101000110010010000000000000000
+10011010001001100111110000000000
+00100000011000000000000000000000
+11011000010000000000000000000010
+11011010001000000000001000100111
+00100000010000000110000011110001
+01101000000000010000001000100111
+01100000000000010000001000011010
+00100000010101000110000100001000
+00100000011000000000000000000000
+11011000010000000000000000010000
+11011010001000000000001000101001
+01101000000100001000000010000101
+00011111111000010111111011011111
+01100000000100001000000010000101
+00100000010000000110000011110001
+11011000110000000000001000101001
+11011111001000000000000000010000
+00100000010000000111000110100001
+00100000010000000111000101010000
+00100000010000000111000110111010
+00100000001000000111000101001010
+01111000010101101111110000000000
+00100000010000000110000011110110
+00100100011000101000000000000000
+01111000001101101111110000000000
+01110000100000000010001110000000
+01110000100000000010001000000000
+01110000100000000010010000000000
+11011010001000001000000000100101
+00100000010000000110000011101101
+01110000100000000010001100000000
+00100000010000000110000011110110
+00100100011000101000000000000000
+00011000000000000111111000000000
+01100000000100010000001010001000
+11011010001000001000001010001010
+00100000010000000110000011101101
+11011000010000000000000000000110
+00100000010000000110000011110111
+00100100011000101000000000000000
+11101000110000010000000000000000
+10011000000000000010001000000000
+00100000010000000110000011110001
+00100000001000000110000100100100
+01111001001000000000000000100101
+01000100101111001100000000101111
+00100000010000000111111101100110
+01011000000000000001000000000000
+01100000000000010000001000011010
+11011010011000000110001001001100
+11011111001000000000000000000010
+00100000010000000110000011110110
+00100100011000101000000000000000
+01101000000000010000001000011010
+00011111111100001111111000000000
+10011000010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000011010
+11000010000000000110000100110010
+00100000001000000110000100100100
+01110000100000000101000000100101
+01110000100000101000000000000101
+00100000010000000111111101100110
+01111001001000000000000000100101
+01000100101111010100000000101111
+01111000010101000111110000000000
+00100000010000000110001011000100
+01011000000000000000000000000000
+11011010001000000000001000010110
+11011000010000000000000000000010
+00100000010000000110001100001101
+01101000000000010000001000010110
+11000011000000111110000101010000
+01011000000000000000011111110000
+11011010001000000000001000101001
+11011000010000000000000000010000
+00100000010000000110001100001101
+01110000100000000000011000001000
+11011000110000000000001000101001
+00100000010000000111000110101101
+01111000001101000111110000000000
+01111001001000000000000000100101
+01000100101111011100000000101111
+01101000000000010000001000010110
+00011111111100001111111000000000
+11011000010000000000011111111111
+10011000010000010111111000000000
+00100000001000101110000101011110
+00100000010000000110001011001001
+11011010011000000110001100010010
+00100000010101000110000100001000
+00100000010000000110000100010100
+01101000000000001000001000010101
+00101111111000000000011000000011
+00100100001000001110000101010000
+01111001001000000000000000100101
+01000100101111100100000000101111
+00100000010000000110001011000111
+01101000000000001000001000010110
+11000010100000101110000101101101
+01011000000000000000000000000000
+01100000000000011000001000011001
+00100000010000000110000111011001
+11011010011000000110000111111011
+00100000010000000110000100000001
+00100000010000000110000100010100
+00100100001101101110000101101101
+01101000000000001000001000010101
+00101111111000000000011000000011
+00100100001000001110000101011110
+01111001001000000000000000100101
+01000100101111101100000000101111
+00100000010000000110001000110110
+01101000000000001000001000010110
+11000010100000110110000110000000
+00100000010000000110000110001000
+00100100001101101110000101111000
+01101000000000001000001000010101
+00101111111000000000011000000011
+00100100001000001110000101101101
+00100000001000000110000110000000
+00100000010000000110001000110011
+01101000000000001000001000010110
+11000010100000110110000110000000
+00100000010000000110000110001000
+00100100001101101110000110000000
+01101000000000001000001000010101
+00101111111000000000011000000011
+00100100001000001110000101111000
+00011000000000000111000000000100
+00100000010000000111000110111011
+01110000100000000101000000100001
+01101000000000001000001000010110
+11000100000000100000000000000000
+00100000010000000011111011001101
+00100000010000000011111011110100
+00100000001000000110000110000110
+01011000000000000000000000000000
+01100000000000010000001000011010
+11011010011000000110001001001100
+00100000010000000110001000011101
+00100000010000000110000100000001
+00100000001000000110000100010100
+01101000000000001000001000010101
+00011111111000111111111000000000
+01111001001000001111111000000000
+00101010001011000000000000001111
+00100000011000001000000000000000
+01100000000000001000001000010101
+00100000011000000000000000000000
+01101000000100001000000010000101
+11000100000000101000000000000000
+00100000001000000110000110011011
+01101000000100001000000100101100
+10101111111011111111111111111111
+00100000011000001000000000000000
+01101000000100001000000100001000
+11000011000000001110000110011000
+00100000010000000111000101001010
+00100000001000000110000110011000
+01101000000000010100001000111001
+00100000011110100000000000000000
+01110000100000000010001110000000
+01110000100000000010001000000000
+01110000100000000010010000000000
+01101000000010010100001000111011
+00011000010010111111001000000000
+10011000000000000000110000000000
+11101000110000001000000000000000
+01100000000100001000000000100101
+11000010000000000110000110100111
+01110000100000000010001100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101111110100000000101111
+01101000000000001100001010111001
+01100000000100001000000010000110
+01101000000000001100001010111010
+01100000000100001000000010000111
+01011000000000000000001000011000
+01100000000100010000000010001010
+01011000000000000000001000011101
+01100000000100010000000010001100
+01101000000100001000000010000001
+01111001001000000111111000000000
+01111001001111111111111000000001
+01100000000100001000000010000001
+00100000011000000000000000000000
+01101000000100001000000010000110
+01111001001000000111111000000111
+01100000000100001000000010000110
+01111001001111111111111000000111
+01100000000100001000000010000110
+00100000011000000000000000000000
+01111001001000000111111000000111
+01100000000000010000001000011000
+01111001001000000000000000100101
+01000100101111111100000000101111
+01110000100000001000100000000010
+01110000100000001000111000000000
+01110000100000000000011000000010
+00100000001000000110000111010011
+00011000000000000000010000000001
+01100000000000001000001000011000
+01111001001000000000000000100101
+01000100110000000100000000110000
+01110000100000001000100000000001
+01100000000110010000000010001110
+01110000100000000000011000000010
+00100000010000000110000111010011
+01101000000000001000001000011101
+00100000011000000000000000000000
+01101000000000010100000101110110
+00011111111000001111111000000001
+01100000000000010100000101110110
+01101000000100001000000100101100
+11000011000000011110000111010011
+00100000011000000000000000000000
+01110000100000001000011001000000
+01110000100000001000011100000000
+01101000000100001000000010000001
+01111001001111111111111000000000
+01111001001000000111111000000001
+01100000000100001000000010000001
+01011000000000000000000000000000
+01100000000000100000001000011000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000100010000000010001110
+01011000000000000000000000000001
+01100000000100001000000010001000
+01011000000000000000001000011000
+01100000000100010000000010001010
+01110000000000100001100000000110
+01110000100000000000011000000010
+00100000001000000110000111010011
+00011000010000001000010000000100
+01100000000110010000000010001000
+00011010001000001010001111111100
+11011000010000000000000000000010
+11100010001010001000000000000000
+00011111111100010000010000000000
+11100000101010001000000000000000
+00011111111011001000010000000000
+11100000101010001000000000000000
+11100000101000001000000000000000
+00011010001000100111111000000000
+01100000000100010000000010001010
+01011000000000000000000000000000
+01100000000100010000000010001110
+01110000100000000000011000000010
+00100000001000000110000111010011
+01100000000110010000000010001110
+01011000000000000000000000000100
+01100000000100010000000010001000
+01110000000000100001100000000011
+01011000000000000000001000011000
+01100000000100010000000010001010
+00011010001000100111111000000000
+01100000000100010000000010001100
+01101000000100001000000010000110
+00101010001011000000000000001111
+01111001001000001111111000000110
+01100000000100001000000010000110
+01110000100000000000011000000010
+01101000000100001000000100101100
+11000010100000111110001000001000
+11011000111000000000000000000011
+00100000010000000110000110010101
+00100000010000000110000111010011
+00101111111011111111111000000010
+00100000010000000110000110001110
+01101000000000001000001000011001
+00011111111100000010010000000000
+01101000000000001000001000011010
+00011111111011010111111000000000
+10011010010000011010010000000000
+01101000000000001000001000011011
+10011010010000011111111000000000
+10011000010000001111111000000000
+01100000000000001000001000011011
+00011111111011001111111000000000
+01100000000000001000001000011010
+00011111111011001111111000000000
+01100000000000001000001000011001
+00100000011000000000000000000000
+01110000100000001001000100000101
+01110000100000001001001000000111
+01110000100000001001001100000111
+01110000100000001001010000000111
+01110000100000001001010100000111
+01110000100000001001011000000101
+00100000011000000000000000000000
+01101000000100001000000100101100
+11000011000000101110001000100100
+00100000011000000000000000000000
+01100000000100010000000010011000
+00011010001000100111111000000000
+01100000000100010000000010011010
+00011010010000100111111000000000
+01100000000100010000000010011100
+00011000010000100111111000000000
+01100000000100010000000010011110
+11011000010000000000000000000001
+01111101001110100000010000000001
+01100000000100001000000010010000
+01110000100000000000011000000100
+00100000001000000110001000100100
+01111001001000000000000000101010
+01110000010000101011011000001000
+00100000011000000000000000000000
+01111001001111111000000000101010
+01110000010000101011011000100000
+00100000011000000000000000000000
+01101000000000001100001010101000
+10011010010000001111111000000000
+01100000000000001000001000011010
+00100000001000000110001001000000
+01101000000000010000001000011010
+00011111111100001111111000000000
+01100000000000001000001000011010
+01011000000000000000000000000011
+01100000000100010000000010011000
+01110000000000100001100110100000
+01110000000000100001101110100001
+00100000001000000110001001010100
+01111001001000000000000000100101
+01000100110000001100000000110000
+11000101000101010110001000111001
+01101000000000010100001010101000
+10011010010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000011010
+01111001001000000000000000100101
+01000100110000010100000000110000
+11000101000101010110001000111101
+00100000000000000111010100110000
+01011000000000000000000000000100
+01100000000100010000000010011000
+01110000000000100001100110100000
+01110000000000100001110010100001
+01011000000000000000001000011001
+01100000000100010000000010011010
+01100000000110010000000010011110
+00011010001000100111111000000000
+01100000000100010000000010011100
+01011000000000000000000000000010
+00101010001011000000000000001111
+01111001001000001111111000000000
+01100000000100001000000010010000
+01110000100000000000011000000100
+11011000111000000000000000000101
+00100000010000000110000110010101
+00100000010000000110001000100100
+00101111111011111111111000000100
+00100000010000000110000110001110
+11000101000101010110001001101010
+01101000000000010000001000011010
+00011111111100001111111000000000
+10011000010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000011010
+00100000011000000000000000000000
+01101000000000001000001000011010
+10011000010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000011010
+00100000011000000000000000000000
+01101000000000010100001010101000
+10011010010000001111111000000000
+01100000000000010000100110111110
+01111001001000000000000000100101
+01000100110000011100000000110000
+01100000000010010000100111000110
+00011010001000100111111000000000
+01100000000000010000100111011101
+00100000010000000110001010000111
+01101000000010010000100111010110
+01101000000000010000100111011101
+00011111111000100010001000000000
+01101000000000010000100110111110
+00100000010000000110001010101000
+01101000000000010000100111010110
+01101000000010010000100111011101
+10011000010000001000010000000000
+01100000000010010000100111011101
+01101000000010010000100110111110
+10011000010000001000010000000000
+01100000000010010000100110111110
+01101000000000010000100111000110
+00100100001110100110001001110111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110000100100000000110000
+01101000000000010100001010110110
+00011111111000001111111111111111
+01101000000010010000100110111110
+10011000010000011111111000000000
+00011111111000001111111000000001
+01100000000000011000100111011010
+01101000000000010000100111000110
+10011000010000001111111000000000
+01101000000010011000100111011010
+10011000010001100111111000000000
+00100100001000010110001010011010
+01100000000000010000100111000110
+01101000000000011000100111011010
+01101000000010010000100110111110
+10011000010001100111111000000000
+01100000000000010000100111010110
+00100000011000000000000000000000
+01101000000000010000100111000110
+01100000000000010000100111010110
+01011000000000000000000000000000
+01100000000000010000100111000110
+00100000011000000000000000000000
+00011000010000001000010000000010
+01100000000110010000000010011000
+00011010001000001010001111111110
+11101010001010011000000000000000
+00011000010000100010010000000000
+11011000010000000000000010100000
+11100010001010001000000000000000
+11100000101000001000000000000000
+00100000001000000110001010110111
+00011111111000100010010000000000
+01111001001000000000000000100101
+01000100110000101100000000110000
+00100000000000000111010100110000
+11000101000101010110001010011111
+00011010010000100111111000000000
+00011000010000001000010000000011
+01100000000110010000000010011000
+00011010001000001010001111111101
+11101010001010011000000000000000
+00011000010000100010010000000000
+11011000010000000000000010100000
+11100010001010001000000000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011010001000100111111000000000
+01100000000100010000000010011010
+01011000000000000000000000000000
+01100000000100010000000010011110
+01110000100000001001000000000001
+01110000100000000000011000000100
+00100000010000000110001000100100
+00011010010000100111111000000000
+11100010001000011000000000000000
+00100000000000000010011100010000
+00100000000000000010011100010000
+00100000000000000010011100010000
+00100000011000000000000000000000
+01110000100010010111001101110000
+00100000000000000000101110111000
+00100000011000000000000000000000
+01110000100010010111001100110000
+00100000011000000000000000000000
+00011111111010011111111000000000
+01100000000100010000000001000101
+01110000100000000100101100000000
+00100000011000000000000000000000
+00100000010000000110001011001001
+00100000010000000110001011111010
+11101010001010001000000000000000
+00011010001000001010001000000001
+00011000000000000000111000000000
+10101000010011000000000000000000
+00100000001000001110001011110001
+01101000000100001000000001000110
+01111001001000000111111000000110
+01111001001000000111111000000111
+01100000000100001000000001000110
+01110000100000000100011100000010
+01110000100000000100011110000010
+01111001001111111111111000000111
+01100000000100001000000001000110
+01110000100000000100011110001010
+00100000000000000000000000001011
+01110000100000000100011111001010
+00100000000000000000000000100001
+01110000100000000100011101001010
+00100000000000000000000000101100
+01110000100000000100011111001010
+00100000000000000000000000010110
+01110000100000000100011110001010
+00100000000000000000000000100001
+01110000100000000100011110000010
+00100000000000000000000000000001
+01110000100000000100011110010010
+00100000000000000000000000001010
+01110000100000000100011110110010
+01101000000100001000000000000111
+01110000100000000100011110010010
+00100000000000000000000000000001
+01110000100000000100011110000010
+10101111111011000000000000000000
+00100000001000001110001011010010
+01101000000100010000000001000101
+00011111111000001111111000000001
+01100000000100010000000001000101
+00011000111000001000111000000001
+00101000111000000001111000001000
+00100100001000001110001011010010
+11000010000000000110001011001111
+01110000100000000100011110000011
+00100000011000000000000000000000
+01110000100000000100011110000010
+00100000000000000000000000001100
+01110000100000000100011110000000
+01110000100000000100011110000010
+00100000000000000000000010010110
+00100000011000000000000000000000
+00100000010000000110001011111010
+01110000100000000100011110100010
+00011010001000100111111000000000
+01100000000100010000000001001000
+01111001001000000000010000001011
+00101111111011000000000000001111
+01111001001000001000010000001111
+01100000000110010000000001001010
+01110000100000000000011000000001
+00100000011000000000000000000000
+01101000000100001000000100101100
+11000011000000001110001100001010
+00100000011000000000000000000000
+00100000010000000110001011001001
+00100000010000000110001100000000
+00100000010000000110001100001010
+01110000100000000100011110000011
+00100000011000000000000000000000
+01101000000100010000000100100100
+01100000000100010000000001000101
+00100000010000000110001100000000
+11011000111000000000000000000001
+00100000010000000110000110010101
+00100000010000000110001100001010
+00101111111011111111111000000000
+00100000010000000110000110001110
+01110000100000000100011110000011
+00100000011000000000000000000000
+01101000000100010000000001011110
+10011000000000000001010000000000
+00100000011000000000000000000000
+00011001010000100111111000000000
+01100000000100010000000001011110
+00100000011000000000000000000000
+00011000011000100111111000000000
+01100000000100010000000001011000
+00100000011000000000000000000000
+01101000000000010100001011010011
+01100000000100010000000001010010
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+00011111001000001111001111111000
+00100000010000010110001100110101
+00100000011000101000000000000000
+00100000001000010110001100101010
+00011111001000001111001000001000
+00011111001000001111001111111100
+00100000010000010110001100111000
+00100000011000101000000000000000
+00100000001000010110001100101111
+00011111001000001111001000000100
+00100000001000000110001100111011
+11101000110001000000000000000000
+11100001010001000000000000000000
+00100000011000000000000000000000
+11101000110000100000000000000000
+11100001010000100000000000000000
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+11101000110000001000000000000000
+11100001010000001000000000000000
+11000010000000000110001100111101
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+00011111001000001111001111111000
+00100000010000010110001101001110
+00100000011000101000000000000000
+00100000001000010110001101000011
+00011111001000001111001000001000
+00011111001000001111001111111100
+00100000010000010110001101010001
+00100000011000101000000000000000
+00100000001000010110001101001000
+00011111001000001111001000000100
+00100000001000000110001101010100
+11101000011001000000000000000000
+11100000101001000000000000000000
+00100000011000000000000000000000
+11101000011000100000000000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+11101000011000001000000000000000
+11100000101000001000000000000000
+11000010000000000110001101010110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110000110100000000110000
+01101000000000001100001010111110
+00100000011110100000000000000000
+00100000010000000110001111110011
+00100000010000101110001111111001
+00100000010000000110001110001110
+01101000000000001100001010111110
+00011111111000100010011000000000
+01101000000010010100001010111100
+01100000000010010000000110101111
+00011010011000100111111000000000
+00100000001110100101110100110000
+00011010011000001010011111111111
+00011000010000100010001000000000
+11101010001000001000000000000000
+01101000000010001000000110100111
+10011000010001100111110000000000
+00100000010000101110001101110101
+00100000001000010110001101110001
+11101010001000001000000000000000
+00011111111000001111111000000001
+11100010001000001000000000000000
+01101000000010010000000110101111
+00011000010000001000010000100010
+01100000000010010000000110101111
+00100000001000000110001101100101
+01011000000000000000000000000000
+11100010001000001000000000000000
+01101000000000001000000110101000
+11100000101000001000000000000000
+11000000100110011110001110000011
+11011010010000000100001001100001
+11101000110000110000000000000000
+11100000101001000000000000000000
+01011000000000000000000000000000
+11100000101001000000000000000000
+00011010010000100000110000000000
+00100000010000000111111010000111
+00011000000000000111110000000001
+00100000011000000000000000000000
+11000000000110110110001110000111
+11000000000110111110001110001011
+11011010010000000100010010100010
+00100000001000000110001101111011
+11011000110000000100010101111011
+00100000010000000111111010000111
+11011000110000000100010010100010
+00100000001000000110001110000000
+11011000110000000100010101110011
+00100000010000000111111010000111
+00100000001000000110001110001001
+00100000010000000011000111010100
+01101000000000001100001010111110
+00100000011110100000000000000000
+01101000000000010100011100001011
+11000010100000000110001110100011
+01101000000000001100010100101011
+11000000000000000110001110011100
+01101000000000001000001101110111
+00101111111000011000000011000000
+00100000001000001110001110011100
+00101111111000011000000001000000
+00100000001000001110001110100001
+00101111111000011000000000000000
+00100000001000001110001110011111
+01110000000000011010100000110101
+01101000000000110000001101110010
+00100000001000000110001110100111
+01110000000000011010100000110111
+00100000001000000110001110100111
+01110000000000011010100000110110
+00100000001000000110001110100111
+01111001001000000000000000100101
+01000100110000111100000000110000
+01110000000000011010100000110011
+01101000000000110000000001000000
+01100000000000110000000110101001
+01101000000000010100001010111100
+11101111111010001000000000000000
+00011111111000001111111000000001
+01100000000000010000000110101111
+01100000000010001000000110100111
+01101000000000001100001010111110
+00011111111000100010011000000000
+01101000000000010000000110101111
+00011111111000100010001000000000
+00100000010000000110001110111111
+00100000011101000000000000000000
+01101000000010010000000110101111
+00011000010000001000010000100010
+01100000000010010000000110101111
+00011000010000001000010111111111
+11101000010000001000000000000000
+01100000000000001000000110100111
+00011010011000001010011111111111
+00100100001000101110001110101111
+01101000000000001100001010111110
+00011111111000001111111111111111
+01100000000000001000000110100111
+00100000011000000000000000000000
+01101000000000001000000110101000
+11000000100110011110001111000110
+11011010010000000000000110101000
+11011111001000000000000000000111
+00100000010000000111111101010101
+00100000001000101110010011000000
+00100000011000000000000000000000
+11000000000110110110001111001001
+11000000000110111110001111100100
+00100000001000000110001111000001
+11101010001010001000000000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+11011000101000000000100111100001
+11011111001000000000000000010000
+00100000010000000111111010011111
+01101000000000011000001101110101
+01100000000000011000100111100001
+00100000010000000110001111011011
+01101000000000010000100111111110
+00011111111100001111111000000000
+00011111111011010000010000000000
+11101000110000001000000000000000
+10011000010000001111111000000000
+01101000000010011000001101110010
+10011000010001100111110000000000
+00100000001000101110010011000000
+00100000011000000000000000000000
+11011000110000000000100111100001
+00100000010000000111000110101111
+11101010001000001000000000000000
+00100000010000000111000110110000
+00011000000000000110110000111000
+00011000000000000110110000000000
+00100000010000000111000101000101
+11011000101000000000100111110001
+00100000001000000111000111000000
+11101010001010001000000000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011000110000100010001000000000
+00011000110000001010011000001000
+11011010010000000100010101110011
+11011111001000000000000000001000
+00100000010000000111111101010101
+00100000001000101110010011000000
+00011010011000100010001000000000
+11011010010000000100010101111011
+11011111001000000000000000001000
+00100000010000000111111101010101
+00100000001000101110010011000000
+00100000011000000000000000000000
+01101000000000010100001010111100
+11101111111010001000000000000000
+00011111111000001111111000100010
+11101111111000001000000000000000
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000001100001010111110
+00011111111000100111001000000000
+01101000000010010100001010111100
+01011000000000000000000000000000
+11100000010000001000000000000000
+00011000010000001000010000100010
+00011111111000001111111000000001
+11000010000000000110001111111101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110001000100000000110001
+00100000010000000110001110001110
+00100100001101000110010000001010
+00011010001000001000110000001010
+11011000101000000100001001100001
+00100000010000000111111010000111
+00100000001000000110010010110001
+01110000010000100101110100000000
+00100000011000000000000000000000
+01101000000001001100010101110001
+00100000001110100110010000101100
+00100000010000000110001110001110
+00100100001101000110010000101100
+01101000000000010000000110101111
+00011111111000001000110000000001
+11011000101000000100010101111011
+00100000010000000111111010000111
+11011000101000000100010010100010
+00100000010000000111111010000111
+01110000010001001011001000000001
+00100000011000000000000000000000
+01101000000000010100010101110001
+00100100001110100110010000011100
+01101000000000110100010101110011
+00100000001110100110010000101011
+01110000010010001100011000000011
+01011000000100010010001000110011
+01100000000000011100010010100010
+01011000010001000101010101100110
+11100000101000011000000000000000
+01011000011101111000100010011001
+11100000101000011000000000000000
+01011000000000000001000100100010
+11100000101000011000000000000000
+01011000001100110100010001010101
+11100000101000011000000000000000
+01011000000000000000000001100110
+11100000101000001000000000000000
+01110000010001001011001000000001
+00100000011000000000000000000000
+01110000010010001100011000000001
+01110000010001001011001000000000
+00100000011000000000000000000000
+01101000000000110000001101110010
+01100000000000110000000110101001
+01110000000000011010100000110100
+00100000001000000110010000110101
+01101000000000110000000001000000
+01100000000000110000000110101001
+01110000000000011010100000110011
+01111001001000000000000000100101
+01000100110001001100000000110001
+01101000000000001100000100110010
+11000000000001010110001101011010
+00100000010000000110010001100011
+00100000010000000110010001011111
+01101000000000001000000110101000
+11000000000110100110010000111111
+11000000000110011110010010001011
+00100000011000000000000000000000
+00100000010000000110010010001001
+00100000001000000110010001110010
+01111001001000000000000000100101
+01000100110001010100000000110001
+00100000010000000110010001001101
+01101000000000001000000110100111
+11000001011111111000000000000000
+01101000000000110000000110101001
+01100000000000110100001001110011
+01101000000000001000000110101000
+01100000000000001100001010110101
+11000000000110011110010001010001
+11000000000110100110010001010011
+00100000011000000000000000000000
+00100000010000000110010001011011
+01101000000000001000000110100111
+11000001011111111000000000000000
+00100000001000000110010001111010
+00100000010000000110010010010010
+00100000001000000110010010110001
+00100000010000000110010010010000
+00100000001000000110010010110111
+01111001001000000000000000100101
+01000100110001100100000000110001
+01011000000000000000000000000000
+01100000000000011000000001000000
+11100000101000011000000000000000
+00100000001000000110010001100011
+11011000010000000000000000000001
+11011010001000000000000110100111
+11011010010000000000000000011100
+00100000001000000110001001000101
+11011000010000000000000000000001
+11011010001000000000000110100111
+11011010010000000000000000011100
+00100000001000000110001001101111
+01111001001000000000000000100101
+01000100110001101100000000110001
+00100000010000000110010010010111
+01111000010101000111110000000000
+00100000010000000110010010011011
+00100000011101000000000000000000
+01110000000000011010011100000000
+01101000000000110000000110101001
+01100000000000110000000110000100
+01101000000000001000000110101000
+01100000000000001000000110000011
+11011000010000000000000000011100
+11011010001000000000000110000011
+11011010010000000000000000000000
+00100000001000000110001001101111
+11011000010000000000000000000110
+11011010001000000100010100111110
+11011010010000000000000000011101
+00100000001000000110001001101111
+11011000010000000000000000000110
+11011010001000000100010100111110
+11011010010000000000000000011101
+00100000001000000110001001000101
+01111001001000000000000000100101
+01000100110001110100000000110001
+11011000010000000000000000000111
+11011010001000000000000110101000
+11011010010000000000000000000000
+01101000000000001000000110100111
+00011111111011111111111000000111
+10011010010000001010010000000000
+00100000001000000110001001000101
+11011000010000000000000000010000
+11011010010000000000000000100011
+01101000000000001000000110100111
+00011111111100100111111000000000
+10011010010000001010010000000000
+00100000011000000000000000000000
+11011010001000000100010010100010
+00100000001000000110010010001100
+11011010001000000100001001100001
+01111001001000000000000000100101
+01000100110001111100000000110001
+00100000010000000110010010000011
+00100000001000000110001001101111
+11011010001000000100010010100010
+00100000001000000110010010010011
+11011010001000000100001001100001
+01111001001000000000000000100101
+01000100110010000100000000110010
+00100000010000000110010010000011
+00100000001000000110001001000101
+11011000010000000000000000011100
+11011010001000000000000110001010
+11011010010000000000000000000000
+00100000001000000110001001000101
+01111001001000000000000000100101
+01000100110010001100000000110010
+01011000000000000000000110001010
+01100000000000010000000110101111
+01110000000000011010011100000000
+11011111001000000000000000000100
+00011111001000100111111000000000
+01100000000000001000100110111110
+01101000000000010000000110101111
+00011111111000100010001000000000
+00100000010000000110010010111011
+00100000011101000000000000000000
+01101000000000010000000110101111
+00011111111000001111111000000111
+01100000000000010000000110101111
+01101000000000001000000110100111
+00011111111000001111111000000001
+01100000000000001000000110100111
+01101000000000001000100110111110
+00011111111000100111001000000000
+11000010000000000110010010100001
+00100000011000000000000000000000
+01101000000001000100001001100001
+01101000000011000100001001101001
+10011000010000011111111000000000
+00100000011110100000000000000000
+01110000010000100101110100000001
+00100000011000000000000000000000
+01101000000000110100001001110011
+00100000011110100000000000000000
+01110000010001001011001000000001
+00100000011000000000000000000000
+11011010010000000000000110101000
+11011111001000000000000000000111
+00100000010000000111111101010101
+00100000001000101110010011000000
+00100000011000000000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110010010100000000110010
+01111001001000000000010000000111
+00100000010000000110010011110101
+01111101001000001000010000000111
+01111001001000000000000000100101
+01000100110010011100000000110010
+00101000010011000000000000000111
+00011000010000010000111000011111
+01101000000000100000000010100000
+11111001001000001111111000000000
+01100000000000100000000010100000
+01101000000000100000000010100100
+11111101001000001111111000000000
+01100000000000100000000010100100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110010100100000000110010
+00101000010011000000000000000111
+00011000010000010000111000011111
+01101000000000100000000010100000
+11111001001111111111111000000000
+01100000000000100000000010100000
+01101000000000100000000010100100
+11111001001111111111111000000000
+01100000000000100000000010100100
+00100000011000000000000000000000
+00100000010000000110010011010010
+00100000001000000110010011100000
+00100100010101011110010011000111
+11011000101000001000000001111100
+00100000010000000110010100000100
+01111001010000000000010000000111
+11011000101000001000000001111000
+00100000010000000110010100000100
+01111001001111111000010000000111
+11011000101000001000000001110000
+00100000001000000110010100000100
+01111001010000000000010000000111
+00100000010000000110010100000011
+01111001001000000000010000000111
+11011000101000001000000001110000
+00100000001000000110010100000100
+00011000010000010000111000000111
+00011000010010010111111000000000
+00011111111000010111111000000011
+10011000101000001000101000000000
+11101000101000001000000000000000
+00100000011000000000000000000000
+11011000101000001000000001110100
+00100000001000000110010011110110
+11011000101000001000000100011100
+00100000010000000110010011101101
+00101000010011111111111000000111
+00100000001000001110010011111011
+10101111111011000000000000000000
+00100000011000000000000000000000
+10101111111011111111111111111111
+00100000011000000000000000000000
+00101111110011111111111000000111
+00100000001000000110010100000000
+00101111110011000000000000000111
+01011000000000000000000000000000
+01111101001000001111111000000111
+10011000010000101000010000000000
+11011000101000001000000001110100
+00100000010000000110010011101101
+00101000010011111111111000000111
+11111001001000001111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+11011010001111111111111111111111
+01101000000100001000000010000001
+00101111111011111111111000000001
+00100000010000001110010101001101
+00011111111000010010010000000011
+00011010010001100111110000000001
+00100000010000101110010101001111
+00101111111011111111111000000010
+00100000010000001110010101001001
+00101111111011111111111000000011
+00100000010000001110010101001011
+00101111111011111111111000000101
+00100000010000001110010101010001
+00101111111011111111111000000110
+11011000111000000000000000000100
+00100000010000001110010101010101
+01111101001000001010001000000100
+00101111111011111111111000000111
+11011000111000000000000000000101
+00100000010000001110010101010101
+01101000000100001000000010000010
+00101111111011111111111000000000
+11011000111000000000000000000011
+00100000010000001110010101010101
+01101000000110001000000010000000
+00101000010011111111111000000000
+11011000111000000000000000000101
+00100000010000001110010101010101
+10011000010000011111111000000000
+00101111111011111111111000000001
+11011000111000000000000000000110
+00100000010000001110010101010101
+00101111111011111111111000000010
+11011000111000000000000000000111
+00100000010000001110010101010101
+00101111111011111111111000000011
+11011000111000000000000000010010
+00100000010000001110010101010101
+00101111111011111111111000000100
+11011000111000000000000000010011
+00100000010000001110010101010101
+00101111111011111111111000000101
+11011000111000000000000000010100
+00100000010000001110010101010101
+00101111111011111111111000000110
+11011000111000000000000000010101
+00100000010000001110010101010101
+00101111111011111111111000000111
+11011000111000000000000000010110
+00100000010000001110010101010101
+01101000000100001000000001100010
+00101111111011111111111000000100
+00100000010000001110010101010011
+01111001001000000000000000100101
+01000100110010101100000000110010
+01101000000100100000000001111000
+01101000000110100000000001111100
+10011000010000011111111000000000
+00011111111001000111111000000000
+10011010001000010111111000000000
+01101000000110100000000001111100
+10011000010000011111111000000000
+01100000000100100000000001111100
+00100000011000000000000000000000
+11011000111000000000000000000110
+00100000001000000110010101011001
+11011000111000000000000000001001
+00100000001000000110010101010111
+11011000111000000000000000010111
+00100000001000000110010101010111
+11011000111000000000000000011001
+00100000001000000110010101011001
+11011000111000000000000000011011
+00100000001000000110010101011001
+11011000111000000000000000000010
+00100000001000000110010101011001
+11011111001000000000000000000001
+00100000001000000110010101011010
+11011111001000000000000000000100
+00100000001000000110010101011010
+11011111001000000000000000000010
+11111001001111111010001000000000
+00011000111000001000111000000001
+11000010000000000110010101011010
+00100000011000000000000000000000
+00100000010000000110010101101010
+11011000010000000000000000000110
+00100000001000000110010011101000
+00100000010000000110010101011110
+11011000010000000000000000000110
+00100000001000000110010011111101
+00100000010000000110010101101010
+01101000000100001000000001111000
+01111001001000000111111000000111
+01100000000100001000000001111000
+11011000010000000000000000000111
+00100000001000000110010011011111
+01101000000100001000000010000001
+00011111111000010111111011111011
+01100000000100001000000010000001
+00100000011000000000000000000000
+01101000000100001000000010000001
+00101111111011111111111000000010
+00100000011000000000000000000000
+00100000010000000110001011000100
+01011000000000000000011111100000
+11011010001000000100000111110000
+11011000010000000000000000000010
+00100000010000000110001100001101
+00100000001000000110001011000111
+01111001001000000000000000100101
+01000100110010110100000000110010
+00100000010000000110001011000100
+01011000000000000000011111100010
+11011010001000000100001010111111
+11011000010000000000000000001110
+00100000010000000110001100001101
+00100000010000000110001011000111
+01101000000000001100001011001111
+11000010100000000110010110000100
+11000010100000001110010110011000
+11000010100000010110010110101100
+00100000011000000000000000000000
+01101000000010010100001011001011
+01011000000000001010101001010101
+10011000010001100111110000000000
+00100000001000101110010110001101
+01011000000000000100110111111010
+01100000000000010100001011001001
+01011000000000000100100010010100
+01100000000000010100001011000011
+00100000001000000110010110010101
+01101000000000010100001011001001
+00100100001110100110010110010001
+01011000000000000100110111111010
+01100000000000010100001011001001
+01101000000000010100001011000011
+00100100001110100110010110010101
+01011000000000000100100010010100
+01100000000000010100001011000011
+01011000000000000000000001100100
+01100000000000010100001011001101
+00100000011000000000000000000000
+01101000000010010100001011001011
+01011000000000001010101001010101
+10011000010001100111110000000000
+00100000001000101110010110100001
+01011000000000000101100100110010
+01100000000000010100001011000111
+01011000000000000100001100100011
+01100000000000010100001011000001
+00100000001000000110010110101001
+01101000000000010100001011000111
+00100100001110100110010110100101
+01011000000000000101100100110010
+01100000000000010100001011000111
+01101000000000010100001011000001
+00100100001110100110010110101001
+01011000000000000100001100100011
+01100000000000010100001011000001
+01011000000000000000000110010000
+01100000000000010100001011001101
+00100000011000000000000000000000
+01101000000010010100001011001011
+01011000000000001010101001010101
+10011000010001100111110000000000
+00100000001000101110010110110101
+01011000000000000110100101000110
+01100000000000010100001011000101
+01011000000000000101001101110111
+01100000000000010100001010111111
+00100000001000000110010110111101
+01101000000000010100001011000101
+00100100001110100110010110111001
+01011000000000000110100101000110
+01100000000000010100001011000101
+01101000000000010100001010111111
+00100100001110100110010110111101
+01011000000000000101001101110111
+01100000000000010100001010111111
+01011000000000000000000000110010
+01100000000000010100001011001101
+00100000011000000000000000000000
+01101000000000001100001011001111
+11000010100000000110010111000101
+11000010100000001110010111000111
+11000010100000010110010111001001
+00100000011000000000000000000000
+01110000100010010111000110111111
+00100000001000000110010111001101
+01110000100010010111000110101111
+00100000001000000110010111001101
+01110000100010010111000110001111
+01101000000000001100001011010000
+01100000000100001000100101110011
+00100000001000000110010111001101
+01111001001000000000000000100101
+01000100110010111100000000110010
+01101000000100001000000001010011
+01111001001000000111111000000111
+01100000000100001000000001010011
+01101000000100001000100101110011
+00011111111000011111111000110000
+01100000000100001000100101110011
+01110000100010010000011001111100
+01110000100010010111001010101010
+00100000000000000001001110001000
+01101000000110010000000101010000
+01101000000100001000000001010011
+01111001001111111111111000000111
+01100000000100001000000001010011
+01100000000010010100001011010001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110011000100000000110011
+01101000000000001100001011001111
+11000010100000000110010111100101
+11000010100000001110010111101001
+11000010100000010110010111101101
+00100000011000000000000000000000
+01101000000000010100001011001001
+01101000000010010100001011000011
+11011010011000000000000011001000
+00100000001000000110010111110001
+01101000000000010100001011000111
+01101000000010010100001011000001
+11011010011000000000000001100100
+00100000001000000110010111110001
+01101000000000010100001011000101
+01101000000010010100001010111111
+11011010011000000000000000110010
+00100000001000000110010111110001
+10011000010001100010001000000000
+01101000000000010100001011010001
+10011000010001100111111000000000
+00100100001000010110010111111110
+01101000000010010100001011001101
+10011000010011111010010000000000
+00011010011000100111111000000000
+10011010001011111111111000000000
+10011010010000001111111000000000
+10011010001001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+00100000011000000000000000000000
+00011000010000100111111000000000
+01101000000010010100001011010001
+10011000010001100111111000000000
+01101000000010010100001011001101
+10011000010011111010010000000000
+00011010011000100111111000000000
+10011010001011111111111000000000
+10011010010001100111111000000000
+00100000001000000110010111111010
+00100000011101011000000000000000
+01110000010001011111111100000000
+01110000000001000001110000000011
+01110000000001000001110100000011
+01110000000001000010000100010001
+01110000000001000010001000010011
+01011000000000000000000000000000
+01100000000000011000010000011110
+01100000000000001100001011100100
+01110000010001110000101000000000
+01111001001000000000000000100101
+01000100110011001100000000110011
+01011000000000000000000000000000
+01100000000000001100001011100100
+01100000000000001100010111111100
+01100000000000001100010111110101
+01101000000000001100011000000011
+11000000000000001110011000011011
+01110000010001100000000101010000
+00100000011000000000000000000000
+01110000010001100000000100000000
+00100000011000000000000000000000
+00011000010000011000010000000010
+00100000011000000000000000000000
+00011000010000100111111000000000
+00011111111011011111111000000000
+01100000000000001100010111111010
+00011000000000000111111000111111
+00011111111011011111111000000000
+01100000000000001100010111111001
+00011000000000000111111000000001
+00011111111011011111111000000000
+01100000000000001100010111111000
+00100000010000000110011001010101
+00011000010000100111111000000000
+00100000011000000000000000000000
+00011111111011011111111000000000
+01100000000000001100010111111010
+00011000000000000111111001110011
+00011111111011011111111000000000
+01100000000000001100010111111001
+00011000000000000111111000000001
+00011111111011011111111000000000
+01100000000000001100010111111000
+00100000001000000110011001010101
+01101000000000001100010111111011
+00100000001110100110011000111000
+01011000000000000000000001110000
+00100000011000000000000000000000
+01011000000000000000000010101010
+00100000011000000000000000000000
+00011111111011011111111000000000
+01100000000000001100010111111010
+00011000000000000111111011101111
+00100000010000000110011001001001
+01101000000010010000010000100110
+00011000010000100000101000000000
+11100000101000001000000000000000
+00011000101000100000010000000000
+01100000000010010000010000100110
+00011000000000000111111011111111
+00100000010000000110011001001001
+01101000000010010000010000100110
+00011000010000100000101000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+00011111111011011111111000000000
+01100000000000001100010111111001
+01101000000000010100010111111001
+00011111111011010111111000000000
+01100000000000011000010000100011
+11011010001000000000000100000111
+11011010010000000000000000001111
+00100000010000000110011001100010
+00011111111000101111111011010111
+00011111111001000111111000000000
+00011111111011011111111000000000
+00100000011000000000000000000000
+01101000000000011100010111111000
+01100000000000011000010000100011
+11011010001000000000000100000111
+11011010010000000000000000001111
+00100000010000000110011001100010
+00011111111011010111111000000000
+11011010010000000000000000000111
+00100000010000000110011001100010
+00011111111000101111111000101011
+00011111111001000111111000000000
+00011111111011011111111000000000
+00011111111000100000010000000000
+00100000011000000000000000000000
+11011010011000000000000000000000
+00011010010000100111001000000000
+00100000010000000111111001000011
+00011111111000100000010000000000
+00011000010000100111111000000000
+00011010011000111010011000000000
+11000011000001000110011001101011
+10011010001000101000010000000000
+00011010011000001010011000000001
+00011000010000111000010000000000
+01101000000000011000010000100011
+00011010010000001010010111111111
+00101010010000011111111011111111
+00100000001000001110011001110101
+00011010010000100111001000000000
+00100000010000000111111001000011
+00101111111011111111111000000000
+01111001001000001000010000000000
+00100000001000000110011001100110
+00011000010000110111111000000000
+00100000011000000000000000000000
+01101000000010001100010111110101
+00011000010010111000010000000000
+01111001001000000000010000000000
+01101000000000001100010111111011
+00100100010110100110011000011101
+01100000000010001000010000111100
+00100000011000000000000000000000
+00011000010000111000010000000000
+01101000000000001100010111111011
+01111001001110100000010000000000
+00100000011000000000000000000000
+01101000000010001000010000101011
+01110000000001000010110111010111
+00100000010000000110011111000001
+01101000000000001100001011100001
+01111001001000000111111000000110
+01111001001000000111111000000111
+01100000000000001100001011100001
+01110000010001011111101100000000
+00100000001000000110011110100001
+01101000000000001100001011100001
+01111001001000000111111000000111
+01100000000000001100001011100001
+00100000001000000110011110100001
+01111001001000000000000000100101
+01000100110011010100000000110011
+01101000000000001100011100001010
+11000000000000000110011010010100
+00100000001000000110011101010101
+01101000000000010000001010001101
+00011111111000100000110000000000
+00100000010000000110011010111111
+01101000000000001000010000101011
+11000000000000000110011010011010
+00100000001000000110011100100000
+01111001001000000000000000100101
+01000100110011011100000000110011
+01101000000000001000010000101100
+11000000000111111110011010000010
+11000000001110011110011010001011
+11000000011101111110011010100010
+11000000001010011110011101001101
+00100000011000000000000000000000
+01101000000000010000010000110000
+00011111111000100000110000000000
+00100000010000000110011011001010
+01101000000000001000010000110010
+11000000001000001110011010101100
+11000000001000000110011010110100
+11000000001110001110011011101101
+11000000001110000110011011111001
+11000000001001001110011100000100
+00100000001000000110011110100001
+00100000010000000110011010110110
+00100000001000000110011010101110
+01101000000000001100001011100100
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001011100100
+00100000010000000110011111101101
+00100000001000000110011110100001
+00100000010000000110011010110110
+00100000001000000110011110100001
+00100000010000000110011011010010
+00100000001000000110011011011110
+00100000010000000110011011010010
+11101000110000001000000000000000
+00011111111010010111111000000000
+01100000000000001100011000000010
+11101000110000001000000000000000
+01100000000000001000010000110111
+00100000011000000000000000000000
+11101000110000001000000000000000
+01100000000000001000010000101010
+00011111111010010111111000000000
+01100000000000001000010000101011
+11101000110000001000000000000000
+01100000000000001000010000101100
+00100000010000000110011011010101
+01100000000010010000010000101110
+00011000110000100111111000000000
+01100000000000010000010000110000
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000110111111000000000
+01100000000000001000010000110010
+00100000010000000110011011010101
+01100000000010010000010000110011
+00011000110000100111111000000000
+01100000000000010000010000110101
+00100000011000000000000000000000
+01101000000000010000010000110101
+00011111111000100000110000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000010000000000
+00011000010000110000010000000000
+11000011100000000000000000000000
+11101000110000001000000000000000
+00011111111010011111111000000000
+00011111111100100111111000000000
+10011000010000001000010000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+01100000000000001100010111110101
+11101000110000001000000000000000
+01100000000000001000010000111000
+11101000110000001000000000000000
+01100000000000001000010000111001
+11101000110000001000000000000000
+01100000000000001000010000111010
+11101000110000010000000000000000
+01100000000000010100010111110110
+11101000110000001000000000000000
+01100000000000001000010000111011
+11101000110000001000000000000000
+01100000000000001100011000000000
+00100000011000000000000000000000
+00100000010000000110011010111000
+00100000001000000110011011101111
+01101000000000001100001011100100
+01111001001000000111111000000101
+01111001001000000111111000000110
+01100000000000001100001011100100
+01101000000010001100010111110101
+00011000010010111000010000000000
+00011000010000011000010000000011
+00100000010000000110100000100000
+01110000010001011111111100000011
+00100000001000000110011110100001
+01110000000010011011110100001000
+00100000010000000111110110000110
+00100000010000000110011010111000
+01101000000000001100011000000010
+00011111111001100111110000000001
+00100000001000101110011100000000
+00100000001000000011101100110001
+01101000000000001100001011100100
+01111001001000000111111000000111
+01100000000000001100001011100100
+00100000001000000110011110100001
+00100000010000000110011011010010
+11101000110000001000000000000000
+01100000000000001000100111100001
+00100000010000000100100001111010
+00100000010000000100100010001001
+01011000000000000000000000001110
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001100010111111011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110011100100000000110011
+01011000000000000001010111101111
+11100000101000010000000000000000
+01011000000000000001000110010001
+11100000101000010000000000000000
+01101000000000001000100111100001
+11100000101000001000000000000000
+01011000000000000000000000000111
+11100000101000101000000000000000
+01011000000000000000000000000001
+11100000101000010000000000000000
+00100000010000000110011000110100
+11100000101000001000000000000000
+00100000011000000000000000000000
+00100000001000000110011100100001
+01111001001000000000000000100101
+01000100110011101100000000110011
+01101000000000001000010000101100
+11000000001110011110011100101010
+11000000000111111110011100101110
+11000000011101111110011101001000
+11000000011111111110011101000000
+11000000001010011110011101001111
+00100000011000000000000000000000
+01101000000000001100001011100100
+01111001001000000111111000000011
+01100000000000001100001011100100
+00100000001000000110011110100001
+01101000000000001100001011100100
+01111001001000000111111000000011
+01111001001000000111111000000010
+01100000000000001100001011100100
+01101000000000001000010000101010
+00100000010000000110011000101011
+01100000000000001000010000101101
+00100000010000000110011111000001
+01101000000000001000010000101010
+00011111111010110111111000000000
+01100000000000001100010111110101
+00011111111010111111111000000000
+01111001001111111111111000000001
+01111001001000000111111000000000
+11011000010000000100010111111101
+01100000000010010000010000100110
+00100000010000000110011000111010
+00100000001000000110011110100001
+01101000000000010000010000110000
+00011111111000100000110000000000
+00011111111000001111111000000001
+01100000000000010000010000110000
+11101000110000001000000000000000
+01101000000010001100011000000000
+10011000010000001111111000000000
+01100000000000001100011000000000
+00100000010000000110100001010011
+00100000010000000110011001110111
+00100000010000000110100000111000
+00100000010000000110100001011101
+00100000001000000110011110100001
+01110000000010011011110100001001
+00100000010000000111110110000110
+00100000010000000110011000010001
+01101000000000001000010000101010
+00100000010000000110011000101011
+01100000000000001000010000101101
+00100000010000000110011111000001
+00100000001000000110011110100001
+01101000000000010000001010001101
+00011111111000100000110000000000
+00100000010000000110011010111111
+01101000000000001000010000101011
+11000000000000000110011101011011
+00100000001000000110011110010000
+01111001001000000000000000100101
+01000100110011110100000000110011
+01101000000000001000010000101100
+11000000000111111110011010000010
+11000000001110011110011010001011
+11000000011101111110011101100010
+00100000001000000110011110100001
+01101000000000010000010000110000
+00011111111000100000110000000000
+00100000010000000110011011001010
+01101000000000001000010000110010
+11000000001000001110011101101011
+11000000001000000110011101101011
+11000000001110001110011101110110
+11000000001110000110011110000110
+00100000001000000110011110100001
+00100000010000000110011010110110
+01101000000000001100010111110101
+00011111111000110111111000000000
+01101000000010001100010111111100
+10011000010001100111110000000000
+00100000001000101110011101110010
+00100000001000000011101100110001
+01101000000000001100001011100100
+01111001001000000111111000000001
+01100000000000001100001011100100
+00100000001000000110011110100001
+00100000010000000110011010111000
+01101000000000001100011000000010
+01101000000010001100010111111100
+10011000010001100111110000000000
+00100000001000101110011101111101
+00100000001000000011101100110001
+00100000001000000110011110100001
+01101000000000001100001011100100
+01111001001000000111111000000101
+01111001001000000111111000000110
+01100000000000001100001011100100
+01101000000010001100010111110101
+00011000010010111000010000000000
+00011000010000011000010000000011
+00100000010000000110100000100000
+00100000001000000110011110100001
+00100000010000000110011010111000
+01101000000000001100011000000010
+01101000000010001100010111111100
+10011000010001100111110000000000
+00100000001000101110011110001100
+00100000001000000011101100110001
+01101000000000001100001011100100
+01111001001000000111111000000111
+01100000000000001100001011100100
+00100000001000000110011110100001
+01101000000000001000010000101011
+01101000000010001100010111111100
+10011000010001100111110000000000
+00100000001000101110011110010110
+00100000001000000011101100110001
+00100000001000000110011110100001
+01101000000000001000010000101100
+11000000001110011110011110011011
+11000000011101111110011101001000
+11000000011111111110011101000000
+11000000001010011110011110100000
+01101000000000001100001011100100
+01111001001000000111111000000011
+01100000000000001100001011100100
+00100000001000000110011110100001
+00100000001000000110011110011111
+00100000001000000110011101001111
+00100000011000000000000000000000
+01101000000000001100010111111111
+00100000011110100000000000000000
+11000000000000011110011110100110
+00100000001000000011101100110001
+01110000010001011111111100000000
+00100000010000000100100001111010
+11011000010000000000000000000001
+01101000000010001100010111110101
+00011000010010111000010000000000
+00011000010000011000010000000011
+11011010001000000000000010101010
+00100000010000000110100000001010
+00100000010000000100100010001001
+00011000101000100000110000000000
+11101000110000010000000000000000
+00100000001110100011101100110001
+00100000011000000000000000000000
+00100000010000000100100010001001
+01011000000000000000000000000100
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001000010000101010
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110011111100000000110011
+01011000000000000000000100111111
+11100000101000010000000000000000
+01101000000000001000010000101101
+11100000101000001000000000000000
+00100000011000000000000000000000
+00100000010000000100100001111010
+00100000010000000100100010001001
+01011000000000000000000000000100
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001000010000101010
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110100000100000000110100
+01011000000000000000000101110011
+11100000101000010000000000000000
+01101000000000001000010000101101
+11100000101000001000000000000000
+00100000011000000000000000000000
+00100000010000000100100010001001
+01011000000000000000000000001110
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001100010111111011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110100001100000000110100
+01011000000000000001010111101111
+11100000101000010000000000000000
+01011000000000000001000110000011
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000011110000
+11100000101000011000000000000000
+01011000000000000000000001111111
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+00100000010000000110011000110100
+11100000101000001000000000000000
+01110000010001100000000100010000
+00100000011000000000000000000000
+00100000010000000100100001111010
+00100000010000000100100010001001
+01011000000000000000000000001110
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001100010111111011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110100010100000000110100
+01011000000000000001010111101111
+11100000101000010000000000000000
+01011000000000000001000110000001
+11100000101000010000000000000000
+01101000000000001100010111110101
+11100000101000001000000000000000
+01011000000000000000000011100000
+11100000101000011000000000000000
+01101000000000010100011000000100
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01101000000000001100011000000110
+11100000101000001000000000000000
+00100000010000000110011000110100
+11100000101000001000000000000000
+00100000011000000000000000000000
+00100000010000000100100010001001
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001100010111111011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110100011100000000110100
+01011000000000000000100111101111
+11100000101000010000000000000000
+01011000000000000000010111100011
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000010001101
+11100000101000001000000000000000
+00100000010000000110011000110100
+11100000101000001000000000000000
+00100000011000000000000000000000
+00100000010000000100100001111010
+00100000010000000100100010001001
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+00011000010000100001011000000000
+01101000000000001100010111111011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01111001001000000000000000100101
+01000100110100100100000000110100
+01011000000000000000100111101111
+11100000101000010000000000000000
+01011000000000000000010111100001
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000010001101
+11100000101000001000000000000000
+00100000010000000110011000110100
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110100101100000000110100
+01101000000000001100011000000001
+00100000011110100000000000000000
+01101000000100010000000100010010
+00100100011110100000000000000000
+00011010001000100111111000000000
+01100000000000001000100110111111
+01100000000010001000100110111110
+00100000010000000100100000001110
+00100100011110100000000000000000
+00100000010000000100100001111010
+00100000010000000100100010001001
+01011000000000000000000000000101
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01101000000000001000010000111100
+11100000101000001000000000000000
+01011000000000000000000111111111
+11100000101000010000000000000000
+01101000000000001100011000000001
+11100000101000001000000000000000
+01101000000000001100010111111110
+11100000101000001000000000000000
+01110000010001100000000100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110100110100000000110100
+01101000000000001100011000000011
+11000001000000001000000000000000
+01101000000000010000010000101110
+00100000011110100000000000000000
+01101000000000001100011000000001
+00011111111000001111111000000001
+01100000000000001100011000000001
+00100000011000000000000000000000
+01101000000000010100011000000111
+00100000001000000111111101101001
+01111001001000000000000000100101
+01000100110100111100000000110100
+01101000000000001100011000000000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011000000000
+01101000000000010100010111110110
+01101000000010010100011100101100
+10011000010001100111110000000000
+00100000001000010110100001101010
+01100000000000010100011100101100
+01101000000000001100011000000001
+00100000001110100110100001110010
+01110000000001000011111100000001
+01101000000000001100010111111110
+01100000000000001000010000111110
+01011000000000000000000011111111
+01100000000000001000010000111101
+00100000001000000110100001110111
+01110000000001000011111100000000
+01101000000000001100010111111101
+01100000000000001000010000111110
+01011000000000000000000011101111
+01100000000000001000010000111101
+01111001001000000000000000100101
+01000100110101000100000000110101
+01101000000000010100011100101100
+00011111111001100111110001111111
+00100000001000010110100001111111
+01101000000000001000010000111111
+00011111111000001111111000000001
+01100000000000001000010000111111
+00100000010000000110011001110111
+01101000000000010100011100101100
+00011111111000001111111000001000
+01101000000010001000010000111111
+10011000010000001010001000000000
+00100000010000000100011111011100
+01100000000000010000001010100000
+00011111111000001111111000000100
+01100000000000010000001010100010
+00011111111000100000101000000000
+01101000000000001000010000111100
+11100000101000001000000000000000
+01101000000000001000010000111101
+11100000101000001000000000000000
+00100000010000000110100010101010
+00100000010000000110100010111100
+01111001001000000000000000100101
+01000100110101001100000000110101
+01101000000000010100011000001001
+00011111111000100000011000000000
+01101000000000010100011100101100
+00011111111000100111001000000000
+00100000010000000110001101000001
+00011000101000100000010000000000
+00011000011000100111111000000000
+01100000000000010100011000001001
+00011000010000100000101000000000
+01101000000000001000010000111110
+11100000101000001000000000000000
+01101000000000010000001010100000
+00011111111000100000101000000000
+01101000000000010100011100101100
+01101000000010001000010000111111
+10011000010000001111111000000000
+00011111111000001111111000000100
+11100000101000010000000000000000
+01101000000000010100001011011010
+11100000101000010000000000000000
+01110000010001100000000100000000
+01101000000000010100011000001011
+11000000000000000101101100100000
+01110000000001000001100000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110101010100000000110101
+01101000000000010100011100101100
+00011111111001100111110001111111
+00100100001000010110100010110011
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000010100011100101100
+00011111111010010111111000000000
+00011111111100011000010000000000
+00011111111000010111111001111111
+00011111111000111111111000000000
+01111001001111111111111000000000
+11100000101000001000000000000000
+11100000101010001000000000000000
+00100000011000000000000000000000
+01101000000000001100011000000001
+00100000011110100000000000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110101011100000000110101
+00100000010000000111110110011110
+00100000010000000011110101101001
+00100000010000000101100100100110
+01111001001000000000000000100101
+01000100110101100100000000110101
+00100000010000000111011011110111
+00100000010000000111011011001110
+00100000010000000111011011100000
+00100000010000000100100000001110
+00100100011110100000000000000000
+00100000010000000100001100101101
+00100000010000000100100000001110
+00100100011110100000000000000000
+01111001001000000000000000100101
+01000100110101101100000000110101
+00100000010000000110100100010011
+00100000010000000100010011110010
+00100000010000000110011110100010
+00100000010000000110100011011000
+01111001001000000000000000100101
+01000100110101110100000000110101
+00100000001000000011110101100101
+01101000000000001000001010101000
+11000010100000000100011000011001
+11000010100000111100011000100011
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110101111100000000110101
+00100000010000000100100000010110
+00100000011110100000000000000000
+01101000000000001000000001001011
+11000011100000110000000000000000
+00100000010000000100011111110101
+01100000000000010000000101101110
+00011111111000100000110000000000
+11101000110000010000000000000000
+00011111111000001111111000000100
+01100000000000010100001001111110
+01110000010000100111110100000110
+01111001001000000000000000100101
+01000100110110000100000000110110
+01101000000000010100001011010110
+00100000001110100110100011111001
+01101000000000001000000001001011
+11000100000000111000000000000000
+01111001001111111111111000000111
+01100000000000001000000001001011
+01110000010000100111110100000101
+01101000000010010100001011010110
+01101000000000010000000101101110
+10011000010000001111111000000000
+01100000000000010000000101101110
+01101000000000010100001001111110
+10011000010001100111111000000000
+01100000000000010100001001111110
+01111001001000000000000000100101
+01000100110110001100000000110110
+01101000000000010100001001111110
+00100000001110100011101100110001
+11011000010000000000000100000100
+10011000010001100111111000000000
+00100100001000010110100100000111
+01111001001000000000000000100101
+01000100110110010100000000110110
+01100000000010010100001001111110
+01101000000000010100001011010110
+10011000010000001111111000000000
+01100000000000010100001011010110
+00100000001000000110100100001001
+01011000000000000000000000000000
+01100000000000010100001011010110
+01101000000000001000000001001011
+01111001001000000111111000000110
+01100000000000001000000001001011
+00100000011000000000000000000000
+01101000000000001100011100001101
+11000010100000000110100100010001
+01110000000000101011000000000001
+00100000011000000000000000000000
+01110000000000101011000000001111
+00100000011000000000000000000000
+01101000000000001100011100001010
+00100100001110100110100100011001
+01101000000000001000001010101111
+00100000011110100000000000000000
+01110000000000101010111100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110110011100000000110110
+01101000000000001000001010110000
+00100000011110100000000000000000
+11000000000000001110100100111010
+11000000000000010110100110010011
+11000000000000011110100101000000
+11000000000000100110100110010111
+11000000000111011110100101001010
+11000000000111100110100110011010
+11000000000001101110100101001111
+11000000000001110110100110011111
+11000000000001111110100101010010
+11000000000010000110100110100101
+11000000000010001110100101011000
+11000000000010010110100110101001
+11000000000010011110100101011110
+11000000000010100110100110101101
+11000000000010101110100101100100
+11000000000010110110100110110001
+11000000000010111110100101101010
+11000000000011000110100110110110
+11000000000011001110100101110000
+11000000000011010110100110111010
+11000000000011011110100101110110
+11000000000011100110100110111110
+11000000000011101110100101111100
+11000000000011110110100111000011
+11000000000011111110100110000010
+11000000000100000110100111000111
+11000000000100001110100110001101
+11000000000100010110100111001011
+00100000011000000000000000000000
+00100000010000000110100111010110
+01110000000000101011000000000010
+01101000000000001100001011100000
+01111001001000000111111000000000
+01100000000000001100001011100000
+00100000011000000000000000000000
+01110000000000101011000000000100
+01101000000000001100001011100000
+11000011100000010000000000000000
+01110000000000101011000000000011
+00100000010000000110100111011110
+01110000000000101011000000000100
+01101000000000001100001011100000
+01111001001000000111111000000010
+01100000000000001100001011100000
+00100000011000000000000000000000
+00100000010000000100100000010110
+00100100011110100000000000000000
+00100000010000000110100111101111
+01110000000000101011000000111100
+00100000011000000000000000000000
+00100000010000000110100111100100
+01110000000000101011000000001110
+00100000011000000000000000000000
+00100000010000000110101000000010
+01110000000000101011000000010000
+01101000000000001100001011100010
+01111001001000000111111000000000
+01100000000000001100001011100010
+00100000011000000000000000000000
+00100000010000000110101000001010
+01110000000000101011000000010010
+01101000000000001100001011100010
+01111001001000000111111000000010
+01100000000000001100001011100010
+00100000011000000000000000000000
+00100000010000000110101000010000
+01110000000000101011000000010100
+01101000000000001100001011100011
+01111001001000000111111000000000
+01100000000000001100001011100011
+00100000011000000000000000000000
+00100000010000000110101000011000
+01110000000000101011000000010110
+01101000000000001100001011100011
+01111001001000000111111000000010
+01100000000000001100001011100011
+00100000011000000000000000000000
+00100000010000000110100111110100
+01110000000000101011000000011000
+01101000000000001100001011100001
+01111001001000000111111000000000
+01100000000000001100001011100001
+00100000011000000000000000000000
+00100000010000000110100111111100
+01110000000000101011000000011010
+01101000000000001100001011100001
+01111001001000000111111000000010
+01100000000000001100001011100001
+00100000011000000000000000000000
+00100000010000000110101000011110
+01110000000000101011000000011100
+01101000000000001100001011100001
+01111001001000000111111000000110
+01100000000000001100001011100001
+00100000011000000000000000000000
+00100000010000000110101000100110
+01101000000000001100001011100100
+01111001001000000111111000000000
+01100000000000001100001011100100
+01110000000000101011000000011110
+00100000011000000000000000000000
+00100000010000000110101000101101
+01101000000000001100001011100100
+01111001001000000111111000000010
+01100000000000001100001011100100
+01110000000000101011000000100000
+01101000000000001100010111111100
+00011111111010011111111000000000
+00011111111000011111111000000011
+11011000010000000100010111111101
+01100000000010010000010000100110
+00100000001000000110011000111010
+00100000010000000110101000111000
+01101000000000001100001011100100
+01111001001000000111111000000100
+01100000000000001100001011100100
+01110000000000101011000000100010
+00100000011000000000000000000000
+01101000000000001100001011100000
+11000100000000001000000000000000
+01110000000000101011000000000011
+00100000001000000110100100011001
+01101000000000001100001011100000
+11000001100111111000000000000000
+01110000000000101011000000111011
+01101000000000001000001010101110
+11000001100010111000000000000000
+01110000000000101010111000000000
+01110000000000101011000000001101
+00100000001000000110100100011001
+01101000000000001100001011100000
+00100100011110100000000000000000
+01101000000000001100011100001101
+11000010100000000110100111001110
+11000010100000110110100111010000
+00100000001000000110100111010100
+01101000000000001100001011100010
+11000100000000001000000000000000
+01110000000000101011000000010001
+00100000001000000110100100011001
+01101000000000001100001011100010
+11000001100111111000000000000000
+01110000000000101011000000010011
+00100000001000000110100100011001
+01101000000000001100001011100011
+11000100000000001000000000000000
+01110000000000101011000000010101
+00100000001000000110100100011001
+01101000000000001100001011100011
+11000001100111111000000000000000
+01101000000000001100011100001101
+11000010100000110110100111010000
+00100000001000000110100111010100
+01101000000000001100001011100001
+11000100000000001000000000000000
+01110000000000101011000000011001
+00100000001000000110100100011001
+01101000000000001100001011100001
+11000001100111111000000000000000
+01110000000000101011000000011011
+00100000001000000110100100011001
+01101000000000001100001011100001
+11000001111111111000000000000000
+01101000000000001100011100001101
+11000010100000110110100111010010
+00100000001000000110100111010100
+01101000000000001100001011100100
+11000100000000001000000000000000
+01110000000000101011000000011111
+00100000001000000110100100011001
+01101000000000001100001011100100
+11000100000000011000000000000000
+01110000000000101011000000100001
+00100000001000000110100100011001
+01101000000000001100001011100100
+11000001111111111000000000000000
+00100000001000000110100111010100
+01110000000000101011000000001111
+00100000001000000110100100011001
+01110000000000101011000000010111
+00100000001000000110100100011001
+01110000000000101011000000011101
+00100000001000000110100100011001
+01110000000000101011000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110110100100000000110110
+00100000010000000100100001011110
+01011000000000000000000000000001
+00011111111000100000010000000000
+01011000000000000000000001010000
+00011111111000100001011000000000
+00100000001000000100011000111010
+01111001001000000000000000100101
+01000100110110101100000000110110
+00100000010000000100100001011110
+01101000000000010100001011011000
+00011111111000100000010000000000
+00100000001000000100011001001010
+01111001001000000000000000100101
+01000100110110110100000000110110
+00100000010000000100100001011110
+01101000000000010100001011011000
+00011111111000100000010000000000
+11011001011000000000000001010000
+00100000010000000100011001100000
+01101000000000001100001011100000
+01111001001111111111111000000101
+01100000000000001100001011100000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110110111100000000110110
+00100000010000000100100001101100
+00100000010000000110110100000001
+00100000001000000100011001111100
+01111001001000000000000000100101
+01000100110111000100000000110111
+00100000010000000100100001011110
+01011000000000000000000000000011
+00011111111000100000010000000000
+01011000000000000000000001010001
+00011111111000100001011000000000
+00100000001000000100011000111010
+01111001001000000000000000100101
+01000100110111001100000000110111
+00100000010000000100100001011110
+01101000000000010100001011011010
+00011111111000100000010000000000
+00100000001000000100011001001010
+01111001001000000000000000100101
+01000100110111010100000000110111
+00100000010000000100100001011110
+01011000000000000000000000010001
+00011111111000100000010000000000
+01011000000000000000000001010010
+00011111111000100001011000000000
+00100000001000000100011000111010
+01111001001000000000000000100101
+01000100110111011100000000110111
+00100000010000000100100001011110
+01101000000000010100001011011100
+00011111111000100000010000000000
+00100000001000000100011001001010
+01111001001000000000000000100101
+01000100110111100100000000110111
+00100000010000000100100001011110
+01011000000000000000000000010011
+00011111111000100000010000000000
+01011000000000000000000001010011
+00011111111000100001011000000000
+00100000001000000100011000111010
+01111001001000000000000000100101
+01000100110111101100000000110111
+00100000010000000100100001011110
+01101000000000010100001011011110
+00011111111000100000010000000000
+00100000001000000100011001001010
+01111001001000000000000000100101
+01000100110111110100000000110111
+00100000010000000100100001111010
+01110000000001000010101000000011
+01110000000001000010110100011100
+00100000010000000110011110110011
+01110000010001011111101100000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110111111100000000110111
+00100000010000000100100001111010
+01101000000010001100010111111100
+00100000010000000110011001111110
+01100000000010001100010111110101
+00100000001000000110011111010000
+01111001001000000000000000100101
+01000100111000000100000000111000
+00100000010000000100100001111010
+01101000000010001100010111110101
+00100000010000000110011001111000
+00100000010000000110011000011111
+01100000000000001000010000101101
+01101000000010001100010111110101
+00100000010000000110011001111000
+01100000000010001000010000101010
+00100000001000000110011110110011
+01111001001000000000000000100101
+01000100111000001100000000111000
+00100000010000000100100001111010
+01101000000010001100010111110101
+00100000010000000110011001111000
+00100000001000000110100000001010
+01111001001000000000000000100101
+01000100111000010100000000111000
+01101000000000010000001010001101
+10011000000000000000110000000000
+11101000110000001000000000000000
+00011111111000100010010000000000
+01100000000000001000010001000110
+11101000110000010000000000000000
+01100000000000010000010001000111
+11101000110000001000000000000000
+00011111111011010001011000000000
+11101000110000001000000000000000
+10011001011000001001011000000000
+01111001001000000000000000100101
+01000100111000011100000000111000
+00011010010000100111111000000000
+11000000000000010110101001010011
+11000000000000100110101001111100
+11000000000000110110101101011101
+11000000000000111110110100011000
+00100000001000000110110101000000
+00100000010000000110110101001111
+00101000010000011111111000000001
+00100000001000001110110110111101
+00101000010000011111111011111111
+00100000001000001110110101000011
+11101000110000010000000000000000
+01100000000000010000010001001011
+00011001011000001001011111111110
+00011001011000001001011111111111
+00100100001000101110110100111101
+11011001011000000000010001000000
+11101001011000010000000000000000
+00100000011110100000000000000000
+00011001011000001001011000000010
+00100000010000000110111000001001
+00100000010000000100100001111000
+00011000000000000111111000000011
+11100000101000001000000000000000
+01101000000000010000010001000111
+11100000101000010000000000000000
+00011000111010111111111000000000
+00011111111000001111111000000101
+00011111111000001010011000000101
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011000111000100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+11100000101000010000000000000000
+11011000110000000000010001011100
+00011000111000100111001000000000
+00100000001000101110101001110110
+11101000110000100000000000000000
+11100000101000100000000000000000
+11000010000000000110101001110011
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011010011000100111111000000000
+01100000000000001000001010011110
+00100000001110100011101100110001
+00100000011000000000000000000000
+11101000110000100000000000000000
+01100000000000100000010001010101
+00011001011000001001011111111100
+10011000000000000000010000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011111111000001111111111101110
+01100000000000010000010001001001
+00011001011000001001011111111110
+00100000010000000110110110100110
+00100000001000101110110101000011
+00101010001000011111111000000101
+00100000001000001110101010001100
+11011000101000000000010000101000
+00011000000000000000111000000000
+00100000001000000110101010011100
+11101000110000001000000000000000
+11000000100001010110110101000011
+11101000110000010000000000000000
+00100100001110100110101010011010
+11101000110000001000000000000000
+11000000111111111110101010011000
+11101000110000001000000000000000
+11000000111111111110101010010110
+00011000110000001000110111111011
+00100000001000000110101011110010
+00011000110000001000110111111011
+00100000001000000110101010001001
+00011000110000001000110111111100
+00100000001000000110101010001001
+00011000110000001000110111111101
+00100000001000000110101010001001
+11101000110000001000000000000000
+11000000000001001110101010110001
+11000000000001010110101010011111
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011111111100001010010000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011010010000001010010000000001
+10011010010001100111110000000000
+00100100001000010110101010101110
+00011111111000100010011000000000
+00011010010100001111111000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011010011000100111111000000000
+00100000001000000110101010100101
+00011001011000001001011111111011
+00011010001000001010001111111011
+00100000001000000110101010110110
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011001011000001001011111111101
+00011010001000001010001111111101
+00100100001000010110110101000011
+00100100001000101110101010011100
+00011001011000001001011111111111
+00100100001000101110110101000011
+00100000010000000100100001111000
+00011000101000001000101000001010
+11011010001000000000010000101000
+01111001001000000000000000100101
+01000100111000100100000000111000
+00011000111000100111111000000000
+00100000001110100110101011010010
+11101010001000010000000000000000
+00100000001110100110101011010010
+10011000000000000010010000000000
+01101000000000100000010001010101
+10011000000000000000010000000000
+00100000010000000110111001010010
+00100000001110100110101011001111
+00011000110000001000110111111101
+11101000110000011000000000000000
+11100000101000011000000000000000
+00100000010000000110110011101010
+00100000001110100110101011001111
+10011000000000000111001000000000
+00100000010000000111111011001101
+00011010001000001010001000000010
+00011000111000001000111111111111
+00100000001000000110101010111101
+01111001001000000000000000100101
+01000100111000101100000000111000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001010011100
+00011000010000001111111000001010
+10011000101001100111111000000000
+00011111111001100010001000000000
+00011010001100001111111000000000
+00011000010000001010010000001000
+11100010010000010000000000000000
+00011010001000001010001000000011
+00011010001100001111111000000000
+00011000010000001010010000000101
+11100010010000010000000000000000
+00011010001000001010001000000011
+00011010001100001111111000000000
+00011000010000001010010000000011
+11100010010000010000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001010011110
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000001000000000000000
+01011000000000000000000000000101
+11100000010000001000000000000000
+01101000000000010000010001000111
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+11000000100001010110110101000011
+11101000110000010000000000000000
+00100100001110100110110101000011
+11101000110000001000000000000000
+11000000111111111110110101000011
+11101000110000001000000000000000
+11000000111111111110110101000011
+00011001011000001001011111111011
+11101000110000001000000000000000
+11000000000000000110101011111111
+11000000000000001110101100000010
+11000000000000010110101100000110
+01100000000000010000010001000100
+00011001011000001001011111111111
+00100000001000000110101100001010
+11101000110000001000000000000000
+01100000000000010000010001000100
+00011001011000001001011111111110
+00100000001000000110101100001010
+11101000110000010000000000000000
+00011111111100001111111000000000
+01100000000000010000010001000100
+00011001011000001001011111111101
+00100100001000101110110100111101
+01111001001000000000000000100101
+01000100111000110100000000111000
+00100000010000000110111000100000
+00100100001000101110110100111010
+00011000110000100010001000000000
+00100000010000000100100001111000
+00011010001000100000110000000000
+00011000101000001000101000000011
+00011000110000100001011000000000
+00100000010000000110110111101010
+00011111111000100010001000000000
+01101000000000010000010001000100
+00011111111000100010010000000000
+00011010001000100111111000000000
+10011010010001100010010000000000
+01101000000000010000010001001001
+10011010010001100111110000000000
+00100100001000010110101100111000
+01111000010101000111110000000000
+01101000000000010000010001000100
+00100000001110100110101100101011
+10011001011000001000110000000000
+00011010010000001010010000000011
+00011010010000100111001000000000
+00011111001000100111111000000000
+00011111111000001111111000000011
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011111001000100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+00100000001000000110101101000110
+00011010001000001111001000000110
+00100000001101000110101100101111
+00011111001100001111111000000000
+00100000001000000110101100110010
+00011111001000100111111000000000
+00011111111000001111111000000010
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011111001000001111001111111101
+00011111001100001111111000000000
+11100000101000010000000000000000
+00011001011000100000110000000000
+00100000001000000110101101000110
+01111000001101000111110000000000
+01101000000000010000010001001001
+00011111111000100010001000000000
+00011111111000100111001000000000
+01101000000000010000010001000100
+00100000001110100110101100101011
+10011001011000001000110000000000
+00011010001000100111111000000000
+00011111111000001111111000000101
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011010001000100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000110101101000110
+00100100001101000110101101010001
+00011000000000000111111000000010
+11100000101000001000000000000000
+00011000110000100111111000000000
+10011001011001100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+00100000001000000110101101010011
+00011000000000000111111000000000
+11100000101000001000000000000000
+01101000000000010000001010011100
+10011000101001100111111000000000
+00011111111001100111111000000000
+01100000000000010000001010011110
+00100000010000000100100001111000
+01011000000000000000000000000101
+11100000101000001000000000000000
+01101000000000010000010001000111
+11100000101000010000000000000000
+00100000011000000000000000000000
+00100000010000000110110101001111
+00101000010000011111111011111111
+00100000001000001110101110001000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011111111000001111111111101110
+01100000000000010000010001001001
+00011001011000001001011111111110
+00100000010000000110110110100110
+11011000101000000000010000101000
+00011000000000000000111000000000
+11101000110000011000000000000000
+11000000100001001110101110001000
+00011111111011001111111000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011001011000001001011111111101
+00011010001000001010001111111101
+00100100001000010110110101000011
+00100100001000101110101101101000
+00011001011000001001011111111111
+00100100001000101110110101000011
+00100000010000000100100001111000
+00011000101000001000101000001101
+01101000000000010000010001000000
+10011000000000000010011000000000
+11011010001000000000010000101000
+11101010001000100000000000000000
+00100000001110100110101110101110
+11101010001000010000000000000000
+10011000000000000010010000000000
+00100000010000000110111000101110
+00100000001110100110101110000110
+00011000110000001000110111111101
+11101000110000011000000000000000
+11100000101000011000000000000000
+00100000010000000110110011101010
+10011000000000000111001000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000110101110000011
+00011010001000001010001000000010
+00100000001000000110101101111000
+01111001001000000000000000100101
+01000100111000111100000000111000
+11101000110000001000000000000000
+11101000110000001000000000000000
+00011001011000001001011111111011
+00011010001000001010001111111011
+00100100001000010110110101000011
+11101000110000001000000000000000
+00011001011000001001011111111111
+01110000000001000100010000000000
+01110000000001000100010100000000
+00100100001110100110101110011111
+11011001011000000000010001000000
+11101001011000010000000000000000
+00011001011000001001011000000010
+00100000010000000110111000001001
+00011000111000100111111000000000
+01100000000000001000010001110100
+00100000001110100110110111000000
+11011000111000000000000000000000
+00100000010000000100100001111000
+00011000101000001000101000001010
+00100000001000000110110000000101
+11101000110000010000000000000000
+00011001011000001001011111111110
+00011111111100001111111000000000
+01100000000000010000010001000100
+11011001011000000000010001000000
+11101001011000010000000000000000
+00011001011000001001011000000010
+00100000010000000110111000001001
+00011000111000100111111000000000
+01100000000000001000010001110100
+00100000001110100110110111000000
+11011000111000000000000000000000
+00100000010000000100100001111000
+00011000101000001000101000000111
+00100000001000000110110000010100
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001010011100
+00011000010000001111111000001101
+10011000101001100111111000000000
+00100000001000101110101111010010
+00011111111001100111111000000000
+00011000010000001010010000001100
+11100010010000001000000000000000
+00011111111000001111111000000011
+00011000010000001010010000001001
+11100010010000001000000000000000
+00011111111000001111111000000011
+00011111111100001111111000000000
+00011000010000001010010000000101
+11100010010000010000000000000000
+00011111111011001111111000000000
+00011111111000001111111000000011
+00011111111100001111111000000000
+00011000010000001010010000000011
+11100010010000010000000000000000
+00011111111011001111111000000000
+00011111111000001111111000000101
+01100000000000001000001010011110
+01101000000000010000010001000111
+00011000010000001010010000000001
+11100010010000010000000000000000
+01011000000000000000000000000111
+11100000010000001000000000000000
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000010000000000000000
+00011000010000001010010000001010
+11100010010000010000000000000000
+00100000011000000000000000000000
+01110000000000101001111000001010
+00100000010000000100100001111000
+01011000000000000000000000000111
+11100000101000001000000000000000
+01101000000000010000010001000111
+11100000101000010000000000000000
+01011000000000000000010100000000
+11100000101000010000000000000000
+01011000000000000000001000000000
+11100000101000010000000000000000
+01011000000000000000000000110101
+11100000101000011000000000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010000000001
+00011010001000001010001111111111
+00100000001000101110101111100101
+11000010000000000110101111011111
+00011000101000100001011000000000
+00011010010000100111111000000000
+01100000000000010000010001000100
+00011010001000100111111000000000
+01100000000000010000010001001001
+00100000001110100110110000100110
+00100000001101000110110010000101
+00011001011000100000101000000000
+00011000111000001000111000000001
+01101000000000001000010001110100
+10011000111001100111110000000000
+00100100001000101110110000000101
+00100000001000000110110010100100
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010000000001
+00011010001000001010001111111111
+00100000001000101110101111111000
+11000010000000000110101111110010
+00011000101000100001011000000000
+00011010010000100111111000000000
+01100000000000010000010001000100
+00011010001000100111111000000000
+01100000000000010000010001001001
+00100000001110100110110001100001
+00100000001101000110110010000101
+00011001011000100000101000000000
+00011000111000001000111000000001
+01101000000000001000010001110100
+10011000111001100111110000000000
+00100100001000101110110000010100
+00100000001000000110110011001100
+11011000110000000000010001011100
+00011000111010111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000000000000000010000000000
+00100000010000000110111000100000
+00011000110000100001011000000000
+00100000010000000110110111101010
+00011111111000001111001000000011
+01101000000000010000010001001001
+00011111111000100010001000000000
+01101000000000010000010001000100
+00011111111000100010010000000000
+00011001011000100000110000000000
+00100000001000000110101111011111
+11011000110000000000010001011100
+00011000111010111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000000000000000010000000000
+00100000010000000110111000100000
+00011000110000100001011000000000
+00100000010000000110110111101010
+00011111111000001111111000000011
+01101000000010010000010001000100
+10011000010001100111001000000000
+01101000000000010000010001001001
+00011111111000100010001000000000
+01101000000000010000010001000100
+00011111111000100010010000000000
+00011001011000100000110000000000
+10011000110000001000110000000000
+00100000001000000110101111110010
+11011000111000000000000000000000
+11011010010000000000000000000000
+11011000110000000000010001011100
+00011000111010111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000000000000000010000000000
+00100000010000000110111000100000
+00100000010000000110110111101010
+00011111111000001111111000000011
+10011010010000001010010000000000
+00011000111000001000111000000001
+01101000000000001000010001110100
+10011000111001100111110000000000
+00100100001000101110110000101000
+00011001011000100000101000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+01101000000000010000010001000100
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011000101000001000101111111101
+01101000000010010000001010011100
+00011000010000001111111000001010
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010010000100111111000000000
+00011000010000001010010000001001
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000001000
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001010011110
+01011000000000000000000000000111
+11100000010000001000000000000000
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000001000000000000000
+00011000010000001010010000000001
+01101000000000010000010001000111
+11100010010000010000000000000000
+00100000011000000000000000000000
+11011000111000000000000000000000
+11011010010000000000000000000000
+00011001011000100000101000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+01101000000000010000010001000100
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011000101000001000101111111101
+01101000000010010000001010011100
+00011000010000001111111000000111
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001010011110
+01011000000000000000000000000111
+11100000010000001000000000000000
+00011000010000001010010000000001
+01101000000000010000010001000111
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011001011000100000101000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001010011100
+00011000010000001111111000000111
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001010011110
+01011000000000000000000000000111
+11100000010000001000000000000000
+01101000000000010000010001000111
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001010011100
+00011000010000001111111000001010
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010001000100111111000000000
+00011000010000001010010000001001
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000001000
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001010011110
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000001000000000000000
+01011000000000000000000000000111
+11100000010000001000000000000000
+01101000000000010000010001000111
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001010011100
+00011000010000001111111000000111
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001010011110
+01011000000000000000000000000111
+11100000010000001000000000000000
+01101000000000010000010001000111
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011000110000100001011000000000
+11101000110000001000000000000000
+00011111111000010111001000000111
+00011111111010010111111000000000
+11000000000000110110110011110011
+11000000000000001110110111100010
+11000000000000100110110111100111
+11000000000000101110110111100101
+00100000001000000110110111100000
+00100000010000000110110011110101
+00100000001000000110110111100000
+00011111001000100111111000000000
+11000000000000101110110011111010
+11000000000000110110110011111101
+00011000000000000111001000000011
+00100000001000000110110111110001
+11101000110000001000000000000000
+00011111111000001111111000000010
+00100000011000000000000000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011111111000001111111000000011
+00100000011000000000000000000000
+00100000010000000100100001111000
+00011111111000100000101000000000
+01011000000000000000000000000110
+11100000101000001000000000000000
+01011000000000000000000001101110
+11100000101000010000000000000000
+01011000000000000000111100000000
+11100000101000010000000000000000
+01011000000110100000010100110101
+11100000101000011000000000000000
+01011000000000000000000100010001
+00011111111100000111111000000000
+11100000101000100000000000000000
+01011000000000000010011000000000
+11100000101000010000000000000000
+01011000000000000000001100110101
+11100000101000010000000000000000
+01011000000000000000000000001001
+11100000101000010000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+01110000000000101001111000010100
+00100000011000000000000000000000
+00011000110000100000010000000000
+01101000000000010000010001000111
+11000000001101110110110100011100
+00100000001000000110110100100101
+00011000010000100000110000000000
+00011001011000001001011111111101
+00011001011000100111111000000000
+11000000000000010110110100100101
+00100000010000000110110100100110
+00100000011101000000000000000000
+01100000000000001100010111111100
+01110000000000101010111000010111
+00100000011000000000000000000000
+00100000011000000000000000000000
+01111000001101000111110000000000
+00011111111000100111001000000000
+11011000010000000000010000000000
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100000001000101110110100101111
+00011000110000001000110111111111
+11000010000000000110110100101001
+00100000011000000000000000000000
+11011000010000000000001100000000
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100000001000101110110100110110
+00011000110000001000110111111111
+11000010000000000110110100110000
+00100000011000000000000000000000
+11101000110000001000000000000000
+11101000110000001000000000000000
+01111000010101000111110000000000
+00100000011000000000000000000000
+01011000000000000000001000000000
+01100000000000010000010001001101
+00100000001000000110110101000101
+01011000000000000000010000000000
+01100000000000010000010001001101
+00100000001000000110110101000101
+01011000000000000000011000000000
+01100000000000010000010001001101
+00100000001000000110110101000101
+01011000000000000000001100000000
+01100000000000010000010001001101
+00100000010000000100100001111000
+11100000101000001000000000000000
+01101000000000010000010001000111
+11100000101000010000000000000000
+01011000000000000000001000000000
+11100000101000010000000000000000
+01101000000000010000010001001101
+11100000101000010000000000000000
+01110000000000101001111000000111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111001000100000000111001
+00011000000000000000010000000000
+11011000101000000000010001000000
+00100000010000000110110110100110
+00100000001000101110110110100100
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+00101111111000011111000000011000
+00100100001000001110110110100100
+00101111111000000000111000000100
+00100100001000001110110101110010
+00011000000000000000010000000001
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+11000000100000000110110101100110
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+11000000000000000110110101110111
+00100000001000000110110101101001
+00011000110000001000110000000001
+00011010001000001010001111111111
+00011001011000001001011111111111
+00011000110000001000110000000010
+00011010001000001010001111111110
+00011001011000001001011111111110
+00101000010000011111111000000000
+00100000001000001110110110011111
+00011000110000001000110000001100
+00011010001000001010001111110100
+00011001011000001001011111110100
+00100000001000000110110110011111
+00101111111000000000111000000010
+00100100001000001110110101110101
+00100000001000000110110101011101
+00101111111000000000111000000001
+00100100001000001110110110100100
+11101000110000010000000000000000
+00011010001000001010001111111110
+00011001011000001001011111111110
+11100000101000010000000000000000
+00101000010000011111111000000000
+00100000001000001110110110011111
+00011000110000100000010000000000
+01111001001000000000000000100101
+01000100111001001100000000111001
+11101000110000001000000000000000
+11000000100000000110110110011000
+11101000110000001000000000000000
+11000000100000000110110110011000
+11101000110000001000000000000000
+11000000100010000110110110011000
+11101000110000001000000000000000
+11000000100000000110110110011000
+11101000110000001000000000000000
+11000000110000000110110110011000
+11101000110000001000000000000000
+11000000100000000110110110011000
+11101000110000001000000000000000
+11000000100000000110110110011000
+11101000110000001000000000000000
+11000000110000000110110110011000
+11101000110000001000000000000000
+11000000101011111110110110011000
+11101000110000001000000000000000
+11000000110011011110110110011000
+11101000110000001000000000000000
+11000000100110100110110110011000
+11101000110000001000000000000000
+11000000011111011110110110011101
+00011000010000100000110000000000
+00011000110000001000110000001100
+00011000000000000000111000000000
+00011000000000000000010000000000
+00100000001000000110110110011101
+00011001011000001001011111110100
+00011010001000001010001111110100
+00101010001000011111111000000000
+00100100001000001110110101010101
+00011000000000000111111000000000
+11100000101000010000000000000000
+00100000011000000000000000000000
+11011000010000000000000011111111
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011001011000001001011111111111
+00101111111000011111000000110000
+00100100001000001110110110111011
+00101111111000000000111000000111
+00100000001000001110110110110100
+00101111111000000000111000000110
+00100000001000001110110110110110
+00101111111000000000111000000101
+00100100001000001110110110111011
+11101000110000001000000000000000
+00011111111000100010001000000000
+00011001011000001001011111111111
+00100000001000000110110110111001
+00011000110000001000110000000010
+00011001011000001001011111111110
+11101000110000010000000000000000
+00011111111100001010001000000000
+00011001011000001001011111111110
+00011000000000000111111000000001
+00100000011000000000000000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+01011000000000000000000000000011
+01100000000000001000010001000110
+00100000001000000110110111000010
+01011000000000000000000000000111
+01100000000000001000010001000110
+00100000010000000100100001111000
+01101000000000001000010001000110
+11100000101000001000000000000000
+00011111111000100010010000000000
+01101000000000010000010001000111
+11100000101000010000000000000000
+01011000000000000000010100000000
+11100000101000010000000000000000
+00101010010000011111111000000101
+00100000001000001110110111010010
+00101010010000011111111000000111
+00100000001000001110110111010010
+01011000000000000000000000000000
+11100000101000011000000000000000
+11100000101000010000000000000000
+00100000001000000110110111010110
+01011000001101010000001000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01110000000000101001111000001010
+00100000011000000000000000000000
+00011000110000100001011000000000
+11101000110000001000000000000000
+00011111111000010111001000000111
+00011111111010010111111000000000
+11000000000000110110110111100111
+11000000000000001110110111100010
+11000000000000100110110111100111
+11000000000000101110110111100101
+00011001011000100000110000000000
+00100000011000000000000000000000
+00100000010000000110111000000011
+00011111111000001111111000000001
+00100000001000000110110111100000
+00011000000000000111111000000010
+00100000001000000110110111100000
+00100000010000000110110111111001
+00011111111000001111111000000010
+00100000001000000110110111100000
+11101000110000001000000000000000
+00011111111000010111001000000111
+00011111111010010111111000000000
+11000000000000110110110111111001
+11000000000000001110110111110001
+11000000000000101110110111111110
+00100000011000000000000000000000
+00100000010000000110111000000011
+10011000000000000111001000000000
+00011000000000000000010000000000
+00011000010011010000010000000000
+11101000110000001000000000000000
+10011000010000011000010000000000
+11000010000000000110110111110100
+00100000011000000000000000000000
+00011111001000100111111000000000
+11000000000000101110110111111110
+11000000000000110110111000000000
+00011000000000000111001000000011
+00100000001000000110110111110001
+11101000110000001000000000000000
+00100000011000000000000000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00100000011000000000000000000000
+00011000000000000111111000000001
+00011111001000100111110000000000
+00100000011000101000000000000000
+00011111111000111111111000000000
+11000010000000000110111000000110
+00100000011000000000000000000000
+10011000000000000010011000000000
+01111001001000000000000000100101
+01000100111001010100000000111001
+00011000000000000000111000000000
+01101000000000010100011000001101
+10011000000000000000110000000000
+11011000101000000000010001011100
+01111000010101000111110000000000
+11101000110000001000000000000000
+00100000011110100000000000000000
+10011000000000000111001000000000
+11101000110000010000000000000000
+10011010011001100111110000000000
+00100100001000101110111000011000
+01111000001101000111110000000000
+11000010000000000110111000010100
+11101000110000100000000000000000
+00100100001101000110111000011101
+11100000101000100000000000000000
+00011000111000001000111000000001
+00100000010000000110110111101010
+10011000110000001000110000000000
+00100000001000000110111000010000
+01111001001000000000000000100101
+01000100111001011100000000111001
+01101000000000010100011000001101
+10011000000000000000110000000000
+11101000110000001000000000000000
+00100000011110100000000000000000
+00011111111000111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000010000000110110111101010
+10011000110000001000110000000000
+00100000001000000110111000100100
+01111001001000000000000000100101
+01000100111001100100000000111001
+01101000000000010100011000001101
+10011000000000000000110000000000
+11101000110000001000000000000000
+00100000001110100110111001001111
+10011000000000000111001000000000
+11101000110000010000000000000000
+10011010011001100111110000000000
+00100000001000101110111000111101
+11000010000000000110111000110101
+00011000110000001000110000000100
+00100000010000000110110111101010
+10011000110000001000110000000000
+00100000001000000110111000110010
+00011111001000001111001111111111
+00011111001000111111111000000000
+10011000110000001000110000000000
+00011000110000001000110000000100
+00100000010000000110110111101010
+10011000110000001000010000000000
+00011000110000001000110000000001
+11101000110000010000000000000000
+10011010010001100001011000000000
+01111001001000101111111000000000
+00011001011000100001011000000000
+00100000011000101000000000000000
+00100000010000000110110111011000
+10011000110000001000110000000000
+00011000010000100111111000000000
+10011000110001100111110000000000
+00100000001000101110111001001111
+00100000001000000110111001000011
+00011000000000000000110000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111001101100000000111001
+01101000000000010100011000001101
+10011000000000000000110000000000
+11101000110000001000000000000000
+00100000001110100110111001101100
+00011111111000111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000010001100111110000000000
+00100000001000101110111001100000
+00100000010000000110110111101010
+10011000110000001000110000000000
+00100000001000000110111001010110
+00100000010000000110110111101010
+10011000110000001000010000000000
+00011000110000001000110000000001
+11101000110000010000000000000000
+10011010010001100111110000000000
+00100000011000101000000000000000
+00100000010000000110110111011000
+10011000110000001000110000000000
+00011000010000100111111000000000
+10011000110001100111110000000000
+00100000001000101110111001101100
+00100000001000000110111001100010
+00011000000000000000110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111001110100000000111001
+01110000000001010000100101010000
+11011000101000000000010100001010
+11011000110000000100010011000011
+00100000010000000111111010000111
+11011000110000000100011001011010
+00100000010000000111111010000101
+11011000110000000000100011100010
+00100000010000000111111010000101
+00100000010000000110111100101101
+11011000110000000000001101010010
+00100000010000000110111100101000
+00100000010000000110111011110010
+11011000101000000000101000010001
+00100000010000000110111100100100
+01011000000011110100001001000000
+00011111111000100010001000000000
+01101000000000100000101000010001
+10011010001001101111110000000000
+00100000010000000111111101010011
+00011000000001110111111000000000
+01100000000000100000100011011110
+00100000011000000000000000000000
+01110000000001010000100101000001
+11011000101000000000010100001010
+00100000010000000110111011010111
+00100000010000000110111011010010
+01101000000000011100010011011101
+11100000101000011000000000000000
+00100000010000000110111010010110
+11011000110000000000001101010010
+00100000010000000111111010000111
+11011000110000000100010011000011
+00100000010000000111111010000111
+00100000010000000110111100101101
+11011000110000000000101000110001
+11011000101000000000100111100001
+00100000010000000111111010000111
+00100000001000000110111011110010
+01101000000000100100010101101101
+11100000101000100000000000000000
+00100000010000000111111010011000
+00100000001000000111111010010101
+01111001001000000000000000100101
+01000100111001111100000000111001
+01110000000001010000100101000001
+11011000101000000000010100001010
+00100000010000000110111011010010
+00100000010000000110111011010111
+01101000000000011100010011010110
+11100000101000011000000000000000
+00100000010000000110111010010110
+11011000110000000100010011000011
+00100000010000000111111010000111
+11011000110000000000001101010010
+00100000010000000111111010000111
+00100000010000000110111100101101
+11011000110000000000101000110001
+11011000101000000000100111100001
+00100000010000000111111010000111
+00100000010000000110111011110010
+11011000101000000000101000010001
+00100000001000000110111100100100
+01110000000001010000100100100000
+11011000110000000000100100100010
+11011000101000000000010100001010
+00100000010000000111111010000101
+00100000010000000110111100101101
+11011000110000000000100011000010
+00100000010000000110111100101000
+00100000010000000110111011110010
+11011000101000000000100111100001
+00100000010000000111000111000000
+11011000010000000000000000000001
+00100000010000000110111011000000
+11011000101000000100010010100010
+00100000010000000110111100100100
+11011000010000000000000000000000
+00100000010000000110111011000000
+11011000101000000000101000110001
+00100000001000000111000111000000
+01111001001000000000000000100101
+01000100111010000100000000111010
+01110000000001010000100100110101
+01011000000000000000000100000000
+01100000000000010000010100001010
+00100000010000000110111011010010
+00100000010000000110111011010111
+11011000110000000100010011000011
+00100000010000000111111010000111
+11011000110000000000001101010010
+00100000010000000111111010000111
+01011000000000000110110001100101
+11100000101000010000000000000000
+01011000000000000110001001110100
+11100000101000010000000000000000
+11100000101010001000000000000000
+00100000010000000110111100101101
+00100000001000000110111011110010
+01101000000000110100010100111110
+11100000101000110000000000000000
+01101000000000001100010100110010
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000110000001101110010
+11100000101000110000000000000000
+01101000000000001100010100101011
+11100000101000001000000000000000
+00100000011000000000000000000000
+01110000000001010000100101000001
+01101000000000001100011011101100
+01100000000000001000010100001010
+11011000110000000100011001011010
+00100000010000000111111010000101
+11011000110000000000100011100010
+00100000010000000111111010000101
+00100000010000000110111100101101
+11011000110000000000001101010010
+00100000010000000110111100101000
+00100000001000000110111011110010
+01110000000001010000100101000001
+01101000000000001100011011101100
+01100000000000001000010100001010
+11011000110000000000100011100010
+00100000010000000111111010000101
+11011000110000000100011001011010
+00100000010000000111111010000101
+00100000010000000110111100101101
+11011000110000000100010011000011
+00100000010000000110111100101000
+00100000001000000110111011110010
+01111001001000000000000000100101
+01000100111010001100000000111010
+00100000010000000110111101000010
+01101000000000001000010100001001
+00011111111000100000010000000000
+00011111111000001111111000001111
+00011111111100011111111000000000
+00011111111000100010010000000000
+00100000001110100110111100000101
+00011000010000010111111000001111
+00100100001110100110111100001000
+11011010011000000000100111110001
+11011111111000000000010100001010
+00011111111000001111111111110000
+10011000010000001010001000000000
+11011000101000000000101000100001
+11011111001000000000000000000100
+00100000010000000111111010101000
+00100000001000000110111100010011
+11011010010000000000000000000001
+11011010001000000000000000000000
+00100000001000000110111100001001
+00011000010000010010001000001111
+11011111111000000000010100001010
+10011000010000001111111000000000
+10011010001001100000110000000000
+11011000101000000000101000010001
+00100000010000000110111101101001
+11011010011000000000101000000001
+11011010001000000000101000010001
+11011000101000000000101000100001
+11011111001000000000000000000100
+00100000010000000111111010101000
+00100000010000000111000110111010
+00100000010000000111000101010000
+11011000110000000000010100001010
+00011010010000001010010111111111
+00011010010000100111111000000000
+00100000001110100110111100011100
+00100000010000000111000110101111
+00100000010000000111000101001010
+00100000001000000110111100010110
+11011000101000000000101000010001
+00100000010000000111000111000000
+11011000110000000000101000100001
+00100000010000000111000110101111
+00100000010000000111000101010000
+11011000110000000000101000010001
+00100000010000000111000110101111
+00100000001000000111000101001010
+00011000101000100010001000000000
+00100000010000000111000111000000
+11011111001000000000000000010000
+00100000001000000111111010110000
+11011000101000000000100111100001
+00100000010000000111111010000111
+11011111001000000000000000010000
+11011010001000000000100111100001
+00100000001000000111111010110000
+01101000000000001000010100001001
+00011111111000100111001000000000
+11011010001000000000010100001010
+00100000001000000111111010110000
+11101010001000001000000000000000
+00011111111000111111111000000000
+00101010011011111111111000000000
+01111001001000001111111000000000
+00101111111011111111111000001000
+01111001001000001010011000000000
+11100010001000001000000000000000
+00011010001000001010001111111111
+11000010000000000110111100110001
+00100000011000000000000000000000
+11011010001000000000100111110001
+00011010001000001010001000001111
+00011000000000000111001000010000
+00011000000000000010011000000000
+00100000001000000110111100110001
+11011010001000000000101000000001
+00100000001000000110111100111100
+11011000110000000000100111100001
+00100000010000000111000110101101
+00011000000000000111000000001000
+00100000010000000111000110111011
+00100000010000000111000110111010
+00100000010000000111000101000111
+11011000101000000000100111110001
+00100000010000000111000111000000
+01111001001000000000000000100101
+01000100111010010100000000111010
+01101000000000001000100111110001
+00101111111011111111111000000111
+00100100001000001110111101010100
+00100000010000000110111100111011
+11011010011000000000100111110001
+11011000101000000000100111110001
+00100000010000000110111101011110
+00100000001000000110111101010101
+00100000010000000110111100111011
+11011000110000000000100111110001
+11011000101000000000101000000001
+00100000010000000111111010000111
+01101000000000001000101000000001
+00101111111011111111111000000111
+00100100001000001110111101000000
+00100000010000000110111101000000
+11011010011000000000101000000001
+11011000101000000000101000000001
+11011111001000000000000000000011
+11011000010000000000000000000000
+00100000010000000110111101100101
+00011010011000001010011000000100
+11000010000000000110111101011111
+11011000010000001000011100000000
+00011000010100000000010000000000
+11101010011000100000000000000000
+10011000010000101111111000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111010011100000000111010
+11011111001000000000000000010000
+11011111111000000000000000000000
+10011010001001100111110000000000
+00100000001000101110111101110101
+00100000001000010110111101111000
+11101000110010001000000000000000
+11100000101010001000000000000000
+00011111111000001111111000000001
+11000010000000000110111101101101
+00100000011000000000000000000000
+11011000010000000000000010000000
+11100000101010001000000000000000
+00100000001000000110111101110010
+11011000010000000000000000000000
+00100000001000000110111101110110
+00100000010000000110111110001101
+11011000110000000000010010110110
+11011000101000000000010010100110
+00100000001000000111111010000111
+01111000010101000111110000000000
+00100000010000000111000010000100
+11011000110000000000010010000110
+11011000101000000000010011000110
+00011000000000000111001000001111
+00100000010000000111111011001101
+11101000110000001000000000000000
+00011111111000101111111000000110
+11100000101000001000000000000000
+01011000000000000000010011010110
+01100000000000010000010011111010
+01011000000000000000010011000110
+01100000000000010000010011111000
+01111001001000000000000000010010
+00100000001000000110111111001101
+01101000000010001100011100011000
+00011000000000000010010000010000
+00011000010000001010011000000110
+00011010011001100111110000010000
+00100000001000010110111110010011
+00011000000000000010011000010000
+11011000101000000000010011000110
+11011000110000000100011100011001
+00011000010000100111001000000000
+01111000010101000111110000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010111111111
+00100000001000101110111110100001
+11000010000000000110111110010111
+00100000001101000110111110010100
+01111000001101000111110000000000
+00011000000000000111001000000110
+00011010001000100000110000000000
+00100000001000000110111110010111
+11011000110000000000010010000110
+11011000101000000000010011010110
+00100000010000000111111010000111
+01101000000000001000010011100101
+10011010011000101111111000000000
+01100000000000001000010011100101
+01011000000000000000010011010110
+01100000000000010000010011111010
+01011000000000000000010011000110
+01100000000000010000010011111000
+01111001001000000000000000010010
+00100000001000000110111111001101
+01111000010101000111110000000000
+00100000010000000111000010000100
+00100000001000000110111110110111
+11011010001000000000000001010110
+01111000001101000111110000000000
+00100000010000000111000010000100
+00100000010000000110111110110111
+11011000110000000000010010110110
+11011000101000000000000001100010
+00100000001000000111111010000111
+01011000000000000000010010000110
+01100000000000010000010011111010
+01011000000000000100001001100001
+01100000000000010000010011111000
+01111001001111111000000000010010
+00100000010000000110111111001101
+11011010001000000000010010110110
+11011010010000000000010010000110
+11011000101000000000010011000110
+00100000010000000111000001110111
+11011010001000000000010011000110
+11011010010000000000010011010110
+00011010010000100000101000000000
+01111000001101000111110000000000
+00100000010000000111000001110101
+00100000010000000111000010001111
+01011000000000000000010011010110
+01100000000000010000010011111010
+01011000000000000000010011000110
+01100000000000010000010011111000
+01111001001000000000000000010010
+00100000001000000110111111001101
+01110000000001001111110000000000
+01101000000000010000010011111000
+10011000000000000000110000000000
+11011000101000000000010011100110
+00100000010000000111111010000111
+01101000000000010000010011111010
+10011000000000000000110000000000
+11011000101000000000010010110110
+00100000010000000111111010000111
+00100000010000000110111111110100
+01111000010101000111110000000000
+11000101100010010110111111011110
+01101000000000001000010011111100
+11000000100000100110111111011110
+01101000000000010000010011111010
+10011000000000000010010000000000
+00100000010000000111000000100110
+00100000010000000111000000100101
+00100000010000000111000000111000
+01101000000000001000010011111100
+00011111111000001111111000000001
+01100000000000001000010011111100
+00100000010000000110111111110100
+01111000001101000111110000000000
+00100000010000000111000000100101
+00100000010000000111000001000111
+00100000010000000111000001010110
+00100000010000000111000001000111
+00100000010000000111000001010110
+00100000010000000111000001000111
+00100000010000000111000001010110
+00100000010000000111000001000111
+01101000000000001000010011111100
+00011111111000001111111000000001
+01100000000000001000010011111100
+11000000100010000110111111010110
+00100000010000000110111111110100
+01111000010101000111110000000000
+00100000001000000111000000100101
+01101000000000001000010011111100
+11011000110000000000010011100110
+00100000001110100111000000011011
+10011000000000000010010000000000
+00011000000000000111001000010001
+00011000110000100000101000000000
+11101000110000001000000000000000
+00011111111010011000010000000000
+00011111111010110111111000000000
+00011111111010010111111000000000
+10011000010000011111111000000000
+11100000101000001000000000000000
+11000010000000000110111111111010
+01011000000000000000010011100110
+10011010010000001000110000000000
+00011000000000000111001000010000
+11011000101000000000010010010110
+11101000110000001000000000000000
+11100000101000001000000000000000
+00101000110000011111111011110111
+00100100001000001111000000001010
+00011000110000001000110111101111
+11000010000000000111000000000101
+00011000000000000010001000000000
+00011010010000001010011111111111
+00011010011010111010011000000000
+00011010011010111010011000000000
+00100000010000000111000111100010
+01011000000000001000010000000000
+10011010011000001010011000000000
+11011000101000000000010010010110
+00011000000000000111001000010000
+11101010011010001000000000000000
+11101000101000001000000000000000
+10011000010000001111111000000000
+11100000101000001000000000000000
+00011010011000001010011000000001
+11000010000000000111000000010100
+00100000001000000111000111100110
+00011000000000000111001000010000
+00011000000000000000010000000000
+11101000110000001000000000000000
+10011000010000101000010000000000
+11000010000000000111000000011101
+00011000010000100111111000000000
+11100000110000001000000000000000
+11011000110000000000010011100110
+11011000101000000000010010010110
+00100000001000000111111010000111
+11011010010000000000010010010110
+00011000000000000111001000010000
+11011010001000000000010010110110
+00011010001000100000101000000000
+11101010001010001000000000000000
+11101010010000001000000000000000
+10011000010000101110000000000000
+00011111001000010010011000000011
+00100100001101000111000000101111
+00011010011000101010011000000011
+00011010011001100010011000000001
+00100000001000010111000000110010
+10011000010000001110000000000000
+00011110000000100111111000000000
+11100000101000001000000000000000
+00011010001000001010001000000001
+00011010010000001010010000000001
+11000010000000000111000000101001
+00100000011000000000000000000000
+00100000010000000111000111100010
+00011000000000000111001000010000
+11011010001000000000010010110110
+11101010001000001000000000000000
+11011000110000001000010100000000
+00011111001000010010011000000011
+00011010011001100111110000000001
+00100000001000010111000001000001
+11011000110000001000011000000000
+10011000110000001000110000000000
+11101000110000001000000000000000
+11100010001000001000000000000000
+00011010001000001010001000000001
+11000010000000000111000000111011
+00100000001000000111000111100110
+00011000000000000111001000001000
+11011000110000000000010010110110
+00011000110000100000101000000000
+11101000110000001000000000000000
+10011000000000000010001000000000
+11101000110000001000000000000000
+10011000000000000010010000000000
+00011010001000111111111000000000
+10011010010000001111111000000000
+11100000101000001000000000000000
+00011010001000100111111000000000
+10011010010000001111111000000000
+11100000101000001000000000000000
+11000010000000000111000001001010
+00100000011000000000000000000000
+01011000100010101110010000101100
+10011000000000000000010000000000
+00011000000000000111001000000111
+00100000010000000111000001100101
+01011000000011010111010100011011
+10011000000000000000010000000000
+00011000000000000111001000000101
+00100000010000000111000001100101
+01101000000000001000010011000101
+10011000000000000010001000000000
+01101000000000001000010010111001
+01100000000000001000010011000101
+00011010001000100111111000000000
+01100000000000001000010010111001
+00100000011000000000000000000000
+00011000010000010010010000001111
+00011000010000010111111000001111
+11011000101000000000010010110110
+10011000101000001000101000000000
+11101000101000001000000000000000
+10011000000000000010011000000000
+00011010001000100111111000000000
+11100000101000001000000000000000
+00011010011000100010001000000000
+00011000010100011000010000000000
+11000010000000000111000001100110
+01011000000000000000010010110110
+10011010010000001000101000000000
+00011010001000100111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111000001101000111110000000000
+00100000001000000111000001111000
+01111000010101000111110000000000
+00011000000000000111001000010000
+11101010001010001000000000000000
+11101010010000001000000000000000
+00100000001101000111000001111110
+10011000010000101111111000000000
+00100000001000000111000001111111
+10011000010000001111111000000000
+11100000101000001000000000000000
+00011010001000001010001000000001
+00011010010000001010010000000001
+11000010000000000111000001111001
+00100000011000000000000000000000
+11011000101000000000010011010110
+11101010001000110000000000000000
+11100000101000110000000000000000
+00100000001101000111000010001010
+11101010001000110000000000000000
+00100000001000000111000010001011
+11101000110000110000000000000000
+11100000101000110000000000000000
+11101010001000100000000000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+11011000110000000100001001100001
+11011000101000000000010011000110
+11011000010000000000000000000000
+01011000100000111001010110100111
+00100000010000000111000010110000
+01011000101100111100000111011111
+00100000010000000111000010110000
+01011000000000001110010111101001
+00100000010000000111000010110001
+00011000010000100010100000000000
+01111000010101000111110000000000
+00100000010000000111000010011110
+00011010100000100000010000000000
+01111000001101000111110000000000
+00100000001000000111000010011110
+00011000000000000111001000001000
+11101000110000001000000000000000
+00101111001000000000001000000001
+00100000001101000111000010100101
+00100000001000001111000010100110
+10011000010000001111111000000000
+00100000001000000111000010100111
+00100000001000001111000010100011
+10011000010000101111111000000000
+11100000101000001000000000000000
+00011000010011001000010000000000
+11000010000000000111000010011111
+00100000011000000000000000000000
+01101000000000110000010010111010
+01100000000000110000000001010110
+11101000110000110000000000000000
+11100000101000110000000000000000
+00100000011000000000000000000000
+00011000010011010000010000000000
+00011000010100000000010000000000
+10011000010000011000010000000000
+00100000011000000000000000000000
+00100000001000000111000010110100
+01111001001000000000000000100101
+01000100111010100100000000111010
+00100000010000000111000101010011
+11011000101000000100010010100010
+00100000001000000111000111000000
+11011000101000000100010011000011
+00100000001101001111000010111101
+11011000101000000000001101010010
+00011000110000100010001000000000
+00100000010000000111111010000111
+00100000010000000111000101101000
+11011000110000000100010010110011
+00100000001000000111000111011001
+11011010001000000000001101010010
+00100000001101001111000011000101
+11011010001000000100010011000011
+00011010001000100000101000000000
+00100000010000000101100100010111
+00100000001000000111000101101000
+11011000110000000100010101010001
+00100000010000000111000110101111
+11011000110000000100010010100010
+00100000010000000111000110110000
+00011000000000000110110000111000
+00011000000000000110110000000000
+00100000010000000111000101000101
+11011000101000000000001110100000
+00100000001000000111000111000000
+00011000000000000111111001001001
+00100000001000000111000011010100
+00011000000000000111111000000001
+00011000000000000111000000000000
+00011000010011010101111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+00011000010011001101111000000000
+00011101111100010101111000000000
+01101000000000010100010010011010
+00011111111100000111111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+11101000110000010000000000000000
+00011010001100001101111000000000
+00011101111100000101111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+00100000011000000000000000000000
+00011010011000001000110000000001
+11101000110000001000000000000000
+10011000000000000010001000000000
+00100000010000000111000011010001
+00100000010000000111000101000111
+00011000000000000111000000000000
+11101010011000001000000000000000
+00011111111000010111111000000011
+00011111111100000101111000000000
+01111001001000000101111000001000
+00100000010000000111000110111000
+00100000010000000111000101001010
+00011010001000100111001000000000
+00011010011000001000110000000010
+00100000010000000111000110010111
+00100000010000000111000110100001
+00100000010000000111000101001010
+00011111001000100111111000000000
+00100000001110100111000011111011
+00100000001000000111000011110110
+00011000000000000111000000001100
+00011101111000100111111000000000
+01100000000000100000001100111010
+00100000011000000000000000000000
+00011010001000001010001000000001
+00100000010000000111000011010011
+00011010011000100000110000000000
+00100000010000000111000110101011
+00100000010000000111000101001101
+00100000010000000111000111000111
+00011010011000001010011000010000
+00011010010000001010010111110000
+00100000001000010111000011111111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111010101100000000111010
+11011010011000000100010001100101
+01101000000010101100010010001100
+00100000010000000111000011100111
+00011000000000000111000000001000
+10011000000000000101111000000000
+00011000000000000010001000000000
+00100000010000000111000011010011
+00100000010000000111000101001101
+11011010011000000100010001100111
+01101000000000001100010001100110
+00011111111000001010010111111111
+10011010011000001000101000000000
+00011000000000000111000000001100
+00011101111000100111111000000000
+11100000101000100000000000000000
+00100000010000000111000011111111
+01101000000000001100010001100110
+00011111111000001111111000000100
+01100000000000001100010001100110
+01101000000010101100010010001100
+00011000010000001000010000000001
+01100000000010101100010010001100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111010110100000000111010
+01101000000000001000001100000011
+00011111111001100111110000010100
+00100000001000010111000100100111
+11011010011000000000001100000100
+00011111111000001010010111111111
+00011111111000001111111111111100
+01100000000000001000001100000011
+10011010011000001000110000000000
+11101000110000100000000000000000
+00011000000000000111000000001000
+10011000000000000101111000000000
+00011000000000000010001000000000
+01101000000010101100010010010001
+00100000010000000111000011010011
+00100000010000000111000101001101
+00011000000000000111000000001100
+00011101111000100111111000000000
+01100000000000100000001100111110
+00100000010000000111000011111111
+11011010011000000000001100000010
+00100000010000000111000011100111
+01101000000010100000001100111110
+10011000010001100111111000000000
+00100100011110100000000000000000
+01101000000000100100010010010110
+10011000010001100111111000000000
+00100000011110100000000000000000
+01100000000010100100010010010110
+01101000000000101100010010010001
+00011111111000001111111000000001
+01100000000000101100010010010001
+00011000000000000111111000000000
+00100000011000000000000000000000
+00100100001110111111000101000101
+00100000011000000000000000000000
+00011000000000000110110000110000
+00011000000000000110110000000000
+00100000001000000111000101000101
+00011000000000000110110000110010
+00011000000000000110110000000010
+00100000001000000111000101000101
+00011000000000000110110000110100
+00011000000000000110110000000100
+00100000001000000111000101000101
+00011000000000000110110000000001
+00011000000000000110110000000000
+00100000011000000000000000000000
+00011000000000000111000000000000
+01101000000000100000001101010010
+10011000000000000101111000000000
+00011111000000001111000000000001
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+01101000000000100100010011000011
+10011000000000000101111000000000
+00011111000000001111000000000001
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+00100000010000000111000110111011
+00011111000000001111000111111100
+01101000000000100100010101101101
+00011111111000100101111000000000
+00011111000000001111000000000100
+00011000000000000110110000111000
+00011000000000000110110000001000
+00100000001000000111000101000101
+01111001001000000000000000100101
+01000100111010111100000000111010
+01101000000000110100010100111110
+01101000000010110000001101110010
+00100000001101001111000101101111
+01101000000000110000001101110010
+01101000000010110100010100111110
+00011000000000000111000000001000
+00011000010000100101111000000000
+00011111000000001111000000000001
+00011000010011110101111000000000
+00011111111100000111111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+00011111111011110101111000000000
+00011111000000001111000000000001
+00011000000000000101111000000000
+00011000000000000111111000000000
+01101000000000001100010100101011
+01101000000010001100010100100001
+00100100001101001111000101111111
+01101000000000001100010100110010
+01101000000010001100010100101011
+01100000000000001100010011010011
+01100000000010001100010011010100
+00011000000000000111000000000000
+11011010010000000100010011010011
+00011000000000000111001000000100
+11101010001000100000000000000000
+11101010010010100000000000000000
+10011000010000101101111000000000
+00011111000000001111000000000001
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111000110000100
+00100000010000000111000110111011
+00011111000000001111000111111100
+01101000000000100100010101101101
+00011111111000100101111000000000
+00011111000000001111000000000100
+00011000000000000110110000111000
+00011000000000000110110000001100
+00100000010000000111000101000101
+00100000010000000111000110111010
+00011000000000000110110000111010
+00011000000000000110110000001000
+00100000001000000111000101000101
+00101111001000000000011000000000
+00100000011000001000000000000000
+00011000110000100111111000000000
+10011111001000001000101000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011111001000001111001000000001
+00101111001000000000011000000000
+00100000011000001000000000000000
+00100000001000000111000110011100
+00011000000000000111000000000000
+00011111001000100111111000000000
+00100000001110100111000110100110
+11101000110000100000000000000000
+00011111001000001111001111111100
+10011000000000000101111000000000
+00011111000000001111000000000001
+00101111000000000001111000000100
+00100000011000001000000000000000
+00100000001000000111000110100010
+00011000000000000111000000001000
+00100000001000000111000110110000
+00011000000000000111000000000100
+00100000001000000111000110110000
+00011000000000000111000000000000
+00011000000000000111001000000100
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+11000010000000000111000110110001
+00100000011000000000000000000000
+11011000110000000000001110100000
+00100000001000000111000110101101
+00011000000000000111001000000100
+00100000001000000111000110111101
+00011000000000000111000000000000
+00011000000000000111001000000100
+00011000000000000101111000000000
+00011111000000001111000000000001
+11000010000000000111000110111100
+00100000011000000000000000000000
+00011000000000000111000000001100
+00011000000000000111001000000100
+00011101111000100111111000000000
+11100000101000100000000000000000
+00011111000000001111000000000001
+11000010000000000111000111000010
+00100000011000000000000000000000
+00011000000000000111000000001100
+00011010011000100000101000000000
+00011010010000001111001000000001
+00011111001001100111110000001111
+00100000001000010111000111001101
+00011000000000000111001000010000
+00011101111000100111111000000000
+00011111001001100111110000000011
+00100000001000010111000111010101
+11100000101000100000000000000000
+00011111001000001111001111111100
+00100000011000101000000000000000
+00011111000000001111000000000001
+00100000001000000111000111001101
+11100000101000001000000000000000
+00011111111011001111111000000000
+11000010000000000111000111010101
+00100000011000000000000000000000
+00011000000000000111000000001100
+00011000000000000111001000000100
+11101000110000100000000000000000
+10011101111001100111110000000000
+00100100011000101000000000000000
+00011111000000001111000000000001
+11000010000000000111000111011011
+00011000000000000111110000000000
+00100000011000000000000000000000
+01101000000100001000000001010000
+01111001001111111111111000000000
+01100000000100001000000001010000
+00100000011000000000000000000000
+01101000000100001000000001010000
+01111001001000000111111000000000
+01100000000100001000000001010000
+00100000011000000000000000000000
+11011000101000000000011110101010
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111111111
+00111000000011111111101111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111111111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111100111111111111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111101111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111111111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001100110110001111111
+00111000000010000001010001101011
+00111000000011110111101110110011
+11100000101001001000000000000000
+00111000000000011111111010111000
+00111000000001010000110000010010
+00111000000010101011011100100010
+00111000000011101001111110100110
+11100000101001001000000000000000
+00111000000000001110011100001111
+00111000000001010110011100100000
+00111000000010000101000110011110
+00111000000011011001000010000100
+11100000101001001000000000000000
+00111000000000110001000000010010
+00111000000001110110000010111111
+00111000000010111111000010101111
+00111000000011000000001111010011
+11100000101001001000000000000000
+00111000000000111010000110001000
+00111000000001000011101011010000
+00111000000010111100101111110010
+00111000000011100100001111011001
+11100000101001001000000000000000
+00111000000000101011000000110000
+00111000000001110110101000000011
+00111000000010010001000110001000
+00111000000011011110010100100000
+11100000101001001000000000000000
+00111000000000111010000100011110
+00111000000001001111111001011101
+00111000000010001101110101010111
+00111000000011011010110010010011
+11100000101001001000000000000000
+00111000000000000001000111101101
+00111000000001100001100011000100
+00111000000010001000110110100111
+00111000000011100101011111111111
+11100000101001001000000000000000
+00111000000000110001100100101011
+00111000000001110100011001000001
+00111000000010011011111000001100
+00111000000011110110011010101101
+11100000101001001000000000000000
+00111000000000000001111110000011
+00111000000001010101101000100011
+00111000000010111111100110110000
+00111000000011000011100101001001
+11100000101001001000000000000000
+00111000000000010011101001010001
+00111000000001010101001111111101
+00111000000010110011011100101010
+00111000000011001111000110111011
+11100000101001001000000000000000
+00111000000000111010111010000101
+00111000000001011110111011011001
+00111000000010001001111001100110
+00111000000011000000000110101000
+11100000101001000000000000000000
+00100000011000000000000000000000
+11011000101000000000100001000010
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111111111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001000000000000111111
+00111000000010000000000000000000
+00111000000011000000000000000000
+11100000101001001000000000000000
+00111000000000000000000000000000
+00111000000001000000000000000000
+00111000000010000001000000000000
+00111000000011000000000000000000
+11100000101001001000000000000000
+00111000000000111111111100000000
+00111000000001111111111111111111
+00111000000010111111111111001111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111111111
+00111000000011000000001111111111
+11100000101001001000000000000000
+00111000000000000000000000000000
+00111000000001000000000000000000
+00111000000010000000000000000000
+00111000000011000000000000000000
+11100000101001001000000000000000
+00111000000000010000000000000000
+00111000000001000000000000000000
+00111000000010111111000000000000
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000101001011011111111
+00111000000001100010011000110000
+00111000000010111001010001011101
+00111000000011111101001010000100
+11100000101001001000000000000000
+00111000000000110011001110100000
+00111000000001000100101101111010
+00111000000010000011011111011000
+00111000000011111100100111011100
+11100000101001001000000000000000
+00111000000000111010010001000000
+00111000000001011011100101011000
+00111000000010111000101111001110
+00111000000011010000100100011111
+11100000101001001000000000000000
+00111000000000101110000100101100
+00111000000001011111010001111100
+00111000000010110101011010110001
+00111000000011101111110101000111
+11100000101001001000000000000000
+00111000000000000110100000110111
+00111000000001101110110110010000
+00111000000010011110110011101100
+00111000000011011010110011000101
+11100000101001001000000000000000
+00111000000000100011001101010111
+00111000000001011000101011110011
+00111000000010001111100111100001
+00111000000011010010100111110000
+11100000101001001000000000000000
+00111000000000101110011111101011
+00111000000001111110011011100011
+00111000000010111110000110100111
+00111000000011010000101110001011
+11100000101001001000000000000000
+00111000000000100100111111100011
+00111000000001000010000011101111
+00111000000010011011010110100110
+00111000000011001101110000101111
+11100000101001001000000000000000
+00111000000000010011100001100000
+00111000000001101011110101101001
+00111000000010000011100100011010
+00111000000011011011001000100010
+11100000101001001000000000000000
+00100000011000000000000000000000
+00100000011101011000000000000000
+00100000010000000111010011111101
+00100000010000000111010111001001
+01110000100000001000000100000000
+00100000010000000111001110100101
+01011000000000000111001101111100
+01100000000000010100001010001100
+01011000000000000111010010001100
+01100000000000010100001010001110
+01011000000000000111001101100101
+01100000000000010100001010011000
+01011000000000000111001101111010
+01100000000000010100001010010100
+01011000000000000111001101110001
+01100000000000010100001010010000
+01011000000000000111001011110100
+01100000000000010100001010010110
+01011000000000000111001011101111
+01100000000000010100001010001010
+01011000000000000111010011100101
+01100000000000010100001010011100
+01011000000000000111010011110100
+01100000000000010100001010011010
+00100000010000000111010010010110
+01110000010000100001001000000000
+01110000010010001100011100000000
+01111001001000000000000000100101
+01000100111011000100000000111011
+01101000000000001100011101010101
+11000000000000000111001010111000
+00100000010000000111001110000010
+00100000010000000111110011110110
+00100000010000000111110100000010
+01110000010001110101011000000000
+01101000000000010100011100001011
+11000011100001100000000000000000
+00100000001000000011111001110101
+01110000010001110101011000000001
+01110000010001110101101100000001
+00100000010000000111001110000010
+01011000000000000100011101110001
+00100000010000000111001110001110
+00100000010000000111110101000100
+01101000000000001100011100010011
+00100100001110100111001010111101
+01110000010000111111111100000001
+01011000000000000000000000000000
+01100000000000100100011100101001
+00100000010000000111001110000010
+01101000000000010100011101001000
+01100000000000010100011101001010
+00100000010000000111001011100101
+01110000010001110100011000000000
+00100000010000000101001000110100
+01101000000000110100010100111110
+00100000010000000111001011010110
+00100000010000000111001011010010
+00100000011000000000000000000000
+01100000000000010100000111110100
+00011111111000001111111111111100
+01100000000000010100010100011100
+01100000000000010100010100011110
+00100000011000000000000000000000
+01101000000010010100011101000001
+00100000011110100000000000000000
+11100000010000110000000000000000
+00100000011000000000000000000000
+01100000000000110000000100000000
+01101000000000001000000100000000
+01100000000000001000000100001011
+11101000110000001000000000000000
+01100000000000001000000100001010
+11101000110000001000000000000000
+01100000000000001000000100001001
+11101000110000001000000000000000
+01100000000000001000000100001000
+11101000110000001000000000000000
+01100000000000001000000100000111
+11101000110000001000000000000000
+01100000000000001000000100000110
+01101000000000110000000100000110
+00100000011000000000000000000000
+01110000010010001011101100000000
+01101000000000010100011101001110
+00100100001110100111001011101100
+01011000000000000100011101100011
+00100000010000000111001110001110
+01011000000000000000000010100000
+00100000010000000111001011001101
+01101000000000010100011101001100
+01100000000000010100011101001110
+00100000011000000000000000000000
+01101000000000001100011101000000
+11000000000000001011111000110101
+01101000000000001100100001110111
+00100100001110100011111000110101
+00100000001000000011111000110111
+00011010011000100111111000000000
+11000000000101101111010001110101
+11000000000010000111010001111010
+11000000000010100111001100110100
+11000000000010101111001101001100
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000111001011111101
+00100000011000000000000000000000
+01100000000010001000001001001110
+01101000000000001000001001001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001001110
+01111001001000000000000000100101
+01000100111011001100000000111011
+00100000010000000111110100011111
+00100000010000000111001100011111
+00100000010000000111001100101100
+00100000010000000111010001101100
+00100000010000000111010001100100
+00100000010000000111001100010011
+00100000010000000111001100001100
+00100000001000000111001011111110
+01101000000000001100100011000111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100100011000111
+00100100011110100000000000000000
+01110000010000100001001000000101
+00100000011000000000000000000000
+01101000000000001100100011000010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100100011000010
+00100100011110100000000000000000
+01101000000000001000001101100010
+11000011000000100111001100011100
+01110000010010001100001000000001
+00100000011000000000000000000000
+00100000010000000011111001111111
+01110000000010011011110100010010
+00100000001000000111110110010000
+01101000000000001100011101010110
+11000001100000001000000000000000
+01101000000000010100011101001110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011101001110
+00100100011110100000000000000000
+01101000000000010100011100001011
+11000010100001001111001100101010
+01011000000000000100011101101010
+00100000010000000111001110001110
+01011000000000000000000101000000
+00100000001000000111001011001101
+01101000000000010100011101001010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011101001010
+00100100011110100000000000000000
+01110000010001110101011000000010
+00100000010000000111010010000111
+00100000011000000000000000000000
+01110000010000010011000100000000
+01101000000000010100011101001000
+01100000000000010100011101001010
+01110000010001110100011000000000
+00100000010000000011111001100001
+01011000000100010010001000110011
+01100000000000011100010010100010
+01011000010001000101010101100110
+11100000101000011000000000000000
+01011000011101111000100010011001
+11100000101000011000000000000000
+01011000000000000001000100100010
+11100000101000011000000000000000
+01011000001100110100010001010101
+11100000101000011000000000000000
+01011000000000000000000001100110
+11100000101000001000000000000000
+00100000010000000011111001100001
+00100000010000000011111001111111
+01110000010001110100111000000000
+01011000000000000100011101111111
+00100000010000000111001110001110
+01110000010001110000111000000000
+00100000011000000000000000000000
+01110000010000100001001000000000
+01110000010010001100011100000000
+01110000010001001011001000000000
+01110000010010001100011000000000
+01110000010010001100000000000000
+00100000010000000111010010011011
+01101000000000010100011101001000
+01100000000000010100011101001010
+01101000000000001100011101000011
+11000000100000000111001101101001
+00100000010000000111001011100101
+01110000010001110100011000000000
+01011000000000000000000000000000
+01100000000000010000001010000110
+01011000000000000000000000000000
+01100000000000010000001010001000
+00100000010000000111001101100011
+00100000010000000011111001100011
+00100000011000000000000000000000
+01110000010001110100000000000001
+00100000011000000000000000000000
+01101000000000001100011101000000
+00100000011000000000000000000000
+01110000010001110100000000000000
+00100000011000000000000000000000
+00100000001000000011111001110101
+01110000010001110100001100000001
+01101000000000010100011100001011
+11000010100001001011111001101011
+00100000010000000111001101101101
+00100000010000000111111101101011
+01110000010001110100001100000000
+00100000001000000011111000001010
+01011000000000000000000000000000
+01100000000000010000001010000110
+01100000000000010000001010001000
+00100000001000000111001101100011
+01101000000000001100011101000111
+00100100010110100111001101110101
+00100000010000000111010011001010
+00100000001000000111001111000101
+01110000010001110100011100000000
+01110000000010011011110100000011
+00100000001000000100101111010110
+01110000010001110100011100000001
+00100000011000000000000000000000
+00100000010000000111010011001010
+00100000001000000111001111000101
+00100000010000000111001110101111
+01101000000000010100011110110110
+00100000001110100111001110000000
+00100000001000000011111001110101
+00100000010000000110010100001001
+00100000001000000111010010001100
+01101000000000001100011101011110
+00011111111000100111001000000000
+01011000000000000100011101011111
+00011111111000100010001000000000
+00011010001000100000110000000000
+11101000110000001000000000000000
+11000000011111111111001110001100
+00011111111000100000010000000000
+01100000000000001100011100001110
+00100000010000000111110100101010
+11000010000000000111001110000110
+00100000011000000000000000000000
+00011111111000100000110000000000
+00011000000000000111001000000111
+11011000101000000100011110100010
+00100000010000000111111011001101
+01111001001000000000000000100101
+01000100111011010100000000111011
+01101000000000001100011110100010
+11000001011111111000000000000000
+01101000000010010100011110100100
+01100000000010010100011100010001
+01101000000010010100011110100110
+01100000000010010100011100001111
+01101000000010001100011110101000
+01100000000010001100011100010011
+00100000010000000111110100101111
+01101000000010001100011110100011
+01100000000010001100011100001110
+01101000000000001100011110100010
+11000000000000000111001110100011
+11000000000000001111110100111000
+11000000000000010111110100111111
+00100000011000000000000000000000
+00100000001000000111110100101111
+01101000000000001100011110101001
+00100000011110100000000000000000
+00011111111000100111001000000000
+01011000000000000100011110101010
+00011111111000100010001000000000
+11101010001010001000000000000000
+00100000010000000110010011011111
+00011010001000001010001000000010
+11000010000000000111001110101010
+00100000011000000000000000000000
+11011010001000000100011110101010
+00011000000000000010010000000000
+01110000010001111011011000000000
+11101010001010001000000000000000
+00100000010000000110010011110101
+01111001001000000000000000100101
+01000100111011011100000000111011
+01101000000000010100011110110110
+00011010010000100000111000000000
+11111001001000001111111000000000
+01100000000000010100011110110110
+00011010001000001010001000000010
+00011010010000001010010000000001
+01101000000000001100011110101001
+10011010010000101111110000000000
+00100100001000101111001110110010
+01101000000000010100011110110110
+01101000000010010100011110111000
+10011000010000101111110000000000
+00100000011000101000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+11011000111000000000000000001100
+00100000010000000111111011100010
+00100100011110100000000000000000
+00100000010000000111010011000111
+01101000000000001100011101011011
+00100000011110100000000000000000
+01111000010101000111110000000000
+00100000010000000111010010001100
+01111001001000000000000000100101
+01000100111011100100000000111011
+01101000000000001100011110101001
+00100000011110100000000000000000
+00100000010000000111001110101111
+00100100001101000111110100101000
+00100000010000000111110100100110
+01111000010101000111110000000000
+01101000000000010100011101001000
+01100000000000010100011101001010
+01101000000000010100011100001011
+11000011000001001111001011100101
+00100000010000000111010011011110
+00100000001000010111001111110101
+01101000000000010100011110110110
+01100000000000010100011111000000
+01110000010001111100001000000000
+00011000000000000000111000000000
+01111001001000000000000000100101
+01000100111011101100000000111011
+01101000000000010100011110111000
+00011111111000110000010000000000
+01100000000010010100011110111000
+00011111111000010111111000000001
+01101000000010010100011111000000
+00011000010000010010001000000001
+00011000010000110000010000000000
+01100000000010010100011111000000
+10011010001000101111110000000000
+00100100010000101111001111111001
+01101000000000001100011110101001
+01101000000010001100011111000010
+00011000010000001000010000000001
+01100000000010001100011111000010
+00011000010000100000111000000000
+10011000111000101111110000000000
+00100100001000101111001111011111
+01101000000000010100011110110110
+01100000000000010100011110111000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100011110110110
+01100000000000010100011110111000
+00100000011000000000000000000000
+00011010001000100111111000000000
+00100000001110100111010000011001
+01111001001000000000000000100101
+01000100111011110100000000111011
+00011000111000100111111000000000
+11000000000000000111010000100011
+11000000000000001111010000100111
+11000000000000010111010000101011
+11000000000000011111010000101111
+11000000000000100111010000110011
+11000000000000101111010000110111
+01101000000000001100010101101011
+11000001100000011000000000000000
+01101000000000001100100010111011
+00100100011110100000000000000000
+11101000010000001000000000000000
+00100000011110100000000000000000
+01100000000000001100011110111010
+00011000010000001000010000000001
+01100000000010010100011110111011
+01101000000000010100011110111011
+11101111111010001000000000000000
+00011000010000100111001000000000
+10011000010000001000010000000000
+01100000000010010100011110111011
+00011111111000100000010000000000
+00100000010000000111010010011100
+01101000000000001100011110111010
+00011111111000001111111111111111
+01100000000000001100011110111010
+00100100001000101111010000001101
+00100000001000000111010011001010
+01111001001000000000000000100101
+01000100111011111100000000111011
+00011000111000100111111000000000
+11000000000000000111010000111011
+11000000000000001111010000111111
+11000000000000010111010001000011
+11000000000000011111010001000111
+11000000000000100111010001001011
+11000000000000101111010001001111
+00100000001000000111010000000100
+01101000000000001100011110101011
+00100000010000000111010001010111
+11011000010000000100011111000011
+00100000001000000111010000000100
+01101000000000001100011110101101
+00100000010000000111010001010111
+11011000010000000100011111101011
+00100000001000000111010000000100
+01101000000000001100011110101111
+00100000010000000111010001010111
+11011000010000000100100000000111
+00100000001000000111010000000100
+01101000000000001100011110110001
+00100000010000000111010001010111
+11011000010000000100100000100011
+00100000001000000111010000000100
+01101000000000001100011110110011
+00100000010000000111010001010111
+11011000010000000100100000111111
+00100000001000000111010000000100
+01101000000000001100011110110101
+00100000010000000111010001010111
+11011000010000000100100001011011
+00100000001000000111010000000100
+01101000000000001100011110101011
+00100000010000000111010001010011
+11011000010000000100011111010111
+00100000001000000111010000000100
+01101000000000001100011110101101
+00100000010000000111010001010011
+11011000010000000100011111111001
+00100000001000000111010000000100
+01101000000000001100011110101111
+00100000010000000111010001010011
+11011000010000000100100000010101
+00100000001000000111010000000100
+01101000000000001100011110110001
+00100000010000000111010001010011
+11011000010000000100100000110001
+00100000001000000111010000000100
+01101000000000001100011110110011
+00100000010000000111010001010011
+11011000010000000100100001001101
+00100000001000000111010000000100
+01101000000000001100011110110101
+00100000010000000111010001010011
+11011000010000000100100001101001
+00100000001000000111010000000100
+00101111111000011111111000000001
+00100000011000001000000000000000
+00011000000000000111111000000011
+00100000001000000111010001010111
+11000000000000000111010001011100
+11000000000000001111010001011110
+11000000000000010111010001100000
+11000000000000011111010001100010
+00100000001000000111001110001110
+01011000000000000100011110000110
+00100000001000000111001110001110
+01011000000000000100011110001101
+00100000001000000111001110001110
+01011000000000000100011110010100
+00100000001000000111001110001110
+01011000000000000100011110011011
+00100000001000000111001110001110
+01101000000000001100011101011010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101011010
+00100100011110100000000000000000
+01101000000000001100011101010110
+11000000000000001111001011000000
+00100000001000000111010010001010
+01101000000000001100011101011000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101011000
+00100100011110100000000000000000
+00100000001000000011111001110011
+01101000000000001100011101010111
+01100000000000001100011101011000
+00100000001000000011111001110001
+01101000000000001100011101010110
+11000000000000001111010001111000
+00100000001000000011111001110101
+01110000010001110101101100000001
+00100000011000000000000000000000
+01101000000000001100011101010110
+11000000000000001111010010000001
+01110000010001110101011000000001
+01011000000000000100011101110001
+01101000000010001100011101011001
+01100000000010001100011101011010
+00100000001000000111001110001110
+01110000010001110101011000000010
+01110000010001110101101100000000
+01110000010000111111111100000000
+01101000000000010100011100001011
+11000011000001001111010010000111
+00100000010000000011111001101011
+01110000010000111111111100000000
+01011000000000000100011101111000
+00100000001000000111010001111110
+00100000010000000111001110000010
+00100000001000000011111001110101
+01101000000000001100011110101001
+00100000011110100000000000000000
+00011111111000100111001000000000
+01011000000000000100011110101010
+00011111111000100010001000000000
+11101010001010001000000000000000
+00100000010000000110010011000010
+00011010001000001010001000000010
+11000010000000000111010010010001
+00100000011000000000000000000000
+01110000010010000111011100000000
+01011000000000000100100001111100
+01100000000000010100100001111000
+01100000000000010100100001111010
+00100000011000000000000000000000
+00100000001000000111010010010110
+01111000010101000111110000000000
+01101000000000001100100001110111
+00101111111000011111111000000110
+00100000011000001000000000000000
+01111000001101000111110000000000
+01101000000000010100100001111010
+00011111111000100000101000000000
+00011000010000100000110000000000
+00100000010000000111111011001101
+01101000000000001100100001110111
+00011111111000001111111000000001
+01100000000000001100100001110111
+01011000000000000100100001111010
+00100000010000000111010010101011
+00100000011000000000000000000000
+00011111111000100010001000000000
+11011000010000000100100010111000
+11101010001000010000000000000000
+00011111111000001111111000001010
+10011000010001100111110000000000
+00100100001000010111010010110010
+01011000000000000100100001111100
+11100010001000010000000000000000
+00100000011000000000000000000000
+01111000010101000111110000000000
+01101000000000001100100001110111
+00100000011110100000000000000000
+01111000001101000111110000000000
+01101000000000001100100001110111
+00011111111000001111111111111111
+01100000000000001100100001110111
+01101000000000010100100001111000
+01100000000000010100100010111000
+01011000000000000100100001111000
+00100000010000000111010010101011
+01101000000000010100100010111000
+00100000011000000000000000000000
+01111000010101000111110000000000
+01101000000000001100100001110111
+00100000011110100000000000000000
+01111000001101000111110000000000
+01101000000000010100100001111000
+00100000011000000000000000000000
+01101000000000010100011101011100
+11011000111000000000000000001100
+00100000001000000111111011010100
+00100000010000000111010011000001
+00100100011101000000000000000000
+01111000010101000111110000000000
+00011000000000000000010000010011
+01100000000010010100010011111000
+00100000001000000111010011010000
+11011111001000000000000000000010
+01101000000010010100010011111000
+11011000110000000100011100101001
+00100000010000000111010011010111
+00100000011000000000000000000000
+01110000000010011011110100011101
+00100000001000000111010011011100
+00100000010000000100101111010000
+00100100011110100000000000000000
+01101000000000001100100010111010
+00100100011110100000000000000000
+01110000000010011011110100011011
+00100000010000000100101111010110
+00100000001000000111001101011111
+01101000000010100100011100101111
+00011100010000100111111000000000
+01100000000000100100011100101111
+10011000010001100111111000000000
+00100100011000010000000000000000
+00011111111001100111111000010100
+00100000011000000000000000000000
+00100000010000000111010010110100
+00100100011101000000000000000000
+01111000010101000111110000000000
+00011111111000100000110000000000
+11101000110010001000000000000000
+00011000010000001000010111111101
+00011000010000100111001000000000
+11101000110010010000000000000000
+00011111001000001111111000000111
+01100000000000001100011100111111
+11011000101000000100010001101100
+11100000101010010000000000000000
+00100000010000000111111011001101
+01101000000010001100011100111111
+00100000001000000100111110001001
+01101000000000001000001110011010
+11000000000010010111010011111000
+11000000001010010111010011111011
+00100000011000000000000000000000
+01101000000000010000001110011011
+11000000000011000111010011111011
+00100000011000000000000000000000
+01110000010010001011101000000000
+00100000011000000000000000000000
+11011000101000000100100011001100
+00111000000000100000000000000001
+00111000000001100000000000000000
+00111000000010000001000000100010
+00111000000011000000100001100000
+11100000101001001000000000000000
+00111000000000110000001000000000
+00111000000001000100101000000000
+00111000000010000011001000000000
+00111000000011000000100000000000
+11100000101001001000000000000000
+00111000000000010010101000000101
+00111000000001010000000000000000
+00111000000010000010000000000000
+00111000000011001010010000001000
+11100000101001001000000000000000
+00111000000000000000000000000010
+00111000000001000000000101000000
+00111000000010000000000000100000
+00111000000011000000100010100000
+11100000101001001000000000000000
+00111000000000100001100000000000
+00111000000001001000000000000001
+00111000000010101000000000110000
+00111000000011000000100000000100
+11100000101001001000000000000000
+00111000000000100000000000000111
+00111000000001101000000000000000
+00111000000010000011000100110010
+00111000000011011010010110100001
+11100000101001001000000000000000
+00111000000000010111001101110000
+00111000000001110101100001011001
+00111000000010001100010000100010
+00111000000011001000000100010101
+11100000101001001000000000000000
+00111000000000000010000000100000
+00111000000001000000100000001000
+00111000000010100000001000000010
+00111000000011000000000000100000
+11100000101001001000000000000000
+00111000000000000000001100000010
+00111000000001001000000001001010
+00111000000010000000000010010000
+00111000000011000000010000001000
+11100000101001001000000000000000
+00111000000000000000001000101010
+00111000000001101000000000110010
+00111000000010000010000000000000
+00111000000011001010000000001100
+11100000101001001000000000000000
+00111000000000110000001000000001
+00111000000001001000000000000010
+00111000000010101010000001000000
+00111000000011000001100000100000
+11100000101001001000000000000000
+00111000000000000000011000000000
+00111000000001000001100100000000
+00111000000010000001001011000000
+00111000000011000000000000110000
+11100000101001001000000000000000
+00111000000000000000000000000010
+00111000000001101000000010001010
+00111000000010001101000110000000
+00111000000011000000100000000000
+11100000101001001000000000000000
+00111000000000010010100000000011
+00111000000001111000000010000000
+00111000000010000010000000000000
+00111000000011001010100101000000
+11100000101001001000000000000000
+00111000000000100000001000000111
+00111000000001011000100100100010
+00111000000010000001100000100110
+00111000000011000011110000000000
+11100000101001001000000000000000
+00111000000000000000001000000000
+00111000000001001000101000000000
+00111000000010011000000100100000
+00111000000011000000000001000000
+11100000101001001000000000000000
+00111000000000000000001100000010
+00111000000001011000000001001010
+00111000000010000000000100010000
+00111000000011010011100000001000
+11100000101001001000000000000000
+01011000000000010000000100101010
+11100000101000011000000000000000
+00111000000000100000000000010010
+00111000000001100000000011000000
+00111000000010010010000000010010
+00111000000011000000000001001100
+11100000101001001000000000000000
+00111000000000100100110100000010
+00111000000001000000000010001010
+00111000000010010100001010000000
+00111000000011000000100000000000
+11100000101001001000000000000000
+00111000000000100010100100000010
+00111000000001000000000000000000
+00111000000010000000000101010000
+00111000000011000010000000001000
+11100000101001001000000000000000
+00111000000000100000001000101001
+00111000000001011000000001000000
+00111000000010000010000000000001
+00111000000011001010000000001100
+11100000101001001000000000000000
+00111000000000110001001000000001
+00111000000001001000000000000101
+00111000000010101010010011010000
+00111000000011000000000000001000
+11100000101001001000000000000000
+00111000000000000001100000101000
+00111000000001001000000010000000
+00111000000010000010001010010000
+00111000000011000000000000000000
+11100000101001001000000000000000
+00111000000000100000000000011001
+00111000000001100100001000000000
+00111000000010000011000000100010
+00111000000011000110100000000100
+11100000101001001000000000000000
+00111000000000110000001000000000
+00111000000001000100101000000000
+00111000000010011011000000100000
+00111000000011000000100000000000
+11100000101001001000000000000000
+00111000000000000010101001001011
+00111000000001110000000101010001
+00111000000010000001000010010000
+00111000000011000000011010000100
+11100000101001001000000000000000
+00111000000000010000001010000101
+00111000000001100111101001000010
+00111000000010001001111010100000
+00111000000011000010011110001000
+11100000101001001000000000000000
+00111000000000010001010100110000
+00111000000001110000100101000000
+00111000000010010000011101010000
+00111000000011000000011001010100
+11100000101001001000000000000000
+00111000000000000000000010000001
+00111000000001000100000101110000
+00111000000010000110000010010000
+00111000000011000000011010000100
+11100000101001001000000000000000
+00111000000000010000001110000101
+00111000000001100100000111000001
+00111000000010101001111000000001
+00111000000011000101011110011100
+11100000101001001000000000000000
+00111000000000010010010100000000
+00111000000001000101110101000000
+00111000000010001000100101010000
+00111000000011000000101000000100
+11100000101001001000000000000000
+00111000000000010000100001110101
+00111000000001010100000001100101
+00111000000010100101000000000001
+00111000000011000001011111010000
+11100000101001001000000000000000
+00111000000000000001100100000111
+00111000000001010000101001000000
+00111000000010000000100000011111
+00111000000011000000001100000000
+11100000101001000000000000000000
+00111000000000100000000000011100
+00111000000001100000000011000000
+00111000000010000010000000010010
+00111000000011000000000001110100
+11100000101001001000000000000000
+00111000000000100100101000000010
+00111000000001000100000100001010
+00111000000010000000000000010001
+00111000000011000111100000000100
+11100000101001001000000000000000
+00111000000000110000001000000000
+00111000000001000100101000000000
+00111000000010011111000001000000
+00111000000011000000100000000000
+11100000101001001000000000000000
+00111000000000010010101001001100
+00111000000001000000000000000000
+00111000000010000010000000000010
+00111000000011001010000000000000
+11100000101001001000000000000000
+00111000000000000000111100000010
+00111000000001000000100001000110
+00111000000010000011000000100000
+00111000000011000000010010100000
+11100000101001001000000000000000
+00111000000000000010001000010010
+00111000000001100100000010000000
+00111000000010000001001010100001
+00111000000011001000110000000000
+11100000101001001000000000000000
+00111000000000100000001000000000
+00111000000001001000101001000000
+00111000000010000000000000000000
+00111000000011000000000000000000
+11100000101001001000000000000000
+00100000011000000000000000000000
+01110000010001001101111100000001
+01110000010001011010100000000001
+01110000010001010110110000000001
+01011000000000000000000000011011
+01100000000000010100010110001011
+01110000010001010010001000000001
+01110000010010001100100000000011
+01110000010001011001011001010000
+01110000010001010100110000010111
+01110000010001010100111000010111
+11011000101000000100010011011100
+00111000000000000000001100000010
+00111000000001000000000001000000
+00111000000010000001000000100001
+00111000000011000000000000000000
+11100000101000111000000000000000
+11011000101000000100010110001101
+00111000000000000000000000001000
+00111000000001000000000000000100
+00111000000010101100000000000000
+00111000000011000000000000000100
+11100000101001000000000000000000
+00100000011000000000000000000000
+01101000000000001100011011100010
+00100100001110100111010111110100
+00100000001000000111101010010110
+01111001001000000000000000100101
+01000100111100000100000000111100
+01101000000000001100011011100010
+00100000011110100000000000000000
+01101000000000001100011000111001
+11000001100000001000000000000000
+01101000000000001100010101100011
+00100000011110100000000000000000
+01101000000000001100010101101000
+11000001000000011000000000000000
+01101000000000010100011100001011
+11000010100000000111010111110010
+01101000000000001100010101100101
+11000000000000000111101010010110
+00100000011000000000000000000000
+01110000010001010110010100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100001100000000111100
+01101000000000001100011011100010
+00100000001110100101011100110111
+00100000010000000101011100101111
+00100000010000000111010111111011
+00100000001000000111011010000100
+01011000000000000000000000000000
+01100000000001000000100011010010
+01100000000000100000100011011010
+01100000000000111100011011100110
+00100000011000000000000000000000
+01110000000010001101010000000001
+00100000001000000111011000000101
+01101000000000001100011000111001
+11000000000000001111011010100010
+00100000001000000011101100110001
+01101000000000001100011000111001
+11000000000000001111011000001000
+00100000001000000111011010000100
+00100000010000000111011010100010
+01101000000000001000100011010011
+00100100011110100000000000000000
+01110000000010001101001000000011
+00100000011000000000000000000000
+01101000000000001000100011010110
+11000000100000000111011000101011
+00100000010000000111011000101000
+11011000101000000000100110100010
+01011000000000000000100101010010
+11100000101000010000000000000000
+01011000000000000100011011001010
+11100000101000010000000000000000
+01011000000000000000100100000010
+11100000101000010000000000000000
+00100000001000000111011000011111
+11011000101000000000100110100010
+01011000000000000000100101100010
+11100000101000010000000000000000
+01011000000000000000100100000010
+11100000101000010000000000000000
+01011000000000000100011011001010
+11100000101000010000000000000000
+00100000010000000111100110111101
+01101000000000001000100011010011
+11000000000000100111011000100101
+01110000000010001101010000000001
+01110000000010001101001000000101
+00100000011000000000000000000000
+01110000000010001101001100010100
+00100000010000000111011000000010
+00100000001000000111011011110011
+11011000101000000000100101000010
+00011000000000000000111000001000
+00100000001000000111011010111011
+01110000000010001101010000000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100010100000000111100
+11011000101000000000011001001011
+01101000000000110100000101000000
+11100000101000110000000000000000
+01101000000000110000000001000000
+11100000101000110000000000000000
+01101000000000011100011011100110
+11100000101000011000000000000000
+00100000010000000111101000101011
+11011010001000000000100101110010
+11011010010000000000100110000010
+00011000000000000000111000000100
+00100000010000000111011011000000
+00100100001000001111011001001000
+00100000010000000111011000111111
+01110000000000000111110101000001
+00100000001000000101100100000011
+01101000000000001000100011010011
+11000000000001001111011001000101
+01110000000010001101001000001010
+01110000000010001101010000000001
+01110000000000000111110000000011
+00100000011000000000000000000000
+01110000000000000111110000000011
+01110000000010001101001100010101
+00100000001000000111011011110011
+01101000000000001000100011010011
+11000000000001001111011001001110
+01110000000010001101001000000000
+01110000000000000111110000000100
+01110000000000000111111000000101
+00100000011000000000000000000000
+01110000000000000111110000000100
+01110000000010001101001100000000
+00100000011000000000000000000000
+01101000000000001000100011010111
+11000000000000001111011001010101
+01110000000010001101001100001010
+00100000001000000111011011110011
+11011000101000000000011001001011
+01101000000000110000000001000000
+11100000101000110000000000000000
+01101000000000110100000101000000
+11100000101000110000000000000000
+01101000000000011100011011100011
+11100000101000011000000000000000
+00100000010000000111101001000011
+01101000000000001000100011010011
+11000000000001010111011001100010
+01110000000010001101001000001011
+01110000000010001101010000000001
+00100000011000000000000000000000
+01110000000010001101001100001011
+01110000000010001101010100000001
+00100000011000000000000000000000
+11011000101000000000100110100010
+01101000000000110000000001000000
+11100000101000110000000000000000
+01101000000000110100000101000000
+11100000101000110000000000000000
+01011000000000000000100101010010
+11100000101000010000000000000000
+01011000000000000000100101100010
+11100000101000010000000000000000
+00100000001000000111011001111001
+01110000000010001101001000001111
+11011000101000000000100110100010
+01101000000000110100000101000000
+11100000101000110000000000000000
+01101000000000110000000001000000
+11100000101000110000000000000000
+01011000000000000000100101100010
+11100000101000010000000000000000
+01011000000000000000100101010010
+11100000101000010000000000000000
+11011000101000000000011001001011
+01101000000000110000100110100010
+11100000101000110000000000000000
+01101000000000110000100110101000
+11100000101000110000000000000000
+00100000010000000111100111110101
+01110000010000100101110100000001
+11011000101000000100001001100001
+11011000110000000000100101110010
+00100000010000000111111010000111
+00100000001000000011000111101110
+01111001001000000000000000100101
+01000100111100011100000000111100
+01101000000000001100011000111001
+11000001100000000000000000000000
+01101000000000001000100011010110
+11000001100000000000000000000000
+11011000101000000100011010011010
+00011000000000000000111000001011
+00100000010000000111011010111011
+00011000000010100111111000000000
+00011111111000110111111000000000
+11100000101000010000000000000000
+11011000101000000000010111100010
+11011000110000000100011010011010
+00100000010000000111111010000110
+11011000101000000000010100001010
+11011000110000000000011111110010
+00100000010000000111111010000100
+11011000101000000000010100111010
+00100000010000000111111010010000
+01110000000001010011101000000001
+00100000010000000111101001111100
+01110000000010001101011000000001
+00100000011000000000000000000000
+11011000101000000100011010110010
+11011000110000000000010101010010
+00100000010000000111111010000100
+01110000010001100011100100000001
+01110000000010001101011000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100100100000000111100
+01101000000000001000100011011101
+11000001100000000000000000000000
+01101000000000001000100011010110
+11000001100000000000000000000000
+11011000101000000000010111100010
+11011000110000000100011010011010
+00100000010000000111111010000110
+11011000101000000000010100001010
+11011000110000000000100011101010
+00100000010000000111111010000100
+11011000101000000000010100111010
+00100000010000000111111010010000
+01110000000001010011101000000001
+00100000010000000111101001111100
+01110000000010001101011000000010
+00100000011000000000000000000000
+01110000000010001101011100000001
+11011000101000000000100100101010
+11011000110000000000010101010010
+00100000010000000111111010000110
+01110000000010001101110100000001
+01110000000010001101011000000000
+00100000011000000000000000000000
+00011000111000001000111111111111
+00100100011000010000000000000000
+00011000000010100111111000000000
+11100000101000010000000000000000
+00100000001000000111011010111011
+00011000111000001000111111111111
+00100100001000010111011011001100
+11101010001000100000000000000000
+00011111111000100000010000000000
+11101010010000100000000000000000
+10011000010000101111111000000000
+00100100001000101111011011001010
+00011010001000001010001000000100
+00011010010000001010010000000100
+00100000001000000111011011000000
+01111000010000001111110000000000
+00100000011000000000000000000000
+01111000001000001111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100101100000000111100
+01101000000000001000100011010100
+00100000011110100000000000000000
+00100000010000000101100011000101
+00100100011110100000000000000000
+01110000000010001101010000000000
+01101000000000001000100011010010
+11000000000000011101100000000110
+11000000000000101101100000100011
+11000000000000111101100000101110
+11000000000001011101100001000011
+11000000000000010111011000000000
+11000000000000100111011000001101
+11000000000001001111011000101101
+11000000000001010111011001010001
+11000000000001100111011001101111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100110100000000111100
+01101000000000001000100011010101
+00100000011110100000000000000000
+00100000010000000101100011000101
+00100100011110100000000000000000
+01110000000010001101010100000000
+01101000000000001000100011010011
+11000000000010010101011111101001
+11000000000010011101011111101110
+11000000000000011101011111110010
+11000000000000100111011000011000
+11000000000010100101011111110110
+11000000000000111101100000000100
+11000000000001010111011001010001
+11000000000001011101100001000010
+11000000000001001111011000101101
+11000000000010101101100000111100
+00100000011000000000000000000000
+01110000000010001101010100000001
+00100000011000000000000000000000
+01110000000010001101010100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100111100000000111100
+01101000000000001100011011100010
+00100000011110100000000000000000
+01101000000000001000100011010110
+00100000011110100000000000000000
+00011111111000001111111010000000
+01100000000000001000100011010110
+11000011100000111000000000000000
+01101000000000001000010100000111
+00100000001110100111011100000011
+00100000001000000111101010000111
+00100000010000000111100011101111
+01101000000000001000100011010110
+11000000000000001111011010011100
+11000000000000010111011010110100
+00100000011000000000000000000000
+00011111111000010000111000000111
+00011111111010010111111000000000
+10011000110000001000110000000000
+11101000110000001000000000000000
+10101111111011000000000000000000
+00100000011000000000000000000000
+00100000010000000111111010000110
+00100000010000000111111010000110
+00100000001000000111111010000110
+11101000110001000000000000000000
+00100100011110100000000000000000
+11101000110001000000000000000000
+00100100011110100000000000000000
+11101000110001000000000000000000
+00100000011000000000000000000000
+11101010001000100000000000000000
+10011000000000000000010000000000
+11101010010000100000000000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111011100010111
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011010001000001010001000010100
+00011010010000001010010000010100
+11101010010000100000000000000000
+10011000000000000000010000000000
+11101010001000100000000000000000
+10011000010001100111111000000000
+00100100011000010000000000000000
+00100100011110100000000000000000
+00011010001000001010001111111100
+00011010010000001010010111111100
+11000010000000000111011100100011
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011000000000000010011000000000
+11101010001000100000000000000000
+10011000000000000000010000000000
+11101010010000100000000000000000
+10011000010000001111111000000000
+10011010011000001111111000000000
+11100000101000100000000000000000
+00101111111011111111111000100000
+01111001001000001010011000000000
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111011100101111
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011000000000000010011000000000
+11101010010000100000000000000000
+10011000000000000000010000000000
+11101010001000100000000000000000
+10011000010001100111111000000000
+10011010011001100111111000000000
+11100000101000100000000000000000
+00101111111011111111111000100000
+01111001001000001010011000000000
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111011100111101
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011010001000001010001000010100
+00011000000000000010011000000000
+11101010001000100000000000000000
+00101111111011111111111000000000
+01111001001000001010011000000001
+00011111111000110111111000000000
+00101010011011111111111000000000
+01111001001000001111111000011111
+11100010001000100000000000000000
+00011010001000001010001111111100
+00011010011000110010011000000000
+11000010000000000111011101001100
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011000000000000010011000000000
+11101010001000100000000000000000
+00101111111011111111111000011111
+01111001001000001010011000000001
+00011111111000111111111000000000
+00101010011011111111111000000000
+01111001001000001111111000000000
+11100010001000100000000000000000
+00011010001000001010001000000100
+00011010011000110010011000000000
+11000010000000000111011101011001
+00100000011000000000000000000000
+00100000010000000111011101010111
+00101010011011111111111000000000
+00100000001000001111011101101101
+11011010010000000000011110101010
+00011010001000100010011000000000
+00011010001000001010001111101000
+00100000010000000111011100100000
+00100100011000010000000000000000
+00011010011000100010001000000000
+00011010001000001010001111101000
+11011010010000000000011110101010
+00011010001000100000101000000000
+00100000001000000111011100111011
+00100000010000000111011100101101
+00011000101000100010001000000000
+00100000001000000111011101100101
+00100000010000000111011100111011
+00101010011011000000000000000000
+00100000011000001000000000000000
+11011010010000000000011110101010
+00011000101000001010001111101000
+00011010001000100000101000000000
+00100000001000000111011100101101
+00011000101000100001011000000000
+00011010001000100110000000000000
+11011010010000000000011000111010
+00011010010000100000101000000000
+00011010001000001000110000011000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+00011001011000100000101000000000
+00100000010000000111011101110001
+11011010010000000000011000111010
+00011010010000100000101000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+00011110000000001000110000100000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111011101110001
+11011010010000000000011000111010
+00011010010000100000101000000000
+00011110000000001000110000101000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000001000000111011101110001
+00011000000000000111001000000110
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+11000010000000000111011110011101
+00100000011000000000000000000000
+00011000101000100001011000000000
+11011000101000000000011000001010
+00100000010000000111111010010000
+11011000101000000000011000001010
+00011010001000100000110000000000
+00011000000000000111000000000000
+00100000010000000111011110011100
+00011010010000100000110000000000
+00100000010000000111011110011100
+00011000000000000010010000000000
+00011000000000000000010000000000
+00011000000000000010011000000110
+11101000101000100000000000000000
+10011000000000000010001000000000
+00011010010000100111000000000000
+00011101111000100111111000000000
+00011010011000100111000000000000
+10011101111011111111111000000000
+10011010001000001111111000000000
+10011000010000001111111000000000
+11100000101000100000000000000000
+00011111111011110000010000000000
+00011010011000001010011000000001
+00101010011000011111111000001100
+00100100001000001111011110101110
+00011000010000100111111000000000
+11100000101000100000000000000000
+00011000101000001000101111101000
+00011010010000001010010000000001
+00101010010000011111111000000110
+00100100001000001111011110101100
+11011010001000000000011000001010
+00011001011000100000101000000000
+00100000001000000111011101111011
+00011010001000100010010000000000
+00100000001000000111011110100010
+00011010001000100110000000000000
+00011110000000100010001000000000
+11101010001000001000000000000000
+00101111111011111111111000000000
+00100000011000001000000000000000
+00100000010000000111011101001001
+11101010010000001000000000000000
+00101111111011000000000000000000
+00100000001000001111011111010110
+11011010001000000000011110101010
+00011010010000100000101000000000
+00100000010000000111011100101101
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00011010010000001010010111101000
+00011010010000001010001000011000
+00011000000000000111001000000111
+00100000010000000111011101001011
+00100000001000000111011111000111
+00011000101000100001011000000000
+11011000101000000000011001101010
+00100000010000000111111010010000
+00011000000000000111111000000000
+01100000000000100000011000100010
+01100000000000100000011010000010
+01110000000001100110101000000001
+11011000101000000000011000001010
+00100000010000000111111010010000
+11011000110000000000011110101010
+11011000101000000000011000111010
+00100000010000000111111010000110
+00011010001000100000110000000000
+11011000101000000000011001010010
+00100000010000000111111010000110
+11011000110000000000011001010010
+00100000010000000111011100010001
+00100000001110100111100000010010
+11011010001000000000011001010010
+11011010010000000000011001101010
+00100000010000000111011111000110
+11011010001000000000011000111010
+11011010010000000000011000001010
+00100000010000000111011111000110
+11011010001000000000011001010010
+11011010010000000000011000111010
+00100000010000000111011100100000
+00100000001000010111100000000100
+11011010001000000000011000111010
+11011010010000000000011001010010
+00011010001000100000101000000000
+00100000010000000111011100111011
+11011010001000000000011001101010
+11011010010000000000011000001010
+00011010010000100000101000000000
+00100000010000000111011100101101
+11101010001000001000000000000000
+10011010011000001010011000000000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00100000001000000111011111101001
+11011010001000000000011001010010
+11011010010000000000011000111010
+00011010001000100000101000000000
+00100000010000000111011100111011
+11011010001000000000011000001010
+11011010010000000000011001101010
+00011010010000100000101000000000
+00100000010000000111011100101101
+11101010001000001000000000000000
+10011010011000001010011000000000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00100000001000000111011111101001
+11011000101000000000011001101010
+00100000010000000111111010010000
+01101000000000001000011000100010
+01100000000000001000011001101010
+01100000000000001000011001110010
+11011010001000000000011001101010
+11011010010000000000011000001010
+00011010010000100000101000000000
+00100000010000000111011101110001
+11011010001000000000011110101010
+11011010010000000000011000001010
+00011001011000100000101000000000
+00100000001000000111011101110100
+11011010001000000000010111001010
+11011000101000000000011010000010
+00100000010000000111011111000100
+11011010001000000000011010000010
+11011000101000000000011010011010
+00100000010000000111011111000100
+11011010001000000000011111000010
+11011010010000000000011010011010
+11011000101000000000011010011010
+00100000010000000111011110100010
+11011010001000000000010110011010
+11011000101000000000011010000010
+00100000010000000111011111000100
+11011000110000000000011010000010
+11011000101000000000011001010010
+00100000010000000111111010000110
+11011010001000000000011001010010
+00100000010000000111011101100100
+11011010001000000000011010000010
+11011010010000000000011001010010
+11011000101000000000011010000010
+00100000010000000111011101110001
+11011010001000000000011010000010
+11011010010000000000011010011010
+11011000101000000000011010000010
+00100000010000000111011101110001
+11011000110000000000010110011010
+11011000101000000000011001010010
+00100000010000000111111010000110
+11011010001000000000010110110010
+11011000101000000000011010011010
+00100000010000000111011111000100
+11011010001000000000011001010010
+00100000010000000111011101100100
+11011010001000000000011001010010
+00100000010000000111011101100100
+11011010001000000000011001010010
+11011010010000000000011010011010
+11011000101000000000011001010010
+00100000010000000111011110100010
+11011010001000000000011010011010
+11011000101000000000011001101010
+00100000010000000111011111000100
+11011010001000000000011001101010
+00100000010000000111011101100100
+11011010001000000000011001101010
+00100000010000000111011101100100
+11011010001000000000011001101010
+00100000010000000111011101100100
+11011000110000000000010110110010
+11011000101000000000011010011010
+00100000010000000111111010000110
+11011010001000000000011010011010
+00100000010000000111011101100100
+11011010001000000000011010011010
+11011010010000000000010111001010
+11011000101000000000010111001010
+00100000010000000111011110100010
+11011010001000000000011010000010
+11011000101000000000011010011010
+00100000010000000111011111000100
+11011010001000000000011010011010
+11011010010000000000011001010010
+11011000101000000000011010011010
+00100000010000000111011101110100
+11011010001000000000011010011010
+11011010010000000000011001010010
+11011000101000000000010110011010
+00100000010000000111011101110100
+11011010001000000000011001010010
+11011010010000000000010110011010
+11011000101000000000011010011010
+00100000010000000111011101110100
+11011010001000000000011010011010
+11011010010000000000011010000010
+11011000101000000000011010011010
+00100000010000000111011110100010
+11011010001000000000011010011010
+11011010010000000000011001101010
+11011000101000000000010110110010
+00100000001000000111011101110100
+11011010001000000000010100111010
+11011000101000000000011010110010
+00100000010000000111011111000100
+11011010001000000000010110011010
+11011010010000000000011010110010
+11011000101000000000011001101010
+00100000010000000111011110100010
+11011010001000000000010100111010
+11011010010000000000011010110010
+11011000101000000000011010110010
+00100000010000000111011110100010
+11011010001000000000010110110010
+11011010010000000000011010110010
+11011000101000000000011001010010
+00100000010000000111011110100010
+11011010001000000000010111001010
+11011000101000000000011010110010
+00100000010000000111011111000100
+11011010001000000000010100001010
+11011010010000000000011010110010
+11011000101000000000011010000010
+00100000010000000111011110100010
+11011010001000000000010111001010
+11011010010000000000011010110010
+11011000101000000000011010110010
+00100000010000000111011110100010
+11011010001000000000010100100010
+11011010010000000000011010110010
+11011000101000000000011010011010
+00100000010000000111011110100010
+11011010001000000000011001101010
+11011010010000000000011010000010
+11011000101000000000011010110010
+00100000010000000111011101110100
+11011010001000000000011001101010
+11011010010000000000011010000010
+11011000101000000000011001101010
+00100000010000000111011101110001
+11011010001000000000011001010010
+11011010010000000000011010011010
+11011000101000000000011010000010
+00100000010000000111011101110100
+11011010001000000000011001010010
+11011010010000000000011010011010
+11011000101000000000011001010010
+00100000010000000111011101110001
+11011010001000000000011001010010
+11011010010000000000011010110010
+11011000101000000000011001010010
+00100000010000000111011110100010
+11011010001000000000010111001010
+11011010010000000000010100111010
+11011000101000000000011010011010
+00100000010000000111011110100010
+11011010001000000000011010011010
+11011010010000000000011010110010
+11011000101000000000010111001010
+00100000010000000111011110100010
+11011010001000000000011010110010
+11011000101000000000011010110010
+00100000010000000111011111000100
+11011010001000000000011010110010
+11011010010000000000011001101010
+11011000101000000000011010011010
+00100000010000000111011110100010
+11011010001000000000011010110010
+11011010010000000000011001010010
+11011000101000000000011001010010
+00100000010000000111011110100010
+11011010001000000000011010000010
+11011000101000000000010110011010
+00100000010000000111011111000100
+11011010001000000000010110011010
+11011010010000000000011010011010
+11011000101000000000010110011010
+00100000010000000111011101110100
+11011000110000000000010110011010
+11011000101000000000011010110010
+00100000010000000111111010000110
+11011010001000000000011010110010
+00100000010000000111011101100100
+11011010001000000000011010011010
+11011010010000000000011010110010
+11011000101000000000011010011010
+00100000010000000111011101110100
+11011010001000000000011010011010
+11011010010000000000011010000010
+11011000101000000000011010000010
+00100000010000000111011110100010
+11011010001000000000011010000010
+11011010010000000000011001010010
+11011000101000000000010110110010
+00100000010000000111011101110100
+11011010001000000000010110110010
+11011010010000000000011110101010
+11011000101000000000010110110010
+00011000000000000010011000000000
+01101000000000001000010110110010
+00101111111011111111111000000000
+00100000010000001111011100101101
+00011010011000100110000000000000
+11011010001000000000010110110010
+00100000010000000111011101001001
+01101000000000001000010111001001
+00101110000011111111111000000000
+01111001001000001111111000000111
+01100000000000001000010111001001
+00100000011000000000000000000000
+01101000000000001000010100000111
+00011111111000001111111111111111
+00100100011000010000000000000000
+01100000000000001000010100000111
+01101000000000001000010100000110
+00100000010110100111100000011111
+01101000000000001000010100000111
+11011000110000000000010111100010
+00100000010000000111011100001000
+00100000001000001111100011011100
+01101000000000001000010100000110
+00100100001110100111100011101010
+00100000010000000111100001110000
+00100000001000000111100011011100
+01110000000001010000011000000000
+11011000110000000000010100001010
+11011000101000000000010110011010
+00100000010000000111011100001110
+00100000001000000111100011011100
+11011010001000000000010111001010
+11011000101000000000011010011010
+00100000010000000111011111011010
+11011010001000000000011010011010
+11011000101000000000011001010010
+00100000010000000111011111000100
+11011010001000000000010110011010
+11011010010000000000011001010010
+11011000101000000000010101010010
+00100000010000000111011110100010
+11011010001000000000011010011010
+11011010010000000000011001010010
+11011000101000000000011010000010
+00100000010000000111011110100010
+11011010001000000000010110110010
+11011010010000000000011010000010
+11011000101000000000010101101010
+00100000001000000111011110100010
+11101000110000100000000000000000
+00011000000000000010001000000100
+00011000101000001000101000000011
+11100000101000001000000000000000
+00011111111011001111111000000000
+00011000101000001000101111111110
+00011010001000001010001111111111
+00100100001000101111100100000100
+00011000101000001000101000000101
+11000010000000000111100100000001
+00100000011000000000000000000000
+00011000111010111111111000000000
+10011001011000001000110000000000
+11101000110000100000000000000000
+00100000011000000000000000000000
+00011000000000000110000000010000
+11011001011000000000010100001010
+00011110000000001000111111111001
+00100000010000000111100100001100
+10011000000000000000010000000000
+00011110000000001000111111110000
+00100000010000000111100100001100
+10011000010000001000010000000000
+00011110000000001000111111111110
+00100000010000000111100100001100
+00011111111011100111111000000001
+10011000010000001000010000000000
+00011110000000001000111111110001
+00100000010000000111100100001100
+00011111111011100111111000000000
+10011000010000001000010000000000
+00011110000010111111111000000000
+10011001011000001000101000000000
+11100000101010100000000000000000
+00011110000000001110000000000001
+00101110000000011111111001000000
+00100100001000001111100100010010
+00100000011000000000000000000000
+11011000110000000000100000100010
+00011000000000000111000000000111
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000111111111
+00100000001000010111100100101001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111101000100000000111101
+00100000010000000111100100010000
+11011000101000000000011000001010
+00011000000000000111000000000000
+00011101111000100111111000000000
+11100000101000100000000000000000
+00011111000000001111000000000001
+00101111000000011111111000001000
+00100100001000001111100100110011
+00100000010000000111000111100010
+11011001011000001000011100000000
+11011110000000000000010100001010
+00011000000000000111001001000000
+11101110000010100000000000000000
+11101001011000100000000000000000
+00011001011000001001011000000100
+00011110000000001110000000000100
+10011000010000001111111000000000
+00011000000000000111000000000111
+10011101111000001000010000000000
+00011000000000000111000000000100
+00011101111011100111111000000011
+10011000010000001000010000000000
+00011000000000000111000000000101
+00011101111000100111111000000000
+00011000000000000111000000000110
+10011101111000101111111000000000
+00011000000000000111000000000100
+10011101111000010111111000000000
+00011000000000000111000000000110
+10011101111000101111111000000000
+10011000010000001000010000000000
+00011000000000000111000000000111
+00011000010000100101111000000000
+00011000000000000111000000000011
+00011101111000100111111000000000
+10011000010000001101111000000000
+00011000000000000111000000000000
+00011101111000100111111000000000
+00011000000000000111000000000001
+10011101111000010000010000000000
+10011101111000011111111000000000
+00011000000000000111000000000010
+10011101111000010111111000000000
+10011000010000011000010000000000
+00011000000000000111000000000000
+00011101111011100111111000000010
+10011000010000001111111000000000
+00011000000000000111000000000111
+10011101111000001101111000000000
+10011000000011101111110000000000
+11000010000000000111100100111100
+11011000110000000000011000001010
+00011000000000000111000000000000
+11101000110000100000000000000000
+10011101111000001101111000000000
+00011111000000001111000000000001
+00101111000000011111111000001000
+00100100001000001111100101100101
+00100000001000000111000111100110
+11011000101000000000100101100010
+00011000000000000111000000000111
+00011101111000100111111000000000
+11100000101000100000000000000000
+00011111000000001111000111111111
+00100000001000010111100101101101
+00100000011000000000000000000000
+11011000101000000000010100001010
+00011000110000001000110111111100
+00011111001001100010001000010000
+11101000110000100000000000000000
+10011000010000101111111000000000
+11100000101000100000000000000000
+00011000110000001000110111111000
+11000010000000000111100101110101
+00011010001000100111001000000000
+00011000010000100111111000000000
+11100000101000100000000000000000
+11000010000000000111100101111100
+00100000011000000000000000000000
+00100000010000000111100110000100
+00100000010000000111100101101011
+00100000001000000111100110101010
+00100000010000000111100110000100
+00100000001000000111100110101010
+11011000110000000000100100000010
+11011000101000000000010100001010
+00011000000000000111001000000110
+00100000010000000111101010010000
+11011000110000000100011011001010
+00011000000000000111001000000110
+00100000010000000111101010010000
+11011000110000000000100101100010
+00100000010000000111101010001111
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000100101010010
+11011000101000000000010100001010
+00100000001000000111100110100001
+11011000110000000100011011001010
+11011000101000000000010100001010
+00011000000000000111001000000110
+00100000010000000111101010010000
+11011000110000000000100100000010
+00011000000000000111001000000110
+00100000010000000111101010010000
+11011000110000000000100101010010
+00100000010000000111101010001111
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000100101100010
+11011000101000000000010100001010
+00100000010000000111100110100001
+00100000001000000111100110101010
+00100000010000000111101010001111
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00011000000000000111001000000101
+00100000010000000111111010010001
+01011000000000000000001010000000
+11100000101000100000000000000000
+00100000001000000111100100101110
+01101000000000100000100101100010
+11011010001000000000001111101000
+10011010001001101111110000000000
+00100000010000000111111101010011
+00011000000001110111111000000000
+01100000000000100000100011011110
+00011000000001111111111000000000
+11011010001000000000001111101000
+10011010001001101111110000000000
+00100000010000000111111101010011
+00011000000001110111111000000000
+11011010001000000000001111101000
+10011010001011111111111000000000
+01101000000010100000100011011110
+10011000010000001111111000000000
+01100000000000100000100011011110
+00100000011000000000000000000000
+01110000010001101110110000000000
+00100000001000000111100110111111
+01101000000000001100011011101010
+11000000100000010111100110111011
+01111001001000000000000000100101
+01000100111101001100000000111101
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+01101000000000010000100110100010
+00011111111000100000110000000000
+00011000000000000111001000000100
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+01101000000000010000100110100100
+00011111111000100000110000000000
+11011000101000000000010100001010
+00011000000000000111001000000110
+00100000010000000111101010010000
+01101000000000010000100110100110
+00011111111000100000110000000000
+00011000000000000111001000000110
+00100000010000000111101010010000
+01011000100000000000000000000000
+11100000101000011000000000000000
+01101000000000001100011011101100
+11100000101000001000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+01011000000000000000001110001000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000010000000111100101101011
+11011000110000000000100101100010
+11011000101000000000011000101010
+00100000010000000111111010000101
+01011000010111000101110001011100
+00011111111011010000010000000000
+00011000010000011000010001011100
+01101000000000010000100110100010
+00011111111000100000110000000000
+00011000000000000111001000000100
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000011001001010
+11011000101000000000010100001010
+00011000000000000111001000001000
+00100000010000000111101010010000
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00100000010000000111111010010000
+01011000000000000000001100000000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000001000000111100101101011
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+11011000110000000000100101000010
+00011000000000000111001000000110
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+01101000000000010000100110101110
+00011111111000100000110000000000
+11011000101000000000010100001010
+00100000010000000111101010001111
+01101000000000010000100110110000
+00011111111000100000110000000000
+00100000010000000111101010001111
+01011000011000100111010001101100
+00011111111011010111111000000000
+00011111111000011111111001101011
+11100000101000100000000000000000
+11011000110000000000011001010111
+00011000000000000111001000000011
+00100000010000000111101010010000
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+01011000000000000000001110000000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000010000000111100101101011
+11011000110000000000100101100010
+11011000101000000000011000101010
+00100000010000000111111010000101
+01011000010111000101110001011100
+00011111111011010000010000000000
+00011000010000011000010001011100
+11011000110000000000100101000010
+00011000000000000111001000000110
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000011001001010
+11011000101000000000010100001010
+00011000000000000111001000001000
+00100000010000000111101010010000
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00100000010000000111111010010000
+01011000000000000000001100000000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000001000000111100101101011
+01101000000000001100011011101010
+11000000100000010111101000111101
+01111001001000000000000000100101
+01000100111101010100000000111101
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+11011000110000000000100101000010
+00011000000000000111001000000110
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000100101100010
+11011000101000000000010100001010
+00100000010000000111101010001111
+11011000110000000000100101010010
+00100000010000000111101010001111
+00100000001000000111101001010010
+01011000000000000000000000000000
+01100000000000100100011100011001
+00100000001000000111101000101101
+01011000000000000000000000000000
+01100000000000100100011100011001
+00100000001000000111101001000101
+01101000000000001100011011101010
+11000000100000010111101001000000
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+11011000110000000000100101000010
+00011000000000000111001000000110
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000100101010010
+11011000101000000000010100001010
+00100000010000000111101010001111
+11011000110000000000100101100010
+00100000010000000111101010001111
+01011000000000000000000000000000
+11100000101001000000000000000000
+11100000101000100000000000000000
+01101000000000100100011100011001
+11100000101000100000000000000000
+00011000101000100000010000000000
+01110000000001100100101010000000
+00011000010000100000101000000000
+11011000110000000000011001011010
+00100000010000000111101010001111
+00100000010000000111100100101110
+11011000101000000000010100001010
+00011000000000000111001000000111
+00100000010000000111111010010001
+11100000101000100000000000000000
+01011000000000000000001111111000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000010000000111100101101011
+11011000110000000000100101100010
+11011000101000000000011000101010
+00100000010000000111111010000101
+01011000010111000101110001011100
+00011111111011010000010000000000
+00011000010000011000010001011100
+11011000110000000000100101000010
+00011000000000000111001000000110
+00100000010000000111100101110010
+00100000010000000111100100100111
+00100000010000000111100100101110
+11011000110000000000011001001010
+11011000101000000000010100001010
+00011000000000000111001000001000
+00100000010000000111101010010000
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00100000010000000111111010010000
+01011000000000000000001100000000
+11100000101000100000000000000000
+00100000010000000111100100101110
+00100000001000000111100101101011
+01110000000001010000011111000000
+01101000000000001000010100000111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000010100000111
+11011000110000000000010111100010
+00100000010000000111011100001000
+00100000001000001111101001111101
+11011000110000000000010100001010
+11011000101000000000010110011010
+00100000001000000111011100001110
+00100000010000000111100000011111
+01101000000000001000010100000111
+00011111111000001111111111111111
+01100000000000001000010100000111
+11011000110000000000010111100010
+00100000010000000111011100001000
+00100000011000001000000000000000
+00100000001000000111100001110000
+00011000000000000111001000000100
+00011000110000001000110111111100
+11101000110000100000000000000000
+11100000101000100000000000000000
+00011000110000001000110111111000
+11000010000000000111101010010001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111101011100000000111101
+01101000000000001100010101100011
+00100000001110100100100011011110
+00100000010000000100100011011010
+00100000010000000111010111111011
+00100000001000000111101010011101
+01101000000000001100010101101000
+11000001100000000000000000000000
+01101000000000001100010101100101
+11000001100000000000000000000000
+11011000101000000100011000111010
+00011000000000000000111000001111
+00100000010000000111011010111011
+00011000000010100111111000000000
+00011111111000110111111000000000
+11100000101000010000000000000000
+11011000101000000000011010001010
+11011000110000000100011000111010
+00100000010000000111111010000101
+11011000101000000000010101101010
+11011000110000000000100010000010
+00100000010000000111111001111011
+11011000101000000000010110101010
+00100000010000000111111010011011
+01110000000001011010101000000001
+00100000010000000111101011101000
+01110000010001010110010100000011
+00100000011000000000000000000000
+11011000101000000100011001011010
+11011000110000000000010111001010
+00100000010000000111111001111011
+01110000010001010110100000000011
+01110000010001010110010100000000
+00100000011000000000000000000000
+01101000000000001000100011011101
+11000001100000000000000000000000
+01101000000000001100010101100101
+11000001100000000000000000000000
+11011000101000000000011010001010
+11011000110000000100011000111010
+00100000010000000111111010000101
+11011000101000000000010101101010
+11011000110000000000100011100010
+00100000010000000111111001111011
+11011000101000000000010110101010
+00100000010000000111111010011011
+01110000000001011010101000000001
+00100000010000000111101011101000
+01110000010001010110010100000100
+00100000011000000000000000000000
+11011000101000000000100100100010
+11011000110000000000010111001010
+00100000010000000111111010000101
+01110000000010001101110100000011
+01110000010001010110010100000000
+00100000011000000000000000000000
+01101000000000001100010101100011
+00100000011110100000000000000000
+01101000000000001100010101100101
+00100000011110100000000000000000
+00011111111000001111111010000000
+01100000000000001100010101100101
+11000011100000111000000000000000
+01101000000000010000010100000111
+00100000001110100111101011011001
+00100000001000000111101011100000
+01111001001000000000000000100101
+01000100111101100100000000111101
+00100000010000000111101011110110
+01101000000000001100010101100101
+11000000000000011111101010110011
+11000000000000100111101011001001
+00100000011000000000000000000000
+00100000010000000111101100001000
+01101000000000010000010100000111
+00011111111000001111111111111111
+01100000000000010000010100000111
+11011000110000000000011010001010
+00100000010000000111011100001000
+00100000011000001000000000000000
+00100000001000000111101101011001
+01111001001000000000000000100101
+01000100111101101100000000111101
+01011000000000000000000100000000
+01100000000000010000010100000111
+01101000000000010000010100000111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010000010100000111
+11011000110000000000011010001010
+00100000010000000111011100001000
+00100000001000001111101011101100
+11011000110000000000010101101010
+11011000101000000000011000101010
+00100000001000000111111001111010
+11011010001000000000011001101010
+11011000101000000000011101101010
+00100000010000000111101111000101
+11011010001000000000011101101010
+11011000101000000000011100001010
+00100000010000000111110010011100
+11011010001000000000011000101010
+11011010010000000000011100001010
+11011000101000000000010111001010
+00100000010000000111110000000011
+11011010001000000000011101101010
+11011010010000000000011100001010
+11011000101000000000011101001010
+00100000010000000111110000000011
+11011010001000000000011001001010
+11011010010000000000011101001010
+11011000101000000000010111101010
+00100000001000000111110000000011
+11011010001000000000011001101010
+11011000101000000000011101001010
+00100000010000000111110010011100
+11011010001000000000011101001010
+11011000101000000000011101101010
+00100000010000000111110010011100
+11011010001000000000100001100010
+11011010010000000000011101101010
+11011000101000000000011101101010
+00100000010000000111110000000011
+11011010001000000000011000101010
+11011000101000000000011101001010
+00100000010000000111110010011100
+11011000110000000000011101001010
+11011000101000000000011100001010
+00100000010000000111111010000101
+11011010001000000000011100001010
+00100000010000000111110010100011
+11011010001000000000011101001010
+11011010010000000000011100001010
+11011000101000000000011101001010
+00100000010000000111110010100000
+11011010001000000000011101001010
+11011010010000000000011101101010
+11011000101000000000011101001010
+00100000010000000111110010100000
+11011000110000000000011000101010
+11011000101000000000011100001010
+00100000010000000111111010000101
+11011010001000000000011001001010
+11011000101000000000011101101010
+00100000010000000111110010011100
+11011010001000000000011100001010
+00100000010000000111110010100011
+11011010001000000000011100001010
+00100000010000000111110010100011
+11011010001000000000011100001010
+11011010010000000000011101101010
+11011000101000000000011100001010
+00100000010000000111110000000011
+11011010001000000000011101101010
+11011000101000000000011100101010
+00100000010000000111110010011100
+11011010001000000000011100101010
+00100000010000000111110010100011
+11011010001000000000011100101010
+00100000010000000111110010100011
+11011010001000000000011100101010
+00100000010000000111110010100011
+11011000110000000000011001001010
+11011000101000000000011101101010
+00100000010000000111111010000101
+11011010001000000000011101101010
+00100000010000000111110010100011
+11011010001000000000011101101010
+11011010010000000000011001101010
+11011000101000000000011001101010
+00100000010000000111110000000011
+11011010001000000000011101001010
+11011000101000000000011101101010
+00100000010000000111110010011100
+11011010001000000000011101101010
+11011010010000000000011100001010
+11011000101000000000011101101010
+00100000010000000111110010111001
+11011010001000000000011101101010
+11011010010000000000011100001010
+11011000101000000000011000101010
+00100000010000000111110010111001
+11011010001000000000011100001010
+11011010010000000000011000101010
+11011000101000000000011101101010
+00100000010000000111110010111001
+11011010001000000000011101101010
+11011010010000000000011101001010
+11011000101000000000011101101010
+00100000010000000111110000000011
+11011010001000000000011101101010
+11011010010000000000011100101010
+11011000101000000000011001001010
+00100000001000000111110010111001
+11011010001000000000010110101010
+11011000101000000000011110001010
+00100000010000000111110010011100
+11011010001000000000011000101010
+11011010010000000000011110001010
+11011000101000000000011100101010
+00100000010000000111110000000011
+11011010001000000000010110101010
+11011010010000000000011110001010
+11011000101000000000011110001010
+00100000010000000111110000000011
+11011010001000000000011001001010
+11011010010000000000011110001010
+11011000101000000000011100001010
+00100000010000000111110000000011
+11011010001000000000011001101010
+11011000101000000000011110001010
+00100000010000000111110010011100
+11011010001000000000010101101010
+11011010010000000000011110001010
+11011000101000000000011101001010
+00100000010000000111110000000011
+11011010001000000000011001101010
+11011010010000000000011110001010
+11011000101000000000011110001010
+00100000010000000111110000000011
+11011010001000000000010110001010
+11011010010000000000011110001010
+11011000101000000000011101101010
+00100000010000000111110000000011
+11011010010000000000011100101010
+11011010001000000000011101001010
+11011000101000000000011110001010
+00100000010000000111110010111001
+11011010001000000000011100101010
+11011010010000000000011101001010
+11011000101000000000011100101010
+00100000010000000111110010100000
+11011010010000000000011100001010
+11011010001000000000011101101010
+11011000101000000000011101001010
+00100000010000000111110010111001
+11011010001000000000011100001010
+11011010010000000000011101101010
+11011000101000000000011100001010
+00100000010000000111110010100000
+11011010001000000000011100001010
+11011010010000000000011110001010
+11011000101000000000011100001010
+00100000010000000111110000000011
+11011010001000000000011001101010
+11011010010000000000010110101010
+11011000101000000000011101101010
+00100000010000000111110000000011
+11011010001000000000011101101010
+11011010010000000000011110001010
+11011000101000000000011001101010
+00100000010000000111110000000011
+11011010001000000000011110001010
+11011000101000000000011110001010
+00100000010000000111110010011100
+11011010001000000000011110001010
+11011010010000000000011100101010
+11011000101000000000011101101010
+00100000010000000111110000000011
+11011010001000000000011110001010
+11011010010000000000011100001010
+11011000101000000000011100001010
+00100000010000000111110000000011
+11011010001000000000011101001010
+11011000101000000000011000101010
+00100000010000000111110010011100
+11011010001000000000011000101010
+11011010010000000000011101101010
+11011000101000000000011000101010
+00100000010000000111110010111001
+11011000110000000000011000101010
+11011000101000000000011110001010
+00100000010000000111111010000101
+11011010001000000000011110001010
+00100000010000000111110010100011
+11011010001000000000011101101010
+11011010010000000000011110001010
+11011000101000000000011101101010
+00100000010000000111110010111001
+11011010001000000000011101101010
+11011010010000000000011101001010
+11011000101000000000011101001010
+00100000010000000111110000000011
+11011010001000000000011101001010
+11011010010000000000011100001010
+11011000101000000000011001001010
+00100000010000000111110010111001
+11011010001000000000011001001010
+11011010010000000000100001000010
+11011000101000000000011001001010
+00011000000000000010011000000000
+01101000000000001000011001001010
+00101111111011111111111000000000
+00100000010000001111110010011110
+00011010011000100110000000000000
+11011010001000000000011001001010
+00100000010000000111110011001110
+01101000000000001000011001101001
+00101110000011111111111000000000
+01111001001000001111111000000111
+01100000000000001000011001101001
+00100000011000000000000000000000
+00011000101000100001011000000000
+11011000101000000000011100101010
+00100000010000000111111010011011
+00011000000000000111111000000000
+01100000000000100000011101001010
+01110000000001110010101000000001
+11011000101000000000011010101010
+00100000010000000111111010011101
+11011000110000000000100001000010
+11011000101000000000011011101010
+00100000010000000111111010000101
+00011010001000100000110000000000
+11011000101000000000011100001010
+00100000010000000111111010000101
+11011000110000000000011100001010
+00100000010000000111110011011000
+00100000001110100111101111111100
+11011010001000000000011100001010
+11011010010000000000011100101010
+00100000010000000111110011011011
+11011010001000000000011011101010
+11011010010000000000011010101010
+00100000010000000111110011011011
+11011010001000000000011100001010
+11011010010000000000011011101010
+00100000010000000111110011010100
+00100000001000010111101111101110
+11011010001000000000011011101010
+11011010010000000000011100001010
+00011010001000100000101000000000
+00100000010000000111110011001100
+11011010001000000000011100101010
+11011010010000000000011010101010
+00011010010000100000101000000000
+00100000010000000111110010011110
+11101010001000001000000000000000
+10011010011000001010011000000000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00100000001000000111101111010011
+11011010001000000000011100001010
+11011010010000000000011011101010
+00011010001000100000101000000000
+00100000010000000111110011001100
+11011010001000000000011010101010
+11011010010000000000011100101010
+00011010010000100000101000000000
+00100000010000000111110010011110
+11101010001000001000000000000000
+10011010011000001010011000000000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00100000001000000111101111010011
+11011010001000000000011010101010
+00011001011000100000101000000000
+00100000010000000111110000101100
+11011010001000000000100001000010
+00011001011000100010010000000000
+00011001011000100000101000000000
+00100000001000000111110010111001
+00011000101000100001011000000000
+00011000000000000111000000000000
+11011000101000000000011010101010
+00100000010000000111111010011101
+11011000101000000000100111110001
+00100000010000000111111010011101
+00011010001000100000110000000000
+01110000000010011111000100000000
+01011000000000000000000000000000
+00100000010000000111110010010110
+00011010010000100000110000000000
+00100000010000000111110010011010
+00011000000000000000111000000000
+11011000101000000000011010101010
+11011000010000000000100111110001
+00011000111000100010010000000000
+00011010010010111111111000000000
+10011000010000001010010000000000
+00011000000000000000010000000000
+00011000000000000010011000000000
+11101000101000100000000000000000
+10011000000000000010001000000000
+11101010010000100000000000000000
+00011010011000100111000000000000
+10011101111011111111111000000000
+10011010001000001111111000000000
+10011000010000001111111000000000
+11100000101000100000000000000000
+00011111111011110000010000000000
+00011010011000001010011000000001
+00101010011000011111111000001000
+00100100001000001111110000010111
+00011000010000100111111000000000
+11100000101000100000000000000000
+00011000101000001000101111100000
+00011000111000001000111000000001
+00101000111000011111111000001000
+00100100001000001111110000010001
+11011010001000000000011010101010
+00011001011000100000101000000000
+00100000001000000111110000101100
+01111001001000000000000000100101
+01000100111101110100000000111101
+00011000101000100001011000000000
+00011010001000100110000000000000
+11011010010000000000011011101010
+00011010010000100000101000000000
+00100000010000000111111010011000
+11100000101001000000000000000000
+00011010001000001000110000101100
+00100000010000000111111010000001
+00100000010000000111111001111101
+00011010010000100010001000000000
+00100000010000000111110010100011
+11011010010000000000011011101010
+00011110000000100010001000000000
+00011001011000100000101000000000
+00100000010000000111110010100000
+11011010010000000000011011101010
+00011010010000100000101000000000
+00100000010000000111111010011000
+11100000101001000000000000000000
+00011110000000001000110000110000
+00100000010000000111111010000111
+00100000010000000111111010011000
+00011010010000100010001000000000
+00100000010000000111110010100011
+11011010010000000000011011101010
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010100000
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000100000
+00100000010000000111111001111101
+00100000010000000111111010011000
+11100000101001000000000000000000
+00011110000000001000110000111000
+00100000010000000111111010000001
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010100000
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000100100
+00100000010000000111111001111101
+00011110000000001000110000110100
+00100000010000000111111001111101
+00011110000000001000110000110100
+00100000010000000111111001111110
+00011110000000001000110000100000
+00100000010000000111111001111110
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010100000
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000101100
+00100000010000000111111001111101
+00100000010000000111111010011000
+11100000101001000000000000000000
+00011110000000001000110000100000
+00100000010000000111111001111110
+00011110000000001000110000101000
+00100000010000000111111001111110
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010111001
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000110000
+00100000010000000111111010000001
+00100000010000000111111010000001
+00011000000000000111111000000000
+11100000101001000000000000000000
+00011110000000001000110000100100
+00100000010000000111111001111110
+00011110000000001000110000101100
+00100000010000000111111001111110
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010111001
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000110100
+00100000010000000111111001111101
+00011110000000001000110000100000
+00100000010000000111111001111101
+00100000010000000111111010011000
+00011110000000001000110000110000
+00100000010000000111111001111110
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111110010111001
+11011010010000000000011011101010
+00011010010000100000101000000000
+00011110000000001000110000111000
+00100000010000000111111010000001
+00100000010000000111111010011000
+00011110000000001000110000100100
+00100000010000000111111001111101
+00100000010000000111111010011000
+00011110000000001000110000110100
+00100000010000000111111001111110
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000001000000111110010111001
+00011000000000000111001000100000
+11011000101000000000100111110001
+10011000101000001000101000000000
+00100000001000000111111011001101
+00011000000000000111001000001000
+00100000001000000111011110011101
+00011010001000100010010000000000
+00100000001000000111110000000011
+00011000000000000111001000001000
+00100000001000000111011100101110
+00100000010000000111110010011110
+00011000101000100010001000000000
+00100000001000000111110010100100
+00100000010000000111110011010001
+00101010011011111111111000000000
+00100000001000001111110010101101
+11011010010000000000100001000010
+00011010001000100010011000000000
+00011010001000001010001111100000
+00100000010000000111110011010100
+00100100011000010000000000000000
+00011010011000100010001000000000
+00100000001000000111110010110101
+00100000010000000111110010110101
+00011010001000100010011000000000
+00011010001000001010001111100000
+11011010010000000000100001000010
+00100000010000000111110011010100
+00100100011000010000000000000000
+00011010011000100010001000000000
+00100000001000000111110010110101
+00011010001000001010001111100000
+11011010010000000000100001000010
+00011010001000100000101000000000
+00100000001000000111110011001100
+00100000010000000111110011001100
+00100000001000001111110011000011
+00011000101000001010001111100000
+11011010010000000000100001000010
+00100000010000000111110011010100
+00100100011000010000000000000000
+11011010010000000000100001000010
+00011000101000001010001111100000
+00011010001000100000101000000000
+00100000001000000111110011001100
+00011000101000001010001111100000
+11011010010000000000100001000010
+00011010001000100000101000000000
+00100000010000000111110010011110
+00100000011000001000000000000000
+00011000101000001010001111100000
+11011010010000000000100001000010
+00011010001000100000101000000000
+00100000001000000111110010011110
+00011000000000000111001000001000
+00100000001000000111011100111100
+00011000000000000111001000001000
+00011010001000001010001000011100
+00100000001000000111011101001011
+00011000000000000111001000001000
+00011000000000000010011000000000
+00100000001000000111011101011001
+00011000000000000111001000001000
+00011010001000001010001000011100
+00011010010000001010010000011100
+00100000001000000111011100100011
+11101000110001000000000000000000
+00100100011110100000000000000000
+00100000001000000111011100010001
+00011010001000100110000000000000
+00011110000000100010001000000000
+11101010001000001000000000000000
+00101111111011111111111000000000
+00100000011000001000000000000000
+00100000010000000111110011001110
+11101010010000001000000000000000
+00101111111011000000000000000000
+00100000001000001111110011101011
+11011010001000000000100001000010
+00011010010000100000101000000000
+00100000010000000111110010011110
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00011010010000001010010111100000
+00011010010000001010001000100000
+00011000000000000111001000001001
+00100000010000000111011101001011
+00100000001000000111110011011100
+00100000010000000011110100111110
+00100000011101011000000000000000
+00100000010000000111110011110110
+00100000010000000111110101110010
+00100000001000000111110100101010
+00100000010000000111110101000100
+00100000001000000111110101100000
+01111001001000000000000000100101
+01000100111101111100000000111101
+01101000000000001100011100010101
+11000001011111111000000000000000
+10011000000000000000010000000000
+00100000010000000110010011101000
+01101000000010001100011100010101
+00100000010000000110010011111101
+00100000000000000000000001100100
+01101000000010001100011100010101
+00100000010000000110010011011111
+00100000001000000111110100000010
+01111001001000000000000000100101
+01000100111110000100000000111110
+01101000000000001100011100010101
+11000001011111111000000000000000
+00011111111000100000010000000000
+00100000010000000110010011110101
+00100100001000001111110100010101
+00100000010000000111110100011111
+01101000000000010100011100001011
+01111001001000000111111000001100
+01100000000000010100011100001011
+01101000000000001100011100000010
+11000001000000000000000000000000
+01110000010001110000001000000000
+01101000000000001100011100010100
+01100000000000001100011100000001
+00100000010000000111110100100110
+01110000000010011011110100101100
+00100000001000000111110110000110
+01101000000000010100011100001011
+01111001001111111111111000001100
+01100000000000010100011100001011
+01101000000000001100011100000010
+11000001000000001000000000000000
+01110000010001110000001000000001
+01110000010001110000000100000000
+00100000010000000111110100101000
+01110000000010011011110100101101
+00100000001000000111110110000110
+01101000000000001100011100000001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011100000001
+00100100011110100000000000000000
+01110000000010011011110100010000
+00100000001000000111110110000110
+11011000111000000000000000000111
+00100000001000000011110100000110
+11011000111000000000000000000111
+00100000001000000011110100001010
+01101000000000001100011100001110
+11000001011111111000000000000000
+10011000000000000000010000000000
+00100000010000000110010011101000
+00100000001000000111110100110011
+01101000000000010100011100001011
+01111001001111111111111000001101
+01100000000000010100011100001011
+01110000010001110000000000000000
+01101000000000010100011100001011
+01111001001111111111111000001110
+01100000000000010100011100001011
+01101000000010001100011100001110
+00100000001000000110010011111101
+01101000000000010100011100001011
+01111001001000000111111000001110
+01100000000000010100011100001011
+01110000010001110000000000000000
+01101000000010001100011100001110
+00100000001000000110010011111111
+01110000010001110001001111111111
+01101000000000010100011100001011
+01111001001000000111111000001101
+01100000000000010100011100001011
+01110000010001110000000000000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110001100000000111110
+01101000000000001100011100010011
+00100000011110100000000000000000
+01101000000000001100011100000000
+11000001000000000000000000000000
+11011000111000000000000000001001
+00100000010000000111111011100010
+00100100011110100000000000000000
+01101000000000001100011100000000
+11000000000000010111110101010011
+00100000010000000111110100111000
+01110000010001110000000000000010
+01101000000000010100011100010001
+00100000001000000111110101011010
+00100000010000000111110100110011
+01101000000000001100011100010011
+11000000011111111111110101011000
+00011111111000001111111111111111
+01100000000000001100011100010011
+01110000010001110000000000000011
+01101000000000010100011100001111
+11011000111000000000000000001001
+00100000001000000111111011010100
+01011000000000000001000000000000
+00011111111100000111111000000000
+10011010010000001010010000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110010100000000111110
+11011010001000000000000000000000
+01101000000010100100011100000011
+00011100010000100010010000000000
+00011010010000100111111000000000
+10011000010001100111110000000000
+00100100010000010111110101011100
+00011010010000100111111000000000
+00011000010000001000010010100000
+00011000010000001000010010100000
+10011000010001100111110000000000
+00100100001000010111110101110101
+00011010001000001010001000000001
+00011010001000010111111000001111
+00100100001110100111110101101000
+11011010001000000000000000000000
+00100000010000000111110101111101
+00011100010000100111111000000000
+01100000000000100100011100000011
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110011100000000111110
+00011010001000100111111000000000
+00100000011110100000000000000000
+00011000010000001000010101100000
+00011000010000001000010101100000
+01111001001111111000010000011100
+01100000000010100100011100000011
+00011111111000001111111001010000
+01100000000000001000100110111101
+00100000001000000111110110000110
+01110000010001101110111000000001
+01101000000000001100011011101111
+00100100001110100111110110000001
+00100000011000000000000000000000
+01110000010001101110111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110100100000000111110
+00100000010000000111110110000000
+00011010001000100111111000000000
+01100000000000100000100110110101
+11011010001000000100011011110000
+00100000010000000111111110001000
+01101000000000100000100110110101
+00011111111000100010001000000000
+00100000001000000111110110000100
+01111001001000000000000000100101
+01000100111110101100000000111110
+00100000010000000111110110000000
+00011010001000100111111000000000
+01100000000000100000100110110101
+11011010001000000100011011111000
+00100000010000000111111110001000
+01101000000000100000100110110101
+00011111111000100010001000000000
+00100000001000000111110110000100
+01011000000000000000000000000000
+01100000000001000100011011111000
+01100000000001000100011011110000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110110100000000111110
+01101000000000001100001001110001
+00100100011110100000000000000000
+11011010001000000100011011111000
+00100000010000000111111110100010
+00100000011110100000000000000000
+01110000000010011011010000000000
+00100000010000000111110110101010
+01101000000000001000100110110100
+00100000001110100111110110011110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110111100000000111110
+00100000010000000111110110000000
+11011010001000000100011011111000
+00100000010000000111111110010101
+00011111111000100000010000000000
+00100000010000000111110110000100
+00011000010000100111111000000000
+00100000011110100000000000000000
+11000000000000001111110111110000
+11000000000000010111110111110101
+11000000000000011111110111111011
+11000000000000111111111000000000
+11000000000001000111111000000001
+11000000000001001111111000000010
+11000000000001011111111000000101
+11000000000001100111111000000110
+11000000000001101111111000000111
+11000000000001110111111000001101
+11000000000001111111111000010010
+11000000000010000111111000011000
+11000000000010101111110100111110
+11000000000010100111110100111000
+11000000000010011111110100101111
+11000000000010110111111000100001
+11000000000010111111111000100100
+11000000000011000111111000100110
+11000000000011001111111000101011
+11000000000011011111111000101001
+11000000000011100111111000111011
+11000000000011110111111000111101
+01100000000000001000100110111101
+01111001001000000000000000100101
+01000100111111000100000000111111
+00100000010000000101100011000101
+00100100001110100111110111100101
+01101000000000001000100110111101
+11000101100001001111110111100000
+11000000000000101011111110101110
+11000000000000110011111110111101
+11000000000001010111111000000011
+11000000000000100111110111111101
+11000000000010001111111000011101
+11000000000011101111110111100111
+11000000000011111110010000101110
+11000000000100000110010000110010
+11000000000010010111110111011110
+11000000000100001111110111011011
+00100000011000000000000000000000
+00100000010000000101100100000011
+01110000000000000111110101000001
+00100000001000000101010110110100
+01110000000010011011110100101111
+00100000001000000100101111010110
+01100000000000001000100110111101
+00100000010000000011001010010010
+00100000001000101111110111100101
+00100000010000000011001010011010
+00100100011000101000000000000000
+01110000000010011011010000000001
+00100000001000000111110110010000
+01110000000000000111110000110100
+01111001001000000000000000000011
+00100100011101001000000000000000
+01110000010001011111010000000000
+01110000000000000111110000010011
+01101000000000001000000101101100
+01111001001111111111111000000010
+01100000000000001000000101101100
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001000000111111000000110
+01100000000000010100011100001011
+01110000010000010011001100000011
+00100000011000000000000000000000
+01110000010001110000100100000000
+01110000010000010011001100000000
+01101000000000010100011100001011
+01111001001111111111111000000110
+01100000000000010100011100001011
+00100000011000000000000000000000
+01110000010000100111000100000101
+00100000011000000000000000000000
+01110000000000000111110000000111
+01110000000000111111000000010011
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000000111111101000000010
+00100000001000000011111110100001
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000010000111111111100000001
+01110000010001010010000000000000
+01101000000000010100011100001011
+01111001001000000111111000001011
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001111111111111000001011
+01100000000000010100011100001011
+01110000010000111111111100000000
+00100000011000000000000000000000
+01110000010000111111111100000001
+01110000010001010010000000000001
+01101000000000010100011100001011
+01111001001000000111111000001011
+01100000000000010100011100001011
+00100000011000000000000000000000
+01101000000000010100011100001011
+01111001001111111111111000001011
+01100000000000010100011100001011
+01110000010000111111111100000000
+00100000011000000000000000000000
+01011000000000000000000000001010
+01100000000000010000001110010000
+01110000000010011011110100100010
+00100000001000000100101111010110
+01110000010000111111100100000001
+01110000010000100111000100011011
+00100000011000000000000000000000
+01110000010000111111100100000001
+00100000011000000000000000000000
+01110000010000111111100100000000
+01110000010000100111000100000000
+00100000011000000000000000000000
+01110000000010011011110101001011
+00100000001000000100101111010110
+01111001001000000000000000100101
+01000100111111001100000000111111
+01101000000000010100001010001100
+00100000010000000111111101101001
+01111000001101000111110000000000
+01101000000100100000000100111000
+01111001001101000111111000011010
+01100000000100100000000001001100
+00100000010000000011110011110100
+01101000000000001100011100010101
+11000000011111111111111000111000
+00011111111000100000010000000000
+00100000010000000110010011011111
+00100000010000000111110100110011
+00100000010000000111110110011010
+00100000001000000011110000000100
+01110000010001011001010100000001
+00100000011000000000000000000000
+00011000000000000000111000000100
+00100000001000000111111011010011
+01101000000000001100011100001011
+11000100000001100000000000000000
+11000100000000111000000000000000
+00100000001000000111111000111101
+00011111001001100111110000000000
+00100000011000101000000000000000
+00011111111000110111111000000000
+11000010000000000111111001000101
+00100000011000000000000000000000
+00011000101000100111111000000000
+01100000000000010000100111011111
+01100000000011000000100111000110
+00011001011000100111111000000000
+01100000000000100000100111001110
+00011010001000100111111000000000
+01100000000000100000100111010010
+00011010010000100111111000000000
+01100000000000100000100111010110
+00011010011000100111111000000000
+01100000000000011000100111011010
+00011000110000100111111000000000
+01100000000000010000100111011101
+00100000011000000000000000000000
+01101000000011000000100111000110
+01101000000000100000100111001110
+10011000000000000001011000000000
+01101000000000100000100111010010
+10011000000000000010001000000000
+01101000000000100000100111010110
+10011000000000000010010000000000
+01101000000000011000100111011010
+10011000000000000010011000000000
+01101000000000010000100111011111
+10011000000000000000101000000000
+01101000000000010000100111011101
+10011000000000000000110000000000
+00100000011000000000000000000000
+01101000000000010000100111011111
+00011111111000100000101000000000
+00100000011000000000000000000000
+01101000000000010000100111011101
+00011111111000100000110000000000
+00100000011000000000000000000000
+00011000101000100111111000000000
+01100000000000010000100111011111
+00100000011000000000000000000000
+00011000110000100111111000000000
+01100000000000010000100111011101
+00100000011000000000000000000000
+00011000101000100111111000000000
+01100000000000010000100110111011
+00011000110000100111111000000000
+01100000000000010000100110111001
+00100000011000000000000000000000
+01101000000000010000100110111011
+00011111111000100000101000000000
+01101000000000010000100110111001
+00011111111000100000110000000000
+00100000011000000000000000000000
+00100000010000000111111010000101
+00100000010000000111111010000101
+00100000001000000111111010000101
+00100000010000000111111010000001
+11101000110000100000000000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000011000000000000000000000
+00100000010000000111111010000111
+00100000010000000111111010000001
+00100000010000000111111010000001
+00100000010000000111111010000001
+00100000001000000111111010000001
+00011100010000100111111000000000
+00011111111000001111111000010000
+00011111111000001111111000010000
+00011100010000100000010000000000
+10011000010001100111110000000000
+00100000001000010111111010001100
+00100000011000000000000000000000
+00011000000000000111001000000011
+00011000000000000111111000000000
+11100000101001000000000000000000
+11000010000000000111111010010010
+00100000011000000000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+00100000011000000000000000000000
+00011000000000000111111000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+00011000000000000111001000000100
+00100000001000000111111010010001
+00011000000000000111001000001000
+00100000001000000111111010010001
+00011111001000100111111000000000
+00100000011110100000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+11000010000000000111111010100010
+00100000011000000000000000000000
+11011111001000000000000000100000
+11011000101000000000100111100001
+00100000001000000111111010011111
+11101010011000100000000000000000
+11101010001010100000000000000000
+10011000010000101111111000000000
+11100000101000100000000000000000
+00011010001000001010001000000100
+00011010011000001010011000000100
+11000010000000000111111010101000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111010100000000111111
+00011111001000100111111000000000
+00011111111001100111110000000001
+00100000011000010000000000000000
+10011010001000001010010000000000
+00011010010000001010010111111111
+00011111001000110111001000000000
+11101010001010001000000000000000
+11101010010000001000000000000000
+11100010001000001000000000000000
+11100010010010001000000000000000
+00011010010000001010010111111111
+00011010001000001010001000000001
+11000010000000000111111010111000
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+00011111001000001111001111111000
+00100000010000010111111010000001
+00100000011000101000000000000000
+00100000001000010111111011000010
+00011111001000001111001000001000
+00011111001000001111001111111100
+00100000010000010111111001111110
+00100000011000101000000000000000
+00100000001000010111111011000111
+00011111001000001111001000000100
+00100000001000000111111011001101
+00011111001000100111111000000000
+00100000011110100000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000111111011001111
+00100000011000000000000000000000
+01011000000000000000000000000000
+00011100010000110000010000000000
+01100000000010100100000100110100
+11011000101000000100001000111101
+10011000000000000000010000000000
+00011000111000111111111000000000
+10011000101000001000101000000000
+11100000101010010000000000000000
+01111001001000000000000000100101
+01000100111111011100000000111111
+00100000011000000000000000000000
+11011001011000000000100000000000
+00011001011100000001011000000000
+10011001011000001111111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111100100000000111111
+01101000000010100100000100110100
+00011100010000110111111000000000
+01100000000000100100000100110100
+10011000010001100111110000000000
+00100100010000010111111011011110
+10011000010001100001011000000000
+00011001011000100000010000000000
+11011000110000000100001000111101
+00011000110000100000101000000000
+11011111001000000000000000010000
+11101000110000010000000000000000
+10011000010001100111111000000000
+00100000001000010111111011110010
+00011000000000000111111000000000
+11100000101000010000000000000000
+11000010000000000111111011101110
+11011000110000000100001000111101
+00011000111000111111111000000000
+10011000110000001000110000000000
+11101000110000010000000000000000
+00100000011000000000000000000000
+10011000010000001000010000000000
+00011000010000100111001000000000
+01011000000000000000111010100110
+10011111001001100111111000000000
+00100000011000010000000000000000
+00011111111001100111111000000000
+00011000010100010000010000000000
+00011000010000001000010000000001
+00011000010100000000010000000000
+10011000010000011000010000000000
+00100000011000000000000000000000
+00100000010000000111111100000110
+00100000001000000111111100010000
+01111000010101000111110000000000
+10011000010001100111111000000000
+00100000001000010111111100001011
+01111000001101000111110000000000
+00011111111001100111111000000000
+11000100000001111000000000000000
+11011000010111110000111010100110
+10011000010000001111111000000000
+01111001001111111111111001000000
+00100000011000000000000000000000
+10011000000000000000110000000000
+00011111111100010111111000000000
+11011000010000000000111010100110
+10011000010011111111111000000000
+10011000110000001111111000000000
+00100000011000000000000000000000
+00011111111011010111111000000000
+00011111111100100111111000000000
+01101000000010011100001000001111
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111000010000000000
+00100000011000000000000000000000
+11011000010000000000111010100110
+10011000010001101111110000000000
+00100000010000000111111101010011
+00011000000001111111111000000000
+00011111111100000111111000000000
+00011000000001110000010000000000
+10011000010000011000010000000000
+00100000011000000000000000000000
+11011000010000000000000000000000
+00011000010000100010011000000000
+11101000011000001000000000000000
+00100000010000000111111100110001
+00011010011000100000010000000000
+00100000010000000111111101100010
+11011010010000000000000000001010
+10011010010011111111111000000000
+10011000010000001111111000000000
+00011111111000100000010000000000
+11000010000000000111111100100110
+00100000011000000000000000000000
+11011000010000000000000000111010
+10011000010001100111110000000000
+00100100001000010111111100111010
+11011000010000000000000001100001
+10011000010001100111110000000000
+00100000001000010111111100111101
+11011000010000000000000000110111
+10011000010001100111111000000000
+00100000011000000000000000000000
+11011000010000000000000000110000
+10011000010001100111111000000000
+00100000011000000000000000000000
+11011000010000000000000001010111
+10011000010001100111111000000000
+00100000011000000000000000000000
+00011000010000100110000000000000
+01011000000000000000000111111111
+00011000000000000010010000000000
+00011111111010010010001000000000
+00011010001000110010001000000000
+10011010001000101010001000000000
+00101010001011111111111000000000
+01111001001000001111111000001001
+00011000010000110000010000000000
+00101111111011111111111000000000
+01111001001000001000010000000111
+00011111111000110111111000000000
+00011010010000001010010000000001
+00101010010000000000111000000000
+00100100001000001111111101000011
+11100000101010001000000000000000
+11000010000000000111111101000011
+00011110000000100000010000000000
+00100000011000000000000000000000
+00100000011110101000000000000000
+00100000001000000111111101010011
+11101010001000001000000000000000
+11101010010010001000000000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011010001000001010001000000001
+00011010010000001010010000000001
+11000010000000000111111101010101
+00011000000000000111110000000000
+00100000011000000000000000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000010000100111111000000000
+00100000011000000000000000000000
+10011000010000001111111000000000
+10011000010001100000010000000000
+10011000010001100111111000000000
+00100000011000000000000000000000
+11011111001000000000001000000000
+11011000101000000100000000000000
+00100000001000000111111010010001
+00100000011110100000000000000000
+00011111111000100111101000000000
+01101000000100010000000100001110
+00100100001110100111111101101011
+00100000011000000000000000000000
+01101000000100010000000001011000
+00011111111000100000011000000000
+00100000011000000000000000000000
+01110000100000100000001100000001
+00100000011000000000000000000000
+01100000000100010000001000000101
+01101000000100001000001000000011
+01111001001000000111111000000100
+01100000000100001000001000000011
+00100000011000000000000000000000
+01100000000100010000001000000111
+01101000000100001000001000000011
+01111001001000000111111000000110
+01100000000100001000001000000011
+00100000011000000000000000000000
+01100000000100010000001000000101
+01110000100000100000001100110000
+00100000011000000000000000000000
+01101000000100001000000001000011
+01111001001111111111111000000100
+01100000000100001000000001000011
+00100000011000000000000000000000
+01101000000100010000000100001110
+11011000010000000000001000000000
+10011000010001100111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111101100000000111111
+11101010001011000000000000000000
+00011000010000010111111011111111
+00100100001110100111111110001111
+00011000010011001111111000000000
+11100010001001000000000000000000
+00011010001000001010001000000111
+11101010001000001000000000000000
+00100100001110100011101100110001
+01101000000000001000100110111101
+11100010001000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111110100000000111111
+11011111001000000000000000001000
+11101010001001000000000000000000
+00100000011110100000000000000000
+11101010001000001000000000000000
+00100100001110100111111110011111
+00011010001000001010001000000001
+11000010000000000111111110011010
+00100000001000000011101100110001
+11011000010000000000000000000000
+11100010001010001000000000000000
+00100000011000000000000000000000
+11101010001001000000000000000000
+00100000011000000000000000000000
+11101010001000001000000000000000
+00100000011000000000000000000000
+11101010001000010000000000000000
+00100000011000000000000000000000
+11011000010000000000000000000000
+01101000000000001000000000000110
+11000010000000000111111110101001
+00011000010000001000010000000001
+11000010000000000111111110101001
+00011000010000100111111000000000
+00100000011000000000000000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000010000100111111000000000
+00100000011000000000000000000000
Index: Receive_Code/output/eeprom.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/eeprom.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/eeprom.dat	(working copy)
@@ -0,0 +1,3316 @@
+00
+02
+aa
+55
+92
+09
+c5
+12
+80
+07
+c0
+01
+80
+15
+c0
+43
+02
+32
+c0
+45
+01
+fb
+c0
+45
+82
+54
+c0
+5a
+00
+35
+20
+20
+3b
+31
+c0
+01
+80
+d8
+c0
+0c
+82
+2a
+c0
+15
+80
+73
+c0
+17
+00
+cf
+c0
+19
+00
+1e
+c0
+19
+80
+bc
+c0
+1e
+00
+94
+c0
+1f
+00
+9d
+c0
+4a
+81
+f4
+c0
+6c
+00
+5b
+c0
+6c
+81
+c5
+c0
+6e
+01
+3b
+c0
+7b
+80
+86
+20
+20
+3b
+31
+d8
+e0
+00
+0e
+20
+40
+7e
+e2
+24
+5a
+00
+1a
+20
+40
+00
+1b
+20
+40
+00
+9d
+20
+20
+30
+1b
+58
+00
+00
+0e
+d8
+e0
+00
+0e
+20
+20
+7e
+d4
+68
+00
+c4
+6b
+c0
+00
+cc
+bb
+c0
+01
+00
+2d
+c0
+01
+cc
+da
+c0
+02
+4c
+e8
+c0
+02
+cc
+ed
+c0
+03
+4c
+f2
+c0
+03
+cd
+10
+c0
+04
+4d
+27
+c0
+04
+cd
+2d
+c0
+05
+4d
+32
+c0
+05
+cd
+35
+c0
+06
+4d
+39
+c0
+06
+cd
+64
+20
+20
+3b
+31
+59
+00
+03
+02
+60
+02
+44
+dc
+58
+01
+00
+10
+e0
+a1
+80
+00
+68
+03
+44
+dd
+60
+03
+44
+6c
+18
+00
+04
+0b
+20
+20
+4f
+89
+68
+00
+c1
+32
+20
+3a
+3d
+4b
+c0
+01
+c0
+0c
+c0
+04
+80
+3d
+c0
+05
+59
+dd
+c2
+83
+5d
+ca
+c2
+83
+c0
+0c
+20
+60
+00
+00
+20
+75
+80
+00
+20
+40
+74
+fd
+df
+20
+00
+87
+d8
+a0
+49
+b2
+d8
+c0
+4a
+c1
+20
+40
+7e
+cd
+20
+40
+75
+c9
+70
+80
+81
+00
+20
+40
+73
+a5
+58
+00
+73
+7c
+60
+01
+42
+8c
+58
+00
+74
+8c
+60
+01
+42
+8e
+58
+00
+73
+65
+60
+01
+42
+98
+58
+00
+73
+7a
+60
+01
+42
+94
+58
+00
+73
+71
+60
+01
+42
+90
+58
+00
+00
+c6
+60
+01
+42
+96
+20
+40
+01
+d0
+58
+00
+72
+ef
+60
+01
+42
+8a
+58
+00
+74
+f4
+60
+01
+42
+9a
+20
+40
+01
+0b
+70
+42
+12
+00
+70
+48
+c7
+00
+20
+20
+72
+ad
+68
+00
+c7
+55
+c0
+00
+00
+5e
+20
+20
+72
+b1
+70
+47
+56
+01
+70
+47
+5b
+01
+20
+40
+73
+82
+58
+00
+47
+71
+20
+40
+73
+8e
+20
+40
+7d
+44
+68
+00
+c7
+13
+24
+3a
+00
+63
+70
+43
+f9
+01
+58
+00
+00
+00
+60
+02
+47
+29
+20
+40
+73
+82
+68
+01
+47
+48
+60
+01
+47
+4a
+20
+20
+00
+6d
+68
+01
+47
+48
+60
+01
+47
+4a
+70
+48
+bb
+00
+70
+43
+f9
+01
+58
+00
+47
+63
+20
+20
+73
+8e
+68
+03
+03
+04
+60
+03
+03
+72
+68
+03
+03
+72
+68
+0b
+45
+2c
+98
+46
+7c
+00
+20
+22
+cb
+b4
+20
+20
+00
+7a
+68
+03
+03
+72
+68
+0b
+4b
+f2
+98
+46
+7c
+00
+24
+62
+80
+00
+68
+03
+03
+72
+60
+03
+4b
+4b
+70
+43
+f7
+1c
+58
+00
+01
+00
+60
+01
+45
+39
+70
+43
+f9
+00
+70
+4b
+51
+01
+20
+20
+3e
+69
+20
+40
+7d
+80
+da
+20
+46
+f8
+20
+40
+7f
+95
+1f
+e2
+04
+00
+20
+40
+7d
+84
+18
+42
+7e
+00
+20
+7a
+00
+00
+c0
+0b
+00
+8f
+20
+20
+7d
+b3
+70
+43
+f9
+01
+70
+42
+71
+1b
+68
+03
+4b
+4b
+60
+03
+45
+2c
+20
+60
+00
+00
+1a
+62
+7e
+00
+c0
+01
+00
+97
+20
+20
+4f
+b9
+68
+00
+c1
+32
+c0
+84
+80
+9a
+70
+48
+bb
+01
+58
+00
+00
+03
+60
+01
+03
+90
+20
+60
+00
+00
+e8
+c1
+80
+00
+60
+01
+83
+9a
+c0
+09
+80
+a3
+c0
+0d
+80
+a2
+20
+60
+00
+00
+20
+20
+01
+e9
+68
+00
+cb
+f8
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+cb
+f8
+c0
+00
+80
+aa
+c0
+00
+00
+b3
+20
+60
+00
+00
+58
+00
+00
+27
+60
+01
+44
+f8
+70
+45
+0b
+02
+58
+00
+00
+01
+60
+01
+45
+0c
+70
+4b
+52
+00
+70
+4b
+53
+01
+70
+09
+bd
+12
+20
+20
+4b
+d6
+58
+00
+00
+60
+60
+01
+44
+f8
+70
+45
+0b
+02
+58
+00
+00
+01
+60
+01
+45
+0c
+70
+4b
+52
+00
+70
+4b
+53
+01
+70
+09
+bd
+12
+20
+20
+4b
+d6
+68
+00
+c4
+6b
+c0
+09
+00
+bf
+20
+20
+4c
+2b
+68
+01
+44
+f8
+60
+01
+44
+6c
+68
+00
+c5
+0b
+1f
+e2
+72
+00
+d8
+c0
+45
+0c
+20
+40
+7e
+cd
+20
+20
+4f
+81
+1a
+62
+7e
+00
+c0
+16
+f4
+75
+c0
+08
+74
+7a
+c0
+0a
+73
+34
+c0
+0a
+80
+f6
+1f
+e1
+04
+0f
+1f
+e1
+7e
+f0
+c0
+28
+72
+fd
+20
+60
+00
+00
+68
+01
+4b
+df
+60
+01
+47
+4a
+58
+00
+47
+7f
+20
+40
+73
+8e
+70
+4b
+51
+01
+70
+47
+5b
+01
+70
+4b
+52
+21
+20
+40
+4b
+c2
+20
+60
+00
+00
+68
+00
+80
+05
+1f
+e0
+fe
+01
+60
+00
+80
+05
+20
+40
+4b
+51
+20
+40
+00
+df
+78
+54
+fc
+00
+20
+60
+00
+00
+68
+00
+cb
+52
+c0
+10
+80
+e4
+c0
+12
+80
+ee
+c0
+13
+00
+f5
+20
+60
+00
+00
+58
+00
+00
+1a
+60
+01
+44
+f8
+70
+45
+0b
+02
+58
+00
+00
+01
+60
+01
+45
+0c
+70
+4b
+52
+00
+70
+4b
+53
+01
+70
+09
+bd
+12
+20
+40
+4b
+d6
+20
+60
+00
+00
+70
+4b
+52
+26
+70
+09
+bd
+02
+20
+40
+4b
+d6
+68
+01
+47
+0b
+79
+20
+7e
+09
+60
+01
+47
+0b
+20
+60
+00
+00
+20
+60
+00
+00
+58
+00
+00
+00
+60
+03
+45
+2c
+70
+4b
+f8
+02
+70
+4b
+51
+00
+70
+42
+12
+00
+70
+48
+c7
+00
+70
+44
+b2
+00
+70
+48
+c6
+00
+70
+48
+c0
+00
+20
+40
+01
+10
+68
+01
+47
+48
+60
+01
+47
+4a
+68
+00
+c7
+43
+c0
+80
+73
+69
+20
+40
+00
+6d
+70
+47
+46
+00
+58
+00
+00
+00
+60
+01
+02
+86
+58
+00
+00
+00
+60
+01
+02
+88
+20
+20
+73
+63
+70
+4b
+60
+00
+58
+00
+4b
+65
+60
+01
+4b
+61
+60
+01
+4b
+63
+20
+60
+00
+00
+20
+20
+01
+0b
+78
+54
+7c
+00
+68
+00
+cb
+60
+2f
+e1
+fe
+06
+20
+60
+80
+00
+78
+34
+7c
+00
+68
+01
+4b
+63
+1f
+e2
+0a
+00
+18
+42
+0c
+00
+20
+40
+7e
+cd
+68
+00
+cb
+60
+1f
+e0
+fe
+01
+60
+00
+cb
+60
+58
+00
+4b
+63
+20
+20
+01
+1f
+1f
+e2
+22
+00
+d8
+40
+4b
+dd
+ea
+21
+00
+00
+1f
+e0
+fe
+14
+98
+46
+7c
+00
+24
+21
+01
+26
+58
+00
+4b
+65
+e2
+21
+00
+00
+20
+60
+00
+00
+78
+54
+7c
+00
+68
+00
+cb
+60
+20
+7a
+00
+00
+78
+34
+7c
+00
+68
+00
+cb
+60
+1f
+e0
+ff
+ff
+60
+00
+cb
+60
+68
+01
+4b
+61
+60
+01
+4b
+dd
+58
+00
+4b
+61
+20
+40
+01
+1f
+68
+01
+4b
+dd
+20
+60
+00
+00
+78
+54
+7c
+00
+68
+00
+cb
+60
+20
+7a
+00
+00
+78
+34
+7c
+00
+68
+01
+4b
+61
+20
+60
+00
+00
+68
+00
+c7
+a9
+20
+7a
+00
+00
+20
+40
+73
+af
+24
+34
+7d
+28
+20
+40
+7d
+26
+78
+54
+7c
+00
+68
+01
+4b
+df
+60
+01
+47
+4a
+68
+00
+cb
+51
+c0
+00
+00
+6d
+20
+40
+74
+de
+20
+21
+01
+5f
+68
+01
+47
+b6
+60
+01
+47
+c0
+70
+47
+c2
+00
+18
+00
+0e
+00
+68
+01
+47
+b8
+1f
+e3
+04
+00
+60
+09
+47
+b8
+1f
+e1
+7e
+01
+68
+09
+47
+c0
+18
+41
+22
+01
+18
+43
+04
+00
+60
+09
+47
+c0
+9a
+22
+fc
+00
+24
+42
+81
+63
+68
+00
+c7
+a9
+68
+08
+c7
+c2
+18
+40
+84
+01
+60
+08
+c7
+c2
+18
+42
+0e
+00
+98
+e2
+fc
+00
+24
+22
+81
+4b
+68
+01
+47
+b6
+60
+01
+47
+b8
+20
+60
+00
+00
+58
+00
+00
+00
+60
+01
+47
+b6
+60
+01
+47
+b8
+20
+60
+00
+00
+1a
+22
+7e
+00
+20
+3a
+01
+81
+18
+e2
+7e
+00
+c0
+00
+01
+87
+c0
+00
+81
+8e
+c0
+01
+01
+95
+c0
+01
+81
+9c
+e8
+40
+80
+00
+20
+7a
+00
+00
+60
+00
+c7
+ba
+18
+40
+84
+01
+60
+09
+47
+bb
+68
+01
+47
+bb
+ef
+e8
+80
+00
+18
+42
+72
+00
+98
+40
+84
+00
+60
+09
+47
+bb
+1f
+e2
+04
+00
+20
+40
+01
+11
+68
+00
+c7
+ba
+1f
+e0
+ff
+ff
+60
+00
+c7
+ba
+24
+22
+81
+6f
+20
+20
+01
+7b
+20
+40
+01
+35
+24
+74
+00
+00
+78
+54
+7c
+00
+70
+09
+bd
+12
+20
+40
+4b
+d6
+20
+20
+73
+5f
+18
+e2
+7e
+00
+c0
+00
+01
+a3
+c0
+00
+81
+aa
+c0
+01
+01
+b1
+c0
+01
+81
+b8
+20
+20
+01
+6a
+70
+4b
+5e
+01
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+bf
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+6a
+70
+4b
+5e
+02
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+bf
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+6a
+70
+4b
+5d
+01
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+bf
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+6a
+70
+4b
+5d
+02
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+bf
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+6a
+70
+4b
+5e
+00
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+bf
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+6a
+70
+4b
+5e
+00
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+bf
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+6a
+70
+4b
+5d
+00
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+bf
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+6a
+70
+4b
+5d
+00
+d8
+c0
+4b
+58
+df
+20
+00
+07
+20
+40
+01
+bf
+60
+00
+cb
+5f
+d8
+40
+4b
+54
+20
+20
+01
+6a
+da
+20
+00
+00
+e8
+c0
+80
+00
+9a
+20
+a2
+00
+c2
+00
+01
+c0
+1a
+21
+7e
+ff
+20
+60
+00
+00
+20
+40
+73
+1f
+20
+40
+73
+13
+20
+20
+72
+fe
+68
+00
+c7
+5a
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+c7
+5a
+24
+7a
+00
+00
+68
+00
+c7
+56
+c0
+00
+80
+66
+20
+20
+74
+8a
+70
+80
+81
+04
+68
+12
+00
+78
+79
+20
+7e
+07
+60
+12
+00
+78
+70
+80
+43
+01
+58
+00
+40
+00
+60
+11
+00
+54
+58
+00
+40
+30
+60
+11
+00
+56
+58
+00
+1f
+00
+60
+11
+00
+5a
+58
+00
+1f
+10
+60
+11
+00
+5c
+58
+00
+40
+00
+60
+11
+00
+58
+58
+00
+1f
+00
+60
+11
+00
+5e
+60
+11
+00
+60
+58
+00
+01
+a0
+60
+11
+00
+52
+68
+11
+00
+50
+79
+3f
+fe
+0f
+60
+11
+00
+50
+70
+80
+62
+81
+20
+60
+00
+00
+68
+03
+83
+0b
+60
+03
+cb
+ea
+70
+4b
+e7
+02
+70
+4b
+e8
+29
+70
+4b
+e9
+08
+68
+11
+00
+5e
+1f
+e2
+14
+00
+df
+20
+00
+0b
+d8
+c0
+4b
+e7
+20
+40
+63
+3b
+20
+20
+63
+1f
+68
+12
+00
+78
+68
+1a
+00
+7c
+98
+41
+fe
+00
+1f
+e4
+7e
+00
+9a
+21
+7e
+00
+60
+12
+00
+70
+20
+60
+00
+00
+60
+08
+80
+17
+18
+40
+a2
+00
+20
+40
+3a
+13
+58
+00
+05
+00
+20
+40
+3b
+35
+70
+89
+06
+01
+70
+89
+00
+3c
+70
+89
+01
+e0
+70
+89
+6d
+12
+20
+00
+00
+0a
+70
+89
+02
+01
+70
+89
+02
+3d
+20
+00
+00
+0a
+70
+89
+03
+b7
+20
+00
+00
+0a
+70
+89
+02
+7f
+68
+00
+cb
+51
+c0
+00
+02
+1b
+68
+00
+c2
+80
+c2
+80
+02
+13
+c2
+80
+82
+17
+c2
+81
+02
+1b
+c2
+81
+82
+1f
+c2
+82
+02
+23
+70
+89
+56
+f0
+20
+40
+39
+f5
+70
+89
+55
+d8
+20
+60
+00
+00
+70
+89
+56
+df
+20
+40
+39
+f5
+70
+89
+55
+df
+20
+60
+00
+00
+70
+89
+56
+ff
+20
+40
+39
+f5
+70
+89
+55
+df
+20
+60
+00
+00
+70
+89
+56
+ce
+20
+40
+39
+f5
+70
+89
+55
+d8
+20
+60
+00
+00
+70
+89
+56
+cb
+20
+40
+39
+f5
+70
+89
+55
+d8
+20
+60
+00
+00
+70
+89
+56
+c0
+70
+89
+55
+d8
+20
+60
+00
+00
+20
+40
+49
+85
+20
+40
+02
+30
+20
+40
+4a
+6d
+68
+00
+c1
+32
+c0
+05
+5d
+8e
+20
+60
+00
+00
+20
+36
+82
+00
+20
+20
+49
+94
+20
+30
+82
+43
+70
+89
+55
+d4
+20
+00
+00
+04
+70
+89
+55
+d2
+20
+00
+00
+04
+70
+89
+55
+d1
+20
+00
+00
+04
+68
+00
+cb
+51
+c0
+00
+02
+51
+68
+00
+c2
+80
+c2
+80
+02
+41
+c2
+80
+82
+4e
+c2
+81
+02
+41
+c2
+81
+82
+4e
+c2
+82
+02
+4e
+70
+89
+55
+d0
+70
+89
+56
+e0
+18
+00
+2a
+00
+78
+50
+fc
+00
+78
+50
+7c
+00
+78
+2f
+7c
+00
+70
+89
+02
+00
+70
+89
+01
+00
+70
+89
+00
+00
+70
+89
+03
+00
+70
+89
+04
+70
+70
+89
+06
+00
+20
+60
+00
+00
+70
+89
+55
+d0
+70
+89
+56
+c0
+20
+20
+02
+43
+70
+89
+55
+d0
+70
+89
+56
+c0
+20
+60
+00
+00
+68
+00
+c2
+18
+24
+3a
+02
+5a
+20
+40
+3c
+d2
+20
+00
+75
+30
+20
+00
+75
+30
+20
+00
+75
+30
+20
+40
+3a
+5f
+70
+80
+42
+05
+20
+00
+00
+01
+70
+80
+42
+04
+68
+10
+89
+6b
+1f
+e1
+7e
+cf
+60
+10
+89
+6b
+1f
+e1
+fe
+30
+60
+10
+89
+6b
+20
+60
+00
+00
+65
+c9
+aa
+55
+00
+00
+aa
+55
+01
+00
+00
+40
+08
+aa
+55
+02
+00
+10
+40
+40
+0c
+aa
+55
+01
+00
+16
+40
+10
+aa
+55
+01
+00
+20
+40
+08
+aa
+55
+01
+00
+23
+40
+02
+aa
+55
+03
+00
+25
+40
+48
+0c
+50
+aa
+55
+01
+00
+32
+40
+20
+aa
+55
+01
+00
+3b
+40
+13
+aa
+55
+01
+00
+3e
+40
+80
+aa
+55
+01
+00
+32
+41
+09
+aa
+55
+01
+00
+29
+45
+07
+aa
+55
+01
+00
+f9
+43
+01
+aa
+55
+01
+00
+bb
+42
+ff
+aa
+55
+01
+00
+0e
+47
+1b
+aa
+55
+01
+00
+15
+47
+ff
+aa
+55
+01
+00
+14
+47
+10
+aa
+55
+01
+00
+02
+47
+01
+aa
+55
+01
+00
+4c
+47
+32
+aa
+55
+04
+00
+50
+47
+96
+00
+96
+00
+aa
+55
+02
+00
+48
+47
+08
+07
+aa
+55
+01
+00
+df
+44
+01
+aa
+55
+02
+00
+1e
+45
+60
+01
+aa
+55
+01
+00
+3c
+47
+05
+aa
+55
+06
+00
+3e
+45
+02
+31
+00
+98
+07
+2a
+aa
+55
+0c
+00
+40
+44
+0b
+41
+42
+20
+53
+68
+75
+74
+74
+65
+72
+33
+aa
+55
+40
+00
+00
+44
+1b
+13
+09
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+02
+01
+05
+03
+02
+12
+18
+00
+00
+00
+00
+1f
+1e
+09
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+20
+aa
+55
+87
+00
+c1
+4a
+47
+05
+0c
+09
+01
+a1
+01
+85
+02
+0a
+ae
+01
+09
+e9
+09
+ea
+09
+e2
+09
+30
+15
+01
+25
+0c
+75
+10
+95
+01
+81
+00
+c0
+05
+01
+09
+06
+a1
+01
+85
+03
+05
+07
+19
+e0
+29
+e7
+15
+00
+25
+01
+75
+01
+95
+08
+81
+02
+75
+08
+95
+01
+15
+00
+25
+f4
+05
+07
+19
+00
+29
+f4
+81
+00
+c0
+1c
+00
+02
+03
+28
+01
+02
+1d
+00
+02
+4a
+2a
+04
+11
+01
+00
+01
+1e
+00
+02
+03
+28
+01
+04
+1f
+00
+02
+4c
+2a
+01
+00
+20
+00
+02
+00
+28
+02
+0f
+18
+21
+00
+02
+03
+28
+01
+12
+22
+00
+02
+19
+2a
+01
+00
+23
+00
+02
+02
+29
+02
+00
+00
+00
+00
+aa
+55
+02
+00
+41
+47
+03
+44
+aa
+55
+02
+00
+37
+46
+cc
+48
+aa
+55
+01
+00
+31
+41
+00
+aa
+55
+01
+00
+f6
+41
+06
+aa
+55
+01
+00
+13
+42
+02
+aa
+55
+03
+00
+55
+47
+00
+00
+0a
+aa
+55
+01
+00
+59
+47
+0c
+aa
+55
+02
+00
+5c
+47
+20
+00
+aa
+55
+04
+00
+33
+45
+06
+00
+20
+00
+aa
+55
+03
+00
+3b
+45
+01
+00
+00
+aa
+55
+04
+00
+fa
+43
+30
+00
+0c
+00
+aa
+55
+44
+00
+5e
+47
+01
+1b
+ff
+ff
+ff
+02
+1b
+96
+00
+96
+00
+ff
+02
+1b
+96
+00
+3a
+07
+ff
+02
+1b
+96
+00
+3a
+00
+01
+00
+1b
+48
+00
+96
+00
+02
+01
+1b
+00
+00
+00
+00
+00
+01
+1b
+00
+00
+00
+00
+00
+02
+1b
+96
+00
+96
+00
+01
+ff
+1b
+00
+00
+00
+00
+00
+00
+1b
+00
+00
+00
+00
+00
+aa
+55
+10
+00
+c3
+47
+03
+05
+17
+00
+00
+28
+05
+13
+00
+02
+00
+05
+13
+00
+01
+00
+aa
+55
+0b
+00
+d7
+47
+02
+05
+17
+00
+00
+00
+05
+13
+00
+00
+00
+aa
+55
+0b
+00
+eb
+47
+02
+05
+13
+00
+01
+00
+05
+13
+00
+02
+00
+aa
+55
+06
+00
+f9
+47
+01
+05
+13
+00
+00
+00
+aa
+55
+0c
+00
+54
+4b
+01
+0b
+14
+00
+5a
+6b
+02
+00
+02
+00
+00
+00
+aa
+55
+0d
+00
+a9
+47
+04
+04
+00
+05
+00
+06
+00
+03
+00
+ff
+00
+ff
+00
+aa
+55
+03
+00
+48
+4b
+0e
+10
+26
+aa
+55
+06
+00
+f2
+4b
+ff
+ff
+ff
+ff
+ff
+ff
+aa
+55
+02
+00
+df
+4b
+b8
+0b
+aa
+55
+01
+00
+80
+42
+02
+aa
+55
+01
+00
+f8
+4b
+02
+aa
+55
+03
+00
+15
+42
+8f
+1e
+ca
+aa
+55
+04
+00
+19
+42
+0a
+0b
+ef
+07
+aa
+55
+01
+00
+f7
+41
+00
+aa
+55
+08
+00
+a0
+00
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+02
+00
+5d
+41
+02
+24
+aa
+55
+08
+00
+4d
+41
+12
+00
+00
+10
+12
+00
+00
+08
+aa
+55
+02
+00
+5b
+41
+20
+00
+aa
+55
+04
+00
+57
+41
+20
+00
+00
+20
+aa
+55
+04
+00
+5f
+41
+80
+04
+00
+08
+aa
+55
+05
+00
+a9
+45
+08
+0e
+05
+03
+00
+aa
+55
+02
+00
+a8
+42
+30
+ff
+aa
+55
+01
+00
+b6
+42
+80
+aa
+55
+02
+00
+81
+42
+01
+ff
+aa
+55
+02
+00
+63
+41
+82
+42
+a4
+af
Index: Receive_Code/output/memmap.format
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/memmap.format	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/memmap.format	(working copy)
@@ -0,0 +1,1372 @@
+0x0000 mem_le_adv_transmit
+0x0001 mem_le_adv_waitcnt
+0x0002 mem_le_adv_rcv
+0x0003 mem_le_req_rcv
+0x0004 mem_le_scanrsp_rcv
+0x0005 mem_le_conn_rcv
+0x0006 mem_inquiryscan_waitcnt
+0x0007 mem_inquiryscan_rcvcnt
+0x0008 mem_pagescan_waitcnt
+0x0009 mem_pagescan_rcvcnt
+0x000a mem_pagescan_rcvfhscnt
+0x000b mem_slave_rcvcnt
+0x000c mem_page_transmit
+0x000d mem_page_rcv
+0x000e mem_page_rcv_fhs
+0x000f mem_master_rcvcnt
+0x0010 mem_fhs_wait_counter
+0x0011 mem_newconnto_counter
+0x0012 mem_inquiry_transmit
+0x0013 mem_inquiry_rcv
+0x0014 mem_fw_ver
+0x0015 mem_current_context
+0x0016 mem_le_ch_mapped
+0x0017 mem_last_freq
+0x0018 mem_rssi
+0x0019 mem_rx_type
+0x001a mem_rx_hec_err
+0x001c mem_rx_crc_err
+0x001e mem_context_ptr
+0x0020 mem_display
+0x0028 mem_bcd
+0x0030 mem_state
+0x0031 mem_mode
+0x0032 mem_tsniff
+0x0034 mem_sniff_anchor
+0x0038 mem_clk_offset
+0x003e mem_rx_window
+0x0040 mem_plap
+0x0043 mem_puap
+0x0044 mem_pnap
+0x0046 mem_conn_handle
+0x0047 mem_arq
+0x0048 mem_lmp_to_send
+0x0049 mem_lmi_opcode
+0x004a mem_lmo_reason
+0x004b mem_op
+0x004c mem_state_map
+0x004d mem_supervision_timer
+0x0051 mem_supervision_to
+0x0053 mem_name_offset
+0x0054 mem_key_size
+0x0055 mem_conn_sm
+0x0056 mem_aco
+0x0062 mem_kc
+0x0072 mem_conn_timer
+0x0073 mem_sniff_attempt
+0x0074 mem_sniff_timeout
+0x0075 mem_dsniff
+0x0077 mem_amaddr
+0x0078 mem_lmo_opcode1
+0x0079 mem_lmi_opcode1
+0x007a mem_lmo_reason1
+0x007b mem_lmo_tid1
+0x007c mem_lmo_opcode2
+0x007d mem_lmi_opcode2
+0x007e mem_lmo_reason2
+0x007f mem_lmo_tid2
+0x0080 mem_hci_version
+0x0083 mem_acl_pktlen
+0x0085 mem_sco_pktlen
+0x0086 mem_acl_pktcnt
+0x0088 mem_sco_pktcnt
+0x008a mem_current_sniff_attempt
+0x008b mem_current_sniff_timeout
+0x008c mem_nfreq_index_inq
+0x008d mem_nfreq_index_page
+0x008e mem_ninqy_index
+0x008f mem_fhs_misc
+0x0090 mem_subsniff_instant
+0x0094 mem_subsniff_rate
+0x0095 mem_subsniff_tcmax
+0x0097 mem_subsniff_tsniff
+0x0098 mem_lpm_adjust
+0x0099 mem_sync_clke
+0x009f mem_lpm_current_mult
+0x00a0 mem_gpio_wakeup_low
+0x00a4 mem_gpio_wakeup_high
+0x00a8 mem_air_mode
+0x00a9 mem_sco_asso_handle
+0x00aa mem_sco_handle
+0x00ac mem_esco_desco
+0x00ad mem_esco_type
+0x00ae mem_neogotiation_state
+0x00af mem_saved_amaddr
+0x00b0 mem_esco_arq
+0x00b1 mem_esco_saved_arq
+0x00b2 mem_sco_obuf
+0x00d0 mem_sco_ibuf
+0x00ee mem_sco_poll
+0x00ef mem_npage_index
+0x00f0 mem_page_mode
+0x00f1 mem_page_clk
+0x00f5 mem_tst_pktcnt_sync
+0x00f7 mem_tst_pktcnt_hec
+0x00f9 mem_tst_pktcnt_crc
+0x00fb mem_tst_pktcnt_dmh
+0x00fd mem_tmp_buffer_head
+0x0100 mem_tmp_buffer
+0x0150 mem_tester_emulate
+0x0151 mem_temp_payload
+0x0151 test_mode_scenario
+0x0152 test_mode_hopping_mode
+0x0153 test_mode_tx_freq
+0x0154 test_mode_rx_freq
+0x0155 test_mode_power_mode
+0x0156 test_mode_poll_period
+0x0157 test_mode_packet_type
+0x0158 test_mode_data_length
+0x015a mem_test_mode_old_debug_config
+0x015b mem_tester_cnt
+0x015c mem_temp_am_addr
+0x015d mem_temp_arq
+0x015e mem_len
+0x0160 mem_clkn_bt
+0x0164 mem_clke_bt
+0x0168 mem_dpll_clkn
+0x016c mem_connection_options
+0x016d mem_nameres_cnt
+0x016e mem_txptr
+0x0170 mem_slot_offset
+0x0172 extm_fhs_misc
+0x0173 extm_newconn_am_addr
+0x0174 extm_class
+0x0177 extm_lap
+0x017a extm_uap
+0x017b extm_nap
+0x017e mem_debug_config
+0x017f mem_lch_code
+0x0180 mem_fhs_am_addr
+0x0181 mem_dpll_error
+0x0183 mem_bdaddr_list_buff
+0x01a7 mem_select_list_item
+0x01a8 mem_temp_reconn_record
+0x01a8 mem_record_bt_mode
+0x01a9 mem_temp_lap
+0x01af mem_list_item_ptr
+0x01b1 mem_eir
+0x0215 mem_ucode_status
+0x0216 mem_otp_ucode_flag
+0x0218 mem_spid_tbuf/* spid buf: 03 addr[23:16] addr[15:8] addr[7:0] */
+0x0219 mem_iicd_tbuf/* iicd buf: iic_adr addr[15:8] addr[7:0] iic_adr */
+0x0219 mem_addr_hi
+0x021a mem_addr_mi
+0x021b mem_addr_lo
+0x021c mem_iicd_addr
+0x021d mem_spid_rbuf
+0x0221 mem_ucode_buf
+0x0223 mem_ucode_len
+0x0225 mem_sched_addr
+0x0227 mem_ucode_ptr
+0x0229 mem_ucode_keybuf
+0x0239 mem_check_plap_temp
+0x024b mem_sensor_id
+0x024c mem_reconnect_flag
+0x024d mem_switch_fail_master_count
+0x024e mem_app_evt_timer_count
+0x024f mem_h5rx_ackcnt
+0x0250 mem_check_err_acl_cont
+0x0251 mem_rp_packets
+0x0252 mem_packet_type
+0x0254 mem_hci_sniff_conn_handle
+0x0256 mem_hci_sniff_max_interval
+0x0258 mem_hci_sniff_min_interval
+0x025a mem_hci_sniff_attempt
+0x025c mem_hci_sniff_timeout
+0x025e mem_voice_setting
+0x0260 mem_retransmission_effort
+0x0261 mem_sco_ptype
+0x0263 mem_extm_uap_restore
+0x0266 mem_h5rx_rptr
+0x0268 mem_h5rx_ack
+0x0269 mem_h5tx_ack
+0x026a mem_h5tx_rptr
+0x026c mem_h5tx_wptr
+0x026e mem_h5tx_free
+0x0270 mem_h5rx_tmp
+0x0271 mem_h5tx_seq
+0x0272 mem_hci_acl_queue_wptr
+0x0274 mem_hci_acl_queue_rptr
+0x0276 mem_hci_acl_queue_end
+0x0278 mem_hci_acl_queue_wcnt
+0x0279 mem_hci_acl_cnt
+0x027a mem_hci_acl_tx_trigger_wptr//tx via uart
+0x027c mem_ucode_id_local
+0x027d mem_ucode_id_remote
+0x027e mem_check_sum
+0x027f mem_ucode_temp
+0x0280 mem_ucode_temp1
+0x0281 mem_lock_in_enc//boolean
+0x0282 mem_hci_disconn_reason
+0x0283 mem_hci_curr_len
+0x0284 mem_hci_curr_target
+0x0286 mem_l2cap_mem_start
+0x0286 mem_l2cap_rxbuff1_len
+0x0288 mem_l2cap_rxbuff2_len
+0x028a mem_l2cap_rxbuff_new
+0x028c mem_l2cap_rxbuff_inuse
+0x028d mem_l2cap_payload_ptr
+0x028f mem_l2cap_rx_pkt_length
+0x0291 mem_l2cap_rx_cid
+0x0293 mem_l2cap_rx_done
+0x0294 mem_l2cap_signal_tx_buff_ptr
+0x0296 mem_l2cap_signal_tx_payload_ptr
+0x0298 mem_l2cap_signal_tx_length
+0x029a mem_sdp_tx_buff_ptr
+0x029c mem_sdp_tx_payload_ptr
+0x029e mem_sdp_tx_pkt_length
+0x02a0 mem_rfcomm_tx_buff_ptr
+0x02a2 mem_rfcomm_tx_payload_ptr
+0x02a4 mem_rfcomm_tx_pkt_length
+0x02a6 memL2CAP_T1
+0x02a8 mem_CONTROL_tasks
+0x02a9 mem_send_config_req
+0x02aa mem_config_identifier
+0x02ab mem_config_req_dest_CID
+0x02ad mem_rfcomm_malloc_fail_flag
+0x02ae mem_message_to_uppersm
+0x02af mem_upper_sm_remote_page
+0x02b0 mem_upper_sm_reconn
+0x02b1 mem_upper_sm_ss
+0x02b2 mem_tx_malloc_log
+0x02f2 mem_l2cap_mem_end
+0x02f2 mem_scid
+0x02f4 mem_cmd_length
+0x02f6 mem_tt2
+0x02f8 mem_tt3
+0x02fa mem_id
+0x02fc mem_psm
+0x02fe mem_l2cap_sdpres_delay_time
+0x0302 mem_le_rxbuf
+0x033a mem_le_mic
+0x033e mem_le_peer_mic
+0x0342 mem_le_peer_ltk
+0x0352 mem_le_mrand
+0x0362 mem_le_state
+0x0363 mem_le_mode
+0x0364 mem_le_tsniff
+0x0366 mem_le_anchor
+0x036a mem_le_clk_offset
+0x0370 mem_le_receive_window
+0x0372 mem_le_plap
+0x0378 mem_le_conn_handle
+0x0379 mem_le_arq
+0x037a mem_le_ch
+0x037b mem_le_hop
+0x037c mem_le_event_count
+0x037e mem_le_supervision_timer
+0x0382 mem_le_instant
+0x0384 mem_le_channels
+0x0385 mem_le_op
+0x0386 mem_le_access
+0x038a mem_le_crcinit
+0x038d mem_le_window_size
+0x038e mem_le_slave_latency
+0x0390 mem_le_superto
+0x0392 mem_le_channel_map
+0x0397 mem_le_no_using
+0x0399 mem_le_peer_sca
+0x039a mem_le_att_opcode
+0x039b mem_le_att_handle
+0x039d mem_le_err_code
+0x039e mem_le_l2cap_pdu_length
+0x03a0 mem_le_sk
+0x03b0 mem_le_testtype
+0x03b1 mem_le_test_sync
+0x03b3 mem_le_test_pcnt
+0x03b5 mem_le_rxon_ts
+0x03bb mem_le_rx_ll_opcode
+0x03bc mem_le_notify_attr_start
+0x03be mem_le_notify_len
+0x03bf mem_cmd_le_create_conn
+0x03c0 mem_24g_id
+0x03c1 mem_le_cur_attlist_start_ptr
+0x03c3 mem_le_cur_handle_start
+0x03c5 mem_le_cur_handle_end
+0x03c7 mem_le_cur_uuid_lenth
+0x03c8 mem_le_cur_uuid
+0x03d8 mem_le_search_len
+0x03d9 mem_le_search_res
+0x03da mem_le_continue_type
+0x03db mem_le_public_length
+0x03dc mem_lmo_header_length
+0x03dd mem_lmo_header_opcode
+0x03de mem_lmo_payload
+0x03ef mem_lmi_accepted_opcode
+0x03f0 mem_disconn_reason_send
+0x03f1 mem_tx_fixed_freq
+0x03f2 mem_rx_fixed_freq
+0x03f3 mem_ext_features_page
+0x03f4 mem_lmpext_ssp_enable
+0x03f6 mem_remote_sppcap
+0x03f7 mem_lmp_conn_state
+0x03f8 mem_soft_timer
+0x03fa mem_pincode_state
+0x03fb mem_sres_tid
+0x03fc mem_accptsco_tid
+0x03fd mem_auth_enable
+0x03fe mem_wait_encryption
+0x03ff mem_sniff_payload
+0x040f mem_aurand_send_delay_time
+0x0413 mem_module_temp_len
+0x0415 mem_uart_cmd
+0x0416 mem_uart_opcode
+0x0417 mem_uart_len
+0x0418 mem_module_temp_nl_discard_packet
+0x0419 mem_module_le_md_flag
+0x041a mem_init_cnt
+0x041c memRemoteRPNBitRate
+0x041d memRemotePRNDataBits
+0x041e memRemotePRNStopBit
+0x041f memRemotePRNParity
+0x0420 memRemotePRNFlowControl
+0x0421 memRemotePRNXon
+0x0422 memRemotePRNXoff
+0x0423 mem_mod2div_temp
+0x0426 mem_contw_temp
+0x0428 mem_attrib_list
+0x042a mem_current_adss
+0x042b mem_current_channel
+0x042c mem_current_frame_type
+0x042d mem_current_fcs
+0x042e mem_current_length
+0x0430 mem_rfcomm_uih_payload_ptr
+0x0432 mem_uih_cmd_type
+0x0433 mem_uih_length
+0x0435 mem_param_payload_ptr
+0x0437 mem_ms_param
+0x0438 mem_pn_credit_flow_type_info
+0x0439 mem_pn_priority
+0x043a mem_pn_acknowledg_timer
+0x043b mem_pn_max_retrans
+0x043c mem_rfcomm_send_adss
+0x043d mem_rfcomm_send_frame_type
+0x043e mem_rfcomm_send_fcs
+0x043f mem_rfcomm_send_offset
+0x0440 mem_sdp_mem_start
+0x0440 mem_uuid_search_pat
+0x0444 mem_sdp_continue_byte
+0x0446 mem_sdp_pduid
+0x0447 mem_sdp_transactionid
+0x0449 mem_sdp_attribute_maxbyte
+0x044b mem_sdp_record_maxcnt
+0x044d mem_sdp_error_code
+0x0455 mem_sdp_record_handle
+0x0459 mem_sdp_search_failed
+0x045a mem_sdp_LACAP_found
+0x045b mem_sdp_RFCOMM_found
+0x045c mem_handle_list
+0x0474 mem_handle_humber
+0x0475 mem_sdp_mem_end
+0x0475 mem_rxbuf
+0x0486 mem_random_number
+0x0496 mem_round_key
+0x04a6 mem_kinit
+0x04b6 mem_input_store
+0x04c6 mem_x
+0x04d6 mem_y
+0x04e5 mem_y15
+0x04e6 mem_key_store
+0x04f7 mem_key_store_end
+0x04f8 memp_ar_key
+0x04fa memp_ar_input
+0x04fc mem_ar_hround
+0x0506 mem_ec_infinite
+0x0507 mem_ec_loopc
+0x0509 mem_aes_cmac_data_length
+0x050a memdat
+0x050a mem_ax
+0x0522 mem_ay
+0x053a mem_az
+0x0552 mem_bx
+0x056a mem_ax_256//32 bytes
+0x056a mem_by
+0x0582 mem_bz
+0x058a mem_ay_256// 32 bytes
+0x059a mem_cx
+0x05aa mem_az_256// 32 bytes
+0x05b2 mem_cy
+0x05c9 mem_cy5
+0x05ca mem_bx_256// 32 bytes
+0x05ca mem_cz
+0x05e2 mem_k
+0x05ea mem_by_256// 31 bytes
+0x05fa mem_align
+0x060a mem_bz_256//32 bytes
+0x060a mem_tmp1
+0x060a memahbak
+0x0622 mem_tmp5
+0x062a mem_cx_256//32 bytes
+0x062a memahsave
+0x063a mem_tmp2
+0x064a mem_cy_256// 32 bytes
+0x064a memahsave_end
+0x064a mem_addr_padding
+0x064b mem_addr_value/* 12 bytes     */ 
+0x0652 mem_tmp3
+0x0652 mem_t1
+0x0657 mem_addr_value_end
+0x065a mem_addr_iocap_end
+0x0669 mem_cy5_256// 1 byte
+0x066a mem_cz_256// 32 bytes
+0x066a mem_tmp0
+0x066a mem_t0
+0x0672 mem_tmp0a
+0x0682 mem_t2
+0x068a mem_k_256//32 bytes
+0x069a mem_t3
+0x06aa mem_tmp1_256//32 bytes
+0x06b2 mem_t7
+0x06ca mem_tmp5_256
+0x06ea mem_tmp2_256
+0x070a mem_tmp3_256
+0x070a mem_t1_256
+0x072a mem_tmp0_256
+0x072a mem_t0_256
+0x074a mem_t2_256
+0x076a mem_t3_256
+0x078a mem_t7_256
+0x07aa mem_p
+0x07c2 mem_a
+0x07da mem_b
+0x07f2 mem_gx
+0x080a mem_gy
+0x0822 memh0
+0x0842 mem_p_256
+0x0862 mem_a_256
+0x0882 mem_gx_256
+0x08a2 mem_gy_256
+0x08c2 mem_le_slat
+0x08d2 mem_sp_state_start
+0x08d2 mem_sp_state
+0x08d3 mem_master_sp_state
+0x08d4 mem_sp_flag
+0x08d5 mem_master_sp_flag
+0x08d6 mem_sp_calc
+0x08d7 mem_sp_dh_ready
+0x08d8 mem_sp_localsm
+0x08d9 mem_pairing_auth
+0x08da mem_sp_flag_start
+0x08da mem_sp_local_key_send_count
+0x08db mem_sp_remote_key_recv_count
+0x08dc mem_sp_remote_key_invalid
+0x08dd mem_sp_dhkey_invalid
+0x08de mem_gkey
+0x08e2 mem_le_pubkey_remote_x_256
+0x08ea mem_sp_pubkey_remote
+0x08ea mem_sp_pubkey_remote_x
+0x0902 mem_sp_pubkey_remote_x_end
+0x0902 mem_le_pubkey_remote_y_256
+0x090a mem_sp_pubkey_remote_y
+0x0922 mem_le_dhkey_256
+0x092a mem_sp_dhkey
+0x0942 mem_sp_dhkey_end
+0x0942 mem_sp_random_local
+0x0952 mem_sp_random_local_end
+0x0952 mem_sp_random_remote
+0x0962 mem_sp_random_remote_end
+0x0962 memresult
+0x0962 mem_sp_calc_result
+0x0962 memh
+0x0966 memg
+0x096a memf
+0x096e meme
+0x0972 mem_sp_calc_result_high
+0x0972 memd
+0x0976 memc
+0x097a memb
+0x097e mema
+0x0982 mem_sp_check_result
+0x0992 mem_sp_confirm_remote
+0x09a2 mem_sp_prarm_stack
+0x09b2 mem_UI_data_txbuff_length
+0x09b4 mem_ipc_skip_continue_proc
+0x09b5 mem_ui_timer_temp//length 4
+0x09b5 mem_ipc_rega_temp
+0x09b9 mem_hold_contr
+0x09bb mem_hold_contw
+0x09bd mem_fifo_temp
+0x09be mem_pdatatemp
+0x09c6 mem_temp//8 bytes
+0x09ce mem_timeup// 4 bytes
+0x09d2 mem_rega//4 bytes
+0x09d6 mem_regb//4 bytes
+0x09da mem_regc//3 bytes
+0x09dd mem_contr//2 bytes
+0x09df mem_contw//2 bytes
+0x09e1 mem_le_data_len_temp//1byte
+0x09e1 mem_tx_fifo_map_temp
+0x09e1 mem_rpn_dlci//1byte
+0x09e1 mem_event_cmd_response_content//2byte
+0x09e1 mem_le_prand//16byte
+0x09e1 mem_AES_CMAC_k//16 bytes
+0x09e1 mem_regext_index//1 bytes
+0x09e1 mem_temp_block0
+0x09e2 mem_le_data_temp//15bytes
+0x09e2 mem_temp_block1
+0x09f1 mem_le_aes_128//16byte
+0x09f1 mem_regext//64 bytes
+0x09f1 mem_AES_CMAC_k1//16 bytes
+0x09f1 mem_temp_block2
+0x0a01 mem_AES_CMAC_k2//16 bytes
+0x0a01 mem_temp_block3
+0x0a11 mem_AES_CMAC_temp// 16 bytes
+0x0a11 mem_temp_block4
+0x0a21 mem_AES_CMAC_M_last// 16 bytes
+0x0a21 mem_temp_block5
+0x0a31 mem_le_mackey//16 bytes
+0x0a31 mem_temp_block6
+0x0a41 mem_temp_prepare_write_request
+0x0b09 mem_kb_map2_temp_start
+0x0b09 mem_kb_map2_vk
+0x0b0c mem_kb_current_vk
+0x0b0f mem_kb_vk_offset
+0x0b10 mem_kb_vk_processed_cnt
+0x0b11 mem_kb_map2_current_cell_ptr
+0x0b13 mem_kb_device_button
+0x0b14 mem_table_temp0
+0x0b1c mem_table_temp1
+0x0b24 mem_kb_map2_temp_end
+0x0b24 mem_check_count
+0x0b25 mem_store_key_count
+0x0b26 mem_kb_gpio_val
+0x4000 mem_patch00
+0x4001 mem_patch01
+0x4002 mem_patch02
+0x4003 mem_patch03
+0x4004 mem_patch04
+0x4005 mem_patch05
+0x4006 mem_patch06
+0x4007 mem_patch07
+0x4008 mem_patch08
+0x4009 mem_patch09
+0x400a mem_patch0a
+0x400b mem_patch0b
+0x400c mem_patch0c
+0x400d mem_patch0d
+0x400e mem_patch0e
+0x400f mem_patch0f
+0x4010 mem_patch10
+0x4011 mem_patch11
+0x4012 mem_patch12
+0x4013 mem_patch13
+0x4014 mem_patch14
+0x4015 mem_patch15
+0x4016 mem_patch16
+0x4017 mem_patch17
+0x4018 mem_patch18
+0x4019 mem_patch19
+0x401a mem_patch1a
+0x401b mem_patch1b
+0x401c mem_patch1c
+0x401d mem_patch1d
+0x401e mem_patch1e
+0x401f mem_patch1f
+0x4020 mem_patch20
+0x4021 mem_patch21
+0x4022 mem_patch22
+0x4023 mem_patch23
+0x4024 mem_patch24
+0x4025 mem_patch25
+0x4026 mem_patch26
+0x4027 mem_patch27
+0x4028 mem_patch28
+0x4029 mem_patch29
+0x402a mem_patch2a
+0x402b mem_patch2b
+0x402c mem_patch2c
+0x402d mem_patch2d
+0x402e mem_patch2e
+0x402f mem_patch2f
+0x4030 mem_patch30
+0x4031 mem_patch31
+0x4032 mem_patch32
+0x4033 mem_patch33
+0x4034 mem_patch34
+0x4035 mem_patch35
+0x4036 mem_patch36
+0x4037 mem_patch37
+0x4038 mem_patch38
+0x4039 mem_patch39
+0x403a mem_patch3a
+0x403b mem_patch3b
+0x403c mem_patch3c
+0x403d mem_patch3d
+0x403e mem_patch3e
+0x403f mem_patch3f
+0x4040 mem_context
+0x4130 mem_current_amaddr
+0x4131 mem_lpm_mode
+0x4132 mem_device_option
+0x4133 mem_scan_mode
+0x4134 mem_last_clkn
+0x4138 mem_features
+0x4140 mem_lap
+0x4143 mem_uap
+0x4144 mem_nap
+0x4146 mem_npage
+0x4147 mem_glap
+0x414a mem_class
+0x414d mem_iscan_window
+0x414f mem_iscan_interval
+0x4151 mem_pscan_window
+0x4153 mem_pscan_interval
+0x4155 mem_page_interval
+0x4157 mem_page_window
+0x4159 mem_page_to
+0x415b mem_inq_window
+0x415d mem_fcomp_mul
+0x415e mem_fcomp_div
+0x415f mem_rx_window_init
+0x4161 mem_rx_window_sniff
+0x4163 mem_rf_init_ptr
+0x4165 mem_last_type
+0x4166 mem_last_type_esco
+0x4167 mem_last_type_saved
+0x4168 mem_retransmission_cnt
+0x416a mem_next_btclk
+0x416e mem_rf_rccal
+0x416f mem_handle_num
+0x4170 mem_max_slot
+0x4171 mem_eir_enable
+0x4172 mem_afh_instant
+0x4176 mem_afh_error_total
+0x4178 mem_afh_cfg
+0x4179 mem_afh_new_mod
+0x417a mem_afh_map_lo
+0x417f mem_afh_map_hi
+0x4184 mem_afh_used
+0x4185 mem_afh_index
+0x4187 mem_afh_map_new
+0x4192 mem_afh_map
+0x41e2 mem_afh_timer
+0x41e6 mem_afh_classify_channel_map
+0x41f0 mem_chip_functions
+0x41f2 mem_lpm_wake_lock
+0x41f4 mem_lpm_interval
+0x41f6 mem_lpm_overhead
+0x41f7 mem_lpm_hibernate_switch
+0x41f8 mem_esco_addr
+0x41f9 mem_sniff_unint_lost
+0x41fa mem_ptt
+0x41fb mem_sleep_counter//should be 0x41fc in REVC
+0x41ff mem_sleep_counter_all
+0x4203 mem_sleep_clkn
+0x4209 mem_sniff_rcv
+0x420c mem_sniff_lost
+0x420f mem_clks_per_lpo
+0x4212 mem_lpm_mult
+0x4213 mem_lpm_mult_timeout
+0x4214 mem_lpm_mult_cnt
+0x4215 mem_lpm_config
+0x4218 mem_lpm_xtalcnt
+0x4219 mem_lpm_buckcnt
+0x421a mem_lpm_ldocnt
+0x421b mem_lpm_isogate
+0x421c mem_lpm_isogate_final
+0x421d mem_saved_gpio// should be 0x421e in REVC
+0x422d mem_saved_gsel
+0x4230 mem_saved_mark
+0x4238 mem_saved_spidctrl
+0x4239 mem_patch_ptr
+0x423b mem_patch_len
+0x423d mem_timers
+0x425d mem_link_key_exists
+0x425e mem_link_key_eeprom_head
+0x4261 mem_link_key
+0x4271 mem_hci_cmd
+0x4272 mem_hci_conn_handle
+0x4273 mem_hci_plap
+0x4276 mem_hci_puap
+0x4277 mem_hci_pnap
+0x4279 mem_uartd_rxitems_got_data
+0x427a mem_uartd_rxitems_threshold
+0x427b mem_uartd_rx_timeout
+0x427d mem_tx_lch
+0x427e mem_tx_len
+0x4280 mem_tx_power
+0x4281 mem_context_number
+0x4282 mem_rf_init_data
+0x4283 mem_app_handshake_flag
+0x4284 mem_sniff_param_interval
+0x4286 mem_sniff_param_attempt
+0x4288 mem_sniff_param_timeout
+0x428a mem_cb_check_wakelock
+0x428c mem_cb_before_hibernate
+0x428e mem_cb_before_lpm
+0x4290 mem_cb_le_process
+0x4292 mem_cb_bt_process
+0x4294 mem_cb_idle_process
+0x4296 mem_cb_bb_event_process
+0x4298 mem_cb_discovry_timeout
+0x429a mem_cb_att_write
+0x429c mem_cb_update_notify_value
+0x429e mem_cb_update_notify_continue
+0x42a0 mem_cb_event_timer
+0x42a2 mem_cb_le_set_mult
+0x42a4 mem_cb_bt_set_mult
+0x42a6 mem_soft_version_num
+0x42a8 mem_eeprom_base
+0x42aa mem_unsniff2sniff_timer_count
+0x42ab mem_wake_up_delay_timer
+0x42ac mem_app_connection_options
+0x42ad mem_app_disconn_reason
+0x42af mem_app_disconn_reason_flag
+0x42b1 mem_lpm_delay_after_sniff
+0x42b5 mem_xrecord_mode
+0x42b6 mem_eeprom_block_size
+0x42b8 mem_wakup_from_power_flag
+0x42b9 mem_spi_init_clk
+0x42ba mem_spi_init_delay_time
+0x42bb mem_spi_ncs_gpio
+0x42bc mem_nv_data_ptr
+0x42be mem_nv_data_number
+0x42bf mem_0_5_adc_io_data
+0x42c1 mem_1v_adc_hvin_data
+0x42c3 mem_2v_adc_vinlpm_data
+0x42c5 mem_1v_adc_io_data
+0x42c7 mem_5v_adc_hvin_data
+0x42c9 mem_3v_adc_vinlpm_data
+0x42cb mem_otp_adc_flag
+0x42cd mem_reference_voltage
+0x42cf mem_adc_config_flag
+0x42d0 mem_adc_channel
+0x42d1 mem_adc_current_value
+0x42d3 mem_baud
+0x42d5 mem_hci_lt_rx_state
+0x42d6 mem_l2cap_xmem_start
+0x42d6 mem_l2cap_tx_multi_offset//0 means single packet
+0x42d8 mem_sdp_remote_cid
+0x42da mem_rfcomm_remote_cid
+0x42dc mem_hid_ctrl_remote_cid
+0x42de mem_hid_int_remote_cid
+0x42e0 mem_sdp_state
+0x42e1 mem_rfcomm_state
+0x42e2 mem_hid_control_state
+0x42e3 mem_hid_interrupt_state
+0x42e4 mem_spp_state
+0x42e5 mem_ML2CAP_comm_id
+0x42e6 mem_used_map
+0x42e7 mem_tx_fifo0
+0x42e7 mem_tx_fifo0_map
+0x42e8 mem_tx_fifo0_ptr
+0x42ea mem_tx_fifo1
+0x42ea mem_tx_fifo1_map
+0x42eb mem_tx_fifo1_ptr
+0x42ed mem_tx_fifo2
+0x42ed mem_tx_fifo2_map
+0x42ee mem_tx_fifo2_ptr
+0x42f0 mem_tx_fifo3
+0x42f0 mem_tx_fifo3_map
+0x42f1 mem_tx_fifo3_ptr
+0x42f3 mem_tx_fifo_end
+0x42f3 mem_l2cap_lpm_txbuf
+0x43f3 mem_l2cap_flow_ctrl_flag
+0x43f4 mem_l2cap_pending_item
+0x43f5 mem_l2cap_xmem_end
+0x43f5 mem_le_dsniff
+0x43f7 mem_le_conn_interval
+0x43f9 mem_le_scan_enable
+0x43fa mem_le_scan_interval
+0x43fc mem_le_scan_window
+0x43fe mem_le_adv_led
+0x43ff mem_le_adv_enable
+0x4400 mem_le_adv_data_len
+0x4401 mem_le_adv_data
+0x4420 mem_le_scan_data_len
+0x4421 mem_le_scan_data
+0x4440 mem_le_name_len
+0x4441 mem_le_name
+0x4455 mem_le_led_on_time
+0x4456 mem_le_new_map
+0x445b mem_le_new_param
+0x445b mem_le_new_transmitwindowsize
+0x445c mem_le_new_transmitwindowoffset
+0x445e mem_le_new_conninterval
+0x4460 mem_le_new_connslavelatency
+0x4462 mem_le_new_connsupervisiontimeout
+0x4464 mem_le_temp
+0x4465 mem_le_txheader
+0x4466 mem_le_txlen
+0x4467 mem_le_txpayload
+0x4469 mem_le_txcid
+0x446b mem_le_l2cap
+0x446c mem_le_l2cap_response
+0x446d mem_le_txbdy
+0x448c mem_le_pcnt_tx
+0x4491 mem_le_pcnt_rx
+0x4496 mem_le_last_mic
+0x449a mem_le_ivm
+0x449e mem_le_ivs
+0x44a2 mem_le_ltk
+0x44b2 mem_ltk_exists
+0x44b3 mem_le_rconfirm
+0x44c3 mem_le_srand
+0x44d3 mem_le_iat
+0x44d4 mem_le_rat
+0x44d5 mem_le_preq
+0x44d6 mem_le_preq_iocap
+0x44d7 mem_le_preq_oob
+0x44d8 mem_le_preq_auth
+0x44d9 mem_le_preq_max_keysize
+0x44da mem_le_preq_init_key_distribution
+0x44db mem_le_preq_resp_key_distribution
+0x44dc mem_le_pres
+0x44dd mem_le_pres_iocap
+0x44de mem_le_pres_oob
+0x44df mem_le_pres_auth
+0x44e0 mem_le_pres_max_keysize
+0x44e1 mem_le_pres_init_key_distribution
+0x44e2 mem_le_pres_resp_key_distribution
+0x44e3 mem_le_search_handle_start
+0x44e5 mem_le_search_handle_end
+0x44e7 mem_le_att_offset
+0x44e7 mem_le_search_att_type_length
+0x44e8 mem_le_search_att_type
+0x44f8 mem_le_notify_handle
+0x44fa mem_le_search_uuid_length
+0x44fb mem_le_search_uuid
+0x450b mem_le_handle_data_len
+0x450c mem_le_handle_data
+0x451c mem_le_adv_param
+0x451c mem_le_adv_interval_min
+0x451e mem_le_adv_interval_max
+0x4520 mem_le_adv_type
+0x4521 mem_le_adv_own_addr_type
+0x4522 mem_le_adv_direct_addr_type
+0x4523 mem_le_adv_direct_addr
+0x4529 mem_le_adv_channel_map
+0x452a mem_le_adv_filter_policy
+0x452b mem_le_conn_param
+0x452b mem_le_conn_peer_addr_type
+0x452c mem_le_conn_peer_addr
+0x4532 mem_le_conn_own_addr_type
+0x4533 mem_le_conn_interval_min
+0x4535 mem_le_conn_interval_max
+0x4537 mem_le_conn_latency
+0x4539 mem_le_conn_superto
+0x453b mem_le_scan_params
+0x453b mem_le_scan_type
+0x453c mem_le_scan_own_addr_type
+0x453d mem_le_scan_filter_policy
+0x453e mem_le_lap
+0x4541 mem_le_uap
+0x4542 mem_le_nap
+0x4544 mem_le_xtype_fifo
+0x454c mem_le_local_mtu
+0x454e mem_le_remote_mtu
+0x4550 mem_le_ll_cur_opcode
+0x4551 mem_le_skdm
+0x4559 mem_le_skds
+0x4561 mem_le_init_superto
+0x4563 mem_le_secure_connect_enable
+0x4564 mem_le_secure_connect_flag
+0x4565 mem_le_sc_calc
+0x4566 mem_le_secure_connect_state
+0x4567 mem_le_sc_confirm_gkey_flag
+0x4568 mem_le_sc_local_key_invalid
+0x4569 mem_le_continue_flag
+0x456a mem_le_pairing_state
+0x456b mem_le_enc_state
+0x456c mem_le_pairing_mode
+0x456d mem_le_tk
+0x4571 mem_le_ediv
+0x4573 mem_le_rand
+0x457b mem_le_irk
+0x458b mem_le_pairing_handle
+0x458d mem_le_interal_min
+0x458f mem_le_interal_max
+0x4591 mem_le_latency
+0x4593 mem_le_timeout
+0x4595 mem_le_switch_send_data
+0x4596 mem_le_transmit_window
+0x459a mem_le_buff_len
+0x459c mem_le_buff_len_all
+0x459e mem_le_buff_data_len_all
+0x45a0 mem_prepare_write_len
+0x45a2 mem_le_prepare_write_req_offset
+0x45a4 mem_prepare_handle
+0x45a6 mem_prepare_write_offest
+0x45a8 mem_le_flag
+0x45a9 mem_lmp_version
+0x45ac mem_lmp_subversion
+0x45ae mem_local_name_length
+0x45af mem_local_name
+0x45b2 mem_local_name2
+0x45f2 mem_local_name_end
+0x45f3 mem_unsniff2sniff_timer
+0x45f4 mem_switch_flag
+0x45f5 mem_pn_dlci
+0x45f6 mem_pn_max_frame_size
+0x45f8 memFCStemp1
+0x45f9 memFCStemp2
+0x45fa memFCStemp3
+0x45fb mem_rfcomm_initiator
+0x45fc mem_remote_spp_channel
+0x45fd mem_HIUfcs_SPP
+0x45fe mem_HIUfcs_SPP_WCredits
+0x45ff mem_rfcomm_send_more_pkt
+0x4600 mem_remote_credits
+0x4601 mem_credit_given
+0x4602 mem_ms_channel
+0x4603 mem_credit_flag
+0x4604 mem_rfcomm_max_frame_size
+0x4606 mem_rfcomm_credit_init_data
+0x4607 mem_cb_receive_spp_data
+0x4609 mem_nl_rx_data_src
+0x460b mem_nl_rx_len_all
+0x460d mem_ui_uuid_table
+0x460f mem_all_uuid_16bits
+0x4625 mem_all_uuid_128bits
+0x4637 mem_ui_le_uuid_table
+0x4639 mem_sp_local_key_invalid
+0x463a mem_le_private_key_256
+0x465a mem_le_pubkey_local_x_256
+0x467a mem_le_pubkey_local_y_256
+0x469a mem_sp_private_key
+0x46b2 mem_sp_pubkey_local
+0x46b2 mem_sp_pubkey_local_x
+0x46ca mem_sp_pubkey_local_x_end
+0x46ca mem_sp_pubkey_local_y
+0x46e2 mem_ssp_enable
+0x46e3 mem_sp_iocap_local
+0x46e6 mem_sp_iocap_remote
+0x46e9 mem_flag_mode_ssp_pin
+0x46ea mem_ssp_mode_flag
+0x46eb mem_authentication_passkey_times
+0x46ec mem_passkey_1bit
+0x46ed mem_flag_pairing_state
+0x46ee mem_ipc_lock_bt
+0x46ef mem_ipc_lock_c51
+0x46f0 mem_ipc_fifo_bt2c51
+0x46f8 mem_ipc_fifo_c512bt
+0x4700 mem_led_switch
+0x4701 mem_ui_button_timer
+0x4702 mem_ui_button_last_state
+0x4703 mem_ui_timer_last_btclk
+0x4707 mem_discovery_timeout_timer_count
+0x4709 mem_hid_handshake_timer_count
+0x470a memui_reconnect_mode
+0x470b mem_ui_state_map
+0x470d mem_ui_profile_supported
+0x470e mem_led_gpio
+0x470f mem_led_dark_time
+0x4711 mem_led_light_time
+0x4713 mem_led_blink_count
+0x4714 mem_ui_button_timeout
+0x4715 mem_ui_button_gpio
+0x4716 mem_discovery_timeout
+0x4718 mem_pin_length
+0x4719 mem_pin
+0x4729 mem_24g_tx_btclk
+0x472d mem_24g_interval
+0x472e mem_24g_txfail_cnt
+0x472f mem_24g_attempt_cnt
+0x4730 mem_24g_attempt_flag
+0x4731 mem_24g_rxfail_cnt
+0x4734 mem_24g_retry
+0x4735 mem_24g_pid
+0x4736 mem_24g_datalen
+0x4737 mem_24g_crc
+0x4739 mem_24g_rxbuf
+0x4779 mem_24g_addr
+0x477d mem_24g_len
+0x477f mem_24g_txpayload
+0x4789 mem_24g_txdata
+0x4793 mem_24g_ch
+0x4794 mem_24g_scremble
+0x47a4 mem_24g_current_ch_number
+0x47a5 mem_24g_ch_map1
+0x47a9 mem_24g_ch_map2
+0x47ad mem_24g_ch_map3
+0x47b1 mem_24g_ch_map4
+0x47b5 mem_24g_interval_min
+0x47b6 mem_24g_interval_max
+0x47b7 mem_24g_ensure
+0x47b8 mem_24g_enter_hibernate
+0x47c0 mem_24g_enter_lpm_timer
+0x47c1 mem_24g_pairing_sm
+0x47c2 mem_24g_addr_copy
+0x47c6 mem_24g_sifs
+0x47c7 mem_24g_rxcnt
+0x47c8 mem_24g_addr_private_dongle
+0x47cc mem_24g_map_buff0_dongle
+0x47cd mem_24g_channel_cnt_dongle
+0x47ce mem_24g_pairing_sm_dongle
+0x47cf mem_24g_tx_btclk_dongle
+0x47d3 mem_24g_interval_dongle
+0x47d4 mem_24g_ch_update_dongle
+0x47d5 mem_24g_rx_sync_dongle
+0x47d6 mem_24g_ch_cnt_dongle
+0x47d7 mem_24g_rxbuf_temp_dongle
+0x47dd mem_24g_rxbuf_dongle
+0x47e3 mem_24g_rxfail_cnt_dongle
+0x47e6 mem_24g_spi_enable_flag
+0x4729 mem_acl_credits
+0x472b mem_allow_switch
+0x472c mem_hci_acl_queue_start/*param_acl_pktcnt+2 byte*/
+0x4730 mem_hci_wake_clk
+0x4729 mem_kb_state
+0x472b mem_kb_report_data
+0x4731 mem_kb_keys
+0x4732 mem_kb_rcv_led_data
+0x4733 mem_kb_fast_wake_last
+0x4737 mem_led_cap_gpio
+0x4738 mem_led_num_gpio
+0x4739 mem_led_scl_gpio
+0x473a mem_kb_current_vdd_value_10times
+0x473c mem_kb_read_adc_cnt_100ms
+0x473d mem_kb_current_vdd_value
+0x473f mem_led_power_blink_count
+0x4740 mem_led_power_500ms_cnt
+0x4741 mem_kb_map2
+0x49fd mem_3v1_adc_default
+0x49ff mem_kb_map
+0x4a9d mem_kb_discovery_timer
+0x4a9f mem_kb_direct_timer
+0x4aa1 mem_kb_no_data_timer
+0x4aa3 mem_kb_direct_timeout
+0x4aa5 mem_kscn_event_last
+0x4aa6 mem_kscan_event_num_last
+0x4aa7 mem_auto_enable_mult_timer
+0x4aa8 mem_auto_enable_mult_timer_init
+0x4aa9 mem_kb_temp_flag
+0x4aaa mem_map2_out_report0
+0x4ab2 mem_map2_out_report1
+0x4aba mem_table_last_repory_data0
+0x4ac2 mem_table_last_repory_data1
+0x4aca mem_kb_down
+0x4ad4 mem_kb_down_last
+0x4ade mem_table_temp
+0x4ae6 mem_pincode_vk_last
+0x4ae7 mem_kb_device_button_last
+0x4ae8 mem_kb_device_button_timer
+0x4ae9 mem_kb_current_status
+0x4aea mem_seq
+0x4aeb mem_dorx_cnt
+0x4aec mem_matched_btclk
+0x4aee mem_master_sniff_interval
+0x4aef mem_led_power_gpio
+0x4af0 mem_kb_check_vdd_count
+0x4af2 mem_0v_adc_data
+0x4af4 mem_2v2_adc_data
+0x4af6 mem_3v_adc_data
+0x4af8 mem_select_system_led_timer
+0x4af9 mem_led_cap_gpio_status
+0x4afa mem_kb_no_data_timeout
+0x4afc mem_kb_gpio_last_val
+0x4b00 mem_store_current_status
+0x4b01 mem_kb_led_on_timer
+0x4b02 mem_kb_debug_sm
+0x4b03 mem_kb_mode
+0x4b05 mem_kb_mode_revese
+0x4b07 mem_master_addr
+0x4b0d mem_led_device_blink_count
+0x4b0e mem_led_device_500ms_cnt
+0x4b0f mem_kb_caps_led_status
+0x4b10 mem_kb_reconnection_ssp
+0x4b11 mem_kb_rcv_hid_control_rsp
+0x4b12 mem_kb_down_regroup
+0x4b17 mem_kb_get_fn_flag
+0x4b18 mem_kb_kscan_cnt
+0x4b19 mem_kb_down_test
+0x4b23 mem_kb_release_fn_data
+0x4b24 mem_led_cap_delay_timer
+0x4b25 mem_led_cap_mult_timer
+0x4b26 mem_led_cap_flag
+0x4b27 mem_hid_rx_data
+0x4b28 mem_kb_fn_c
+0x4b29 mem_kb_c_fn
+0x4b2a mem_keyboard_uuid_list
+0x4db4 mem_keyboard_uuid_list_end
+0x4db4 mem_keyboard_le_att_list
+0x4fa8 mem_keyboard_le_att_list_end
+0x4729 mem_module_wake_up_gpio
+0x472a mem_module_state_gpio
+0x472b mem_module_connect_state_gpio
+0x472c mem_current_packet_length
+0x472e mem_module_state
+0x472f mem_module_task
+0x4730 mem_cmode_addr
+0x4736 mem_module_mcu_wake_pin
+0x4737 mem_module_mcu_wake_delay_us
+0x473b mem_module_spp_lpm_mult
+0x473c mem_module_le_lpm_mult
+0x473d mem_module_bluetooth_stauts_by_command
+0x473e mem_module_uart_rx_buffer
+0x4740 mem_module_uart_rx_buffer_end
+0x4742 mem_module_uart_tx_buffer
+0x4744 mem_module_uart_tx_buffer_end
+0x4746 mem_module_read_vdd_flag
+0x4747 mem_module_read_vdd_count
+0x4748 mem_module_vdd_quotient
+0x4749 mem_module_vdd_remainder
+0x474a mem_module_le_buff_len
+0x474c mem_module_le_buff_len_all
+0x474e mem_module_le_buff_data_len_all
+0x4750 mem_module_le_continue_flag
+0x4751 mem_module_le_rx_data_len
+0x4752 mem_module_le_rx_data_address
+0x4754 mem_module_le_rx_data_handle
+0x4756 mem_module_data_write_handle
+0x4758 mem_module_data_write_handle2
+0x475a mem_module_flag
+0x475b mem_le_notify_type
+0x475c mem_module_hci_notify_start
+0x475e mem_module_hci_notify_offset
+0x4760 mem_module_hci_notify_len
+0x4762 mem_module_hci_notify_att
+0x4764 mem_module_hci_notify_original_len
+0x4766 mem_module_uuid_list
+0x4892 mem_module_uuid_list_end
+0x4892 mem_module_le_att_list
+0x4a86 mem_module_le_att_list_end
+0x4a86 mem_nv_data
+0x4a86 mem_nv_data0
+0x4aa8 mem_nv_data1
+0x4aca mem_nv_data2
+0x4aec mem_nv_data3
+0x4b0e mem_nv_data4
+0x4729 mem_mouse_key
+0x472a mem_mouse_x
+0x472c mem_mouse_y
+0x472e mem_mouse_z
+0x472f mem_mouse_tz
+0x4730 mem_mouse_xy_h
+0x4731 mem_sensor_shutter_hi
+0x4732 mem_sensor_shutter_lo
+0x4733 mem_sensor_smart_flag
+0x4734 mem_sensor_squal_reg
+0x4735 mem_mouse_move_flag
+0x4736 mem_reconnect_timeout
+0x4737 mem_mouse_direct_timeout
+0x4739 mem_mouse_no_data_timeout
+0x473b mem_mouse_blank_data_timeout
+0x473d mem_mouse_discovery_timer
+0x473f mem_mouse_direct_timer
+0x4741 mem_mouse_no_data_timer
+0x4743 mem_mouse_blank_data_timer
+0x4745 mem_mouse_send_blank_timer
+0x4746 mem_mouse_dpi
+0x4747 mem_mouse_dpi_button_state
+0x4748 mem_mouse_test_cnt
+0x4749 mem_le_hibernate_timer
+0x474b mem_mouse_mode_state
+0x474c mem_mouse_le_notify_handle
+0x474d mem_lbutton_gpio
+0x474e mem_rbutton_gpio
+0x474f mem_mbutton_gpio
+0x4750 mem_sbutton1_gpio
+0x4751 mem_sbutton2_gpio
+0x4752 mem_dpi_button_gpio
+0x4753 mem_sensor_data_gpio
+0x4754 mem_whee_a_data_gpio
+0x4755 mem_whee_b_data_gpio
+0x4756 mem_sensor_reset_gpio
+0x4757 mem_device1_led_gpio
+0x4758 mem_device2_led_gpio
+0x4759 mem_device3_led_gpio
+0x475a mem_conn_cnt
+0x475b mem_whee_ta_data_gpio
+0x475c mem_whee_tb_data_gpio
+0x475d mem_wheel_tb_old_pinlevel
+0x475e mem_wheel_tb_new_pinlevel
+0x475f mem_wheel_tog
+0x4760 mem_mouse_tz_data
+0x4761 mem_mouse_tz_data_count
+0x4762 mem_mouse_tz_data_count1
+0x4763 mem_mwhee_a_data_gpio
+0x4764 mem_mwhee_b_data_gpio
+0x4765 mem_mwheel_b_old_pinlevel
+0x4766 mem_mwheel_b_new_pinlevel
+0x4767 mem_mwheel_tog
+0x4768 mem_mouse_z_data
+0x4769 mem_mouse_z_data_count
+0x476a mem_mouse_z_data_count1
+0x476b mem_reconn_mode
+0x476c mem_mouse_statue_led_timer
+0x476d mem_device_flag
+0x476e mem_mouse_uuid_list
+0x49f8 mem_mouse_uuid_list_end
+0x49f8 mem_mouse_le_att_list
+0x4bec mem_mouse_le_att_list_end
+0x4729 mem_shutter_send_data
+0x472d mem_shutter_key_temp
+0x472e mem_shutter_send_length
+0x472f mem_shutter_clkn_bt_last
+0x4733 mem_shutter_key
+0x4734 mem_shutter_flag
+0x4735 mem_shutter_cable_unplug_conut
+0x4736 mem_shutter_hid_disconn_count
+0x4737 mem_shutter_1key_send_sm
+0x4738 mem_shutter_iphonekey_gpio
+0x4739 mem_shutter_androidkey_gpio
+0x473a mem_shutter_key_number
+0x473b mem_read_eeprom_temp
+0x473c mem_read_eeprom_mac_addr
+0x473f mem_scale_tx_length
+0x4740 mem_scale_txbuff_inuse
+0x4741 mem_adv_lap_ptr
+0x4743 mem_le_sleep_flag
+0x4744 mem_rx_window_sniff_inc
+0x4746 mem_pair_state
+0x4747 mem_exchange_mtu_req
+0x4748 mem_le_sleep_timeout
+0x474a mem_le_sleep_timeout_timer_count
+0x474c mem_le_fast_adv_timeout
+0x474e mem_le_fast_adv_timeout_timer_count
+0x4750 mem_led_fast_dark_time
+0x4752 mem_led_fast_light_time
+0x4754 mem_power_on_pin
+0x4755 mem_hard_soft_switch_case
+0x4756 mem_shutter_powerup_flag
+0x4757 mem_shutter_button_timeout
+0x4758 mem_shutter_button_timer
+0x4759 mem_power_timeout
+0x475a mem_power_timer
+0x475b mem_enable_key_scan
+0x475c mem_packet_interval_set
+0x475e mem_shutter_led_num
+0x475f mem_led_map
+0x4763 mem_fast_adv_led_style
+0x4763 mem_fa_led_type
+0x4764 mem_fa_led_pin
+0x4765 mem_fa_led_on_time
+0x4767 mem_fa_led_off_time
+0x4769 mem_fa_blink_count
+0x476a mem_slow_adv_led_style
+0x476a mem_sa_led_type
+0x476b mem_sa_led_pin
+0x476c mem_sa_led_on_time
+0x476e mem_sa_led_off_time
+0x4770 mem_sa_blink_count
+0x4771 mem_power_on_led_style
+0x4771 mem_po_led_type
+0x4772 mem_po_led_pin
+0x4773 mem_po_led_on_time
+0x4775 mem_po_led_off_time
+0x4777 mem_po_blink_count
+0x4778 mem_powe_off_led_style
+0x4778 mem_pf_led_type
+0x4779 mem_pf_led_pin
+0x477a mem_pf_led_on_time
+0x477c mem_pf_led_off_time
+0x477e mem_pf_blink_count
+0x477f mem_connected_led_style
+0x477f mem_co_led_type
+0x4780 mem_co_led_pin
+0x4781 mem_co_led_on_time
+0x4783 mem_co_led_off_time
+0x4785 mem_co_blink_count
+0x4786 mem_key_led_style
+0x4786 mem_key_led_style_ind_0
+0x4786 mem_key_led_style_ind_0_data
+0x478d mem_key_led_style_ind_1
+0x478d mem_key_led_style_ind_1_data
+0x4794 mem_key_led_style_ind_2
+0x4794 mem_key_led_style_ind_2_data
+0x479b mem_key_led_style_ind_3
+0x479b mem_key_led_style_ind_key_release
+0x479b mem_key_led_style_ind_3_data
+0x47a2 mem_temp_led_style
+0x47a2 mem_temp_led_type
+0x47a3 mem_temp_led_pin
+0x47a4 mem_temp_led_on_time
+0x47a6 mem_temp_led_off_time
+0x47a8 mem_temp_blink_count
+0x47a9 mem_shutter_key_num
+0x47aa mem_key_conf0
+0x47aa mem_key_conf0_pin
+0x47ab mem_key_conf0_led
+0x47ac mem_key_conf1
+0x47ac mem_key_conf1_pin
+0x47ad mem_key_conf1_led
+0x47ae mem_key_conf2
+0x47ae mem_key_conf2_pin
+0x47af mem_key_conf2_led
+0x47b0 mem_key_conf3
+0x47b0 mem_key_conf3_pin
+0x47b1 mem_key_conf3_led
+0x47b2 mem_key_conf4
+0x47b2 mem_key_conf4_pin
+0x47b3 mem_key_conf4_led
+0x47b4 mem_key_conf5
+0x47b4 mem_key_conf5_pin
+0x47b5 mem_key_conf5_led
+0x47b6 mem_key_value_temp
+0x47b8 mem_key_value
+0x47ba mem_key_packet_count
+0x47bb mem_key_next_addr
+0x47bd mem_key_value_temp1
+0x47be mem_key_value_temp2
+0x47bf mem_key_value_temp3
+0x47c0 mem_key_value_temp4
+0x47c1 mem_key_value_temp5
+0x47c2 mem_key_value_temp6
+0x47c3 mem_key0_press
+0x47d7 mem_key0_release
+0x47eb mem_key1_press
+0x47f9 mem_key1_release
+0x4807 mem_key2_press
+0x4815 mem_key2_release
+0x4823 mem_key3_press
+0x4831 mem_key3_release
+0x483f mem_key4_press
+0x484d mem_key4_release
+0x485b mem_key5_press
+0x4869 mem_key5_release
+0x4877 mem_queue_ele_num
+0x4878 mem_queue_read
+0x487a mem_queue_write
+0x487c mem_queue_start
+0x487c mem_data_ele0
+0x4886 mem_data_ele1
+0x4890 mem_data_ele2
+0x489a mem_data_ele3
+0x48a4 mem_data_ele4
+0x48ae mem_data_ele5
+0x48b8 mem_queue_end
+0x48b8 mem_queue_temp
+0x48ba mem_shutter_key_data_flag
+0x48bb mem_shutter_key_data_flag_1
+0x48bc mem_le_find_type_value_start_handle
+0x48be mem_le_find_type_value_end_handle
+0x48c0 mem_shutter_find_type_value_flag
+0x48c1 mem_le_uuid
+0x48c2 mem_send_updata_le_param_timer
+0x48c3 mem_le_smp_key_dist
+0x48c6 mem_ltk_states
+0x48c7 mem_shutter_conn_update_timer
+0x48c8 mem_empty_count
+0x48c9 mem_shutter_notification_len
+0x48ca mem_shutter_notification_addr
+0x48cc mem_shutter_le_att_list
+0x4ac0 mem_timeout_disconnect_timer
+0x4ac1 mem_shutter_att_list_patch
+0x4b48 mem_le_app_peer_addr
+0x4b4b mem_app_peer_addr
+0x4b51 mem_le_conn_state
+0x4b52 mem_le_conn_sm
+0x4b53 mem_le_work_data_send_flag
+0x4b54 mem_le_car_write_cmd_data
+0x4b54 mem_le_car_write_cmd_head
+0x4b58 mem_le_car_write_cmd_data1
+0x4b5d mem_le_car_write_cmd_control
+0x4b5f mem_le_car_write_cmd_check_sum
+0x4b60 mem_queue_ele_num_patch
+0x4b61 mem_queue_read_patch
+0x4b63 mem_queue_write_patch
+0x4b65 mem_queue_start_patch
+0x4b65 mem_data_ele0_patch
+0x4b79 mem_data_ele1_patch
+0x4b8d mem_data_ele2_patch
+0x4ba1 mem_data_ele3_patch
+0x4bb5 mem_data_ele4_patch
+0x4bc9 mem_data_ele5_patch
+0x4bdd mem_queue_end_patch
+0x4bdd mem_queue_temp_patch
+0x4bdf mem_le_sleep_conn_timeout
+0x4be1 mem_slave_addr
+0x4be7 mem_uart_mouse_data_buff
+0x4bf2 mem_le_slave_peer_addr
+0x4bf8 mem_le_send_write_request_count
Index: Receive_Code/output/otp.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/otp.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/otp.dat	(working copy)
@@ -0,0 +1,12 @@
+00
+02
+aa
+55
+00
+00
+aa
+55
+00
+00
+82
+78
Index: Receive_Code/output/otp.rom
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/otp.rom	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/otp.rom	(working copy)
@@ -0,0 +1,16384 @@
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
+0
Index: Receive_Code/output/program.lis
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/program.lis	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/program.lis	(working copy)
@@ -0,0 +1,27061 @@
+include "bt_format "
+org 0x0000
+0000 c5128007 bmark1 mark_ext_patch ,patch_ext 
+0001 c0018015 beq patch00_3 ,p_main_loop 
+0002 c0430232 beq patch10_6 ,p_shutdown_radio 
+0003 c04501fb beq patch11_2 ,p_set_freq_tx 
+0004 c0458254 beq patch11_3 ,p_initialize_radio_cont 
+0005 c05a0035 beq patch16_4 ,p_app_init 
+0006 20203b31 branch assert 
+
+patch_ext:
+0007 c00180d8 beq patch20_3 ,p_le_master_dispatch_end 
+0008 c00c822a beq patch23_1 ,p_le_transmit 
+0009 c0158073 beq patch25_3 ,p_le_scan 
+000a c01700cf beq patch25_6 ,p_le_conn 
+000b c019001e beq patch26_2 ,p_le_prepare_smp1 
+000c c01980bc beq patch26_3 ,p_le_prepare_att 
+000d c01e0094 beq patch27_4 ,p_le_parse0 
+000e c01f009d beq patch27_6 ,p_le_parse_att 
+000f c04a81f4 beq patch32_5 ,p_gpio_set_before_lpm_common 
+0010 c06c005b beq patch3b_0 ,p_shutter_init_end 
+0011 c06c81c5 beq patch3b_1 ,p_shutter_le_bb_event_100ms_loop 
+0012 c06e013b beq patch3b_4 ,p_shutter_le_key_process 
+0013 c07b8086 beq patch3e_7 ,p_check_51cmd_once 
+0014 20203b31 branch assert 
+
+p_main_loop:
+0015 d8e0000e arg uart_rx_timer ,queue 
+0016 20407ee2 call timer_check 
+0017 245a001a ncall p_main_loop_next ,blank 
+0018 2040001b call p_uart_send_data_timer_init 
+0019 2040009d call p_le_parse_att 
+
+p_main_loop_next:
+001a 2020301b branch main_loop + 2 
+
+p_uart_send_data_timer_init:
+001b 5800000e setarg timer_uart_send_data_delay 
+001c d8e0000e arg uart_rx_timer ,queue 
+001d 20207ed4 branch timer_init 
+
+p_le_prepare_smp1:
+001e 6800c46b fetch 1 ,mem_le_l2cap 
+
+p_le_prepare_smp0:
+001f c000ccbb beq smp_pairing_request ,le_send_smp_pairing_request 
+0020 c001002d beq smp_pairing_response ,p_le_send_smp_pairing_response 
+0021 c001ccda beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+0022 c0024ce8 beq smp_pairing_random ,le_send_smp_pairing_random 
+0023 c002cced beq smp_pairing_failed ,le_send_smp_pairing_failed 
+0024 c0034cf2 beq smp_encryption_information ,le_send_smp_encryption_information 
+0025 c003cd10 beq smp_master_identification ,le_send_smp_master_identification 
+0026 c0044d27 beq smp_identity_information ,le_send_smp_identity_information 
+0027 c004cd2d beq smp_identity_address_information ,le_send_smp_identity_address_information 
+0028 c0054d32 beq smp_signing_information ,le_send_smp_signing_information 
+0029 c005cd35 beq smp_security_request ,le_send_smp_security_request 
+002a c0064d39 beq smp_pairing_public_key ,le_send_smp_pairing_public_key 
+002b c006cd64 beq smp_pairing_dhkey_check ,le_send_smp_pairing_dhkey_check 
+002c 20203b31 branch assert 
+
+p_le_send_smp_pairing_response:
+002d 59000302 setarg param_smp_paring_response 
+002e 600244dc store 4 ,mem_le_pres 
+002f 58010010 setarg param_smp_key_dist2 
+0030 e0a18000 istore 3 ,contw 
+0031 680344dd fetch 6 ,mem_le_pres + 1 
+0032 6003446c store 6 ,mem_le_l2cap_response 
+0033 1800040b force 11 ,temp 
+0034 20204f89 branch le_send_packet 
+
+p_app_init:
+0035 6800c132 fetch 1 ,mem_device_option 
+0036 203a3d4b branch app_init ,blank 
+0037 c001c00c beq dvc_op_kb ,kb_init 
+0038 c004803d beq dvc_op_shutter ,p_shutter_init 
+0039 c00559dd beq dvc_op_module ,module_init 
+003a c2835dca bbit1 dvc_op_mouse ,mouse_init 
+003b c283c00c bbit1 dvc_op_keyboard ,kb_init 
+003c 20600000 rtn 
+
+p_shutter_init:
+003d 20758000 rtn wake 
+003e 204074fd call init_shutter_le_att_list 
+003f df200087 arg 135 ,loopcnt 
+0040 d8a049b2 arg mem_shutter_le_att_list + 230 ,contw 
+0041 d8c04ac1 arg mem_shutter_att_list_patch ,contr 
+0042 20407ecd call memcpy 
+0043 204075c9 call shutter_init_param 
+0044 70808100 hjam 0x00 ,core_gpio_sel1 
+0045 204073a5 call shutter_key_init 
+0046 5800737c setarg shutter_le_before_hibernate 
+0047 6001428c store 2 ,mem_cb_before_hibernate 
+0048 5800748c setarg shutter_le_process_lpm_before 
+0049 6001428e store 2 ,mem_cb_before_lpm 
+004a 58007365 setarg shutter_le_discovery_timeout_sleep 
+004b 60014298 store 2 ,mem_cb_discovry_timeout 
+004c 5800737a setarg scale_process_idle 
+004d 60014294 store 2 ,mem_cb_idle_process 
+004e 58007371 setarg scale_process 
+004f 60014290 store 2 ,mem_cb_le_process 
+0050 580000c6 setarg p_scale_process_bb_event 
+0051 60014296 store 2 ,mem_cb_bb_event_process 
+0052 204001d0 call p_shutter_uart_init 
+0053 580072ef setarg shutter_le_scale_lpm_lock 
+0054 6001428a store 2 ,mem_cb_check_wakelock 
+0055 580074f4 setarg shutter_le_receive_data 
+0056 6001429a store 2 ,mem_cb_att_write 
+0057 2040010b call p_shutter_le_queue_init 
+0058 70421200 jam 0 ,mem_lpm_mult 
+0059 7048c700 jam 0 ,mem_shutter_conn_update_timer 
+005a 202072ad branch shutter_init0 + 5 
+
+p_shutter_init_end:
+005b 6800c755 fetch 1 ,mem_hard_soft_switch_case 
+005c c000005e beq hard_switch ,p_shutter_le_hard_switch_power_on_signal 
+005d 202072b1 branch shutter_init0 + 9 
+
+p_shutter_le_hard_switch_power_on_signal:
+005e 70475601 jam shutter_power_on ,mem_shutter_powerup_flag 
+005f 70475b01 jam 1 ,mem_enable_key_scan 
+0060 20407382 call shutter_ui_led_init 
+0061 58004771 setarg mem_power_on_led_style 
+0062 2040738e call shutter_ui_led_send 
+
+p_in_poweron_hard_switch_led:
+0063 20407d44 call ui_led_blink_polling 
+0064 6800c713 fetch 1 ,mem_led_blink_count 
+0065 243a0063 nbranch p_in_poweron_hard_switch_led ,blank 
+
+p_shutter_le_soft_switch_power_on_signal:
+0066 7043f901 jam on ,mem_le_scan_enable 
+0067 58000000 setarg 0 
+0068 60024729 store 4 ,mem_shutter_send_data 
+0069 20407382 call shutter_ui_led_init 
+006a 68014748 fetch 2 ,mem_le_sleep_timeout 
+006b 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+006c 2020006d branch p_shutter_le_fast_scan 
+
+p_shutter_le_fast_scan:
+006d 68014748 fetch 2 ,mem_le_sleep_timeout 
+006e 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+006f 7048bb00 jam 0 ,mem_shutter_key_data_flag_1 
+0070 7043f901 jam on ,mem_le_scan_enable 
+0071 58004763 setarg mem_fast_adv_led_style 
+0072 2020738e branch shutter_ui_led_send 
+
+p_le_scan:
+0073 68030304 fetch 6 ,mem_le_rxbuf + 2 
+0074 60030372 store 6 ,mem_le_plap 
+0075 68030372 fetch 6 ,mem_le_plap 
+0076 680b452c fetcht 6 ,mem_le_conn_peer_addr 
+0077 98467c00 isub temp ,null 
+0078 2022cbb4 branch le_create_conn ,zero 
+0079 2020007a branch p_le_addr_compare 
+
+p_le_addr_compare:
+007a 68030372 fetch 6 ,mem_le_plap 
+007b 680b4bf2 fetcht 6 ,mem_le_slave_peer_addr 
+007c 98467c00 isub temp ,null 
+007d 24628000 nrtn zero 
+007e 68030372 fetch 6 ,mem_le_plap 
+007f 60034b4b store 6 ,mem_app_peer_addr 
+0080 7043f71c jam 28 ,mem_le_conn_interval 
+0081 58000100 setarg 0x100 
+0082 60014539 store 2 ,mem_le_conn_superto 
+0083 7043f900 jam off ,mem_le_scan_enable 
+0084 704b5101 jam 1 ,mem_le_conn_state 
+0085 20203e69 branch app_ble_start_conn 
+
+p_check_51cmd_once:
+0086 20407d80 call ui_ipc_get_lock 
+0087 da2046f8 arg mem_ipc_fifo_c512bt ,rega 
+0088 20407f95 call fifo_out 
+0089 1fe20400 copy pdata ,temp 
+008a 20407d84 call ui_ipc_put_lock 
+008b 18427e00 copy temp ,pdata 
+008c 207a0000 rtn blank 
+008d c00b008f beq bt_cmd_le_start_conn ,p_check_51cmd_le_start_con 
+008e 20207db3 branch check_51cmd_once + 9 
+
+p_check_51cmd_le_start_con:
+008f 7043f901 jam on ,mem_le_scan_enable 
+0090 7042711b jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0091 68034b4b fetch 6 ,mem_app_peer_addr 
+0092 6003452c store 6 ,mem_le_conn_peer_addr 
+0093 20600000 rtn 
+
+p_le_parse0:
+0094 1a627e00 copy regc ,pdata 
+0095 c0010097 beq ll_terminate_ind ,p_le_parse_terminate_ind 
+0096 20204fb9 branch le_parse0 + 6 
+
+p_le_parse_terminate_ind:
+0097 6800c132 fetch 1 ,mem_device_option 
+0098 c084809a bne dvc_op_shutter ,p_le_parse_terminate_ind_common 
+0099 7048bb01 jam 1 ,mem_shutter_key_data_flag_1 
+
+p_le_parse_terminate_ind_common:
+009a 58000003 setarg 3 
+009b 60010390 store 2 ,mem_le_superto 
+009c 20600000 rtn 
+
+p_le_parse_att:
+009d e8c18000 ifetch 3 ,contr 
+009e 6001839a store 3 ,mem_le_att_opcode 
+009f c00980a3 beq attop_write_response ,p_le_parse_att_write_response 
+00a0 c00d80a2 beq attop_handle_value_notification ,p_le_parse_att_handle_value_notify 
+00a1 20600000 rtn 
+
+p_le_parse_att_handle_value_notify:
+00a2 202001e9 branch p_shutter_uart_tx_prepare 
+
+p_le_parse_att_write_response:
+00a3 6800cbf8 fetch 1 ,mem_le_send_write_request_count 
+00a4 207a0000 rtn blank 
+00a5 1fe0ffff increase -1 ,pdata 
+00a6 6000cbf8 store 1 ,mem_le_send_write_request_count 
+00a7 c00080aa beq 1 ,p_le_att_send_write_request1 
+00a8 c00000b3 beq 0 ,p_le_att_send_write_request0 
+00a9 20600000 rtn 
+
+p_le_att_send_write_request1:
+00aa 58000027 setarg 0x27 
+00ab 600144f8 store 2 ,mem_le_notify_handle 
+00ac 70450b02 jam 2 ,mem_le_handle_data_len 
+00ad 58000001 setarg 0x0001 
+00ae 6001450c store 2 ,mem_le_handle_data 
+00af 704b5200 jam 0 ,mem_le_conn_sm 
+00b0 704b5301 jam 1 ,mem_le_work_data_send_flag 
+00b1 7009bd12 jam attop_write_request ,mem_fifo_temp 
+00b2 20204bd6 branch le_xtype_fifo_in 
+
+p_le_att_send_write_request0:
+00b3 58000060 setarg 0x60 
+00b4 600144f8 store 2 ,mem_le_notify_handle 
+00b5 70450b02 jam 2 ,mem_le_handle_data_len 
+00b6 58000001 setarg 0x0001 
+00b7 6001450c store 2 ,mem_le_handle_data 
+00b8 704b5200 jam 0 ,mem_le_conn_sm 
+00b9 704b5301 jam 1 ,mem_le_work_data_send_flag 
+00ba 7009bd12 jam attop_write_request ,mem_fifo_temp 
+00bb 20204bd6 branch le_xtype_fifo_in 
+
+p_le_prepare_att:
+00bc 6800c46b fetch 1 ,mem_le_l2cap 
+00bd c00900bf beq attop_write_request ,p_le_send_att_write_request 
+00be 20204c2b branch le_prepare_att + 5 
+
+p_le_send_att_write_request:
+
+p_le_send_att_write_request_end:
+00bf 680144f8 fetch 2 ,mem_le_notify_handle 
+00c0 6001446c store 2 ,mem_le_l2cap_response 
+00c1 6800c50b fetch 1 ,mem_le_handle_data_len 
+00c2 1fe27200 copy pdata ,loopcnt 
+00c3 d8c0450c arg mem_le_handle_data ,contr 
+00c4 20407ecd call memcpy 
+00c5 20204f81 branch le_send_autolen 
+
+p_scale_process_bb_event:
+00c6 1a627e00 copy regc ,pdata 
+00c7 c016f475 beq bt_evt_button_up ,shutter_bb_event_button_up 
+00c8 c008747a beq bt_evt_button_long_pressed ,shutter_evt_button_long_pressed 
+00c9 c00a7334 beq bt_evt_le_connected ,scale_process_le_conn 
+00ca c00a80f6 beq bt_evt_le_disconnected ,p_scale_process_le_discon 
+00cb 1fe1040f and pdata ,0x0f ,temp 
+00cc 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+00cd c02872fd beq bt_evt_timer_init ,shutter_le_bb_event_timer 
+00ce 20600000 rtn 
+
+p_le_conn:
+00cf 68014bdf fetch 2 ,mem_le_sleep_conn_timeout 
+00d0 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+00d1 5800477f setarg mem_connected_led_style 
+00d2 2040738e call shutter_ui_led_send 
+00d3 704b5101 jam 1 ,mem_le_conn_state 
+00d4 70475b01 jam 1 ,mem_enable_key_scan 
+00d5 704b5221 jam conn_sm_send_write_req ,mem_le_conn_sm 
+00d6 20404bc2 call le_create_conn + 14 
+00d7 20600000 rtn 
+
+p_le_master_dispatch_end:
+00d8 68008005 fetch 1 ,mem_le_conn_rcv 
+00d9 1fe0fe01 increase 1 ,pdata 
+00da 60008005 store 1 ,mem_le_conn_rcv 
+00db 20404b51 call le_acknowledge 
+00dc 204000df call p_le_master_sm 
+00dd 7854fc00 disable master 
+00de 20600000 rtn 
+
+p_le_master_sm:
+00df 6800cb52 fetch 1 ,mem_le_conn_sm 
+00e0 c01080e4 beq conn_sm_send_write_req ,p_le_data_send_write_req 
+00e1 c01280ee beq conn_sm_wait_write_res ,p_le_data_wait_write_res 
+00e2 c01300f5 beq conn_sm_wait_write_res1 ,p_le_data_wait_write_res1 
+00e3 20600000 rtn 
+
+p_le_data_send_write_req:
+00e4 5800001a setarg 0x1a 
+00e5 600144f8 store 2 ,mem_le_notify_handle 
+00e6 70450b02 jam 2 ,mem_le_handle_data_len 
+00e7 58000001 setarg 0x0001 
+00e8 6001450c store 2 ,mem_le_handle_data 
+00e9 704b5200 jam 0 ,mem_le_conn_sm 
+00ea 704b5301 jam 1 ,mem_le_work_data_send_flag 
+00eb 7009bd12 jam attop_write_request ,mem_fifo_temp 
+00ec 20404bd6 call le_xtype_fifo_in 
+00ed 20600000 rtn 
+
+p_le_data_wait_write_res:
+00ee 704b5226 jam conn_sm_wait_write_res1 ,mem_le_conn_sm 
+00ef 7009bd02 jam attop_exchange_mtu_request ,mem_fifo_temp 
+00f0 20404bd6 call le_xtype_fifo_in 
+00f1 6801470b fetch 2 ,mem_ui_state_map 
+00f2 79207e09 set1 ui_state_ble_connected ,pdata 
+00f3 6001470b store 2 ,mem_ui_state_map 
+00f4 20600000 rtn 
+
+p_le_data_wait_write_res1:
+00f5 20600000 rtn 
+
+p_scale_process_le_discon:
+00f6 58000000 setarg 0 
+00f7 6003452c store 6 ,mem_le_conn_peer_addr 
+00f8 704bf802 jam 2 ,mem_le_send_write_request_count 
+00f9 704b5100 jam 0 ,mem_le_conn_state 
+00fa 70421200 jam 0 ,mem_lpm_mult 
+00fb 7048c700 jam 0 ,mem_shutter_conn_update_timer 
+00fc 7044b200 jam 0 ,mem_ltk_exists 
+00fd 7048c600 jam default_states ,mem_ltk_states 
+00fe 7048c000 jam 0 ,mem_shutter_find_type_value_flag 
+00ff 20400110 call p_shutter_le_queue_clear 
+0100 68014748 fetch 2 ,mem_le_sleep_timeout 
+0101 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+0102 6800c743 fetch 1 ,mem_le_sleep_flag 
+0103 c0807369 bne 0 ,shutter_le_sleep_enter 
+0104 2040006d call p_shutter_le_fast_scan 
+0105 70474600 jam pair_unknown ,mem_pair_state 
+0106 58000000 setarg 0 
+0107 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+0108 58000000 setarg 0 
+0109 60010288 store 2 ,mem_l2cap_rxbuff2_len 
+010a 20207363 branch shutter_le_tx_buff_unuse 
+
+p_shutter_le_queue_init:
+010b 704b6000 jam 0 ,mem_queue_ele_num_patch 
+010c 58004b65 setarg mem_queue_start_patch 
+010d 60014b61 store 2 ,mem_queue_read_patch 
+010e 60014b63 store 2 ,mem_queue_write_patch 
+010f 20600000 rtn 
+
+p_shutter_le_queue_clear:
+0110 2020010b branch p_shutter_le_queue_init 
+
+p_shutter_le_queue_put:
+0111 78547c00 disable user 
+0112 6800cb60 fetch 1 ,mem_queue_ele_num_patch 
+0113 2fe1fe06 compare queue_ele_count_patch ,pdata ,0xff 
+0114 20608000 rtn true 
+0115 78347c00 enable user 
+0116 68014b63 fetch 2 ,mem_queue_write_patch 
+0117 1fe20a00 copy pdata ,contw 
+0118 18420c00 copy temp ,contr 
+0119 20407ecd call memcpy 
+011a 6800cb60 fetch 1 ,mem_queue_ele_num_patch 
+011b 1fe0fe01 increase 1 ,pdata 
+011c 6000cb60 store 1 ,mem_queue_ele_num_patch 
+011d 58004b63 setarg mem_queue_write_patch 
+011e 2020011f branch p_shutter_le_queue_increase 
+
+p_shutter_le_queue_increase:
+011f 1fe22200 copy pdata ,rega 
+0120 d8404bdd arg mem_queue_end_patch ,temp 
+0121 ea210000 ifetch 2 ,rega 
+0122 1fe0fe14 increase queue_ele_length_patch ,pdata 
+0123 98467c00 isub temp ,null 
+0124 24210126 nbranch p_shutter_le_queue_put_end ,positive 
+0125 58004b65 setarg mem_queue_start_patch 
+
+p_shutter_le_queue_put_end:
+0126 e2210000 istore 2 ,rega 
+0127 20600000 rtn 
+
+p_shutter_le_queue_get:
+0128 78547c00 disable user 
+0129 6800cb60 fetch 1 ,mem_queue_ele_num_patch 
+012a 207a0000 rtn blank 
+012b 78347c00 enable user 
+012c 6800cb60 fetch 1 ,mem_queue_ele_num_patch 
+012d 1fe0ffff increase -1 ,pdata 
+012e 6000cb60 store 1 ,mem_queue_ele_num_patch 
+012f 68014b61 fetch 2 ,mem_queue_read_patch 
+0130 60014bdd store 2 ,mem_queue_temp_patch 
+0131 58004b61 setarg mem_queue_read_patch 
+0132 2040011f call p_shutter_le_queue_increase 
+0133 68014bdd fetch 2 ,mem_queue_temp_patch 
+0134 20600000 rtn 
+
+p_shutter_le_queue_read_point:
+0135 78547c00 disable user 
+0136 6800cb60 fetch 1 ,mem_queue_ele_num_patch 
+0137 207a0000 rtn blank 
+0138 78347c00 enable user 
+0139 68014b61 fetch 2 ,mem_queue_read_patch 
+013a 20600000 rtn 
+
+p_shutter_le_key_process:
+013b 6800c7a9 fetch 1 ,mem_shutter_key_num 
+013c 207a0000 rtn blank 
+013d 204073af call shutter_shutter_scan_key 
+013e 24347d28 nbranch lpm_button_clean_wake_lock ,user 
+013f 20407d26 call lpm_button_get_wake_lock 
+0140 78547c00 disable user 
+0141 68014bdf fetch 2 ,mem_le_sleep_conn_timeout 
+0142 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+0143 6800cb51 fetch 1 ,mem_le_conn_state 
+0144 c000006d beq 0 ,p_shutter_le_fast_scan 
+0145 204074de call shutter_shutter_cancel_key_shake 
+0146 2021015f branch p_in_le_key_process_end ,positive 
+0147 680147b6 fetch 2 ,mem_key_value_temp 
+0148 600147c0 store 2 ,mem_key_value_temp4 
+0149 7047c200 jam 0 ,mem_key_value_temp6 
+014a 18000e00 force 0 ,queue 
+
+p_shutter_le_key_lp1:
+014b 680147b8 fetch 2 ,mem_key_value 
+014c 1fe30400 rshift pdata ,temp 
+014d 600947b8 storet 2 ,mem_key_value 
+014e 1fe17e01 and pdata ,0x01 ,pdata 
+014f 680947c0 fetcht 2 ,mem_key_value_temp4 
+0150 18412201 and temp ,0x01 ,rega 
+0151 18430400 rshift temp ,temp 
+0152 600947c0 storet 2 ,mem_key_value_temp4 
+0153 9a22fc00 ixor rega ,null 
+0154 24428163 ncall p_shutter_le_send_key_data ,zero 
+0155 6800c7a9 fetch 1 ,mem_shutter_key_num 
+0156 6808c7c2 fetcht 1 ,mem_key_value_temp6 
+0157 18408401 increase 1 ,temp 
+0158 6008c7c2 storet 1 ,mem_key_value_temp6 
+0159 18420e00 copy temp ,queue 
+015a 98e2fc00 ixor queue ,null 
+015b 2422814b nbranch p_shutter_le_key_lp1 ,zero 
+015c 680147b6 fetch 2 ,mem_key_value_temp 
+015d 600147b8 store 2 ,mem_key_value 
+015e 20600000 rtn 
+
+p_in_le_key_process_end:
+015f 58000000 setarg 0 
+0160 600147b6 store 2 ,mem_key_value_temp 
+0161 600147b8 store 2 ,mem_key_value 
+0162 20600000 rtn 
+
+p_shutter_le_send_key_data:
+0163 1a227e00 deposit rega 
+0164 203a0181 branch p_in_le_key_is_release ,blank 
+0165 18e27e00 copy queue ,pdata 
+0166 c0000187 beq 0 ,p_in_le_send_key0_press 
+0167 c000818e beq 1 ,p_in_le_send_key1_press 
+0168 c0010195 beq 2 ,p_in_le_send_key2_press 
+0169 c001819c beq 3 ,p_in_le_send_key3_press 
+
+p_in_le_send_lable:
+016a e8408000 ifetch 1 ,temp 
+016b 207a0000 rtn blank 
+016c 6000c7ba store 1 ,mem_key_packet_count 
+016d 18408401 increase 1 ,temp 
+016e 600947bb storet 2 ,mem_key_next_addr 
+
+p_in_le_send_lp1:
+016f 680147bb fetch 2 ,mem_key_next_addr 
+0170 efe88000 ifetcht 1 ,pdata 
+0171 18427200 copy temp ,loopcnt 
+0172 98408400 iadd temp ,temp 
+0173 600947bb storet 2 ,mem_key_next_addr 
+0174 1fe20400 copy pdata ,temp 
+0175 20400111 call p_shutter_le_queue_put 
+0176 6800c7ba fetch 1 ,mem_key_packet_count 
+0177 1fe0ffff increase -1 ,pdata 
+0178 6000c7ba store 1 ,mem_key_packet_count 
+0179 2422816f nbranch p_in_le_send_lp1 ,zero 
+017a 2020017b branch p_le_send_packet 
+
+p_le_send_packet:
+017b 20400135 call p_shutter_le_queue_read_point 
+017c 24740000 nrtn user 
+017d 78547c00 disable user 
+017e 7009bd12 jam attop_write_request ,mem_fifo_temp 
+017f 20404bd6 call le_xtype_fifo_in 
+0180 2020735f branch shutter_le_tx_buff_inuse 
+
+p_in_le_key_is_release:
+0181 18e27e00 copy queue ,pdata 
+0182 c00001a3 beq 0 ,p_in_le_send_key0_rel 
+0183 c00081aa beq 1 ,p_in_le_send_key1_rel 
+0184 c00101b1 beq 2 ,p_in_le_send_key2_rel 
+0185 c00181b8 beq 3 ,p_in_le_send_key3_rel 
+0186 2020016a branch p_in_le_send_lable 
+
+p_in_le_send_key0_press:
+0187 704b5e01 jam 0x01 ,mem_le_car_write_cmd_control + 1 
+0188 d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+0189 df200007 arg 7 ,loopcnt 
+018a 204001bf call p_calc_check_sum_start 
+018b 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+018c d8404b54 arg mem_le_car_write_cmd_data ,temp 
+018d 2020016a branch p_in_le_send_lable 
+
+p_in_le_send_key1_press:
+018e 704b5e02 jam 0x02 ,mem_le_car_write_cmd_control + 1 
+018f d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+0190 df200007 arg 7 ,loopcnt 
+0191 204001bf call p_calc_check_sum_start 
+0192 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+0193 d8404b54 arg mem_le_car_write_cmd_data ,temp 
+0194 2020016a branch p_in_le_send_lable 
+
+p_in_le_send_key2_press:
+0195 704b5d01 jam 0x01 ,mem_le_car_write_cmd_control 
+0196 d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+0197 df200007 arg 7 ,loopcnt 
+0198 204001bf call p_calc_check_sum_start 
+0199 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+019a d8404b54 arg mem_le_car_write_cmd_data ,temp 
+019b 2020016a branch p_in_le_send_lable 
+
+p_in_le_send_key3_press:
+019c 704b5d02 jam 0x02 ,mem_le_car_write_cmd_control 
+019d d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+019e df200007 arg 7 ,loopcnt 
+019f 204001bf call p_calc_check_sum_start 
+01a0 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+01a1 d8404b54 arg mem_le_car_write_cmd_data ,temp 
+01a2 2020016a branch p_in_le_send_lable 
+
+p_in_le_send_key0_rel:
+01a3 704b5e00 jam 0x00 ,mem_le_car_write_cmd_control + 1 
+01a4 d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+01a5 df200007 arg 7 ,loopcnt 
+01a6 204001bf call p_calc_check_sum_start 
+01a7 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+01a8 d8404b54 arg mem_le_car_write_cmd_data ,temp 
+01a9 2020016a branch p_in_le_send_lable 
+
+p_in_le_send_key1_rel:
+01aa 704b5e00 jam 0x00 ,mem_le_car_write_cmd_control + 1 
+01ab d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+01ac df200007 arg 7 ,loopcnt 
+01ad 204001bf call p_calc_check_sum_start 
+01ae 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+01af d8404b54 arg mem_le_car_write_cmd_data ,temp 
+01b0 2020016a branch p_in_le_send_lable 
+
+p_in_le_send_key2_rel:
+01b1 704b5d00 jam 0x00 ,mem_le_car_write_cmd_control 
+01b2 d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+01b3 df200007 arg 7 ,loopcnt 
+01b4 204001bf call p_calc_check_sum_start 
+01b5 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+01b6 d8404b54 arg mem_le_car_write_cmd_data ,temp 
+01b7 2020016a branch p_in_le_send_lable 
+
+p_in_le_send_key3_rel:
+01b8 704b5d00 jam 0x00 ,mem_le_car_write_cmd_control 
+01b9 d8c04b58 arg mem_le_car_write_cmd_data1 ,contr 
+01ba df200007 arg 7 ,loopcnt 
+01bb 204001bf call p_calc_check_sum_start 
+01bc 6000cb5f store 1 ,mem_le_car_write_cmd_check_sum 
+01bd d8404b54 arg mem_le_car_write_cmd_data ,temp 
+01be 2020016a branch p_in_le_send_lable 
+
+p_calc_check_sum_start:
+01bf da200000 arg 0 ,rega 
+
+p_calc_check_sum_loop:
+01c0 e8c08000 ifetch 1 ,contr 
+01c1 9a20a200 iadd rega ,rega 
+01c2 c20001c0 loop p_calc_check_sum_loop 
+
+p_calc_check_sum_and:
+01c3 1a217eff and rega ,0xff ,pdata 
+01c4 20600000 rtn 
+
+p_shutter_le_bb_event_100ms_loop:
+01c5 2040731f call shutter_le_shutter_fast_adv_timer 
+01c6 20407313 call shutter_app_updata_le_param_timer 
+01c7 202072fe branch shutter_le_bb_event_100ms_loop 
+
+p_shutter_ui_power_timeout_timer:
+01c8 6800c75a fetch 1 ,mem_power_timer 
+01c9 207a0000 rtn blank 
+01ca 1fe0ffff increase -1 ,pdata 
+01cb 6000c75a store 1 ,mem_power_timer 
+01cc 247a0000 nrtn blank 
+01cd 6800c756 fetch 1 ,mem_shutter_powerup_flag 
+01ce c0008066 beq shutter_power_on ,p_shutter_le_soft_switch_power_on_signal 
+01cf 2020748a branch shutter_shutter_power_off_signal 
+
+p_shutter_uart_init:
+01d0 70808104 hjam 0x4 ,core_gpio_sel1 
+01d1 68120078 hfetch 4 ,core_gpio_pu0 
+01d2 79207e07 set1 7 ,pdata 
+01d3 60120078 hstore 4 ,core_gpio_pu0 
+01d4 70804301 hjam 0x01 ,core_uart_clksel 
+01d5 58004000 setarg mem_shutter_rx_buf 
+01d6 60110054 hstore 2 ,core_uart_rsaddr 
+01d7 58004030 setarg mem_shutter_rx_buf_end 
+01d8 60110056 hstore 2 ,core_uart_readdr 
+01d9 58001f00 setarg mem_shutter_tx_buf 
+01da 6011005a hstore 2 ,core_uart_tsaddr 
+01db 58001f10 setarg mem_shutter_tx_buf_end 
+01dc 6011005c hstore 2 ,core_uart_teaddr 
+01dd 58004000 setarg mem_shutter_rx_buf 
+01de 60110058 hstore 2 ,core_uart_rrptr 
+01df 58001f00 setarg mem_shutter_tx_buf 
+01e0 6011005e hstore 2 ,core_uart_twptr 
+01e1 60110060 hstore 2 ,core_uart_trptrp 
+01e2 580001a0 setarg uart_baud_115200 
+01e3 60110052 hstore 2 ,core_uart_baud 
+01e4 68110050 hfetch 2 ,core_clkoff 
+01e5 793ffe0f set0 clock_off_uart ,pdata 
+01e6 60110050 hstore 2 ,core_clkoff 
+01e7 70806281 hjam 0x81 ,core_uart_ctrl 
+01e8 20600000 rtn 
+
+p_shutter_uart_tx_prepare:
+01e9 6803830b fetch 7 ,mem_le_rxbuf + 9 
+01ea 6003cbea store 7 ,mem_uart_mouse_data_buff + 3 
+
+p_shutter_uart_tx_prepare_next:
+01eb 704be702 jam 0x02 ,mem_uart_mouse_data_buff 
+01ec 704be829 jam 0x29 ,mem_uart_mouse_data_buff + 1 
+01ed 704be908 jam 0x08 ,mem_uart_mouse_data_buff + 2 
+01ee 6811005e hfetch 2 ,core_uart_twptr 
+01ef 1fe21400 copy pdata ,contwu 
+01f0 df20000b arg 0x0b ,loopcnt 
+01f1 d8c04be7 arg mem_uart_mouse_data_buff ,contr 
+01f2 2040633b call uart_copy_tx_bytes 
+01f3 2020631f branch uartd_send 
+
+p_gpio_set_before_lpm_common:
+01f4 68120078 hfetch 4 ,core_gpio_pu0 
+01f5 681a007c hfetcht 4 ,core_gpio_pd0 
+01f6 9841fe00 ior temp ,pdata 
+01f7 1fe47e00 invert pdata ,pdata 
+01f8 9a217e00 iand rega ,pdata 
+01f9 60120070 hstore 4 ,core_gpio_oe0 
+01fa 20600000 rtn 
+
+p_set_freq_tx:
+01fb 60088017 storet 1 ,mem_last_freq 
+01fc 1840a200 add temp ,0 ,rega 
+01fd 20403a13 call rf_write_freq 
+01fe 58000500 setarg param_pll_setup 
+01ff 20403b35 call sleep 
+
+p_txon:
+0200 70890601 hjam 0x1 ,rfen_adc 
+0201 7089003c hjam 0x3c ,rfen_rx 
+0202 708901e0 hjam 0xe0 ,rfen_tx 
+0203 70896d12 hjam 0x12 ,0x96d 
+0204 2000000a nop 10 
+0205 70890201 hjam 0x01 ,rfen_mdm 
+0206 7089023d hjam 0x3d ,rfen_mdm 
+0207 2000000a nop 10 
+0208 708903b7 hjam 0xb7 ,rfen_sn 
+0209 2000000a nop 10 
+020a 7089027f hjam 0x7f ,rfen_mdm 
+020b 6800cb51 fetch 1 ,mem_le_conn_state 
+020c c000021b beq 0 ,p_set_tx_power_5db 
+020d 6800c280 fetch 1 ,mem_tx_power 
+020e c2800213 bbit1 tx_power_0db ,p_set_tx_power_0db 
+020f c2808217 bbit1 tx_power_3db ,p_set_tx_power_3db 
+0210 c281021b bbit1 tx_power_5db ,p_set_tx_power_5db 
+0211 c281821f bbit1 tx_power_f3db ,p_set_tx_power_f3db 
+0212 c2820223 bbit1 tx_power_f5db ,p_set_tx_power_f5db 
+
+p_set_tx_power_0db:
+0213 708956f0 hjam 0xf0 ,0x956 
+0214 204039f5 call txon_common 
+0215 708955d8 hjam 0xd8 ,0x955 
+0216 20600000 rtn 
+
+p_set_tx_power_3db:
+0217 708956df hjam 0xdf ,0x956 
+0218 204039f5 call txon_common 
+0219 708955df hjam 0xdf ,0x955 
+021a 20600000 rtn 
+
+p_set_tx_power_5db:
+021b 708956ff hjam 0xff ,0x956 
+021c 204039f5 call txon_common 
+021d 708955df hjam 0xdf ,0x955 
+021e 20600000 rtn 
+
+p_set_tx_power_f3db:
+021f 708956ce hjam 0xce ,0x956 
+0220 204039f5 call txon_common 
+0221 708955d8 hjam 0xd8 ,0x955 
+0222 20600000 rtn 
+
+p_set_tx_power_f5db:
+0223 708956cb hjam 0xcb ,0x956 
+0224 204039f5 call txon_common 
+0225 708955d8 hjam 0xd8 ,0x955 
+0226 20600000 rtn 
+
+p_txon_scan:
+0227 708956c0 hjam 0xc0 ,0x956 
+0228 708955d8 hjam 0xd8 ,0x955 
+0229 20600000 rtn 
+
+p_le_transmit:
+022a 20404985 call le_prep 
+022b 20400230 call p_letx_setfreq 
+022c 20404a6d call le_transmit0 
+022d 6800c132 fetch 1 ,mem_device_option 
+022e c0055d8e beq dvc_op_module ,module_le_transmit 
+022f 20600000 rtn 
+
+p_letx_setfreq:
+0230 20368200 branch p_txon ,match 
+0231 20204994 branch letx_setfreq0 
+
+p_shutdown_radio:
+0232 20308243 branch p_shutdown_radio0 ,is_rx 
+0233 708955d4 hjam 0xd4 ,0x955 
+0234 20000004 nop 4 
+0235 708955d2 hjam 0xd2 ,0x955 
+0236 20000004 nop 4 
+0237 708955d1 hjam 0xd1 ,0x955 
+0238 20000004 nop 4 
+0239 6800cb51 fetch 1 ,mem_le_conn_state 
+023a c0000251 beq 0 ,p_shutdowm_radio_scan 
+023b 6800c280 fetch 1 ,mem_tx_power 
+023c c2800241 bbit1 tx_power_0db ,p_shutdown_radio_0db 
+023d c280824e bbit1 tx_power_3db ,p_shutdown_radio_3db 
+023e c2810241 bbit1 tx_power_5db ,p_shutdown_radio_5db 
+023f c281824e bbit1 tx_power_f3db ,p_shutdown_radio_f3db 
+0240 c282024e bbit1 tx_power_f5db ,p_shutdown_radio_f5db 
+
+p_shutdown_radio_5db:
+
+p_shutdown_radio_0db:
+0241 708955d0 hjam 0xd0 ,0x955 
+0242 708956e0 hjam 0xe0 ,0x956 
+
+p_shutdown_radio0:
+0243 18002a00 force 0 ,radio_ctrl 
+0244 7850fc00 disable is_rx 
+0245 78507c00 disable is_tx 
+0246 782f7c00 pulse packet_end 
+0247 70890200 hjam 0x0 ,rfen_mdm 
+0248 70890100 hjam 0x0 ,rfen_tx 
+0249 70890000 hjam 0x0 ,rfen_rx 
+024a 70890300 hjam 0 ,rfen_sn 
+024b 70890470 hjam 0x70 ,rfen_msc 
+024c 70890600 hjam 0x0 ,rfen_adc 
+024d 20600000 rtn 
+
+p_shutdown_radio_f5db:
+
+p_shutdown_radio_f3db:
+
+p_shutdown_radio_3db:
+024e 708955d0 hjam 0xd0 ,0x955 
+024f 708956c0 hjam 0xc0 ,0x956 
+0250 20200243 branch p_shutdown_radio0 
+
+p_shutdowm_radio_scan:
+0251 708955d0 hjam 0xd0 ,0x955 
+0252 708956c0 hjam 0xc0 ,0x956 
+0253 20600000 rtn 
+
+p_initialize_radio_cont:
+0254 6800c218 fetch 1 ,mem_lpm_xtalcnt 
+0255 243a025a nbranch p_switchdpll_nocal ,blank 
+0256 20403cd2 call lpm_cal_xtal_startup 
+0257 20007530 nop 30000 
+0258 20007530 nop 30000 
+0259 20007530 nop 30000 
+
+p_switchdpll_nocal:
+025a 20403a5f call switchto_dpllclk 
+025b 70804205 hjam clksel_dpll ,core_clksel 
+025c 20000001 nop 1 
+025d 70804204 hjam clksel_xtal ,core_clksel 
+025e 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+025f 1fe17ecf and_into 0xcf ,pdata 
+0260 6010896b hstore 1 ,rf_clkpll_frac + 2 
+0261 1fe1fe30 or_into 0x30 ,pdata 
+0262 6010896b hstore 1 ,rf_clkpll_frac + 2 
+0263 20600000 rtn 
+org 0x3000
+
+start:
+3000 20403bab call lpmstate 
+
+soft_reset:
+3001 70800608 hjam lock_otp ,core_misc_ctrl 
+3002 793f8025 set0 mark_ext_patch ,mark 
+3003 44804000 bpatch patch00_0 ,mem_patch00 
+3004 6810813b hfetch 1 ,0x813b 
+3005 6000c2b8 store 1 ,mem_wakup_from_power_flag 
+3006 204060e3 call spi_ncs_gpio_init 
+3007 20800000 clear_stack 
+3008 2455ff6b ncall wait_uarttx ,wake 
+3009 204039fc call initialize_radio 
+300a 2040621d call iicd_init_12m 
+300b 20403b3c call init_param 
+300c 204042ea call l2cap_init 
+300d 793f8025 set0 mark_ext_patch ,mark 
+300e 4480c000 bpatch patch00_1 ,mem_patch00 
+300f 20406607 call rfcomm_init 
+3010 2040530c call init_lmp 
+3011 20407cef call ui_init 
+3012 20403d4b call app_init 
+3013 2455e571 ncall load_chip_option ,wake 
+3014 793f8025 set0 mark_ext_patch ,mark 
+3015 44814000 bpatch patch00_2 ,mem_patch00 
+3016 2055bd55 call app_lpm_init ,wake 
+3017 204075e0 call publickey_init 
+3018 2055bc29 call lpm_recover_clk ,wake 
+
+main_loop:
+3019 793f8025 set0 mark_ext_patch ,mark 
+301a 4481c000 bpatch patch00_3 ,mem_patch00 
+301b 204076f7 call sp_calc_sequence 
+301c 20407acf call sp_calc_sequence_256 
+301d 204075e3 call publickey_calc 
+301e 20404911 call le_dispatch 
+301f 793f8025 set0 mark_ext_patch ,mark 
+3020 44824000 bpatch patch00_4 ,mem_patch00 
+3021 20403043 call idle_dispatch 
+3022 20403d60 call app_process_idle 
+3023 2040309e call inquiry_dispatch 
+3024 2040333e call inquiry_scan_dispatch 
+3025 204033b3 call page_scan_dispatch 
+3026 20403029 call connection_dispatch 
+3027 20403c53 call lpm_dispatch 
+3028 20203019 branch main_loop 
+
+connection_dispatch:
+3029 2040302e call connection_incontext 
+302a c6848000 rtnmark0 mark_context 
+302b 793f8009 set0 mark_context ,mark 
+302c 20403260 call context_save 
+302d 2020497d branch le_disable 
+
+connection_incontext:
+302e 793f8025 set0 mark_ext_patch ,mark 
+302f 4482c000 bpatch patch00_5 ,mem_patch00 
+3030 2040329f call context_search_insniff 
+3031 2422b038 nbranch connection_nosniff ,zero 
+3032 20403246 call context_load 
+3033 1a208c01 add rega ,coffset_mode ,contr 
+3034 e8c08000 ifetch 1 ,contr 
+3035 c2804915 bbit1 mode_le ,le_conn_dispatch 
+3036 c280b188 bbit1 mode_master ,master_dispatch 
+3037 2020341f branch slave_dispatch 
+
+connection_nosniff:
+3038 793f8025 set0 mark_ext_patch ,mark 
+3039 44834000 bpatch patch00_6 ,mem_patch00 
+303a 20403269 call context_get_next 
+303b 1f227c00 copy loopcnt ,null 
+303c 20628000 rtn zero 
+303d 20403246 call context_load 
+303e 68008030 fetch 1 ,mem_state 
+303f c281b0e8 bbit1 state_inpage ,master_page 
+3040 68008031 fetch 1 ,mem_mode 
+3041 c280b188 bbit1 mode_master ,master_dispatch 
+3042 2020341f branch slave_dispatch 
+
+idle_dispatch:
+3043 6800c271 fetch 1 ,mem_hci_cmd 
+3044 207a0000 rtn blank 
+3045 c000b053 beq hci_cmd_inquiry ,idle_inquiry 
+3046 c0013058 beq hci_cmd_inquiry_cancel ,idle_inquiry_cancel 
+3047 c001b05b beq hci_cmd_remote_name_req ,idle_remote_name_req 
+3048 c002b060 beq hci_cmd_create_conn ,idle_create_conn 
+3049 c00db050 beq hci_cmd_le_create_conn ,idle_le_create_conn 
+304a 20403297 call context_search_conn_handle 
+304b 20628000 rtn zero 
+304c 2040329a call context_search_plap 
+304d 20628000 rtn zero 
+
+idle_exit:
+304e 70427100 jam 0 ,mem_hci_cmd 
+304f 20600000 rtn 
+
+idle_le_create_conn:
+3050 7003bf1b jam hci_cmd_le_create_conn ,mem_cmd_le_create_conn 
+3051 70427100 jam 0 ,mem_hci_cmd 
+3052 20600000 rtn 
+
+idle_inquiry:
+3053 7920001c set1 mark_inquiry_on ,mark 
+3054 793f801e set0 mark_inquiry_trainb ,mark 
+3055 70008eff jam param_ninquiry ,mem_ninqy_index 
+3056 70008c1f jam 31 ,mem_nfreq_index_inq 
+3057 2020304e branch idle_exit 
+
+idle_inquiry_cancel:
+3058 793f801c set0 mark_inquiry_on ,mark 
+3059 18003600 force 0 ,stop_watch 
+305a 2020304e branch idle_exit 
+
+idle_remote_name_req:
+305b 2040329a call context_search_plap 
+305c 20628000 rtn zero 
+305d 18000401 force lmp_name_req ,temp 
+305e 70016d05 jam 5 ,mem_nameres_cnt 
+305f 20203068 branch idle_start_page 
+
+idle_create_conn:
+3060 793f8025 set0 mark_ext_patch ,mark 
+3061 4483c000 bpatch patch00_7 ,mem_patch00 
+
+idle_create_conn_device:
+3062 68034273 fetch 6 ,mem_hci_plap 
+3063 203a304e branch idle_exit ,blank 
+3064 70470a01 jam reconnect_hid ,memui_reconnect_mode 
+3065 70005503 jam conn_sm_wait_features_res ,mem_conn_sm 
+3066 20203067 branch idle_create_conn_cont 
+
+idle_create_conn_cont:
+3067 18000425 force lmp_version_req ,temp 
+
+idle_start_page:
+3068 793f8025 set0 mark_ext_patch ,mark 
+3069 44844001 bpatch patch01_0 ,mem_patch01 
+306a 680080f0 fetch 1 ,mem_page_mode 
+306b 203a306f branch idle_page_mode_r0 ,blank 
+306c 1fe9fe00 lshift3 pdata ,pdata 
+306d 1ff27e00 lshift4 pdata ,pdata 
+306e 1fe0ffff increase -1 ,pdata 
+
+idle_page_mode_r0:
+306f 6000c146 store 1 ,mem_npage 
+3070 600080ef store 1 ,mem_npage_index 
+3071 70008d1f jam 31 ,mem_nfreq_index_page 
+3072 793f800c set0 mark_page_trainb ,mark 
+3073 2040327a call context_new 
+3074 2422b091 nbranch idle_page_fail ,zero 
+3075 20403b11 call get_free_amaddr 
+3076 60008077 store 1 ,mem_amaddr 
+3077 6008807c storet 1 ,mem_lmo_opcode2 
+3078 68034273 fetch 6 ,mem_hci_plap 
+3079 60030040 store 6 ,mem_plap 
+307a 793f8025 set0 mark_ext_patch ,mark 
+307b 4484c001 bpatch patch01_1 ,mem_patch01 
+307c 20407ee2 call timer_check 
+307d 18007e00 force 0 ,pdata 
+307e 2841fe01 compare lmp_name_req ,temp ,0xff 
+307f 7d20fe05 nsetflag true ,state_init_seq ,pdata 
+3080 79207e03 set1 state_inpage ,pdata 
+3081 60008030 store 1 ,mem_state 
+3082 7009bd03 jam bt_evt_reconn_started ,mem_fifo_temp 
+3083 20407d86 call ui_ipc_send_event 
+3084 18007e00 force 0 ,pdata 
+3085 7920fe04 setflag true ,smap_name_req ,pdata 
+3086 6000804c store 1 ,mem_state_map 
+3087 58000000 setarg 0 
+3088 79207e01 set1 mode_master ,pdata 
+3089 60008031 store 1 ,mem_mode 
+308a 7834fc00 enable master 
+308b 20403260 call context_save 
+308c 7854fc00 disable master 
+308d 18000e04 force page_length_timer ,queue 
+308e 68014159 fetch 2 ,mem_page_to 
+308f 20407ed4 call timer_init 
+3090 2020304e branch idle_exit 
+
+idle_page_fail:
+3091 793f8025 set0 mark_ext_patch ,mark 
+3092 44854001 bpatch patch01_2 ,mem_patch01 
+3093 68034273 fetch 6 ,mem_hci_plap 
+3094 60030040 store 6 ,mem_plap 
+3095 2841fe01 compare lmp_name_req ,temp ,0xff 
+3096 2020b098 branch idle_name_fail ,true 
+3097 2020304e branch idle_exit 
+
+idle_name_fail:
+3098 d8a00100 arg mem_tmp_buffer ,contw 
+3099 df200008 arg 8 ,loopcnt 
+309a 20407e91 call memset0 
+309b 7009bd04 jam bt_evt_reconn_failed ,mem_fifo_temp 
+309c 20407d86 call ui_ipc_send_event 
+309d 2020304e branch idle_exit 
+
+inquiry_dispatch:
+309e c68e0000 rtnmark0 mark_inquiry_on 
+309f 18000e02 force inquiry_length_timer ,queue 
+30a0 20407ee2 call timer_check 
+30a1 7d3a001c nsetflag blank ,mark_inquiry_on ,mark 
+30a2 243a30a4 nbranch inquiry_start ,blank 
+30a3 20600000 rtn 
+
+inquiry_start:
+30a4 793f8025 set0 mark_ext_patch ,mark 
+30a5 4485c001 bpatch patch01_3 ,mem_patch01 
+30a6 6809415b fetcht 2 ,mem_inq_window 
+30a7 18000e04 force 4 ,queue 
+30a8 2040379f call sniff_check_window 
+30a9 20740000 rtn user 
+30aa 20403937 call afh_clear 
+30ab 18004800 force 0 ,freq_mode 
+
+inquiry_restart:
+30ac 20618000 rtn timeout 
+30ad 793f800b set0 mark_fhs_already_good ,mark 
+30ae 793f8000 set0 mark_fhs_eir ,mark 
+
+inquiry_rx_restart:
+30af 1c40c201 add clkn_bt ,1 ,bt_clk 
+30b0 280ffe1e isolate1 mark_inquiry_trainb ,mark 
+30b1 7920c802 setflag true ,2 ,freq_mode 
+30b2 2c200400 compare 0x00 ,bt_clk ,0x02 
+30b3 2420b0d0 nbranch inquiry_receive ,true 
+
+inquiry_transmit:
+30b4 793f8025 set0 mark_ext_patch ,mark 
+30b5 44864001 bpatch patch01_4 ,mem_patch01 
+30b6 68008012 fetch 1 ,mem_inquiry_transmit 
+30b7 1fe0fe01 increase 1 ,pdata 
+30b8 60008012 store 1 ,mem_inquiry_transmit 
+30b9 2040396e call fetch_giac 
+30ba 20403967 call tx_radio_freq 
+30bb 2040398b call fetch_diac 
+30bc 20403aee call start_transmitter 
+30bd 20403af4 call start_tx_native 
+30be 20403b05 call send_access_word 
+30bf 204036c6 call end_of_packet 
+30c0 204030c2 call inquiry_check_train 
+30c1 202030ac branch inquiry_restart 
+
+inquiry_check_train:
+30c2 793f8025 set0 mark_ext_patch ,mark 
+30c3 4486c001 bpatch patch01_5 ,mem_patch01 
+30c4 6800808c fetch 1 ,mem_nfreq_index_inq 
+30c5 1fe0ffff increase -1 ,pdata 
+30c6 6000808c store 1 ,mem_nfreq_index_inq 
+30c7 20610000 rtn positive 
+30c8 70008c1f jam 31 ,mem_nfreq_index_inq 
+30c9 6800808e fetch 1 ,mem_ninqy_index 
+30ca 1fe0ffff increase -1 ,pdata 
+30cb 6000808e store 1 ,mem_ninqy_index 
+30cc 20610000 rtn positive 
+30cd 7940001e setflip mark_inquiry_trainb ,mark 
+30ce 70008eff jam param_ninquiry ,mem_ninqy_index 
+30cf 20600000 rtn 
+
+inquiry_receive:
+30d0 793f8025 set0 mark_ext_patch ,mark 
+30d1 44874001 bpatch patch01_6 ,mem_patch01 
+30d2 2040396e call fetch_giac 
+30d3 20403960 call rx_radio_freq 
+30d4 2040398b call fetch_diac 
+30d5 20403afa call start_rx_native 
+30d6 20403a7f call start_receiver 
+30d7 20403aa3 call wait_access_clkn_rt 
+30d8 202c30db branch inquiry_sync ,sync 
+30d9 204030c2 call inquiry_check_train 
+30da 202030af branch inquiry_rx_restart 
+
+inquiry_sync:
+30db 793f8025 set0 mark_ext_patch ,mark 
+30dc 4487c001 bpatch patch01_7 ,mem_patch01 
+30dd 20403a50 call save_rssi 
+30de 20403b0d call scan_mode_whiten 
+30df 20403584 call receive_packet_whitened 
+30e0 793f8001 set0 mark_rxbuf_inuse ,mark 
+30e1 c6858000 rtnmark0 mark_fhs_already_good 
+
+inquiry_receive_rtn:
+30e2 793f8025 set0 mark_ext_patch ,mark 
+30e3 44884002 bpatch patch02_0 ,mem_patch02 
+
+inquiry_receive_eir_rtn:
+30e4 68008013 fetch 1 ,mem_inquiry_rcv 
+30e5 1fe0fe01 increase 1 ,pdata 
+30e6 60008013 store 1 ,mem_inquiry_rcv 
+30e7 20600000 rtn 
+
+master_page:
+30e8 793f8025 set0 mark_ext_patch ,mark 
+30e9 4488c002 bpatch patch02_1 ,mem_patch02 
+30ea 7834fc00 enable master 
+30eb 78387c00 enable clknt 
+30ec 68014155 fetch 2 ,mem_page_interval 
+30ed 203a30f1 branch master_page_no_interval ,blank 
+30ee 18000e0d force page_interval_timer ,queue 
+30ef 20407ee2 call timer_check 
+30f0 247a0000 nrtn blank 
+
+master_page_no_interval:
+30f1 793f8025 set0 mark_ext_patch ,mark 
+30f2 44894002 bpatch patch02_2 ,mem_patch02 
+30f3 68094157 fetcht 2 ,mem_page_window 
+30f4 18000e28 force 40 ,queue 
+30f5 2040379f call sniff_check_window 
+30f6 2034312f branch page_exit ,user 
+30f7 18000e04 force page_length_timer ,queue 
+30f8 20407ee2 call timer_check 
+30f9 243a3108 nbranch page_start ,blank 
+30fa 6800804c fetch 1 ,mem_state_map 
+30fb c28230fd bbit1 smap_name_req ,master_npage_timeout 
+30fc 20203100 branch master_page_timeout 
+
+master_npage_timeout:
+30fd d8a00100 arg mem_tmp_buffer ,contw 
+30fe df200008 arg 8 ,loopcnt 
+30ff 20407e91 call memset0 
+
+master_page_timeout:
+3100 793f8025 set0 mark_ext_patch ,mark 
+3101 4489c002 bpatch patch02_3 ,mem_patch02 
+3102 70003000 jam 0 ,mem_state 
+3103 2040530d call init_lmp_work 
+3104 70470a00 jam 0 ,memui_reconnect_mode 
+3105 7009bd13 jam bt_evt_reconn_page_timeout ,mem_fifo_temp 
+3106 20407d86 call ui_ipc_send_event 
+3107 2020312f branch page_exit 
+
+page_start:
+3108 793f8025 set0 mark_ext_patch ,mark 
+3109 448a4002 bpatch patch02_4 ,mem_patch02 
+310a 18001600 force 0 ,timeup 
+310b 34730200 until clkn_rt ,meet 
+310c 680080f1 fetch 1 ,mem_page_clk 
+310d 1fe0ffff increase -1 ,pdata 
+310e 9c42fe00 ixor clkn_bt ,pdata 
+310f 2fe00600 compare 0 ,pdata ,3 
+3110 2420b108 nbranch page_start ,true 
+3111 18827e00 deposit am_addr 
+3112 60008180 store 1 ,mem_fhs_am_addr 
+3113 18004c00 force 0 ,n_tx_slot 
+3114 18004800 force 0 ,freq_mode 
+
+page_restart:
+3115 793f8025 set0 mark_ext_patch ,mark 
+3116 448ac002 bpatch patch02_5 ,mem_patch02 
+3117 2021b12f branch page_exit ,timeout 
+3118 20403972 call fetch_page_bt_adr 
+3119 d9600600 arg param_rf_setup ,timeup 
+311a 34730200 until clkn_rt ,meet 
+
+page_rx_restart:
+311b 793f8025 set0 mark_ext_patch ,mark 
+311c 448b4002 bpatch patch02_6 ,mem_patch02 
+311d 680200f1 fetch 4 ,mem_page_clk 
+311e 98004200 iforce bt_clk 
+311f 1fe0fe01 increase 1 ,pdata 
+3120 600200f1 store 4 ,mem_page_clk 
+3121 280ffe0c isolate1 mark_page_trainb ,mark 
+3122 7920c802 setflag true ,2 ,freq_mode 
+3123 2c200400 compare 0x00 ,bt_clk ,0x02 
+3124 2420b145 nbranch page_receive ,true 
+3125 6800800c fetch 1 ,mem_page_transmit 
+3126 1fe0fe01 increase 1 ,pdata 
+3127 6000800c store 1 ,mem_page_transmit 
+3128 20403967 call tx_radio_freq 
+3129 20403aee call start_transmitter 
+312a 20403af4 call start_tx_native 
+312b 20403b05 call send_access_word 
+312c 204036c6 call end_of_packet 
+312d 20403136 call page_check_train 
+312e 20203115 branch page_restart 
+
+page_exit:
+312f 793f8025 set0 mark_ext_patch ,mark 
+3130 448bc002 bpatch patch02_7 ,mem_patch02 
+3131 7854fc00 disable master 
+3132 68014155 fetch 2 ,mem_page_interval 
+3133 207a0000 rtn blank 
+3134 18000e0d force page_interval_timer ,queue 
+3135 20207ed4 branch timer_init 
+
+page_check_train:
+3136 793f8025 set0 mark_ext_patch ,mark 
+3137 448c4003 bpatch patch03_0 ,mem_patch03 
+3138 6800808d fetch 1 ,mem_nfreq_index_page 
+3139 1fe0ffff increase -1 ,pdata 
+313a 6000808d store 1 ,mem_nfreq_index_page 
+313b 20610000 rtn positive 
+313c 70008d1f jam 31 ,mem_nfreq_index_page 
+313d 680080ef fetch 1 ,mem_npage_index 
+313e 1fe0ffff increase -1 ,pdata 
+313f 600080ef store 1 ,mem_npage_index 
+3140 20610000 rtn positive 
+3141 7940000c setflip mark_page_trainb ,mark 
+3142 6800c146 fetch 1 ,mem_npage 
+3143 600080ef store 1 ,mem_npage_index 
+3144 20600000 rtn 
+
+page_receive:
+3145 793f8025 set0 mark_ext_patch ,mark 
+3146 448cc003 bpatch patch03_1 ,mem_patch03 
+3147 20403960 call rx_radio_freq 
+3148 20403afa call start_rx_native 
+3149 20403a7f call start_receiver 
+314a 20403aa3 call wait_access_clkn_rt 
+314b 202c314e branch page_sync ,sync 
+314c 20403136 call page_check_train 
+314d 2020311b branch page_rx_restart 
+
+page_sync:
+314e 204036c6 call end_of_packet 
+314f 6800800d fetch 1 ,mem_page_rcv 
+3150 1fe0fe01 increase 1 ,pdata 
+3151 6000800d store 1 ,mem_page_rcv 
+3152 18003600 force 0 ,stop_watch 
+3153 680200f1 fetch 4 ,mem_page_clk 
+
+page_send_fhs:
+3154 793f8025 set0 mark_ext_patch ,mark 
+3155 448d4003 bpatch patch03_2 ,mem_patch03 
+3156 20403aec call rf_setup_time_master_slot 
+3157 20403972 call fetch_page_bt_adr 
+3158 1cc0cc01 increase 1 ,n_tx_slot 
+
+page_send_fhs_continue:
+3159 1c2143fd and_into 0x1fd ,bt_clk 
+315a 1c8149fc and_into 0x1fc ,freq_mode 
+315b 20403967 call tx_radio_freq 
+315c 20403aee call start_transmitter 
+315d 20403af4 call start_tx_native 
+315e 20403b05 call send_access_word 
+315f 1c427e00 deposit clkn_bt 
+3160 60020160 store 4 ,mem_clkn_bt 
+3161 18000800 force 0 ,am_addr 
+3162 18000202 force type_fhs ,type 
+3163 20403b0d call scan_mode_whiten 
+3164 204037ee call transmit_packet_whitened 
+
+page_wait_fhs_reply:
+3165 793f8025 set0 mark_ext_patch ,mark 
+3166 448dc003 bpatch patch03_3 ,mem_patch03 
+3167 20403aea call rf_setup_time_slave_slot 
+3168 1c21c202 or_into 0x02 ,bt_clk 
+3169 1c8149fc and_into 0x1fc ,freq_mode 
+316a 20403960 call rx_radio_freq 
+316b 20403afa call start_rx_native 
+316c 20403a7f call start_receiver 
+316d 20403aa3 call wait_access_clkn_rt 
+316e 204c36c6 call end_of_packet ,sync 
+316f 202c3175 branch page_wait_fhs_reply_ok ,sync 
+3170 68008010 fetch 1 ,mem_fhs_wait_counter 
+3171 203a3115 branch page_restart ,blank 
+3172 1fe0ffff increase -1 ,pdata 
+3173 60008010 store 1 ,mem_fhs_wait_counter 
+3174 20203154 branch page_send_fhs 
+
+page_wait_fhs_reply_ok:
+3175 793f8025 set0 mark_ext_patch ,mark 
+3176 448e4003 bpatch patch03_4 ,mem_patch03 
+3177 6800800e fetch 1 ,mem_page_rcv_fhs 
+3178 1fe0fe01 increase 1 ,pdata 
+3179 6000800e store 1 ,mem_page_rcv_fhs 
+317a 2040348d call prepare_newconn 
+
+master_newconn_loop:
+317b 20403337 call master_newconn_once 
+317c 202c3180 branch newconn_poll_responded ,sync 
+317d 204034b0 call new_conn_timeout 
+317e 243a317b nbranch master_newconn_loop ,blank 
+317f 20203115 branch page_restart 
+
+newconn_poll_responded:
+3180 793f8025 set0 mark_ext_patch ,mark 
+3181 448ec003 bpatch patch03_5 ,mem_patch03 
+3182 68008030 fetch 1 ,mem_state 
+3183 793ffe03 set0 state_inpage ,pdata 
+3184 60008030 store 1 ,mem_state 
+3185 20403499 call newconn_init 
+3186 7854fc00 disable master 
+3187 20600000 rtn 
+
+master_dispatch:
+3188 793f8025 set0 mark_ext_patch ,mark 
+3189 448f4003 bpatch patch03_6 ,mem_patch03 
+318a 7834fc00 enable master 
+318b 78387c00 enable clknt 
+318c 2040321a call role_switch_master 
+318d 20740000 rtn user 
+318e 20403d42 call check_bt_disabled 
+318f 20403aec call rf_setup_time_master_slot 
+3190 1c40c201 add clkn_bt ,1 ,bt_clk 
+3191 20403979 call fetch_self_bt_adr 
+3192 18004803 force 0x03 ,freq_mode 
+3193 204068dc call scheduler_tx_l2cap_pkt 
+3194 204034e7 call prepare_tx 
+3195 20403967 call tx_radio_freq 
+3196 20403aee call start_transmitter 
+3197 20403af4 call start_tx_native 
+3198 20403b05 call send_access_word 
+3199 204037ec call transmit_packet 
+
+master_loop:
+319a 793f8025 set0 mark_ext_patch ,mark 
+319b 448fc003 bpatch patch03_7 ,mem_patch03 
+319c 2040531f call parse_lmp 
+319d 20403328 call master_conn_recv_packet 
+319e 2436b1a4 nbranch master_notmatch ,match 
+319f 20403b2c call supervision_flush 
+31a0 204037ac call parse_l2cap 
+31a1 6800800f fetch 1 ,mem_master_rcvcnt 
+31a2 1fe0fe01 increase 1 ,pdata 
+31a3 6000800f store 1 ,mem_master_rcvcnt 
+
+master_notmatch:
+31a4 793f8025 set0 mark_ext_patch ,mark 
+31a5 44904004 bpatch patch04_0 ,mem_patch04 
+31a6 204068c0 call scheduler_process 
+31a7 204031b0 call check_master_disconnect 
+31a8 24748000 nrtn master 
+31a9 20403775 call check_attempt 
+31aa 243a31ad nbranch master_attempt ,blank 
+
+master_exit:
+31ab 7854fc00 disable master 
+31ac 20600000 rtn 
+
+master_attempt:
+31ad 204034e7 call prepare_tx 
+31ae 2040331d call master_conn_send_packet 
+31af 2020319a branch master_loop 
+
+check_master_disconnect:
+31b0 2036b1b3 branch check_master_match ,match 
+31b1 20403b22 call supervision_update 
+31b2 202131c1 branch master_disconnect ,positive 
+
+check_master_match:
+31b3 204031cd call check_disconnect_timeout 
+31b4 243431c1 nbranch master_disconnect ,user 
+31b5 6800804c fetch 1 ,mem_state_map 
+31b6 c4020000 rtnbit0 smap_name_req 
+31b7 c3818000 rtnbit1 smap_name_res 
+31b8 6800804b fetch 1 ,mem_op 
+31b9 c3818000 rtnbit1 op_disconn 
+31ba 204031d6 call conn_timer_expired 
+31bb 247a0000 nrtn blank 
+31bc 6800816d fetch 1 ,mem_nameres_cnt 
+31bd 1fe0ffff increase -1 ,pdata 
+31be 6000816d store 1 ,mem_nameres_cnt 
+31bf 247a0000 nrtn blank 
+31c0 2020561d branch lmp_disconnect 
+
+master_disconnect:
+31c1 793f8025 set0 mark_ext_patch ,mark 
+31c2 4490c004 bpatch patch04_1 ,mem_patch04 
+31c3 204034b8 call quit_connection 
+31c4 7854fc00 disable master 
+31c5 6800804c fetch 1 ,mem_state_map 
+31c6 c28231c8 bbit1 smap_name_req ,master_name_disconnect 
+31c7 20600000 rtn 
+
+master_name_disconnect:
+31c8 6800804c fetch 1 ,mem_state_map 
+31c9 c3818000 rtnbit1 smap_name_res 
+
+master_name_error:
+31ca d8a00100 arg mem_tmp_buffer ,contw 
+31cb df200008 arg 8 ,loopcnt 
+31cc 20207e91 branch memset0 
+
+check_disconnect_timeout:
+31cd 793f8025 set0 mark_ext_patch ,mark 
+31ce 44914004 bpatch patch04_2 ,mem_patch04 
+31cf 78347c00 enable user 
+31d0 6800804b fetch 1 ,mem_op 
+31d1 c4018000 rtnbit0 op_disconn 
+31d2 204031d6 call conn_timer_expired 
+31d3 247a0000 nrtn blank 
+
+disable_usr:
+31d4 78547c00 disable user 
+31d5 20600000 rtn 
+
+conn_timer_expired:
+31d6 68008072 fetch 1 ,mem_conn_timer 
+31d7 1fe0ffff increase -1 ,pdata 
+31d8 60008072 store 1 ,mem_conn_timer 
+31d9 20600000 rtn 
+
+linkkey_ready:
+31da 793f8025 set0 mark_ext_patch ,mark 
+31db 4491c004 bpatch patch04_3 ,mem_patch04 
+31dc 68008030 fetch 1 ,mem_state 
+31dd c283b1e4 bbit1 state_linkkey ,linkkey_set 
+31de 680088d9 fetch 1 ,mem_pairing_auth 
+31df 203a31e4 branch linkkey_set ,blank 
+31e0 7008d900 jam defalt_pairing_auth ,mem_pairing_auth 
+31e1 7009bd18 jam bt_evt_linkkey_generate ,mem_fifo_temp 
+31e2 20407d86 call ui_ipc_send_event 
+31e3 202031e4 branch linkkey_set 
+
+linkkey_set:
+31e4 793f8025 set0 mark_ext_patch ,mark 
+31e5 44924004 bpatch patch04_4 ,mem_patch04 
+31e6 20403294 call context_traverse_linkkey 
+31e7 68008030 fetch 1 ,mem_state 
+31e8 79207e07 set1 state_linkkey ,pdata 
+31e9 60008030 store 1 ,mem_state 
+31ea 70425d01 jam 1 ,mem_link_key_exists 
+31eb 68008055 fetch 1 ,mem_conn_sm 
+31ec c08b31ed bne conn_sm_pairing ,linkkey_set_continue 
+
+linkkey_set_continue:
+31ed 20600000 rtn 
+
+generate_linkkey_continue:
+31ee 7008d901 jam pairing_auth ,mem_pairing_auth 
+
+clear_linkstate:
+31ef 68008030 fetch 1 ,mem_state 
+31f0 793ffe07 set0 state_linkkey ,pdata 
+31f1 60008030 store 1 ,mem_state 
+31f2 20600000 rtn 
+
+role_switch_check:
+31f3 793f8025 set0 mark_ext_patch ,mark 
+31f4 4492c004 bpatch patch04_5 ,mem_patch04 
+31f5 78547c00 disable user 
+31f6 68008030 fetch 1 ,mem_state 
+31f7 c4008000 rtnbit0 state_insniff 
+31f8 68010032 fetch 2 ,mem_tsniff 
+31f9 247a0000 nrtn blank 
+31fa 68020034 fetch 4 ,mem_sniff_anchor 
+31fb 203831fe branch role_switch_clkn ,clknt 
+31fc 9d067e00 isub clke_bt ,pdata 
+31fd 202031ff branch role_switch_clke 
+
+role_switch_clkn:
+31fe 9c467e00 isub clkn_bt ,pdata 
+
+role_switch_clke:
+31ff 1fe67c04 sub pdata ,4 ,null 
+3200 24610000 nrtn positive 
+3201 68008030 fetch 1 ,mem_state 
+3202 793ffe01 set0 state_insniff ,pdata 
+3203 60008030 store 1 ,mem_state 
+3204 78347c00 enable user 
+3205 20600000 rtn 
+
+role_switch_prepare:
+3206 1fe20400 copy pdata ,temp 
+3207 793f8025 set0 mark_ext_patch ,mark 
+3208 44934004 bpatch patch04_6 ,mem_patch04 
+3209 60020034 store 4 ,mem_sniff_anchor 
+
+role_switch_prepare0:
+320a 7045f401 jam switch_flag_accept ,mem_switch_flag 
+320b 68008030 fetch 1 ,mem_state 
+320c 79207e01 set1 state_insniff ,pdata 
+320d 60008030 store 1 ,mem_state 
+320e 18007e00 force 0 ,pdata 
+320f 60010032 store 2 ,mem_tsniff 
+3210 70007301 jam 1 ,mem_sniff_attempt 
+3211 70007400 jam 0x0 ,mem_sniff_timeout 
+3212 70008b00 jam 0x0 ,mem_current_sniff_timeout 
+3213 68020034 fetch 4 ,mem_sniff_anchor 
+3214 1c420400 copy clkn_bt ,temp 
+3215 98467e00 isub temp ,pdata 
+3216 1feb7e00 rshift2 pdata ,pdata 
+3217 1fe0fff8 increase -8 ,pdata 
+3218 6000808a store 1 ,mem_current_sniff_attempt 
+3219 20600000 rtn 
+
+role_switch_master:
+321a 793f8025 set0 mark_ext_patch ,mark 
+321b 4493c004 bpatch patch04_7 ,mem_patch04 
+321c 204031f3 call role_switch_check 
+321d 24740000 nrtn user 
+321e 78547c00 disable user 
+321f 70001120 jam param_newconnto ,mem_newconnto_counter 
+3220 793f800b set0 mark_fhs_already_good ,mark 
+
+roles_waitfhs_loop:
+3221 20403aec call rf_setup_time_master_slot 
+3222 2040332b call master_recv_packet 
+3223 c505b22f bmark1 mark_fhs_already_good ,roles_replyto_fhs 
+3224 204034b0 call new_conn_timeout 
+3225 243a3221 nbranch roles_waitfhs_loop ,blank 
+
+role_switch_fail_master:
+3226 793f8025 set0 mark_ext_patch ,mark 
+3227 44944005 bpatch patch05_0 ,mem_patch05 
+3228 78547c00 disable user 
+3229 1c427e00 deposit clkn_bt 
+322a 6002416a store 4 ,mem_next_btclk 
+322b 78387c00 enable clknt 
+322c 7834fc00 enable master 
+322d 7009bd2a jam bt_evt_switch_fail_master ,mem_fifo_temp 
+322e 20207d86 branch ui_ipc_send_event 
+
+roles_replyto_fhs:
+322f 793f8025 set0 mark_ext_patch ,mark 
+3230 4494c005 bpatch patch05_1 ,mem_patch05 
+3231 20403aea call rf_setup_time_slave_slot 
+3232 20403320 call master_send_packet 
+3233 78587c00 disable clknt 
+3234 7854fc00 disable master 
+3235 204038a7 call apply_switch_clke 
+3236 2040348d call prepare_newconn 
+
+roles_newconns_loop:
+3237 793f8025 set0 mark_ext_patch ,mark 
+3238 44954005 bpatch patch05_2 ,mem_patch05 
+3239 204034d9 call slave_newconn_once 
+323a 2036b23e branch roles_newconns_responded ,match 
+323b 204034b0 call new_conn_timeout 
+323c 243a3237 nbranch roles_newconns_loop ,blank 
+323d 20203226 branch role_switch_fail_master 
+
+roles_newconns_responded:
+323e 68008031 fetch 1 ,mem_mode 
+323f 793ffe01 set0 mode_master ,pdata 
+3240 60008031 store 1 ,mem_mode 
+3241 20403b2c call supervision_flush 
+3242 204038d1 call calc_clke_offset 
+3243 78347c00 enable user 
+3244 7009bd2b jam bt_evt_switch_success_master ,mem_fifo_temp 
+3245 20207d86 branch ui_ipc_send_event 
+
+context_load:
+3246 793f8025 set0 mark_ext_patch ,mark 
+3247 4495c005 bpatch patch05_3 ,mem_patch05 
+3248 79200009 set1 mark_context ,mark 
+3249 1a227e00 deposit rega 
+324a 6001001e store 2 ,mem_context_ptr 
+324b 18007250 force context_size ,loopcnt 
+324c d8a00362 arg mem_le_state ,contw 
+324d 1a208c01 add rega ,coffset_mode ,contr 
+324e e8c08000 ifetch 1 ,contr 
+324f 1a220c00 copy rega ,contr 
+3250 c2807ecd bbit1 mode_le ,memcpy 
+3251 d8a00030 arg mem_state ,contw 
+3252 20407ecd call memcpy 
+3253 78577c00 disable attempt 
+3254 68008077 fetch 1 ,mem_amaddr 
+3255 98000800 iforce am_addr 
+3256 70008a01 jam 1 ,mem_current_sniff_attempt 
+3257 2034b259 branch context_load_master ,master 
+3258 70008a01 jam 1 ,mem_current_sniff_attempt 
+
+context_load_master:
+3259 68008030 fetch 1 ,mem_state 
+325a c4008000 rtnbit0 state_insniff 
+325b 68008073 fetch 1 ,mem_sniff_attempt 
+325c 6000808a store 1 ,mem_current_sniff_attempt 
+325d 68008074 fetch 1 ,mem_sniff_timeout 
+325e 6000808b store 1 ,mem_current_sniff_timeout 
+325f 20600000 rtn 
+
+context_save:
+3260 793f8025 set0 mark_ext_patch ,mark 
+3261 44964005 bpatch patch05_4 ,mem_patch05 
+3262 6801001e fetch 2 ,mem_context_ptr 
+3263 98000a00 iforce contw 
+3264 18007250 force context_size ,loopcnt 
+3265 d8c00362 arg mem_le_state ,contr 
+3266 203b7ecd branch memcpy ,le 
+3267 d8c00030 arg mem_state ,contr 
+3268 20207ecd branch memcpy 
+
+context_get_next:
+3269 6800c281 fetch 1 ,mem_context_number 
+326a 1fe27200 copy pdata ,loopcnt 
+326b 68088015 fetcht 1 ,mem_current_context 
+
+context_get_next_loop:
+326c 18408401 increase 1 ,temp 
+326d 2841fe03 compare context_num ,temp ,0xff 
+326e 2420b270 nbranch context_get_next_cont ,true 
+326f d8400000 arg 0 ,temp 
+
+context_get_next_cont:
+3270 60088015 storet 1 ,mem_current_context 
+3271 184ffe50 mul32 temp ,context_size ,pdata 
+3272 da204040 arg mem_context ,rega 
+3273 9a20a200 iadd rega ,rega 
+3274 ea208000 ifetch 1 ,rega 
+3275 c280b278 bbit1 state_insniff ,context_get_next_sniff 
+3276 c3800000 rtnbit1 state_inconn 
+3277 c3818000 rtnbit1 state_inpage 
+
+context_get_next_sniff:
+3278 c200326c loop context_get_next_loop 
+3279 20600000 rtn 
+
+context_new:
+327a 793f8025 set0 mark_ext_patch ,mark 
+327b 4496c005 bpatch patch05_5 ,mem_patch05 
+327c da6032ad arg context_search_empty ,regc 
+327d 204032a2 call context_search 
+327e 24628000 nrtn zero 
+327f 1a227e00 deposit rega 
+3280 6001001e store 2 ,mem_context_ptr 
+3281 18007c00 force 0 ,null 
+3282 20600000 rtn 
+
+context_check_all_wack:
+3283 204037a9 call check_esco_amaddr 
+3284 2020b28b branch context_check_esco_wack ,true 
+3285 6801001e fetch 2 ,mem_context_ptr 
+3286 1fe08a17 add pdata ,coffset_arq ,contw 
+3287 68008047 fetch 1 ,mem_arq 
+3288 e0a08000 istore 1 ,contw 
+3289 da6032ed arg context_check_a_wack ,regc 
+328a 202032a2 branch context_search 
+
+context_check_esco_wack:
+328b 68008047 fetch 1 ,mem_arq 
+328c 2feffe03 isolate1 wack ,pdata 
+328d 2020b290 branch context_esco_wack ,true 
+328e 18007c01 force 1 ,null 
+328f 20600000 rtn 
+
+context_esco_wack:
+3290 18007c00 force 0 ,null 
+3291 20600000 rtn 
+
+context_check_idle:
+3292 da6032ea arg context_check_inconn ,regc 
+3293 202032a2 branch context_search 
+
+context_traverse_linkkey:
+3294 6809001e fetcht 2 ,mem_context_ptr 
+3295 da603312 arg context_traverse_clearkey ,regc 
+3296 202032a2 branch context_search 
+
+context_search_conn_handle:
+3297 6808c272 fetcht 1 ,mem_hci_conn_handle 
+
+context_search_conn_handle2:
+3298 da6032b8 arg context_search_handle ,regc 
+3299 202032a2 branch context_search 
+
+context_search_plap:
+329a 793f8025 set0 mark_ext_patch ,mark 
+329b 44974005 bpatch patch05_6 ,mem_patch05 
+329c 680b4273 fetcht 6 ,mem_hci_plap 
+
+context_search_plap2:
+329d da6032b1 arg context_search_lap ,regc 
+329e 202032a2 branch context_search 
+
+context_search_insniff:
+329f da6032be arg context_search_sniff ,regc 
+32a0 202032a2 branch context_search 
+
+context_search_sniff_window:
+32a1 da603309 arg context_search_window ,regc 
+
+context_search:
+32a2 793f8025 set0 mark_ext_patch ,mark 
+32a3 4497c005 bpatch patch05_7 ,mem_patch05 
+32a4 da204040 arg mem_context ,rega 
+32a5 6800c281 fetch 1 ,mem_context_number 
+32a6 1fe27200 copy pdata ,loopcnt 
+
+context_search_loop:
+32a7 ea208000 ifetch 1 ,rega 
+32a8 1a627a00 copy regc ,pc 
+
+context_search_next:
+32a9 1a20a250 increase context_size ,rega 
+32aa c20032a7 loop context_search_loop 
+32ab 18007c01 force 1 ,null 
+32ac 20600000 rtn 
+
+context_search_empty:
+32ad c28032a9 bbit1 state_inconn ,context_search_next 
+32ae c281b2a9 bbit1 state_inpage ,context_search_next 
+32af 18007c00 force 0 ,null 
+32b0 20600000 rtn 
+
+context_search_lap:
+32b1 c281b2b3 bbit1 state_inpage ,context_search_lap_cont 
+32b2 c30032a9 bbit0 state_inconn ,context_search_next 
+
+context_search_lap_cont:
+32b3 1a208c10 add rega ,coffset_plap ,contr 
+32b4 e8c30000 ifetch 6 ,contr 
+32b5 98467c00 isub temp ,null 
+32b6 20628000 rtn zero 
+32b7 202032a9 branch context_search_next 
+
+context_search_handle:
+32b8 c30032a9 bbit0 state_inconn ,context_search_next 
+32b9 1a208c16 add rega ,coffset_conn_handle ,contr 
+32ba e8c08000 ifetch 1 ,contr 
+32bb 98467c00 isub temp ,null 
+32bc 20628000 rtn zero 
+32bd 202032a9 branch context_search_next 
+
+context_search_sniff:
+32be c300b2a9 bbit0 state_insniff ,context_search_next 
+
+context_search_sniff_loop:
+32bf 204032f6 call context_get_anchor 
+32c0 204032da call sign_pdata_temp 
+32c1 98467e00 isub temp ,pdata 
+32c2 1fe0fe01 increase 1 ,pdata 
+32c3 202132d4 branch context_search_sniff_miss ,positive 
+32c4 18c22400 copy contr ,regb 
+32c5 600489c6 store 9 ,mem_temp 
+32c6 6800c565 fetch 1 ,mem_le_sc_calc 
+32c7 243a32cc nbranch context_search_sniff_sc ,blank 
+32c8 680489c6 fetch 9 ,mem_temp 
+32c9 1a420c00 copy regb ,contr 
+32ca 1fe0fe05 increase 5 ,pdata 
+32cb 202032cf branch context_search_meet1 
+
+context_search_sniff_sc:
+32cc 680489c6 fetch 9 ,mem_temp 
+32cd 1a420c00 copy regb ,contr 
+32ce 1fe0fe14 increase 20 ,pdata 
+
+context_search_meet1:
+32cf 242132a9 nbranch context_search_next ,positive 
+
+context_search_meet:
+32d0 18424200 copy temp ,bt_clk 
+32d1 20403302 call context_next_anchor 
+32d2 18007c00 force 0 ,null 
+32d3 20600000 rtn 
+
+context_search_sniff_miss:
+32d4 98002400 iforce regb 
+32d5 1a208c02 add rega ,coffset_tsniff ,contr 
+32d6 e8c10000 ifetch 2 ,contr 
+32d7 203a32d0 branch context_search_meet ,blank 
+32d8 20403302 call context_next_anchor 
+32d9 202032bf branch context_search_sniff_loop 
+
+sign_pdata_temp:
+32da 1ff11600 rshift16 pdata ,timeup 
+32db 196c9600 rshift8 timeup ,timeup 
+32dc 2022b2e4 branch sign_pdata_temp_p0 ,zero 
+32dd 29601e0f compare 0xf ,timeup ,0xf 
+32de 24608000 nrtn true 
+32df 18511600 rshift16 temp ,timeup 
+32e0 196c9600 rshift8 timeup ,timeup 
+32e1 24628000 nrtn zero 
+32e2 7920041c set1 28 ,temp 
+32e3 20600000 rtn 
+
+sign_pdata_temp_p0:
+32e4 18511600 rshift16 temp ,timeup 
+32e5 196c9600 rshift8 timeup ,timeup 
+32e6 29601e0f compare 0xf ,timeup ,0xf 
+32e7 24608000 nrtn true 
+32e8 79207e1c set1 28 ,pdata 
+32e9 20600000 rtn 
+
+context_check_inconn:
+32ea c30032a9 bbit0 state_inconn ,context_search_next 
+32eb 18007c00 force 0 ,null 
+32ec 20600000 rtn 
+
+context_check_a_wack:
+32ed c30032a9 bbit0 state_inconn ,context_search_next 
+32ee 1a208c01 add rega ,coffset_mode ,contr 
+32ef e8c08000 ifetch 1 ,contr 
+32f0 c28032a9 bbit1 mode_le ,context_search_next 
+32f1 1a208c17 add rega ,coffset_arq ,contr 
+32f2 e8c08000 ifetch 1 ,contr 
+32f3 c301b2a9 bbit0 wack ,context_search_next 
+32f4 18007c00 force 0 ,null 
+32f5 20600000 rtn 
+
+context_get_anchor:
+32f6 1a208c01 add rega ,coffset_mode ,contr 
+32f7 e8c88000 ifetcht 1 ,contr 
+32f8 1c427e00 deposit clkn_bt 
+32f9 284ffe01 isolate1 mode_master ,temp 
+32fa 1a208c04 add rega ,coffset_sniff_anchor ,contr 
+32fb e8ca0000 ifetcht 4 ,contr 
+32fc 20608000 rtn true 
+32fd 1a208c08 add rega ,coffset_clk_offset ,contr 
+32fe e8c30000 ifetch 6 ,contr 
+32ff 204038e5 call calc_clke2 
+3300 1d027e00 deposit clke_bt 
+3301 20600000 rtn 
+
+context_next_anchor:
+3302 1a208c02 add rega ,coffset_tsniff ,contr 
+3303 1a208a04 add rega ,coffset_sniff_anchor ,contw 
+3304 e8c10000 ifetch 2 ,contr 
+3305 98409600 iadd temp ,timeup 
+3306 19627e00 deposit timeup 
+3307 e0a20000 istore 4 ,contw 
+3308 202049dc branch le_context_nexthop 
+
+context_search_window:
+3309 c300b2a9 bbit0 state_insniff ,context_search_next 
+330a 204032f6 call context_get_anchor 
+330b 9b60fe00 iadd stop_watch ,pdata 
+330c 9b60fe00 iadd stop_watch ,pdata 
+330d 98e0fe00 iadd queue ,pdata 
+330e 98467c00 isub temp ,null 
+330f 242132a9 nbranch context_search_next ,positive 
+3310 18007c00 force 0 ,null 
+3311 20600000 rtn 
+
+context_traverse_clearkey:
+3312 c30032a9 bbit0 state_inconn ,context_search_next 
+3313 18427e00 deposit temp 
+3314 9a267c00 isub rega ,null 
+3315 203f32a9 branch context_search_next ,null 
+3316 1a208c01 add rega ,coffset_mode ,contr 
+3317 e8c08000 ifetch 1 ,contr 
+3318 c28032a9 bbit1 mode_le ,context_search_next 
+3319 ea208000 ifetch 1 ,rega 
+331a 793ffe07 set0 state_linkkey ,pdata 
+331b e2208000 istore 1 ,rega 
+331c 202032a9 branch context_search_next 
+
+master_conn_send_packet:
+331d 793f8025 set0 mark_ext_patch ,mark 
+331e 44984006 bpatch patch06_0 ,mem_patch06 
+331f 20403aec call rf_setup_time_master_slot 
+
+master_send_packet:
+3320 1c40c201 add clkn_bt ,1 ,bt_clk 
+3321 20403979 call fetch_self_bt_adr 
+3322 18004803 force 0x03 ,freq_mode 
+3323 20403967 call tx_radio_freq 
+3324 20403aee call start_transmitter 
+3325 20403af4 call start_tx_native 
+3326 20403b05 call send_access_word 
+3327 202037ec branch transmit_packet 
+
+master_conn_recv_packet:
+3328 793f8025 set0 mark_ext_patch ,mark 
+3329 4498c006 bpatch patch06_1 ,mem_patch06 
+332a 20403aea call rf_setup_time_slave_slot 
+
+master_recv_packet:
+332b 1c40c201 add clkn_bt ,1 ,bt_clk 
+332c 20403979 call fetch_self_bt_adr 
+332d 18004803 force 0x03 ,freq_mode 
+332e 20403960 call rx_radio_freq 
+332f 20403481 call init_rx_packet_flags 
+3330 20403a86 call prep_crypt 
+3331 20403afa call start_rx_native 
+3332 20403a7f call start_receiver 
+
+master_rx_conn_finish_packet:
+3333 20403aa3 call wait_access_clkn_rt 
+3334 246c0000 nrtn sync 
+3335 20403a50 call save_rssi 
+3336 20203582 branch receive_packet 
+
+master_newconn_once:
+3337 793f8025 set0 mark_ext_patch ,mark 
+3338 44994006 bpatch patch06_2 ,mem_patch06 
+3339 68008180 fetch 1 ,mem_fhs_am_addr 
+333a 98000800 iforce am_addr 
+333b 18000201 force type_poll ,type 
+333c 2040331d call master_conn_send_packet 
+333d 20203328 branch master_conn_recv_packet 
+
+inquiry_scan_dispatch:
+333e 6800c133 fetch 1 ,mem_scan_mode 
+333f c4000000 rtnbit0 inq_scan_mode 
+3340 18000e05 force iscan_interval_timer ,queue 
+3341 20407ee2 call timer_check 
+3342 247a0000 nrtn blank 
+3343 6809414d fetcht 2 ,mem_iscan_window 
+3344 18000e04 force 4 ,queue 
+3345 2040379f call sniff_check_window 
+3346 20740000 rtn user 
+3347 2040334e call inquiry_scan_start 
+3348 18000e05 force iscan_interval_timer ,queue 
+3349 6801414f fetch 2 ,mem_iscan_interval 
+334a 242c7ed4 nbranch timer_init ,sync 
+334b 180a7e00 random pdata 
+334c 9ea17e00 iand mask3ff ,pdata 
+334d 20207ed4 branch timer_init 
+
+inquiry_scan_start:
+334e 793f8025 set0 mark_ext_patch ,mark 
+334f 4499c006 bpatch patch06_3 ,mem_patch06 
+3350 70018000 jam 0 ,mem_fhs_am_addr 
+3351 78587c00 disable clknt 
+3352 78577c00 disable attempt 
+3353 20403937 call afh_clear 
+3354 1c4143fc and clkn_bt ,0x1fc ,bt_clk 
+3355 18004801 force 0x01 ,freq_mode 
+3356 2040396e call fetch_giac 
+3357 20403960 call rx_radio_freq 
+3358 7940001d setflip mark_inquiry_state ,mark 
+3359 68008006 fetch 1 ,mem_inquiryscan_waitcnt 
+335a 1fe0fe01 increase 1 ,pdata 
+335b 60008006 store 1 ,mem_inquiryscan_waitcnt 
+335c 2040398b call fetch_diac 
+335d 20403a7f call start_receiver 
+335e 20403aab call wait_access_forever 
+335f 246c0000 nrtn sync 
+3360 793f8025 set0 mark_ext_patch ,mark 
+3361 449a4006 bpatch patch06_4 ,mem_patch06 
+3362 18003600 force 0 ,stop_watch 
+3363 20403992 call shutdown_radio 
+3364 68008007 fetch 1 ,mem_inquiryscan_rcvcnt 
+3365 1fe0fe01 increase 1 ,pdata 
+3366 60008007 store 1 ,mem_inquiryscan_rcvcnt 
+3367 2040396e call fetch_giac 
+3368 20403aea call rf_setup_time_slave_slot 
+3369 1c21c202 or_into 0x002 ,bt_clk 
+336a 18004801 force 0x01 ,freq_mode 
+336b 20403967 call tx_radio_freq 
+336c 2040398b call fetch_diac 
+336d 20403aee call start_transmitter 
+336e 20403aff call start_tx_external 
+336f 1c427e00 deposit clkn_bt 
+3370 60020160 store 4 ,mem_clkn_bt 
+3371 20403b05 call send_access_word 
+3372 18000202 force type_fhs ,type 
+3373 18000800 force 0 ,am_addr 
+3374 20403b0d call scan_mode_whiten 
+3375 204037ee call transmit_packet_whitened 
+3376 2040337a call send_eir 
+3377 1c2143fd and_into 0x1fd ,bt_clk 
+3378 1cc0cc01 increase 1 ,n_tx_slot 
+3379 20600000 rtn 
+
+send_eir:
+337a 793f8025 set0 mark_ext_patch ,mark 
+337b 449ac006 bpatch patch06_5 ,mem_patch06 
+337c 6800c171 fetch 1 ,mem_eir_enable 
+337d 207a0000 rtn blank 
+337e d8a001b1 arg mem_eir ,contw 
+337f 6800c5ae fetch 1 ,mem_local_name_length 
+3380 1fe27200 copy pdata ,loopcnt 
+3381 1fe0fe01 increase 1 ,pdata 
+3382 e0a08000 istore 1 ,contw 
+3383 18a20400 copy contw ,temp 
+3384 1fe0fe01 increase 1 ,pdata 
+3385 6001427e store 2 ,mem_tx_len 
+3386 18420a00 copy temp ,contw 
+3387 58000009 setarg 0x09 
+3388 e0a08000 istore 1 ,contw 
+3389 d8c045af arg mem_local_name ,contr 
+338a 20407ecd call memcpy 
+338b da604625 arg mem_all_uuid_128bits ,regc 
+338c df200004 arg 4 ,loopcnt 
+338d 2040339d call get_all_uuid 
+338e da60460f arg mem_all_uuid_16bits ,regc 
+338f df200001 arg 1 ,loopcnt 
+3390 2040339d call get_all_uuid 
+3391 1800020a force type_dm3 ,type 
+3392 70427d02 jam 2 ,mem_tx_lch 
+3393 580001b1 setarg mem_eir 
+3394 6001016e store 2 ,mem_txptr 
+3395 20403aea call rf_setup_time_slave_slot 
+3396 20403967 call tx_radio_freq 
+3397 20403aee call start_transmitter 
+3398 20403aff call start_tx_external 
+3399 20403b05 call send_access_word 
+339a 20403b0d call scan_mode_whiten 
+339b 204037ee call transmit_packet_whitened 
+339c 20600000 rtn 
+
+get_all_uuid:
+339d 18a20400 copy contw ,temp 
+339e 1a620c00 copy regc ,contr 
+339f e8c08000 ifetch 1 ,contr 
+33a0 207a0000 rtn blank 
+
+lshift_loop:
+33a1 1fe3fe00 lshift pdata ,pdata 
+33a2 c20033a1 loop lshift_loop 
+33a3 1fe22200 copy pdata ,rega 
+33a4 1fe0fe02 increase 2 ,pdata 
+33a5 1fe20e00 copy pdata ,queue 
+33a6 6801427e fetch 2 ,mem_tx_len 
+33a7 98e0fe00 iadd queue ,pdata 
+33a8 6001427e store 2 ,mem_tx_len 
+33a9 18420a00 copy temp ,contw 
+33aa 1a227e00 copy rega ,pdata 
+33ab 1fe0fe01 increase 1 ,pdata 
+33ac e0a08000 istore 1 ,contw 
+33ad 1a620c00 copy regc ,contr 
+33ae e8c08000 ifetch 1 ,contr 
+33af e8c08000 ifetch 1 ,contr 
+33b0 e0a08000 istore 1 ,contw 
+33b1 1a227200 copy rega ,loopcnt 
+33b2 20207ecd branch memcpy 
+
+page_scan_dispatch:
+33b3 6800c133 fetch 1 ,mem_scan_mode 
+33b4 c4008000 rtnbit0 page_scan_mode 
+33b5 18000e06 force pscan_interval_timer ,queue 
+33b6 20407ee2 call timer_check 
+33b7 247a0000 nrtn blank 
+33b8 68094151 fetcht 2 ,mem_pscan_window 
+33b9 18000e28 force 40 ,queue 
+33ba 2040379f call sniff_check_window 
+33bb 20740000 rtn user 
+33bc 18000800 force 0 ,am_addr 
+33bd 70001008 jam param_pagerespto ,mem_fhs_wait_counter 
+33be 793f800b set0 mark_fhs_already_good ,mark 
+33bf 204033c3 call page_scan_start 
+33c0 18000e06 force pscan_interval_timer ,queue 
+33c1 68014153 fetch 2 ,mem_pscan_interval 
+33c2 20207ed4 branch timer_init 
+
+page_scan_start:
+33c3 793f8025 set0 mark_ext_patch ,mark 
+33c4 449b4006 bpatch patch06_6 ,mem_patch06 
+33c5 78587c00 disable clknt 
+33c6 20403937 call afh_clear 
+33c7 68008008 fetch 1 ,mem_pagescan_waitcnt 
+33c8 1fe0fe01 increase 1 ,pdata 
+33c9 60008008 store 1 ,mem_pagescan_waitcnt 
+33ca 18004c00 force 0 ,n_tx_slot 
+33cb 20403979 call fetch_self_bt_adr 
+33cc 1c40c201 add clkn_bt ,1 ,bt_clk 
+33cd 18004802 force 0x02 ,freq_mode 
+33ce 793f8025 set0 mark_ext_patch ,mark 
+33cf 449bc006 bpatch patch06_7 ,mem_patch06 
+33d0 20403960 call rx_radio_freq 
+33d1 20403a7f call start_receiver 
+33d2 20403aab call wait_access_forever 
+33d3 246c0000 nrtn sync 
+33d4 20403992 call shutdown_radio 
+33d5 68008009 fetch 1 ,mem_pagescan_rcvcnt 
+33d6 1fe0fe01 increase 1 ,pdata 
+33d7 60008009 store 1 ,mem_pagescan_rcvcnt 
+33d8 18003600 force 0 ,stop_watch 
+33d9 20403aea call rf_setup_time_slave_slot 
+33da 1c21c202 or_into 0x002 ,bt_clk 
+33db 18004801 force 0x01 ,freq_mode 
+33dc 20403967 call tx_radio_freq 
+33dd 20403aee call start_transmitter 
+33de 20403aff call start_tx_external 
+33df 20403b05 call send_access_word 
+33e0 204036c6 call end_of_packet 
+33e1 18000800 force 0 ,am_addr 
+33e2 d9600600 arg param_rf_setup ,timeup 
+33e3 35330200 until clke_rt ,meet 
+33e4 1d01d003 or_into 0x03 ,clke_bt 
+33e5 1c2143fd and_into 0x1fd ,bt_clk 
+
+page_scan_wait_fhs_restart:
+33e6 793f8025 set0 mark_ext_patch ,mark 
+33e7 449c4007 bpatch patch07_0 ,mem_patch07 
+33e8 1cc0cc01 increase 1 ,n_tx_slot 
+33e9 20403960 call rx_radio_freq 
+33ea 20403a7f call start_receiver 
+33eb 20403a9d call wait_access_mhalfbnd 
+33ec 242c33f0 nbranch page_scan_wait_fhs_again ,sync 
+33ed 20403b0d call scan_mode_whiten 
+33ee 20403584 call receive_packet_whitened 
+33ef c505b3f8 bmark1 mark_fhs_already_good ,page_scan_reply_to_fhs 
+
+page_scan_wait_fhs_again:
+33f0 793f8025 set0 mark_ext_patch ,mark 
+33f1 449cc007 bpatch patch07_1 ,mem_patch07 
+33f2 68008010 fetch 1 ,mem_fhs_wait_counter 
+33f3 207a0000 rtn blank 
+33f4 1fe0ffff increase -1 ,pdata 
+33f5 60008010 store 1 ,mem_fhs_wait_counter 
+33f6 20403aec call rf_setup_time_master_slot 
+33f7 202033e6 branch page_scan_wait_fhs_restart 
+
+page_scan_reply_to_fhs:
+33f8 793f8025 set0 mark_ext_patch ,mark 
+33f9 449d4007 bpatch patch07_2 ,mem_patch07 
+33fa 793fd001 set0 1 ,clke_bt 
+33fb 79205000 set1 0 ,clke_bt 
+33fc 6800800a fetch 1 ,mem_pagescan_rcvfhscnt 
+33fd 1fe0fe01 increase 1 ,pdata 
+33fe 6000800a store 1 ,mem_pagescan_rcvfhscnt 
+33ff 20403aea call rf_setup_time_slave_slot 
+3400 1c21c202 or_into 0x02 ,bt_clk 
+3401 20403967 call tx_radio_freq 
+3402 20403aee call start_transmitter 
+3403 20403aff call start_tx_external 
+3404 20403b05 call send_access_word 
+3405 204036c6 call end_of_packet 
+
+slave_apply_clke_bt:
+3406 2d000603 compare 0x03 ,clke_bt ,0x03 
+3407 2020b40a branch slave_apply_clke_bt_now ,true 
+3408 37cb8200 until null ,mhalfbnd 
+3409 20203406 branch slave_apply_clke_bt 
+
+slave_apply_clke_bt_now:
+340a 68020164 fetch 4 ,mem_clke_bt 
+340b 1fe1fe03 or_into 0x03 ,pdata 
+340c 1fe25000 icopy clke_bt 
+
+start_slave_connection:
+340d 793f8025 set0 mark_ext_patch ,mark 
+340e 449dc007 bpatch patch07_3 ,mem_patch07 
+340f 68030177 fetch 6 ,extm_lap 
+3410 60030040 store 6 ,mem_plap 
+3411 2040348d call prepare_newconn 
+
+slave_newconn_loop:
+3412 204034d9 call slave_newconn_once 
+3413 2036b417 branch sconn_successful ,match 
+3414 204034b0 call new_conn_timeout 
+3415 243a3412 nbranch slave_newconn_loop ,blank 
+3416 20600000 rtn 
+
+sconn_successful:
+3417 793f8025 set0 mark_ext_patch ,mark 
+3418 449e4007 bpatch patch07_4 ,mem_patch07 
+3419 20403499 call newconn_init 
+341a 2040327a call context_new 
+341b 24628000 nrtn zero 
+341c 70003100 jam 0 ,mem_mode 
+341d 204038d1 call calc_clke_offset 
+341e 20203260 branch context_save 
+
+slave_dispatch:
+341f 793f8025 set0 mark_ext_patch ,mark 
+3420 449ec007 bpatch patch07_5 ,mem_patch07 
+3421 204038e1 call calc_clke 
+3422 20403447 call role_switch_slave 
+3423 20740000 rtn user 
+
+slave_loop:
+3424 793f8025 set0 mark_ext_patch ,mark 
+3425 449f4007 bpatch patch07_6 ,mem_patch07 
+3426 20403d42 call check_bt_disabled 
+3427 204068c0 call scheduler_process 
+3428 20403579 call slave_conn_recv_packet 
+3429 2436b434 nbranch slave_notmatch ,match 
+342a 20403b2c call supervision_flush 
+342b 204068dc call scheduler_tx_l2cap_pkt 
+342c 204034e7 call prepare_tx 
+342d 204037de call slave_conn_send_packet 
+342e 204037ac call parse_l2cap 
+342f 2040531f call parse_lmp 
+3430 6800800b fetch 1 ,mem_slave_rcvcnt 
+3431 1fe0fe01 increase 1 ,pdata 
+3432 6000800b store 1 ,mem_slave_rcvcnt 
+3433 204038d1 call calc_clke_offset 
+
+slave_notmatch:
+3434 793f8025 set0 mark_ext_patch ,mark 
+3435 449fc007 bpatch patch07_7 ,mem_patch07 
+3436 20403ca0 call lpm_set_mult 
+3437 20403b22 call supervision_update 
+3438 2021343e branch slave_disconnect ,positive 
+3439 204031cd call check_disconnect_timeout 
+343a 2434343e nbranch slave_disconnect ,user 
+343b 20403775 call check_attempt 
+343c 243a3424 nbranch slave_loop ,blank 
+343d 20600000 rtn 
+
+slave_disconnect:
+343e 793f8025 set0 mark_ext_patch ,mark 
+343f 44a04008 bpatch patch08_0 ,mem_patch08 
+3440 70015000 jam 0 ,mem_tester_emulate 
+3441 70017e00 jam 0 ,mem_debug_config 
+3442 204034b8 call quit_connection 
+3443 793f8011 set0 mark_testmode ,mark 
+3444 20407f80 call test_enable_white 
+3445 68008030 fetch 1 ,mem_state 
+3446 20600000 rtn 
+
+role_switch_slave:
+3447 793f8025 set0 mark_ext_patch ,mark 
+3448 44a0c008 bpatch patch08_1 ,mem_patch08 
+3449 204031f3 call role_switch_check 
+344a 24740000 nrtn user 
+344b 18820400 copy am_addr ,temp 
+344c 20403b11 call get_free_amaddr 
+344d 60008180 store 1 ,mem_fhs_am_addr 
+344e 18420800 copy temp ,am_addr 
+344f 70001120 jam param_newconnto ,mem_newconnto_counter 
+
+roles_sendfhs_loop:
+3450 793f8025 set0 mark_ext_patch ,mark 
+3451 44a14008 bpatch patch08_2 ,mem_patch08 
+3452 20403aec call rf_setup_time_master_slot 
+3453 18000202 force type_fhs ,type 
+3454 204037d5 call slave_send_access 
+3455 1c427e00 deposit clkn_bt 
+3456 60020160 store 4 ,mem_clkn_bt 
+3457 204037ec call transmit_packet 
+3458 20403aea call rf_setup_time_slave_slot 
+3459 7837fc00 enable user3 
+345a 2040355a call slave_receive_access 
+345b 202c3463 branch roles_got_fhs_reply ,sync 
+345c 20403992 call shutdown_radio 
+345d 204034b0 call new_conn_timeout 
+345e 243a3450 nbranch roles_sendfhs_loop ,blank 
+345f c6820000 rtnmark0 mark_accept_switch 
+3460 70007c34 jam lmp_slot_offset ,mem_lmo_opcode2 
+3461 79200003 set1 mark_switch_initiated ,mark 
+3462 20600000 rtn 
+
+roles_got_fhs_reply:
+3463 78387c00 enable clknt 
+3464 2040348d call prepare_newconn 
+3465 20403937 call afh_clear 
+
+roles_newconn_loop:
+3466 793f8025 set0 mark_ext_patch ,mark 
+3467 44a1c008 bpatch patch08_3 ,mem_patch08 
+3468 20403337 call master_newconn_once 
+3469 202c3470 branch roles_newconn_responded ,sync 
+346a 204034b0 call new_conn_timeout 
+346b 243a3466 nbranch roles_newconn_loop ,blank 
+346c 78587c00 disable clknt 
+346d 1d027e00 deposit clke_bt 
+346e 6002416a store 4 ,mem_next_btclk 
+346f 20600000 rtn 
+
+roles_newconn_responded:
+3470 7834fc00 enable master 
+3471 c5823476 bmark0 mark_accept_switch ,roles_newconn_nolmp 
+3472 793f8004 set0 mark_accept_switch ,mark 
+3473 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+3474 70007d33 jam lmp_host_connection_req ,mem_lmi_opcode2 
+3475 20405903 call tid_set_reply 
+
+roles_newconn_nolmp:
+3476 18827e00 deposit am_addr 
+3477 60008077 store 1 ,mem_amaddr 
+3478 18007e00 force 0 ,pdata 
+3479 60030038 store 6 ,mem_clk_offset 
+347a 68008031 fetch 1 ,mem_mode 
+347b 79207e01 set1 mode_master ,pdata 
+347c 60008031 store 1 ,mem_mode 
+347d 20403b2c call supervision_flush 
+347e 7854fc00 disable master 
+347f 78347c00 enable user 
+3480 20600000 rtn 
+
+init_rx_packet_flags:
+3481 793f8025 set0 mark_ext_patch ,mark 
+3482 44a24008 bpatch patch08_4 ,mem_patch08 
+3483 7856fc00 disable match 
+3484 793f8005 set0 mark_loopback ,mark 
+3485 793f800a set0 mark_am_addr_broadcast ,mark 
+3486 793f8010 set0 mark_longpacket ,mark 
+3487 793f800f set0 mark_old_packet ,mark 
+3488 68008047 fetch 1 ,mem_arq 
+3489 793ffe05 set0 arqnx ,pdata 
+348a 79207e04 set1 flowx ,pdata 
+348b 60008047 store 1 ,mem_arq 
+348c 20600000 rtn 
+
+prepare_newconn:
+348d 793f8025 set0 mark_ext_patch ,mark 
+348e 44a2c008 bpatch patch08_5 ,mem_patch08 
+348f 70001120 jam param_newconnto ,mem_newconnto_counter 
+3490 70004750 jam param_newconn_arq ,mem_arq 
+3491 6801415f fetch 2 ,mem_rx_window_init 
+3492 6001003e store 2 ,mem_rx_window 
+3493 1c427e00 deposit clkn_bt 
+3494 6002416a store 4 ,mem_next_btclk 
+3495 20780000 rtn clknt 
+3496 1d027e00 deposit clke_bt 
+3497 6002416a store 4 ,mem_next_btclk 
+3498 20600000 rtn 
+
+newconn_init:
+3499 793f8025 set0 mark_ext_patch ,mark 
+349a 44a34008 bpatch patch08_6 ,mem_patch08 
+349b 2040531b call init_lmp_reinit 
+349c 204034b4 call new_conn_handle 
+349d 60008046 store 1 ,mem_conn_handle 
+349e 58000000 setarg 0 
+349f 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+34a0 58001c80 setarg param_supervision_to 
+34a1 60010051 store 2 ,mem_supervision_to 
+34a2 68008030 fetch 1 ,mem_state 
+34a3 79207e00 set1 state_inconn ,pdata 
+34a4 60008030 store 1 ,mem_state 
+34a5 70004b00 jam 0 ,mem_op 
+34a6 70004c00 jam 0 ,mem_state_map 
+34a7 70009f00 jam 0 ,mem_lpm_current_mult 
+34a8 20203b2c branch supervision_flush 
+
+clear_linkkey:
+34a9 793f8025 set0 mark_ext_patch ,mark 
+34aa 44a3c008 bpatch patch08_7 ,mem_patch08 
+34ab 18007e00 force 0 ,pdata 
+34ac 60044261 store 8 ,mem_link_key 
+34ad e0a40000 istore 8 ,contw 
+34ae 204031ef call clear_linkstate 
+34af 20203294 branch context_traverse_linkkey 
+
+new_conn_timeout:
+34b0 68008011 fetch 1 ,mem_newconnto_counter 
+34b1 1fe0ffff increase -1 ,pdata 
+34b2 60008011 store 1 ,mem_newconnto_counter 
+34b3 20600000 rtn 
+
+new_conn_handle:
+34b4 6800c16f fetch 1 ,mem_handle_num 
+34b5 1fe0fe01 increase 1 ,pdata 
+34b6 6000c16f store 1 ,mem_handle_num 
+34b7 20600000 rtn 
+
+quit_connection:
+34b8 793f8025 set0 mark_ext_patch ,mark 
+34b9 44a44009 bpatch patch09_0 ,mem_patch09 
+34ba 6800c271 fetch 1 ,mem_hci_cmd 
+34bb c001b4be beq hci_cmd_remote_name_req ,quit_connection_name 
+34bc 68008048 fetch 1 ,mem_lmp_to_send 
+34bd c080b4c2 bne lmp_name_req ,quit_connection_cont 
+
+quit_connection_name:
+34be 20403f9d call cmd_check_plap 
+34bf 2422b4c2 nbranch quit_connection_cont ,zero 
+34c0 204031ca call master_name_error 
+34c1 70427100 jam 0 ,mem_hci_cmd 
+
+quit_connection_cont:
+34c2 793f8025 set0 mark_ext_patch ,mark 
+34c3 44a4c009 bpatch patch09_1 ,mem_patch09 
+34c4 20403e12 call app_disconn_reason_collect_bt 
+34c5 2040376a call sniff_exit 
+34c6 7009bd02 jam bt_evt_bb_disconnected ,mem_fifo_temp 
+34c7 20407d86 call ui_ipc_send_event 
+34c8 2040530d call init_lmp_work 
+34c9 204042eb call l2cap_init_work 
+34ca 204075f4 call sp_initialize 
+34cb 68008030 fetch 1 ,mem_state 
+34cc 793ffe00 set0 state_inconn 
+34cd 60008030 store 1 ,mem_state 
+34ce 70470a00 jam 0 ,memui_reconnect_mode 
+34cf 6800804c fetch 1 ,mem_state_map 
+34d0 2fe18000 compare 0x0 ,pdata ,0xc0 
+34d1 2020b4d3 branch quit_connection_not_clear_mark ,true 
+34d2 793f8001 set0 mark_rxbuf_inuse ,mark 
+
+quit_connection_not_clear_mark:
+34d3 68008047 fetch 1 ,mem_arq 
+34d4 c301b4d5 bbit0 wack ,quit_connection_not_clear_tx 
+
+quit_connection_not_clear_tx:
+34d5 6800804b fetch 1 ,mem_op 
+34d6 c4030000 rtnbit0 op_txl2cap 
+34d7 793f8002 set0 mark_tx_l2cap ,mark 
+34d8 20600000 rtn 
+
+slave_newconn_once:
+34d9 793f8025 set0 mark_ext_patch ,mark 
+34da 44a54009 bpatch patch09_2 ,mem_patch09 
+34db 68008173 fetch 1 ,extm_newconn_am_addr 
+34dc 207a0000 rtn blank 
+34dd 1fe20800 icopy am_addr 
+34de 20403579 call slave_conn_recv_packet 
+34df 24768000 nrtn match 
+34e0 18000200 force type_null ,type 
+34e1 204037de call slave_conn_send_packet 
+34e2 18827e00 deposit am_addr 
+34e3 60008077 store 1 ,mem_amaddr 
+34e4 18007e00 force 0 ,pdata 
+34e5 60008173 store 1 ,extm_newconn_am_addr 
+34e6 20600000 rtn 
+
+prepare_tx:
+34e7 793f8025 set0 mark_ext_patch ,mark 
+34e8 44a5c009 bpatch patch09_3 ,mem_patch09 
+34e9 68008030 fetch 1 ,mem_state 
+34ea c30134f5 bbit0 state_insco ,prepare_tx_not_sco 
+34eb 18000207 force type_hv3 ,type 
+34ec c583b4f4 bmark0 mark_esco ,prepare_tx_not_esco 
+34ed 204037a9 call check_esco_amaddr 
+34ee 2420b4f5 nbranch prepare_tx_not_sco ,true 
+34ef 203734f5 branch prepare_tx_not_sco ,attempt 
+34f0 20403523 call set_wait_ack 
+34f1 58000002 setarg 2 
+34f2 60014168 store 2 ,mem_retransmission_cnt 
+34f3 20600000 rtn 
+
+prepare_tx_not_esco:
+34f4 24770000 nrtn attempt 
+
+prepare_tx_not_sco:
+34f5 793f8025 set0 mark_ext_patch ,mark 
+34f6 44a64009 bpatch patch09_4 ,mem_patch09 
+34f7 20403283 call context_check_all_wack 
+34f8 2422b508 nbranch prepare_tx_no_retransmit ,zero 
+34f9 68008047 fetch 1 ,mem_arq 
+34fa c301b511 bbit0 wack ,prepare_tx_pollnull 
+
+prepare_tx_retransmit:
+34fb c502b515 bmark1 mark_loopback ,prepare_tx_loopback 
+34fc 6800817e fetch 1 ,mem_debug_config 
+34fd c283351c bbit1 debug_tx_pattern ,prepare_tx_txpat 
+34fe 68014168 fetch 2 ,mem_retransmission_cnt 
+34ff 1fe0ffff increase -1 ,pdata 
+3500 60014168 store 2 ,mem_retransmission_cnt 
+3501 203a3505 branch prepare_tx_nomore_retransmit ,blank 
+3502 6800c165 fetch 1 ,mem_last_type 
+3503 98000200 iforce type 
+3504 20600000 rtn 
+
+prepare_tx_nomore_retransmit:
+3505 793f8025 set0 mark_ext_patch ,mark 
+3506 44a6c009 bpatch patch09_5 ,mem_patch09 
+3507 20403703 call clear_got_tx 
+
+prepare_tx_no_retransmit:
+3508 204037a9 call check_esco_amaddr 
+3509 2020b511 branch prepare_tx_pollnull ,true 
+350a 20405621 call send_lmp 
+350b 20343520 branch prepare_tx_sendlmp ,user 
+350c 6800804b fetch 1 ,mem_op 
+350d c2833522 bbit1 op_txl2cap ,prepare_tx_sendl2cap 
+350e c502b515 bmark1 mark_loopback ,prepare_tx_loopback 
+350f 6800817e fetch 1 ,mem_debug_config 
+3510 c283351c bbit1 debug_tx_pattern ,prepare_tx_txpat 
+
+prepare_tx_pollnull:
+3511 18000201 force type_poll ,type 
+3512 20748000 rtn master 
+3513 18000200 force type_null ,type 
+3514 20600000 rtn 
+
+prepare_tx_loopback:
+3515 793f8025 set0 mark_ext_patch ,mark 
+3516 44a74009 bpatch patch09_6 ,mem_patch09 
+3517 68008019 fetch 1 ,mem_rx_type 
+3518 98000200 iforce type 
+3519 c1808000 rtnne 1 
+351a 18000200 force type_null ,type 
+351b 20600000 rtn 
+
+prepare_tx_txpat:
+351c 68008157 fetch 1 ,test_mode_packet_type 
+351d 1fe1020f and pdata ,0xf ,type 
+351e 79200005 set1 mark_loopback ,mark 
+351f 20600000 rtn 
+
+prepare_tx_sendlmp:
+3520 18000213 force type_lmp ,type 
+3521 20203523 branch set_wait_ack 
+
+prepare_tx_sendl2cap:
+3522 2040352d call tx_l2cap_type 
+
+set_wait_ack:
+3523 793f8025 set0 mark_ext_patch ,mark 
+3524 44a7c009 bpatch patch09_7 ,mem_patch09 
+3525 68088047 fetcht 1 ,mem_arq 
+3526 79200403 set1 wack ,temp 
+3527 60088047 storet 1 ,mem_arq 
+3528 18227e00 deposit type 
+3529 6000c165 store 1 ,mem_last_type 
+352a 5800ffff setarg 0xffff 
+352b 60014168 store 2 ,mem_retransmission_cnt 
+352c 20600000 rtn 
+
+tx_l2cap_type:
+352d 793f8025 set0 mark_ext_patch ,mark 
+352e 44a8400a bpatch patch0a_0 ,mem_patch0a 
+352f 6800804c fetch 1 ,mem_state_map 
+3530 2feffe05 isolate1 smap_edr ,pdata 
+3531 6801427e fetch 2 ,mem_tx_len 
+3532 2020b544 branch tx_l2cap_type_edr ,true 
+3533 18000203 force type_dm1 ,type 
+3534 1fe67c11 sub pdata ,17 ,null 
+3535 20610000 rtn positive 
+3536 18000204 force type_dh1 ,type 
+3537 1fe67c1b sub pdata ,27 ,null 
+3538 20610000 rtn positive 
+3539 1800020a force type_dm3 ,type 
+353a 1fe67c79 sub pdata ,121 ,null 
+353b 20610000 rtn positive 
+353c 1800020b force type_dh3 ,type 
+353d 1fe67cb7 sub pdata ,183 ,null 
+353e 20610000 rtn positive 
+353f 1800020e force type_dm5 ,type 
+3540 1fe67ce0 sub pdata ,224 ,null 
+3541 20610000 rtn positive 
+3542 1800020f force type_dh5 ,type 
+3543 20600000 rtn 
+
+tx_l2cap_type_edr:
+3544 18000203 force type_dm1 ,type 
+3545 1fe67c11 sub pdata ,17 ,null 
+3546 20610000 rtn positive 
+3547 18000204 force type_dh1 ,type 
+3548 1fe67c36 sub pdata ,54 ,null 
+3549 20610000 rtn positive 
+354a 1800020a force type_dm3 ,type 
+354b d840016f arg 367 ,temp 
+354c 98467c00 isub temp ,null 
+354d 24610000 nrtn positive 
+354e 1800020e force type_dm5 ,type 
+354f d84002a7 arg 679 ,temp 
+3550 98467c00 isub temp ,null 
+3551 24610000 nrtn positive 
+3552 1800020f force type_dh5 ,type 
+3553 20600000 rtn 
+
+slave_receive_master_slot:
+3554 68008030 fetch 1 ,mem_state 
+3555 c300b559 bbit0 state_insniff ,slave_receive_notsniff 
+3556 68010032 fetch 2 ,mem_tsniff 
+3557 203a3559 branch slave_receive_notsniff ,blank 
+3558 2437355b nbranch slave_receive_sniff ,attempt 
+
+slave_receive_notsniff:
+3559 20403aec call rf_setup_time_master_slot 
+
+slave_receive_access:
+355a 1d00c201 add clke_bt ,1 ,bt_clk 
+
+slave_receive_sniff:
+355b 78287c00 enable swfine 
+355c 6801003e fetch 2 ,mem_rx_window 
+355d 1fe37e00 rshift pdata ,pdata 
+355e d8400500 arg param_pll_setup ,temp 
+355f 9840fe00 iadd temp ,pdata 
+3560 20403abd call ahead_window 
+3561 20403982 call fetch_extm_bt_adr 
+3562 18004803 force 0x03 ,freq_mode 
+3563 20403960 call rx_radio_freq 
+3564 20403481 call init_rx_packet_flags 
+3565 20403a86 call prep_crypt 
+3566 793f8025 set0 mark_ext_patch ,mark 
+3567 44a8c00a bpatch patch0a_1 ,mem_patch0a 
+3568 6801003e fetch 2 ,mem_rx_window 
+3569 1fe37e00 rshift pdata ,pdata 
+356a 20403abd call ahead_window 
+356b 20403a7f call start_receiver 
+356c 7826fc00 enable decode_fec0 
+356d 6801003e fetch 2 ,mem_rx_window 
+356e d84003bb arg param_clke_cal ,temp 
+356f 9840b600 iadd temp ,stop_watch 
+3570 37c18400 correlate null ,timeout 
+3571 1b420400 copy clke ,temp 
+3572 600b0099 storet 6 ,mem_sync_clke 
+3573 7846fc00 disable decode_fec0 
+3574 246c0000 nrtn sync 
+3575 dd2003bb arg param_clke_cal ,clke_rt 
+3576 1c225000 copy bt_clk ,clke_bt 
+3577 2035bbed branch lpm_adjust_clk ,wake 
+3578 20600000 rtn 
+
+slave_conn_recv_packet:
+3579 793f8025 set0 mark_ext_patch ,mark 
+357a 44a9400a bpatch patch0a_2 ,mem_patch0a 
+357b 20403554 call slave_receive_master_slot 
+357c 242c3992 nbranch shutdown_radio ,sync 
+357d 20403a50 call save_rssi 
+357e c588b582 bmark0 mark_testmode ,receive_packet 
+357f 680100f5 fetch 2 ,mem_tst_pktcnt_sync 
+3580 1fe0fe01 increase 1 ,pdata 
+3581 600100f5 store 2 ,mem_tst_pktcnt_sync 
+
+receive_packet:
+3582 1c230400 rshift bt_clk ,temp 
+3583 18419c40 or temp ,0x40 ,white_init 
+
+receive_packet_whitened:
+3584 793f8025 set0 mark_ext_patch ,mark 
+3585 44a9c00a bpatch patch0a_3 ,mem_patch0a 
+3586 7823fc00 enable enable_white 
+3587 78257c00 enable enable_hec 
+3588 7825fc00 enable decode_fec1 
+3589 09800003 parse demod ,bucket ,3 
+358a 198cfe00 rshift8 pwindow ,pdata 
+358b 6000815c store 1 ,mem_temp_am_addr 
+358c 09800004 parse demod ,bucket ,4 
+358d 08008007 inject bucket ,7 
+358e 19827e00 copy pwindow ,pdata 
+358f 60008019 store 1 ,mem_rx_type 
+3590 09800003 parse demod ,bucket ,3 
+3591 198cfe00 rshift8 pwindow ,pdata 
+3592 6000815d store 1 ,mem_temp_arq 
+3593 68008019 fetch 1 ,mem_rx_type 
+3594 1fe67c03 sub pdata ,3 ,null 
+3595 2021359a branch receive_packet_noedr ,positive 
+3596 c003b59a beq 7 ,receive_packet_noedr 
+3597 6800804c fetch 1 ,mem_state_map 
+3598 2feffe05 isolate1 smap_edr ,pdata 
+3599 7920aa01 setflag true ,psk ,radio_ctrl 
+
+receive_packet_noedr:
+359a 793f8025 set0 mark_ext_patch ,mark 
+359b 44aa400a bpatch patch0a_4 ,mem_patch0a 
+359c 09800008 parse demod ,bucket ,8 
+359d 7845fc00 disable decode_fec1 
+359e 78457c00 disable enable_hec 
+359f 202336a8 branch error_header ,crc_failed 
+35a0 c588b5a4 bmark0 mark_testmode ,receive_packet_amchk 
+35a1 680100f7 fetch 2 ,mem_tst_pktcnt_hec 
+35a2 1fe0fe01 increase 1 ,pdata 
+35a3 600100f7 store 2 ,mem_tst_pktcnt_hec 
+
+receive_packet_amchk:
+35a4 793f8025 set0 mark_ext_patch ,mark 
+35a5 44aac00a bpatch patch0a_5 ,mem_patch0a 
+35a6 6800815c fetch 1 ,mem_temp_am_addr 
+35a7 2fe00e00 compare 0 ,pdata ,0x07 
+35a8 7920800a setflag true ,mark_am_addr_broadcast ,mark 
+35a9 2020b5b5 branch am_addr_ok ,true 
+35aa a8800e00 icompare 0x07 ,am_addr 
+35ab 2020b5b4 branch am_addr_match ,true 
+35ac c583b6c6 bmark0 mark_esco ,end_of_packet 
+35ad 680880af fetcht 1 ,mem_saved_amaddr 
+35ae a8400e00 icompare 0x7 ,temp 
+35af 2420b6c6 nbranch end_of_packet ,true 
+35b0 68008047 fetch 1 ,mem_arq 
+35b1 793ffe05 set0 arqnx ,pdata 
+35b2 79207e04 set1 flowx ,pdata 
+35b3 60008047 store 1 ,mem_arq 
+
+am_addr_match:
+35b4 7836fc00 enable match 
+
+am_addr_ok:
+35b5 793f8025 set0 mark_ext_patch ,mark 
+35b6 44ab400a bpatch patch0a_6 ,mem_patch0a 
+35b7 68008019 fetch 1 ,mem_rx_type 
+35b8 1fe20200 icopy type 
+35b9 c50535c5 bmark1 mark_am_addr_broadcast ,arqn_bypass 
+35ba 6808815d fetcht 1 ,mem_temp_arq 
+35bb 68008047 fetch 1 ,mem_arq 
+35bc 793ffe00 set0 flow ,pdata 
+35bd 284ffe00 isolate1 flow ,temp 
+35be 7920fe00 setflag true ,flow ,pdata 
+35bf 284ffe01 isolate1 arqn ,temp 
+35c0 7920fe01 setflag true ,arqn ,pdata 
+35c1 60008047 store 1 ,mem_arq 
+35c2 284c0001 isolate0 arqn ,temp 
+35c3 2020b5c5 branch arqn_bypass ,true 
+35c4 20403703 call clear_got_tx 
+
+arqn_bypass:
+35c5 793f8025 set0 mark_ext_patch ,mark 
+35c6 44abc00a bpatch patch0a_7 ,mem_patch0a 
+35c7 d8400000 arg 0 ,temp 
+35c8 20403ab4 call reserve_slot 
+35c9 18217e0f and type ,0xf ,pdata 
+35ca c000b5f4 beq type_poll ,process_poll 
+35cb c00036c6 beq type_null ,end_of_packet 
+35cc c00136d3 beq type_fhs ,process_fhs 
+35cd 6808815d fetcht 1 ,mem_temp_arq 
+35ce 68008047 fetch 1 ,mem_arq 
+35cf a8400800 icompare 0x04 ,temp 
+35d0 2420b5d4 nbranch rx_type_dispatch ,true 
+35d1 c58535d3 bmark0 mark_am_addr_broadcast ,failed_seqn 
+35d2 c303b5d4 bbit0 bcast1 ,rx_type_dispatch 
+
+failed_seqn:
+35d3 7920000f set1 mark_old_packet ,mark 
+
+rx_type_dispatch:
+35d4 793f8025 set0 mark_ext_patch ,mark 
+35d5 44ac400b bpatch patch0b_0 ,mem_patch0b 
+35d6 18227e00 deposit type 
+35d7 c001b5f6 beq type_dm1 ,process_dm1 
+35d8 c00235fa beq type_dh1 ,process_dh1 
+35d9 c003b5e4 beq type_hv3 ,process_hev 
+35da c00435f9 beq type_3dh1 ,process_3dh1 
+35db d8400004 arg 4 ,temp 
+35dc 20403ab4 call reserve_slot 
+35dd c00535f5 beq type_dm3 ,process_dm3 
+35de c005b5f8 beq type_dh3 ,process_dh3 
+35df d8400008 arg 8 ,temp 
+35e0 20403ab4 call reserve_slot 
+35e1 c00735f5 beq type_dm5 ,process_dm5 
+35e2 c007b5f8 beq type_dh5 ,process_dh5 
+35e3 20600000 rtn 
+
+process_hev:
+35e4 793f8025 set0 mark_ext_patch ,mark 
+35e5 44acc00b bpatch patch0b_1 ,mem_patch0b 
+35e6 7826fc00 enable decode_fec0 
+35e7 7824fc00 enable enable_crc 
+35e8 78277c00 enable encrypt 
+35e9 d8a000d0 arg mem_sco_ibuf ,contw 
+35ea 1800721e force 30 ,loopcnt 
+
+process_hev_loop:
+35eb 09800008 parse demod ,bucket ,8 
+35ec 19897e00 rshift3 pwindow ,pdata 
+35ed e0a08000 istore 1 ,contw 
+35ee c20035eb loop process_hev_loop 
+35ef c583b6c6 bmark0 mark_esco ,end_of_packet 
+35f0 09800010 parse demod ,bucket ,16 
+35f1 7d230008 nsetflag crc_failed ,mark_esco_rxok ,mark 
+35f2 202336b5 branch error_payload ,crc_failed 
+35f3 20203696 branch ack_payload 
+
+process_poll:
+35f4 202036c6 branch end_of_packet 
+
+process_dm3:
+
+process_dm5:
+35f5 79200010 set1 mark_longpacket ,mark 
+
+process_dm1:
+35f6 78267c00 enable decode_fec2 
+35f7 202035fb branch process_dmh 
+
+process_dh3:
+
+process_dh5:
+35f8 79200010 set1 mark_longpacket ,mark 
+
+process_3dh1:
+35f9 79202a02 set1 psk3m ,radio_ctrl 
+
+process_dh1:
+35fa 7826fc00 enable decode_fec0 
+
+process_dmh:
+35fb 793f8025 set0 mark_ext_patch ,mark 
+35fc 44ad400b bpatch patch0b_2 ,mem_patch0b 
+35fd c500b6c6 bmark1 mark_rxbuf_inuse ,end_of_packet 
+35fe 2aac0001 isolate0 psk ,radio_ctrl 
+35ff 2020b608 branch process_dmh_noedr ,true 
+3600 7843fc00 disable enable_white 
+3601 7826fc00 enable decode_fec0 
+3602 78467c00 disable decode_fec2 
+3603 1c409602 add clkn_bt ,2 ,timeup 
+3604 34530400 correlate clkn_bt ,meet 
+3605 242c36b5 nbranch error_payload ,sync 
+3606 79200010 set1 mark_longpacket ,mark 
+3607 7823fc00 enable enable_white 
+
+process_dmh_noedr:
+3608 793f8025 set0 mark_ext_patch ,mark 
+3609 44adc00b bpatch patch0b_3 ,mem_patch0b 
+360a 78277c00 enable encrypt 
+360b 7824fc00 enable enable_crc 
+360c 09800003 parse demod ,bucket ,3 
+360d 198cfe00 rshift8 pwindow ,pdata 
+360e 6000817f store 1 ,mem_lch_code 
+360f 09800005 parse demod ,bucket ,5 
+3610 c5083614 bmark1 mark_longpacket ,process_dmh_long 
+3611 19897200 rshift3 pwindow ,loopcnt 
+3612 1f297200 rshift3 loopcnt ,loopcnt 
+3613 20203617 branch process_dmh_common 
+
+process_dmh_long:
+3614 09800005 parse demod ,bucket ,5 
+3615 19837200 rshift pwindow ,loopcnt 
+3616 09800003 parse demod ,bucket ,3 
+
+process_dmh_common:
+3617 793f8025 set0 mark_ext_patch ,mark 
+3618 44ae400b bpatch patch0b_4 ,mem_patch0b 
+3619 1f227e00 deposit loopcnt 
+361a 6001015e store 2 ,mem_len 
+361b 203a365b branch process_dmh_data_end ,blank 
+361c 9ea67c00 isub mask3ff ,null 
+361d 202136b5 branch error_payload ,positive 
+361e 793f8025 set0 mark_ext_patch ,mark 
+361f 44aec00b bpatch patch0b_5 ,mem_patch0b 
+3620 793f8000 set0 mark_fhs_eir ,mark 
+3621 6800817f fetch 1 ,mem_lch_code 
+3622 1fe17e03 and_into 0x03 ,pdata 
+3623 d8a00475 arg mem_rxbuf ,contw 
+3624 c001b62b beq llid_lmp ,process_lmp 
+3625 c508b657 bmark1 mark_testmode ,process_dmh_data 
+3626 6800817f fetch 1 ,mem_lch_code 
+3627 1fe17e03 and_into 0x03 ,pdata 
+3628 c0013630 beq llid_l2cap_start ,process_dmh_data_l2cap_start_pkt 
+3629 c000b645 beq llid_l2cap_cont ,process_dmh_data_l2cap_continue_pkt 
+362a 202036b5 branch error_payload 
+
+process_lmp:
+362b 6801015e fetch 2 ,mem_len 
+362c 1fe67c70 sub pdata ,0x70 ,null 
+362d 242136b5 nbranch error_payload ,positive 
+362e c507b696 bmark1 mark_old_packet ,ack_payload 
+362f 20203657 branch process_dmh_data 
+
+process_dmh_data_l2cap_start_pkt:
+3630 793f8025 set0 mark_ext_patch ,mark 
+3631 44af400b bpatch patch0b_6 ,mem_patch0b 
+3632 c507b696 bmark1 mark_old_packet ,ack_payload 
+3633 6801015e fetch 2 ,mem_len 
+3634 d84002e0 arg 0x2e0 ,temp 
+3635 98467c00 isub temp ,null 
+3636 202136b5 branch error_payload ,positive 
+3637 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+3638 c300363b bbit0 l2cap_inuse_buff1 ,process_dmh_data_into_buff1 
+3639 c300b640 bbit0 l2cap_inuse_buff2 ,process_dmh_data_into_buff2 
+363a 202036c6 branch end_of_packet 
+
+process_dmh_data_into_buff1:
+363b 70028a01 jam 1 ,mem_l2cap_rxbuff_new 
+363c 68010286 fetch 2 ,mem_l2cap_rxbuff1_len 
+363d c08036c6 bne 0 ,end_of_packet 
+363e d8a01000 arg mem_l2cap_rxbuff1 ,contw 
+363f 20203657 branch process_dmh_data 
+
+process_dmh_data_into_buff2:
+3640 70028a02 jam 2 ,mem_l2cap_rxbuff_new 
+3641 68010288 fetch 2 ,mem_l2cap_rxbuff2_len 
+3642 c08036c6 bne 0 ,end_of_packet 
+3643 d8a01400 arg mem_l2cap_rxbuff2 ,contw 
+3644 20203657 branch process_dmh_data 
+
+process_dmh_data_l2cap_continue_pkt:
+3645 793f8025 set0 mark_ext_patch ,mark 
+3646 44afc00b bpatch patch0b_7 ,mem_patch0b 
+3647 c507b696 bmark1 mark_old_packet ,ack_payload 
+3648 6801015e fetch 2 ,mem_len 
+3649 d84002e0 arg 0x2e0 ,temp 
+364a 98467c00 isub temp ,null 
+364b 202136b5 branch error_payload ,positive 
+364c 6800828a fetch 1 ,mem_l2cap_rxbuff_new 
+364d c000b650 beq 1 ,process_dmh_data_l2cap_continue_pkt1 
+364e c0013654 beq 2 ,process_dmh_data_l2cap_continue_pkt2 
+364f 202036c6 branch end_of_packet 
+
+process_dmh_data_l2cap_continue_pkt1:
+3650 d8a01000 arg mem_l2cap_rxbuff1 ,contw 
+3651 68010286 fetch 2 ,mem_l2cap_rxbuff1_len 
+3652 98a08a00 iadd contw ,contw 
+3653 20203657 branch process_dmh_data 
+
+process_dmh_data_l2cap_continue_pkt2:
+3654 d8a01400 arg mem_l2cap_rxbuff2 ,contw 
+3655 68010288 fetch 2 ,mem_l2cap_rxbuff2_len 
+3656 98a08a00 iadd contw ,contw 
+
+process_dmh_data:
+3657 09800008 parse demod ,bucket ,8 
+3658 19897e00 rshift3 pwindow ,pdata 
+3659 e0a08000 istore 1 ,contw 
+365a c2003657 loop process_dmh_data 
+
+process_dmh_data_end:
+365b 793f8025 set0 mark_ext_patch ,mark 
+365c 44b0400c bpatch patch0c_0 ,mem_patch0c 
+365d 09800010 parse demod ,bucket ,16 
+365e 202336af branch error_payload_crc ,crc_failed 
+365f 6800c3f3 fetch 1 ,mem_l2cap_flow_ctrl_flag 
+3660 c000b6c6 beq l2cap_flow_ctrl_enable ,end_of_packet 
+3661 c508b682 bmark1 mark_testmode ,process_dmh_cont 
+3662 c507b6c3 bmark1 mark_old_packet ,redundant_payload 
+3663 6800817f fetch 1 ,mem_lch_code 
+3664 2fe00603 compare 3 ,pdata ,3 
+3665 2020b682 branch process_dmh_cont ,true 
+3666 6801015e fetch 2 ,mem_len 
+3667 203a3682 branch process_dmh_cont ,blank 
+3668 793f8025 set0 mark_ext_patch ,mark 
+3669 44b0c00c bpatch patch0c_1 ,mem_patch0c 
+366a 6800828a fetch 1 ,mem_l2cap_rxbuff_new 
+366b c000b66e beq 1 ,process_l2cap_pass_crc_buff1 
+366c c0013678 beq 2 ,process_l2cap_pass_crc_buff2 
+366d 20203b31 branch assert 
+
+process_l2cap_pass_crc_buff1:
+366e 68010286 fetch 2 ,mem_l2cap_rxbuff1_len 
+366f 6809015e fetcht 2 ,mem_len 
+3670 9840fe00 iadd temp ,pdata 
+3671 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+3672 c0003b31 beq 0 ,assert 
+3673 68091000 fetcht 2 ,mem_l2cap_rxbuff1 
+3674 18408404 increase 4 ,temp 
+3675 98467c00 isub temp ,null 
+3676 2042b7cd call l2cap_buff1_inuse ,zero 
+3677 20203682 branch process_dmh_cont 
+
+process_l2cap_pass_crc_buff2:
+3678 68010288 fetch 2 ,mem_l2cap_rxbuff2_len 
+3679 6809015e fetcht 2 ,mem_len 
+367a 9840fe00 iadd temp ,pdata 
+367b 60010288 store 2 ,mem_l2cap_rxbuff2_len 
+367c c0003b31 beq 0 ,assert 
+367d 68091400 fetcht 2 ,mem_l2cap_rxbuff2 
+367e 18408404 add temp ,4 ,temp 
+367f 98467c00 isub temp ,null 
+3680 2042b7d1 call l2cap_buff2_inuse ,zero 
+3681 20203682 branch process_dmh_cont 
+
+process_dmh_cont:
+3682 793f8025 set0 mark_ext_patch ,mark 
+3683 44b1400c bpatch patch0c_2 ,mem_patch0c 
+3684 6808804c fetcht 1 ,mem_state_map 
+3685 6800817f fetch 1 ,mem_lch_code 
+3686 2fe00603 compare 3 ,pdata ,0x03 
+3687 79208406 setflag true ,smap_rxlmp ,temp 
+3688 7d208407 nsetflag true ,smap_rxl2cap ,temp 
+3689 6008804c storet 1 ,mem_state_map 
+368a 2420b68c nbranch process_dmh_cont_rxbuf_not_use ,true 
+368b 79200001 set1 mark_rxbuf_inuse ,mark 
+
+process_dmh_cont_rxbuf_not_use:
+368c c588b696 bmark0 mark_testmode ,ack_payload 
+368d 284ffe06 isolate1 smap_rxlmp ,temp 
+368e 2020b696 branch ack_payload ,true 
+368f 680100f9 fetch 2 ,mem_tst_pktcnt_crc 
+3690 1fe0fe01 increase 1 ,pdata 
+3691 600100f9 store 2 ,mem_tst_pktcnt_crc 
+3692 79200005 set1 mark_loopback ,mark 
+3693 793f8407 set0 smap_rxl2cap ,temp 
+3694 793f8001 set0 mark_rxbuf_inuse ,mark 
+3695 6008804c storet 1 ,mem_state_map 
+
+ack_payload:
+3696 793f8025 set0 mark_ext_patch ,mark 
+3697 44b1c00c bpatch patch0c_3 ,mem_patch0c 
+3698 6808815d fetcht 1 ,mem_temp_arq 
+3699 68008047 fetch 1 ,mem_arq 
+369a 79207e05 set1 arqnx ,pdata 
+369b 284ffe02 isolate1 seqn ,temp 
+369c 7920fe02 setflag true ,seqn ,pdata 
+369d 280ffe0a isolate1 mark_am_addr_broadcast ,mark 
+369e 7920fe07 setflag true ,bcast1 ,pdata 
+369f 60008047 store 1 ,mem_arq 
+36a0 6801015e fetch 2 ,mem_len 
+36a1 243a36c6 nbranch end_of_packet ,blank 
+36a2 6800804c fetch 1 ,mem_state_map 
+36a3 793ffe07 set0 smap_rxl2cap ,pdata 
+36a4 6000804c store 1 ,mem_state_map 
+36a5 6800817f fetch 1 ,mem_lch_code 
+36a6 2fe00e01 compare 0x01 ,pdata ,0x07 
+36a7 202036c6 branch end_of_packet 
+
+error_header:
+36a8 793f8025 set0 mark_ext_patch ,mark 
+36a9 44b2400c bpatch patch0c_4 ,mem_patch0c 
+36aa 7856fc00 disable match 
+36ab 6801001a fetch 2 ,mem_rx_hec_err 
+36ac 1fe0fe01 increase 1 ,pdata 
+36ad 6001001a store 2 ,mem_rx_hec_err 
+36ae 202036c6 branch end_of_packet 
+
+error_payload_crc:
+36af 6801001c fetch 2 ,mem_rx_crc_err 
+36b0 1fe0fe01 increase 1 ,pdata 
+36b1 6001001c store 2 ,mem_rx_crc_err 
+36b2 204036b6 call discard_pkt 
+36b3 c588b6b5 bmark0 mark_testmode ,error_payload 
+36b4 79200005 set1 mark_loopback ,mark 
+
+error_payload:
+36b5 202036c6 branch end_of_packet 
+
+discard_pkt:
+36b6 793f8025 set0 mark_ext_patch ,mark 
+36b7 44b2c00c bpatch patch0c_5 ,mem_patch0c 
+36b8 6800817f fetch 1 ,mem_lch_code 
+36b9 2fe00603 compare 3 ,pdata ,0x03 
+36ba 2420b6bf nbranch discard_pkt_l2cap ,true 
+
+discard_pkt_lmp:
+36bb 6808804c fetcht 1 ,mem_state_map 
+36bc 793f8406 set0 smap_rxlmp ,temp 
+36bd 6008804c storet 1 ,mem_state_map 
+36be 20600000 rtn 
+
+discard_pkt_l2cap:
+36bf 6808804c fetcht 1 ,mem_state_map 
+36c0 793f8407 set0 smap_rxl2cap ,temp 
+36c1 6008804c storet 1 ,mem_state_map 
+36c2 20203eca branch h4_send_acl_trigger_clear 
+
+redundant_payload:
+36c3 68008047 fetch 1 ,mem_arq 
+36c4 79207e05 set1 arqnx ,pdata 
+36c5 60008047 store 1 ,mem_arq 
+
+end_of_packet:
+36c6 793f8025 set0 mark_ext_patch ,mark 
+36c7 44b3400c bpatch patch0c_6 ,mem_patch0c 
+36c8 784efc00 disable encode_fec0 
+36c9 784e7c00 disable encode_fec2 
+36ca 7846fc00 disable decode_fec0 
+36cb 78467c00 disable decode_fec2 
+36cc 7844fc00 disable enable_crc 
+36cd 78477c00 disable encrypt 
+36ce 7843fc00 disable enable_white 
+36cf 2030b992 branch shutdown_radio ,is_rx 
+36d0 37d38200 until null ,tx_clear 
+36d1 20000064 nop 100 
+36d2 20203992 branch shutdown_radio 
+
+process_fhs:
+36d3 793f8025 set0 mark_ext_patch ,mark 
+36d4 44b3c00c bpatch patch0c_7 ,mem_patch0c 
+36d5 7824fc00 enable enable_crc 
+36d6 78267c00 enable decode_fec2 
+36d7 09800048 parse demod ,bucket ,72 
+36d8 2feffe3a isolate1 58 ,pdata 
+36d9 79208000 setflag true ,mark_fhs_eir ,mark 
+36da 1c020400 copy bt_adr ,temp 
+36db 57e04000 ialigned bt_adr 
+36dc 57e03c00 ialigned fhs0 
+36dd 782afc00 pulse recalc 
+36de 380bffff setsect 2 ,0xfffff 
+36df 380cffff setsect 3 ,0x0ffff 
+36e0 20000020 nop 32 
+36e1 29a80000 iverify fhs_parity 
+36e2 1d827e00 deposit lap 
+36e3 60018177 store 3 ,extm_lap 
+36e4 1da27e00 deposit uap 
+36e5 6000817a store 1 ,extm_uap 
+36e6 18424000 copy temp ,bt_adr 
+36e7 2020b6e9 branch fhs_parity_ok ,true 
+36e8 202036b5 branch error_payload 
+
+fhs_parity_ok:
+36e9 793f8025 set0 mark_ext_patch ,mark 
+36ea 44b4400d bpatch patch0d_0 ,mem_patch0d 
+36eb 09800048 parse demod ,bucket ,72 
+36ec 57e03e00 ialigned fhs1 
+36ed 57e00800 ialigned am_addr 
+36ee 57e05c00 ialigned nap 
+36ef 57e02400 ialigned regb 
+36f0 18007e00 force 0 ,pdata 
+36f1 09800010 parse demod ,bucket ,16 
+36f2 202336b5 branch error_payload ,crc_failed 
+36f3 5ffffffc setarg 0x0ffffffc 
+36f4 9a417e00 iand regb ,pdata 
+36f5 60020164 store 4 ,mem_clke_bt 
+36f6 1ba27e00 deposit fhs_class 
+36f7 60018174 store 3 ,extm_class 
+36f8 1b827e00 deposit fhs_misc 
+36f9 60008172 store 1 ,extm_fhs_misc 
+36fa 18827e00 deposit am_addr 
+36fb 60008173 store 1 ,extm_newconn_am_addr 
+36fc 1dc27e00 deposit nap 
+36fd 6001017b store 2 ,extm_nap 
+36fe 1c227e00 deposit bt_clk 
+36ff 08008220 inject rxf ,32 
+3700 28201e02 compare type_fhs ,type ,0x0f 
+3701 7920800b setflag true ,mark_fhs_already_good ,mark 
+3702 202036c6 branch end_of_packet 
+
+clear_got_tx:
+3703 793f8025 set0 mark_ext_patch ,mark 
+3704 44b4c00d bpatch patch0d_1 ,mem_patch0d 
+3705 68008047 fetch 1 ,mem_arq 
+3706 c4018000 rtnbit0 wack 
+3707 793ffe03 set0 wack ,pdata 
+3708 79407e06 setflip seqnx ,pdata 
+3709 60008047 store 1 ,mem_arq 
+370a 6800c165 fetch 1 ,mem_last_type 
+370b c009b719 beq type_lmp ,clear_got_txlmp 
+370c c1038000 rtneq type_hv3 
+370d 6800804b fetch 1 ,mem_op 
+370e c4030000 rtnbit0 op_txl2cap ,pdata 
+370f 793ffe06 set0 op_txl2cap ,pdata 
+3710 79207e07 set1 op_pkt_comp ,pdata 
+3711 6000804b store 1 ,mem_op 
+3712 793f8002 set0 mark_tx_l2cap ,mark 
+3713 680142d6 fetch 2 ,mem_l2cap_tx_multi_offset 
+3714 247a0000 nrtn blank 
+3715 6800804b fetch 1 ,mem_op 
+3716 793ffe07 set0 op_pkt_comp ,pdata 
+3717 6000804b store 1 ,mem_op 
+3718 202047fb branch l2cap_malloc_free 
+
+clear_got_txlmp:
+3719 793f8025 set0 mark_ext_patch ,mark 
+371a 44b5400d bpatch patch0d_2 ,mem_patch0d 
+371b 680083dd fetch 1 ,mem_lmo_header_opcode 
+371c 1fe37e00 rshift pdata ,pdata 
+371d c008b736 beq lmp_start_encryption_req ,start_encryption 
+371e c009373f beq lmp_stop_encryption_req ,stop_encryption 
+371f c00c376a beq lmp_unsniff_req ,sniff_exit 
+3720 c03fb726 beq lmp_escape ,clear_lmp_escape 
+3721 c1818000 rtnne lmp_accepted 
+3722 680083de fetch 1 ,mem_lmo_payload 
+3723 c015b72e beq lmp_sco_link_req ,sco_link_req_by_slave 
+3724 c008b729 beq lmp_start_encryption_req ,clear_send_setup_complete 
+3725 20600000 rtn 
+
+clear_lmp_escape:
+3726 680083de fetch 1 ,mem_lmo_payload 
+3727 79207e07 set1 7 ,pdata 
+3728 20600000 rtn 
+
+clear_send_setup_complete:
+3729 20748000 rtn master 
+372a 68008030 fetch 1 ,mem_state 
+372b c3820000 rtnbit1 state_conn_comp 
+372c 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+372d 20600000 rtn 
+
+sco_link_req_by_slave:
+372e 20748000 rtn master 
+372f 68008031 fetch 1 ,mem_mode 
+3730 2feffe04 isolate1 send_sco_when_slave ,pdata 
+3731 2020b733 branch clean_mem_mode ,true 
+3732 20600000 rtn 
+
+clean_mem_mode:
+3733 793ffe04 set0 send_sco_when_slave ,pdata 
+3734 60008031 store 1 ,mem_mode 
+3735 20600000 rtn 
+
+start_encryption:
+3736 793f8025 set0 mark_ext_patch ,mark 
+3737 44b5c00d bpatch patch0d_3 ,mem_patch0d 
+3738 6800804c fetch 1 ,mem_state_map 
+3739 79207e02 set1 smap_encryption ,pdata 
+373a 6000804c store 1 ,mem_state_map 
+373b 70801101 hjam 1 ,core_encrypt 
+373c 68008030 fetch 1 ,mem_state 
+373d 2feffe04 isolate1 state_conn_comp ,pdata 
+373e 20600000 rtn 
+
+stop_encryption:
+373f 793f8025 set0 mark_ext_patch ,mark 
+3740 44b6400d bpatch patch0d_4 ,mem_patch0d 
+3741 6800804c fetch 1 ,mem_state_map 
+3742 793ffe02 set0 smap_encryption ,pdata 
+3743 6000804c store 1 ,mem_state_map 
+3744 70801100 hjam 0 ,core_encrypt 
+3745 20600000 rtn 
+
+sniff_init:
+3746 793f8025 set0 mark_ext_patch ,mark 
+3747 44b6c00d bpatch patch0d_5 ,mem_patch0d 
+3748 1c427e00 copy clkn_bt ,pdata 
+3749 600242b1 store 4 ,mem_lpm_delay_after_sniff 
+374a 1c40a203 add clkn_bt ,3 ,rega 
+374b 2034b74d branch sniff_init_master ,master 
+374c 1d00a203 add clke_bt ,3 ,rega 
+
+sniff_init_master:
+374d 68090032 fetcht 2 ,mem_tsniff 
+374e 1a227e00 deposit rega 
+374f 793ffe1b set0 27 ,pdata 
+3750 9846fc00 idiv temp 
+3751 68010075 fetch 2 ,mem_dsniff 
+3752 20407f53 call wait_div_end 
+3753 18072600 remainder regc 
+3754 9a667e00 isub regc ,pdata 
+3755 20213757 branch sniff_init_nowrap ,positive 
+3756 9840fe00 iadd temp ,pdata 
+
+sniff_init_nowrap:
+3757 9a20fe00 iadd rega ,pdata 
+3758 60020034 store 4 ,mem_sniff_anchor 
+3759 7045f400 jam switch_flag_init ,mem_switch_flag 
+375a 68008030 fetch 1 ,mem_state 
+375b 79207e01 set1 state_insniff ,pdata 
+375c 60008030 store 1 ,mem_state 
+375d 68008073 fetch 1 ,mem_sniff_attempt 
+375e 6000808a store 1 ,mem_current_sniff_attempt 
+375f 58000000 setarg 0 
+3760 6001c209 store 3 ,mem_sniff_rcv 
+3761 6001c20c store 3 ,mem_sniff_lost 
+3762 6000c1f9 store 1 ,mem_sniff_unint_lost 
+3763 7009bd0b jam bt_evt_enter_sniff ,mem_fifo_temp 
+3764 20407d86 call ui_ipc_send_event 
+3765 68014161 fetch 2 ,mem_rx_window_sniff 
+3766 6001003e store 2 ,mem_rx_window 
+3767 24748000 nrtn master 
+3768 18808fff add am_addr ,-1 ,queue 
+3769 20600000 rtn 
+
+sniff_exit:
+376a 793f8025 set0 mark_ext_patch ,mark 
+376b 44b7400d bpatch patch0d_6 ,mem_patch0d 
+376c 68008030 fetch 1 ,mem_state 
+376d c4008000 rtnbit0 state_insniff 
+376e 793ffe01 set0 state_insniff ,pdata 
+376f 60008030 store 1 ,mem_state 
+3770 6801415f fetch 2 ,mem_rx_window_init 
+3771 6001003e store 2 ,mem_rx_window 
+3772 7855fc00 disable wake 
+3773 7009bd0c jam bt_evt_exit_sniff ,mem_fifo_temp 
+3774 20207d86 branch ui_ipc_send_event 
+
+check_attempt:
+3775 793f8025 set0 mark_ext_patch ,mark 
+3776 44b7c00d bpatch patch0d_7 ,mem_patch0d 
+3777 78377c00 enable attempt 
+3778 68008030 fetch 1 ,mem_state 
+3779 c280b783 bbit1 state_insniff ,check_attempt_sniff 
+377a c6088000 rtnmark1 mark_testmode 
+377b 68008047 fetch 1 ,mem_arq 
+377c c3818000 rtnbit1 wack 
+377d 68008048 fetch 1 ,mem_lmp_to_send 
+377e 247a0000 nrtn blank 
+377f 6800804b fetch 1 ,mem_op 
+3780 c3830000 rtnbit1 op_txl2cap 
+
+check_attempt_nomore:
+3781 18007e00 force 0 ,pdata 
+3782 20600000 rtn 
+
+check_attempt_sniff:
+3783 c3013792 bbit0 state_insco ,check_attempt_not_sco 
+3784 6800808a fetch 1 ,mem_current_sniff_attempt 
+3785 c0013789 beq 2 ,check_attempt_sniff_restore_sco 
+3786 68008047 fetch 1 ,mem_arq 
+3787 c281b79b bbit1 wack ,check_attempt_notimeout 
+3788 c584379b bmark0 mark_esco_rxok ,check_attempt_notimeout 
+
+check_attempt_sniff_restore_sco:
+3789 2434b79b nbranch check_attempt_notimeout ,master 
+378a 68008048 fetch 1 ,mem_lmp_to_send 
+378b 243a379b nbranch check_attempt_notimeout ,blank 
+
+check_attempt_sco_master:
+378c 680080ee fetch 1 ,mem_sco_poll 
+378d 1fe0ffff increase -1 ,pdata 
+378e 600080ee store 1 ,mem_sco_poll 
+378f 243a3781 nbranch check_attempt_nomore ,blank 
+3790 7000ee10 jam param_sco_poll ,mem_sco_poll 
+3791 2020379b branch check_attempt_notimeout 
+
+check_attempt_not_sco:
+3792 6800808a fetch 1 ,mem_current_sniff_attempt 
+3793 c080b79b bne 1 ,check_attempt_notimeout 
+3794 6800808b fetch 1 ,mem_current_sniff_timeout 
+3795 203a379b branch check_attempt_notimeout ,blank 
+3796 1fe0ffff increase -1 ,pdata 
+3797 6000808b store 1 ,mem_current_sniff_timeout 
+3798 68008047 fetch 1 ,mem_arq 
+3799 c3818000 rtnbit1 wack 
+379a 24768000 nrtn match 
+
+check_attempt_notimeout:
+379b 6800808a fetch 1 ,mem_current_sniff_attempt 
+379c 1fe0ffff increase -1 ,pdata 
+379d 6000808a store 1 ,mem_current_sniff_attempt 
+379e 20600000 rtn 
+
+sniff_check_window:
+379f 793f8025 set0 mark_ext_patch ,mark 
+37a0 44b8400e bpatch patch0e_0 ,mem_patch0e 
+37a1 78487c00 disable swfine 
+37a2 18423600 copy temp ,stop_watch 
+37a3 204032a1 call context_search_sniff_window 
+37a4 78547c00 disable user 
+37a5 24628000 nrtn zero 
+37a6 18003600 force 0 ,stop_watch 
+37a7 78347c00 enable user 
+37a8 20600000 rtn 
+
+check_esco_amaddr:
+37a9 6800c1f8 fetch 1 ,mem_esco_addr 
+37aa a881fe00 icompare 0xff ,am_addr 
+37ab 20600000 rtn 
+
+parse_l2cap:
+37ac 793f8025 set0 mark_ext_patch ,mark 
+37ad 44b8c00e bpatch patch0e_1 ,mem_patch0e 
+37ae 793f8001 set0 mark_rxbuf_inuse ,mark 
+
+parse_l2cap_cont:
+37af 70029300 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+37b0 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37b1 207a0000 rtn blank 
+37b2 2feffe00 isolate1 l2cap_inuse_buff1 ,pdata 
+37b3 d8c01000 arg mem_l2cap_rxbuff1 ,contr 
+37b4 2040c2fa call process_rx_l2cap_pkt ,true 
+37b5 793f8025 set0 mark_ext_patch ,mark 
+37b6 44b9400e bpatch patch0e_2 ,mem_patch0e 
+37b7 68008293 fetch 1 ,mem_l2cap_rx_done 
+37b8 c000b7c1 beq l2cap_rx_done ,parse_l2cap_release_buff1 
+37b9 70029300 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+37ba 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37bb c4008000 rtnbit0 l2cap_inuse_buff2 
+37bc d8c01400 arg mem_l2cap_rxbuff2 ,contr 
+37bd 204042fa call process_rx_l2cap_pkt 
+37be 68008293 fetch 1 ,mem_l2cap_rx_done 
+37bf c000b7c7 beq l2cap_rx_done ,parse_l2cap_release_buff2 
+37c0 20600000 rtn 
+
+parse_l2cap_release_buff1:
+37c1 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37c2 793ffe00 set0 l2cap_inuse_buff1 ,pdata 
+37c3 6000828c store 1 ,mem_l2cap_rxbuff_inuse 
+37c4 58000000 setarg 0 
+37c5 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+37c6 20600000 rtn 
+
+parse_l2cap_release_buff2:
+37c7 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37c8 793ffe01 set0 l2cap_inuse_buff2 ,pdata 
+37c9 6000828c store 1 ,mem_l2cap_rxbuff_inuse 
+37ca 58000000 setarg 0 
+37cb 60010288 store 2 ,mem_l2cap_rxbuff2_len 
+37cc 20600000 rtn 
+
+l2cap_buff1_inuse:
+37cd 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37ce 79207e00 set1 l2cap_inuse_buff1 ,pdata 
+37cf 6000828c store 1 ,mem_l2cap_rxbuff_inuse 
+37d0 20600000 rtn 
+
+l2cap_buff2_inuse:
+37d1 6800828c fetch 1 ,mem_l2cap_rxbuff_inuse 
+37d2 79207e01 set1 l2cap_inuse_buff2 ,pdata 
+37d3 6000828c store 1 ,mem_l2cap_rxbuff_inuse 
+37d4 20600000 rtn 
+
+slave_send_access:
+37d5 793f8025 set0 mark_ext_patch ,mark 
+37d6 44b9c00e bpatch patch0e_3 ,mem_patch0e 
+37d7 1d00c201 add clke_bt ,1 ,bt_clk 
+37d8 20403982 call fetch_extm_bt_adr 
+37d9 18004803 force 0x03 ,freq_mode 
+37da 20403967 call tx_radio_freq 
+37db 20403aee call start_transmitter 
+37dc 20403aff call start_tx_external 
+37dd 20203b05 branch send_access_word 
+
+slave_conn_send_packet:
+37de 793f8025 set0 mark_ext_patch ,mark 
+37df 44ba400e bpatch patch0e_4 ,mem_patch0e 
+37e0 20403aea call rf_setup_time_slave_slot 
+37e1 1d027e00 deposit clke_bt 
+37e2 680a416a fetcht 4 ,mem_next_btclk 
+37e3 98467e00 isub temp ,pdata 
+37e4 c1808000 rtnne 1 
+37e5 28203e00 compare type_null ,type ,0x1f 
+37e6 2420b7e9 nbranch slave_conn_send_access ,true 
+37e7 68008019 fetch 1 ,mem_rx_type 
+37e8 207a0000 rtn blank 
+
+slave_conn_send_access:
+37e9 204037d5 call slave_send_access 
+37ea 28203e10 compare type_id ,type ,0x1f 
+37eb 2020b6c6 branch end_of_packet ,true 
+
+transmit_packet:
+37ec 1c230400 rshift bt_clk ,temp 
+37ed 18419c40 or temp ,0x40 ,white_init 
+
+transmit_packet_whitened:
+37ee 793f8025 set0 mark_ext_patch ,mark 
+37ef 44bac00e bpatch patch0e_5 ,mem_patch0e 
+37f0 7823fc00 enable enable_white 
+37f1 78257c00 enable enable_hec 
+37f2 782dfc00 enable encode_fec1 
+37f3 793f8010 set0 mark_longpacket ,mark 
+37f4 18827e00 deposit am_addr 
+37f5 08008603 inject mod ,3 
+37f6 18227e00 deposit type 
+37f7 08008604 inject mod ,4 
+37f8 68008047 fetch 1 ,mem_arq 
+37f9 08008004 inject bucket ,4 
+37fa 08008603 inject mod ,3 
+37fb 78247c00 enable enable_parity 
+37fc 08008608 inject mod ,8 
+37fd 784dfc00 disable encode_fec1 
+37fe 78447c00 disable enable_parity 
+37ff 78457c00 disable enable_hec 
+3800 793faa02 set0 psk3m ,radio_ctrl 
+3801 d8400000 arg 0 ,temp 
+3802 20403ab4 call reserve_slot 
+3803 793f8025 set0 mark_ext_patch ,mark 
+3804 44bb400e bpatch patch0e_6 ,mem_patch0e 
+3805 18217e1f and type ,0x1f ,pdata 
+3806 c009b840 beq type_lmp ,transmit_lmp 
+3807 c00036c6 beq type_null ,end_of_packet 
+3808 c000b6c6 beq type_poll ,end_of_packet 
+3809 c0013822 beq type_fhs ,transmit_fhs 
+380a c001b852 beq type_dm1 ,transmit_dm1 
+380b c0023858 beq type_dh1 ,transmit_dh1 
+380c c003b816 beq type_hv3 ,transmit_hev 
+380d c0043857 beq type_3dh1 ,transmit_3dh1 
+380e d8400004 arg 4 ,temp 
+380f 20403ab4 call reserve_slot 
+3810 c0053854 beq type_dm3 ,transmit_dm3 
+3811 c005b85a beq type_dh3 ,transmit_dh3 
+3812 d8400008 arg 8 ,temp 
+3813 20403ab4 call reserve_slot 
+3814 c007b85a beq type_dh5 ,transmit_dh5 
+3815 20203854 branch transmit_dm5 
+
+transmit_hev:
+3816 793f8025 set0 mark_ext_patch ,mark 
+3817 44bbc00e bpatch patch0e_7 ,mem_patch0e 
+3818 782efc00 enable encode_fec0 
+3819 7824fc00 enable enable_crc 
+381a 78277c00 enable encrypt 
+381b 1800721e force 30 ,loopcnt 
+381c d8c000b2 arg mem_sco_obuf ,contr 
+
+transmit_ev_loop:
+381d e8c08000 ifetch 1 ,contr 
+381e 08008608 inject mod ,8 
+381f c200381d loop transmit_ev_loop 
+3820 c503b885 bmark1 mark_esco ,transmit_end 
+3821 202036c6 branch end_of_packet 
+
+transmit_fhs:
+3822 793f8025 set0 mark_ext_patch ,mark 
+3823 44bc400f bpatch patch0f_0 ,mem_patch0f 
+3824 68008180 fetch 1 ,mem_fhs_am_addr 
+3825 1fe20800 icopy am_addr 
+3826 6800808f fetch 1 ,mem_fhs_misc 
+3827 1fe23800 icopy fhs_misc 
+3828 6801c14a fetch 3 ,mem_class 
+3829 1fe23a00 icopy fhs_class 
+382a 68014144 fetch 2 ,mem_nap 
+382b 1fe25c00 icopy nap 
+382c 7824fc00 enable enable_crc 
+382d 782e7c00 enable encode_fec2 
+382e 1c022200 copy bt_adr ,rega 
+382f 20403979 call fetch_self_bt_adr 
+3830 782afc00 pulse recalc 
+3831 20000020 nop 32 
+3832 1c221600 copy bt_clk ,timeup 
+3833 68020160 fetch 4 ,mem_clkn_bt 
+3834 1fe24200 icopy bt_clk 
+3835 53c07e00 preload fhs0 
+3836 79207e3a set1 58 ,pdata 
+3837 08008648 inject mod ,72 
+3838 53e07e00 preload fhs1 
+3839 08008648 inject mod ,72 
+383a 19624200 copy timeup ,bt_clk 
+383b 1a224000 copy rega ,bt_adr 
+383c 78247c00 enable enable_parity 
+383d 08008610 inject mod ,16 
+383e 78447c00 disable enable_parity 
+383f 202036c6 branch end_of_packet 
+
+transmit_lmp:
+3840 793f8025 set0 mark_ext_patch ,mark 
+3841 44bcc00f bpatch patch0f_1 ,mem_patch0f 
+3842 78277c00 enable encrypt 
+3843 7824fc00 enable enable_crc 
+3844 782e7c00 enable encode_fec2 
+3845 680083dc fetch 1 ,mem_lmo_header_length 
+3846 1fe105f8 and pdata ,0x1f8 ,temp 
+3847 d8c003dc arg mem_lmo_header_length ,contr 
+3848 18408408 increase 8 ,temp 
+
+transmit_lmp_loop:
+3849 1840a7b8 add temp ,-72 ,regc 
+384a 2421384f nbranch transmit_lmp_finish ,positive 
+384b e8c48000 ifetch 9 ,contr 
+384c 08008648 inject mod ,72 
+384d 1a620400 copy regc ,temp 
+384e 20203849 branch transmit_lmp_loop 
+
+transmit_lmp_finish:
+384f e8c48000 ifetch 9 ,contr 
+3850 08418600 iinject mod ,temp 
+3851 20203885 branch transmit_end 
+
+transmit_dm1:
+3852 782e7c00 enable encode_fec2 
+3853 2020385d branch transmit_dmh 
+
+transmit_dm3:
+
+transmit_dm5:
+3854 782e7c00 enable encode_fec2 
+3855 79200010 set1 mark_longpacket ,mark 
+3856 2020385d branch transmit_dmh 
+
+transmit_3dh1:
+3857 79202a02 set1 psk3m ,radio_ctrl 
+
+transmit_dh1:
+3858 782efc00 enable encode_fec0 
+3859 2020385d branch transmit_dmh 
+
+transmit_dh3:
+
+transmit_dh5:
+385a 79202a02 set1 psk3m ,radio_ctrl 
+385b 782efc00 enable encode_fec0 
+385c 79200010 set1 mark_longpacket ,mark 
+
+transmit_dmh:
+385d 793f8025 set0 mark_ext_patch ,mark 
+385e 44bd400f bpatch patch0f_2 ,mem_patch0f 
+385f 6800804c fetch 1 ,mem_state_map 
+3860 c302b873 bbit0 smap_edr ,transmit_noedr 
+3861 18267c03 sub type ,3 ,null 
+3862 20213873 branch transmit_noedr ,positive 
+3863 78477c00 disable encrypt 
+3864 784e7c00 disable encode_fec2 
+3865 782efc00 enable encode_fec0 
+3866 7843fc00 disable enable_white 
+3867 79202a01 set1 psk ,radio_ctrl 
+3868 2aaffe02 isolate1 psk3m ,radio_ctrl 
+3869 2020b86d branch transmit_edr3m ,true 
+386a 580abeee setarg 0xabeee 
+386b 08008614 inject mod ,20 
+386c 20203871 branch transmit_edr_sync_end 
+
+transmit_edr3m:
+386d 585faeba setarg 0x5faeba 
+386e 08008618 inject mod ,24 
+386f 58000012 setarg 0x12 
+3870 08008606 inject mod ,6 
+
+transmit_edr_sync_end:
+3871 7823fc00 enable enable_white 
+3872 79200010 set1 mark_longpacket ,mark 
+
+transmit_noedr:
+3873 78277c00 enable encrypt 
+3874 7824fc00 enable enable_crc 
+3875 c502b88e bmark1 mark_loopback ,transmit_loopback 
+3876 6800c27d fetch 1 ,mem_tx_lch 
+3877 08008603 inject mod ,3 
+3878 6801427e fetch 2 ,mem_tx_len 
+3879 98007200 iforce loopcnt 
+387a c508387d bmark1 mark_longpacket ,transmit_long 
+387b 08008605 inject mod ,5 
+387c 2020387e branch transmit_stuff 
+
+transmit_long:
+387d 0800860d inject mod ,13 
+
+transmit_stuff:
+387e 1f227e00 deposit loopcnt 
+387f 203a3885 branch transmit_end ,blank 
+3880 6801016e fetch 2 ,mem_txptr 
+3881 98000c00 iforce contr 
+
+transmit_stuff_loop:
+3882 e8c08000 ifetch 1 ,contr 
+3883 08008608 inject mod ,8 
+3884 c2003882 loop transmit_stuff_loop 
+
+transmit_end:
+3885 78247c00 enable enable_parity 
+3886 08008610 inject mod ,16 
+3887 78447c00 disable enable_parity 
+3888 20403523 call set_wait_ack 
+3889 6800804c fetch 1 ,mem_state_map 
+388a c302b6c6 bbit0 smap_edr ,end_of_packet 
+388b 18007e00 force 0 ,pdata 
+388c 08008606 inject mod ,6 
+388d 202036c6 branch end_of_packet 
+
+transmit_loopback:
+388e 793f8025 set0 mark_ext_patch ,mark 
+388f 44bdc00f bpatch patch0f_3 ,mem_patch0f 
+3890 c5083897 bmark1 mark_longpacket ,transmit_loopback_long 
+
+transmit_loopback_short:
+3891 6800817f fetch 1 ,mem_lch_code 
+3892 08008603 inject mod ,3 
+3893 6800815e fetch 1 ,mem_len 
+3894 98002600 iforce regc 
+3895 08008605 inject mod ,5 
+3896 2020389c branch transmit_loopback_cont 
+
+transmit_loopback_long:
+3897 6800817f fetch 1 ,mem_lch_code 
+3898 08008603 inject mod ,3 
+3899 6801015e fetch 2 ,mem_len 
+389a 98002600 iforce regc 
+389b 0800860d inject mod ,13 
+
+transmit_loopback_cont:
+389c d8c00475 arg mem_rxbuf ,contr 
+
+transmit_loopback_loop:
+389d 1a627c00 copy regc ,null 
+389e 2022b8a3 branch transmit_loopback_end ,zero 
+389f e8c08000 ifetch 1 ,contr 
+38a0 08008608 inject mod ,8 
+38a1 1a60a7ff increase -1 ,regc 
+38a2 2020389d branch transmit_loopback_loop 
+
+transmit_loopback_end:
+38a3 680100fb fetch 2 ,mem_tst_pktcnt_dmh 
+38a4 1fe0fe01 increase 1 ,pdata 
+38a5 600100fb store 2 ,mem_tst_pktcnt_dmh 
+38a6 20203885 branch transmit_end 
+
+apply_switch_clke:
+38a7 68020164 fetch 4 ,mem_clke_bt 
+38a8 1fe0a207 add pdata ,7 ,rega 
+38a9 68010170 fetch 2 ,mem_slot_offset 
+38aa 243a38ad nbranch apply_switch_nozero ,blank 
+38ab 1a20a3fd increase -3 ,rega 
+38ac 202038b5 branch apply_switch_wait_loop 
+
+apply_switch_nozero:
+38ad 1feffe0c mul32 pdata ,12 ,pdata 
+38ae 68190040 hfetcht 2 ,core_halfslot 
+38af 18408401 increase 1 ,temp 
+
+apply_switch_loop:
+38b0 98467e00 isub temp ,pdata 
+38b1 242138b4 nbranch apply_switch_bt ,positive 
+38b2 1a20a3ff increase -1 ,rega 
+38b3 202038b0 branch apply_switch_loop 
+
+apply_switch_bt:
+38b4 1fe67e00 sub pdata ,0 ,pdata 
+
+apply_switch_wait_loop:
+38b5 37d18200 until null ,oneslot 
+38b6 2c400600 compare 0 ,clkn_bt ,3 
+38b7 2420b8b5 nbranch apply_switch_wait_loop ,true 
+38b8 98005200 iforce clke_rt 
+38b9 1a225000 copy rega ,clke_bt 
+38ba 98005200 iforce clke_rt 
+38bb 20600000 rtn 
+
+calc_slot_offset:
+38bc 793f8025 set0 mark_ext_patch ,mark 
+38bd 44be400f bpatch patch0f_4 ,mem_patch0f 
+38be 37d10200 until null ,halfslot 
+38bf 1b427e00 deposit clke 
+38c0 98000c00 iforce contr 
+38c1 1ff17e00 rshift16 ,pdata ,pdata 
+38c2 9c467200 isub clkn_bt ,loopcnt 
+38c3 1f217203 and_into 3 ,loopcnt 
+38c4 2422b8c7 nbranch calc_bt_portion ,zero 
+38c5 18007e00 force 0 ,pdata 
+38c6 202038cb branch calc_skip_bt 
+
+calc_bt_portion:
+38c7 d8400ea6 arg 3750 ,temp 
+38c8 18007e00 force 0 ,pdata 
+
+calc_slot_offset_loop:
+38c9 9840fe00 iadd temp ,pdata 
+38ca c20038c9 loop calc_slot_offset_loop 
+
+calc_skip_bt:
+38cb 98c0fe00 iadd contr ,pdata 
+38cc 1fe6fc0c div pdata ,12 
+38cd 20407f53 call wait_div_end 
+38ce 1807fe00 quotient pdata 
+38cf 60010170 store 2 ,mem_slot_offset 
+38d0 20600000 rtn 
+
+calc_clke_offset:
+38d1 793f8025 set0 mark_ext_patch ,mark 
+38d2 44bec00f bpatch patch0f_5 ,mem_patch0f 
+38d3 1b427e00 deposit clke 
+38d4 1b220400 copy clkn ,temp 
+38d5 98467c00 isub temp ,null 
+38d6 7d217e2c nsetflag positive ,44 ,pdata 
+38d7 98460400 isub temp ,temp 
+38d8 58000ea6 setarg 3750 
+38d9 284c000f isolate0 15 ,temp 
+38da 2020b8dd branch calc_clke_pos ,true 
+38db 5fff0ea6 setarg -61786 
+38dc 98408400 iadd temp ,temp 
+
+calc_clke_pos:
+38dd 600b036a storet 6 ,mem_le_clk_offset 
+38de 207b0000 rtn le 
+38df 600b0038 storet 6 ,mem_clk_offset 
+38e0 20600000 rtn 
+
+calc_clke:
+38e1 78587c00 disable clknt 
+38e2 6803036a fetch 6 ,mem_le_clk_offset 
+38e3 203b38e5 branch calc_clke2 ,le 
+38e4 68030038 fetch 6 ,mem_clk_offset 
+
+calc_clke2:
+38e5 9b20e000 iadd clkn ,alarm 
+38e6 1e00e00a increase 10 ,alarm 
+38e7 58000ea6 setarg 3750 
+38e8 9e067e00 isub alarm ,pdata 
+38e9 2fec000f isolate0 15 ,pdata 
+38ea 2020b8ef branch calc_clke_pos_adj ,true 
+38eb 5800f15a setarg 0xf15a 
+38ec 9e00e000 iadd alarm ,alarm 
+
+calc_clke_pos2:
+38ed 1e023400 copy alarm ,clke 
+38ee 20600000 rtn 
+
+calc_clke_pos_adj:
+38ef 18007c00 force 0 ,null 
+38f0 202038ed branch calc_clke_pos2 
+
+calc_radio_freq:
+38f1 793f8025 set0 mark_ext_patch ,mark 
+38f2 44bf400f bpatch patch0f_6 ,mem_patch0f 
+38f3 204039b1 call set_sync_on 
+38f4 1c227e00 copy bt_clk ,pdata 
+38f5 1fe17f80 and_into 0x180 ,pdata 
+38f6 2c800e03 compare 3 ,freq_mode ,0x07 
+38f7 2420b8fb nbranch freq_not_connection ,true 
+38f8 1fe97e00 rshift3 pdata ,pdata 
+38f9 9ae0fe00 iadd freq_index ,pdata 
+38fa 202038fc branch do_hop_mod_now 
+
+freq_not_connection:
+38fb 1ae27e00 copy freq_index ,pdata 
+
+do_hop_mod_now:
+38fc 1fe6fc4f div pdata ,79 
+38fd 782afc00 pulse recalc 
+38fe 20407f53 call wait_div_end 
+38ff 18072200 remainder rega 
+3900 1a2085d8 add rega ,-40 ,temp 
+3901 20213904 branch odd_half ,positive 
+3902 1a238400 lshift rega ,temp 
+3903 20203906 branch freq_result 
+
+odd_half:
+3904 18438400 lshift temp ,temp 
+3905 18408401 increase 1 ,temp 
+
+freq_result:
+3906 793f8025 set0 mark_ext_patch ,mark 
+3907 44bfc00f bpatch patch0f_7 ,mem_patch0f 
+3908 68008031 fetch 1 ,mem_mode 
+3909 c301b918 bbit0 afh_change ,afh_process_con 
+
+afh_process_0:
+390a 68024172 fetch 4 ,mem_afh_instant 
+390b 9c267c00 isub bt_clk ,null 
+390c 20213918 branch afh_process_con ,positive 
+390d 20403937 call afh_clear 
+390e 6800c179 fetch 1 ,mem_afh_new_mod 
+390f 207a0000 rtn blank 
+3910 68008031 fetch 1 ,mem_mode 
+3911 79207e02 set1 afh_enable ,pdata 
+3912 60008031 store 1 ,mem_mode 
+3913 6802c187 fetch 5 ,mem_afh_map_new 
+3914 6002c17a store 5 ,mem_afh_map_lo 
+3915 e8c28000 ifetch 5 ,contr 
+3916 6002c17f store 5 ,mem_afh_map_hi 
+3917 2040393c call afh_process_freq_map 
+
+afh_process_con:
+3918 68008031 fetch 1 ,mem_mode 
+3919 c4010000 rtnbit0 afh_enable 
+391a 2c2ffe01 isolate1 1 ,bt_clk 
+391b 2020b934 branch afh_same_channel ,true 
+391c 18492200 rshift3 temp ,rega 
+391d 18410e07 and temp ,7 ,queue 
+391e 5800417a setarg mem_afh_map_lo 
+391f 9a20a200 iadd rega ,rega 
+3920 ea208000 ifetch 1 ,rega 
+3921 afec0000 qisolate0 pdata 
+3922 2020b925 branch afh_process_1 ,true 
+3923 18427e00 deposit temp 
+3924 20203931 branch afh_process_end 
+
+afh_process_1:
+3925 6800c184 fetch 1 ,mem_afh_used 
+3926 98002400 iforce regb 
+3927 1c227e00 deposit bt_clk 
+3928 1fe17f80 and_into 0x180 ,pdata 
+3929 1fe97e00 rshift3 pdata ,pdata 
+392a 9ae0fe00 iadd freq_index ,pdata 
+392b 9a46fc00 idiv regb 
+392c 58004192 setarg mem_afh_map 
+392d 20407f53 call wait_div_end 
+392e 18072200 remainder rega 
+392f 9a208c00 iadd rega ,contr 
+3930 e8c08000 ifetch 1 ,contr 
+
+afh_process_end:
+3931 6000c185 store 1 ,mem_afh_index 
+3932 98000400 iforce temp 
+3933 20600000 rtn 
+
+afh_same_channel:
+3934 6800c185 fetch 1 ,mem_afh_index 
+3935 98000400 iforce temp 
+3936 20600000 rtn 
+
+afh_clear:
+3937 68008031 fetch 1 ,mem_mode 
+3938 793ffe02 set0 afh_enable ,pdata 
+3939 793ffe03 set0 afh_change ,pdata 
+393a 60008031 store 1 ,mem_mode 
+393b 20600000 rtn 
+
+afh_process_freq_map:
+393c 793f8025 set0 mark_ext_patch ,mark 
+393d 44c04010 bpatch patch10_0 ,mem_patch10 
+393e d8a04192 arg mem_afh_map ,contw 
+393f 1800720a force 10 ,loopcnt 
+3940 20407e91 call memset0 
+3941 d8a04192 arg mem_afh_map ,contw 
+3942 18002600 force 0 ,regc 
+3943 18000e02 force 2 ,queue 
+
+process_freq_3:
+3944 6802c17a fetch 5 ,mem_afh_map_lo 
+3945 98000400 iforce temp 
+3946 28e1fe02 compare 2 ,queue ,0xff 
+3947 2020b949 branch process_freq_1 ,true 
+3948 18430400 rshift temp ,temp 
+
+process_freq_1:
+3949 284c0000 isolate0 0 ,temp 
+394a 2020b94d branch process_freq_0 ,true 
+394b 1a627e00 deposit regc 
+394c e0a08000 istore 1 ,contw 
+
+process_freq_0:
+394d 184b0400 rshift2 temp ,temp 
+394e 1a60a602 increase 2 ,regc 
+394f 2a61fc28 compare 40 ,regc ,0xfe 
+3950 2420b956 nbranch process_freq_2 ,true 
+3951 6802c17f fetch 5 ,mem_afh_map_hi 
+3952 98000400 iforce temp 
+3953 28e1fe02 compare 2 ,queue ,0xff 
+3954 2020b956 branch process_freq_2 ,true 
+3955 18430400 rshift temp ,temp 
+
+process_freq_2:
+3956 1a667c4e sub regc ,78 ,null 
+3957 20213949 branch process_freq_1 ,positive 
+3958 18002601 force 1 ,regc 
+3959 18e08fff increase -1 ,queue 
+395a 2422b944 nbranch process_freq_3 ,zero 
+395b da204192 arg mem_afh_map ,rega 
+395c 18a27e00 deposit contw 
+395d 9a267e00 isub rega ,pdata 
+395e 6000c184 store 1 ,mem_afh_used 
+395f 20600000 rtn 
+
+rx_radio_freq:
+3960 793f8025 set0 mark_ext_patch ,mark 
+3961 44c0c010 bpatch patch10_1 ,mem_patch10 
+3962 204038f1 call calc_radio_freq 
+3963 6800817e fetch 1 ,mem_debug_config 
+3964 c302b966 bbit0 debug_rx_fixed_freq ,rx_radio_freq_now 
+3965 680883f2 fetcht 1 ,mem_rx_fixed_freq 
+
+rx_radio_freq_now:
+3966 202039b9 branch set_freq_rx 
+
+tx_radio_freq:
+3967 793f8025 set0 mark_ext_patch ,mark 
+3968 44c14010 bpatch patch10_2 ,mem_patch10 
+3969 204038f1 call calc_radio_freq 
+396a 6800817e fetch 1 ,mem_debug_config 
+396b c302396d bbit0 debug_tx_fixed_freq ,tx_radio_freq_now 
+396c 680883f1 fetcht 1 ,mem_tx_fixed_freq 
+
+tx_radio_freq_now:
+396d 202039c9 branch set_freq_tx 
+
+fetch_giac:
+396e 18005a00 force 0 ,uap 
+396f 6801c147 fetch 3 ,mem_glap 
+3970 98005800 iforce lap 
+3971 20600000 rtn 
+
+fetch_page_bt_adr:
+3972 793f8025 set0 mark_ext_patch ,mark 
+3973 44c1c010 bpatch patch10_3 ,mem_patch10 
+3974 6800c276 fetch 1 ,mem_hci_puap 
+3975 1fe25a00 icopy uap 
+3976 6801c273 fetch 3 ,mem_hci_plap 
+3977 1fe25800 icopy lap 
+3978 20600000 rtn 
+
+fetch_self_bt_adr:
+3979 793f8025 set0 mark_ext_patch ,mark 
+397a 44c24010 bpatch patch10_4 ,mem_patch10 
+397b 68014144 fetch 2 ,mem_nap 
+397c 1fe25c00 icopy nap 
+397d 6800c143 fetch 1 ,mem_uap 
+397e 1fe25a00 icopy uap 
+397f 6801c140 fetch 3 ,mem_lap 
+3980 1fe25800 icopy lap 
+3981 20600000 rtn 
+
+fetch_extm_bt_adr:
+3982 793f8025 set0 mark_ext_patch ,mark 
+3983 44c2c010 bpatch patch10_5 ,mem_patch10 
+3984 68010044 fetch 2 ,mem_pnap 
+3985 1fe25c00 icopy nap 
+3986 68008043 fetch 1 ,mem_puap 
+3987 1fe25a00 icopy uap 
+3988 68018040 fetch 3 ,mem_plap 
+3989 1fe25800 icopy lap 
+398a 20600000 rtn 
+
+fetch_diac:
+398b c510398e bmark1 mark_all_diac ,fetch_diac_do 
+398c c68e8000 rtnmark0 mark_inquiry_state 
+398d c68f8000 rtnmark0 mark_periodical_diac 
+
+fetch_diac_do:
+398e 1d815900 and_into -256 ,lap 
+398f 782afc00 pulse recalc 
+3990 20000020 nop 32 
+3991 20600000 rtn 
+
+shutdown_radio:
+3992 793f8025 set0 mark_ext_patch ,mark 
+3993 44c34010 bpatch patch10_6 ,mem_patch10 
+3994 2030b9a3 branch shutdown_radio0 ,is_rx 
+3995 708955d4 hjam 0xd4 ,0x955 
+3996 20000004 nop 4 
+3997 708955d2 hjam 0xd2 ,0x955 
+3998 20000004 nop 4 
+3999 708955d1 hjam 0xd1 ,0x955 
+399a 20000004 nop 4 
+399b 6800c280 fetch 1 ,mem_tx_power 
+399c c28039a1 bbit1 tx_power_0db ,shutdown_radio_0db 
+399d c280b9ae bbit1 tx_power_3db ,shutdown_radio_3db 
+399e c28139a1 bbit1 tx_power_5db ,shutdown_radio_5db 
+399f c281b9ae bbit1 tx_power_f3db ,shutdown_radio_f3db 
+39a0 c28239ae bbit1 tx_power_f5db ,shutdown_radio_f5db 
+
+shutdown_radio_5db:
+
+shutdown_radio_0db:
+39a1 708955d0 hjam 0xd0 ,0x955 
+39a2 708956e0 hjam 0xe0 ,0x956 
+
+shutdown_radio0:
+39a3 18002a00 force 0 ,radio_ctrl 
+39a4 7850fc00 disable is_rx 
+39a5 78507c00 disable is_tx 
+39a6 782f7c00 pulse packet_end 
+39a7 70890200 hjam 0x0 ,rfen_mdm 
+39a8 70890100 hjam 0x0 ,rfen_tx 
+39a9 70890000 hjam 0x0 ,rfen_rx 
+39aa 70890300 hjam 0 ,rfen_sn 
+39ab 70890470 hjam 0x70 ,rfen_msc 
+39ac 70890600 hjam 0x0 ,rfen_adc 
+39ad 20600000 rtn 
+
+shutdown_radio_f5db:
+
+shutdown_radio_f3db:
+
+shutdown_radio_3db:
+39ae 708955d0 hjam 0xd0 ,0x955 
+39af 708956c0 hjam 0xc0 ,0x956 
+39b0 202039a3 branch shutdown_radio0 
+
+set_sync_on:
+39b1 793f8025 set0 mark_ext_patch ,mark 
+39b2 44c3c010 bpatch patch10_7 ,mem_patch10 
+39b3 70890200 hjam 0x0 ,rfen_mdm 
+39b4 70890100 hjam 0x0 ,rfen_tx 
+39b5 70890018 hjam 0x18 ,rfen_rx 
+39b6 708903a7 hjam 0xa7 ,rfen_sn 
+39b7 7089047f hjam 0x7f ,rfen_msc 
+39b8 20600000 rtn 
+
+set_freq_rx:
+39b9 793f8025 set0 mark_ext_patch ,mark 
+39ba 44c44011 bpatch patch11_0 ,mem_patch11 
+39bb 60088017 storet 1 ,mem_last_freq 
+39bc 1840a204 add temp ,rx_freq_offset ,rega 
+39bd 70896d07 hjam 0x07 ,0x96d 
+39be 20203a13 branch rf_write_freq 
+
+rf_rx_enable:
+39bf 793f8025 set0 mark_ext_patch ,mark 
+39c0 44c4c011 bpatch patch11_1 ,mem_patch11 
+39c1 708901cf hjam 0xcf ,rfen_tx 
+39c2 2000000a nop 10 
+39c3 708900ff hjam 0xff ,rfen_rx 
+39c4 708903af hjam 0xaf ,rfen_sn 
+39c5 708904ff hjam 0xff ,rfen_msc 
+39c6 2000000a nop 10 
+39c7 708902a0 hjam 0xa0 ,rfen_mdm 
+39c8 20600000 rtn 
+
+set_freq_tx:
+39c9 793f8025 set0 mark_ext_patch ,mark 
+39ca 44c54011 bpatch patch11_2 ,mem_patch11 
+39cb 60088017 storet 1 ,mem_last_freq 
+39cc 1840a200 add temp ,0 ,rega 
+39cd 20403a13 call rf_write_freq 
+39ce 58000500 setarg param_pll_setup 
+39cf 20403b35 call sleep 
+
+txon:
+39d0 70890601 hjam 0x1 ,rfen_adc 
+39d1 7089003c hjam 0x3c ,rfen_rx 
+39d2 708901e0 hjam 0xe0 ,rfen_tx 
+39d3 70896d12 hjam 0x12 ,0x96d 
+39d4 2000000a nop 10 
+39d5 70890201 hjam 0x01 ,rfen_mdm 
+39d6 7089023d hjam 0x3d ,rfen_mdm 
+39d7 2000000a nop 10 
+39d8 708903b7 hjam 0xb7 ,rfen_sn 
+39d9 2000000a nop 10 
+39da 7089027f hjam 0x7f ,rfen_mdm 
+39db 6800c280 fetch 1 ,mem_tx_power 
+39dc c28039e1 bbit1 tx_power_0db ,set_tx_power_0db 
+39dd c280b9e5 bbit1 tx_power_3db ,set_tx_power_3db 
+39de c28139e9 bbit1 tx_power_5db ,set_tx_power_5db 
+39df c281b9ed bbit1 tx_power_f3db ,set_tx_power_f3db 
+39e0 c28239f1 bbit1 tx_power_f5db ,set_tx_power_f5db 
+
+set_tx_power_0db:
+39e1 708956f0 hjam 0xf0 ,0x956 
+39e2 204039f5 call txon_common 
+39e3 708955d8 hjam 0xd8 ,0x955 
+39e4 20600000 rtn 
+
+set_tx_power_3db:
+39e5 708956df hjam 0xdf ,0x956 
+39e6 204039f5 call txon_common 
+39e7 708955df hjam 0xdf ,0x955 
+39e8 20600000 rtn 
+
+set_tx_power_5db:
+39e9 708956ff hjam 0xff ,0x956 
+39ea 204039f5 call txon_common 
+39eb 708955df hjam 0xdf ,0x955 
+39ec 20600000 rtn 
+
+set_tx_power_f3db:
+39ed 708956ce hjam 0xce ,0x956 
+39ee 204039f5 call txon_common 
+39ef 708955d8 hjam 0xd8 ,0x955 
+39f0 20600000 rtn 
+
+set_tx_power_f5db:
+39f1 708956cb hjam 0xcb ,0x956 
+39f2 204039f5 call txon_common 
+39f3 708955d8 hjam 0xd8 ,0x955 
+39f4 20600000 rtn 
+
+txon_common:
+39f5 20000004 nop 4 
+39f6 708955d1 hjam 0xd1 ,0x955 
+39f7 20000004 nop 4 
+39f8 708955d2 hjam 0xd2 ,0x955 
+39f9 20000004 nop 4 
+39fa 708955d4 hjam 0xd4 ,0x955 
+39fb 20600000 rtn 
+
+initialize_radio:
+39fc 70804206 hjam clksel_rc ,core_clksel 
+39fd 20403b64 call init_rf_param 
+
+initialize_radio_wait:
+39fe 68014163 fetch 2 ,mem_rf_init_ptr 
+39ff c30739fe bbit0 14 ,initialize_radio_wait 
+3a00 98000c00 iforce contr 
+3a01 d8408900 arg 0x8900 ,temp 
+
+initialize_radio_loop:
+3a02 e8c08000 ifetch 1 ,contr 
+3a03 c07fba08 beq 0xff ,initialize_radio_cont 
+3a04 98418a00 ior temp ,contw 
+3a05 e8c08000 ifetch 1 ,contr 
+3a06 e0a08000 istore 1 ,contw 
+3a07 20203a02 branch initialize_radio_loop 
+
+initialize_radio_cont:
+3a08 793f8025 set0 mark_ext_patch ,mark 
+3a09 44c5c011 bpatch patch11_3 ,mem_patch11 
+3a0a 20403cd2 call lpm_cal_xtal_startup 
+3a0b 20403a5f call switchto_dpllclk 
+3a0c 580007d0 setarg param_dpll_start_delay 
+3a0d 9c40fe00 iadd clkn_bt ,pdata 
+3a0e 60020168 store 4 ,mem_dpll_clkn 
+3a0f 79202a03 set1 reset ,radio_ctrl 
+3a10 18002a00 force 0 ,radio_ctrl 
+3a11 2455ba2b ncall do_rccal ,wake 
+3a12 20203a3f branch set_rccal 
+
+rf_write_freq:
+3a13 793f8025 set0 mark_ext_patch ,mark 
+3a14 44c64011 bpatch patch11_4 ,mem_patch11 
+3a15 58000960 setarg 2400 
+3a16 9a208400 iadd rega ,temp 
+3a17 6800c15d fetch 1 ,mem_fcomp_mul 
+3a18 70895f04 hjam 0x04 ,rf_pll_rstn 
+3a19 984ffe00 imul32 temp ,pdata 
+3a1a 6808c15e fetcht 1 ,mem_fcomp_div 
+3a1b 9846fc00 idiv temp 
+3a1c 20407f53 call wait_div_end 
+3a1d 1807a200 quotient rega 
+3a1e 18077e00 remainder pdata 
+3a1f 1ff07e00 lshift16 pdata ,pdata 
+3a20 1ff27e00 lshift4 pdata ,pdata 
+3a21 9846fc00 idiv temp 
+3a22 20407f53 call wait_div_end 
+3a23 1807fe00 quotient pdata 
+3a24 1fed7e00 lshift8 pdata ,pdata 
+3a25 1fe3fe00 lshift pdata ,pdata 
+3a26 9a21fe00 ior rega ,pdata 
+3a27 60120960 hstore 4 ,rf_pll_intg 
+3a28 70895f44 hjam 0x44 ,rf_pll_rstn 
+3a29 70895fc4 hjam 0xc4 ,rf_pll_rstn 
+3a2a 20600000 rtn 
+
+do_rccal:
+3a2b 793f8025 set0 mark_ext_patch ,mark 
+3a2c 44c6c011 bpatch patch11_5 ,mem_patch11 
+3a2d 70890602 hjam 0x02 ,rfen_adc 
+3a2e 5803d090 setarg 250000 
+3a2f 20403b35 call sleep 
+3a30 7089007f hjam 0x7f ,rfen_rx 
+3a31 20000082 nop 130 
+3a32 70895230 hjam 0x30 ,rf_rccal_ctrl 
+3a33 708901d0 hjam 0xd0 ,rfen_tx 
+3a34 70895270 hjam 0x70 ,rf_rccal_ctrl 
+3a35 708952f0 hjam 0xf0 ,rf_rccal_ctrl 
+3a36 18007232 force 50 ,loopcnt 
+
+do_rccal_loop:
+3a37 68108980 hfetch 1 ,rf_rccal_result 
+3a38 c282ba3a bbit1 5 ,do_rccal_end 
+3a39 c2003a37 loop do_rccal_loop 
+
+do_rccal_end:
+3a3a 6000c16e store 1 ,mem_rf_rccal 
+3a3b 70890100 hjam 0 ,rfen_tx 
+3a3c 70890000 hjam 0 ,rfen_rx 
+3a3d 70890600 hjam 0x00 ,rfen_adc 
+3a3e 20600000 rtn 
+
+set_rccal:
+3a3f 793f8025 set0 mark_ext_patch ,mark 
+3a40 44c74011 bpatch patch11_6 ,mem_patch11 
+3a41 6800c16e fetch 1 ,mem_rf_rccal 
+3a42 79207e05 set1 5 ,pdata 
+3a43 60108952 hstore 1 ,rf_rccal_ctrl 
+3a44 68188950 hfetcht 1 ,rf_bpf_ctrim 
+3a45 18410407 and_into 7 ,temp 
+3a46 1fe9fe00 lshift3 pdata ,pdata 
+3a47 9841fe00 ior temp ,pdata 
+3a48 60108950 hstore 1 ,rf_bpf_ctrim 
+3a49 68108951 hfetch 1 ,rf_bpf_ib 
+3a4a 793ffe00 set0 bpf_rccal ,pdata 
+3a4b 60108951 hstore 1 ,rf_bpf_ib 
+3a4c 68108952 hfetch 1 ,rf_adc_rccal 
+3a4d 793ffe05 set0 adc_rccal ,pdata 
+3a4e 60108952 hstore 1 ,rf_adc_rccal 
+3a4f 20600000 rtn 
+
+save_rssi:
+3a50 793f8025 set0 mark_ext_patch ,mark 
+3a51 44c7c011 bpatch patch11_7 ,mem_patch11 
+3a52 68110981 hfetch 2 ,rf_afc_d2a 
+3a53 1ff1fe00 rshift4 pdata ,pdata 
+3a54 1fe97e00 rshift3 pdata ,pdata 
+3a55 1fe67e00 sub pdata ,0 ,pdata 
+3a56 1fe17eff and_into 0xff ,pdata 
+3a57 1fe6fc0a div pdata ,10 
+3a58 20407f53 call wait_div_end 
+3a59 1807fe00 quotient pdata 
+3a5a 1ff27e00 lshift4 pdata ,pdata 
+3a5b 18070400 remainder temp 
+3a5c 9841fe00 ior temp ,pdata 
+3a5d 60008018 store 1 ,mem_rssi 
+3a5e 20600000 rtn 
+
+switchto_dpllclk:
+3a5f 70804206 hjam clksel_rc ,core_clksel 
+3a60 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+3a61 793ffe04 set0 4 ,pdata 
+3a62 793ffe05 set0 5 ,pdata 
+3a63 6010896b hstore 1 ,rf_clkpll_frac + 2 
+3a64 70890500 hjam 0x00 ,rfen_ck 
+3a65 70890400 hjam 0x00 ,rfen_msc 
+3a66 70890470 hjam 0x70 ,rfen_msc 
+3a67 708905ff hjam 0xff ,rfen_ck 
+3a68 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+3a69 79207e04 set1 4 ,pdata 
+3a6a 79207e05 set1 5 ,pdata 
+3a6b 6010896b hstore 1 ,rf_clkpll_frac + 2 
+3a6c 20403a7d call init_lpm_ctrl 
+3a6d 68108968 hfetch 1 ,rf_clkpll_int 
+3a6e 79207e07 set1 7 ,pdata 
+3a6f 60108968 hstore 1 ,rf_clkpll_int 
+3a70 793ffe07 set0 7 ,pdata 
+3a71 60108968 hstore 1 ,rf_clkpll_int 
+3a72 79207e07 set1 7 ,pdata 
+3a73 60108968 hstore 1 ,rf_clkpll_int 
+3a74 70804204 hjam clksel_xtal ,core_clksel 
+3a75 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+3a76 1fe17ecf and_into 0xcf ,pdata 
+3a77 6010896b hstore 1 ,rf_clkpll_frac + 2 
+3a78 1fe1fe30 or_into 0x30 ,pdata 
+3a79 6010896b hstore 1 ,rf_clkpll_frac + 2 
+3a7a 20600000 rtn 
+
+xtal_fast_wake:
+3a7b 58000f0f setarg 0xf0f 
+3a7c 20203ceb branch lpm_write_config 
+
+init_lpm_ctrl:
+3a7d 5800080f setarg 0x80f 
+3a7e 20203ceb branch lpm_write_config 
+
+start_receiver:
+3a7f 793f8025 set0 mark_ext_patch ,mark 
+3a80 44c84012 bpatch patch12_0 ,mem_patch12 
+3a81 204039bf call rf_rx_enable 
+3a82 78507c00 disable is_tx 
+3a83 7830fc00 enable is_rx 
+3a84 782b7c00 pulse init_encrypt 
+3a85 20600000 rtn 
+
+prep_crypt:
+3a86 793f8025 set0 mark_ext_patch ,mark 
+3a87 44c8c012 bpatch patch12_1 ,mem_patch12 
+3a88 6800804c fetch 1 ,mem_state_map 
+3a89 2feffe02 isolate1 smap_encryption ,pdata 
+3a8a 7920fe00 setflag true ,0 ,pdata 
+3a8b 60108011 hstore 1 ,core_encrypt 
+3a8c d8c00062 arg mem_kc ,contr 
+3a8d e8c48000 ifetch 9 ,contr 
+3a8e 98006400 iforce kc_ls 
+3a8f e8c38000 ifetch 7 ,contr 
+3a90 98006600 iforce kc_ms 
+3a91 68008054 fetch 1 ,mem_key_size 
+3a92 1fe0e9ff add pdata ,-1 ,g1l 
+3a93 782d7c00 pulse kc_p_activate 
+3a94 20600000 rtn 
+
+wait_access_end:
+3a95 1b427e00 deposit clke 
+3a96 60030099 store 6 ,mem_sync_clke 
+3a97 7846fc00 disable decode_fec0 
+3a98 242c3992 nbranch shutdown_radio ,sync 
+3a99 dd2003bb arg param_clke_cal ,clke_rt 
+3a9a 1d00d001 increase 1 ,clke_bt 
+3a9b 1d0151fc and_into 0x1fc ,clke_bt 
+3a9c 20600000 rtn 
+
+wait_access_mhalfbnd:
+3a9d 7826fc00 enable decode_fec0 
+
+wait_access_mhalfbnd_correlate:
+3a9e 37cb8400 correlate null ,mhalfbnd 
+3a9f 202c3a95 branch wait_access_end ,sync 
+3aa0 2d000402 compare 0x02 ,clke_bt ,0x02 
+3aa1 2420ba9e nbranch wait_access_mhalfbnd_correlate ,true 
+3aa2 20203a95 branch wait_access_end 
+
+wait_access_clkn_rt:
+3aa3 793f8025 set0 mark_ext_patch ,mark 
+3aa4 44c94012 bpatch patch12_2 ,mem_patch12 
+3aa5 d9600600 arg param_conn_access ,timeup 
+3aa6 7826fc00 enable decode_fec0 
+3aa7 34730400 correlate clkn_rt ,meet 
+3aa8 7846fc00 disable decode_fec0 
+3aa9 242c3992 nbranch shutdown_radio ,sync 
+3aaa 20600000 rtn 
+
+wait_access_forever:
+3aab 793f8025 set0 mark_ext_patch ,mark 
+3aac 44c9c012 bpatch patch12_3 ,mem_patch12 
+3aad 7826fc00 enable decode_fec0 
+3aae 37c18400 correlate null ,timeout 
+3aaf 7846fc00 disable decode_fec0 
+3ab0 242c3992 nbranch shutdown_radio ,sync 
+3ab1 dd2003bb arg param_clke_cal ,clke_rt 
+3ab2 1d0151fc and_into 0x1fc ,clke_bt 
+3ab3 20600000 rtn 
+
+reserve_slot:
+3ab4 793f8025 set0 mark_ext_patch ,mark 
+3ab5 44ca4012 bpatch patch12_4 ,mem_patch12 
+3ab6 98002200 iforce rega 
+3ab7 1c227e00 deposit bt_clk 
+3ab8 98409600 iadd temp ,timeup 
+3ab9 19627e00 copy timeup ,pdata 
+3aba 6002416a store 4 ,mem_next_btclk 
+3abb 1a227e00 deposit rega 
+3abc 20600000 rtn 
+
+ahead_window:
+3abd 1fe20400 copy pdata ,temp 
+3abe 793f8025 set0 mark_ext_patch ,mark 
+3abf 44cac012 bpatch patch12_5 ,mem_patch12 
+3ac0 18427e00 copy temp ,pdata 
+3ac1 20407f1d call clk2bt 
+3ac2 1c307e00 lshift16 bt_clk ,pdata 
+3ac3 79207e2c set1 44 ,pdata 
+3ac4 20407f06 call clk_diff 
+3ac5 793ffe2c set0 44 ,pdata 
+3ac6 20403b1a call get_clk 
+3ac7 20407f06 call clk_diff 
+3ac8 20740000 rtn user 
+3ac9 20407f10 call clk2rt 
+3aca 98003600 iforce stop_watch 
+3acb 37c18200 until null ,timeout 
+3acc 20600000 rtn 
+
+setup_clk:
+3acd 793f8025 set0 mark_ext_patch ,mark 
+3ace 44cb4012 bpatch patch12_6 ,mem_patch12 
+3acf 20383ad3 branch setup_clkn ,clknt 
+3ad0 35330200 until clke_rt ,meet 
+
+skip_setup_clke:
+3ad1 1d020400 copy clke_bt ,temp 
+3ad2 20203ad6 branch setup_clknbt 
+
+setup_clkn:
+3ad3 20373ad5 branch skip_setup_clkn ,attempt 
+3ad4 34730200 until clkn_rt ,meet 
+
+skip_setup_clkn:
+3ad5 1c420400 copy clkn_bt ,temp 
+
+setup_clknbt:
+3ad6 20343ae3 branch setup_clk11 ,user 
+3ad7 28400601 compare 1 ,temp ,3 
+3ad8 2420bacd nbranch setup_clk ,true 
+
+setup_complete:
+3ad9 793f8025 set0 mark_ext_patch ,mark 
+3ada 44cbc012 bpatch patch12_7 ,mem_patch12 
+3adb 68008030 fetch 1 ,mem_state 
+3adc c4000000 rtnbit0 state_inconn 
+3add 6802416a fetch 4 ,mem_next_btclk 
+3ade 98467e00 isub temp ,pdata 
+3adf 24610000 nrtn positive 
+3ae0 1fe67cff sub pdata ,0xff ,null 
+3ae1 20213acd branch setup_clk ,positive 
+3ae2 20600000 rtn 
+
+setup_clk11:
+3ae3 28400603 compare 3 ,temp ,3 
+3ae4 2420bacd nbranch setup_clk ,true 
+3ae5 20203ad9 branch setup_complete 
+
+rf_setup_time:
+3ae6 793f8025 set0 mark_ext_patch ,mark 
+3ae7 44cc4013 bpatch patch13_0 ,mem_patch13 
+3ae8 d9600600 arg param_rf_setup ,timeup 
+3ae9 20203acd branch setup_clk 
+
+rf_setup_time_slave_slot:
+3aea 78547c00 disable user 
+3aeb 20203ae6 branch rf_setup_time 
+
+rf_setup_time_master_slot:
+3aec 78347c00 enable user 
+3aed 20203ae6 branch rf_setup_time 
+
+start_transmitter:
+3aee 793f8025 set0 mark_ext_patch ,mark 
+3aef 44ccc013 bpatch patch13_1 ,mem_patch13 
+3af0 20403a86 call prep_crypt 
+3af1 7850fc00 disable is_rx 
+3af2 78307c00 enable is_tx 
+3af3 20600000 rtn 
+
+start_tx_native:
+3af4 793f8025 set0 mark_ext_patch ,mark 
+3af5 44cd4013 bpatch patch13_2 ,mem_patch13 
+3af6 d9600e43 arg param_tx_setup ,timeup 
+3af7 34730200 until clkn_rt ,meet 
+3af8 782b7c00 pulse init_encrypt 
+3af9 20600000 rtn 
+
+start_rx_native:
+3afa 793f8025 set0 mark_ext_patch ,mark 
+3afb 44cdc013 bpatch patch13_3 ,mem_patch13 
+3afc d9600d00 arg param_rx_setup ,timeup 
+3afd 34730200 until clkn_rt ,meet 
+3afe 20600000 rtn 
+
+start_tx_external:
+3aff 793f8025 set0 mark_ext_patch ,mark 
+3b00 44ce4013 bpatch patch13_4 ,mem_patch13 
+3b01 d9600e43 arg param_tx_setup ,timeup 
+3b02 35330200 until clke_rt ,meet 
+3b03 782b7c00 pulse init_encrypt 
+3b04 20600000 rtn 
+
+send_access_word:
+3b05 793f8025 set0 mark_ext_patch ,mark 
+3b06 44cec013 bpatch patch13_5 ,mem_patch13 
+3b07 51207e00 preload access 
+3b08 782efc00 enable encode_fec0 
+3b09 79202a00 set1 txgfsk ,radio_ctrl 
+3b0a 08008648 inject mod ,72 
+3b0b 784efc00 disable encode_fec0 
+3b0c 20600000 rtn 
+
+scan_mode_whiten:
+3b0d 1ca20400 copy xin ,temp 
+3b0e 18418460 or_into 0x60 ,temp 
+3b0f 18421c00 copy temp ,white_init 
+3b10 20600000 rtn 
+
+get_free_amaddr:
+3b11 793f8025 set0 mark_ext_patch ,mark 
+3b12 44cf4013 bpatch patch13_6 ,mem_patch13 
+3b13 6800c130 fetch 1 ,mem_current_amaddr 
+3b14 1fe0fe01 increase 1 ,pdata 
+3b15 c083bb17 bne param_esco_addr ,get_free_amaddr_cont 
+3b16 18007e01 force 1 ,pdata 
+
+get_free_amaddr_cont:
+3b17 6000c130 store 1 ,mem_current_amaddr 
+3b18 98000800 iforce am_addr 
+3b19 20600000 rtn 
+
+get_clk:
+3b1a 1b220400 copy clkn ,temp 
+3b1b 20748000 rtn master 
+3b1c 1b420400 copy clke ,temp 
+3b1d 20600000 rtn 
+
+get_clkbt:
+3b1e 1c427e00 deposit clkn_bt 
+3b1f 20748000 rtn master 
+3b20 1d027e00 deposit clke_bt 
+3b21 20600000 rtn 
+
+supervision_update:
+3b22 793f8025 set0 mark_ext_patch ,mark 
+3b23 44cfc013 bpatch patch13_7 ,mem_patch13 
+3b24 680a004d fetcht 4 ,mem_supervision_timer 
+3b25 20403b1e call get_clkbt 
+3b26 98461600 isub temp ,timeup 
+3b27 19627e00 deposit timeup 
+3b28 68090051 fetcht 2 ,mem_supervision_to 
+3b29 18438400 lshift temp ,temp 
+3b2a 98467e00 isub temp ,pdata 
+3b2b 20600000 rtn 
+
+supervision_flush:
+3b2c 793f8025 set0 mark_ext_patch ,mark 
+3b2d 44d04014 bpatch patch14_0 ,mem_patch14 
+3b2e 20403b1e call get_clkbt 
+3b2f 6002004d store 4 ,mem_supervision_timer 
+3b30 20600000 rtn 
+
+assert:
+3b31 793f8025 set0 mark_ext_patch ,mark 
+3b32 44d0c014 bpatch patch14_1 ,mem_patch14 
+3b33 20600000 rtn 
+
+loop:
+3b34 20203b34 branch loop 
+
+sleep:
+3b35 207a0000 rtn blank 
+3b36 1fe37e00 rshift pdata ,pdata 
+3b37 1fe0fffd increase -3 ,pdata 
+
+sleep_loop:
+3b38 1fe0ffff increase -1 ,pdata 
+3b39 2422bb38 nbranch sleep_loop ,zero 
+3b3a 18007e00 force 0 ,pdata 
+3b3b 20600000 rtn 
+
+init_param:
+3b3c df200010 arg 0x10 ,loopcnt 
+3b3d d8a00000 arg 0 ,contw 
+3b3e 20407e91 call memset0 
+3b3f d8a00362 arg mem_le_state ,contw 
+3b40 df20000a arg 10 ,loopcnt 
+3b41 20407e91 call memset0 
+3b42 7008d600 jam 0 ,mem_sp_calc 
+3b43 7009bd00 jam 0 ,mem_fifo_temp 
+3b44 7003b000 jam 0 ,mem_le_testtype 
+3b45 70017e00 jam 0 ,mem_debug_config 
+3b46 7003f700 jam 0 ,mem_lmp_conn_state 
+3b47 793f8025 set0 mark_ext_patch ,mark 
+3b48 44d14014 bpatch patch14_2 ,mem_patch14 
+3b49 70016c00 jam 0 ,mem_connection_options 
+3b4a 70015000 jam 0 ,mem_tester_emulate 
+3b4b 70015b00 jam 0 ,mem_tester_cnt 
+3b4c 589e8b33 setarg param_glap 
+3b4d 6001c147 store 3 ,mem_glap 
+3b4e 58000153 setarg param_acl_pktlen 
+3b4f 60010083 store 2 ,mem_acl_pktlen 
+3b50 7000851e jam param_sco_pktlen ,mem_sco_pktlen 
+3b51 70008601 jam param_acl_pktcnt ,mem_acl_pktcnt 
+3b52 70008807 jam param_sco_pktcnt ,mem_sco_pktcnt 
+3b53 5812e904 setarg param_hci_version 
+3b54 60018080 store 3 ,mem_hci_version 
+3b55 70008f60 jam 0x60 ,mem_fhs_misc 
+3b56 70417005 jam param_max_slot ,mem_max_slot 
+3b57 70001402 jam 0x02 ,mem_fw_ver 
+3b58 6800c6e2 fetch 1 ,mem_ssp_enable 
+3b59 245a71ea ncall init_memp ,blank 
+3b5a 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+3b5b 245a7241 ncall init_memp_256 ,blank 
+3b5c 793f8025 set0 mark_ext_patch ,mark 
+3b5d 44d1c014 bpatch patch14_3 ,mem_patch14 
+3b5e 20758000 rtn wake 
+3b5f 58000000 setarg 0 
+3b60 6001427e store 2 ,mem_tx_len 
+3b61 1c437e00 rshift clkn_bt ,pdata 
+3b62 60024134 store 4 ,mem_last_clkn 
+3b63 20600000 rtn 
+
+init_rf_param:
+3b64 7089091f hjam 0x1f ,0x909 
+3b65 70891245 hjam 0x45 ,0x912 
+3b66 70895300 hjam 0x00 ,0x953 
+3b67 70896f88 hjam 0x88 ,0x96f 
+3b68 70897330 hjam 0x30 ,0x973 
+3b69 708956c9 hjam 0xc9 ,0x956 
+3b6a 708907ff hjam 0xff ,0x907 
+3b6b 70890801 hjam 0x01 ,0x908 
+3b6c 70890af8 hjam 0xf8 ,0x90a 
+3b6d 70890bff hjam 0xff ,0x90b 
+3b6e 70891afb hjam 0xfb ,0x91a 
+3b6f 70891bfb hjam 0xfb ,0x91b 
+3b70 70891cfb hjam 0xfb ,0x91c 
+3b71 70891df6 hjam 0xf6 ,0x91d 
+3b72 70891ef2 hjam 0xf2 ,0x91e 
+3b73 70891fee hjam 0xee ,0x91f 
+3b74 708920ea hjam 0xea ,0x920 
+3b75 708921e6 hjam 0xe6 ,0x921 
+3b76 708922e2 hjam 0xe2 ,0x922 
+3b77 708923de hjam 0xde ,0x923 
+3b78 708924da hjam 0xda ,0x924 
+3b79 708925d6 hjam 0xd6 ,0x925 
+3b7a 708926d2 hjam 0xd2 ,0x926 
+3b7b 708927ce hjam 0xce ,0x927 
+3b7c 708928ca hjam 0xca ,0x928 
+3b7d 708929c6 hjam 0xc6 ,0x929 
+3b7e 70892ac2 hjam 0xc2 ,0x92a 
+3b7f 70892bbd hjam 0xbd ,0x92b 
+3b80 70892cb9 hjam 0xb9 ,0x92c 
+3b81 70892db5 hjam 0xb5 ,0x92d 
+3b82 70892eb1 hjam 0xb1 ,0x92e 
+3b83 70892fad hjam 0xad ,0x92f 
+3b84 708930a9 hjam 0xa9 ,0x930 
+3b85 70893180 hjam 0x80 ,0x931 
+3b86 70893280 hjam 0x80 ,0x932 
+3b87 70893380 hjam 0x80 ,0x933 
+3b88 708934c0 hjam 0xc0 ,0x934 
+3b89 708935c1 hjam 0xc1 ,0x935 
+3b8a 708936c2 hjam 0xc2 ,0x936 
+3b8b 708937c3 hjam 0xc3 ,0x937 
+3b8c 708938c4 hjam 0xc4 ,0x938 
+3b8d 708939c5 hjam 0xc5 ,0x939 
+3b8e 70893ac6 hjam 0xc6 ,0x93a 
+3b8f 70893bc7 hjam 0xc7 ,0x93b 
+3b90 70893c06 hjam 0x06 ,0x93c 
+3b91 70893d07 hjam 0x07 ,0x93d 
+3b92 70893e46 hjam 0x46 ,0x93e 
+3b93 70893f85 hjam 0x85 ,0x93f 
+3b94 70894086 hjam 0x86 ,0x940 
+3b95 70894187 hjam 0x87 ,0x941 
+3b96 708942c6 hjam 0xc6 ,0x942 
+3b97 708943c7 hjam 0xc7 ,0x943 
+3b98 708944d6 hjam 0xd6 ,0x944 
+3b99 708945d7 hjam 0xd7 ,0x945 
+3b9a 708946e6 hjam 0xe6 ,0x946 
+3b9b 708947f5 hjam 0xf5 ,0x947 
+3b9c 70894800 hjam 0x00 ,0x948 
+3b9d 708949f8 hjam 0xf8 ,0x949 
+3b9e 70894a7f hjam 0x7f ,0x94a 
+3b9f 70894cfb hjam 0xfb ,0x94c 
+3ba0 70894def hjam 0xef ,0x94d 
+3ba1 70894eec hjam 0xec ,0x94e 
+3ba2 70894f5e hjam 0x5e ,0x94f 
+3ba3 7089574c hjam 0x4c ,0x957 
+3ba4 7089586c hjam 0x6c ,0x958 
+3ba5 70895950 hjam 0x50 ,0x959 
+3ba6 708968e4 hjam 0xe4 ,0x968 
+3ba7 70896900 hjam 0x00 ,0x969 
+3ba8 70896a00 hjam 0x00 ,0x96a 
+3ba9 70896b30 hjam 0x30 ,0x96b 
+3baa 20600000 rtn 
+
+lpmstate:
+3bab 5800ee21 setarg 0xee21 
+3bac 60110050 hstore 2 ,core_clkoff 
+3bad 6810813e hfetch 1 ,core_lpm_ldocnt 
+3bae c301e13b bbit0 gpio_latch ,loadcode 
+3baf 7835fc00 enable wake 
+3bb0 c303bbb6 bbit0 cold_wake ,lpmwake 
+3bb1 7855fc00 disable wake 
+3bb2 1ce27e00 deposit auxcnt 
+3bb3 243a3bb6 nbranch lpmwake ,blank 
+3bb4 d85fffff arg param_hibernate_clks ,temp 
+3bb5 20203c24 branch lpm_enter_sleep 
+
+lpmwake:
+3bb6 6811813c hfetch 3 ,core_lpm_xtalcnt 
+3bb7 6011804c hstore 3 ,core_lpm_reg 
+3bb8 e8c08000 ifetch 1 ,contr 
+3bb9 1fe1feef or_into isogate_mask ,pdata 
+3bba e0a08000 istore 1 ,contw 
+3bbb 20403cf6 call lpm_write_ctrl2 
+3bbc 6810804f hfetch 1 ,core_lpm_isogate 
+3bbd 79207e04 set1 enable_retmem ,pdata 
+3bbe 6010804f hstore 1 ,core_lpm_isogate 
+3bbf 20403cf6 call lpm_write_ctrl2 
+3bc0 2055bbc7 call lpm_load_context ,wake 
+3bc1 6810804e hfetch 1 ,core_lpm_reg + 2 
+3bc2 793ffe03 set0 gpio_latch ,pdata 
+3bc3 6010804e hstore 1 ,core_lpm_reg + 2 
+3bc4 20403cf6 call lpm_write_ctrl2 
+3bc5 20758000 rtn wake 
+3bc6 2020613b branch loadcode 
+
+lpm_load_context:
+3bc7 6800c238 fetch 1 ,mem_saved_spidctrl 
+3bc8 60108086 hstore 1 ,core_spid_ctrl 
+3bc9 6801c22d fetch 3 ,mem_saved_gsel 
+3bca 60118080 hstore 3 ,core_gpio_sel 
+3bcb 68024221 fetch 4 ,mem_saved_gpio + 4 
+3bcc 60120074 hstore 4 ,core_gpio_out0 
+3bcd 6802421d fetch 4 ,mem_saved_gpio 
+3bce 60120070 hstore 4 ,core_gpio_oe0 
+3bcf 68044225 fetch 8 ,mem_saved_gpio + 8 
+3bd0 60140078 hstore 8 ,core_gpio_pu0 
+3bd1 68044230 fetch 8 ,mem_saved_mark 
+3bd2 98000000 iforce mark 
+3bd3 68140140 hfetch 8 ,core_gpio_wakeup_low 
+3bd4 600400a0 store 8 ,mem_gpio_wakeup_low 
+3bd5 2040619f call load_ucode 
+3bd6 20600000 rtn 
+
+lpm_save_context:
+3bd7 18027e00 deposit mark 
+3bd8 60044230 store 8 ,mem_saved_mark 
+3bd9 68140070 hfetch 8 ,core_gpio_oe0 
+3bda 6004421d store 8 ,mem_saved_gpio 
+3bdb e8c40000 ifetch 8 ,contr 
+3bdc e0a40000 istore 8 ,contw 
+3bdd 68118080 hfetch 3 ,core_gpio_sel 
+3bde 6001c22d store 3 ,mem_saved_gsel 
+3bdf 68108086 hfetch 1 ,core_spid_ctrl 
+3be0 6000c238 store 1 ,mem_saved_spidctrl 
+3be1 20203cfc branch lpm_write_gpio_wakeup 
+
+lpo_calibration:
+3be2 681080b4 hfetch 1 ,core_bist_ctrl 
+3be3 243a3be8 nbranch lpo_cal_inited ,blank 
+3be4 6801c20f fetch 3 ,mem_clks_per_lpo 
+3be5 247a0000 nrtn blank 
+3be6 7080b4c0 hjam 0xc0 ,core_bist_ctrl 
+3be7 70800680 hjam ccnt_start ,core_misc_ctrl 
+
+lpo_cal_inited:
+3be8 6810812d hfetch 1 ,core_perf_status 
+3be9 c4008000 rtnbit0 1 
+3bea 68118149 hfetch 3 ,core_clk_counter 
+3beb 6001c20f store 3 ,mem_clks_per_lpo 
+3bec 20600000 rtn 
+
+lpm_adjust_clk:
+3bed 793f8025 set0 mark_ext_patch ,mark 
+3bee 44d24014 bpatch patch14_4 ,mem_patch14 
+3bef 1b427e00 deposit clke 
+3bf0 20407f04 call clk_diff_rt 
+3bf1 680a41ff fetcht 4 ,mem_sleep_counter_all 
+3bf2 18467cff sub temp ,0xff ,null 
+3bf3 20610000 rtn positive 
+3bf4 1fed7e00 lshift8 pdata ,pdata 
+3bf5 1ff27e00 lshift4 pdata ,pdata 
+3bf6 9846fc00 idiv temp 
+3bf7 20407f53 call wait_div_end 
+3bf8 1807fe00 quotient pdata 
+3bf9 d84000c8 arg param_lpm_adjmax ,temp 
+3bfa 20407f5e call ceiling 
+3bfb 60008098 store 1 ,mem_lpm_adjust 
+3bfc 24343bfe nbranch lpm_adjust_positive ,user 
+3bfd 1fe67e00 sub pdata ,0 ,pdata 
+
+lpm_adjust_positive:
+3bfe 6809c20f fetcht 3 ,mem_clks_per_lpo 
+3bff 9840fe00 iadd temp ,pdata 
+3c00 6001c20f store 3 ,mem_clks_per_lpo 
+
+lpm_clear_counter:
+3c01 58000000 setarg 0 
+3c02 600241ff store 4 ,mem_sleep_counter_all 
+3c03 20600000 rtn 
+
+lpm_hibernate:
+3c04 793f8025 set0 mark_ext_patch ,mark 
+3c05 44d2c014 bpatch patch14_5 ,mem_patch14 
+3c06 20403cfc call lpm_write_gpio_wakeup 
+3c07 68120138 hfetch 4 ,core_lpm_ctrl 
+3c08 793ffe0f set0 15 ,pdata 
+3c09 6012004c hstore 4 ,core_lpm_reg 
+3c0a 20403cf4 call lpm_write_ctrl 
+
+lpm_hibernate_normal:
+3c0b d85fffff arg param_hibernate_clks ,temp 
+3c0c 6800c1f7 fetch 1 ,mem_lpm_hibernate_switch 
+3c0d 6000c21c store 1 ,mem_lpm_xtalcnt + 4 
+3c0e 6800c21a fetch 1 ,mem_lpm_xtalcnt + 2 
+3c0f 79207e07 set1 cold_wake ,pdata 
+3c10 6000c21a store 1 ,mem_lpm_xtalcnt + 2 
+
+lpm_sleep:
+3c11 793f8025 set0 mark_ext_patch ,mark 
+3c12 44d34014 bpatch patch14_6 ,mem_patch14 
+3c13 20403a7b call xtal_fast_wake 
+3c14 680241ff fetch 4 ,mem_sleep_counter_all 
+3c15 9840fe00 iadd temp ,pdata 
+3c16 600241ff store 4 ,mem_sleep_counter_all 
+3c17 20403bd7 call lpm_save_context 
+3c18 6802c218 fetch 5 ,mem_lpm_xtalcnt 
+3c19 6012004c hstore 4 ,core_lpm_reg 
+3c1a 1fef2200 rshift32 pdata ,rega 
+3c1b 37d98200 until null ,lpo_edge 
+3c1c 1b227e00 deposit clkn 
+3c1d 60034203 store 6 ,mem_sleep_clkn 
+3c1e 70800502 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+3c1f 37d98200 until null ,lpo_edge 
+3c20 37d98200 until null ,lpo_edge 
+3c21 1a227e00 deposit rega 
+3c22 6010804f hstore 1 ,core_lpm_isogate 
+3c23 70800502 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+
+lpm_enter_sleep:
+3c24 37d98200 until null ,lpo_edge 
+3c25 37d98200 until null ,lpo_edge 
+3c26 601a004c hstoret 4 ,core_lpm_reg 
+3c27 70800510 hjam lpmreg_sel_counter ,core_lpm_wr 
+3c28 37df8200 until null ,never 
+
+lpm_recover_clk:
+3c29 793f8025 set0 mark_ext_patch ,mark 
+3c2a 44d3c014 bpatch patch14_7 ,mem_patch14 
+3c2b 58000000 setarg 0 
+3c2c 1ce27c00 copy auxcnt ,null 
+3c2d 2022bc35 branch lpm_recover_timeout ,zero 
+3c2e 6810813c hfetch 1 ,core_lpm_xtalcnt 
+3c2f 6818813d hfetcht 1 ,core_lpm_buckcnt 
+3c30 98467c00 isub temp ,null 
+3c31 20213c33 branch lpm_recover_xtal ,positive 
+3c32 18427e00 deposit temp 
+
+lpm_recover_xtal:
+3c33 9ce67e00 isub auxcnt ,pdata 
+3c34 1fe0fe01 increase 1 ,pdata 
+
+lpm_recover_timeout:
+3c35 1fe0fe08 increase 8 ,pdata 
+3c36 37d98200 until null ,lpo_edge 
+3c37 9e20fe00 iadd lpo_time ,pdata 
+3c38 680a41fb fetcht 4 ,mem_sleep_counter 
+3c39 9840fe00 iadd temp ,pdata 
+3c3a 6809c20f fetcht 3 ,mem_clks_per_lpo 
+3c3b 984ffe00 imul32 temp ,pdata 
+3c3c 1fecfe00 rshift8 pdata ,pdata 
+3c3d 1ff1fe00 rshift4 pdata ,pdata 
+3c3e 1fe0fe6e increase param_lpm_fix ,pdata 
+3c3f d8400ea6 arg 3750 ,temp 
+3c40 9846fc00 idiv temp 
+3c41 20407f53 call wait_div_end 
+3c42 1807fe00 quotient pdata 
+3c43 1ff07e00 lshift16 pdata ,pdata 
+3c44 18070400 remainder temp 
+3c45 9841fe00 ior temp ,pdata 
+3c46 680b4203 fetcht 6 ,mem_sleep_clkn 
+3c47 20407ef9 call clk_add 
+3c48 18423200 copy temp ,clkn 
+3c49 68034048 fetch 6 ,mem_context + coffset_clk_offset 
+3c4a 204038e5 call calc_clke2 
+3c4b 1b427e00 deposit clke 
+3c4c 600309be store 6 ,mem_pdatatemp 
+3c4d 1ce27e00 deposit auxcnt 
+3c4e e0a08000 istore 1 ,contw 
+3c4f 6810811d hfetch 1 ,core_gpio_in1 
+3c50 1fe1fef0 or_into 0xf0 ,pdata 
+3c51 e0a08000 istore 1 ,contw 
+3c52 20600000 rtn 
+
+lpm_dispatch:
+3c53 793f8025 set0 mark_ext_patch ,mark 
+3c54 44d44015 bpatch patch15_0 ,mem_patch15 
+3c55 20403be2 call lpo_calibration 
+3c56 6801c20f fetch 3 ,mem_clks_per_lpo 
+3c57 207a0000 rtn blank 
+3c58 6800c131 fetch 1 ,mem_lpm_mode 
+3c59 207a0000 rtn blank 
+3c5a 6800c6e2 fetch 1 ,mem_ssp_enable 
+3c5b 203a3c5e branch lpm_dispatch_next ,blank 
+3c5c 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+3c5d 207a0000 rtn blank 
+
+lpm_dispatch_next:
+3c5e 6800c565 fetch 1 ,mem_le_sc_calc 
+3c5f 247a0000 nrtn blank 
+3c60 20403d0e call lpm_check_wake_lock 
+3c61 247a0000 nrtn blank 
+3c62 6800c040 fetch 1 ,mem_context 
+3c63 2fe00e03 compare 3 ,pdata ,0x7 
+3c64 2420bc8a nbranch lpm_dispatch_unconn ,true 
+3c65 68014042 fetch 2 ,mem_context + coffset_tsniff 
+3c66 207a0000 rtn blank 
+3c67 20758000 rtn wake 
+
+lpm_dispatch_next0:
+3c68 793f8025 set0 mark_ext_patch ,mark 
+3c69 44d4c015 bpatch patch15_1 ,mem_patch15 
+3c6a 6808809f fetcht 1 ,mem_lpm_current_mult 
+3c6b 68014042 fetch 2 ,mem_context + coffset_tsniff 
+3c6c 984ffe00 imul32 temp ,pdata 
+3c6d 18518400 rshift4 temp ,temp 
+3c6e 184b0400 rshift2 temp ,temp 
+3c6f 98467e00 isub temp ,pdata 
+3c70 680a4044 fetcht 4 ,mem_context + coffset_sniff_anchor 
+3c71 9840fe00 iadd temp ,pdata 
+3c72 6808c1f6 fetcht 1 ,mem_lpm_overhead 
+3c73 98467e00 isub temp ,pdata 
+3c74 1ff06000 lshift16 pdata ,alarm 
+
+lpm_dispatch_next1:
+3c75 793f8025 set0 mark_ext_patch ,mark 
+3c76 44d54015 bpatch patch15_2 ,mem_patch15 
+3c77 6801404e fetch 2 ,mem_context + coffset_rx_window 
+3c78 1fe37e00 rshift pdata ,pdata 
+3c79 20407f1d call clk2bt 
+3c7a 1e027e00 deposit alarm 
+3c7b 20407f06 call clk_diff 
+3c7c 1b420400 copy clke ,temp 
+3c7d 20407f04 call clk_diff_rt 
+3c7e 20740000 rtn user 
+
+lpm_dispatch_sleep:
+3c7f 20407f16 call clk2lpo 
+
+lpm_dispatch_lpo:
+3c80 793f8025 set0 mark_ext_patch ,mark 
+3c81 44d5c015 bpatch patch15_3 ,mem_patch15 
+3c82 6800c218 fetch 1 ,mem_lpm_xtalcnt 
+3c83 98467c00 isub temp ,null 
+3c84 20213c01 branch lpm_clear_counter ,positive 
+3c85 600a41fb storet 4 ,mem_sleep_counter 
+3c86 20403d9f call app_will_enter_lpm 
+3c87 204048a5 call l2cap_lpm_save_txbuf 
+3c88 680a41fb fetcht 4 ,mem_sleep_counter 
+3c89 20203c11 branch lpm_sleep 
+
+lpm_dispatch_unconn:
+3c8a 793f8025 set0 mark_ext_patch ,mark 
+3c8b 44d64015 bpatch patch15_4 ,mem_patch15 
+3c8c 6800c040 fetch 1 ,mem_context 
+3c8d c3800000 rtnbit1 state_inconn 
+3c8e c3818000 rtnbit1 state_inpage 
+3c8f 6800c6e2 fetch 1 ,mem_ssp_enable 
+3c90 203a3c93 branch lpm_unconn_nossp ,blank 
+3c91 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+3c92 207a0000 rtn blank 
+
+lpm_unconn_nossp:
+3c93 793f8025 set0 mark_ext_patch ,mark 
+3c94 44d6c015 bpatch patch15_5 ,mem_patch15 
+3c95 6800c3ff fetch 1 ,mem_le_adv_enable 
+3c96 243a3c99 nbranch lpm_unconn_cont ,blank 
+3c97 6800c133 fetch 1 ,mem_scan_mode 
+3c98 207a0000 rtn blank 
+
+lpm_unconn_cont:
+3c99 680141f4 fetch 2 ,mem_lpm_interval 
+3c9a 207a0000 rtn blank 
+
+lpm_sleep_btclk:
+3c9b 6808c1f6 fetcht 1 ,mem_lpm_overhead 
+3c9c 98467e00 isub temp ,pdata 
+3c9d d8401d4c arg 7500 ,temp 
+3c9e 984ffe00 imul32 temp ,pdata 
+3c9f 20203c7f branch lpm_dispatch_sleep 
+
+lpm_set_mult:
+3ca0 793f8025 set0 mark_ext_patch ,mark 
+3ca1 44d74015 bpatch patch15_6 ,mem_patch15 
+3ca2 7855fc00 disable wake 
+3ca3 68008030 fetch 1 ,mem_state 
+3ca4 c4008000 rtnbit0 state_insniff 
+3ca5 2436bcbc nbranch lpm_not_match ,match 
+3ca6 20403cb7 call lpm_match 
+3ca7 68014161 fetch 2 ,mem_rx_window_sniff 
+3ca8 6001003e store 2 ,mem_rx_window 
+3ca9 68008047 fetch 1 ,mem_arq 
+3caa c281bccb bbit1 wack ,lpm_mult_short 
+3cab c586bccb bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+3cac 20404816 call l2cap_malloc_is_fifo_empty 
+3cad 243a3ccb nbranch lpm_mult_short ,blank 
+3cae 680142a4 fetch 2 ,mem_cb_bt_set_mult 
+3caf 20407f69 call callback_func 
+
+lpm_mult_wait_timeout:
+3cb0 70009f00 jam 0 ,mem_lpm_current_mult 
+3cb1 c586bccb bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+3cb2 6800c214 fetch 1 ,mem_lpm_mult_cnt 
+3cb3 203a3ccf branch lpm_mult_long ,blank 
+3cb4 1fe0ffff increase -1 ,pdata 
+3cb5 6000c214 store 1 ,mem_lpm_mult_cnt 
+3cb6 20600000 rtn 
+
+lpm_match:
+3cb7 7041f900 jam 0 ,mem_sniff_unint_lost 
+3cb8 6801c209 fetch 3 ,mem_sniff_rcv 
+3cb9 1fe0fe01 increase 1 ,pdata 
+3cba 6001c209 store 3 ,mem_sniff_rcv 
+3cbb 20600000 rtn 
+
+lpm_not_match:
+3cbc 793f8025 set0 mark_ext_patch ,mark 
+3cbd 44d7c015 bpatch patch15_7 ,mem_patch15 
+3cbe 68094161 fetcht 2 ,mem_rx_window_sniff 
+3cbf 18430400 rshift temp ,temp 
+3cc0 6801003e fetch 2 ,mem_rx_window 
+3cc1 9840fe00 iadd temp ,pdata 
+3cc2 6001003e store 2 ,mem_rx_window 
+
+lpm_lost:
+3cc3 70009f00 jam 0 ,mem_lpm_current_mult 
+3cc4 6801c20c fetch 3 ,mem_sniff_lost 
+3cc5 1fe0fe01 increase 1 ,pdata 
+3cc6 6001c20c store 3 ,mem_sniff_lost 
+3cc7 6800c1f9 fetch 1 ,mem_sniff_unint_lost 
+3cc8 1fe0fe01 increase 1 ,pdata 
+3cc9 6000c1f9 store 1 ,mem_sniff_unint_lost 
+3cca 20600000 rtn 
+
+lpm_mult_short:
+3ccb 70009f00 jam 0 ,mem_lpm_current_mult 
+3ccc 6800c213 fetch 1 ,mem_lpm_mult_timeout 
+3ccd 6000c214 store 1 ,mem_lpm_mult_cnt 
+3cce 20600000 rtn 
+
+lpm_mult_long:
+3ccf 6808c212 fetcht 1 ,mem_lpm_mult 
+3cd0 6008809f storet 1 ,mem_lpm_current_mult 
+3cd1 20600000 rtn 
+
+lpm_cal_xtal_startup:
+3cd2 793f8025 set0 mark_ext_patch ,mark 
+3cd3 44d84016 bpatch patch16_0 ,mem_patch16 
+3cd4 6800c218 fetch 1 ,mem_lpm_xtalcnt 
+3cd5 247a0000 nrtn blank 
+3cd6 70804206 hjam clksel_rc ,core_clksel 
+3cd7 58000f0c setarg 0xf0c 
+3cd8 20403ceb call lpm_write_config 
+3cd9 58030d40 setarg 200000 
+3cda 20403b35 call sleep 
+3cdb 37d98200 until null ,lpo_edge 
+3cdc 1e226000 copy lpo_time ,alarm 
+3cdd 20403a7b call xtal_fast_wake 
+3cde 70804204 hjam clksel_xtal ,core_clksel 
+3cdf 2000000a nop 10 
+3ce0 37d98200 until null ,lpo_edge 
+3ce1 1e227e00 deposit lpo_time 
+3ce2 9e067e00 isub alarm ,pdata 
+3ce3 1fe0fe30 increase 0x30 ,pdata 
+3ce4 d84000ff arg 0xff ,temp 
+3ce5 20407f5e call ceiling 
+3ce6 6000c218 store 1 ,mem_lpm_xtalcnt 
+3ce7 20007530 nop 30000 
+3ce8 20007530 nop 30000 
+3ce9 20007530 nop 30000 
+3cea 20600000 rtn 
+
+lpm_write_config:
+3ceb d8a00fff arg 0xfff ,contw 
+3cec 98a10a00 iand contw ,contw 
+3ced 6800c215 fetch 1 ,mem_lpm_config 
+3cee 1fe17ef0 and_into 0xf0 ,pdata 
+3cef 1fed7e00 lshift8 pdata ,pdata 
+3cf0 98a1fe00 ior contw ,pdata 
+3cf1 6011004c hstore 2 ,core_lpm_reg 
+3cf2 e8c10000 ifetch 2 ,contr 
+3cf3 e0a10000 istore 2 ,contw 
+
+lpm_write_ctrl:
+3cf4 58000001 setarg lpmreg_sel_ctrl 
+3cf5 20203cf7 branch lpm_write 
+
+lpm_write_ctrl2:
+3cf6 58000002 setarg lpmreg_sel_ctrl2 
+
+lpm_write:
+3cf7 37d98200 until null ,lpo_edge 
+3cf8 60108005 hstore 1 ,core_lpm_wr 
+3cf9 37d98200 until null ,lpo_edge 
+3cfa 37d98200 until null ,lpo_edge 
+3cfb 20600000 rtn 
+
+lpm_write_gpio_wakeup:
+3cfc 793f8025 set0 mark_ext_patch ,mark 
+3cfd 44d8c016 bpatch patch16_1 ,mem_patch16 
+3cfe 680200a0 fetch 4 ,mem_gpio_wakeup_low 
+3cff 6012004c hstore 4 ,core_lpm_reg 
+3d00 58000004 setarg lpmreg_sel_gpiolow 
+3d01 20403cf7 call lpm_write 
+3d02 680200a4 fetch 4 ,mem_gpio_wakeup_high 
+3d03 6012004c hstore 4 ,core_lpm_reg 
+3d04 58000008 setarg lpmreg_sel_gpiohigh 
+3d05 20203cf7 branch lpm_write 
+
+lpm_get_wake_lock:
+3d06 680141f2 fetch 2 ,mem_lpm_wake_lock 
+3d07 f9207e00 qset1 pdata 
+3d08 600141f2 store 2 ,mem_lpm_wake_lock 
+3d09 20600000 rtn 
+
+lpm_put_wake_lock:
+3d0a 680141f2 fetch 2 ,mem_lpm_wake_lock 
+3d0b f93ffe00 qset0 pdata 
+3d0c 600141f2 store 2 ,mem_lpm_wake_lock 
+3d0d 20600000 rtn 
+
+lpm_check_wake_lock:
+3d0e 793f8025 set0 mark_ext_patch ,mark 
+3d0f 44d94016 bpatch patch16_2 ,mem_patch16 
+3d10 20403d9d call app_check_wake_lock 
+3d11 680141f2 fetch 2 ,mem_lpm_wake_lock 
+3d12 1fe22200 copy pdata ,rega 
+3d13 6800804c fetch 1 ,mem_state_map 
+3d14 2feffe06 isolate1 smap_rxlmp ,pdata 
+3d15 7920a20b setflag true ,wake_lock_lmp_rx ,rega 
+3d16 68008078 fetch 1 ,mem_lmo_opcode1 
+3d17 6808807c fetcht 1 ,mem_lmo_opcode2 
+3d18 9840fe00 iadd temp ,pdata 
+3d19 68088048 fetcht 1 ,mem_lmp_to_send 
+3d1a 9840fe00 iadd temp ,pdata 
+3d1b 7d3a220a nsetflag blank ,wake_lock_lmp_tx ,rega 
+
+lpm_check_wake_lock0:
+3d1c 793f8025 set0 mark_ext_patch ,mark 
+3d1d 44d9c016 bpatch patch16_3 ,mem_patch16 
+3d1e 68010286 fetch 2 ,mem_l2cap_rxbuff1_len 
+3d1f 68090288 fetcht 2 ,mem_l2cap_rxbuff2_len 
+3d20 9840fe00 iadd temp ,pdata 
+3d21 7d3a220d nsetflag blank ,wake_lock_l2cap_rx ,rega 
+3d22 6802c6f0 fetch 5 ,mem_ipc_fifo_bt2c51 
+3d23 7d3a220f nsetflag blank ,wake_lock_ipc_bt2c51 ,rega 
+3d24 6802c6f8 fetch 5 ,mem_ipc_fifo_c512bt 
+3d25 7d3a220e nsetflag blank ,wake_lock_ipc_c512bt ,rega 
+3d26 6800c271 fetch 1 ,mem_hci_cmd 
+3d27 7d3a2208 nsetflag blank ,wake_lock_cmd ,rega 
+3d28 6800c132 fetch 1 ,mem_device_option 
+3d29 2fe1fe0a compare dvc_op_module ,pdata ,0xff 
+3d2a 2040bd2c call lpm_uart_wake_lock ,true 
+3d2b 20203d31 branch lpm_check_wake_lock_nothci 
+
+lpm_uart_wake_lock:
+3d2c 68110112 hfetch 2 ,core_uart_rxitems 
+3d2d 7d3a2206 nsetflag blank ,wake_lock_uart_rx ,rega 
+3d2e 6811010e hfetch 2 ,core_uart_txitems 
+3d2f 7d3a2205 nsetflag blank ,wake_lock_uart_tx ,rega 
+3d30 20600000 rtn 
+
+lpm_check_wake_lock_nothci:
+3d31 5ffffff8 setarg -8 
+3d32 9a212200 iand rega ,rega 
+
+lpm_check_wake_lock_end:
+3d33 1a227e00 copy rega ,pdata 
+3d34 600141f2 store 2 ,mem_lpm_wake_lock 
+3d35 207a0000 rtn blank 
+3d36 20768000 rtn match 
+3d37 7835fc00 enable wake 
+3d38 20600000 rtn 
+
+lpm_shut_down:
+3d39 68120138 hfetch 4 ,core_lpm_ctrl 
+3d3a 793ffe1b set0 27 ,pdata 
+3d3b 6012004c hstore 4 ,core_lpm_reg 
+3d3c 20403cf4 call lpm_write_ctrl 
+3d3d 20203b31 branch assert 
+
+lpm_disable_exen_output:
+3d3e 6812013c hfetch 4 ,core_lpm_xtalcnt 
+3d3f 793ffe14 set0 20 ,pdata 
+3d40 6012004c hstore 4 ,core_lpm_reg 
+3d41 20203cf6 branch lpm_write_ctrl2 
+
+check_bt_disabled:
+3d42 680141f0 fetch 2 ,mem_chip_functions 
+3d43 c2803b31 bbit1 bt_disabled ,assert 
+3d44 20600000 rtn 
+
+check_ble_disabled:
+3d45 680141f0 fetch 2 ,mem_chip_functions 
+3d46 c280bb31 bbit1 ble_disabled ,assert 
+3d47 20600000 rtn 
+
+check_module_disabled:
+3d48 680141f0 fetch 2 ,mem_chip_functions 
+3d49 c2813b31 bbit1 module_disable ,assert 
+3d4a 20600000 rtn 
+
+app_init:
+3d4b 793f8025 set0 mark_ext_patch ,mark 
+3d4c 44da4016 bpatch patch16_4 ,mem_patch16 
+3d4d 6800c132 fetch 1 ,mem_device_option 
+3d4e 203a3d4b branch app_init ,blank 
+3d4f c001c00c beq dvc_op_kb ,kb_init 
+3d50 c004f293 beq dvc_op_shutter ,shutter_init 
+3d51 c00559dd beq dvc_op_module ,module_init 
+3d52 c2835dca bbit1 dvc_op_mouse ,mouse_init 
+3d53 c283c00c bbit1 dvc_op_keyboard ,kb_init 
+3d54 20600000 rtn 
+
+app_lpm_init:
+3d55 793f8025 set0 mark_ext_patch ,mark 
+3d56 44dac016 bpatch patch16_5 ,mem_patch16 
+3d57 70015000 jam 0 ,mem_tester_emulate 
+3d58 70017e00 jam 0 ,mem_debug_config 
+3d59 70017f00 jam 0 ,mem_lch_code 
+3d5a 58000000 setarg 0 
+3d5b 600288d2 store 5 ,mem_sp_state_start 
+3d5c 6800c132 fetch 1 ,mem_device_option 
+3d5d 203a3d55 branch app_lpm_init ,blank 
+3d5e c0055a12 beq dvc_op_module ,module_lpm_init 
+
+app_lpm_init0:
+3d5f 20600000 rtn 
+
+app_process_idle:
+3d60 20407cf4 call ui_dispatch 
+3d61 20407d9e call check_51cmd 
+3d62 20403d69 call app_process_bb_event 
+3d63 68014294 fetch 2 ,mem_cb_idle_process 
+3d64 20207f69 branch callback_func 
+
+app_process_bt:
+3d65 68014292 fetch 2 ,mem_cb_bt_process 
+3d66 20207f69 branch callback_func 
+
+app_process_ble:
+3d67 68014290 fetch 2 ,mem_cb_le_process 
+3d68 20207f69 branch callback_func 
+
+app_process_bb_event:
+3d69 793f8025 set0 mark_ext_patch ,mark 
+3d6a 44db4016 bpatch patch16_6 ,mem_patch16 
+3d6b da2046f0 arg mem_ipc_fifo_bt2c51 ,rega 
+3d6c 20407f95 call fifo_out 
+3d6d 207a0000 rtn blank 
+3d6e 1fe22600 copy pdata ,regc 
+3d6f 20403d73 call app_event_normal_process 
+3d70 20203d9b branch app_process_bb_event_priority 
+
+app_discard_event:
+3d71 da600000 arg 0 ,regc 
+3d72 20600000 rtn 
+
+app_event_normal_process:
+3d73 c000bd88 beq bt_evt_bb_connected ,app_evt_bt_conn 
+3d74 c0083dcf beq bt_evt_button_long_pressed ,app_evt_button_long_pressed 
+3d75 c002bdac beq bt_evt_setup_complete ,app_evt_setup_complete 
+3d76 c0093db3 beq bt_evt_hid_handshake ,app_evt_hid_handshake 
+3d77 c0033dcb beq bt_evt_hid_connected ,app_bb_event_hid_connected 
+3d78 c0023df6 beq bt_evt_reconn_failed ,app_bb_event_reconn_failed 
+3d79 c0013dfb beq bt_evt_bb_disconnected ,app_bb_event_bb_disconn 
+3d7a c009bdf6 beq bt_evt_reconn_page_timeout ,app_bb_event_reconn_failed 
+3d7b c00a3dc2 beq bt_evt_le_connected ,app_le_event_bb_connected 
+3d7c c00abdc6 beq bt_evt_le_disconnected ,app_le_event_bb_disconn 
+3d7d c001bda5 beq bt_evt_reconn_started ,app_event_reconn_start 
+3d7e c005bdb7 beq bt_evt_enter_sniff ,app_event_enter_sniff 
+3d7f c0063dbe beq bt_evt_exit_sniff ,app_event_exit_sniff 
+3d80 c00b3dd3 beq bt_evt_ml2cap_conn_refused ,app_event_ml2cap_conn_refused 
+3d81 c00c3da1 beq bt_evt_linkkey_generate ,app_event_linkkey_generate 
+3d82 c0153d91 beq bt_evt_switch_fail_master ,app_event_switch_fail_master 
+3d83 c015bd8f beq bt_evt_switch_success_master ,app_event_switch_success 
+3d84 1fe1040f and pdata ,0x0f ,temp 
+3d85 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+3d86 c0283dd7 beq bt_evt_timer_init ,app_evt_timer 
+3d87 20600000 rtn 
+
+app_evt_bt_conn:
+3d88 6801470b fetch 2 ,mem_ui_state_map 
+3d89 79207e00 set1 ui_state_bt_connected ,pdata 
+3d8a 6001470b store 2 ,mem_ui_state_map 
+3d8b 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3d8c 793ffe00 set0 app_disc_by_button ,pdata 
+3d8d 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3d8e 20600000 rtn 
+
+app_event_switch_success:
+3d8f 70024d00 jam 0 ,mem_switch_fail_master_count 
+3d90 20600000 rtn 
+
+app_event_switch_fail_master:
+3d91 6800824d fetch 1 ,mem_switch_fail_master_count 
+3d92 1fe0fe01 increase 1 ,pdata 
+3d93 6000824d store 1 ,mem_switch_fail_master_count 
+3d94 1fe67c01 sub pdata ,1 ,null 
+3d95 20213e47 branch app_bt_role_switch ,positive 
+3d96 70024d00 jam 0 ,mem_switch_fail_master_count 
+3d97 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3d98 79207e09 set1 app_disc_switch_fail ,pdata 
+3d99 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3d9a 20203e52 branch app_bt_disconnect 
+
+app_process_bb_event_priority:
+3d9b 68014296 fetch 2 ,mem_cb_bb_event_process 
+3d9c 20207f69 branch callback_func 
+
+app_check_wake_lock:
+3d9d 6801428a fetch 2 ,mem_cb_check_wakelock 
+3d9e 20207f69 branch callback_func 
+
+app_will_enter_lpm:
+3d9f 6801428e fetch 2 ,mem_cb_before_lpm 
+3da0 20207f69 branch callback_func 
+
+app_event_linkkey_generate:
+3da1 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3da2 79207e01 set1 app_disc_after_pairing ,pdata 
+3da3 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3da4 20203e7d branch app_bt_store_reconn_info 
+
+app_event_reconn_start:
+3da5 6801470b fetch 2 ,mem_ui_state_map 
+3da6 79207e07 set1 ui_state_bt_reconnect ,pdata 
+3da7 6001470b store 2 ,mem_ui_state_map 
+3da8 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3da9 79207e02 set1 app_disc_after_reconn ,pdata 
+3daa 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dab 20600000 rtn 
+
+app_evt_setup_complete:
+3dac 6801470b fetch 2 ,mem_ui_state_map 
+3dad 79207e01 set1 ui_state_bt_setup_complete ,pdata 
+3dae 6001470b store 2 ,mem_ui_state_map 
+3daf 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3db0 79207e04 set1 app_disc_after_setup_done ,pdata 
+3db1 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3db2 20600000 rtn 
+
+app_evt_hid_handshake:
+3db3 6801470b fetch 2 ,mem_ui_state_map 
+3db4 79207e03 set1 ui_state_bt_hid_handshake ,pdata 
+3db5 6001470b store 2 ,mem_ui_state_map 
+3db6 20600000 rtn 
+
+app_event_enter_sniff:
+3db7 6801470b fetch 2 ,mem_ui_state_map 
+3db8 79207e05 set1 ui_state_bt_sniff ,pdata 
+3db9 6001470b store 2 ,mem_ui_state_map 
+3dba 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dbb 79207e03 set1 app_disc_after_sniff ,pdata 
+3dbc 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dbd 20600000 rtn 
+
+app_event_exit_sniff:
+3dbe 6801470b fetch 2 ,mem_ui_state_map 
+3dbf 793ffe05 set0 ui_state_bt_sniff ,pdata 
+3dc0 6001470b store 2 ,mem_ui_state_map 
+3dc1 20600000 rtn 
+
+app_le_event_bb_connected:
+3dc2 6801470b fetch 2 ,mem_ui_state_map 
+3dc3 79207e09 set1 ui_state_ble_connected ,pdata 
+3dc4 6001470b store 2 ,mem_ui_state_map 
+3dc5 20600000 rtn 
+
+app_le_event_bb_disconn:
+3dc6 6801470b fetch 2 ,mem_ui_state_map 
+3dc7 793ffe09 set0 ui_state_ble_connected ,pdata 
+3dc8 6001470b store 2 ,mem_ui_state_map 
+3dc9 70459500 jam 0 ,mem_le_switch_send_data 
+3dca 20203e81 branch app_lpm_mult_disable 
+
+app_bb_event_hid_connected:
+3dcb 6801470b fetch 2 ,mem_ui_state_map 
+3dcc 79207e02 set1 ui_state_bt_hid_conn ,pdata 
+3dcd 6001470b store 2 ,mem_ui_state_map 
+3dce 20600000 rtn 
+
+app_evt_button_long_pressed:
+3dcf 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dd0 79207e00 set1 app_disc_by_button ,pdata 
+3dd1 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dd2 20600000 rtn 
+
+app_event_ml2cap_conn_refused:
+3dd3 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dd4 79207e08 set1 app_disc_l2cap_refused ,pdata 
+3dd5 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3dd6 20203e52 branch app_bt_disconnect 
+
+app_evt_timer:
+3dd7 793f8025 set0 mark_ext_patch ,mark 
+3dd8 44dbc016 bpatch patch16_7 ,mem_patch16 
+3dd9 6008824e storet 1 ,mem_app_evt_timer_count 
+
+app_evt_100ms_loop:
+3dda 6800824e fetch 1 ,mem_app_evt_timer_count 
+3ddb 207a0000 rtn blank 
+3ddc 1fe0ffff increase -1 ,pdata 
+3ddd 6000824e store 1 ,mem_app_evt_timer_count 
+3dde 20407d02 call ui_button_polling 
+3ddf 20403e3b call app_lpm_wake_auto_lock_timer 
+3de0 20403de5 call app_unsniff_delay_timer 
+3de1 20403ded call app_discovery_timer 
+3de2 680142a0 fetch 2 ,mem_cb_event_timer 
+3de3 20407f69 call callback_func 
+3de4 20203dda branch app_evt_100ms_loop 
+
+app_unsniff_delay_timer:
+3de5 6800c2aa fetch 1 ,mem_unsniff2sniff_timer_count 
+3de6 207a0000 rtn blank 
+3de7 1fe0ffff increase -1 ,pdata 
+3de8 6000c2aa store 1 ,mem_unsniff2sniff_timer_count 
+3de9 247a0000 nrtn blank 
+3dea 20403292 call context_check_idle 
+3deb 2022be79 branch app_bt_enter_sniff ,zero 
+3dec 20600000 rtn 
+
+app_discovery_timer:
+3ded 68014707 fetch 2 ,mem_discovery_timeout_timer_count 
+3dee 207a0000 rtn blank 
+3def 1fe0ffff increase -1 ,pdata 
+3df0 60014707 store 2 ,mem_discovery_timeout_timer_count 
+3df1 247a0000 nrtn blank 
+3df2 20403e59 call app_bt_stop_discovery 
+3df3 20403e73 call app_led_off 
+3df4 68014298 fetch 2 ,mem_cb_discovry_timeout 
+3df5 20207f69 branch callback_func 
+
+app_bb_event_reconn_failed:
+3df6 20403e0f call app_disconn_reason_flag_clear 
+
+app_clear_reconnect_flag:
+3df7 6801470b fetch 2 ,mem_ui_state_map 
+3df8 793ffe07 set0 ui_state_bt_reconnect ,pdata 
+3df9 6001470b store 2 ,mem_ui_state_map 
+3dfa 20600000 rtn 
+
+app_bb_event_bb_disconn:
+3dfb 7042aa00 jam 0 ,mem_unsniff2sniff_timer_count 
+3dfc 6801470b fetch 2 ,mem_ui_state_map 
+3dfd c283be00 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
+3dfe 2fec0001 isolate0 ui_state_bt_setup_complete ,pdata 
+3dff 2040bd71 call app_discard_event ,true 
+
+app_bb_event_bb_reconn_disconn:
+3e00 793f8025 set0 mark_ext_patch ,mark 
+3e01 44dc4017 bpatch patch17_0 ,mem_patch17 
+3e02 6801470b fetch 2 ,mem_ui_state_map 
+3e03 793ffe00 set0 ui_state_bt_connected ,pdata 
+3e04 793ffe01 set0 ui_state_bt_setup_complete ,pdata 
+3e05 793ffe02 set0 ui_state_bt_hid_conn ,pdata 
+3e06 793ffe03 set0 ui_state_bt_hid_handshake ,pdata 
+3e07 793ffe07 set0 ui_state_bt_reconnect ,pdata 
+3e08 6001470b store 2 ,mem_ui_state_map 
+3e09 20203e81 branch app_lpm_mult_disable 
+
+app_bb_hibernate:
+3e0a 20403e0c call app_disconn_reason_clear 
+3e0b 20203e75 branch app_enter_hibernate 
+
+app_disconn_reason_clear:
+3e0c 58000000 setarg 0 
+3e0d 600142ad store app_disc_rsn_size ,mem_app_disconn_reason 
+3e0e 20600000 rtn 
+
+app_disconn_reason_flag_clear:
+3e0f 58000000 setarg 0 
+3e10 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e11 20600000 rtn 
+
+app_disconn_reason_collect_bt:
+3e12 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e13 600142ad store app_disc_rsn_size ,mem_app_disconn_reason 
+3e14 58000000 setarg 0 
+3e15 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e16 20600000 rtn 
+
+app_disconn_reason_collect_ble:
+3e17 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e18 79207e07 set1 app_disc_ble ,pdata 
+3e19 600142ad store app_disc_rsn_size ,mem_app_disconn_reason 
+3e1a 58000000 setarg 0 
+3e1b 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e1c 20600000 rtn 
+
+app_check_sniff:
+3e1d 6800c70b fetch 1 ,mem_ui_state_map 
+3e1e 2feffe05 isolate1 ui_state_bt_sniff ,pdata 
+3e1f 20600000 rtn 
+
+app_initflag_store:
+3e20 5800aa55 setarg eeprom_init_flag 
+
+app_flag_store:
+3e21 600109ce store 2 ,mem_timeup 
+3e22 793f8025 set0 mark_ext_patch ,mark 
+3e23 44dcc017 bpatch patch17_1 ,mem_patch17 
+3e24 d8400002 arg 2 ,temp 
+3e25 da2009ce arg mem_timeup ,rega 
+3e26 da4000c3 arg eeprom_module_init_flag ,regb 
+3e27 2020626f branch iicd_write_eep_data 
+
+app_initflag_check:
+3e28 793f8025 set0 mark_ext_patch ,mark 
+3e29 44dd4017 bpatch patch17_2 ,mem_patch17 
+3e2a d8400002 arg 2 ,temp 
+3e2b da2009be arg mem_pdatatemp ,rega 
+3e2c da4000c3 arg eeprom_module_init_flag ,regb 
+3e2d 20406245 call iicd_read_eep_data 
+3e2e 680109be fetch 2 ,mem_pdatatemp 
+3e2f d840aa55 arg eeprom_init_flag ,temp 
+3e30 98467c00 isub temp ,null 
+3e31 20600000 rtn 
+
+app_start_auto_sniff:
+3e32 6800c5f3 fetch 1 ,mem_unsniff2sniff_timer 
+3e33 6000c2aa store 1 ,mem_unsniff2sniff_timer_count 
+3e34 20600000 rtn 
+
+app_get_lpm_wake_lock:
+3e35 d8e00009 arg wake_lock_app ,queue 
+3e36 20203d06 branch lpm_get_wake_lock 
+
+app_put_lpm_wake_lock:
+3e37 d8e00009 arg wake_lock_app ,queue 
+3e38 20203d0a branch lpm_put_wake_lock 
+
+app_lpm_wake_auto_lock:
+3e39 7042ab05 jam lpm_wake_up_delay_timer ,mem_wake_up_delay_timer 
+3e3a 20203e35 branch app_get_lpm_wake_lock 
+
+app_lpm_wake_auto_lock_timer:
+3e3b 6800c2ab fetch 1 ,mem_wake_up_delay_timer 
+3e3c 207a0000 rtn blank 
+3e3d 1fe0ffff increase -1 ,pdata 
+3e3e 6000c2ab store 1 ,mem_wake_up_delay_timer 
+3e3f 247a0000 nrtn blank 
+3e40 20203e37 branch app_put_lpm_wake_lock 
+
+app_l2cap_flow_control_enable:
+3e41 7043f301 jam l2cap_flow_ctrl_enable ,mem_l2cap_flow_ctrl_flag 
+3e42 20600000 rtn 
+
+app_l2cap_flow_control_disable:
+3e43 7043f300 jam l2cap_flow_ctrl_disable ,mem_l2cap_flow_ctrl_flag 
+3e44 20600000 rtn 
+
+app_bt_set_pincode:
+3e45 7009bd0a jam bt_cmd_set_pin_code ,mem_fifo_temp 
+3e46 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_role_switch:
+3e47 7009bd1d jam bt_cmd_role_switch ,mem_fifo_temp 
+3e48 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_start_reconnect:
+3e49 793f8025 set0 mark_ext_patch ,mark 
+3e4a 44ddc017 bpatch patch17_3 ,mem_patch17 
+3e4b 6800c2ac fetch 1 ,mem_app_connection_options 
+3e4c 6000816c store 1 ,mem_connection_options 
+3e4d 70024c01 jam app_flag_reconnect ,mem_reconnect_flag 
+3e4e 7009bd03 jam bt_cmd_reconnect ,mem_fifo_temp 
+3e4f 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_reconnect_cancel:
+3e50 7009bd1e jam bt_cmd_bb_reconn_cancel ,mem_fifo_temp 
+3e51 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_disconnect:
+3e52 7009bd04 jam bt_cmd_disconnect ,mem_fifo_temp 
+3e53 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_start_discovery_short:
+3e54 68014716 fetch 2 ,mem_discovery_timeout 
+3e55 60014707 store 2 ,mem_discovery_timeout_timer_count 
+
+app_bt_start_discovery_led_blink:
+3e56 20403e6f call app_led_start_blink 
+
+app_bt_start_discovery:
+3e57 7009bd01 jam bt_cmd_start_discovery ,mem_fifo_temp 
+3e58 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_stop_discovery:
+3e59 58000000 setarg 0 
+3e5a 60014707 store 2 ,mem_discovery_timeout_timer_count 
+3e5b 7009bd02 jam bt_cmd_stop_discovery ,mem_fifo_temp 
+3e5c 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_start_direct_adv:
+3e5d 7009bd0f jam bt_cmd_start_direct_adv ,mem_fifo_temp 
+3e5e 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_stop_direct_adv:
+3e5f 7009bd10 jam bt_cmd_stop_direct_adv ,mem_fifo_temp 
+3e60 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_stop_adv:
+3e61 7009bd0e jam bt_cmd_stop_adv ,mem_fifo_temp 
+3e62 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_start_adv:
+3e63 7009bd0d jam bt_cmd_start_adv ,mem_fifo_temp 
+3e64 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_start_scan:
+3e65 7009bd17 jam bt_cmd_le_start_scan ,mem_fifo_temp 
+3e66 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_stop_scan:
+3e67 7009bd18 jam bt_cmd_le_stop_scan ,mem_fifo_temp 
+3e68 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_start_conn:
+3e69 7009bd16 jam bt_cmd_le_start_conn ,mem_fifo_temp 
+3e6a 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_disconnect:
+3e6b 7009bd11 jam bt_cmd_le_disconnect ,mem_fifo_temp 
+3e6c 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_start_write:
+3e6d 7009bd1c jam bt_cmd_le_start_write ,mem_fifo_temp 
+3e6e 20207d90 branch ui_ipc_send_cmd 
+
+app_led_start_blink:
+3e6f 7009bd15 jam bt_cmd_led_blink ,mem_fifo_temp 
+3e70 20207d90 branch ui_ipc_send_cmd 
+
+app_led_on:
+3e71 7009bd14 jam bt_cmd_led_on ,mem_fifo_temp 
+3e72 20207d90 branch ui_ipc_send_cmd 
+
+app_led_stop_blink:
+
+app_led_off:
+3e73 7009bd13 jam bt_cmd_led_off ,mem_fifo_temp 
+3e74 20207d90 branch ui_ipc_send_cmd 
+
+app_enter_hibernate:
+3e75 7009bd19 jam bt_cmd_enter_hibernate ,mem_fifo_temp 
+3e76 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_sniff_exit:
+3e77 7009bd06 jam bt_cmd_exit_sniff ,mem_fifo_temp 
+3e78 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_enter_sniff:
+3e79 7009bd05 jam bt_cmd_enter_sniff ,mem_fifo_temp 
+3e7a 20207d90 branch ui_ipc_send_cmd 
+
+app_ble_store_reconn_info:
+3e7b 7009bd1f jam bt_cmd_store_reconn_info_le ,mem_fifo_temp 
+3e7c 20207d90 branch ui_ipc_send_cmd 
+
+app_bt_store_reconn_info:
+3e7d 7009bd20 jam bt_cmd_store_reconn_info_bt ,mem_fifo_temp 
+3e7e 20207d90 branch ui_ipc_send_cmd 
+
+app_lpm_mult_enable:
+3e7f 7920000d set1 mark_lpm_mult_enable ,mark 
+3e80 20600000 rtn 
+
+app_lpm_mult_disable:
+3e81 793f800d set0 mark_lpm_mult_enable ,mark 
+3e82 20600000 rtn 
+
+hci_rx_h4:
+3e83 793f8025 set0 mark_ext_patch ,mark 
+3e84 44de4017 bpatch patch17_4 ,mem_patch17 
+3e85 6800c271 fetch 1 ,mem_hci_cmd 
+3e86 247a0000 nrtn blank 
+
+hci_rx_h4_1:
+3e87 20403e8a call hci_h4_parse_packet 
+3e88 24543ea3 ncall h4_rx_discard_packet ,user 
+3e89 20600000 rtn 
+
+hci_h4_parse_packet:
+3e8a 793f8025 set0 mark_ext_patch ,mark 
+3e8b 44dec017 bpatch patch17_5 ,mem_patch17 
+3e8c 18622200 copy contru ,rega 
+3e8d d8400004 arg 4 ,temp 
+3e8e e8608000 ifetch 1 ,contru 
+3e8f c000be95 beq hci_h4_type_cmd ,hci_h4_parse_packet_wait_len 
+3e90 18408401 increase 1 ,temp 
+3e91 c0013e95 beq hci_h4_type_acl ,hci_h4_parse_packet_wait_len 
+3e92 18627e00 copy contru ,pdata 
+3e93 60110058 hstore 2 ,core_uart_rrptr 
+3e94 20600000 rtn 
+
+hci_h4_parse_packet_wait_len:
+3e95 68110112 hfetch 2 ,core_uart_rxitems 
+3e96 98467c00 isub temp ,null 
+3e97 24213e95 nbranch hci_h4_parse_packet_wait_len ,positive 
+3e98 78547c00 disable user 
+3e99 1a220600 copy rega ,contru 
+3e9a 20403eac call h4_get_rx_payload_len 
+3e9b 98408400 iadd temp ,temp 
+
+hci_h4_parse_packet_wait:
+3e9c 68110112 hfetch 2 ,core_uart_rxitems 
+3e9d 98467c00 isub temp ,null 
+3e9e 24213e9c nbranch hci_h4_parse_packet_wait ,positive 
+3e9f 1a220600 copy rega ,contru 
+3ea0 e8608000 ifetch 1 ,contru 
+3ea1 c000bf06 beq hci_h4_type_cmd ,process_hci_cmd 
+3ea2 20203b31 branch assert 
+
+h4_rx_discard_packet:
+3ea3 793f8025 set0 mark_ext_patch ,mark 
+3ea4 44df4017 bpatch patch17_6 ,mem_patch17 
+3ea5 68110058 hfetch 2 ,core_uart_rrptr 
+3ea6 98000600 iforce contru 
+3ea7 20403eac call h4_get_rx_payload_len 
+3ea8 98608600 iadd contru ,contru 
+3ea9 18627e00 deposit contru 
+3eaa 60110058 hstore 2 ,core_uart_rrptr 
+3eab 20600000 rtn 
+
+h4_get_rx_payload_len:
+3eac e8608000 ifetch 1 ,contru 
+3ead 18608602 increase 2 ,contru 
+3eae c0013eb1 beq hci_h4_type_acl ,h4_get_rx_payload_len_acl 
+3eaf e8608000 ifetch 1 ,contru 
+3eb0 20600000 rtn 
+
+h4_get_rx_payload_len_acl:
+3eb1 e8610000 ifetch 2 ,contru 
+3eb2 20600000 rtn 
+
+h4_get_tx_ptr:
+3eb3 6811005e hfetch 2 ,core_uart_twptr 
+3eb4 194095fb increase -5 ,contwu 
+3eb5 99409400 iadd contwu ,contwu 
+3eb6 20600000 rtn 
+
+h4_send_packet_event:
+3eb7 d8400004 arg hci_h4_type_event ,temp 
+3eb8 20203eba branch h4_send_packet 
+
+h4_send_packet_acl:
+3eb9 d8400002 arg hci_h4_type_acl ,temp 
+
+h4_send_packet:
+3eba 793f8025 set0 mark_ext_patch ,mark 
+3ebb 44dfc017 bpatch patch17_7 ,mem_patch17 
+3ebc 1f20f201 increase 1 ,loopcnt 
+3ebd 6811005e hfetch 2 ,core_uart_twptr 
+3ebe 1fe21400 copy pdata ,contwu 
+3ebf 1f227e00 copy loopcnt ,pdata 
+3ec0 e1488000 istoret 1 ,contwu 
+3ec1 1fe0ffff increase -1 ,pdata 
+3ec2 99409400 iadd contwu ,contwu 
+3ec3 19427e00 copy contwu ,pdata 
+3ec4 6001027a store 2 ,mem_hci_acl_tx_trigger_wptr 
+3ec5 18427e00 copy temp ,pdata 
+3ec6 c1010000 rtneq hci_h4_type_acl 
+3ec7 6801027a fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+3ec8 6011005e hstore 2 ,core_uart_twptr 
+3ec9 20203eca branch h4_send_acl_trigger_clear 
+
+h4_send_acl_trigger_clear:
+3eca 58000000 setarg 0 
+3ecb 6001027a store 2 ,mem_hci_acl_tx_trigger_wptr 
+3ecc 20600000 rtn 
+
+hci_init:
+3ecd 793f8025 set0 mark_ext_patch ,mark 
+3ece 44e04018 bpatch patch18_0 ,mem_patch18 
+3ecf 20758000 rtn wake 
+3ed0 58003fbf setarg hci_idle_dispatch 
+3ed1 60014294 store 2 ,mem_cb_idle_process 
+3ed2 580001a0 setarg uart_baud_115200 
+3ed3 600142d3 store uart_baud_len ,mem_baud 
+
+hci_lpm_init:
+3ed4 793f8025 set0 mark_ext_patch ,mark 
+3ed5 44e0c018 bpatch patch18_1 ,mem_patch18 
+3ed6 58001800 setarg mem_h5rx_buf 
+3ed7 60110054 hstore 2 ,core_uart_rsaddr 
+3ed8 58001bff setarg mem_h5rx_buf_end 
+3ed9 60110056 hstore 2 ,core_uart_readdr 
+3eda 58001c00 setarg mem_h5tx_buf 
+3edb 6011005a hstore 2 ,core_uart_tsaddr 
+3edc 20403eed call hci_sel_init 
+
+hci_reinit:
+3edd 70806200 hjam 0x0 ,core_uart_ctrl 
+3ede 58001c00 setarg mem_h5tx_buf 
+3edf 6011005e hstore 2 ,core_uart_twptr 
+3ee0 60110060 hstore 2 ,core_uart_trptrp 
+3ee1 58001800 setarg mem_h5rx_buf 
+3ee2 60110058 hstore 2 ,core_uart_rrptr 
+3ee3 60010266 store 2 ,mem_h5rx_rptr 
+
+hci_init_common:
+3ee4 793f8025 set0 mark_ext_patch ,mark 
+3ee5 44e14018 bpatch patch18_2 ,mem_patch18 
+3ee6 68110050 hfetch 2 ,core_clkoff 
+3ee7 793ffe0f set0 clock_off_uart ,pdata 
+3ee8 60110050 hstore 2 ,core_clkoff 
+3ee9 20406325 call uart_set_baud_by_mem 
+3eea 70804301 hjam uartclk_dpll ,core_uart_clksel 
+3eeb 70806281 hjam uart_ctrl_h4 ,core_uart_ctrl 
+3eec 20600000 rtn 
+
+hci_sel_init:
+3eed 58001fff setarg mem_h5tx_buf_end 
+3eee 6011005c hstore 2 ,core_uart_teaddr 
+3eef 68108081 hfetch 1 ,core_gpio_sel1 
+3ef0 1fe1fe07 or_into 0x07 ,pdata 
+3ef1 60108081 hstore 1 ,core_gpio_sel1 
+3ef2 70027cff jam 0xff ,mem_ucode_id_local 
+3ef3 20600000 rtn 
+
+hci_rx_packet:
+3ef4 793f8025 set0 mark_ext_patch ,mark 
+3ef5 44e1c018 bpatch patch18_3 ,mem_patch18 
+3ef6 6810810c hfetch 1 ,core_uart_status 
+3ef7 98002400 iforce regb 
+3ef8 c301befe bbit0 uart_status_rx_fifo_empty ,hci_rx_packet_cont 
+3ef9 68110112 hfetch 2 ,core_uart_rxitems 
+3efa 98002600 iforce regc 
+3efb d840044f arg 0x44f ,temp 
+3efc 98467c00 isub temp ,null 
+3efd 24628000 nrtn zero 
+
+hci_rx_packet_cont:
+3efe 68110058 hfetch 2 ,core_uart_rrptr 
+3eff 98000600 iforce contru 
+3f00 20203e83 branch hci_rx_h4 
+
+uart_send_byte:
+3f01 6818810c hfetcht 1 ,core_uart_status 
+3f02 284ffe06 isolate1 6 ,temp 
+3f03 2020bf01 branch uart_send_byte ,true 
+3f04 60108015 hstore 1 ,core_uart_txd 
+3f05 20600000 rtn 
+
+process_hci_cmd:
+3f06 793f8025 set0 mark_ext_patch ,mark 
+3f07 44e24018 bpatch patch18_4 ,mem_patch18 
+3f08 6800c271 fetch 1 ,mem_hci_cmd 
+3f09 203a3f0c branch process_hci_cmd_cont ,blank 
+3f0a 78347c00 enable user 
+3f0b 20600000 rtn 
+
+process_hci_cmd_cont:
+3f0c e8610000 ifetch 2 ,contru 
+3f0d 98006000 iforce alarm 
+3f0e 98000e00 iforce queue 
+3f0f e8608000 ifetch 1 ,contru 
+3f10 98000400 iforce temp 
+3f11 1e0b7e00 rshift2 alarm ,pdata 
+3f12 1fecfe00 rshift8 pdata ,pdata 
+3f13 c01fbf15 beq hci_ogf_vendor_specific ,phci_grp_vendor_specific 
+3f14 20600000 rtn 
+
+phci_grp_vendor_specific:
+3f15 793f8025 set0 mark_ext_patch ,mark 
+3f16 44e2c018 bpatch patch18_5 ,mem_patch18 
+3f17 18e27e00 deposit queue 
+3f18 c0003f70 beq hci_vendor_cmd_reset ,hci_normal_reply 
+3f19 c000bf2d beq hci_vendor_cmd_chipid ,phci_grp_vendor_chipid 
+3f1a c0013f32 beq hci_vendor_cmd_baud ,phci_grp_vendor_baud 
+3f1b c001bf36 beq hci_vendor_cmd_patch ,phci_grp_vendor_patch 
+3f1c c0023f49 beq hci_vendor_cmd_patch_done ,phci_grp_vendor_done 
+3f1d c002bf70 beq hci_vendor_cmd_echo ,hci_normal_reply 
+3f1e c0033f5a beq hci_vendor_cmd_bdaddr ,phci_grp_vendor_bdaddr 
+3f1f c003bf23 beq hci_vendor_cmd_enter_lpm ,phci_grp_vendor_enter_lpm 
+3f20 c0083f5d beq hci_vendor_cmd_mem ,phci_grp_vendor_mem 
+3f21 c008bf65 beq hci_vendor_cmd_eep ,phci_grp_vendor_eep 
+3f22 20203f70 branch hci_normal_reply 
+
+phci_grp_vendor_enter_lpm:
+3f23 20403f70 call hci_normal_reply 
+3f24 20407f6b call wait_uarttx 
+3f25 20406561 call gpio_pu_uart_tx 
+
+hci_enter_lpm:
+3f26 20403e37 call app_put_lpm_wake_lock 
+3f27 20403e41 call app_l2cap_flow_control_enable 
+3f28 20206564 branch gpio_rx_config_input_with_pu 
+
+hci_exit_lpm:
+3f29 7042d500 jam hci_rx_ready ,mem_hci_lt_rx_state 
+3f2a 20403e35 call app_get_lpm_wake_lock 
+3f2b 20403ed4 call hci_lpm_init 
+3f2c 20203e43 branch app_l2cap_flow_control_disable 
+
+phci_grp_vendor_chipid:
+3f2d 20403f89 call hci_get_cmd_complete_ptr 
+3f2e 68110000 hfetch 2 ,core_chipid 
+3f2f e1410000 istore 2 ,contwu 
+3f30 18007206 force 6 ,loopcnt 
+3f31 20203f73 branch hci_command_complete 
+
+phci_grp_vendor_baud:
+3f32 e8610000 ifetch 2 ,contru 
+3f33 600142d3 store 2 ,mem_baud 
+3f34 60110052 hstore 2 ,core_uart_baud 
+3f35 20600000 rtn 
+
+phci_grp_vendor_patch:
+3f36 e8608000 ifetch 1 ,contru 
+3f37 1fe20400 copy pdata ,temp 
+3f38 60108024 hstore 1 ,core_ucode_low 
+3f39 e8608000 ifetch 1 ,contru 
+3f3a 98408400 iadd temp ,temp 
+3f3b 79207e07 set1 7 ,pdata 
+3f3c 60108023 hstore 1 ,core_ucode_ctrl 
+3f3d e8608000 ifetch 1 ,contru 
+3f3e 98408400 iadd temp ,temp 
+3f3f 1fe27200 copy pdata ,loopcnt 
+
+phci_grp_vendor_patch_loop:
+3f40 e8608000 ifetch 1 ,contru 
+3f41 60108025 hstore 1 ,core_ucode_data 
+3f42 98408400 iadd temp ,temp 
+3f43 c2003f40 loop phci_grp_vendor_patch_loop 
+3f44 184104ff and temp ,0xff ,temp 
+3f45 e8608000 ifetch 1 ,contru 
+3f46 98467c00 isub temp ,null 
+3f47 2422bf58 nbranch phci_grp_vendor_patch_bad ,zero 
+3f48 20203f70 branch hci_normal_reply 
+
+phci_grp_vendor_done:
+3f49 df200020 arg 0x20 ,loopcnt 
+3f4a d8a04000 arg mem_patch00 ,contw 
+3f4b d8400000 arg 0 ,temp 
+
+phci_grp_vendor_done_loop:
+3f4c e8608000 ifetch 1 ,contru 
+3f4d e0a08000 istore 1 ,contw 
+3f4e 98408400 iadd temp ,temp 
+3f4f c2003f4c loop phci_grp_vendor_done_loop 
+3f50 184104ff and temp ,0xff ,temp 
+3f51 e8608000 ifetch 1 ,contru 
+3f52 98467c00 isub temp ,null 
+3f53 2422bf58 nbranch phci_grp_vendor_patch_bad ,zero 
+3f54 70802300 hjam 0 ,core_ucode_ctrl 
+3f55 20403f70 call hci_normal_reply 
+3f56 20403ea3 call h4_rx_discard_packet 
+3f57 20203001 branch soft_reset 
+
+phci_grp_vendor_patch_bad:
+3f58 70802300 hjam 0 ,core_ucode_ctrl 
+3f59 20203000 branch start 
+
+phci_grp_vendor_bdaddr:
+3f5a e8630000 ifetch 6 ,contru 
+3f5b 60034140 store 6 ,mem_lap 
+3f5c 20203f70 branch hci_normal_reply 
+
+phci_grp_vendor_mem:
+3f5d e8608000 ifetch 1 ,contru 
+3f5e 60008283 store 1 ,mem_hci_curr_len 
+3f5f 1fe27200 copy pdata ,loopcnt 
+3f60 e8610000 ifetch 2 ,contru 
+3f61 60010284 store 2 ,mem_hci_curr_target 
+3f62 1fe20a00 copy pdata ,contw 
+3f63 20406354 call uart_copy_rx_bytes 
+3f64 20203f70 branch hci_normal_reply 
+
+phci_grp_vendor_eep:
+3f65 e8608000 ifetch 1 ,contru 
+3f66 60008283 store 1 ,mem_hci_curr_len 
+3f67 1fe27200 copy pdata ,loopcnt 
+3f68 e8610000 ifetch 2 ,contru 
+3f69 60010284 store 2 ,mem_hci_curr_target 
+3f6a d8a01000 arg mem_l2cap_rxbuff1 ,contw 
+3f6b 20406354 call uart_copy_rx_bytes 
+3f6c 68088283 fetcht 1 ,mem_hci_curr_len 
+3f6d da201000 arg mem_l2cap_rxbuff1 ,rega 
+3f6e 68010284 fetch 2 ,mem_hci_curr_target 
+3f6f 20206271 branch iicd_write_ota_data 
+
+hci_normal_reply:
+3f70 793f8025 set0 mark_ext_patch ,mark 
+3f71 44e34018 bpatch patch18_6 ,mem_patch18 
+3f72 18007204 force 4 ,loopcnt 
+
+hci_command_complete:
+3f73 20403f8b call hci_get_payload_ptr 
+3f74 18007e01 force 0x1 ,pdata 
+3f75 e1408000 istore 1 ,contwu 
+3f76 1e027e00 deposit alarm 
+3f77 e1418000 istore 3 ,contwu 
+3f78 18000e0e force hci_event_command_complete ,queue 
+
+hci_send_event:
+3f79 793f8025 set0 mark_ext_patch ,mark 
+3f7a 44e3c018 bpatch patch18_7 ,mem_patch18 
+3f7b 20403f8d call hci_get_packet_ptr 
+3f7c 18e27e00 deposit queue 
+3f7d e1408000 istore 1 ,contwu 
+3f7e 1f227e00 deposit loopcnt 
+3f7f e1408000 istore 1 ,contwu 
+
+hci_send_event_raw:
+3f80 18000e05 force 5 ,queue 
+3f81 1f20f202 increase 2 ,loopcnt 
+
+hci_send_packet:
+3f82 20203eb7 branch h4_send_packet_event 
+
+hci_send_commu_ready_event:
+3f83 18000eff force hci_event_vendor_specific ,queue 
+3f84 20403f8b call hci_get_payload_ptr 
+3f85 58000001 setarg hci_vendor_event_commu_ready 
+3f86 e1408000 istore 1 ,contwu 
+3f87 18007201 force 1 ,loopcnt 
+3f88 20203f79 branch hci_send_event 
+
+hci_get_cmd_complete_ptr:
+3f89 1800140c force 12 ,contwu 
+3f8a 20203f8e branch hci_get_tx_ptr 
+
+hci_get_payload_ptr:
+3f8b 18001408 force 8 ,contwu 
+3f8c 20203f8e branch hci_get_tx_ptr 
+
+hci_get_packet_ptr:
+3f8d 18001406 force 6 ,contwu 
+
+hci_get_tx_ptr:
+3f8e 20203eb3 branch h4_get_tx_ptr 
+
+calc_tx_crc16:
+3f8f 7827fc00 pulse crc16 
+3f90 7824fc00 enable enable_crc 
+
+crcloop:
+3f91 e9408000 ifetch 1 ,contwu 
+3f92 08008008 inject bucket ,8 
+3f93 c2003f91 loop crcloop 
+3f94 78247c00 enable enable_parity 
+3f95 08008010 inject bucket ,16 
+3f96 78447c00 disable enable_parity 
+3f97 7844fc00 disable enable_crc 
+3f98 7847fc00 disable crc16 
+3f99 1ff0fe00 byteswap pdata ,pdata 
+3f9a 20600000 rtn 
+
+cmd_exit:
+3f9b 70427100 jam 0 ,mem_hci_cmd 
+3f9c 20600000 rtn 
+
+cmd_check_plap:
+3f9d 68034273 fetch 6 ,mem_hci_plap 
+3f9e 680b0040 fetcht 6 ,mem_plap 
+3f9f 98467c00 isub temp ,null 
+3fa0 20600000 rtn 
+
+cmd_pair:
+3fa1 6800804b fetch 1 ,mem_op 
+3fa2 c2813fa6 bbit1 op_inrand_req ,cmd_pair_passive 
+3fa3 204058fa call tid_initiate 
+3fa4 70007c08 jam lmp_in_rand ,mem_lmo_opcode2 
+3fa5 20203f9b branch cmd_exit 
+
+cmd_pair_passive:
+3fa6 793ffe02 set0 op_inrand_req ,pdata 
+3fa7 6000804b store 1 ,mem_op 
+3fa8 20405618 call lmp_accept_inrand 
+3fa9 58000000 setarg 0 
+3faa 7934fe01 setflag master ,smap_lmptid ,pdata 
+3fab 6000807f store 1 ,mem_lmo_tid2 
+3fac 20203f9b branch cmd_exit 
+3fad 20600000 rtn 
+
+cmd_in_sniff:
+3fae 70007c17 jam lmp_sniff_req ,mem_lmo_opcode2 
+3faf d8a003ff arg mem_sniff_payload ,contw 
+3fb0 58000000 setarg 0 
+3fb1 2d0ffe1b isolate1 27 ,clke_bt 
+3fb2 7920fe01 setflag true ,1 ,pdata 
+3fb3 e0a08000 istore 1 ,contw 
+3fb4 58000000 setarg 0 
+3fb5 e0a10000 istore 2 ,contw 
+3fb6 68014284 fetch 2 ,mem_sniff_param_interval 
+3fb7 e0a10000 istore 2 ,contw 
+3fb8 6800c286 fetch 1 ,mem_sniff_param_attempt 
+3fb9 e0a10000 istore 2 ,contw 
+3fba 6800c288 fetch 1 ,mem_sniff_param_timeout 
+3fbb e0a10000 istore 2 ,contw 
+3fbc 20203f9b branch cmd_exit 
+
+cmd_exit_sniff:
+3fbd 70007c18 jam lmp_unsniff_req ,mem_lmo_opcode2 
+3fbe 20203f9b branch cmd_exit 
+
+hci_idle_dispatch:
+3fbf 2040656e call gpio_check_uart_state 
+3fc0 20608000 rtn true 
+3fc1 d8400007 arg uart_wakeup_rx ,temp 
+3fc2 204064f5 call gpio_get_bit 
+3fc3 2420bfc6 nbranch uart_wake_up ,true 
+3fc4 7042d501 jam hci_rx_wake ,mem_hci_lt_rx_state 
+3fc5 20600000 rtn 
+
+uart_wake_up:
+3fc6 6800c2d5 fetch 1 ,mem_hci_lt_rx_state 
+3fc7 c1808000 rtnne hci_rx_wake 
+3fc8 20403f29 call hci_exit_lpm 
+3fc9 20203f83 branch hci_send_commu_ready_event 
+
+hid_rx_process:
+3fca 793f8025 set0 mark_ext_patch ,mark 
+3fcb 44e44019 bpatch patch19_0 ,mem_patch19 
+3fcc 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+3fcd 1fe20c00 copy pdata ,contr 
+3fce e8c08000 ifetch 1 ,contr 
+3fcf 1fe1040f and pdata ,0x0f ,temp 
+3fd0 1ff1fe00 rshift4 pdata ,pdata 
+3fd1 c004bfeb beq hid_type_set_idle ,hid_rx_process_handshake 
+3fd2 c003bfeb beq hid_type_set_protocol ,hid_rx_process_handshake 
+3fd3 c0053ff7 beq hid_type_data ,hid_rx_process_data 
+3fd4 c002bfe3 beq hid_type_set_report ,hid_rx_process_set_report 
+3fd5 c000bfd7 beq hid_type_control ,hid_rx_process_hid_control 
+3fd6 20600000 rtn 
+
+hid_rx_process_hid_control:
+3fd7 18427e00 copy temp ,pdata 
+3fd8 c002bfdb beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
+3fd9 c001bfe2 beq hid_control_p_suspend ,hid_rx_process_suspend 
+3fda 20600000 rtn 
+
+hid_rx_process_virtual_cable_unplug:
+3fdb 7009bd27 jam bt_evt_virtual_cable_unplug ,mem_fifo_temp 
+3fdc 20407d86 call ui_ipc_send_event 
+3fdd 6800c132 fetch 1 ,mem_device_option 
+3fde c1830000 rtnne dvc_op_mouse ,pdata 
+3fdf 18427e00 copy temp ,pdata 
+3fe0 c002e455 beq hid_control_p_virtualcableunplug ,eeprom_erase_reconn_info 
+3fe1 20600000 rtn 
+
+hid_rx_process_suspend:
+3fe2 20600000 rtn 
+
+hid_rx_process_set_report:
+3fe3 20403ff7 call hid_rx_process_data 
+3fe4 da200001 arg 0x01 ,rega 
+3fe5 20404005 call hid_malloc_tx_buff 
+3fe6 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+3fe7 e0a10000 istore 2 ,contw 
+3fe8 58000000 setarg 0x00 
+3fe9 e0a08000 istore 1 ,contw 
+3fea 20600000 rtn 
+
+hid_rx_process_handshake:
+3feb da200001 arg 1 ,rega 
+3fec 20404005 call hid_malloc_tx_buff 
+3fed 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+3fee e0a10000 istore 2 ,contw 
+3fef 58000000 setarg 0 
+3ff0 e0a08000 istore 1 ,contw 
+3ff1 7009b201 jam 1 ,mem_ui_data_txbuff_length 
+3ff2 6800c2e2 fetch 1 ,mem_hid_control_state 
+3ff3 79207e06 set1 l2cap_channel_hid_handshake_done 
+3ff4 6000c2e2 store 1 ,mem_hid_control_state 
+3ff5 7009bd12 jam bt_evt_hid_handshake ,mem_fifo_temp 
+3ff6 20207d86 branch ui_ipc_send_event 
+
+hid_rx_process_data:
+3ff7 e8c08000 ifetch 1 ,contr 
+3ff8 c000bffa beq hid_report_id_kb ,hid_rx_process_data_hid_kb 
+3ff9 20600000 rtn 
+
+hid_rx_process_data_hid_kb:
+3ffa 18c22200 copy contr ,rega 
+3ffb 6800c132 fetch 1 ,mem_device_option 
+3ffc c1818000 rtnne dvc_op_kb ,pdata 
+3ffd 1a220c00 copy rega ,contr 
+3ffe e8c08000 ifetch 1 ,contr 
+3fff 6000cb0f store 1 ,mem_kb_caps_led_status 
+4000 6000cb27 store 1 ,mem_hid_rx_data 
+4001 6800cb01 fetch 1 ,mem_kb_led_on_timer 
+4002 247a0000 nrtn blank 
+4003 704b2402 jam 2 ,mem_led_cap_delay_timer 
+4004 20600000 rtn 
+
+hid_malloc_tx_buff:
+4005 204047dc call l2cap_malloc 
+4006 1a220400 copy rega ,temp 
+4007 600889b2 storet 1 ,mem_ui_data_txbuff_length 
+4008 1fe20a00 copy pdata ,contw 
+4009 1a227e00 copy rega ,pdata 
+400a e0a10000 istore 2 ,contw 
+400b 20600000 rtn 
+
+kb_init:
+400c 20404196 call kb_clear_keys 
+400d 20758000 rtn wake 
+400e 20404034 call kb_init_common 
+400f 20404055 call kb_led_int 
+4010 580041a1 setarg kb_process_idle 
+4011 60014294 store 2 ,mem_cb_idle_process 
+4012 58004082 setarg kb_send_process 
+4013 60014292 store 2 ,mem_cb_bt_process 
+4014 580041e6 setarg kb_process_bb_event 
+4015 60014296 store 2 ,mem_cb_bb_event_process 
+4016 58004268 setarg kb_process_lpm_before 
+4017 6001428e store 2 ,mem_cb_before_lpm 
+4018 58004246 setarg kb_discovery_timeout_sleep 
+4019 60014298 store 2 ,mem_cb_discovry_timeout 
+401a 5800424b setarg kb_before_hibernate 
+401b 6001428c store 2 ,mem_cb_before_hibernate 
+401c 7008d400 jam 0 ,mem_sp_flag 
+401d 7008d500 jam 0 ,mem_master_sp_flag 
+401e 20404027 call kb_init_environment 
+401f 6801470b fetch 2 ,mem_ui_state_map 
+4020 c2863e54 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+
+kb_check_reconn_target:
+4021 6800c2b5 fetch 1 ,mem_xrecord_mode 
+4022 c019c024 beq rec_3_mode ,kb_3_check_reconn_target 
+4023 2020423e branch kb_start_discovery 
+
+kb_3_check_reconn_target:
+4024 68034273 fetch 6 ,mem_hci_plap 
+4025 203a3e54 branch app_bt_start_discovery_short ,blank 
+4026 20203e49 branch app_bt_start_reconnect 
+
+kb_init_environment:
+4027 20403e28 call app_initflag_check 
+4028 2022c032 branch kb_load_eeprom_param ,zero 
+4029 58000001 setarg kb_map2_status_win 
+402a 6000cae9 store 1 ,mem_kb_current_status 
+402b 2040427d call store_current_status 
+402c 68034b07 fetch 6 ,mem_master_addr 
+402d 60030040 store 6 ,mem_plap 
+402e 60034273 store 6 ,mem_hci_plap 
+402f 20406432 call eeprom_store_bd_reconn_info 
+4030 7042b533 jam rec_3_mode ,mem_xrecord_mode 
+4031 20203e20 branch app_initflag_store 
+
+kb_load_eeprom_param:
+4032 20404284 call read_current_status 
+4033 20206441 branch eeprom_load_reconn_info 
+
+kb_init_common:
+4034 793f8025 set0 mark_ext_patch ,mark 
+4035 44e4c019 bpatch patch19_1 ,mem_patch19 
+4036 70807000 hjam 0 ,core_gpio_oe0 
+4037 708078ff hjam 0xff ,core_gpio_pu0 
+4038 708071ff hjam 0xff ,core_gpio_oe1 
+4039 708072ff hjam 0xff ,core_gpio_oe2 
+403a 68108073 hfetch 1 ,core_gpio_oe3 
+403b 1fe1fe07 or_into 0x07 ,pdata 
+403c 60108073 hstore 1 ,core_gpio_oe3 
+403d 70808000 hjam 0x00 ,core_gpio_sel 
+403e 70808100 hjam 0x00 ,core_gpio_sel1 
+403f 70806f00 hjam 0x00 ,core_kscn_rowmask 
+4040 58000013 setarg kb_kscan_col_1 
+4041 1fe9fe00 lshift3 pdata ,pdata 
+4042 1fe0fe07 add pdata ,kb_kscan_row_1 ,pdata 
+4043 60108064 hstore 1 ,core_kscn_rctc 
+4044 708083ff hjam 0xff ,core_gpio_key0 
+4045 708084ff hjam 0xFf ,core_gpio_key1 
+4046 68108085 hfetch 1 ,core_gpio_key2 
+4047 1fe1fe01 or_into 0x01 ,pdata 
+4048 60108085 hstore 1 ,core_gpio_key2 
+4049 68108043 hfetch 1 ,core_config 
+404a 79207e02 set1 2 ,pdata 
+404b 60108043 hstore 1 ,core_config 
+404c 7080630c hjam 0x0c ,core_kscn_ksctrl 
+404d 70806630 hjam 0x30 ,core_kscn_scancycle_timer_h 
+404e 68108051 hfetch 1 ,core_clkoff + 1 
+404f 793ffe01 set0 1 ,pdata 
+4050 60108051 hstore 1 ,core_clkoff + 1 
+4051 68108063 hfetch 1 ,core_kscn_ksctrl 
+4052 79207e00 set1 0 ,pdata 
+4053 60108063 hstore 1 ,core_kscn_ksctrl 
+4054 20600000 rtn 
+
+kb_led_int:
+4055 20404058 call kb_led_cap_init 
+4056 2040405c call kb_led_num_init 
+4057 20204060 branch kb_led_scl_init 
+
+kb_led_cap_init:
+4058 6800c737 fetch 1 ,mem_led_cap_gpio 
+4059 c17f8000 rtneq 0xff 
+405a 6808c737 fetcht 1 ,mem_led_cap_gpio 
+405b 202064e8 branch gpio_config_output 
+
+kb_led_num_init:
+405c 6800c738 fetch 1 ,mem_led_num_gpio 
+405d c17f8000 rtneq 0xff 
+405e 6808c738 fetcht 1 ,mem_led_num_gpio 
+405f 202064e8 branch gpio_config_output 
+
+kb_led_scl_init:
+4060 6800c739 fetch 1 ,mem_led_scl_gpio 
+4061 c17f8000 rtneq 0xff 
+4062 6808c739 fetcht 1 ,mem_led_scl_gpio 
+4063 202064e8 branch gpio_config_output 
+
+kb_led_cap_delay_timer:
+4064 6800cb24 fetch 1 ,mem_led_cap_delay_timer 
+4065 207a0000 rtn blank 
+4066 1fe0ffff increase -1 ,pdata 
+4067 6000cb24 store 1 ,mem_led_cap_delay_timer 
+4068 247a0000 nrtn blank 
+
+kb_led_capslock:
+4069 793f8025 set0 mark_ext_patch ,mark 
+406a 44e54019 bpatch patch19_2 ,mem_patch19 
+406b 6800cb27 fetch 1 ,mem_hid_rx_data 
+406c 1fe22200 copy pdata ,rega 
+406d 6808c738 fetcht 1 ,mem_led_num_gpio 
+406e 2a2ffe00 isolate1 kb_num_lock_selected ,rega 
+406f 20406500 call gpio_out_flag 
+4070 6808c737 fetcht 1 ,mem_led_cap_gpio 
+4071 2a2ffe01 isolate1 kb_caps_lock_selected ,rega 
+4072 20406500 call gpio_out_flag 
+4073 6808c739 fetcht 1 ,mem_led_scl_gpio 
+4074 2a2ffe02 isolate1 kb_scroll_lock_selected ,rega 
+4075 20406500 call gpio_out_flag 
+4076 2020407d branch kb_auto_disable_mult 
+
+kb_enble_mult_timer:
+4077 6800caa7 fetch 1 ,mem_auto_enable_mult_timer 
+4078 207a0000 rtn blank 
+4079 1fe0ffff increase -1 ,pdata 
+407a 6000caa7 store 1 ,mem_auto_enable_mult_timer 
+407b 247a0000 nrtn blank 
+407c 20203e7f branch app_lpm_mult_enable 
+
+kb_auto_disable_mult:
+407d 6800caa8 fetch 1 ,mem_auto_enable_mult_timer_init 
+407e 6000caa7 store 1 ,mem_auto_enable_mult_timer 
+407f 20203e81 branch app_lpm_mult_disable 
+
+kb_led_cap_status:
+4080 704b2601 jam 1 ,mem_led_cap_flag 
+4081 202040b4 branch bt_send_kb_data_by_report0 + 8 
+
+kb_send_process:
+4082 20404812 call l2cap_malloc_is_fifo_nearly_full 
+4083 247a0000 nrtn blank 
+4084 68034b07 fetch 6 ,mem_master_addr 
+4085 680b0040 fetcht 6 ,mem_plap 
+4086 98467c00 isub temp ,null 
+4087 2022c097 branch kb_debug_send_keydata ,zero 
+4088 680083fa fetch 1 ,mem_pincode_state 
+4089 c000c119 beq pincode_state_wait_pincode ,kb_pincode 
+408a 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+408b c19f8000 rtnne l2cap_channel_setup_complete 
+408c 680c4aba fetcht 8 ,mem_table_last_repory_data0 
+408d 68044aaa fetch 8 ,mem_map2_out_report0 
+408e 60044aba store 8 ,mem_table_last_repory_data0 
+408f 98467c00 isub temp ,null 
+4090 2442c0ac ncall bt_send_kb_data_by_report0 ,zero 
+4091 680c4ac2 fetcht 8 ,mem_table_last_repory_data1 
+4092 68044ab2 fetch 8 ,mem_map2_out_report1 
+4093 60044ac2 store 8 ,mem_table_last_repory_data1 
+4094 98467c00 isub temp ,null 
+4095 2442c0c7 ncall bt_send_kb_data_by_report1 ,zero 
+4096 20600000 rtn 
+
+kb_debug_send_keydata:
+4097 6800caca fetch 1 ,mem_kb_down 
+4098 c03fc0aa beq 0x7f ,fn_test 
+4099 680c4aba fetcht 8 ,mem_table_last_repory_data0 
+409a 68044aaa fetch 8 ,mem_map2_out_report0 
+409b 60044aba store 8 ,mem_table_last_repory_data0 
+409c 98467c00 isub temp ,null 
+409d 20628000 rtn zero 
+409e d8c04aaa arg mem_map2_out_report0 ,contr 
+409f da204ade arg mem_table_temp ,rega 
+40a0 204040bb call fill_kb_send_data 
+40a1 da20000a arg 10 ,rega 
+40a2 20404005 call hid_malloc_tx_buff 
+40a3 58000053 setarg l2cap_hid_interrupt_channel 
+40a4 e0a10000 istore 2 ,contw 
+40a5 580001a1 setarg 0x01a1 
+40a6 e0a10000 istore 2 ,contw 
+40a7 68044ade fetch 8 ,mem_table_temp 
+40a8 e0a40000 istore 8 ,contw 
+40a9 20600000 rtn 
+
+fn_test:
+40aa 60044aaa store 8 ,mem_map2_out_report0 
+40ab 20204099 branch kb_debug_send_keydata + 2 
+
+bt_send_kb_data_by_report0:
+40ac 20404812 call l2cap_malloc_is_fifo_nearly_full 
+40ad 247a0000 nrtn blank 
+40ae 6800caa9 fetch 1 ,mem_kb_temp_flag 
+40af c3810000 rtnbit1 key_search_m_key_flag 
+40b0 204040e0 call init_kb_no_data_timer 
+40b1 6800caaa fetch 1 ,mem_map2_out_report0 
+40b2 c01cc080 beq caps_lock_data ,kb_led_cap_status 
+40b3 704b2600 jam 0 ,mem_led_cap_flag 
+40b4 d8c04aaa arg mem_map2_out_report0 ,contr 
+40b5 da204ade arg mem_table_temp ,rega 
+40b6 204040bb call fill_kb_send_data 
+40b7 204040f1 call bt_send_kb_data_by_report0_ptr 
+40b8 68044ade fetch 8 ,mem_table_temp 
+40b9 e0a40000 istore 8 ,contw 
+40ba 20600000 rtn 
+
+fill_kb_send_data:
+40bb d8400000 arg 0 ,temp 
+40bc 1a208a02 add rega ,2 ,contw 
+40bd df200008 arg kb_map2_report_length ,loopcnt 
+
+store_key:
+40be e8c08000 ifetch 1 ,contr 
+40bf c303c0c3 bbit0 7 ,not_key_status 
+40c0 1fe10e07 and pdata ,7 ,queue 
+40c1 f9200400 qset1 temp 
+40c2 202040c4 branch store_key_next 
+
+not_key_status:
+40c3 e0a08000 istore 1 ,contw 
+
+store_key_next:
+40c4 c20040be loop store_key 
+40c5 e2290000 istoret 2 ,rega 
+40c6 20600000 rtn 
+
+bt_send_kb_data_by_report1:
+40c7 20404812 call l2cap_malloc_is_fifo_nearly_full 
+40c8 247a0000 nrtn blank 
+40c9 204040e0 call init_kb_no_data_timer 
+40ca 6800cab2 fetch 1 ,mem_map2_out_report1 
+40cb c07fc10d beq sfk_android_map ,android_search_m_key 
+40cc c07f4109 beq sfk_ios_screenshot ,ios_screenshot 
+40cd 58000000 setarg 0 
+40ce 60044ade store 8 ,mem_table_temp 
+40cf 204040d6 call fill_kb_send_report1_data 
+40d0 6800caa9 fetch 1 ,mem_kb_temp_flag 
+40d1 c28140ff bbit1 key_search_m_key_flag ,android_search_m_key_releas 
+40d2 204040f8 call bt_send_kb_data_by_report1_ptr 
+40d3 68024ade fetch 4 ,mem_table_temp 
+40d4 e0a20000 istore 4 ,contw 
+40d5 20600000 rtn 
+
+fill_kb_send_report1_data:
+40d6 6800cab2 fetch 1 ,mem_map2_out_report1 
+40d7 207a0000 rtn blank 
+40d8 7820fc00 enable true 
+40d9 6800cab2 fetch 1 ,mem_map2_out_report1 
+40da 1fe20e00 copy pdata ,queue 
+40db 68044ade fetch 8 ,mem_table_temp 
+40dc f920fe00 qsetflag true ,pdata 
+40dd 60044ade store 8 ,mem_table_temp 
+40de 7840fc00 disable true 
+40df 20600000 rtn 
+
+init_kb_no_data_timer:
+40e0 68014afa fetch 2 ,mem_kb_no_data_timeout 
+40e1 60014aa1 store 2 ,mem_kb_no_data_timer 
+40e2 20600000 rtn 
+
+kb_check_no_data_timer:
+40e3 68014aa1 fetch 2 ,mem_kb_no_data_timer 
+40e4 207a0000 rtn blank 
+40e5 68014aa1 fetch 2 ,mem_kb_no_data_timer 
+40e6 1fe0ffff increase -1 ,pdata 
+40e7 60014aa1 store 2 ,mem_kb_no_data_timer 
+40e8 247a0000 nrtn blank 
+40e9 202040ea branch kb_disconnect 
+
+kb_disconnect:
+40ea 58000000 setarg 0 
+40eb 60014aa1 store 2 ,mem_kb_no_data_timer 
+40ec 6801470b fetch 2 ,mem_ui_state_map 
+40ed c284be6b bbit1 ui_state_ble_connected ,app_ble_disconnect 
+40ee 6801470b fetch 2 ,mem_ui_state_map 
+40ef c2803e52 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+40f0 20600000 rtn 
+
+bt_send_kb_data_by_report0_ptr:
+40f1 da20000a arg 10 ,rega 
+40f2 20404005 call hid_malloc_tx_buff 
+40f3 680142de fetch 2 ,mem_hid_int_remote_cid 
+40f4 e0a10000 istore 2 ,contw 
+40f5 580001a1 setarg 0x01a1 
+40f6 e0a10000 istore 2 ,contw 
+40f7 20600000 rtn 
+
+bt_send_kb_data_by_report1_ptr:
+40f8 da200006 arg 6 ,rega 
+40f9 20404005 call hid_malloc_tx_buff 
+40fa 680142de fetch 2 ,mem_hid_int_remote_cid 
+40fb e0a10000 istore 2 ,contw 
+40fc 580002a1 setarg 0x02a1 
+40fd e0a10000 istore 2 ,contw 
+40fe 20600000 rtn 
+
+android_search_m_key_releas:
+40ff 204040f1 call bt_send_kb_data_by_report0_ptr 
+4100 58000000 setarg 0 
+4101 e0a40000 istore 8 ,contw 
+4102 204040f8 call bt_send_kb_data_by_report1_ptr 
+4103 58000000 setarg 0 
+4104 e0a20000 istore 4 ,contw 
+4105 6800caa9 fetch 1 ,mem_kb_temp_flag 
+4106 793ffe02 set0 key_search_m_key_flag ,pdata 
+4107 6000caa9 store 1 ,mem_kb_temp_flag 
+4108 20600000 rtn 
+
+ios_screenshot:
+4109 204040f8 call bt_send_kb_data_by_report1_ptr 
+410a 58002002 setarg 0x2002 
+410b e0a20000 istore 4 ,contw 
+410c 20600000 rtn 
+
+android_search_m_key:
+410d 204040f8 call bt_send_kb_data_by_report1_ptr 
+410e 58000040 setarg 0x40 
+410f e0a20000 istore 4 ,contw 
+4110 204040f1 call bt_send_kb_data_by_report0_ptr 
+4111 58000000 setarg 0 
+4112 e0a10000 istore 2 ,contw 
+4113 58000010 setarg 0x10 
+4114 e0a38000 istore 7 ,contw 
+4115 6800caa9 fetch 1 ,mem_kb_temp_flag 
+4116 79207e02 set1 key_search_m_key_flag ,pdata 
+4117 6000caa9 store 1 ,mem_kb_temp_flag 
+4118 20600000 rtn 
+
+kb_pincode:
+4119 793f8025 set0 mark_ext_patch ,mark 
+411a 44e5c019 bpatch patch19_3 ,mem_patch19 
+411b 6800caa9 fetch 1 ,mem_kb_temp_flag 
+411c c4008000 rtnbit0 key_event_flag 
+411d 793ffe01 set0 key_event_flag ,pdata 
+411e 6000caa9 store 1 ,mem_kb_temp_flag 
+411f 6808c718 fetcht 1 ,mem_pin_length 
+4120 58004719 setarg mem_pin 
+4121 98408a00 iadd temp ,contw 
+4122 6800caca fetch 1 ,mem_kb_down 
+4123 203a4128 branch kb_pincode_rtn ,blank 
+4124 c015412a beq kb_kcode_bksp ,kb_pincode_bksp 
+4125 c0944134 bne kb_kcode_enter ,kb_pincode_data 
+4126 6008c718 storet 1 ,mem_pin_length 
+4127 20203e45 branch app_bt_set_pincode 
+
+kb_pincode_rtn:
+4128 6008c718 storet 1 ,mem_pin_length 
+4129 20600000 rtn 
+
+kb_pincode_bksp:
+412a 6800c718 fetch 1 ,mem_pin_length 
+412b 207a0000 rtn blank 
+412c 1fe0ffff increase -1 ,pdata 
+412d 6000c718 store 1 ,mem_pin_length 
+412e d8a04719 arg mem_pin ,contw 
+412f 98a08a00 iadd contw ,contw 
+4130 58000000 setarg 0 
+4131 e0a08000 istore 1 ,contw 
+4132 78367c00 enable user2 
+4133 20204143 branch kb_send_pin 
+
+kb_pincode_data:
+4134 1fe67c1d sub pdata ,kb_kcode_1_m1 ,null 
+4135 20610000 rtn positive 
+4136 d8400030 arg 0x30 ,temp 
+4137 1fe67c27 sub pdata ,kb_kcode_0 ,null 
+4138 24610000 nrtn positive 
+4139 2022c13d branch kb_pincode_0 ,zero 
+413a d840001d arg kb_kcode_1_m1 ,temp 
+413b 98460400 isub temp ,temp 
+413c 18418430 or_into 0x30 ,temp 
+
+kb_pincode_0:
+413d e0a88000 istoret 1 ,contw 
+413e 6800c718 fetch 1 ,mem_pin_length 
+413f 1fe0fe01 increase 1 ,pdata 
+4140 6000c718 store 1 ,mem_pin_length 
+4141 78567c00 disable user2 
+4142 20204143 branch kb_send_pin 
+
+kb_send_pin:
+4143 680142de fetch 2 ,mem_hid_int_remote_cid 
+4144 207a0000 rtn blank 
+4145 da200003 arg 3 ,rega 
+4146 20404005 call hid_malloc_tx_buff 
+4147 680142de fetch 2 ,mem_hid_int_remote_cid 
+4148 e0a10000 istore 2 ,contw 
+4149 5800ffa1 setarg 0xffa1 
+414a e0a10000 istore 2 ,contw 
+414b 58000000 setarg 0 
+414c 79367e00 setflag user2 ,0 ,pdata 
+414d e0a08000 istore 1 ,contw 
+414e 20600000 rtn 
+
+kb_kscan_check_if_empty:
+414f 78547c00 disable user 
+4150 78567c00 disable user2 
+4151 68108119 hfetch 1 ,core_kscn_kstat 
+4152 c3800000 rtnbit1 kb_kscan_stat_empty 
+
+kb_kscan_check_ghost:
+4153 6810811b hfetch 1 ,core_kscn_event_num 
+4154 c2804159 bbit1 kb_kscan_key_event_stat ,kb_kscan_process_event 
+4155 68108119 hfetch 1 ,core_kscn_kstat 
+4156 c3034159 bbit0 kb_kscan_stat_ghost ,kb_kscan_process_event 
+4157 6810811a hfetch 1 ,core_kscn_event 
+4158 2020414f branch kb_kscan_check_if_empty 
+
+kb_kscan_process_event:
+4159 78347c00 enable user 
+415a 78367c00 enable user2 
+415b 6810811b hfetch 1 ,core_kscn_event_num 
+415c 2fec0000 isolate0 kb_kscan_key_event_stat ,pdata 
+415d 6810811a hfetch 1 ,core_kscn_event 
+415e d8c049ff arg mem_kb_map ,contr 
+415f 98c08c00 iadd contr ,contr 
+4160 e8c08000 ifetch 1 ,contr 
+4161 c283c191 bbit1 7 ,kb_kscan_read_statekey 
+4162 2420c182 nbranch kb_kscan_release_a_key_data ,true 
+4163 78567c00 disable user2 
+4164 98000400 iforce temp 
+4165 6800c731 fetch 1 ,mem_kb_keys 
+4166 1fe67c04 sub pdata ,4 ,null 
+4167 24610000 nrtn positive 
+4168 1fe22200 copy pdata ,rega 
+4169 df200003 arg 3 ,loopcnt 
+416a d8c0472b arg mem_kb_report_data ,contr 
+
+kb_kscan_check_report_data:
+416b e8c08000 ifetch 1 ,contr 
+416c 98467c00 isub temp ,null 
+416d 2022c14f branch kb_kscan_check_if_empty ,zero 
+416e c200416b loop kb_kscan_check_report_data 
+
+kb_kscan_store_a_key_data:
+416f 1a227e00 copy rega ,pdata 
+4170 d8a0472b arg mem_kb_report_data ,contw 
+4171 98a08a00 iadd contw ,contw 
+4172 e0a88000 istoret 1 ,contw 
+4173 1fe0fe01 increase 1 ,pdata 
+4174 6000c731 store 1 ,mem_kb_keys 
+4175 6810811b hfetch 1 ,core_kscn_event_num 
+4176 1fe97e00 rshift3 pdata ,pdata 
+4177 243a4179 nbranch kb_kscan_check_nextevent ,blank 
+4178 20204180 branch kb_kscan_prepare_send 
+
+kb_kscan_check_nextevent:
+4179 1fe0ffff increase -1 ,pdata 
+417a 2022c180 branch kb_kscan_prepare_send ,zero 
+417b 6810811b hfetch 1 ,core_kscn_event_num 
+417c 1fe17e01 and_into 0x01 ,pdata 
+417d c000414f beq kb_kscan_key_press ,kb_kscan_check_if_empty 
+417e c000c180 beq kb_kscan_key_release ,kb_kscan_prepare_send 
+417f 20600000 rtn 
+
+kb_kscan_prepare_send:
+4180 78367c00 enable user2 
+4181 20600000 rtn 
+
+kb_kscan_release_a_key_data:
+4182 1fe104ff and pdata ,0xff ,temp 
+4183 6800c731 fetch 1 ,mem_kb_keys 
+4184 207a0000 rtn blank 
+4185 98007200 iforce loopcnt 
+4186 d8c0472b arg mem_kb_report_data ,contr 
+
+kb_kscan_find_same_key_data:
+4187 e8c08000 ifetch 1 ,contr 
+4188 98467c00 isub temp ,null 
+4189 2022c291 branch kb_kscan_release_foundkey ,zero 
+418a c2004187 loop kb_kscan_find_same_key_data 
+418b 20600000 rtn 
+
+kb_kscan_check_nextevent2:
+418c 6810811b hfetch 1 ,core_kscn_event_num 
+418d 1fe17e01 and_into 0x01 ,pdata 
+418e c0004180 beq kb_kscan_key_press ,kb_kscan_prepare_send 
+418f c000c14f beq kb_kscan_key_release ,kb_kscan_check_if_empty 
+4190 20600000 rtn 
+
+kb_kscan_read_statekey:
+4191 1fe10e07 and pdata ,7 ,queue 
+4192 6800c729 fetch 1 ,mem_kb_state 
+4193 f920fe00 qsetflag true ,pdata 
+4194 6000c729 store 1 ,mem_kb_state 
+4195 20600000 rtn 
+
+kb_clear_keys:
+4196 58000000 setarg 0 
+4197 60044aca store 8 ,mem_kb_down 
+4198 6000c731 store 1 ,mem_kb_keys 
+4199 20600000 rtn 
+
+kb_clean_kscan_fifo:
+419a 6810811b hfetch 1 ,core_kscn_event_num 
+419b 6810811a hfetch 1 ,core_kscn_event 
+419c 68108119 hfetch 1 ,core_kscn_kstat 
+419d c300419a bbit0 kb_kscan_stat_empty ,kb_clean_kscan_fifo 
+419e 580000ff setarg 0xff 
+419f 78347c00 enable user 
+41a0 20600000 rtn 
+
+kb_process_idle:
+41a1 204041ac call kb_ui_check_paring_button 
+41a2 20758000 rtn wake 
+
+kb_process:
+41a3 6800cb17 fetch 1 ,mem_kb_get_fn_flag 
+41a4 205a4299 call kb_recover_kb_down_data ,blank 
+41a5 2040429c call kb_kscan_fn 
+41a6 6800c731 fetch 1 ,mem_kb_keys 
+41a7 207a0000 rtn blank 
+41a8 204041bf call kb_read_gpio 
+41a9 68020b26 fetch 4 ,mem_kb_gpio_val 
+41aa 60024afc store 4 ,mem_kb_gpio_last_val 
+41ab 20600000 rtn 
+
+kb_ui_check_paring_button:
+41ac 6801470b fetch 2 ,mem_ui_state_map 
+41ad c4038000 rtnbit0 ui_state_bt_reconnect 
+41ae 6800caa9 fetch 1 ,mem_kb_temp_flag 
+41af c3800000 rtnbit1 cacel_reconn_flag ,pdata 
+41b0 68014aca fetch 2 ,mem_kb_down 
+41b1 68094b28 fetcht 2 ,mem_kb_fn_c 
+41b2 98467c00 isub temp ,null 
+41b3 2022c1bb branch check_bb_reconn_cancel ,zero 
+41b4 68014aca fetch 2 ,mem_kb_down 
+41b5 68094b29 fetcht 2 ,mem_kb_c_fn 
+41b6 98467c00 isub temp ,null 
+41b7 2022c1bb branch check_bb_reconn_cancel ,zero 
+41b8 6801470b fetch 2 ,mem_ui_state_map 
+41b9 c28641bb bbit1 ui_state_btn_down ,check_bb_reconn_cancel 
+41ba 20600000 rtn 
+
+check_bb_reconn_cancel:
+41bb 6800caa9 fetch 1 ,mem_kb_temp_flag 
+41bc 79207e00 set1 cacel_reconn_flag ,pdata 
+41bd 6000caa9 store 1 ,mem_kb_temp_flag 
+41be 20207e3d branch check_51cmd_bb_reconn_cancel 
+
+kb_read_gpio:
+41bf 68118083 hfetch 3 ,core_gpio_key0 
+41c0 98002400 iforce regb 
+41c1 68120078 hfetch 4 ,core_gpio_pu0 
+41c2 98002200 iforce rega 
+41c3 681c0070 hfetcht 8 ,core_gpio_oe0 
+41c4 58000000 setarg 0 
+41c5 60118083 hstore 3 ,core_gpio_key0 
+41c6 20000064 nop 100 
+41c7 6810811c hfetch 1 ,core_gpio_in 
+41c8 60008b26 store 1 ,mem_kb_gpio_val 
+41c9 70807800 hjam 0 ,core_gpio_pu0 
+41ca 68108073 hfetch 1 ,core_gpio_oe3 
+41cb 1fe17ef0 and_into 0xf0 ,pdata 
+41cc 60108073 hstore 1 ,core_gpio_oe3 
+41cd 1fe2feff xor_into 0xff ,pdata 
+41ce 6010807b hstore 1 ,core_gpio_pu3 
+41cf 580000ff setarg 0xff 
+41d0 60118070 hstore 3 ,core_gpio_oe0 
+41d1 5800ffff setarg 0xffff 
+41d2 60110079 hstore 2 ,core_gpio_pu1 
+41d3 20000064 nop 100 
+41d4 6811811d hfetch 3 ,core_gpio_in1 
+41d5 9a417e00 iand regb ,pdata 
+41d6 60018b27 store 3 ,mem_kb_gpio_val + 1 
+41d7 1a227e00 deposit rega 
+41d8 60120078 hstore 4 ,core_gpio_pu0 
+41d9 601c0070 hstoret 8 ,core_gpio_oe0 
+41da 1a427e00 deposit regb 
+41db 60118083 hstore 3 ,core_gpio_key0 
+41dc 20600000 rtn 
+
+kb_pairing_button_check:
+41dd 6800c133 fetch 1 ,mem_scan_mode 
+41de 247a0000 nrtn blank 
+41df 6800c283 fetch 1 ,mem_app_handshake_flag 
+41e0 247a0000 nrtn blank 
+41e1 6800c701 fetch 1 ,mem_ui_button_timer 
+41e2 207a0000 rtn blank 
+41e3 6800c702 fetch 1 ,mem_ui_button_last_state 
+41e4 247a0000 nrtn blank 
+41e5 20203e75 branch app_enter_hibernate 
+
+kb_process_bb_event:
+41e6 1a627e00 copy regc ,pdata 
+41e7 c003426d beq bt_evt_hid_connected ,kb_hid_connected 
+41e8 c0054247 beq bt_evt_pincode_req ,kb_process_pincode 
+41e9 c0094271 beq bt_evt_hid_handshake ,kb_bt_hid_handshake 
+41ea c0084223 beq bt_evt_button_long_pressed ,kb_bb_event_discovery_btn 
+41eb c0173e32 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+41ec c000c23a beq bt_evt_bb_connected ,kb_stop_discovery 
+41ed c001420c beq bt_evt_bb_disconnected ,kb_bb_disconnected 
+41ee c0024201 beq bt_evt_reconn_failed ,kb_bb_event_reconn_failed 
+41ef c009c201 beq bt_evt_reconn_page_timeout ,kb_bb_event_reconn_failed 
+41f0 1fe1040f and pdata ,0x0f ,temp 
+41f1 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+41f2 c02841f4 beq bt_evt_timer_init ,kb_bb_event_timer 
+41f3 20600000 rtn 
+
+kb_bb_event_timer:
+41f4 793f8025 set0 mark_ext_patch ,mark 
+41f5 44e64019 bpatch patch19_4 ,mem_patch19 
+41f6 6008824e storet 1 ,mem_app_evt_timer_count 
+
+kb_bb_event_100ms_loop:
+41f7 6800824e fetch 1 ,mem_app_evt_timer_count 
+41f8 207a0000 rtn blank 
+41f9 1fe0ffff increase -1 ,pdata 
+41fa 6000824e store 1 ,mem_app_evt_timer_count 
+41fb 20404064 call kb_led_cap_delay_timer 
+41fc 2040421d call kb_check_hid_handshake_timer 
+41fd 20404077 call kb_enble_mult_timer 
+41fe 204040e3 call kb_check_no_data_timer 
+41ff 204042b3 call select_system_led_timer 
+4200 202041f7 branch kb_bb_event_100ms_loop 
+
+kb_bb_event_reconn_failed:
+4201 6801470b fetch 2 ,mem_ui_state_map 
+4202 c286423e bbit1 ui_state_btn_down ,kb_start_discovery 
+4203 6800caa9 fetch 1 ,mem_kb_temp_flag 
+4204 c3003e0a bbit0 ,cacel_reconn_flag ,app_bb_hibernate 
+4205 6800caa9 fetch 1 ,mem_kb_temp_flag 
+4206 793ffe00 set0 cacel_reconn_flag ,pdata 
+4207 6000caa9 store 1 ,mem_kb_temp_flag 
+4208 6801470b fetch 2 ,mem_ui_state_map 
+4209 793ffe07 set0 ui_state_bt_reconnect ,pdata 
+420a 6001470b store 2 ,mem_ui_state_map 
+420b 20600000 rtn 
+
+kb_bb_disconnected:
+420c 793f8025 set0 mark_ext_patch ,mark 
+420d 44e6c019 bpatch patch19_5 ,mem_patch19 
+420e 2040421a call kb_bb_discon_clear_stack 
+420f 680142ad fetch app_disc_rsn_size ,mem_app_disconn_reason 
+4210 c2803e0c bbit1 app_disc_by_button ,app_disconn_reason_clear 
+4211 c280c214 bbit1 app_disc_after_pairing ,kb_event_light_state_pairing 
+4212 c2814217 bbit1 app_disc_after_reconn ,kb_event_light_state_reconn 
+4213 2020423e branch kb_start_discovery 
+
+kb_event_light_state_pairing:
+4214 c282c217 bbit1 app_disc_after_handshake ,kb_event_light_state_hibernate 
+4215 c281c217 bbit1 app_disc_after_sniff ,kb_event_light_state_hibernate 
+4216 2020423e branch kb_start_discovery 
+
+kb_event_light_state_reconn:
+
+kb_event_light_state_hibernate:
+4217 6801470b fetch 2 ,mem_ui_state_map 
+4218 c286423e bbit1 ui_state_btn_down ,kb_start_discovery 
+4219 20203e0a branch app_bb_hibernate 
+
+kb_bb_discon_clear_stack:
+421a 70428300 jam app_handshake_null ,mem_app_handshake_flag 
+421b 704b0200 jam 0 ,mem_kb_debug_sm 
+421c 20600000 rtn 
+
+kb_check_hid_handshake_timer:
+421d 6800c709 fetch 1 ,mem_hid_handshake_timer_count 
+421e 207a0000 rtn blank 
+421f 1fe0ffff increase -1 ,pdata 
+4220 6000c709 store 1 ,mem_hid_handshake_timer_count 
+4221 247a0000 nrtn blank 
+4222 20204271 branch kb_bt_hid_handshake 
+
+kb_bb_event_discovery_btn:
+4223 58000000 setarg 0 
+4224 60014a9f store 2 ,mem_kb_direct_timer 
+4225 6000c718 store 1 ,mem_pin_length 
+4226 2040422a call led_cap_darking 
+4227 2040422d call kb_3_0_bb_event_discovery_btn 
+4228 20403e81 call app_lpm_mult_disable 
+4229 2020423e branch kb_start_discovery 
+
+led_cap_darking:
+422a 704af901 jam 1 ,mem_led_cap_gpio_status 
+422b 6808c737 fetcht 1 ,mem_led_cap_gpio 
+422c 202064fd branch gpio_out_inactive 
+
+kb_3_0_bb_event_discovery_btn:
+422d 793f8025 set0 mark_ext_patch ,mark 
+422e 44e74019 bpatch patch19_6 ,mem_patch19 
+422f 6801470b fetch 2 ,mem_ui_state_map 
+4230 2feffe07 isolate1 ui_state_bt_reconnect ,pdata 
+4231 2040be50 call app_bt_reconnect_cancel ,true 
+4232 68014716 fetch 2 ,mem_discovery_timeout 
+4233 60014707 store 2 ,mem_discovery_timeout_timer_count 
+4234 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+4235 79207e00 set1 app_disc_by_button ,pdata 
+4236 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+4237 6801470b fetch 2 ,mem_ui_state_map 
+4238 c2803e52 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+4239 20600000 rtn 
+
+kb_stop_discovery:
+423a 20403e73 call app_led_stop_blink 
+423b 58000000 setarg 0 
+423c 60014a9d store 2 ,mem_kb_discovery_timer 
+423d 20203e59 branch app_bt_stop_discovery 
+
+kb_start_discovery:
+423e 20403e81 call app_lpm_mult_disable 
+423f 68014716 fetch 2 ,mem_discovery_timeout 
+4240 60014a9d store 2 ,mem_kb_discovery_timer 
+4241 20403e57 call app_bt_start_discovery 
+4242 704b0100 jam 0 ,mem_kb_led_on_timer 
+4243 20403e6f call app_led_start_blink 
+4244 2040419a call kb_clean_kscan_fifo 
+4245 20204196 branch kb_clear_keys 
+
+kb_discovery_timeout_sleep:
+4246 20203e75 branch app_enter_hibernate 
+
+kb_process_pincode:
+4247 70470900 jam 0 ,mem_hid_handshake_timer_count 
+4248 70471800 jam 0 ,mem_pin_length 
+4249 20404196 call kb_clear_keys 
+424a 2020419a branch kb_clean_kscan_fifo 
+
+kb_before_hibernate:
+424b 6800cb01 fetch 1 ,mem_kb_led_on_timer 
+424c 203a4254 branch kb_before_hibernate_cont ,blank 
+424d d8400140 arg 320 ,temp 
+424e 984f8400 imul32 temp ,temp 
+424f 1c427e00 copy clkn_bt ,pdata 
+4250 98408400 iadd temp ,temp 
+
+kb_before_hibernate_wait:
+4251 1c427e00 copy clkn_bt ,pdata 
+4252 98467c00 isub temp ,null 
+4253 24214251 nbranch kb_before_hibernate_wait ,positive 
+
+kb_before_hibernate_cont:
+4254 6808caef fetcht 1 ,mem_led_power_gpio 
+4255 204064fd call gpio_out_inactive 
+4256 78347c00 enable user 
+4257 68120138 hfetch 4 ,0x8138 
+4258 79347e1a setflag user ,26 ,pdata 
+4259 6012004c hstore 4 ,core_lpm_reg 
+425a 20403cf4 call lpm_write_ctrl 
+
+kb_wake_common:
+425b 70808300 hjam 0x00 ,core_gpio_key0 
+425c 70808400 hjam 0x00 ,core_gpio_key1 
+425d 68108085 hfetch 1 ,core_gpio_key2 
+425e 1fe17ef0 and_into 0xf0 ,pdata 
+425f 60108085 hstore 1 ,core_gpio_key2 
+4260 58000000 setarg 0x00 
+4261 600200a4 store 4 ,mem_gpio_wakeup_high 
+4262 580000ff setarg 0xff 
+4263 6808c715 fetcht 1 ,mem_ui_button_gpio 
+4264 18420e00 copy temp ,queue 
+4265 f9207e00 qset1 pdata 
+4266 600200a0 store 4 ,mem_gpio_wakeup_low 
+4267 20600000 rtn 
+
+kb_process_lpm_before:
+4268 2040425b call kb_wake_common 
+4269 6800809f fetch 1 ,mem_lpm_current_mult 
+426a 247a0000 nrtn blank 
+426b 7000a000 jam 0 ,mem_gpio_wakeup_low 
+426c 20600000 rtn 
+
+kb_hid_connected:
+426d 58000002 setarg hid_handshake_timeout 
+426e 6000c709 store 1 ,mem_hid_handshake_timer_count 
+426f 2040419a call kb_clean_kscan_fifo 
+4270 20204196 branch kb_clear_keys 
+
+kb_bt_hid_handshake:
+4271 793f8025 set0 mark_ext_patch ,mark 
+4272 44e7c019 bpatch patch19_7 ,mem_patch19 
+4273 20407d33 call ui_led_off 
+4274 70428301 jam app_handshake_done ,mem_app_handshake_flag 
+4275 2040419a call kb_clean_kscan_fifo 
+4276 20404196 call kb_clear_keys 
+4277 20403e7f call app_lpm_mult_enable 
+4278 20403e7d call app_bt_store_reconn_info 
+4279 58000000 setarg 0 
+427a 60014707 store 2 ,mem_discovery_timeout_timer_count 
+427b 6000c709 store 1 ,mem_hid_handshake_timer_count 
+427c 20203e79 branch app_bt_enter_sniff 
+
+store_current_status:
+427d 6800cae9 fetch 1 ,mem_kb_current_status 
+427e 1fe17e07 and_into 0x7 ,pdata 
+427f 6000cb00 store 1 ,mem_store_current_status 
+4280 d8400001 arg 1 ,temp 
+4281 da204b00 arg mem_store_current_status ,rega 
+4282 58001fec setarg eeprom_system_falg 
+4283 202062a8 branch iicd_write_eep 
+
+read_current_status:
+4284 d8400001 arg 1 ,temp 
+4285 da204b00 arg mem_store_current_status ,rega 
+4286 58001fec setarg eeprom_system_falg 
+4287 1ff0fe00 byteswap pdata ,pdata 
+4288 6001021a store 2 ,mem_addr_mi 
+4289 2040624c call iicd_read_eep 
+428a 6800cb00 fetch 1 ,mem_store_current_status 
+428b 1fe22400 copy pdata ,regb 
+428c 1fe17e0f and_into 0x0f ,pdata 
+428d c007c2b9 beq 0x0f ,kb_current_status_regroup 
+428e 1a427e00 copy regb ,pdata 
+428f 6000cae9 store 1 ,mem_kb_current_status 
+4290 20600000 rtn 
+
+kb_kscan_release_foundkey:
+4291 18c08bff add contr ,-1 ,contw 
+4292 20407ecd call memcpy 
+4293 6800c731 fetch 1 ,mem_kb_keys 
+4294 1fe0ffff increase -1 ,pdata 
+4295 6000c731 store 1 ,mem_kb_keys 
+4296 6800cb23 fetch 1 ,mem_kb_release_fn_data 
+4297 c03fc2bd beq 0x7f ,kb_clear_fn_lock_flag 
+4298 202042c0 branch kb_kscan_check 
+
+kb_recover_kb_down_data:
+4299 68044aca fetch 8 ,mem_kb_down 
+429a 60044b19 store 8 ,mem_kb_down_test 
+429b 202042c0 branch kb_kscan_check 
+
+kb_kscan_fn:
+429c 6800c731 fetch 1 ,mem_kb_keys 
+429d 203a42ca branch kb_kscan_no_data ,blank 
+429e 1fe22400 copy pdata ,regb 
+429f 6802caca fetch 5 ,mem_kb_down 
+42a0 1fe20400 copy pdata ,temp 
+
+kb_kscan_fn_loop:
+42a1 18427e00 copy temp ,pdata 
+42a2 2fe1fe7f compare 0x7f ,pdata ,0xff 
+42a3 2020c2b0 branch kb_get_fn ,true 
+42a4 1a40a5ff increase -1 ,regb 
+42a5 58004b12 setarg mem_kb_down_regroup 
+42a6 9a408a00 iadd regb ,contw 
+42a7 18427e00 copy temp ,pdata 
+42a8 e0a08000 istore 1 ,contw 
+42a9 18427e00 copy temp ,pdata 
+42aa 1fecfe00 rshift8 pdata ,pdata 
+42ab 1fe20400 copy pdata ,temp 
+42ac 243a42a1 nbranch kb_kscan_fn_loop ,blank 
+42ad 6802cb12 fetch 5 ,mem_kb_down_regroup 
+42ae 205a42cc call kb_down_data ,blank 
+42af 202042c0 branch kb_kscan_check 
+
+kb_get_fn:
+42b0 58000001 setarg 1 
+42b1 6000cb17 store 1 ,mem_kb_get_fn_flag 
+42b2 202042a9 branch kb_kscan_fn_loop + 8 
+
+select_system_led_timer:
+42b3 6800caf8 fetch 1 ,mem_select_system_led_timer 
+42b4 207a0000 rtn blank 
+42b5 1fe0ffff increase -1 ,pdata 
+42b6 6000caf8 store 1 ,mem_select_system_led_timer 
+42b7 247a0000 nrtn blank 
+42b8 20207d2f branch ui_led_blink_stop 
+
+kb_current_status_regroup:
+42b9 1a427e00 copy regb ,pdata 
+42ba 1fe17e01 and_into kb_map2_status_win ,pdata 
+42bb 6000cae9 store 1 ,mem_kb_current_status 
+42bc 20600000 rtn 
+
+kb_clear_fn_lock_flag:
+42bd 704b1700 jam 0 ,mem_kb_get_fn_flag 
+42be 204042cc call kb_down_data 
+42bf 202042c0 branch kb_kscan_check 
+
+kb_kscan_check:
+42c0 793f8025 set0 mark_ext_patch ,mark 
+42c1 44e8c01a bpatch patch1a_1 ,mem_patch1a 
+42c2 68108119 hfetch 1 ,core_kscn_kstat 
+42c3 c3800000 rtnbit1 kb_kscan_stat_empty 
+42c4 6810811b hfetch 1 ,core_kscn_event_num 
+42c5 c28042d4 bbit1 kb_kscan_key_event_stat ,kb_kscan_read_event 
+42c6 68108119 hfetch 1 ,core_kscn_kstat 
+42c7 c30342d4 bbit0 kb_kscan_stat_ghost ,kb_kscan_read_event 
+42c8 6810811a hfetch 1 ,core_kscn_event 
+42c9 202042c0 branch kb_kscan_check 
+
+kb_kscan_no_data:
+42ca 204042cf call kb_clear_data 
+42cb 202042c0 branch kb_kscan_check 
+
+kb_down_data:
+42cc 68044aca fetch 8 ,mem_kb_down 
+42cd 60044b19 store 8 ,mem_kb_down_test 
+42ce 20600000 rtn 
+
+kb_clear_data:
+42cf 58000000 setarg 0 
+42d0 6000cb17 store 1 ,mem_kb_get_fn_flag 
+42d1 6002cb12 store 5 ,mem_kb_down_regroup 
+42d2 60044aca store 8 ,mem_kb_down 
+42d3 20600000 rtn 
+
+kb_kscan_read_event:
+42d4 6800caa9 fetch 1 ,mem_kb_temp_flag 
+42d5 79207e01 set1 key_event_flag ,pdata 
+42d6 6000caa9 store 1 ,mem_kb_temp_flag 
+42d7 6810811b hfetch 1 ,core_kscn_event_num 
+42d8 2feffe00 isolate1 kb_kscan_key_event_stat ,pdata 
+42d9 6000caa6 store 1 ,mem_kscan_event_num_last 
+42da 6810811a hfetch 1 ,core_kscn_event 
+42db 6000caa5 store 1 ,mem_kscn_event_last 
+42dc d8c049ff arg mem_kb_map ,contr 
+42dd 98c08c00 iadd contr ,contr 
+42de e8c08000 ifetch 1 ,contr 
+42df 6808c731 fetcht 1 ,mem_kb_keys 
+42e0 18467c04 sub temp ,4 ,null 
+42e1 242142c0 nbranch kb_kscan_check ,positive 
+42e2 98000c00 iforce contr 
+42e3 58004aca setarg mem_kb_down 
+42e4 98408a00 iadd temp ,contw 
+42e5 18c27e00 deposit contr 
+42e6 e0a08000 istore 1 ,contw 
+42e7 18408401 increase 1 ,temp 
+42e8 6008c731 storet 1 ,mem_kb_keys 
+42e9 2020429c branch kb_kscan_fn 
+
+l2cap_init:
+42ea 2035c2ef branch l2cap_init_wake ,wake 
+
+l2cap_init_work:
+42eb 580043f5 setarg mem_l2cap_xmem_end 
+42ec d8a042d6 arg mem_l2cap_xmem_start ,contw 
+42ed 98a67200 isub contw ,loopcnt 
+42ee 20407e9f call clear_mem 
+
+l2cap_init_wake:
+42ef 793f8025 set0 mark_ext_patch ,mark 
+42f0 44e9401a bpatch patch1a_2 ,mem_patch1a 
+42f1 58000475 setarg mem_sdp_mem_end 
+42f2 d8a00440 arg mem_sdp_mem_start ,contw 
+42f3 98a67200 isub contw ,loopcnt 
+42f4 20407e9f call clear_mem 
+42f5 580002f2 setarg mem_l2cap_mem_end 
+42f6 d8a00286 arg mem_l2cap_mem_start ,contw 
+42f7 98a67200 isub contw ,loopcnt 
+42f8 20407e9f call clear_mem 
+42f9 202048c3 branch l2cap_lpm_load_txbuf 
+
+process_rx_l2cap_pkt:
+42fa 793f8025 set0 mark_ext_patch ,mark 
+42fb 44e9c01a bpatch patch1a_3 ,mem_patch1a 
+42fc 18c20400 copy contr ,temp 
+42fd 18420c00 copy temp ,contr 
+42fe e8c10000 ifetch 2 ,contr 
+42ff 6001028f store 2 ,mem_l2cap_rx_pkt_length 
+4300 e8c10000 ifetch 2 ,contr 
+4301 60010291 store 2 ,mem_l2cap_rx_cid 
+4302 18c27e00 deposit contr 
+4303 6001028d store 2 ,mem_l2cap_payload_ptr 
+4304 6800c70a fetch 1 ,memui_reconnect_mode 
+4305 c0004307 beq no_reconnection ,l2cap_rx_multiplexing 
+4306 20204684 branch ml2cap_rx_multiplexing 
+
+l2cap_rx_multiplexing:
+4307 6801028f fetch 2 ,mem_l2cap_rx_pkt_length 
+4308 203a4383 branch l2cap_rx_reset_state ,blank 
+4309 793f8025 set0 mark_ext_patch ,mark 
+430a 44ea401a bpatch patch1a_4 ,mem_patch1a 
+430b 68008291 fetch 1 ,mem_l2cap_rx_cid 
+430c c000c321 beq l2cap_signal_channel ,l2cap_call_proc_signal 
+
+l2cap_rx_multiplexing0:
+430d c0284366 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+430e c028c37b beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+430f c0294379 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+4310 c029c379 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+4311 20204383 branch l2cap_rx_reset_state 
+
+l2cap_check_map:
+4312 793f8025 set0 mark_ext_patch ,mark 
+4313 44eac01a bpatch patch1a_5 ,mem_patch1a 
+4314 20404821 call l2cap_malloc_get_full_map 
+4315 6800c2e6 fetch 1 ,mem_used_map 
+4316 c000431f beq 0 ,set_pdata_0 
+4317 c000c31f beq 1 ,set_pdata_0 
+4318 c001431f beq 2 ,set_pdata_0 
+4319 c001c31f beq 3 ,set_pdata_0 
+431a c040c31f beq 0x81 ,set_pdata_0 
+431b c060431f beq 0xc0 ,set_pdata_0 
+431c c040431f beq 0x80 ,set_pdata_0 
+431d c020431f beq 0x40 ,set_pdata_0 
+431e 20600000 rtn 
+
+set_pdata_0:
+431f 58000000 setarg 0 
+4320 20600000 rtn 
+
+l2cap_call_proc_signal:
+4321 20404312 call l2cap_check_map 
+4322 247a0000 nrtn blank 
+
+l2cap_call_proc_signal0:
+4323 2040485e call l2cap_malloc_signal_channel 
+4324 20404388 call l2cap_process_signal_pkt 
+4325 68090298 fetcht 2 ,mem_l2cap_signal_tx_length 
+4326 203a4382 branch l2cap_call_proc_no_reply ,blank 
+4327 20404868 call l2cap_get_signal_tx_buff 
+4328 68010298 fetch 2 ,mem_l2cap_signal_tx_length 
+4329 e0a10000 istore 2 ,contw 
+432a 18007e01 force l2cap_signal_channel ,pdata 
+432b e0a10000 istore 2 ,contw 
+432c 20204383 branch l2cap_rx_reset_state 
+
+l2cap_call_proc_sigal_pending:
+432d 6800c3f4 fetch 1 ,mem_l2cap_pending_item 
+432e 207a0000 rtn blank 
+432f 1fe22200 copy pdata ,rega 
+4330 793f8025 set0 mark_ext_patch ,mark 
+4331 44eb401a bpatch patch1a_6 ,mem_patch1a 
+4332 680202fe fetch 4 ,mem_l2cap_sdpres_delay_time 
+4333 d8400100 arg 0x100 ,temp 
+4334 98408400 iadd temp ,temp 
+4335 1c427e00 copy clkn_bt ,pdata 
+4336 98467c00 isub temp ,null 
+4337 24610000 nrtn positive 
+4338 7043f400 jam 0 ,mem_l2cap_pending_item 
+4339 1a227e00 copy rega ,pdata 
+433a c028433c beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
+433b 20203b31 branch assert 
+
+l2cap_sdp_conn_succ:
+433c d9000000 arg 0 ,debug 
+433d 2040485e call l2cap_malloc_signal_channel 
+433e 20404404 call restore_l2cap_req_param 
+433f 2040486a call l2cap_get_signal_tx_payload 
+4340 20407e70 call save_cont_pointers 
+4341 20404437 call send_connection_sdp_res 
+4342 20404868 call l2cap_get_signal_tx_buff 
+4343 5800000c setarg 0x000c 
+4344 e0a10000 istore 2 ,contw 
+4345 18007e01 force l2cap_signal_channel ,pdata 
+4346 e0a10000 istore 2 ,contw 
+4347 20204383 branch l2cap_rx_reset_state 
+
+l2cap_reset_sdp_map:
+4348 793f8025 set0 mark_ext_patch ,mark 
+4349 44ebc01a bpatch patch1a_7 ,mem_patch1a 
+434a 6801029e fetch 2 ,mem_sdp_tx_pkt_length 
+434b 1fe0fe04 increase 4 ,pdata 
+434c 1ff1fe00 rshift4 pdata ,pdata 
+434d 1fe97e00 rshift3 pdata ,pdata 
+434e 1fe08401 add pdata ,1 ,temp 
+434f d8c042f0 arg mem_tx_fifo3 ,contr 
+4350 e8c18000 ifetch 3 ,contr 
+4351 207a0000 rtn blank 
+4352 600189e1 store 3 ,mem_tx_fifo_map_temp 
+4353 680089e1 fetch 1 ,mem_tx_fifo_map_temp 
+4354 1fe22200 copy pdata ,rega 
+4355 20404359 call check_l2cap_map 
+4356 1a427e00 copy regb ,pdata 
+4357 6000c2f0 store 1 ,mem_tx_fifo3 
+4358 20600000 rtn 
+
+check_l2cap_map:
+4359 d8e00000 arg 0 ,queue 
+435a da400000 arg 0 ,regb 
+
+check_l2cap_map_loop:
+435b 18e67c07 sub queue ,7 ,null 
+435c 24610000 nrtn positive 
+435d aa2fffff qisolate1 rega 
+435e 2020c360 branch check_l2cap_map_used ,true 
+435f 20204364 branch check_l2cap_map_used2 
+
+check_l2cap_map_used:
+4360 18427e00 copy temp ,pdata 
+4361 203a4364 branch check_l2cap_map_used2 ,blank 
+4362 f9202400 qset1 regb 
+4363 184085ff increase -1 ,temp 
+
+check_l2cap_map_used2:
+4364 18e08e01 increase 1 ,queue 
+4365 2020435b branch check_l2cap_map_loop 
+
+l2cap_call_proc_sdp:
+4366 20404816 call l2cap_malloc_is_fifo_empty 
+4367 247a0000 nrtn blank 
+4368 20404312 call l2cap_check_map 
+4369 247a0000 nrtn blank 
+436a 2040486c call l2cap_malloc_sdp_channel 
+436b 20406a3e call sdp_process 
+436c 20404348 call l2cap_reset_sdp_map 
+436d 20204372 branch l2cap_call_proc_sdp_common 
+
+ml2cap_call_proc_sdp:
+436e 20404816 call l2cap_malloc_is_fifo_empty 
+436f 247a0000 nrtn blank 
+4370 2040486c call l2cap_malloc_sdp_channel 
+4371 20406a3e call sdp_process 
+
+l2cap_call_proc_sdp_common:
+4372 20404876 call l2cap_get_sdp_tx_buff 
+4373 6801029e fetch 2 ,mem_sdp_tx_pkt_length 
+4374 203a4382 branch l2cap_call_proc_no_reply ,blank 
+4375 e0a10000 istore 2 ,contw 
+4376 680142d8 fetch 2 ,mem_sdp_remote_cid 
+4377 e0a10000 istore 2 ,contw 
+4378 20204383 branch l2cap_rx_reset_state 
+
+l2cap_call_proc_hid:
+4379 20403fca call hid_rx_process 
+437a 20204383 branch l2cap_rx_reset_state 
+
+l2cap_call_proc_rfcomm:
+437b 793f8025 set0 mark_ext_patch ,mark 
+437c 44ec401b bpatch patch1b_0 ,mem_patch1b 
+437d 7002ad00 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+437e 2040668f call rfcomm_rx_process 
+437f 680082ad fetch 1 ,mem_rfcomm_malloc_fail_flag 
+4380 c1008000 rtneq rfcomm_malloc_fail 
+4381 20204383 branch l2cap_rx_reset_state 
+
+l2cap_call_proc_no_reply:
+4382 20404803 call l2cap_malloc_discard 
+
+l2cap_rx_reset_state:
+4383 58000000 setarg 0 
+4384 6001028f store 2 ,mem_l2cap_rx_pkt_length 
+4385 60010291 store 2 ,mem_l2cap_rx_cid 
+4386 70029301 jam l2cap_rx_done ,mem_l2cap_rx_done 
+4387 20600000 rtn 
+
+l2cap_process_signal_pkt:
+4388 793f8025 set0 mark_ext_patch ,mark 
+4389 44ecc01b bpatch patch1b_1 ,mem_patch1b 
+438a 2040486a call l2cap_get_signal_tx_payload 
+438b 18002400 force 0 ,regb 
+438c 6801028f fetch 2 ,mem_l2cap_rx_pkt_length 
+438d 1fe22600 copy pdata ,regc 
+438e 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+438f 98000c00 iforce contr 
+
+l2cap_process_signal_pkt_loop:
+4390 20404398 call l2cap_process_one_signal 
+4391 1a627e00 deposit regc 
+4392 1a60a7fc increase -4 ,regc 
+4393 1fe0fffc increase -4 ,pdata 
+4394 243a4390 nbranch l2cap_process_signal_pkt_loop ,blank 
+4395 1a427e00 copy regb ,pdata 
+4396 60010298 store 2 ,mem_l2cap_signal_tx_length 
+4397 20600000 rtn 
+
+l2cap_process_one_signal:
+4398 793f8025 set0 mark_ext_patch ,mark 
+4399 44ed401b bpatch patch1b_2 ,mem_patch1b 
+439a e8c08000 ifetch 1 ,contr 
+439b c000c3d2 beq signal_cmd_reject ,l2cap_proc_signal_cmd_reject 
+439c c00143da beq signal_connect_req ,l2cap_proc_signal_connect_req 
+439d c001c460 beq signal_connect_rsp ,l2cap_proc_signal_connect_rsp 
+439e c0024491 beq signal_config_req ,l2cap_proc_signal_config_req 
+439f c002c531 beq signal_config_rsp ,l2cap_proc_signal_config_rsp 
+43a0 c003455b beq signal_disconnect_req ,l2cap_proc_signal_disconnect_req 
+43a1 c003c5ac beq signal_disconnect_rsp ,l2cap_proc_signal_disconnect_rsp 
+43a2 c00445e2 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+43a3 c004c5f2 beq signal_echo_rsp ,l2cap_proc_signal_echo_rsp 
+43a4 c00543a8 beq signal_info_req ,l2cap_proc_signal_info_req 
+43a5 c005c5f3 beq signal_info_rsp ,l2cap_proc_signal_info_rsp 
+43a6 204045f4 call l2cap_reject_command 
+
+l2cap_process_one_signal_rtn:
+43a7 20600000 rtn 
+
+l2cap_proc_signal_info_req:
+43a8 e8c08000 ifetch 1 ,contr 
+43a9 1fe20e00 copy pdata ,queue 
+43aa e8c10000 ifetch 2 ,contr 
+43ab 1fe22200 copy pdata ,rega 
+43ac 1a627e00 copy regc ,pdata 
+43ad 9a262600 isub rega ,regc 
+43ae 5800000b setarg signal_info_rsp 
+43af e0a08000 istore 1 ,contw 
+43b0 18e27e00 copy queue ,pdata 
+43b1 e0a08000 istore 1 ,contw 
+43b2 e8c10000 ifetch 2 ,contr 
+
+l2cap_proc_signal_info_req_reply:
+43b3 c00143b6 beq l2cap_sig_ext_featrue ,l2cap_proc_signal_info_req_ext 
+43b4 c001c3bc beq l2cap_sig_fix_featrue ,l2cap_proc_signal_info_req_fix 
+43b5 20600000 rtn 
+
+l2cap_proc_signal_info_req_ext:
+43b6 58020008 setarg 0x020008 
+43b7 e0a30000 istore 6 ,contw 
+43b8 58000280 setarg 0x0280 
+43b9 e0a20000 istore 4 ,contw 
+43ba 18007e0c force 12 ,pdata 
+43bb 202043c1 branch l2cap_proc_signal_info_req_common 
+
+l2cap_proc_signal_info_req_fix:
+43bc 5803000c setarg 0x3000c 
+43bd e0a30000 istore 6 ,contw 
+43be 58000006 setarg 0x0006 
+43bf e0a40000 istore 8 ,contw 
+43c0 18007e10 force 16 ,pdata 
+
+l2cap_proc_signal_info_req_common:
+43c1 9a40a400 iadd regb ,regb 
+43c2 202043a7 branch l2cap_process_one_signal_rtn 
+
+ml2cap_proc_signal_info_req:
+43c3 e8c08000 ifetch 1 ,contr 
+43c4 1fe20e00 copy pdata ,queue 
+43c5 e8c10000 ifetch 2 ,contr 
+43c6 1fe22200 copy pdata ,rega 
+43c7 e8c10000 ifetch 2 ,contr 
+43c8 600109c6 store 2 ,mem_temp 
+43c9 1a627e00 copy regc ,pdata 
+43ca 9a262600 isub rega ,regc 
+43cb 2040486a call l2cap_get_signal_tx_payload 
+43cc 5800000b setarg signal_info_rsp 
+43cd e0a08000 istore 1 ,contw 
+43ce 18e27e00 copy queue ,pdata 
+43cf e0a08000 istore 1 ,contw 
+43d0 680109c6 fetch 2 ,mem_temp 
+43d1 202043b3 branch l2cap_proc_signal_info_req_reply 
+
+l2cap_proc_signal_cmd_reject:
+43d2 e8c08000 ifetch 1 ,contr 
+43d3 1fe20e00 copy pdata ,queue 
+43d4 e8c10000 ifetch 2 ,contr 
+43d5 1fe22200 copy pdata ,rega 
+43d6 98c08c00 iadd contr ,contr 
+43d7 1a627e00 copy regc ,pdata 
+43d8 9a262600 isub rega ,regc 
+
+l2cap_proc_signal_cmd_reject_rtn:
+43d9 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_connect_req:
+43da 20407e70 call save_cont_pointers 
+43db 20407e75 call load_cont_pointers 
+43dc d9000000 arg 0 ,debug 
+43dd e8c08000 ifetch 1 ,contr 
+43de 1fe20e00 copy pdata ,queue 
+43df e8c10000 ifetch 2 ,contr 
+43e0 1fe22200 copy pdata ,rega 
+43e1 e8c10000 ifetch 2 ,contr 
+43e2 1fe20400 copy pdata ,temp 
+43e3 e8c10000 ifetch 2 ,contr 
+43e4 1fe21600 copy pdata ,timeup 
+43e5 793f8025 set0 mark_ext_patch ,mark 
+43e6 44edc01b bpatch patch1b_3 ,mem_patch1b 
+43e7 18427e00 copy temp ,pdata 
+43e8 c000c3ee beq psm_sdp ,l2cap_proc_signal_connect_req_sdp 
+43e9 c001c410 beq psm_rfcomm ,l2cap_proc_signal_connect_req_rfcomm 
+43ea c008c41c beq psm_hid_control ,l2cap_proc_signal_connect_req_hid_ctrl 
+43eb c009c427 beq psm_hid_interrupt ,l2cap_proc_signal_connect_req_hid_int 
+43ec 204045f4 call l2cap_reject_command 
+43ed 2020445f branch l2cap_proc_signal_connect_req_rtn 
+
+l2cap_proc_signal_connect_req_sdp:
+43ee 20407e70 call save_cont_pointers 
+43ef d8400050 arg l2cap_sdp_channel ,temp 
+43f0 680142d8 fetch 2 ,mem_sdp_remote_cid 
+43f1 243a4459 nbranch already_connected ,blank 
+43f2 19627e00 copy timeup ,pdata 
+43f3 600142d8 store 2 ,mem_sdp_remote_cid 
+43f4 1c427e00 copy clkn_bt ,pdata 
+43f5 600202fe store 4 ,mem_l2cap_sdpres_delay_time 
+43f6 204043f8 call store_l2cap_req_param 
+43f7 20204433 branch send_connection_pending 
+
+store_l2cap_req_param:
+43f8 600902fc storet 2 ,mem_psm 
+43f9 19627e00 deposit timeup 
+43fa 600102f2 store 2 ,mem_scid 
+43fb 1a227e00 deposit rega 
+43fc 600102f4 store 2 ,mem_cmd_length 
+43fd 1a427e00 deposit regb 
+43fe 600102f6 store 2 ,mem_tt2 
+43ff 1a627e00 deposit regc 
+4400 600102f8 store 2 ,mem_tt3 
+4401 18e27e00 deposit queue 
+4402 600102fa store 2 ,mem_id 
+4403 20600000 rtn 
+
+restore_l2cap_req_param:
+4404 680902fc fetcht 2 ,mem_psm 
+4405 680102f2 fetch 2 ,mem_scid 
+4406 1fe21600 copy pdata ,timeup 
+4407 680102f4 fetch 2 ,mem_cmd_length 
+4408 1fe22200 copy pdata ,rega 
+4409 680102f6 fetch 2 ,mem_tt2 
+440a 1fe22400 copy pdata ,regb 
+440b 680102f8 fetch 2 ,mem_tt3 
+440c 1fe22600 copy pdata ,regc 
+440d 680102fa fetch 2 ,mem_id 
+440e 1fe20e00 copy pdata ,queue 
+440f 20600000 rtn 
+
+l2cap_proc_signal_connect_req_rfcomm:
+4410 20407e70 call save_cont_pointers 
+4411 58000051 setarg l2cap_rfcomm_channel 
+4412 d8400051 arg l2cap_rfcomm_channel ,temp 
+4413 680142da fetch 2 ,mem_rfcomm_remote_cid 
+4414 243a4459 nbranch already_connected ,blank 
+4415 19627e00 copy timeup ,pdata 
+4416 600142da store 2 ,mem_rfcomm_remote_cid 
+4417 6800c2e1 fetch 1 ,mem_rfcomm_state 
+4418 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4419 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+441a 6000c2e1 store 1 ,mem_rfcomm_state 
+441b 2020443b branch send_connection_res 
+
+l2cap_proc_signal_connect_req_hid_ctrl:
+441c 20407e70 call save_cont_pointers 
+441d d8400052 arg l2cap_hid_control_channel ,temp 
+441e 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+441f 243a4459 nbranch already_connected ,blank 
+4420 19627e00 copy timeup ,pdata 
+4421 600142dc store 2 ,mem_hid_ctrl_remote_cid 
+4422 6800c2e2 fetch 1 ,mem_hid_control_state 
+4423 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4424 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4425 6000c2e2 store 1 ,mem_hid_control_state 
+4426 2020443b branch send_connection_res 
+
+l2cap_proc_signal_connect_req_hid_int:
+4427 20407e70 call save_cont_pointers 
+4428 1b427e00 deposit clke 
+4429 d8400053 arg l2cap_hid_interrupt_channel ,temp 
+442a 680142de fetch 2 ,mem_hid_int_remote_cid 
+442b 243a4459 nbranch already_connected ,blank 
+442c 19627e00 copy timeup ,pdata 
+442d 600142de store 2 ,mem_hid_int_remote_cid 
+442e 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+442f 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4430 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4431 6000c2e3 store 1 ,mem_hid_interrupt_state 
+4432 2020443b branch send_connection_res 
+
+send_connection_pending:
+4433 58000001 setarg l2cap_connect_pending 
+4434 600102a6 store 2 ,meml2cap_t1 
+4435 7043f450 jam l2cap_sdp_channel ,mem_l2cap_pending_item 
+4436 2020443d branch send_connection_res0 
+
+send_connection_sdp_res:
+4437 6800c2e0 fetch 1 ,mem_sdp_state 
+4438 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4439 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+443a 6000c2e0 store 1 ,mem_sdp_state 
+
+send_connection_res:
+443b 58000000 setarg l2cap_connect_successful 
+443c 600102a6 store 2 ,meml2cap_t1 
+
+send_connection_res0:
+443d 793f8025 set0 mark_ext_patch ,mark 
+443e 44ee401b bpatch patch1b_4 ,mem_patch1b 
+443f 20407e75 call load_cont_pointers 
+4440 58000003 setarg signal_connect_rsp 
+4441 e0a08000 istore 1 ,contw 
+4442 18e27e00 copy queue ,pdata 
+4443 e0a08000 istore 1 ,contw 
+4444 58000008 setarg 0x0008 
+4445 e0a10000 istore 2 ,contw 
+4446 18427e00 copy temp ,pdata 
+4447 e0a10000 istore 2 ,contw 
+4448 19627e00 copy timeup ,pdata 
+4449 e0a10000 istore 2 ,contw 
+444a 680102a6 fetch 2 ,meml2cap_t1 
+444b c000c454 beq l2cap_connect_pending ,connect_pending 
+444c 290c0000 isolate0 0 ,debug 
+444d 2020c44f branch connect_suc ,true 
+444e 58000004 setarg l2cap_connect_refused_no_resources 
+
+connect_suc:
+444f e0a10000 istore 2 ,contw 
+4450 18007e00 force 0x0000 ,pdata 
+4451 e0a10000 istore 2 ,contw 
+4452 5800000c setarg 12 
+4453 2020445b branch connect_req_update_byte_counts 
+
+connect_pending:
+4454 e0a10000 istore 2 ,contw 
+4455 18007e02 force 0x0002 ,pdata 
+4456 e0a10000 istore 2 ,contw 
+4457 5800000c setarg 12 
+4458 2020445b branch connect_req_update_byte_counts 
+
+already_connected:
+4459 79201000 set1 0 ,debug 
+445a 2020443b branch send_connection_res 
+
+connect_req_update_byte_counts:
+445b 9a40a400 iadd regb ,regb 
+445c 1a627e00 copy regc ,pdata 
+445d 9a262600 isub rega ,regc 
+445e 2020445f branch l2cap_proc_signal_connect_req_rtn 
+
+l2cap_proc_signal_connect_req_rtn:
+445f 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_connect_rsp:
+4460 e8c08000 ifetch 1 ,contr 
+4461 1fe20e00 copy pdata ,queue 
+4462 e8c10000 ifetch 2 ,contr 
+4463 1fe22200 copy pdata ,rega 
+4464 1a627e00 copy regc ,pdata 
+4465 9a262600 isub rega ,regc 
+4466 e8c10000 ifetch 2 ,contr 
+4467 1fe21600 copy pdata ,timeup 
+4468 e8c10000 ifetch 2 ,contr 
+4469 1fe20400 copy pdata ,temp 
+446a 793f8025 set0 mark_ext_patch ,mark 
+446b 44eec01b bpatch patch1b_5 ,mem_patch1b 
+446c 58000050 setarg l2cap_sdp_channel 
+446d 98467c00 isub temp ,null 
+446e 2022c479 branch l2cap_proc_signal_connect_rsp_sdp ,zero 
+446f 58000051 setarg l2cap_rfcomm_channel 
+4470 98467c00 isub temp ,null 
+4471 2022c47f branch l2cap_proc_signal_connect_rsp_rfcomm ,zero 
+4472 58000052 setarg l2cap_hid_control_channel 
+4473 98467c00 isub temp ,null 
+4474 2022c48b branch l2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+4475 58000053 setarg l2cap_hid_interrupt_channel 
+4476 98467c00 isub temp ,null 
+4477 2022c485 branch l2cap_proc_signal_connect_rsp_hid_int ,zero 
+4478 20600000 rtn 
+
+l2cap_proc_signal_connect_rsp_sdp:
+4479 19627e00 copy timeup ,pdata 
+447a 600142d8 store 2 ,mem_sdp_remote_cid 
+447b 6800c2e0 fetch 1 ,mem_sdp_state 
+447c 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+447d 6000c2e0 store 1 ,mem_sdp_state 
+447e 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_connect_rsp_rfcomm:
+447f 19627e00 copy timeup ,pdata 
+4480 600142da store 2 ,mem_rfcomm_remote_cid 
+4481 6800c2e1 fetch 1 ,mem_rfcomm_state 
+4482 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4483 6000c2e1 store 1 ,mem_rfcomm_state 
+4484 20600000 rtn 
+
+l2cap_proc_signal_connect_rsp_hid_int:
+4485 19627e00 copy timeup ,pdata 
+4486 600142dc store 2 ,mem_hid_ctrl_remote_cid 
+4487 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+4488 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4489 6000c2e3 store 1 ,mem_hid_interrupt_state 
+448a 20600000 rtn 
+
+l2cap_proc_signal_connect_rsp_hid_ctrl:
+448b 19627e00 copy timeup ,pdata 
+448c 600142de store 2 ,mem_hid_int_remote_cid 
+448d 6800c2e2 fetch 1 ,mem_hid_control_state 
+448e 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+448f 6000c2e2 store 1 ,mem_hid_control_state 
+4490 20600000 rtn 
+
+l2cap_proc_signal_config_req:
+4491 e8c08000 ifetch 1 ,contr 
+4492 1fe20e00 copy pdata ,queue 
+4493 e8c10000 ifetch 2 ,contr 
+4494 1fe22200 copy pdata ,rega 
+4495 1a627e00 copy regc ,pdata 
+4496 9a262600 isub rega ,regc 
+4497 e8c10000 ifetch 2 ,contr 
+4498 1fe20400 copy pdata ,temp 
+4499 18422200 copy temp ,rega 
+449a 793f8025 set0 mark_ext_patch ,mark 
+449b 44ef401b bpatch patch1b_6 ,mem_patch1b 
+449c 58000050 setarg l2cap_sdp_channel 
+449d 98467c00 isub temp ,null 
+449e 2022c4a9 branch l2cap_proc_signal_config_req_sdp ,zero 
+449f 58000051 setarg l2cap_rfcomm_channel 
+44a0 98467c00 isub temp ,null 
+44a1 2022c4c7 branch l2cap_proc_signal_config_req_rfcomm ,zero 
+44a2 58000052 setarg l2cap_hid_control_channel 
+44a3 98467c00 isub temp ,null 
+44a4 2022c4b3 branch l2cap_proc_signal_config_req_hid_ctrl ,zero 
+44a5 58000053 setarg l2cap_hid_interrupt_channel 
+44a6 98467c00 isub temp ,null 
+44a7 2022c4bd branch l2cap_proc_signal_config_req_hid_int ,zero 
+44a8 202045f4 branch l2cap_reject_command 
+
+l2cap_proc_signal_config_req_sdp:
+44a9 18a21600 copy contw ,timeup 
+44aa 6800c2e0 fetch 1 ,mem_sdp_state 
+44ab 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+44ac 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+44ad 6000c2e0 store 1 ,mem_sdp_state 
+44ae 19620a00 copy timeup ,contw 
+44af d9600050 arg l2cap_sdp_channel ,timeup 
+44b0 680142d8 fetch 2 ,mem_sdp_remote_cid 
+44b1 1fe20400 copy pdata ,temp 
+44b2 202044d0 branch l2cap_send_config_rsp 
+
+l2cap_proc_signal_config_req_hid_ctrl:
+44b3 18a21600 copy contw ,timeup 
+44b4 6800c2e2 fetch 1 ,mem_hid_control_state 
+44b5 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+44b6 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+44b7 6000c2e2 store 1 ,mem_hid_control_state 
+44b8 19620a00 copy timeup ,contw 
+44b9 d9600052 arg l2cap_hid_control_channel ,timeup 
+44ba 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+44bb 1fe20400 copy pdata ,temp 
+44bc 202044d0 branch l2cap_send_config_rsp 
+
+l2cap_proc_signal_config_req_hid_int:
+44bd 18a21600 copy contw ,timeup 
+44be 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+44bf 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+44c0 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+44c1 6000c2e3 store 1 ,mem_hid_interrupt_state 
+44c2 19620a00 copy timeup ,contw 
+44c3 d9600053 arg l2cap_hid_interrupt_channel ,timeup 
+44c4 680142de fetch 2 ,mem_hid_int_remote_cid 
+44c5 1fe20400 copy pdata ,temp 
+44c6 202044d0 branch l2cap_send_config_rsp 
+
+l2cap_proc_signal_config_req_rfcomm:
+44c7 18a21600 copy contw ,timeup 
+44c8 6800c2e1 fetch 1 ,mem_rfcomm_state 
+44c9 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+44ca 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+44cb 6000c2e1 store 1 ,mem_rfcomm_state 
+44cc 19620a00 copy timeup ,contw 
+44cd d9600051 arg l2cap_rfcomm_channel ,timeup 
+44ce 680142da fetch 2 ,mem_rfcomm_remote_cid 
+44cf 1fe20400 copy pdata ,temp 
+
+l2cap_send_config_rsp:
+44d0 793f8025 set0 mark_ext_patch ,mark 
+44d1 44efc01b bpatch patch1b_7 ,mem_patch1b 
+44d2 58000005 setarg signal_config_rsp 
+44d3 e0a08000 istore 1 ,contw 
+44d4 18e27e00 copy queue ,pdata 
+44d5 e0a08000 istore 1 ,contw 
+44d6 58000006 setarg 0x0006 
+44d7 e0a10000 istore 2 ,contw 
+44d8 18427e00 copy temp ,pdata 
+44d9 e0a10000 istore 2 ,contw 
+44da 18007e00 force 0x00 ,pdata 
+44db e0a10000 istore 2 ,contw 
+44dc 18007e00 force l2cap_config_success ,pdata 
+44dd e0a10000 istore 2 ,contw 
+44de 18007e0a force 10 ,pdata 
+44df 9a40a400 iadd regb ,regb 
+44e0 600902ab storet 2 ,mem_config_req_dest_cid 
+44e1 18e27e00 copy queue ,pdata 
+44e2 600082aa store 1 ,mem_config_identifier 
+44e3 18007e50 force l2cap_sdp_channel ,pdata 
+44e4 a961fe00 icompare 0xff ,timeup 
+44e5 2020c4e7 branch l2cap_send_config_rsp_is_sdp ,true 
+44e6 1fe0fe01 increase 1 ,pdata 
+
+l2cap_send_config_rsp_is_sdp:
+44e7 20600000 rtn 
+
+l2cap_check_channel_state:
+44e8 78547c00 disable user 
+44e9 c3810000 rtnbit1 l2cap_channel_state_snd_cfg_req ,pdata 
+44ea c4000000 rtnbit0 l2cap_channel_state_conn_req ,pdata 
+44eb c4008000 rtnbit0 l2cap_channel_state_conn_res ,pdata 
+44ec 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+44ed 18c20a00 copy contr ,contw 
+44ee 18a08bff increase -1 ,contw 
+44ef e0a08000 istore 1 ,contw 
+44f0 78347c00 enable user 
+44f1 20600000 rtn 
+
+l2cap_send_config_req:
+
+l2cap_send_config_req_sdp:
+44f2 6800c2e0 fetch 1 ,mem_sdp_state 
+44f3 204044e8 call l2cap_check_channel_state 
+44f4 243444f9 nbranch l2cap_send_config_req_rfcomm ,user 
+44f5 7002a950 jam l2cap_sdp_channel ,mem_send_config_req 
+44f6 680142d8 fetch 2 ,mem_sdp_remote_cid 
+44f7 600102ab store 2 ,mem_config_req_dest_cid 
+44f8 2020450d branch l2cap_generate_config_req 
+
+l2cap_send_config_req_rfcomm:
+44f9 6800c2e1 fetch 1 ,mem_rfcomm_state 
+44fa 204044e8 call l2cap_check_channel_state 
+44fb 24344500 nbranch l2cap_send_config_req_hid_ctrl ,user 
+44fc 7002a951 jam l2cap_rfcomm_channel ,mem_send_config_req 
+44fd 680142da fetch 2 ,mem_rfcomm_remote_cid 
+44fe 600102ab store 2 ,mem_config_req_dest_cid 
+44ff 2020450d branch l2cap_generate_config_req 
+
+l2cap_send_config_req_hid_ctrl:
+4500 6800c2e2 fetch 1 ,mem_hid_control_state 
+4501 204044e8 call l2cap_check_channel_state 
+4502 24344507 nbranch l2cap_send_config_req_hid_int ,user 
+4503 7002a952 jam l2cap_hid_control_channel ,mem_send_config_req 
+4504 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+4505 600102ab store 2 ,mem_config_req_dest_cid 
+4506 2020450d branch l2cap_generate_config_req 
+
+l2cap_send_config_req_hid_int:
+4507 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+4508 204044e8 call l2cap_check_channel_state 
+4509 24740000 nrtn user 
+450a 7002a953 jam l2cap_hid_interrupt_channel ,mem_send_config_req 
+450b 680142de fetch 2 ,mem_hid_int_remote_cid 
+450c 600102ab store 2 ,mem_config_req_dest_cid 
+
+l2cap_generate_config_req:
+450d 793f8025 set0 mark_ext_patch ,mark 
+450e 44f0401c bpatch patch1c_0 ,mem_patch1c 
+450f 204047d6 call l2cap_get_req_id 
+4510 2040485e call l2cap_malloc_signal_channel 
+4511 18002400 force 0 ,regb 
+4512 2040486a call l2cap_get_signal_tx_payload 
+4513 18007e04 force signal_config_req ,pdata 
+4514 e0a08000 istore 1 ,contw 
+4515 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+4516 e0a08000 istore 1 ,contw 
+4517 58000008 setarg 0x0008 
+4518 e0a10000 istore 2 ,contw 
+4519 680102ab fetch 2 ,mem_config_req_dest_cid 
+451a e0a10000 istore 2 ,contw 
+451b 58000000 setarg 0x0000 
+451c e0a10000 istore 2 ,contw 
+451d 18007e01 force 1 ,pdata 
+451e e0a08000 istore 1 ,contw 
+451f 18007e02 force 2 ,pdata 
+4520 e0a08000 istore 1 ,contw 
+4521 680082a9 fetch 1 ,mem_send_config_req 
+4522 c028c526 beq l2cap_rfcomm_channel ,l2cap_generate_config_req_rfcomm 
+4523 58000030 setarg l2cap_config_mtu_sdp 
+4524 e0a10000 istore 2 ,contw 
+4525 20204528 branch l2cap_generate_config_req_done 
+
+l2cap_generate_config_req_rfcomm:
+4526 580003e3 setarg l2cap_config_mtu_rfcomm 
+4527 e0a10000 istore 2 ,contw 
+
+l2cap_generate_config_req_done:
+4528 d840000c arg 0x0c ,temp 
+4529 60090298 storet 2 ,mem_l2cap_signal_tx_length 
+452a 20404868 call l2cap_get_signal_tx_buff 
+452b 68010298 fetch 2 ,mem_l2cap_signal_tx_length 
+452c e0a10000 istore 2 ,contw 
+452d 18007e01 force l2cap_signal_channel ,pdata 
+452e e0a10000 istore 2 ,contw 
+452f 7002a900 jam 0 ,mem_send_config_req 
+
+l2cap_proc_signal_config_req_rtn:
+4530 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp:
+4531 18c08c01 increase 1 ,contr 
+4532 e8c10000 ifetch 2 ,contr 
+4533 1fe22200 copy pdata ,rega 
+4534 1a627e00 copy regc ,pdata 
+4535 9a262600 isub rega ,regc 
+4536 e8c10000 ifetch 2 ,contr 
+4537 1fe22200 copy pdata ,rega 
+4538 793f8025 set0 mark_ext_patch ,mark 
+4539 44f0c01c bpatch patch1c_1 ,mem_patch1c 
+453a 58000050 setarg l2cap_sdp_channel 
+453b 9a267c00 isub rega ,null 
+453c 2022c54a branch l2cap_proc_signal_config_rsp_sdp ,zero 
+453d 58000051 setarg l2cap_rfcomm_channel 
+453e 9a267c00 isub rega ,null 
+453f 2022c54e branch l2cap_proc_signal_config_rsp_rfcomm ,zero 
+4540 58000052 setarg l2cap_hid_control_channel 
+4541 9a267c00 isub rega ,null 
+4542 2022c552 branch l2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+4543 58000053 setarg l2cap_hid_interrupt_channel 
+4544 9a267c00 isub rega ,null 
+4545 2022c556 branch l2cap_proc_signal_config_rsp_hid_int ,zero 
+4546 18c08c02 increase 2 ,contr 
+4547 e8c10000 ifetch 2 ,contr 
+4548 98007c00 iforce null 
+4549 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_sdp:
+454a 6800c2e0 fetch 1 ,mem_sdp_state 
+454b 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+454c 6000c2e0 store 1 ,mem_sdp_state 
+454d 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_rfcomm:
+454e 6800c2e1 fetch 1 ,mem_rfcomm_state 
+454f 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+4550 6000c2e1 store 1 ,mem_rfcomm_state 
+4551 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_hid_ctrl:
+4552 6800c2e2 fetch 1 ,mem_hid_control_state 
+4553 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+4554 6000c2e2 store 1 ,mem_hid_control_state 
+4555 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_hid_int:
+4556 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+4557 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+4558 6000c2e3 store 1 ,mem_hid_interrupt_state 
+4559 7009bd06 jam bt_evt_hid_connected ,mem_fifo_temp 
+455a 20207d86 branch ui_ipc_send_event 
+
+l2cap_proc_signal_disconnect_req:
+455b e8c08000 ifetch 1 ,contr 
+455c 1fe20e00 copy pdata ,queue 
+455d e8c10000 ifetch 2 ,contr 
+455e 1fe22200 copy pdata ,rega 
+455f 1a627e00 copy regc ,pdata 
+4560 9a262600 isub rega ,regc 
+4561 e8c10000 ifetch 2 ,contr 
+4562 1fe22200 copy pdata ,rega 
+4563 e8c10000 ifetch 2 ,contr 
+4564 1fe21600 copy pdata ,timeup 
+4565 1a220400 copy rega ,temp 
+4566 20407e70 call save_cont_pointers 
+4567 793f8025 set0 mark_ext_patch ,mark 
+4568 44f1401c bpatch patch1c_2 ,mem_patch1c 
+4569 58000050 setarg l2cap_sdp_channel 
+456a 98467c00 isub temp ,null 
+456b 2022c583 branch l2cap_proc_signal_disconnect_req_sdp ,zero 
+456c 58000051 setarg l2cap_rfcomm_channel 
+456d 98467c00 isub temp ,null 
+456e 2022c593 branch l2cap_proc_signal_disconnect_req_rfcomm ,zero 
+456f 58000052 setarg l2cap_hid_control_channel 
+4570 98467c00 isub temp ,null 
+4571 2022c577 branch l2cap_proc_signal_disconnect_req_hid_ctrl ,zero 
+4572 58000053 setarg l2cap_hid_interrupt_channel 
+4573 98467c00 isub temp ,null 
+4574 2022c57d branch l2cap_proc_signal_disconnect_req_hid_int ,zero 
+4575 204045f4 call l2cap_reject_command 
+4576 202045a8 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_proc_signal_disconnect_req_hid_ctrl:
+4577 19620400 copy timeup ,temp 
+4578 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+4579 98467c00 isub temp ,null 
+457a 2022c589 branch l2cap_disconnect_hid_control_now ,zero 
+457b 204045f4 call l2cap_reject_command 
+457c 202045a8 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_proc_signal_disconnect_req_hid_int:
+457d 19620400 copy timeup ,temp 
+457e 680142de fetch 2 ,mem_hid_int_remote_cid 
+457f 98467c00 isub temp ,null 
+4580 2022c58b branch l2cap_disconnect_hid_interrupt_now ,zero 
+4581 204045f4 call l2cap_reject_command 
+4582 202045a8 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_proc_signal_disconnect_req_sdp:
+4583 19620400 copy timeup ,temp 
+4584 680142d8 fetch 2 ,mem_sdp_remote_cid 
+4585 98467c00 isub temp ,null 
+4586 2022c58f branch l2cap_disconnect_sdp_now ,zero 
+4587 204045f4 call l2cap_reject_command 
+4588 202045a8 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_disconnect_hid_control_now:
+4589 2040460b call l2cap_reset_hid_ctrl_state 
+458a 2020459b branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_disconnect_hid_interrupt_now:
+458b 20404611 call l2cap_reset_hid_int_state 
+458c 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+458d 203a459b branch l2cap_send_disconnect_rsp_pkt ,blank 
+458e 2020459b branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_disconnect_sdp_now:
+458f 20404606 call l2cap_reset_sdp_channel_state 
+4590 680082b1 fetch 1 ,mem_upper_sm_ss 
+4591 243a459b nbranch l2cap_send_disconnect_rsp_pkt ,blank 
+4592 2020459b branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_proc_signal_disconnect_req_rfcomm:
+4593 19620400 copy timeup ,temp 
+4594 680142da fetch 2 ,mem_rfcomm_remote_cid 
+4595 98467c00 isub temp ,null 
+4596 2022c599 branch l2cap_disconnect_rfcomm_now ,zero 
+4597 204045f4 call l2cap_reject_command 
+4598 202045a8 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_disconnect_rfcomm_now:
+4599 20404601 call l2cap_reset_rfcomm_channel_state 
+459a 2020459b branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_send_disconnect_rsp_pkt:
+459b 20407e75 call load_cont_pointers 
+459c 58000007 setarg signal_disconnect_rsp 
+459d e0a08000 istore 1 ,contw 
+459e 18e27e00 copy queue ,pdata 
+459f e0a08000 istore 1 ,contw 
+45a0 58000004 setarg 0x0004 
+45a1 e0a10000 istore 2 ,contw 
+45a2 1a227e00 copy rega ,pdata 
+45a3 e0a10000 istore 2 ,contw 
+45a4 19627e00 copy timeup ,pdata 
+45a5 e0a10000 istore 2 ,contw 
+45a6 18007e08 force 8 ,pdata 
+45a7 202045aa branch l2cap_proc_signal_disconnect_req_rtn 
+
+l2cap_proc_signal_disconnect_req_err_rtn:
+45a8 20407e75 call load_cont_pointers 
+45a9 202045aa branch l2cap_proc_signal_disconnect_req_rtn 
+
+l2cap_proc_signal_disconnect_req_rtn:
+45aa 9a40a400 iadd regb ,regb 
+45ab 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_disconnect_rsp:
+45ac e8c08000 ifetch 1 ,contr 
+45ad 1fe20e00 copy pdata ,queue 
+45ae e8c10000 ifetch 2 ,contr 
+45af 1fe22200 copy pdata ,rega 
+45b0 1a627e00 copy regc ,pdata 
+45b1 9a262600 isub rega ,regc 
+45b2 e8c10000 ifetch 2 ,contr 
+45b3 1fe21600 copy pdata ,timeup 
+45b4 e8c10000 ifetch 2 ,contr 
+45b5 1fe20400 copy pdata ,temp 
+45b6 20407e70 call save_cont_pointers 
+45b7 793f8025 set0 mark_ext_patch ,mark 
+45b8 44f1c01c bpatch patch1c_3 ,mem_patch1c 
+45b9 58000050 setarg l2cap_sdp_channel 
+45ba 98467c00 isub temp ,null 
+45bb 2022c5c7 branch l2cap_proc_signal_disconnect_rsp_sdp ,zero 
+45bc 58000051 setarg l2cap_rfcomm_channel 
+45bd 98467c00 isub temp ,null 
+45be 2022c5cd branch l2cap_proc_signal_disconnect_rsp_rfcomm ,zero 
+45bf 58000052 setarg l2cap_hid_control_channel 
+45c0 98467c00 isub temp ,null 
+45c1 2022c5d3 branch l2cap_proc_signal_disconnect_rsp_hid_ctrl ,zero 
+45c2 58000053 setarg l2cap_hid_interrupt_channel 
+45c3 98467c00 isub temp ,null 
+45c4 2022c5d9 branch l2cap_proc_signal_disconnect_rsp_hid_int ,zero 
+45c5 204045f4 call l2cap_reject_command 
+45c6 202045e1 branch l2cap_proc_signal_disconnect_rsp_err_rtn 
+
+l2cap_proc_signal_disconnect_rsp_sdp:
+45c7 18422200 copy temp ,rega 
+45c8 19620400 copy timeup ,temp 
+45c9 680142d8 fetch 2 ,mem_sdp_remote_cid 
+45ca 98467c00 isub temp ,null 
+45cb 2042c606 call l2cap_reset_sdp_channel_state ,zero 
+45cc 202045df branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_rfcomm:
+45cd 18422200 copy temp ,rega 
+45ce 19620400 copy timeup ,temp 
+45cf 680142da fetch 2 ,mem_rfcomm_remote_cid 
+45d0 98467c00 isub temp ,null 
+45d1 2042c601 call l2cap_reset_rfcomm_channel_state ,zero 
+45d2 202045df branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+45d3 18422200 copy temp ,rega 
+45d4 19620400 copy timeup ,temp 
+45d5 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+45d6 98467c00 isub temp ,null 
+45d7 2042c60b call l2cap_reset_hid_ctrl_state ,zero 
+45d8 202045df branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_hid_int:
+45d9 18422200 copy temp ,rega 
+45da 19620400 copy timeup ,temp 
+45db 680142de fetch 2 ,mem_hid_int_remote_cid 
+45dc 98467c00 isub temp ,null 
+45dd 2042c611 call l2cap_reset_hid_int_state ,zero 
+45de 202045df branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_rtn:
+45df 20407e75 call load_cont_pointers 
+45e0 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_disconnect_rsp_err_rtn:
+45e1 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_echo_req:
+45e2 e8c08000 ifetch 1 ,contr 
+45e3 1fe20e00 copy pdata ,queue 
+45e4 e8c10000 ifetch 2 ,contr 
+45e5 1fe22200 copy pdata ,rega 
+45e6 98c08c00 iadd contr ,contr 
+45e7 58000009 setarg 9 
+45e8 e0a08000 istore 1 ,contw 
+45e9 18e27e00 copy queue ,pdata 
+45ea e0a08000 istore 1 ,contw 
+45eb 18007e00 force 0x0000 ,pdata 
+45ec e0a10000 istore 2 ,contw 
+45ed 18007e04 force 4 ,pdata 
+45ee 9a40a400 iadd regb ,regb 
+45ef 1a627e00 copy regc ,pdata 
+45f0 9a262600 isub rega ,regc 
+45f1 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_echo_rsp:
+45f2 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_info_rsp:
+45f3 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_reject_command:
+45f4 18002400 force 0 ,regb 
+45f5 2040486a call l2cap_get_signal_tx_payload 
+45f6 58000001 setarg signal_cmd_reject 
+45f7 e0a08000 istore 1 ,contw 
+45f8 18e27e00 copy queue ,pdata 
+45f9 e0a08000 istore 1 ,contw 
+45fa 58000002 setarg 2 
+45fb e0a10000 istore 2 ,contw 
+45fc 58000000 setarg cmd_not_understood 
+45fd e0a10000 istore 2 ,contw 
+45fe 1a40a406 increase 6 ,regb 
+45ff da600004 arg 4 ,regc 
+4600 202043a7 branch l2cap_process_one_signal_rtn 
+
+l2cap_reset_rfcomm_channel_state:
+4601 58000000 setarg 0 
+4602 600102a4 store 2 ,mem_rfcomm_tx_pkt_length 
+4603 600142da store 2 ,mem_rfcomm_remote_cid 
+4604 7042e100 jam 0 ,mem_rfcomm_state 
+4605 20600000 rtn 
+
+l2cap_reset_sdp_channel_state:
+4606 58000000 setarg 0 
+4607 6001029e store 2 ,mem_sdp_tx_pkt_length 
+4608 600142d8 store 2 ,mem_sdp_remote_cid 
+4609 7042e000 jam 0 ,mem_sdp_state 
+460a 20600000 rtn 
+
+l2cap_reset_hid_ctrl_state:
+460b 58000000 setarg 0 
+460c 600142dc store 2 ,mem_hid_ctrl_remote_cid 
+460d 7042e200 jam 0 ,mem_hid_control_state 
+460e 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+460f c0004617 beq 0 ,l2cap_reset_hid_disconnected 
+4610 20600000 rtn 
+
+l2cap_reset_hid_int_state:
+4611 58000000 setarg 0 
+4612 600142de store 2 ,mem_hid_int_remote_cid 
+4613 7042e300 jam 0 ,mem_hid_interrupt_state 
+4614 6800c2e2 fetch 1 ,mem_hid_control_state 
+4615 c0004617 beq 0 ,l2cap_reset_hid_disconnected 
+4616 20600000 rtn 
+
+l2cap_reset_hid_disconnected:
+4617 7009bd07 jam bt_evt_hid_disconnected ,mem_fifo_temp 
+4618 20207d86 branch ui_ipc_send_event 
+
+l2cap_disconnect_interrupt_req:
+4619 680082a8 fetch 1 ,mem_control_tasks 
+461a 793ffe00 set0 l2cap_disconnect_interrupt ,pdata 
+461b 600082a8 store 1 ,mem_control_tasks 
+461c 680142de fetch 2 ,mem_hid_int_remote_cid 
+461d 207a0000 rtn blank 
+461e 2040485e call l2cap_malloc_signal_channel 
+461f 680142de fetch 2 ,mem_hid_int_remote_cid 
+4620 1fe22200 copy pdata ,rega 
+4621 18002453 force l2cap_hid_interrupt_channel ,regb 
+4622 2020462c branch l2cap_generate_disconnect_req 
+
+l2cap_disconnect_control_req:
+4623 680082a8 fetch 1 ,mem_control_tasks 
+4624 793ffe07 set0 l2cap_disconnect_control ,pdata 
+4625 600082a8 store 1 ,mem_control_tasks 
+4626 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+4627 207a0000 rtn blank 
+4628 2040485e call l2cap_malloc_signal_channel 
+4629 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+462a 1fe22200 copy pdata ,rega 
+462b 18002452 force l2cap_hid_control_channel ,regb 
+
+l2cap_generate_disconnect_req:
+462c 204047d6 call l2cap_get_req_id 
+462d 2040486a call l2cap_get_signal_tx_payload 
+462e 18007e06 force signal_disconnect_req ,pdata 
+462f e0a08000 istore 1 ,contw 
+4630 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+4631 e0a08000 istore 1 ,contw 
+4632 58000004 setarg 0x0004 
+4633 e0a10000 istore 2 ,contw 
+4634 1a227e00 copy rega ,pdata 
+4635 e0a10000 istore 2 ,contw 
+4636 1a427e00 copy regb ,pdata 
+4637 e0a10000 istore 2 ,contw 
+4638 18000408 force 0x08 ,temp 
+4639 20204673 branch ml2cap_send_signal 
+
+ml2cap_send_signal_connect_req:
+463a 793f8025 set0 mark_ext_patch ,mark 
+463b 44f2401c bpatch patch1c_4 ,mem_patch1c 
+463c 204047d6 call l2cap_get_req_id 
+463d 2040486a call l2cap_get_signal_tx_payload 
+463e 58000002 setarg signal_connect_req 
+463f e0a08000 istore 1 ,contw 
+4640 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+4641 e0a08000 istore 1 ,contw 
+4642 58000004 setarg 0x0004 
+4643 e0a10000 istore 2 ,contw 
+4644 18427e00 copy temp ,pdata 
+4645 e0a10000 istore 2 ,contw 
+4646 19627e00 copy timeup ,pdata 
+4647 e0a10000 istore 2 ,contw 
+4648 d8400008 arg 8 ,temp 
+4649 20204673 branch ml2cap_send_signal 
+
+ml2cap_send_signal_config_req:
+464a 793f8025 set0 mark_ext_patch ,mark 
+464b 44f2c01c bpatch patch1c_5 ,mem_patch1c 
+464c 204047d6 call l2cap_get_req_id 
+464d 2040486a call l2cap_get_signal_tx_payload 
+464e 58000004 setarg signal_config_req 
+464f e0a08000 istore 1 ,contw 
+4650 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+4651 e0a08000 istore 1 ,contw 
+4652 58000008 setarg 0x0008 
+4653 e0a10000 istore 2 ,contw 
+4654 18427e00 copy temp ,pdata 
+4655 e0a10000 istore 2 ,contw 
+4656 58000000 setarg 0x0000 
+4657 e0a10000 istore 2 ,contw 
+4658 58000001 setarg 0x01 
+4659 e0a08000 istore 1 ,contw 
+465a 58000002 setarg 0x02 
+465b e0a08000 istore 1 ,contw 
+465c 580003e3 setarg l2cap_config_mtu_rfcomm 
+465d e0a10000 istore 2 ,contw 
+465e d840000c arg 0xc ,temp 
+465f 20204673 branch ml2cap_send_signal 
+
+ml2cap_send_signal_disconn_req:
+4660 793f8025 set0 mark_ext_patch ,mark 
+4661 44f3401c bpatch patch1c_6 ,mem_patch1c 
+4662 204047d6 call l2cap_get_req_id 
+4663 2040486a call l2cap_get_signal_tx_payload 
+4664 58000006 setarg signal_disconnect_req 
+4665 e0a08000 istore 1 ,contw 
+4666 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+4667 1fe0fe01 increase 1 ,pdata 
+4668 18a22200 copy contw ,rega 
+4669 6000c2e5 store 1 ,mem_ml2cap_comm_id 
+466a 1a220a00 copy rega ,contw 
+466b e0a08000 istore 1 ,contw 
+466c 58000004 setarg 0x0004 
+466d e0a10000 istore 2 ,contw 
+466e 18427e00 copy temp ,pdata 
+466f e0a10000 istore 2 ,contw 
+4670 19627e00 copy timeup ,pdata 
+4671 e0a10000 istore 2 ,contw 
+4672 d8400008 arg 0x8 ,temp 
+
+ml2cap_send_signal:
+4673 60090298 storet 2 ,mem_l2cap_signal_tx_length 
+4674 18427e00 copy temp ,pdata 
+4675 203a4803 branch l2cap_malloc_discard ,blank 
+4676 20404868 call l2cap_get_signal_tx_buff 
+4677 68010298 fetch 2 ,mem_l2cap_signal_tx_length 
+4678 e0a10000 istore 2 ,contw 
+4679 18007e01 force l2cap_signal_channel ,pdata 
+467a e0a10000 istore 2 ,contw 
+467b 20600000 rtn 
+
+msdp_send_req_done:
+467c 6801029e fetch 2 ,mem_sdp_tx_pkt_length 
+467d 203a3b31 branch assert ,blank 
+467e 20404876 call l2cap_get_sdp_tx_buff 
+467f 6801029e fetch 2 ,mem_sdp_tx_pkt_length 
+4680 e0a10000 istore 2 ,contw 
+4681 680142d8 fetch 2 ,mem_sdp_remote_cid 
+4682 e0a10000 istore 2 ,contw 
+4683 20600000 rtn 
+
+ml2cap_rx_multiplexing:
+4684 6801028f fetch 2 ,mem_l2cap_rx_pkt_length 
+4685 203a4383 branch l2cap_rx_reset_state ,blank 
+4686 793f8025 set0 mark_ext_patch ,mark 
+4687 44f3c01c bpatch patch1c_7 ,mem_patch1c 
+4688 68008291 fetch 1 ,mem_l2cap_rx_cid 
+4689 c000c68f beq l2cap_signal_channel ,ml2cap_call_proc_signal 
+468a c028436e beq l2cap_sdp_channel ,ml2cap_call_proc_sdp 
+468b c028c37b beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+468c c0294379 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+468d c029c379 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+468e 20204383 branch l2cap_rx_reset_state 
+
+ml2cap_call_proc_signal:
+468f 793f8025 set0 mark_ext_patch ,mark 
+4690 44f4401d bpatch patch1d_0 ,mem_patch1d 
+4691 2040485e call l2cap_malloc_signal_channel 
+4692 18002400 force 0 ,regb 
+4693 2040486a call l2cap_get_signal_tx_payload 
+4694 1fe20a00 copy pdata ,contw 
+4695 6801028f fetch 2 ,mem_l2cap_rx_pkt_length 
+4696 1fe22600 copy pdata ,regc 
+4697 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+4698 98000c00 iforce contr 
+
+ml2cap_proc_one_comm_loop:
+4699 2040469f call ml2cap_proc_one_comm 
+469a 1a60a7fc increase -4 ,regc 
+469b 2422c699 nbranch ml2cap_proc_one_comm_loop ,zero 
+469c 1a420400 copy regb ,temp 
+469d 20404673 call ml2cap_send_signal 
+469e 20204383 branch l2cap_rx_reset_state 
+
+ml2cap_proc_one_comm:
+469f e8c08000 ifetch 1 ,contr 
+46a0 c00146aa beq signal_connect_req ,ml2cap_proc_signal_connect_req 
+46a1 c000c6ad beq signal_cmd_reject ,ml2cap_proc_signal_cmd_reject 
+46a2 c001c6b7 beq signal_connect_rsp ,ml2cap_proc_signal_connect_rsp 
+46a3 c002c6f4 beq signal_config_rsp ,ml2cap_proc_signal_config_rsp 
+46a4 c0024727 beq signal_config_req ,ml2cap_proc_signal_config_req 
+46a5 c003c7ae beq signal_disconnect_rsp ,ml2cap_proc_signal_disconn_rsp 
+46a6 c003477b beq signal_disconnect_req ,ml2cap_proc_signal_disconn_req 
+46a7 c00445e2 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+46a8 c00543c3 beq signal_info_req ,ml2cap_proc_signal_info_req 
+46a9 202047ca branch ml2cap_proc_send_reject 
+
+ml2cap_proc_signal_connect_req:
+46aa 20407e70 call save_cont_pointers 
+46ab 20407e75 call load_cont_pointers 
+46ac 202043da branch l2cap_proc_signal_connect_req 
+
+ml2cap_proc_signal_cmd_reject:
+46ad e8c08000 ifetch 1 ,contr 
+46ae 1fe20e00 copy pdata ,queue 
+46af e8c10000 ifetch 2 ,contr 
+46b0 1fe22200 copy pdata ,rega 
+46b1 1a627e00 copy regc ,pdata 
+46b2 9a262600 isub rega ,regc 
+
+mvptr:
+46b3 e8c08000 ifetch 1 ,contr 
+46b4 1a20a3ff increase -1 ,rega 
+46b5 2422c6b3 nbranch mvptr ,zero 
+46b6 20600000 rtn 
+
+ml2cap_proc_signal_connect_rsp:
+46b7 e8c08000 ifetch 1 ,contr 
+46b8 1fe20e00 copy pdata ,queue 
+46b9 e8c10000 ifetch 2 ,contr 
+46ba 1fe22200 copy pdata ,rega 
+46bb e8c10000 ifetch 2 ,contr 
+46bc 1fe21600 copy pdata ,timeup 
+46bd e8c10000 ifetch 2 ,contr 
+46be 1fe20400 copy pdata ,temp 
+46bf e8c10000 ifetch 2 ,contr 
+46c0 1fe67c00 sub pdata ,0 ,null 
+46c1 2022c6c9 branch ml2cap_proc_signal_connect_rsp_sucessful ,zero 
+46c2 c00146c5 beq l2cap_connect_refused_psm_unsupported ,ml2cap_proc_signal_connect_refused_result 
+46c3 c00246c5 beq l2cap_connect_refused_no_resources ,ml2cap_proc_signal_connect_refused_result 
+46c4 202046c7 branch ml2cap_proc_signal_connect_rsp_mnosucc 
+
+ml2cap_proc_signal_connect_refused_result:
+46c5 7009bd16 jam bt_evt_ml2cap_conn_refused ,mem_fifo_temp 
+46c6 20407d86 call ui_ipc_send_event 
+
+ml2cap_proc_signal_connect_rsp_mnosucc:
+46c7 e8c10000 ifetch 2 ,contr 
+46c8 202046f1 branch mnosucc 
+
+ml2cap_proc_signal_connect_rsp_sucessful:
+46c9 20407e70 call save_cont_pointers 
+46ca 793f8025 set0 mark_ext_patch ,mark 
+46cb 44f4c01d bpatch patch1d_1 ,mem_patch1d 
+46cc 58000050 setarg l2cap_sdp_channel 
+46cd 98467c00 isub temp ,null 
+46ce 2022c6d9 branch ml2cap_proc_signal_connect_rsp_sdp ,zero 
+46cf 58000051 setarg l2cap_rfcomm_channel 
+46d0 98467c00 isub temp ,null 
+46d1 2022c6df branch ml2cap_proc_signal_connect_rsp_rfcomm ,zero 
+46d2 58000053 setarg l2cap_hid_interrupt_channel 
+46d3 98467c00 isub temp ,null 
+46d4 2022c6eb branch ml2cap_proc_signal_connect_rsp_hid_int ,zero 
+46d5 58000052 setarg l2cap_hid_control_channel 
+46d6 98467c00 isub temp ,null 
+46d7 2022c6e5 branch ml2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+46d8 202046f1 branch mnosucc 
+
+ml2cap_proc_signal_connect_rsp_sdp:
+46d9 19627e00 copy timeup ,pdata 
+46da 600142d8 store 2 ,mem_sdp_remote_cid 
+46db 6800c2e0 fetch 1 ,mem_sdp_state 
+46dc 79207e01 set1 l2cap_channel_state_conn_res 
+46dd 6000c2e0 store 1 ,mem_sdp_state 
+46de 202046f0 branch mnosucc1 
+
+ml2cap_proc_signal_connect_rsp_rfcomm:
+46df 19627e00 copy timeup ,pdata 
+46e0 600142da store 2 ,mem_rfcomm_remote_cid 
+46e1 6800c2e1 fetch 1 ,mem_rfcomm_state 
+46e2 79207e01 set1 l2cap_channel_state_conn_res 
+46e3 6000c2e1 store 1 ,mem_rfcomm_state 
+46e4 202046f0 branch mnosucc1 
+
+ml2cap_proc_signal_connect_rsp_hid_ctrl:
+46e5 19627e00 copy timeup ,pdata 
+46e6 600142dc store 2 ,mem_hid_ctrl_remote_cid 
+46e7 6800c2e2 fetch 1 ,mem_hid_control_state 
+46e8 79207e01 set1 l2cap_channel_state_conn_res 
+46e9 6000c2e2 store 1 ,mem_hid_control_state 
+46ea 202046f0 branch mnosucc1 
+
+ml2cap_proc_signal_connect_rsp_hid_int:
+46eb 19627e00 copy timeup ,pdata 
+46ec 600142de store 2 ,mem_hid_int_remote_cid 
+46ed 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+46ee 79207e01 set1 l2cap_channel_state_conn_res 
+46ef 6000c2e3 store 1 ,mem_hid_interrupt_state 
+
+mnosucc1:
+46f0 20407e75 call load_cont_pointers 
+
+mnosucc:
+46f1 1a627e00 copy regc ,pdata 
+46f2 9a262600 isub rega ,regc 
+46f3 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp:
+46f4 e8c08000 ifetch 1 ,contr 
+46f5 1fe20e00 copy pdata ,queue 
+46f6 e8c10000 ifetch 2 ,contr 
+46f7 1fe22200 copy pdata ,rega 
+46f8 1a627e00 copy regc ,pdata 
+46f9 9a262600 isub rega ,regc 
+46fa e8c10000 ifetch 2 ,contr 
+46fb 1fe21600 copy pdata ,timeup 
+46fc e8c10000 ifetch 2 ,contr 
+46fd e8c10000 ifetch 2 ,contr 
+46fe 243a4721 nbranch mcrsdone1 ,blank 
+46ff 20407e70 call save_cont_pointers 
+4700 19620400 copy timeup ,temp 
+4701 793f8025 set0 mark_ext_patch ,mark 
+4702 44f5401d bpatch patch1d_2 ,mem_patch1d 
+4703 58000050 setarg l2cap_sdp_channel 
+4704 98467c00 isub temp ,null 
+4705 2022c70f branch ml2cap_proc_signal_config_rsp_sdp ,zero 
+4706 58000051 setarg l2cap_rfcomm_channel 
+4707 98467c00 isub temp ,null 
+4708 2022c713 branch ml2cap_proc_signal_config_rsp_rfcomm ,zero 
+4709 58000052 setarg l2cap_hid_control_channel 
+470a 98467c00 isub temp ,null 
+470b 2022c717 branch ml2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+470c 58000053 setarg l2cap_hid_interrupt_channel 
+470d 98467c00 isub temp ,null 
+470e 2022c71b branch ml2cap_proc_signal_config_rsp_hid_int ,zero 
+
+ml2cap_proc_signal_config_rsp_sdp:
+470f 6800c2e0 fetch 1 ,mem_sdp_state 
+4710 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+4711 6000c2e0 store 1 ,mem_sdp_state 
+4712 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp_rfcomm:
+4713 6800c2e1 fetch 1 ,mem_rfcomm_state 
+4714 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+4715 6000c2e1 store 1 ,mem_rfcomm_state 
+4716 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp_hid_ctrl:
+4717 6800c2e2 fetch 1 ,mem_hid_control_state 
+4718 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+4719 6000c2e2 store 1 ,mem_hid_control_state 
+471a 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp_hid_int:
+471b 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+471c 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+471d 6000c2e3 store 1 ,mem_hid_interrupt_state 
+471e 7009bd06 jam bt_evt_hid_connected ,mem_fifo_temp 
+471f 20207d86 branch ui_ipc_send_event 
+
+mcfrsdone:
+4720 20407e75 call load_cont_pointers 
+
+mcrsdone1:
+4721 1a20a3fa increase -6 ,rega 
+
+mloop2:
+4722 2022c726 branch mcrsdone ,zero 
+4723 18c08c01 increase 1 ,contr 
+4724 1a20a3ff increase -1 ,rega 
+4725 20204722 branch mloop2 
+
+mcrsdone:
+4726 20600000 rtn 
+
+ml2cap_proc_signal_config_req:
+4727 e8c08000 ifetch 1 ,contr 
+4728 1fe20e00 copy pdata ,queue 
+4729 e8c10000 ifetch 2 ,contr 
+472a 1fe22200 copy pdata ,rega 
+472b 1a627e00 copy regc ,pdata 
+472c 9a262600 isub rega ,regc 
+472d e8c10000 ifetch 2 ,contr 
+472e 18c08c02 increase 2 ,contr 
+472f 1fe20400 copy pdata ,temp 
+4730 58000005 setarg signal_config_rsp 
+4731 e0a08000 istore 1 ,contw 
+4732 18e27e00 copy queue ,pdata 
+4733 e0a08000 istore 1 ,contw 
+4734 1a20a202 increase 2 ,rega 
+4735 1a227e00 copy rega ,pdata 
+4736 e0a10000 istore 2 ,contw 
+4737 20407e70 call save_cont_pointers 
+4738 793f8025 set0 mark_ext_patch ,mark 
+4739 44f5c01d bpatch patch1d_3 ,mem_patch1d 
+473a 58000050 setarg l2cap_sdp_channel 
+473b 98467c00 isub temp ,null 
+473c 2022c747 branch ml2cap_proc_signal_config_req_sdp ,zero 
+473d 58000051 setarg l2cap_rfcomm_channel 
+473e 98467c00 isub temp ,null 
+473f 2022c758 branch ml2cap_proc_signal_config_req_rfcomm ,zero 
+4740 58000052 setarg l2cap_hid_control_channel 
+4741 98467c00 isub temp ,null 
+4742 2022c75e branch ml2cap_proc_signal_config_req_hid_ctrl ,zero 
+4743 58000053 setarg l2cap_hid_interrupt_channel 
+4744 98467c00 isub temp ,null 
+4745 2022c764 branch ml2cap_proc_signal_config_req_hid_int ,zero 
+4746 20204769 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_sdp:
+4747 6800c2e0 fetch 1 ,mem_sdp_state 
+4748 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+4749 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+474a 6000c2e0 store 1 ,mem_sdp_state 
+474b c2814755 bbit1 l2cap_channel_state_snd_cfg_req ,ml2cap_proc_signal_config_req_sdp_nsndreq 
+474c 680882a8 fetcht 1 ,mem_control_tasks 
+474d 79200406 set1 l2cap_init_config_req ,temp 
+474e 600882a8 storet 1 ,mem_control_tasks 
+474f 18e27e00 copy queue ,pdata 
+4750 1fe0fe01 increase 1 ,pdata 
+4751 600082aa store 1 ,mem_config_identifier 
+4752 6800c2e0 fetch 1 ,mem_sdp_state 
+4753 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+4754 6000c2e0 store 1 ,mem_sdp_state 
+
+ml2cap_proc_signal_config_req_sdp_nsndreq:
+4755 680142d8 fetch 2 ,mem_sdp_remote_cid 
+4756 600102ab store 2 ,mem_config_req_dest_cid 
+4757 20204769 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_rfcomm:
+4758 6800c2e1 fetch 1 ,mem_rfcomm_state 
+4759 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+475a 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+475b 6000c2e1 store 1 ,mem_rfcomm_state 
+475c 680142da fetch 2 ,mem_rfcomm_remote_cid 
+475d 20204769 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_hid_ctrl:
+475e 6800c2e2 fetch 1 ,mem_hid_control_state 
+475f 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+4760 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+4761 6000c2e2 store 1 ,mem_hid_control_state 
+4762 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+4763 20204769 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_hid_int:
+4764 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+4765 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+4766 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+4767 6000c2e3 store 1 ,mem_hid_interrupt_state 
+4768 680142de fetch 2 ,mem_hid_int_remote_cid 
+
+mcfgrq_done:
+4769 1fe21600 copy pdata ,timeup 
+476a 20407e75 call load_cont_pointers 
+476b 19627e00 copy timeup ,pdata 
+476c e0a10000 istore 2 ,contw 
+476d 18007e00 force 0x0000 ,pdata 
+476e e0a10000 istore 2 ,contw 
+476f 18007e00 force 0x0000 ,pdata 
+4770 e0a10000 istore 2 ,contw 
+4771 18007e0a force 10 ,pdata 
+4772 9a40a400 iadd regb ,regb 
+4773 1a20a3fa increase -6 ,rega 
+
+mloop1:
+4774 2022c77a branch mcrqdone ,zero 
+4775 e8c08000 ifetch 1 ,contr 
+4776 e0a08000 istore 1 ,contw 
+4777 1a40a401 increase 1 ,regb 
+4778 1a20a3ff increase -1 ,rega 
+4779 20204774 branch mloop1 
+
+mcrqdone:
+477a 20600000 rtn 
+
+ml2cap_proc_signal_disconn_req:
+477b e8c08000 ifetch 1 ,contr 
+477c 1fe20e00 copy pdata ,queue 
+477d e8c10000 ifetch 2 ,contr 
+477e 1fe22200 copy pdata ,rega 
+477f 1a627e00 copy regc ,pdata 
+4780 9a262600 isub rega ,regc 
+4781 e8c10000 ifetch 2 ,contr 
+4782 1fe22200 copy pdata ,rega 
+4783 e8c10000 ifetch 2 ,contr 
+4784 1fe21600 copy pdata ,timeup 
+4785 20407e70 call save_cont_pointers 
+4786 793f8025 set0 mark_ext_patch ,mark 
+4787 44f6401d bpatch patch1d_4 ,mem_patch1d 
+4788 58000050 setarg l2cap_sdp_channel 
+4789 1a220400 copy rega ,temp 
+478a 98467c00 isub temp ,null 
+478b 2022c795 branch ml2cap_proc_signal_disconn_sdp ,zero 
+478c 58000052 setarg l2cap_hid_control_channel 
+478d 1a220400 copy rega ,temp 
+478e 98467c00 isub temp ,null 
+478f 2022c79a branch ml2cap_proc_signal_disconn_hid_ctrl ,zero 
+4790 58000053 setarg l2cap_hid_interrupt_channel 
+4791 1a220400 copy rega ,temp 
+4792 98467c00 isub temp ,null 
+4793 2022c79c branch ml2cap_proc_signal_disconn_hid_int ,zero 
+4794 2020479e branch mclsrfc 
+
+ml2cap_proc_signal_disconn_sdp:
+4795 58000000 setarg 0x0000 
+4796 6001029e store 2 ,mem_sdp_tx_pkt_length 
+4797 600142d8 store 2 ,mem_sdp_remote_cid 
+4798 6000c2e0 store 1 ,mem_sdp_state 
+4799 202047a0 branch mclssdp 
+
+ml2cap_proc_signal_disconn_hid_ctrl:
+479a 2040460b call l2cap_reset_hid_ctrl_state 
+479b 202047a0 branch mclssdp 
+
+ml2cap_proc_signal_disconn_hid_int:
+479c 20404611 call l2cap_reset_hid_int_state 
+479d 202047a0 branch mclssdp 
+
+mclsrfc:
+479e 58000000 setarg 0x0000 
+479f 600102a4 store 2 ,mem_rfcomm_tx_pkt_length 
+
+mclssdp:
+47a0 20407e75 call load_cont_pointers 
+47a1 58000007 setarg signal_disconnect_rsp 
+47a2 e0a08000 istore 1 ,contw 
+47a3 18e27e00 copy queue ,pdata 
+47a4 e0a08000 istore 1 ,contw 
+47a5 58000004 setarg 0x0004 
+47a6 e0a10000 istore 2 ,contw 
+47a7 1a227e00 copy rega ,pdata 
+47a8 e0a10000 istore 2 ,contw 
+47a9 19627e00 copy timeup ,pdata 
+47aa e0a10000 istore 2 ,contw 
+47ab 18007e08 force 8 ,pdata 
+47ac 9a40a400 iadd regb ,regb 
+47ad 20600000 rtn 
+
+ml2cap_proc_signal_disconn_rsp:
+47ae e8c08000 ifetch 1 ,contr 
+47af 1fe20e00 copy pdata ,queue 
+47b0 e8c10000 ifetch 2 ,contr 
+47b1 1fe22200 copy pdata ,rega 
+47b2 e8c10000 ifetch 2 ,contr 
+47b3 1fe21600 copy pdata ,timeup 
+47b4 e8c10000 ifetch 2 ,contr 
+47b5 1fe20400 copy pdata ,temp 
+47b6 20407e70 call save_cont_pointers 
+47b7 793f8025 set0 mark_ext_patch ,mark 
+47b8 44f6c01d bpatch patch1d_5 ,mem_patch1d 
+47b9 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+47ba a8e1fe00 icompare 0xff ,queue 
+47bb 2420c7c6 nbranch mdisdone ,true 
+47bc 58000050 setarg l2cap_sdp_channel 
+47bd 98467c00 isub temp ,null 
+47be 2022c7c3 branch ml2cap_proc_signal_disconn_rsp_sdp ,zero 
+47bf 58000051 setarg l2cap_rfcomm_channel 
+47c0 98467c00 isub temp ,null 
+47c1 2022c7c6 branch ml2cap_proc_signal_disconn_rsp_rfcomm ,zero 
+47c2 202047c6 branch mdisdone 
+
+ml2cap_proc_signal_disconn_rsp_sdp:
+47c3 7042d800 jam 0 ,mem_sdp_remote_cid 
+47c4 7042e000 jam 0 ,mem_sdp_state 
+47c5 202047c6 branch mdisdone 
+
+ml2cap_proc_signal_disconn_rsp_rfcomm:
+
+mdisdone:
+47c6 20407e75 call load_cont_pointers 
+47c7 1a627e00 copy regc ,pdata 
+47c8 9a262600 isub rega ,regc 
+47c9 20600000 rtn 
+
+ml2cap_proc_send_reject:
+47ca 58000001 setarg signal_cmd_reject 
+47cb e0a08000 istore 1 ,contw 
+47cc e8c08000 ifetch 1 ,contr 
+47cd e0a08000 istore 1 ,contw 
+47ce 58000002 setarg 0x0002 
+47cf e0a10000 istore 2 ,contw 
+47d0 58000000 setarg 0x0000 
+47d1 e0a10000 istore 2 ,contw 
+47d2 58000006 setarg 0x0006 
+47d3 9a40a400 iadd regb ,regb 
+47d4 18002604 force 4 ,regc 
+47d5 20600000 rtn 
+
+l2cap_get_req_id:
+47d6 6800c2e5 fetch 1 ,mem_ml2cap_comm_id 
+47d7 1fe0fe01 increase 1 ,pdata 
+47d8 c08047da bne 0 ,l2cap_get_req_id_ok 
+47d9 1fe0fe01 increase 1 ,pdata 
+
+l2cap_get_req_id_ok:
+47da 6000c2e5 store 1 ,mem_ml2cap_comm_id 
+47db 20600000 rtn 
+
+l2cap_malloc:
+47dc 793f8025 set0 mark_ext_patch ,mark 
+47dd 44f7401d bpatch patch1d_6 ,mem_patch1d 
+47de da400000 arg 0 ,regb 
+47df 2040480e call l2cap_malloc_is_fifo_full 
+47e0 243a3b31 nbranch assert ,blank 
+47e1 20404821 call l2cap_malloc_get_full_map 
+47e2 da401800 arg mem_tx_buff0 ,regb 
+47e3 d8e00000 arg 0 ,queue 
+
+l2cap_malloc_loop:
+47e4 6808c2e6 fetcht 1 ,mem_used_map 
+47e5 a84fffff qisolate1 temp 
+47e6 2020c7ec branch l2cap_malloc_next ,true 
+47e7 20404845 call l2cap_malloc_enough 
+47e8 19667c00 sub timeup ,0 ,null 
+47e9 202147ec branch l2cap_malloc_next ,positive 
+47ea 2040482c call l2cap_malloc_into_fifo 
+47eb 202047f2 branch l2cap_malloc_rtn 
+
+l2cap_malloc_next:
+47ec 1a40a480 increase 128 ,regb 
+47ed 18e08e01 increase 1 ,queue 
+47ee 58000008 setarg 8 
+47ef 98e67c00 isub queue ,null 
+47f0 202147e4 branch l2cap_malloc_loop ,positive 
+47f1 da400000 arg 0 ,regb 
+
+l2cap_malloc_rtn:
+47f2 1a427e00 copy regb ,pdata 
+47f3 203a3b31 branch assert ,blank 
+47f4 20600000 rtn 
+
+l2cap_malloc_fifo_out:
+47f5 793f8025 set0 mark_ext_patch ,mark 
+47f6 44f7c01d bpatch patch1d_7 ,mem_patch1d 
+47f7 2040481a call l2cap_malloc_fifo_get_first_ptr 
+47f8 18c08c01 increase 1 ,contr 
+47f9 e8c10000 ifetch 2 ,contr 
+47fa 20600000 rtn 
+
+l2cap_malloc_free:
+47fb 793f8025 set0 mark_ext_patch ,mark 
+47fc 44f8401e bpatch patch1e_0 ,mem_patch1e 
+47fd 2040481a call l2cap_malloc_fifo_get_first_ptr 
+47fe 18c20a00 copy contr ,contw 
+47ff 18c20400 copy contr ,temp 
+4800 58000000 setarg 0 
+4801 e0a18000 istore 3 ,contw 
+4802 20600000 rtn 
+
+l2cap_malloc_discard:
+4803 793f8025 set0 mark_ext_patch ,mark 
+4804 44f8c01e bpatch patch1e_1 ,mem_patch1e 
+4805 20404816 call l2cap_malloc_is_fifo_empty 
+4806 203a3b31 branch assert ,blank 
+4807 6801c2ed fetch 3 ,mem_tx_fifo2 
+4808 6001c2f0 store 3 ,mem_tx_fifo3 
+4809 6801c2ea fetch 3 ,mem_tx_fifo1 
+480a 6001c2ed store 3 ,mem_tx_fifo2 
+480b 6801c2e7 fetch 3 ,mem_tx_fifo0 
+480c 6001c2ea store 3 ,mem_tx_fifo1 
+480d 20600000 rtn 
+
+l2cap_malloc_is_fifo_full:
+480e 793f8025 set0 mark_ext_patch ,mark 
+480f 44f9401e bpatch patch1e_2 ,mem_patch1e 
+4810 6801c2e7 fetch 3 ,mem_tx_fifo0 
+4811 20600000 rtn 
+
+l2cap_malloc_is_fifo_nearly_full:
+4812 793f8025 set0 mark_ext_patch ,mark 
+4813 44f9c01e bpatch patch1e_3 ,mem_patch1e 
+4814 6801c2ea fetch 3 ,mem_tx_fifo1 
+4815 20600000 rtn 
+
+l2cap_malloc_is_fifo_empty:
+4816 793f8025 set0 mark_ext_patch ,mark 
+4817 44fa401e bpatch patch1e_4 ,mem_patch1e 
+4818 6801c2f0 fetch 3 ,mem_tx_fifo3 
+4819 20600000 rtn 
+
+l2cap_malloc_fifo_get_first_ptr:
+481a 20404816 call l2cap_malloc_is_fifo_empty 
+481b 203a3b31 branch assert ,blank 
+481c d8c042e7 arg mem_tx_fifo0 ,contr 
+
+l2cap_malloc_free_loop:
+481d e8c18000 ifetch 3 ,contr 
+481e 203a481d branch l2cap_malloc_free_loop ,blank 
+481f 18c08dfd increase -3 ,contr 
+4820 20600000 rtn 
+
+l2cap_malloc_get_full_map:
+4821 793f8025 set0 mark_ext_patch ,mark 
+4822 44fac01e bpatch patch1e_5 ,mem_patch1e 
+4823 df200004 arg 4 ,loopcnt 
+4824 d8c042e7 arg mem_tx_fifo0_map ,contr 
+4825 d8400000 arg 0 ,temp 
+
+l2cap_malloc_get_full_map_loop:
+4826 e8c18000 ifetch 3 ,contr 
+4827 1fe17eff and pdata ,0xff ,pdata 
+4828 98418400 ior temp ,temp 
+4829 c2004826 loop l2cap_malloc_get_full_map_loop 
+482a 6008c2e6 storet 1 ,mem_used_map 
+482b 20600000 rtn 
+
+l2cap_malloc_into_fifo:
+482c 793f8025 set0 mark_ext_patch ,mark 
+482d 44fb401e bpatch patch1e_6 ,mem_patch1e 
+482e 2040480e call l2cap_malloc_is_fifo_full 
+482f 243a3b31 nbranch assert ,blank 
+4830 20404816 call l2cap_malloc_is_fifo_empty 
+4831 203a483a branch l2cap_malloc_into_fifo_no_push ,blank 
+4832 6801c2ea fetch 3 ,mem_tx_fifo1 
+4833 6001c2e7 store 3 ,mem_tx_fifo0 
+4834 e8c18000 ifetch 3 ,contr 
+4835 e0a18000 istore 3 ,contw 
+4836 e8c18000 ifetch 3 ,contr 
+4837 e0a18000 istore 3 ,contw 
+4838 58000000 setarg 0 
+4839 e0a18000 istore 3 ,contw 
+
+l2cap_malloc_into_fifo_no_push:
+483a d8400000 arg 0 ,temp 
+483b 19627e00 copy timeup ,pdata 
+483c 98e0fe00 iadd queue ,pdata 
+
+l2cap_malloc_into_fifo_loop:
+483d f9200400 qset1 temp 
+483e 18e08e01 increase 1 ,queue 
+483f 98e67c00 isub queue ,null 
+4840 2422c83d nbranch l2cap_malloc_into_fifo_loop ,zero 
+4841 1a4d7e00 lshift8 regb ,pdata 
+4842 9841fe00 ior temp ,pdata 
+4843 6001c2f0 store 3 ,mem_tx_fifo3 
+4844 20600000 rtn 
+
+l2cap_malloc_enough:
+4845 793f8025 set0 mark_ext_patch ,mark 
+4846 44fbc01e bpatch patch1e_7 ,mem_patch1e 
+4847 20404821 call l2cap_malloc_get_full_map 
+4848 18e22600 copy queue ,regc 
+4849 d8400000 arg 0 ,temp 
+484a d9600000 arg 0 ,timeup 
+
+l2cap_malloc_enough_loop:
+484b 18e27e00 copy queue ,pdata 
+484c c0044856 beq 8 ,l2cap_malloc_enough_end 
+484d 6800c2e6 fetch 1 ,mem_used_map 
+484e afefffff qisolate1 pdata 
+484f 2020c856 branch l2cap_malloc_enough_end ,true 
+4850 18408480 increase 128 ,temp 
+4851 18e08e01 increase 1 ,queue 
+4852 1a227e00 copy rega ,pdata 
+4853 98467c00 isub temp ,null 
+4854 2022c856 branch l2cap_malloc_enough_end ,zero 
+4855 2021484b branch l2cap_malloc_enough_loop ,positive 
+
+l2cap_malloc_enough_end:
+4856 18427e00 copy temp ,pdata 
+4857 9a267c00 isub rega ,null 
+4858 2421485c nbranch l2cap_malloc_enough_rtn ,positive 
+4859 18e27e00 copy queue ,pdata 
+485a 1a620400 copy regc ,temp 
+485b 98461600 isub temp ,timeup 
+
+l2cap_malloc_enough_rtn:
+485c 1a620e00 copy regc ,queue 
+485d 20600000 rtn 
+
+l2cap_malloc_signal_channel:
+485e 793f8025 set0 mark_ext_patch ,mark 
+485f 44fc401f bpatch patch1f_0 ,mem_patch1f 
+4860 da20007f arg l2cap_signal_malloc_size ,rega 
+4861 204047dc call l2cap_malloc 
+4862 60010294 store 2 ,mem_l2cap_signal_tx_buff_ptr 
+4863 1fe0fe04 increase 4 ,pdata 
+4864 60010296 store 2 ,mem_l2cap_signal_tx_payload_ptr 
+4865 58000000 setarg 0 
+4866 60010298 store 2 ,mem_l2cap_signal_tx_length 
+4867 20600000 rtn 
+
+l2cap_get_signal_tx_buff:
+4868 68010294 fetch 2 ,mem_l2cap_signal_tx_buff_ptr 
+4869 2020488b branch l2cap_util_pdata_to_contw 
+
+l2cap_get_signal_tx_payload:
+486a 68010296 fetch 2 ,mem_l2cap_signal_tx_payload_ptr 
+486b 2020488b branch l2cap_util_pdata_to_contw 
+
+l2cap_malloc_sdp_channel:
+486c 793f8025 set0 mark_ext_patch ,mark 
+486d 44fcc01f bpatch patch1f_1 ,mem_patch1f 
+486e da2002ff arg sdp_malloc_size ,rega 
+486f 204047dc call l2cap_malloc 
+4870 6001029a store 2 ,mem_sdp_tx_buff_ptr 
+4871 1fe0fe04 increase 4 ,pdata 
+4872 6001029c store 2 ,mem_sdp_tx_payload_ptr 
+4873 58000000 setarg 0 
+4874 6001029e store 2 ,mem_sdp_tx_pkt_length 
+4875 20600000 rtn 
+
+l2cap_get_sdp_tx_buff:
+4876 6801029a fetch 2 ,mem_sdp_tx_buff_ptr 
+4877 2020488b branch l2cap_util_pdata_to_contw 
+
+l2cap_get_sdp_tx_payload:
+4878 6801029c fetch 2 ,mem_sdp_tx_payload_ptr 
+4879 2020488b branch l2cap_util_pdata_to_contw 
+
+l2cap_malloc_rfcomm_channel:
+487a 793f8025 set0 mark_ext_patch ,mark 
+487b 44fd401f bpatch patch1f_2 ,mem_patch1f 
+487c 20407e48 call push_stack 
+487d 7002ad01 jam rfcomm_malloc_fail ,mem_rfcomm_malloc_fail_flag 
+487e 2040480e call l2cap_malloc_is_fifo_full 
+487f 247a0000 nrtn blank 
+4880 da20007f arg rfcomm_malloc_size ,rega 
+4881 204047dc call l2cap_malloc 
+4882 600102a0 store 2 ,mem_rfcomm_tx_buff_ptr 
+4883 1fe0fe04 increase 4 ,pdata 
+4884 600102a2 store 2 ,mem_rfcomm_tx_payload_ptr 
+4885 58000000 setarg 0 
+4886 600102a4 store 2 ,mem_rfcomm_tx_pkt_length 
+4887 7002ad00 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+4888 20207e56 branch pop_stack 
+
+l2cap_get_rfcomm_tx_buff:
+4889 680102a0 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+488a 2020488b branch l2cap_util_pdata_to_contw 
+
+l2cap_util_pdata_to_contw:
+488b 203a3b31 branch assert ,blank 
+488c 1fe20a00 copy pdata ,contw 
+488d 20600000 rtn 
+
+l2cap_lpm_save_calc_len:
+488e 793f8025 set0 mark_ext_patch ,mark 
+488f 44fdc01f bpatch patch1f_3 ,mem_patch1f 
+4890 da400000 arg 0 ,regb 
+4891 da2042e7 arg mem_tx_fifo0_map ,rega 
+4892 1a20a3fe increase -2 ,rega 
+
+l2cap_lpm_save_calc_len_loop:
+4893 1a20a202 increase 2 ,rega 
+4894 580042f3 setarg mem_tx_fifo_end 
+4895 9a267c00 isub rega ,null 
+4896 2022c89f branch l2cap_lpm_save_calc_len_end ,zero 
+4897 ea208000 ifetch 1 ,rega 
+4898 1a20a201 increase 1 ,rega 
+4899 203a4893 branch l2cap_lpm_save_calc_len_loop ,blank 
+489a ea290000 ifetcht 2 ,rega 
+489b e8410000 ifetch 2 ,temp 
+489c 9a40a400 iadd regb ,regb 
+489d 1a40a404 increase 4 ,regb 
+489e 20204893 branch l2cap_lpm_save_calc_len_loop 
+
+l2cap_lpm_save_calc_len_end:
+489f 1a427e00 copy regb ,pdata 
+48a0 20600000 rtn 
+
+l2cap_lpm_get_wake_lock:
+48a1 d8e0000c arg wake_lock_l2cap_tx ,queue 
+48a2 20203d06 branch lpm_get_wake_lock 
+
+l2cap_lpm_put_wake_lock:
+48a3 d8e0000c arg wake_lock_l2cap_tx ,queue 
+48a4 20203d0a branch lpm_put_wake_lock 
+
+l2cap_lpm_save_txbuf:
+48a5 793f8025 set0 mark_ext_patch ,mark 
+48a6 44fe401f bpatch patch1f_4 ,mem_patch1f 
+48a7 20404821 call l2cap_malloc_get_full_map 
+48a8 6800c2e6 fetch 1 ,mem_used_map 
+48a9 207a0000 rtn blank 
+48aa 2040488e call l2cap_lpm_save_calc_len 
+48ab d8400100 arg l2cap_lpm_txbuf_len ,temp 
+48ac 98467c00 isub temp ,null 
+48ad 202148a1 branch l2cap_lpm_get_wake_lock ,positive 
+48ae 204048a3 call l2cap_lpm_put_wake_lock 
+48af d8a042f3 arg mem_l2cap_lpm_txbuf ,contw 
+48b0 da2042e7 arg mem_tx_fifo0 ,rega 
+
+l2cap_lpm_save_txbuf_loop:
+48b1 580042f3 setarg mem_tx_fifo_end 
+48b2 9a267c00 isub rega ,null 
+48b3 20628000 rtn zero 
+48b4 ea208000 ifetch 1 ,rega 
+48b5 1a20a201 increase 1 ,rega 
+48b6 243a48ba nbranch l2cap_lpm_save_txbuf_nempty ,blank 
+48b7 e0a10000 istore 2 ,contw 
+48b8 1a20a202 increase 2 ,rega 
+48b9 202048b1 branch l2cap_lpm_save_txbuf_loop 
+
+l2cap_lpm_save_txbuf_nempty:
+48ba ea210000 ifetch 2 ,rega 
+48bb 1a20a202 increase 2 ,rega 
+48bc 1fe20c00 copy pdata ,contr 
+48bd e8c10000 ifetch 2 ,contr 
+48be e0a10000 istore 2 ,contw 
+48bf 1fe27200 copy pdata ,loopcnt 
+48c0 1f20f202 increase 2 ,loopcnt 
+48c1 20407ecd call memcpy 
+48c2 202048b1 branch l2cap_lpm_save_txbuf_loop 
+
+l2cap_lpm_load_txbuf:
+48c3 793f8025 set0 mark_ext_patch ,mark 
+48c4 44fec01f bpatch patch1f_5 ,mem_patch1f 
+48c5 20404821 call l2cap_malloc_get_full_map 
+48c6 6800c2e6 fetch 1 ,mem_used_map 
+48c7 207a0000 rtn blank 
+48c8 da2042e8 arg mem_tx_fifo0_ptr ,rega 
+48c9 1a20a3fd increase -3 ,rega 
+48ca d8c042f3 arg mem_l2cap_lpm_txbuf ,contr 
+
+l2cap_lpm_load_txbuf_loop:
+48cb 1a20a203 increase 3 ,rega 
+48cc 580042f4 setarg mem_tx_fifo_end + 1 
+48cd 9a267c00 isub rega ,null 
+48ce 20628000 rtn zero 
+48cf e8c10000 ifetch 2 ,contr 
+48d0 203a48cb branch l2cap_lpm_load_txbuf_loop ,blank 
+48d1 1fe0fe04 increase 4 ,pdata 
+48d2 1fe27200 copy pdata ,loopcnt 
+48d3 18c22400 copy contr ,regb 
+48d4 ea210000 ifetch 2 ,rega 
+48d5 1fe20a00 copy pdata ,contw 
+48d6 1a420c00 copy regb ,contr 
+48d7 18c08dfe increase -2 ,contr 
+48d8 20407ecd call memcpy 
+48d9 202048cb branch l2cap_lpm_load_txbuf_loop 
+
+le_secure_connection_enable:
+48da 6800c4df fetch 1 ,mem_le_pres_auth 
+48db 79207e03 set1 le_auth_secure_connection_pairing_bit ,pdata 
+48dc 6000c4df store 1 ,mem_le_pres_auth 
+48dd 20600000 rtn 
+
+le_secure_connection_disable:
+48de 6800c4df fetch 1 ,mem_le_pres_auth 
+48df 793ffe03 set0 le_auth_secure_connection_pairing_bit ,pdata 
+48e0 6000c4df store 1 ,mem_le_pres_auth 
+48e1 20600000 rtn 
+
+le_init_conn:
+48e2 793f8025 set0 mark_ext_patch ,mark 
+48e3 44ff401f bpatch patch1f_6 ,mem_patch1f 
+48e4 7855fc00 disable wake 
+48e5 70037801 jam 1 ,mem_le_conn_handle 
+48e6 70036203 jam 3 ,mem_le_state 
+48e7 70037901 jam 1 ,mem_le_arq 
+48e8 5fffffff setarg -1 
+48e9 6001037c store 2 ,mem_le_event_count 
+48ea 18007e00 force 0 ,pdata 
+48eb 6000837a store 1 ,mem_le_ch 
+48ec 60008385 store 1 ,mem_le_op 
+48ed 6001c209 store 3 ,mem_sniff_rcv 
+48ee 6001c20c store 3 ,mem_sniff_lost 
+48ef 6002c48c store 5 ,mem_le_pcnt_tx 
+48f0 79207e27 set1 39 ,pdata 
+48f1 6002c491 store 5 ,mem_le_pcnt_rx 
+48f2 70446501 jam 1 ,mem_le_txheader 
+48f3 70446600 jam 0 ,mem_le_txlen 
+48f4 20205179 branch le_supervision_flush 
+
+le_init_master:
+48f5 793f8025 set0 mark_ext_patch ,mark 
+48f6 44ffc01f bpatch patch1f_7 ,mem_patch1f 
+48f7 7834fc00 enable master 
+48f8 70036303 jam lemode_master ,mem_le_mode 
+48f9 70039b01 jam 1 ,mem_le_att_handle 
+48fa 7044e301 jam 1 ,mem_le_search_handle_start 
+48fb 5800ffff setarg 0xffff 
+48fc 600144e5 store 2 ,mem_le_search_handle_end 
+48fd 18007e00 force 0 ,pdata 
+48fe 6002c491 store 5 ,mem_le_pcnt_rx 
+48ff 79207e27 set1 39 ,pdata 
+4900 6002c48c store 5 ,mem_le_pcnt_tx 
+4901 202048e2 branch le_init_conn 
+
+le_init_slave:
+4902 79200025 set1 mark_ext_patch ,mark 
+4903 44804020 bpatch patch20_0 ,mem_patch20 
+4904 7854fc00 disable master 
+4905 70036301 jam lemode_slave ,mem_le_mode 
+4906 7043ff00 jam 0 ,mem_le_adv_enable 
+4907 70009f00 jam 0 ,mem_lpm_current_mult 
+4908 70456a00 jam flag_le_pairing_null ,mem_le_pairing_state 
+4909 70456b00 jam flag_le_enc_null ,mem_le_enc_state 
+490a 68010390 fetch 2 ,mem_le_superto 
+490b 60014561 store 2 ,mem_le_init_superto 
+490c 68010364 fetch 2 ,mem_le_tsniff 
+490d 1feffe05 mul32 pdata ,5 ,pdata 
+490e 1ff1fe00 rshift4 pdata ,pdata 
+490f 60010390 store 2 ,mem_le_superto 
+4910 202048e2 branch le_init_conn 
+
+le_dispatch:
+4911 20404976 call le_enable 
+4912 20404b91 call le_scan 
+4913 2040517c call le_adv 
+4914 2020497d branch le_disable 
+
+le_conn_dispatch:
+4915 79200025 set1 mark_ext_patch ,mark 
+4916 4480c020 bpatch patch20_1 ,mem_patch20 
+4917 20404976 call le_enable 
+4918 20403d67 call app_process_ble 
+4919 68008363 fetch 1 ,mem_le_mode 
+491a c001c91c beq lemode_master ,le_master_dispatch 
+491b 20204932 branch le_slave_dispatch 
+
+le_master_dispatch:
+491c 79200025 set1 mark_ext_patch ,mark 
+491d 44814020 bpatch patch20_2 ,mem_patch20 
+491e 7834fc00 enable master 
+491f 20405170 call le_supervision_update 
+4920 2021492f branch le_master_disconn ,positive 
+4921 20403d45 call check_ble_disabled 
+4922 204049c4 call le_setup 
+4923 20404bd8 call le_prepare_tx 
+4924 7856fc00 disable match 
+4925 20404a5a call le_transmit_receive_sifs 
+4926 24768000 nrtn match 
+4927 79200025 set1 mark_ext_patch ,mark 
+4928 4481c020 bpatch patch20_3 ,mem_patch20 
+4929 68008005 fetch 1 ,mem_le_conn_rcv 
+492a 1fe0fe01 increase 1 ,pdata 
+492b 60008005 store 1 ,mem_le_conn_rcv 
+492c 20404b51 call le_acknowledge 
+492d 7854fc00 disable master 
+492e 20600000 rtn 
+
+le_master_disconn:
+492f 2040495b call le_disconnect 
+4930 7854fc00 disable master 
+4931 20600000 rtn 
+
+le_slave_dispatch:
+4932 79200025 set1 mark_ext_patch ,mark 
+4933 44824020 bpatch patch20_4 ,mem_patch20 
+4934 20407acf call sp_calc_sequence_256 
+4935 204052a9 call le_secure_connect_sm 
+4936 78577c00 disable attempt 
+4937 20405170 call le_supervision_update 
+4938 2021495b branch le_slave_disconn ,positive 
+4939 20403d45 call check_ble_disabled 
+493a 204049c4 call le_setup 
+493b 20404a20 call le_receive_slave 
+493c 242c494f nbranch le_slave_unsync ,sync 
+493d 20404968 call le_got_first_packet 
+493e 2036c940 branch le_slave_match ,match 
+493f 20204949 branch le_slave_transmit_last 
+
+le_slave_match:
+4940 79200025 set1 mark_ext_patch ,mark 
+4941 4482c020 bpatch patch20_5 ,mem_patch20 
+4942 20404968 call le_got_first_packet 
+4943 20404b51 call le_acknowledge 
+4944 20404bd8 call le_prepare_tx 
+4945 68008302 fetch 1 ,mem_le_rxbuf 
+4946 c2824955 bbit1 md ,le_slave_more_data 
+4947 20404bd0 call le_xtype_fifo_is_empty 
+4948 243a4955 nbranch le_slave_more_data ,blank 
+
+le_slave_transmit_last:
+4949 79200025 set1 mark_ext_patch ,mark 
+494a 44834020 bpatch patch20_6 ,mem_patch20 
+494b 20404a63 call le_transmit_norx 
+
+le_slave_cont:
+494c 20407d9e call check_51cmd 
+494d 68008385 fetch 1 ,mem_le_op 
+494e c281c95b bbit1 op_disconn ,le_slave_disconn 
+
+le_slave_unsync:
+494f 79200025 set1 mark_ext_patch ,mark 
+4950 4483c020 bpatch patch20_7 ,mem_patch20 
+4951 20405287 call le_lpm_set_mult 
+4952 20404b43 call le_update_channel_map 
+4953 20404b22 call le_update_param 
+4954 202038d1 branch calc_clke_offset 
+
+le_slave_more_data:
+4955 79200025 set1 mark_ext_patch ,mark 
+4956 44844021 bpatch patch21_0 ,mem_patch21 
+4957 78377c00 enable attempt 
+4958 20404a5a call le_transmit_receive_sifs 
+4959 2036c940 branch le_slave_match ,match 
+495a 2020494c branch le_slave_cont 
+
+le_slave_disconn:
+
+le_disconnect:
+495b 79200025 set1 mark_ext_patch ,mark 
+495c 4484c021 bpatch patch21_1 ,mem_patch21 
+
+le_disconnect0:
+495d 20404962 call le_clear_connection_info 
+495e 20403e17 call app_disconn_reason_collect_ble 
+495f 20407a96 call sp_initialize_256 
+4960 7009bd15 jam bt_evt_le_disconnected ,mem_fifo_temp 
+4961 20207d86 branch ui_ipc_send_event 
+
+le_clear_connection_info:
+4962 70037800 jam 0 ,mem_le_conn_handle 
+4963 70036300 jam lemode_idle ,mem_le_mode 
+4964 70036200 jam 0 ,mem_le_state 
+4965 70456b00 jam flag_le_enc_null ,mem_le_enc_state 
+4966 70456a00 jam flag_le_pairing_null ,mem_le_pairing_state 
+4967 20600000 rtn 
+
+le_got_first_packet:
+4968 79200025 set1 mark_ext_patch ,mark 
+4969 44854021 bpatch patch21_2 ,mem_patch21 
+496a 68008005 fetch 1 ,mem_le_conn_rcv 
+496b 1fe0fe01 increase 1 ,pdata 
+496c 60008005 store 1 ,mem_le_conn_rcv 
+496d 68008362 fetch 1 ,mem_le_state 
+496e c3818000 rtnbit1 lestate_got_first_packet 
+496f 79207e03 set1 lestate_got_first_packet 
+4970 60008362 store 1 ,mem_le_state 
+4971 68014561 fetch 2 ,mem_le_init_superto 
+4972 60010390 store 2 ,mem_le_superto 
+4973 58000000 setarg 0 
+4974 60024596 store 4 ,mem_le_transmit_window 
+4975 20600000 rtn 
+
+le_enable:
+4976 79200025 set1 mark_ext_patch ,mark 
+4977 4485c021 bpatch patch21_3 ,mem_patch21 
+4978 70890f36 hjam 0x36 ,0x90f 
+4979 70890b5f hjam 0x5f ,0x90b 
+497a 783b7c00 enable le 
+497b 70891407 hjam 7 ,rfen_ulp 
+497c 20203d45 branch check_ble_disabled 
+
+le_disable:
+497d 79200025 set1 mark_ext_patch ,mark 
+497e 44864021 bpatch patch21_4 ,mem_patch21 
+497f 70890f2e hjam 0x2e ,0x90f 
+4980 70890bff hjam 0xff ,0x90b 
+4981 785b7c00 disable le 
+4982 70891403 hjam 3 ,rfen_ulp 
+4983 db600000 arg 0 ,stop_watch 
+4984 20600000 rtn 
+
+le_prep:
+4985 7844fc00 disable enable_crc 
+4986 7843fc00 disable enable_white 
+4987 6801838a fetch 3 ,mem_le_crcinit 
+4988 98001e00 iforce crc24_init 
+4989 68008016 fetch 1 ,mem_le_ch_mapped 
+498a 1fed8400 reverse pdata ,temp 
+498b 79200401 set1 1 ,temp 
+498c 18431c00 rshift temp ,white_init 
+498d 20600000 rtn 
+
+lerx_setfreq:
+498e 20404996 call le_setfreq 
+498f 204039b9 call set_freq_rx 
+4990 58000500 setarg param_pll_setup 
+4991 20403b35 call sleep 
+4992 202039bf branch rf_rx_enable 
+
+letx_setfreq:
+4993 2036b9d0 branch txon ,match 
+
+letx_setfreq0:
+4994 20404996 call le_setfreq 
+4995 202039c9 branch set_freq_tx 
+
+le_setfreq:
+4996 79200025 set1 mark_ext_patch ,mark 
+4997 4486c021 bpatch patch21_5 ,mem_patch21 
+4998 204039b1 call set_sync_on 
+4999 680083b0 fetch 1 ,mem_le_testtype 
+499a 243a49aa nbranch le_ctf_test ,blank 
+499b 68008016 fetch 1 ,mem_le_ch_mapped 
+499c 1fe67c24 sub pdata ,36 ,null 
+499d 202149a4 branch le_ctf_normal ,positive 
+499e 18000400 force 0 ,temp 
+499f c1128000 rtneq 37 
+49a0 18000418 force 24 ,temp 
+49a1 c1130000 rtneq 38 
+49a2 1800044e force 78 ,temp 
+49a3 20600000 rtn 
+
+le_ctf_normal:
+49a4 1fe67c0a sub pdata ,10 ,null 
+49a5 202149a7 branch le_ctf_low ,positive 
+49a6 1fe0fe01 increase 1 ,pdata 
+
+le_ctf_low:
+49a7 1fe3fe00 lshift pdata ,pdata 
+49a8 1fe08402 add pdata ,2 ,temp 
+49a9 20600000 rtn 
+
+le_ctf_test:
+49aa 68008016 fetch 1 ,mem_le_ch_mapped 
+49ab 1fe38400 lshift pdata ,temp 
+49ac 20600000 rtn 
+
+le_sca_map:
+49ad d84001f4 arg 500 ,temp 
+49ae 207a0000 rtn blank 
+49af d84000fa arg 250 ,temp 
+49b0 c1008000 rtneq 1 
+49b1 d8400096 arg 150 ,temp 
+49b2 c1010000 rtneq 2 
+49b3 d8400064 arg 100 ,temp 
+49b4 c1018000 rtneq 3 
+49b5 d840004b arg 75 ,temp 
+49b6 c1020000 rtneq 4 
+49b7 d8400032 arg 50 ,temp 
+49b8 c1028000 rtneq 5 
+49b9 d8400028 arg 40 ,temp 
+49ba c1030000 rtneq 6 
+49bb d8400014 arg 20 ,temp 
+49bc 20600000 rtn 
+
+le_adv_access:
+49bd 588e89be setarg 0x8e89be 
+49be 1fed7e00 lshift8 pdata ,pdata 
+49bf 1fe1fed6 or_into 0xd6 ,pdata 
+49c0 98001200 iforce access 
+49c1 58555555 setarg 0x555555 
+49c2 6001838a store 3 ,mem_le_crcinit 
+49c3 20600000 rtn 
+
+le_setup:
+49c4 79200025 set1 mark_ext_patch ,mark 
+49c5 44874021 bpatch patch21_6 ,mem_patch21 
+49c6 78287c00 enable swfine 
+49c7 68020386 fetch 4 ,mem_le_access 
+49c8 98001200 iforce access 
+49c9 204049fb call le_map_channel 
+49ca 58000200 setarg 0x200 
+49cb 2034c9ce branch le_setup_master ,master 
+49cc 68010370 fetch 2 ,mem_le_receive_window 
+49cd 1fe37e00 rshift pdata ,pdata 
+
+le_setup_master:
+49ce d8400500 arg param_pll_setup ,temp 
+49cf 9840fe00 iadd temp ,pdata 
+49d0 20403abd call ahead_window 
+49d1 1b427e00 deposit clke 
+49d2 600303b5 store 6 ,mem_le_rxon_ts 
+49d3 20600000 rtn 
+
+le_next_adv_channel:
+49d4 79200025 set1 mark_ext_patch ,mark 
+49d5 4487c021 bpatch patch21_7 ,mem_patch21 
+49d6 68008016 fetch 1 ,mem_le_ch_mapped 
+49d7 1fe0fe01 increase 1 ,pdata 
+49d8 60008016 store 1 ,mem_le_ch_mapped 
+49d9 c1940000 rtnne 40 
+49da 70001625 jam 37 ,mem_le_ch_mapped 
+49db 20600000 rtn 
+
+le_context_nexthop:
+49dc 79200025 set1 mark_ext_patch ,mark 
+49dd 44884022 bpatch patch22_0 ,mem_patch22 
+49de 1a208c01 add rega ,coffset_mode ,contr 
+49df e8c08000 ifetch 1 ,contr 
+49e0 c4000000 rtnbit0 mode_le 
+49e1 1a208a1a add rega ,coffset_le_event_cnt ,contw 
+49e2 e8a10000 ifetch 2 ,contw 
+49e3 1fe0fe01 increase 1 ,pdata 
+49e4 e0a10000 istore 2 ,contw 
+49e5 1a208c19 add rega ,coffset_le_hop ,contr 
+49e6 e8c08000 ifetch 1 ,contr 
+49e7 1a208a18 add rega ,coffset_le_ch ,contw 
+49e8 e8a88000 ifetcht 1 ,contw 
+49e9 9840fe00 iadd temp ,pdata 
+49ea 1fe67c24 sub pdata ,36 ,null 
+49eb 202149ed branch le_nexthop_nowrap ,positive 
+49ec 1fe0ffdb increase -37 ,pdata 
+
+le_nexthop_nowrap:
+49ed e0a08000 istore 1 ,contw 
+49ee 20600000 rtn 
+
+le_calc_channel_map:
+49ef 79200025 set1 mark_ext_patch ,mark 
+49f0 4488c022 bpatch patch22_1 ,mem_patch22 
+49f1 68028392 fetch 5 ,mem_le_channel_map 
+49f2 18000400 force 0 ,temp 
+49f3 18007225 force 37 ,loopcnt 
+
+le_count_channels_loop:
+49f4 c30049f6 bbit0 0 ,le_count_channels_notused 
+49f5 18408401 increase 1 ,temp 
+
+le_count_channels_notused:
+49f6 1fe37e00 rshift pdata ,pdata 
+49f7 c20049f4 loop le_count_channels_loop 
+49f8 1840ffff add temp ,-1 ,pdata 
+49f9 60008384 store 1 ,mem_le_channels 
+49fa 20600000 rtn 
+
+le_map_channel:
+49fb 79200025 set1 mark_ext_patch ,mark 
+49fc 44894022 bpatch patch22_2 ,mem_patch22 
+49fd 6800837a fetch 1 ,mem_le_ch 
+49fe 98000e00 iforce queue 
+49ff 680a8392 fetcht 5 ,mem_le_channel_map 
+4a00 a84fffff qisolate1 temp 
+4a01 2020ca13 branch le_map_channel_end ,true 
+
+le_map_channel_next:
+4a02 79200025 set1 mark_ext_patch ,mark 
+4a03 4489c022 bpatch patch22_3 ,mem_patch22 
+4a04 68008384 fetch 1 ,mem_le_channels 
+4a05 98e67e00 isub queue ,pdata 
+4a06 20214a09 branch le_map_channel_cont ,positive 
+4a07 1fe60fff sub pdata ,-1 ,queue 
+4a08 20204a02 branch le_map_channel_next 
+
+le_map_channel_cont:
+4a09 18e27200 copy queue ,loopcnt 
+4a0a 18000e00 force 0 ,queue 
+
+le_map_channel_loop:
+4a0b a84fffff qisolate1 temp 
+4a0c 2020ca0e branch le_map_channel_skip ,true 
+4a0d 1f20f201 increase 1 ,loopcnt 
+
+le_map_channel_skip:
+4a0e 1f227e00 deposit loopcnt 
+4a0f 203a4a13 branch le_map_channel_end ,blank 
+4a10 18e08e01 increase 1 ,queue 
+4a11 1f20f3ff increase -1 ,loopcnt 
+4a12 20204a0b branch le_map_channel_loop 
+
+le_map_channel_end:
+4a13 18e27e00 deposit queue 
+4a14 60008016 store 1 ,mem_le_ch_mapped 
+4a15 20600000 rtn 
+
+le_wait_tx:
+4a16 2034ca19 branch le_wait_master ,master 
+4a17 37c18200 until null ,timeout 
+4a18 20600000 rtn 
+
+le_wait_master:
+4a19 d9600ea0 arg 0xea0 ,timeup 
+4a1a 34730200 until clkn_rt ,meet 
+4a1b 20600000 rtn 
+
+le_receive_adv:
+4a1c 78487c00 disable swfine 
+4a1d 680143fc fetch 2 ,mem_le_scan_window 
+4a1e 1fe21600 copy pdata ,timeup 
+4a1f 20204a26 branch le_receive_packet 
+
+le_receive_slave:
+4a20 79200025 set1 mark_ext_patch ,mark 
+4a21 448a4022 bpatch patch22_4 ,mem_patch22 
+4a22 78287c00 enable swfine 
+4a23 68010370 fetch 2 ,mem_le_receive_window 
+4a24 680a4596 fetcht 4 ,mem_le_transmit_window 
+4a25 98409600 iadd temp ,timeup 
+
+le_receive_packet:
+4a26 2040498e call lerx_setfreq 
+
+le_receive_rxon:
+4a27 79200025 set1 mark_ext_patch ,mark 
+4a28 448ac022 bpatch patch22_5 ,mem_patch22 
+4a29 20404985 call le_prep 
+4a2a 7856fc00 disable match 
+4a2b 7826fc00 enable decode_fec0 
+4a2c 7830fc00 enable is_rx 
+4a2d 78507c00 disable is_tx 
+4a2e 19623600 copy timeup ,stop_watch 
+4a2f 37c18400 correlate null ,timeout 
+4a30 20374a33 branch le_receive_on_attempt ,attempt 
+4a31 1b420400 copy clke ,temp 
+4a32 600b0099 storet 6 ,mem_sync_clke 
+
+le_receive_on_attempt:
+4a33 242c36c6 nbranch end_of_packet ,sync 
+4a34 20374a3a branch le_receive_skip ,attempt 
+4a35 dd2001e0 arg param_clke_cal_le ,clke_rt 
+4a36 1c225000 copy bt_clk ,clke_bt 
+4a37 68008362 fetch 1 ,mem_le_state 
+4a38 c301ca3a bbit0 lestate_got_first_packet ,le_receive_skip 
+4a39 2055bbed call lpm_adjust_clk ,wake 
+
+le_receive_skip:
+4a3a 79200025 set1 mark_ext_patch ,mark 
+4a3b 448b4022 bpatch patch22_6 ,mem_patch22 
+4a3c 20403a50 call save_rssi 
+4a3d 7823fc00 enable enable_white 
+4a3e 7824fc00 enable enable_crc 
+4a3f 09800008 parse demod ,bucket ,8 
+4a40 19897e00 rshift3 pwindow ,pdata 
+4a41 60008302 store 1 ,mem_le_rxbuf 
+4a42 09800008 parse demod ,bucket ,8 
+4a43 19897e00 rshift3 pwindow ,pdata 
+4a44 e0a08000 istore 1 ,contw 
+4a45 1fe1723f and pdata ,0x3f ,loopcnt 
+4a46 2022ca4b branch lerx_nopayload ,zero 
+
+lerx_loop:
+4a47 09800008 parse demod ,bucket ,8 
+4a48 19897e00 rshift3 pwindow ,pdata 
+4a49 e0a08000 istore 1 ,contw 
+4a4a c2004a47 loop lerx_loop 
+
+lerx_nopayload:
+4a4b 79200025 set1 mark_ext_patch ,mark 
+4a4c 448bc022 bpatch patch22_7 ,mem_patch22 
+4a4d 09800018 parse demod ,bucket ,24 
+4a4e 78287c00 enable swfine 
+4a4f db600664 arg param_sifs ,stop_watch 
+4a50 1fef7e00 rshift32 pdata ,pdata 
+4a51 1ff17e00 rshift16 pdata ,pdata 
+4a52 e0a18000 istore 3 ,contw 
+4a53 202336c6 branch end_of_packet ,crc_failed 
+4a54 7836fc00 enable match 
+4a55 68008017 fetch 1 ,mem_last_freq 
+4a56 1fe0a200 add pdata ,0 ,rega 
+4a57 20403a13 call rf_write_freq 
+4a58 7846fc00 disable decode_fec0 
+4a59 202039b1 branch set_sync_on 
+
+le_transmit_receive_sifs:
+4a5a 79200025 set1 mark_ext_patch ,mark 
+4a5b 448c4023 bpatch patch23_0 ,mem_patch23 
+4a5c 20404a65 call le_transmit 
+4a5d 68088017 fetcht 1 ,mem_last_freq 
+4a5e 204039b9 call set_freq_rx 
+4a5f 204039bf call rf_rx_enable 
+4a60 78287c00 enable swfine 
+4a61 d960157c arg 5500 ,timeup 
+4a62 20204a27 branch le_receive_rxon 
+
+le_transmit_norx:
+4a63 20404a65 call le_transmit 
+4a64 202036c6 branch end_of_packet 
+
+le_transmit:
+4a65 79200025 set1 mark_ext_patch ,mark 
+4a66 448cc023 bpatch patch23_1 ,mem_patch23 
+4a67 20404985 call le_prep 
+4a68 20404993 call letx_setfreq 
+4a69 20404a6d call le_transmit0 
+4a6a 6800c132 fetch 1 ,mem_device_option 
+4a6b c0055d8e beq dvc_op_module ,module_le_transmit 
+4a6c 20600000 rtn 
+
+le_transmit0:
+4a6d 79202a00 set1 txgfsk ,radio_ctrl 
+4a6e 782efc00 enable encode_fec0 
+4a6f 78307c00 enable is_tx 
+4a70 7850fc00 disable is_rx 
+4a71 20404a16 call le_wait_tx 
+4a72 19317e00 rshift16 access ,pdata 
+4a73 1fecfe00 rshift8 pdata ,pdata 
+4a74 1ff1fe00 rshift4 pdata ,pdata 
+4a75 08008628 inject mod ,40 
+4a76 7823fc00 enable enable_white 
+4a77 7824fc00 enable enable_crc 
+4a78 79200025 set1 mark_ext_patch ,mark 
+4a79 448d4023 bpatch patch23_2 ,mem_patch23 
+4a7a 6800c465 fetch 1 ,mem_le_txheader 
+4a7b 08008608 inject mod ,8 
+4a7c e8c08000 ifetch 1 ,contr 
+4a7d 1fe1723f and pdata ,0x3f ,loopcnt 
+4a7e 08008608 inject mod ,8 
+4a7f 2022ca83 branch letr_nopayload ,zero 
+
+letr_loop:
+4a80 e8c08000 ifetch 1 ,contr 
+4a81 08008608 inject mod ,8 
+4a82 c2004a80 loop letr_loop 
+
+letr_nopayload:
+4a83 78247c00 enable enable_parity 
+4a84 08008618 inject mod ,24 
+4a85 78447c00 disable enable_parity 
+4a86 37d38200 until null ,tx_clear 
+4a87 20000064 nop 100 
+4a88 784efc00 disable encode_fec0 
+4a89 20600000 rtn 
+
+le_send_adv_ind:
+4a8a 79200025 set1 mark_ext_patch ,mark 
+4a8b 448dc023 bpatch patch23_3 ,mem_patch23 
+4a8c 6800c520 fetch 1 ,mem_le_adv_type 
+4a8d c000ca9b beq adv_direct_ind ,le_send_adv_direct_ind 
+4a8e 6800c521 fetch 1 ,mem_le_adv_own_addr_type 
+4a8f 1ff27e00 lshift4 pdata ,pdata 
+4a90 1febfe00 lshift2 pdata ,pdata 
+4a91 6000c465 store 1 ,mem_le_txheader 
+4a92 6808c400 fetcht 1 ,mem_le_adv_data_len 
+4a93 1840fe06 add temp ,6 ,pdata 
+4a94 6000c466 store 1 ,mem_le_txlen 
+4a95 6803453e fetch 6 ,mem_le_lap 
+4a96 60034467 store 6 ,mem_le_txpayload 
+4a97 18427200 copy temp ,loopcnt 
+4a98 d8c04401 arg mem_le_adv_data ,contr 
+4a99 20407ec0 call memcpy_fast 
+4a9a 20204aab branch le_send_adv_transmit 
+
+le_send_adv_direct_ind:
+4a9b 680944f8 fetcht 2 ,mem_le_notify_handle 
+4a9c 20404f6a call le_att_check_notification_enable 
+4a9d 1a220a00 copy rega ,contw 
+4a9e 58000001 setarg 1 
+4a9f e0a08000 istore 1 ,contw 
+4aa0 6800c522 fetch 1 ,mem_le_adv_direct_addr_type 
+4aa1 1ff27e00 lshift4 pdata ,pdata 
+4aa2 1febfe00 lshift2 pdata ,pdata 
+4aa3 1fe0fe01 increase 1 ,pdata 
+4aa4 6000c465 store 1 ,mem_le_txheader 
+4aa5 5800000c setarg 12 
+4aa6 6000c466 store 1 ,mem_le_txlen 
+4aa7 6803453e fetch 6 ,mem_le_lap 
+4aa8 60034467 store 6 ,mem_le_txpayload 
+4aa9 68034273 fetch 6 ,mem_hci_plap 
+4aaa e0a30000 istore 6 ,contw 
+
+le_send_adv_transmit:
+4aab 79200025 set1 mark_ext_patch ,mark 
+4aac 448e4023 bpatch patch23_4 ,mem_patch23 
+4aad 68008000 fetch 1 ,mem_le_adv_transmit 
+4aae 1fe0fe01 increase 1 ,pdata 
+4aaf 60008000 store 1 ,mem_le_adv_transmit 
+4ab0 db600708 arg 1800 ,stop_watch 
+4ab1 7856fc00 disable match 
+4ab2 20204a5a branch le_transmit_receive_sifs 
+
+le_send_scan_request:
+4ab3 79200025 set1 mark_ext_patch ,mark 
+4ab4 448ec023 bpatch patch23_5 ,mem_patch23 
+4ab5 6800c53b fetch 1 ,mem_le_scan_type 
+4ab6 c1808000 rtnne le_scan_type_active ,pdata 
+4ab7 68008000 fetch 1 ,mem_le_adv_transmit 
+4ab8 1fe0fe01 increase 1 ,pdata 
+4ab9 60008000 store 1 ,mem_le_adv_transmit 
+4aba d8400c03 arg 0x0c03 ,temp 
+4abb 6800c53c fetch 1 ,mem_le_scan_own_addr_type 
+4abc 7d3a0406 nsetflag blank ,le_sender_addr_bit ,temp 
+4abd 1a227e00 copy rega ,pdata 
+4abe 7d3a0407 nsetflag blank ,le_receiver_addr_bit ,temp 
+4abf 60094465 storet 2 ,mem_le_txheader 
+4ac0 6803453e fetch 6 ,mem_le_lap 
+4ac1 e0a30000 istore 6 ,contw 
+4ac2 68030372 fetch 6 ,mem_le_plap 
+4ac3 e0a30000 istore 6 ,contw 
+4ac4 20204a5a branch le_transmit_receive_sifs 
+
+le_send_scan_response:
+4ac5 79200025 set1 mark_ext_patch ,mark 
+4ac6 448f4023 bpatch patch23_6 ,mem_patch23 
+4ac7 d8400004 arg scan_rsp ,temp 
+4ac8 6800c521 fetch 1 ,mem_le_adv_own_addr_type 
+4ac9 7d3a0406 nsetflag blank ,le_sender_addr_bit ,temp 
+4aca 6008c465 storet 1 ,mem_le_txheader 
+4acb 6808c420 fetcht 1 ,mem_le_scan_data_len 
+4acc 1840fe06 add temp ,6 ,pdata 
+4acd 6000c466 store 1 ,mem_le_txlen 
+4ace 6803453e fetch 6 ,mem_le_lap 
+4acf 60034467 store 6 ,mem_le_txpayload 
+4ad0 d8c04421 arg mem_le_scan_data ,contr 
+4ad1 18427200 copy temp ,loopcnt 
+4ad2 20407ec0 call memcpy_fast 
+4ad3 20204a63 branch le_transmit_norx 
+
+le_connect_request:
+4ad4 79200025 set1 mark_ext_patch ,mark 
+4ad5 448fc023 bpatch patch23_7 ,mem_patch23 
+4ad6 18007fff force -1 ,pdata 
+4ad7 38080001 setsect 2 ,1 
+4ad8 60028392 store 5 ,mem_le_channel_map 
+4ad9 204049ef call le_calc_channel_map 
+4ada 18007204 force 4 ,loopcnt 
+4adb d8a00386 arg mem_le_access ,contw 
+4adc 20405918 call generate_random_loop 
+4add 68014539 fetch 2 ,mem_le_conn_superto 
+4ade 60010390 store 2 ,mem_le_superto 
+
+le_con_req_hop_retry:
+4adf 180a7e00 random pdata 
+4ae0 1fe17e0f and_into 0xf ,pdata 
+4ae1 1fe67c04 sub pdata ,4 ,null 
+4ae2 20214adf branch le_con_req_hop_retry ,positive 
+4ae3 6000837b store 1 ,mem_le_hop 
+4ae4 6000860a store 1 ,mem_tmp1 
+4ae5 79200025 set1 mark_ext_patch ,mark 
+4ae6 44904024 bpatch patch24_0 ,mem_patch24 
+4ae7 680943f7 fetcht 2 ,mem_le_conn_interval 
+4ae8 60090364 storet 2 ,mem_le_tsniff 
+4ae9 18422600 copy temp ,regc 
+4aea 1c40fe07 add clkn_bt ,7 ,pdata 
+4aeb 9a66fc00 idiv regc 
+4aec 20407f53 call wait_div_end 
+4aed 18072200 remainder rega 
+4aee 9a267e00 isub rega ,pdata 
+4aef 9a60fe00 iadd regc ,pdata 
+4af0 680943f5 fetcht 2 ,mem_le_dsniff 
+4af1 9840fe00 iadd temp ,pdata 
+4af2 60020366 store 4 ,mem_le_anchor 
+4af3 9c462200 isub clkn_bt ,rega 
+4af4 1a20a3fa increase -6 ,rega 
+4af5 da402205 arg 0x2205 ,regb 
+4af6 6800c532 fetch 1 ,mem_le_conn_own_addr_type 
+4af7 7d3a2406 nsetflag blank ,le_sender_addr_bit ,regb 
+4af8 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+4af9 7d3a2407 nsetflag blank ,le_receiver_addr_bit ,regb 
+4afa 1a427e00 copy regb ,pdata 
+4afb 60014465 store 2 ,mem_le_txheader 
+4afc 6803453e fetch 6 ,mem_le_lap 
+4afd e0a30000 istore 6 ,contw 
+4afe 68030372 fetch 6 ,mem_le_plap 
+4aff e0a30000 istore 6 ,contw 
+4b00 68020386 fetch 4 ,mem_le_access 
+4b01 e0a20000 istore 4 ,contw 
+4b02 180a7e00 random pdata 
+4b03 e0a10000 istore 2 ,contw 
+4b04 180a7e00 random pdata 
+4b05 e0a08000 istore 1 ,contw 
+4b06 18007e02 force 2 ,pdata 
+4b07 e0a08000 istore 1 ,contw 
+4b08 1a2b7e00 rshift2 rega ,pdata 
+4b09 e0a10000 istore 2 ,contw 
+4b0a 1a6b7e00 rshift2 regc ,pdata 
+4b0b e0a10000 istore 2 ,contw 
+4b0c 79200025 set1 mark_ext_patch ,mark 
+4b0d 4490c024 bpatch patch24_1 ,mem_patch24 
+4b0e 68014537 fetch 2 ,mem_le_conn_latency 
+4b0f e0a10000 istore 2 ,contw 
+4b10 68014539 fetch 2 ,mem_le_conn_superto 
+4b11 e0a10000 istore 2 ,contw 
+4b12 68028392 fetch 5 ,mem_le_channel_map 
+4b13 e0a28000 istore 5 ,contw 
+4b14 6800837b fetch 1 ,mem_le_hop 
+4b15 d84000a0 arg param_le_sca ,temp 
+4b16 9841fe00 ior temp ,pdata 
+4b17 e0a08000 istore 1 ,contw 
+4b18 20404a63 call le_transmit_norx 
+4b19 58004465 setarg mem_le_txheader 
+4b1a 1fe08c12 add pdata ,18 ,contr 
+4b1b e8c18000 ifetch 3 ,contr 
+4b1c 6001838a store 3 ,mem_le_crcinit 
+4b1d 20600000 rtn 
+
+le_init_adv:
+4b1e 79200025 set1 mark_ext_patch ,mark 
+4b1f 44914024 bpatch patch24_2 ,mem_patch24 
+4b20 7854fc00 disable master 
+4b21 202049bd branch le_adv_access 
+
+le_update_param:
+4b22 68008362 fetch 1 ,mem_le_state 
+4b23 c4028000 rtnbit0 lestate_update_param 
+4b24 6801037c fetch 2 ,mem_le_event_count 
+4b25 68090382 fetcht 2 ,mem_le_instant 
+4b26 98467e00 isub temp ,pdata 
+4b27 24610000 nrtn positive 
+4b28 79200025 set1 mark_ext_patch ,mark 
+4b29 4491c024 bpatch patch24_3 ,mem_patch24 
+4b2a 6800c132 fetch 1 ,mem_device_option 
+4b2b c084cb2d bne dvc_op_shutter ,le_update_param_common 
+4b2c 70413101 jam 1 ,mem_lpm_mode 
+
+le_update_param_common:
+4b2d 68008362 fetch 1 ,mem_le_state 
+4b2e 793ffe05 set0 lestate_update_param ,pdata 
+4b2f 793ffe03 set0 lestate_got_first_packet ,pdata 
+4b30 60008362 store 1 ,mem_le_state 
+4b31 68020366 fetch 4 ,mem_le_anchor 
+4b32 68090364 fetcht 2 ,mem_le_tsniff 
+4b33 98462200 isub temp ,rega 
+4b34 79200025 set1 mark_ext_patch ,mark 
+4b35 44924024 bpatch patch24_4 ,mem_patch24 
+4b36 6800c45b fetch 1 ,mem_le_new_param 
+4b37 6000838d store 1 ,mem_le_window_size 
+4b38 e8c90000 ifetcht 2 ,contr 
+4b39 e8c10000 ifetch 2 ,contr 
+4b3a 1febfe00 lshift2 pdata ,pdata 
+4b3b 60010364 store 2 ,mem_le_tsniff 
+4b3c 184b8400 lshift2 temp ,temp 
+4b3d 9840fe00 iadd temp ,pdata 
+4b3e e8ca0000 ifetcht 4 ,contr 
+4b3f 600a038e storet 4 ,mem_le_slave_latency 
+4b40 9a20fe00 iadd rega ,pdata 
+4b41 60020366 store 4 ,mem_le_anchor 
+4b42 20205199 branch le_receive_window_size 
+
+le_update_channel_map:
+4b43 79200025 set1 mark_ext_patch ,mark 
+4b44 4492c024 bpatch patch24_5 ,mem_patch24 
+4b45 68008362 fetch 1 ,mem_le_state 
+4b46 c4030000 rtnbit0 lestate_update_map 
+4b47 6801037c fetch 2 ,mem_le_event_count 
+4b48 68090382 fetcht 2 ,mem_le_instant 
+4b49 98467e00 isub temp ,pdata 
+4b4a 24610000 nrtn positive 
+4b4b 68008362 fetch 1 ,mem_le_state 
+4b4c 793ffe06 set0 lestate_update_map ,pdata 
+4b4d 60008362 store 1 ,mem_le_state 
+4b4e 6802c456 fetch 5 ,mem_le_new_map 
+4b4f 60028392 store 5 ,mem_le_channel_map 
+4b50 202049ef branch le_calc_channel_map 
+
+le_acknowledge:
+4b51 79200025 set1 mark_ext_patch ,mark 
+4b52 44934024 bpatch patch24_6 ,mem_patch24 
+4b53 20405179 call le_supervision_flush 
+4b54 20404b66 call le_check_wak 
+4b55 68008302 fetch 1 ,mem_le_rxbuf 
+4b56 1fe37e00 rshift pdata ,pdata 
+4b57 9842fe00 ixor temp ,pdata 
+4b58 2feffe02 isolate1 nesn ,pdata 
+4b59 7920800f setflag true ,mark_old_packet ,mark 
+4b5a 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4b5b 203a4b61 branch le_ack_unenc ,blank 
+4b5c 68008362 fetch 1 ,mem_le_state 
+4b5d c3024b61 bbit0 lestate_encryption ,le_ack_unenc 
+4b5e 204071b6 call load_sk 
+4b5f 20407122 call le_decrypt 
+4b60 247a0000 nrtn blank 
+
+le_ack_unenc:
+4b61 c6078000 rtnmark1 mark_old_packet 
+4b62 68088379 fetcht 1 ,mem_le_arq 
+4b63 79400402 setflip nesn ,temp 
+4b64 60088379 storet 1 ,mem_le_arq 
+4b65 20204fa5 branch le_parse 
+
+le_check_wak:
+4b66 79200025 set1 mark_ext_patch ,mark 
+4b67 4493c024 bpatch patch24_7 ,mem_patch24 
+4b68 68088379 fetcht 1 ,mem_le_arq 
+4b69 284c0005 isolate0 wak ,temp 
+4b6a 20608000 rtn true 
+4b6b 68008302 fetch 1 ,mem_le_rxbuf 
+4b6c 1fe3fe00 lshift pdata ,pdata 
+4b6d 9842fe00 ixor temp ,pdata 
+4b6e c4018000 rtnbit0 sn 
+4b6f 793f8405 set0 wak ,temp 
+4b70 79400403 setflip sn ,temp 
+4b71 60088379 storet 1 ,mem_le_arq 
+4b72 28400603 compare 3 ,temp ,3 
+4b73 24608000 nrtn true 
+4b74 6800c467 fetch 1 ,mem_le_txpayload 
+4b75 c002cb79 beq ll_start_enc_req ,le_set_enc 
+4b76 6800c56b fetch 1 ,mem_le_enc_state 
+4b77 c0014b7d beq flag_le_enc_pause ,le_clear_enc 
+4b78 20600000 rtn 
+
+le_set_enc:
+4b79 68008362 fetch 1 ,mem_le_state 
+4b7a 79207e04 set1 lestate_encryption ,pdata 
+4b7b 60008362 store 1 ,mem_le_state 
+4b7c 20600000 rtn 
+
+le_clear_enc:
+4b7d 79200025 set1 mark_ext_patch ,mark 
+4b7e 44944025 bpatch patch25_0 ,mem_patch25 
+4b7f 70456b00 jam flag_le_enc_null ,mem_le_enc_state 
+4b80 dfe00000 arg 0 ,pdata 
+4b81 60024496 store 4 ,mem_le_last_mic 
+4b82 6002c48c store 5 ,mem_le_pcnt_tx 
+4b83 79207e27 set1 39 ,pdata 
+4b84 6002c491 store 5 ,mem_le_pcnt_rx 
+4b85 68008362 fetch 1 ,mem_le_state 
+4b86 793ffe04 set0 lestate_encryption ,pdata 
+4b87 60008362 store 1 ,mem_le_state 
+4b88 20600000 rtn 
+
+le_wait_adv:
+4b89 79200025 set1 mark_ext_patch ,mark 
+4b8a 4494c025 bpatch patch25_1 ,mem_patch25 
+4b8b 204049d4 call le_next_adv_channel 
+4b8c 20404a1c call le_receive_adv 
+4b8d 68008001 fetch 1 ,mem_le_adv_waitcnt 
+4b8e 1fe0fe01 increase 1 ,pdata 
+4b8f 60008001 store 1 ,mem_le_adv_waitcnt 
+4b90 20600000 rtn 
+
+le_scan:
+4b91 79200025 set1 mark_ext_patch ,mark 
+4b92 44954025 bpatch patch25_2 ,mem_patch25 
+4b93 6800c3f9 fetch 1 ,mem_le_scan_enable 
+4b94 c1808000 rtnne le_scan_enable 
+4b95 d8e00003 arg le_scan_interval_timer ,queue 
+4b96 20407ee2 call timer_check 
+4b97 247a0000 nrtn blank 
+4b98 680143fa fetch 2 ,mem_le_scan_interval 
+4b99 680943fc fetcht 2 ,mem_le_scan_window 
+4b9a 98467e00 isub temp ,pdata 
+4b9b d8e00003 arg le_scan_interval_timer ,queue 
+4b9c 20407ed4 call timer_init 
+4b9d 7854fc00 disable master 
+4b9e 20404b1e call le_init_adv 
+4b9f 20404b89 call le_wait_adv 
+4ba0 24768000 nrtn match 
+4ba1 79200025 set1 mark_ext_patch ,mark 
+4ba2 4495c025 bpatch patch25_3 ,mem_patch25 
+4ba3 68030304 fetch 6 ,mem_le_rxbuf + 2 
+4ba4 60030372 store 6 ,mem_le_plap 
+4ba5 68008002 fetch 1 ,mem_le_adv_rcv 
+4ba6 1fe0fe01 increase 1 ,pdata 
+4ba7 60008002 store 1 ,mem_le_adv_rcv 
+4ba8 20404bb4 call le_create_conn 
+4ba9 20748000 rtn master 
+4baa 20404ab3 call le_send_scan_request 
+4bab 24768000 nrtn match 
+4bac 79200025 set1 mark_ext_patch ,mark 
+4bad 44964025 bpatch patch25_4 ,mem_patch25 
+4bae 68008004 fetch 1 ,mem_le_scanrsp_rcv 
+4baf 1fe0fe01 increase 1 ,pdata 
+4bb0 60008004 store 1 ,mem_le_scanrsp_rcv 
+4bb1 6804830a fetch 9 ,mem_le_rxbuf + 8 
+4bb2 60048100 store 9 ,mem_tmp_buffer 
+4bb3 20600000 rtn 
+
+le_create_conn:
+4bb4 79200025 set1 mark_ext_patch ,mark 
+4bb5 4496c025 bpatch patch25_5 ,mem_patch25 
+4bb6 680083bf fetch 1 ,mem_cmd_le_create_conn 
+4bb7 c18d8000 rtnne hci_cmd_le_create_conn ,pdata 
+4bb8 68030372 fetch 6 ,mem_le_plap 
+4bb9 680b452c fetcht 6 ,mem_le_conn_peer_addr 
+4bba 98467c00 isub temp ,null 
+4bbb 24628000 nrtn zero 
+4bbc 2040327a call context_new 
+4bbd 24628000 nrtn zero 
+4bbe 20404ad4 call le_connect_request 
+4bbf 204048f5 call le_init_master 
+4bc0 79200025 set1 mark_ext_patch ,mark 
+4bc1 44974025 bpatch patch25_6 ,mem_patch25 
+4bc2 70427100 jam 0 ,mem_hci_cmd 
+4bc3 70039900 jam 0 ,mem_le_peer_sca 
+4bc4 7043f900 jam 0 ,mem_le_scan_enable 
+4bc5 7003bf00 jam 0 ,mem_cmd_le_create_conn 
+4bc6 7009bd2c jam xt_ll_version_ind ,mem_fifo_temp 
+4bc7 20404bd6 call le_xtype_fifo_in 
+4bc8 20203260 branch context_save 
+
+le_scan_check_sender_addr_type:
+4bc9 da200001 arg 1 ,rega 
+4bca 68008302 fetch 1 ,mem_le_rxbuf 
+4bcb c3830000 rtnbit1 le_sender_addr_bit 
+4bcc da200000 arg 0 ,rega 
+4bcd 20600000 rtn 
+
+le_xtype_fifo_count:
+4bce d8c04544 arg mem_le_xtype_fifo ,contr 
+4bcf 20207fa8 branch fifo_content_count 
+
+le_xtype_fifo_is_empty:
+4bd0 da204544 arg mem_le_xtype_fifo ,rega 
+4bd1 20207fa2 branch fifo_is_empty 
+
+le_xtype_fifo_is_full:
+4bd2 da204544 arg mem_le_xtype_fifo ,rega 
+4bd3 20207fa4 branch fifo_is_full 
+
+le_xtype_fifo_is_near_full:
+4bd4 da204544 arg mem_le_xtype_fifo ,rega 
+4bd5 20207fa6 branch fifo_is_near_full 
+
+le_xtype_fifo_in:
+4bd6 da204544 arg mem_le_xtype_fifo ,rega 
+4bd7 20207f88 branch fifo_in 
+
+le_prepare_tx:
+4bd8 79200025 set1 mark_ext_patch ,mark 
+4bd9 4497c025 bpatch patch25_7 ,mem_patch25 
+4bda 68008379 fetch 1 ,mem_le_arq 
+4bdb c3828000 rtnbit1 wak 
+4bdc 6800c132 fetch 1 ,mem_device_option 
+4bdd c004cbe2 beq dvc_op_shutter ,le_prepare_tx_shutter 
+
+le_prepare_tx_1:
+4bde da204544 arg mem_le_xtype_fifo ,rega 
+4bdf 20407f95 call fifo_out 
+4be0 243a4bf1 nbranch le_prepare_tx_cmd ,blank 
+4be1 20204f87 branch le_send_empty 
+
+le_prepare_tx_shutter:
+4be2 6800c8c8 fetch 1 ,mem_empty_count 
+4be3 243a4be9 nbranch le_send_empty_shutter ,blank 
+4be4 68008362 fetch 1 ,mem_le_state 
+4be5 c3024bed bbit0 lestate_encryption ,le_tx_4 
+4be6 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4be7 203a4bed branch le_tx_4 ,blank 
+4be8 20204f87 branch le_send_empty 
+
+le_send_empty_shutter:
+4be9 6800c8c8 fetch 1 ,mem_empty_count 
+4bea 1fe0ffff increase -1 ,pdata 
+4beb 6000c8c8 store 1 ,mem_empty_count 
+4bec 20204f87 branch le_send_empty 
+
+le_tx_4:
+4bed 6800c56a fetch 1 ,mem_le_pairing_state 
+4bee c0814bf0 bne flag_le_pairing_after_auth ,in_le_tx_4 
+4bef 7048c803 jam 3 ,mem_empty_count 
+
+in_le_tx_4:
+4bf0 20204bde branch le_prepare_tx_1 
+
+le_prepare_tx_cmd:
+4bf1 1fe20400 copy pdata ,temp 
+4bf2 79200025 set1 mark_ext_patch ,mark 
+4bf3 44984026 bpatch patch26_0 ,mem_patch26 
+4bf4 18427e00 copy temp ,pdata 
+4bf5 c302cc0d bbit0 5 ,le_prepare_l2cap 
+4bf6 18000203 force 3 ,type 
+4bf7 793ffe05 set0 5 ,pdata 
+4bf8 6000c467 store 1 ,mem_le_txpayload 
+4bf9 79200025 set1 mark_ext_patch ,mark 
+4bfa 4498c026 bpatch patch26_1 ,mem_patch26 
+
+le_prepare_tx_ll:
+4bfb 6800c467 fetch 1 ,mem_le_txpayload 
+4bfc c0004c54 beq ll_connection_update_req ,le_send_connection_update_req 
+4bfd c000cc56 beq ll_channel_map_req ,le_send_channel_map_req 
+4bfe c0014c58 beq ll_terminate_ind ,le_send_terminate_ind 
+4bff c001cc5a beq ll_enc_req ,le_send_enc_req 
+4c00 c0024c6b beq ll_enc_rsp ,le_send_enc_rsp 
+4c01 c002cc84 beq ll_start_enc_req ,le_send_start_enc_req 
+4c02 c0034c86 beq ll_start_enc_rsp ,le_send_start_enc_rsp 
+4c03 c003cc9c beq ll_unknown_rsp ,le_send_unknown_rsp 
+4c04 c0044ca0 beq ll_feature_req ,le_send_feature 
+4c05 c004cca0 beq ll_feature_rsp ,le_send_feature 
+4c06 c0054ca4 beq ll_pause_enc_req ,le_send_pause_enc_req 
+4c07 c005cca4 beq ll_pause_enc_rsp ,le_send_pause_enc_rsp 
+4c08 c0064ca6 beq ll_version_ind ,le_send_version_ind 
+4c09 c006ccaa beq ll_reject_ind ,le_send_reject_ind 
+4c0a c007ccae beq ll_connection_param_req ,le_send_conn_param_req 
+4c0b c009cca4 beq ll_ping_rsp ,le_send_ping_response 
+4c0c 20203b31 branch assert 
+
+le_prepare_l2cap:
+4c0d 70446a00 jam 0 ,mem_le_txcid + 1 
+4c0e 18000202 force 2 ,type 
+4c0f c3034c26 bbit0 6 ,le_prepare_att 
+4c10 c0294c26 beq attop_write_command ,le_prepare_att 
+4c11 c0694c26 beq attop_signed_write_command ,le_prepare_att 
+4c12 70446906 jam le_l2cap_cid_smp ,mem_le_txcid 
+4c13 793ffe06 set0 6 ,pdata 
+4c14 6000c46b store 1 ,mem_le_l2cap 
+4c15 79200025 set1 mark_ext_patch ,mark 
+4c16 44994026 bpatch patch26_2 ,mem_patch26 
+4c17 6800c46b fetch 1 ,mem_le_l2cap 
+
+le_prepare_smp0:
+4c18 c000ccbb beq smp_pairing_request ,le_send_smp_pairing_request 
+4c19 c0014cc3 beq smp_pairing_response ,le_send_smp_pairing_response 
+4c1a c001ccda beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+4c1b c0024ce8 beq smp_pairing_random ,le_send_smp_pairing_random 
+4c1c c002cced beq smp_pairing_failed ,le_send_smp_pairing_failed 
+4c1d c0034cf2 beq smp_encryption_information ,le_send_smp_encryption_information 
+4c1e c003cd10 beq smp_master_identification ,le_send_smp_master_identification 
+4c1f c0044d27 beq smp_identity_information ,le_send_smp_identity_information 
+4c20 c004cd2d beq smp_identity_address_information ,le_send_smp_identity_address_information 
+4c21 c0054d32 beq smp_signing_information ,le_send_smp_signing_information 
+4c22 c005cd35 beq smp_security_request ,le_send_smp_security_request 
+4c23 c0064d39 beq smp_pairing_public_key ,le_send_smp_pairing_public_key 
+4c24 c006cd64 beq smp_pairing_dhkey_check ,le_send_smp_pairing_dhkey_check 
+4c25 20203b31 branch assert 
+
+le_prepare_att:
+4c26 70446904 jam le_l2cap_cid_att ,mem_le_txcid 
+4c27 6000c46b store 1 ,mem_le_l2cap 
+4c28 79200025 set1 mark_ext_patch ,mark 
+4c29 4499c026 bpatch patch26_3 ,mem_patch26 
+4c2a 6800c46b fetch 1 ,mem_le_l2cap 
+4c2b c000cd6f beq attop_error_response ,le_send_att_error_response 
+4c2c c0014d75 beq attop_exchange_mtu_request ,le_send_att_exchange_mtu_req 
+4c2d c001cd75 beq attop_exchange_mtu_response ,le_send_att_exchange_mtu_rsp 
+4c2e c0024d78 beq attop_find_information_request ,le_send_att_find_information_request 
+4c2f c002cd7d beq attop_find_information_response ,le_send_att_find_information_response 
+4c30 c0034d93 beq attop_find_by_type_value_request ,le_send_att_find_by_type_value_request 
+4c31 c003cda7 beq attop_find_by_type_value_response ,le_send_att_find_by_type_value_response 
+4c32 c0044dec beq attop_read_by_type_request ,le_send_att_read_by_type_request 
+4c33 c004cdf4 beq attop_read_by_type_response ,le_send_att_read_by_type_response 
+4c34 c0054e58 beq attop_read_request ,le_send_att_read_request 
+4c35 c005ce60 beq attop_read_response ,le_send_att_read_response 
+4c36 c0064e77 beq attop_read_blob_request ,le_send_att_read_blob_request 
+4c37 c006ce7c beq attop_read_blob_response ,le_send_att_read_blob_response 
+4c38 c0074e8b beq attop_read_multiple_request ,le_send_att_read_multiple_request 
+4c39 c007ce92 beq attop_read_multiple_response ,le_send_att_read_multiple_response 
+4c3a c0084eb8 beq attop_read_by_group_type_request ,le_send_att_read_by_group_type_request 
+4c3b c008cec0 beq attop_read_by_group_type_response ,le_send_att_read_by_group_type_response 
+4c3c c0094f1e beq attop_write_request ,le_send_att_write_request 
+4c3d c009cf25 beq attop_write_response ,le_send_att_write_response 
+4c3e c00b4f27 beq attop_prepare_write_request ,le_send_att_prepare_write_request 
+4c3f c00bcf46 beq attop_prepare_write_response ,le_send_att_prepare_write_response 
+4c40 c00c4f66 beq attop_execute_write_request ,le_send_att_execute_write_request 
+4c41 c00ccf68 beq attop_execute_write_response ,le_send_att_execute_write_response 
+4c42 c00dcf77 beq attop_handle_value_notification ,le_send_att_handle_value_notification 
+4c43 c00ecf79 beq attop_handle_value_indication ,le_send_att_handle_value_indication 
+4c44 c00f4f7b beq attop_handle_value_confirmation ,le_send_att_handle_value_confirmation 
+4c45 c0294f7d beq attop_write_command ,le_send_att_write_command 
+4c46 c0694f7f beq attop_signed_write_command ,le_send_att_signed_write_command 
+4c47 c04f4c4b beq empty_le_data_pre ,le_send_empty_le_data_pre 
+4c48 c04fcc4d beq empty_le_data ,le_send_empty_le_data 
+4c49 c00fcf29 beq attop_continue ,le_send_att_continue 
+4c4a 20203b31 branch assert 
+
+le_send_empty_le_data_pre:
+4c4b 7009bd10 jam attop_read_by_group_type_request ,mem_fifo_temp 
+4c4c 20404bd6 call le_xtype_fifo_in 
+
+le_send_empty_le_data:
+4c4d 58000011 setarg 0x0011 
+4c4e 60014465 store 2 ,mem_le_txheader 
+4c4f 68008379 fetch 1 ,mem_le_arq 
+4c50 79207e05 set1 wak ,pdata 
+4c51 60008379 store 1 ,mem_le_arq 
+4c52 7009bd12 jam attop_write_request ,mem_fifo_temp 
+4c53 20204bd6 branch le_xtype_fifo_in 
+
+le_send_connection_update_req:
+4c54 1800040c force 12 ,temp 
+4c55 20204f89 branch le_send_packet 
+
+le_send_channel_map_req:
+4c56 18000408 force 8 ,temp 
+4c57 20204f89 branch le_send_packet 
+
+le_send_terminate_ind:
+4c58 18000402 force 2 ,temp 
+4c59 20204f89 branch le_send_packet 
+
+le_send_enc_req:
+4c5a 18007e00 force 0 ,pdata 
+4c5b e0a40000 istore 8 ,contw 
+4c5c e0a10000 istore 2 ,contw 
+4c5d 18a20400 copy contw ,temp 
+4c5e d8a04551 arg mem_le_skdm ,contw 
+4c5f 18007208 force 8 ,loopcnt 
+4c60 20405918 call generate_random_loop 
+4c61 68044551 fetch 8 ,mem_le_skdm 
+4c62 e0440000 istore 8 ,temp 
+4c63 18a20400 copy contw ,temp 
+4c64 d8a0449a arg mem_le_ivm ,contw 
+4c65 18007204 force 4 ,loopcnt 
+4c66 20405918 call generate_random_loop 
+4c67 6802449a fetch 4 ,mem_le_ivm 
+4c68 e0420000 istore 4 ,temp 
+4c69 18000417 force 23 ,temp 
+4c6a 20204f89 branch le_send_packet 
+
+le_send_enc_rsp:
+4c6b 18a20400 copy contw ,temp 
+4c6c d8a04559 arg mem_le_skds ,contw 
+4c6d 18007208 force 8 ,loopcnt 
+4c6e 20405918 call generate_random_loop 
+4c6f 68044559 fetch 8 ,mem_le_skds 
+4c70 e0440000 istore 8 ,temp 
+4c71 18a20400 copy contw ,temp 
+4c72 d8a0449e arg mem_le_ivs ,contw 
+4c73 18007204 force 4 ,loopcnt 
+4c74 20405918 call generate_random_loop 
+4c75 6802449e fetch 4 ,mem_le_ivs 
+4c76 e0420000 istore 4 ,temp 
+4c77 204070c8 call generate_sk 
+4c78 6800c4b2 fetch 1 ,mem_ltk_exists 
+4c79 c0004c7e beq 0 ,le_ltk_lost 
+4c7a 7009bd25 jam xt_ll_start_enc_req ,mem_fifo_temp 
+4c7b 20404bd6 call le_xtype_fifo_in 
+4c7c 1800040d force 13 ,temp 
+4c7d 20204f89 branch le_send_packet 
+
+le_ltk_lost:
+4c7e 70456b00 jam flag_le_enc_null ,mem_le_enc_state 
+4c7f 7009bd2d jam xt_ll_reject_ind ,mem_fifo_temp 
+4c80 20404bd6 call le_xtype_fifo_in 
+4c81 20407e29 call check_51cmd_le_smp_sec_req 
+4c82 1800040d force 13 ,temp 
+4c83 20204f89 branch le_send_packet 
+
+le_send_start_enc_req:
+4c84 18000401 force 1 ,temp 
+4c85 20204f89 branch le_send_packet 
+
+le_send_start_enc_rsp:
+4c86 18000401 force 1 ,temp 
+4c87 2034cf89 branch le_send_packet ,master 
+4c88 6800c132 fetch 1 ,mem_device_option 
+4c89 c004cc92 beq dvc_op_shutter ,le_send_start_enc_rsp_shutter 
+4c8a 6800c56a fetch 1 ,mem_le_pairing_state 
+4c8b c0814c8f bne flag_le_pairing_after_auth ,le_send_start_enc_rsp_end 
+4c8c 7009bd46 jam xt_smp_encryption_information ,mem_fifo_temp 
+4c8d 20404bd6 call le_xtype_fifo_in 
+4c8e 20204c90 branch le_send_start_enc_rsp_common 
+
+le_send_start_enc_rsp_end:
+4c8f 70456b03 jam flag_le_enc_end ,mem_le_enc_state 
+
+le_send_start_enc_rsp_common:
+4c90 18000401 force 1 ,temp 
+4c91 20204f89 branch le_send_packet 
+
+le_send_start_enc_rsp_shutter:
+4c92 70413101 jam 1 ,mem_lpm_mode 
+4c93 6800c56a fetch 1 ,mem_le_pairing_state 
+4c94 c0814c97 bne flag_le_pairing_after_auth ,le_send_start_enc_rsp0 
+4c95 7009bd46 jam xt_smp_encryption_information ,mem_fifo_temp 
+4c96 20404bd6 call le_xtype_fifo_in 
+
+le_send_start_enc_rsp0:
+4c97 70456b03 jam flag_le_enc_end ,mem_le_enc_state 
+4c98 18000401 force 1 ,temp 
+4c99 20404f89 call le_send_packet 
+4c9a 7048c201 jam 1 ,mem_send_updata_le_param_timer 
+4c9b 20600000 rtn 
+
+le_send_unknown_rsp:
+4c9c 6800c550 fetch 1 ,mem_le_ll_cur_opcode 
+4c9d e0a08000 istore 1 ,contw 
+4c9e 18000402 force 2 ,temp 
+4c9f 20204f89 branch le_send_packet 
+
+le_send_feature:
+4ca0 58000001 setarg param_le_features 
+4ca1 e0a40000 istore 8 ,contw 
+4ca2 18000409 force 9 ,temp 
+4ca3 20204f89 branch le_send_packet 
+
+le_send_pause_enc_req:
+
+le_send_pause_enc_rsp:
+
+le_send_ping_response:
+4ca4 18000401 force 1 ,temp 
+4ca5 20204f89 branch le_send_packet 
+
+le_send_version_ind:
+4ca6 6802c5a9 fetch 5 ,mem_lmp_version 
+4ca7 e0a28000 istore 5 ,contw 
+4ca8 18000406 force 6 ,temp 
+4ca9 20204f89 branch le_send_packet 
+
+le_send_reject_ind:
+4caa 58000006 setarg le_err_pin_or_key_missing 
+4cab e0a08000 istore 1 ,contw 
+4cac 18000402 force 2 ,temp 
+4cad 20204f89 branch le_send_packet 
+
+le_send_conn_param_req:
+4cae 18a08bff increase -1 ,contw 
+4caf 5800000c setarg 0x000c 
+4cb0 e0a10000 istore 2 ,contw 
+4cb1 58000005 setarg 0x0005 
+4cb2 e0a10000 istore 2 ,contw 
+4cb3 5800b412 setarg 0xb412 
+4cb4 e0a10000 istore 2 ,contw 
+4cb5 58000008 setarg 0x0008 
+4cb6 e0a10000 istore 2 ,contw 
+4cb7 6804458d fetch 8 ,mem_le_interal_min 
+4cb8 e0a40000 istore 8 ,contw 
+4cb9 18000202 force 2 ,type 
+4cba 20204f81 branch le_send_autolen 
+
+le_send_smp_pairing_request:
+4cbb 59000401 setarg 0x1000401 
+4cbc 600244d5 store 4 ,mem_le_preq 
+4cbd 58070710 setarg 0x070710 
+4cbe e0a18000 istore 3 ,contw 
+4cbf 680344d6 fetch 6 ,mem_le_preq_iocap 
+4cc0 6003446c store 6 ,mem_le_l2cap_response 
+4cc1 1800040b force 11 ,temp 
+4cc2 20204f89 branch le_send_packet 
+
+le_send_smp_pairing_response:
+4cc3 6800c132 fetch 1 ,mem_device_option 
+4cc4 1fe67c0a sub pdata ,dvc_op_module ,null 
+4cc5 2042ccd1 call le_parse_smp_pairing_request_check_irk ,zero 
+4cc6 6800c132 fetch 1 ,mem_device_option 
+4cc7 c084cccd bne dvc_op_shutter ,le_send_smp_pairing_response_common 
+4cc8 70474601 jam pair_ing ,mem_pair_state 
+4cc9 6800c4da fetch 1 ,mem_le_preq_init_key_distribution 
+4cca c280cccd bbit1 initator_irk ,le_send_smp_pairing_response_common 
+4ccb 58010010 setarg param_smp_key_dist2 
+4ccc e0a18000 istore 3 ,contw 
+
+le_send_smp_pairing_response_common:
+4ccd 680344dd fetch 6 ,mem_le_pres_iocap 
+4cce 6003446c store 6 ,mem_le_l2cap_response 
+4ccf 1800040b force 11 ,temp 
+4cd0 20204f89 branch le_send_packet 
+
+le_parse_smp_pairing_request_check_irk:
+4cd1 6808c4e1 fetcht 1 ,mem_le_pres_init_key_distribution 
+4cd2 6800c4da fetch 1 ,mem_le_preq_init_key_distribution 
+4cd3 2feffe01 isolate1 le_initator_irk_bit ,pdata 
+4cd4 79208401 setflag true ,le_initator_irk_bit ,temp 
+4cd5 6008c4e1 storet 1 ,mem_le_pres_init_key_distribution 
+4cd6 6808c4e2 fetcht 1 ,mem_le_pres_resp_key_distribution 
+4cd7 79208401 setflag true ,le_initator_irk_bit ,temp 
+4cd8 6008c4e2 storet 1 ,mem_le_pres_resp_key_distribution 
+4cd9 20600000 rtn 
+
+le_send_smp_pairing_confirm:
+4cda 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+4cdb c000cce1 beq 1 ,le_send_smp_pairing_confirm_sc 
+4cdc 204070c2 call generate_confirm 
+4cdd d8a0446c arg mem_le_l2cap_response ,contw 
+4cde 204071c0 call store_aes_result 
+4cdf 18000415 force 21 ,temp 
+4ce0 20204f89 branch le_send_packet 
+
+le_send_smp_pairing_confirm_sc:
+4ce1 d8a044c3 arg mem_le_srand ,contw 
+4ce2 20405917 call generate_random 
+4ce3 20406ee7 call function_f4_cb 
+4ce4 d8a0446c arg mem_le_l2cap_response ,contw 
+4ce5 20406f24 call load_inverse_result 
+4ce6 18000415 force 21 ,temp 
+4ce7 20204f89 branch le_send_packet 
+
+le_send_smp_pairing_random:
+4ce8 68040352 fetch 8 ,mem_le_mrand 
+4ce9 2034cceb branch le_send_smp_mrandom ,master 
+4cea 680444c3 fetch 8 ,mem_le_srand 
+
+le_send_smp_mrandom:
+4ceb 20404d69 call le_send_smp_128 
+4cec 20204f89 branch le_send_packet 
+
+le_send_smp_pairing_failed:
+4ced 70456a00 jam flag_le_pairing_null ,mem_le_pairing_state 
+4cee dfe00008 arg pairing_failed_unspecified_reason ,pdata 
+4cef e0a08000 istore 1 ,contw 
+4cf0 18000406 force 6 ,temp 
+4cf1 20204f89 branch le_send_packet 
+
+le_send_smp_encryption_information:
+4cf2 7009bd29 jam bt_evt_le_enc_info ,mem_fifo_temp 
+4cf3 20407d86 call ui_ipc_send_event 
+4cf4 7009bd47 jam xt_smp_master_identification ,mem_fifo_temp 
+4cf5 20404bd6 call le_xtype_fifo_in 
+4cf6 6800c132 fetch 1 ,mem_device_option 
+4cf7 c004cd01 beq dvc_op_shutter ,le_send_smp_encryption_information_shutter 
+4cf8 680444a2 fetch 8 ,mem_le_ltk 
+4cf9 20404d69 call le_send_smp_128 
+4cfa 20404f89 call le_send_packet 
+4cfb 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+4cfc c0003e7b beq master_public_addr ,app_ble_store_reconn_info 
+4cfd 68008377 fetch 1 ,mem_le_plap + 5 
+4cfe 2fe180c0 compare 0xc0 ,pdata ,0xc0 
+4cff 2020be7b branch app_ble_store_reconn_info ,true 
+4d00 20600000 rtn 
+
+le_send_smp_encryption_information_shutter:
+4d01 58112233 setarg 0x112233 
+4d02 6001c4a2 store 3 ,mem_le_ltk 
+4d03 58445566 setarg 0x445566 
+4d04 e0a18000 istore 3 ,contw 
+4d05 58778899 setarg 0x778899 
+4d06 e0a18000 istore 3 ,contw 
+4d07 58001122 setarg 0x001122 
+4d08 e0a18000 istore 3 ,contw 
+4d09 58334455 setarg 0x334455 
+4d0a e0a18000 istore 3 ,contw 
+4d0b 58000066 setarg 0x66 
+4d0c e0a08000 istore 1 ,contw 
+4d0d 680444a2 fetch 8 ,mem_le_ltk 
+4d0e 20404d69 call le_send_smp_128 
+4d0f 20204f89 branch le_send_packet 
+
+le_send_smp_master_identification:
+4d10 6800c132 fetch 1 ,mem_device_option 
+4d11 c004cd22 beq dvc_op_shutter ,le_send_smp_master_identification_shutter 
+4d12 6800c4da fetch 1 ,mem_le_preq_init_key_distribution 
+4d13 c300cd17 bbit0 le_initator_irk_bit ,le_send_smp_master_identification_only 
+4d14 7009bd48 jam xt_smp_identity_information ,mem_fifo_temp 
+4d15 20404bd6 call le_xtype_fifo_in 
+4d16 20204d19 branch le_send_smp_master_identification_common 
+
+le_send_smp_master_identification_only:
+4d17 70456b03 jam flag_le_enc_end ,mem_le_enc_state 
+4d18 70456a03 jam flag_le_pairing_end ,mem_le_pairing_state 
+
+le_send_smp_master_identification_common:
+4d19 d8a04571 arg mem_le_ediv ,contw 
+4d1a 1800720a force 10 ,loopcnt 
+4d1b 20405918 call generate_random_loop 
+4d1c 68014571 fetch 2 ,mem_le_ediv 
+4d1d 6001446c store 2 ,mem_le_l2cap_response 
+4d1e 68044573 fetch 8 ,mem_le_rand 
+4d1f e0a40000 istore 8 ,contw 
+4d20 1800040f force 15 ,temp 
+4d21 20204f89 branch le_send_packet 
+
+le_send_smp_master_identification_shutter:
+4d22 d8a0446c arg mem_le_l2cap_response ,contw 
+4d23 18007208 force 8 ,loopcnt 
+4d24 20405918 call generate_random_loop 
+4d25 1800040f force 15 ,temp 
+4d26 20204f89 branch le_send_packet 
+
+le_send_smp_identity_information:
+4d27 7009bd49 jam xt_smp_identity_address_information ,mem_fifo_temp 
+4d28 20404bd6 call le_xtype_fifo_in 
+4d29 58000000 setarg 0 
+4d2a 6004446c store 8 ,mem_le_l2cap_response 
+4d2b e0a40000 istore 8 ,contw 
+4d2c 20204f81 branch le_send_autolen 
+
+le_send_smp_identity_address_information:
+4d2d 6800c532 fetch 1 ,mem_le_conn_own_addr_type 
+4d2e 6000c46c store 1 ,mem_le_l2cap_response 
+4d2f 6803453e fetch 6 ,mem_le_lap 
+4d30 e0a30000 istore 6 ,contw 
+4d31 20204f81 branch le_send_autolen 
+
+le_send_smp_signing_information:
+4d32 d8a0446c arg mem_le_l2cap_response ,contw 
+4d33 20405917 call generate_random 
+4d34 20204f81 branch le_send_autolen 
+
+le_send_smp_security_request:
+4d35 6800c4df fetch 1 ,mem_le_pres_auth 
+4d36 6000c46c store 1 ,mem_le_l2cap_response 
+4d37 18000406 force 6 ,temp 
+4d38 20204f89 branch le_send_packet 
+
+le_send_smp_pairing_public_key:
+4d39 680083da fetch 1 ,mem_le_continue_type 
+4d3a c001cd4e beq le_continue_type_public_key ,le_send_public_key_continue 
+4d3b d8400041 arg 65 ,temp 
+4d3c 60094467 storet 2 ,mem_le_txpayload 
+4d3d 79200025 set1 mark_ext_patch ,mark 
+4d3e 449a4026 bpatch patch26_4 ,mem_patch26 
+4d3f d8200002 arg 0x02 ,type 
+4d40 58000006 setarg le_l2cap_cid_smp 
+4d41 60014469 store 2 ,mem_le_txcid 
+4d42 d8a0446c arg mem_le_l2cap_response ,contw 
+4d43 df200016 arg 22 ,loopcnt 
+4d44 d8c0465a arg mem_le_pubkey_local_x_256 ,contr 
+4d45 20407ec0 call memcpy_fast 
+4d46 7003db16 jam 22 ,mem_le_public_length 
+4d47 7044661b jam 27 ,mem_le_txlen 
+4d48 68088379 fetcht 1 ,mem_le_arq 
+4d49 79200404 set1 md ,temp 
+4d4a 60088379 storet 1 ,mem_le_arq 
+4d4b 7003da03 jam le_continue_type_public_key ,mem_le_continue_type 
+4d4c 68088379 fetcht 1 ,mem_le_arq 
+4d4d 20204f93 branch le_send_non_l2cap2 
+
+le_send_public_key_continue:
+4d4e 7003da00 jam le_continue_type_null ,mem_le_continue_type 
+4d4f 680083db fetch 1 ,mem_le_public_length 
+4d50 c00b4d5e beq 22 ,le_send_public_key_continue2 
+4d51 df20000f arg 15 ,loopcnt 
+4d52 7044660f jam 15 ,mem_le_txlen 
+4d53 20404d58 call le_send_smp_publickey_continue_common 
+4d54 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+4d55 70456603 jam le_sc_stat_send_public_key ,mem_le_secure_connect_state 
+4d56 7003db00 jam 0 ,mem_le_public_length 
+4d57 20600000 rtn 
+
+le_send_smp_publickey_continue_common:
+4d58 d8c0465a arg mem_le_pubkey_local_x_256 ,contr 
+4d59 98c08c00 iadd contr ,contr 
+4d5a d8a04467 arg mem_le_txpayload ,contw 
+4d5b 20407ec0 call memcpy_fast 
+4d5c d8200001 arg 1 ,type 
+4d5d 20204f90 branch le_send_non_l2cap 
+
+le_send_public_key_continue2:
+4d5e 7003db31 jam 49 ,mem_le_public_length 
+4d5f df20001b arg 27 ,loopcnt 
+4d60 7044661b jam 27 ,mem_le_txlen 
+4d61 20404d58 call le_send_smp_publickey_continue_common 
+4d62 7003da03 jam le_continue_type_public_key ,mem_le_continue_type 
+4d63 20600000 rtn 
+
+le_send_smp_pairing_dhkey_check:
+4d64 20406e86 call function_f6_eb 
+4d65 d8a0446c arg mem_le_l2cap_response ,contw 
+4d66 20406f24 call load_inverse_result 
+4d67 18000415 force 21 ,temp 
+4d68 20204f89 branch le_send_packet 
+
+le_send_smp_128:
+4d69 6004446c store 8 ,mem_le_l2cap_response 
+4d6a e8c40000 ifetch 8 ,contr 
+4d6b e0a40000 istore 8 ,contw 
+4d6c 18000415 force 21 ,temp 
+4d6d 20600000 rtn 
+
+le_send_att_error_response_notfound:
+4d6e 70039d0a jam att_err_attribute_not_found ,mem_le_err_code 
+
+le_send_att_error_response:
+4d6f 70446b01 jam attop_error_response ,mem_le_l2cap 
+4d70 6801839a fetch 3 ,mem_le_att_opcode 
+4d71 6001c46c store 3 ,mem_le_l2cap_response 
+4d72 6800839d fetch 1 ,mem_le_err_code 
+4d73 e0a08000 istore 1 ,contw 
+4d74 20204f81 branch le_send_autolen 
+
+le_send_att_exchange_mtu_rsp:
+
+le_send_att_exchange_mtu_req:
+4d75 6801454c fetch 2 ,mem_le_local_mtu 
+4d76 e0a10000 istore 2 ,contw 
+4d77 20204f81 branch le_send_autolen 
+
+le_send_att_find_information_request:
+4d78 680144e3 fetch 2 ,mem_le_search_handle_start 
+4d79 6001446c store 2 ,mem_le_l2cap_response 
+4d7a 680144e5 fetch 2 ,mem_le_search_handle_end 
+4d7b e0a10000 istore 2 ,contw 
+4d7c 20204f81 branch le_send_autolen 
+
+le_send_att_find_information_response:
+4d7d d9600002 arg 2 ,timeup 
+4d7e 18007e01 force 1 ,pdata 
+4d7f 6000c46c store 1 ,mem_le_l2cap_response 
+4d80 204051e0 call le_init_attlist_search 
+
+le_send_att_find_information_res_loop:
+4d81 204051ea call le_att_handle_inrange 
+4d82 203a4d91 branch le_send_att_find_information_res_end ,blank 
+4d83 24214d8e nbranch le_send_att_find_information_res_next ,positive 
+4d84 78547c00 disable user 
+4d85 e0a10000 istore 2 ,contw 
+4d86 e8c08000 ifetch 1 ,contr 
+4d87 1fe27200 copy pdata ,loopcnt 
+4d88 20407ec0 call memcpy_fast 
+4d89 196097ff increase -1 ,timeup 
+4d8a 2022cd91 branch le_send_att_find_information_res_end ,zero 
+
+le_send_att_find_information_res_cont:
+4d8b e8c08000 ifetch 1 ,contr 
+4d8c 98c08c00 iadd contr ,contr 
+4d8d 20204d81 branch le_send_att_find_information_res_loop 
+
+le_send_att_find_information_res_next:
+4d8e e8c08000 ifetch 1 ,contr 
+4d8f 98c08c00 iadd contr ,contr 
+4d90 20204d8b branch le_send_att_find_information_res_cont 
+
+le_send_att_find_information_res_end:
+4d91 20344d6e branch le_send_att_error_response_notfound ,user 
+4d92 20204f81 branch le_send_autolen 
+
+le_send_att_find_by_type_value_request:
+4d93 680144e3 fetch 2 ,mem_le_search_handle_start 
+4d94 203a4c4d branch le_send_empty_le_data ,blank 
+4d95 6001446c store 2 ,mem_le_l2cap_response 
+4d96 680144e5 fetch 2 ,mem_le_search_handle_end 
+4d97 e0a10000 istore 2 ,contw 
+4d98 680144fb fetch 2 ,mem_le_search_uuid 
+4d99 e0a10000 istore 2 ,contw 
+4d9a 680144e8 fetch 2 ,mem_le_search_att_type 
+4d9b e0a10000 istore 2 ,contw 
+4d9c 20204f81 branch le_send_autolen 
+
+le_start_end_handle_check_1:
+4d9d 78547c00 disable user 
+4d9e 680944e3 fetcht 2 ,mem_le_search_handle_start 
+4d9f 680144e5 fetch 2 ,mem_le_search_handle_end 
+4da0 98467c00 isub temp ,null 
+4da1 24214da4 nbranch le_start_end_handle_check_1_fail ,positive 
+4da2 18427e00 deposit temp 
+4da3 c1800000 rtnne 0 
+
+le_start_end_handle_check_1_fail:
+4da4 78347c00 enable user 
+4da5 70039d01 jam att_err_invalid_handle ,mem_le_err_code 
+4da6 20204d6f branch le_send_att_error_response 
+
+le_send_att_find_by_type_value_response:
+4da7 20404d9d call le_start_end_handle_check_1 
+4da8 20740000 rtn user 
+4da9 680944fb fetcht 2 ,mem_le_search_uuid 
+4daa 58002800 setarg uuid_gatt_primary_service 
+4dab 98467c00 isub temp ,null 
+4dac 2022cdb7 branch le_send_att_find_by_type_value_res_primary ,zero 
+4dad 58002801 setarg uuid_gatt_secondary_service 
+4dae 98467c00 isub temp ,null 
+4daf 2022cd6e branch le_send_att_error_response_notfound ,zero 
+4db0 58002802 setarg uuid_gatt_include 
+4db1 98467c00 isub temp ,null 
+4db2 2022cd6e branch le_send_att_error_response_notfound ,zero 
+4db3 58002803 setarg uuid_gatt_characteristic 
+4db4 98467c00 isub temp ,null 
+4db5 2022cd6e branch le_send_att_error_response_notfound ,zero 
+4db6 20204d6e branch le_send_att_error_response_notfound 
+
+le_send_att_find_by_type_value_res_primary:
+4db7 7003d900 jam le_find_by_type_val_res_not_found ,mem_le_search_res 
+4db8 680944e3 fetcht 2 ,mem_le_search_handle_start 
+4db9 600909c6 storet 2 ,mem_temp 
+4dba 2040521a call le_att_get_handle_info 
+4dbb 243a4d6e nbranch le_send_att_error_response_notfound ,blank 
+
+le_send_att_find_primary_search_loop:
+4dbc 680909c6 fetcht 2 ,mem_temp 
+4dbd 2040521a call le_att_get_handle_info 
+4dbe 243a4dd0 nbranch le_send_att_error_response_notfound2 ,blank 
+4dbf 18c22200 copy contr ,rega 
+4dc0 680083d8 fetch 1 ,mem_le_search_len 
+4dc1 1fe27200 copy pdata ,loopcnt 
+4dc2 6808c4e7 fetcht 1 ,mem_le_search_att_type_length 
+4dc3 98467c00 isub temp ,null 
+4dc4 2422cdcc nbranch le_send_att_find_primary_search_loop1 ,zero 
+4dc5 da4044e8 arg mem_le_search_att_type ,regb 
+4dc6 20407f55 call string_compare 
+4dc7 2022cdd3 branch le_send_att_find_primary_search_end_start_handle_found ,zero 
+4dc8 680103c8 fetch 2 ,mem_le_cur_uuid 
+4dc9 680944fb fetcht 2 ,mem_le_search_uuid 
+4dca 98467c00 isub temp ,null 
+4dcb 2022cddb branch le_send_att_find_primary_search_end_ending_handle_found ,zero 
+
+le_send_att_find_primary_search_loop1:
+4dcc 680109c6 fetch 2 ,mem_temp 
+4dcd 1fe0fe01 increase 1 ,pdata 
+4dce 600109c6 store 2 ,mem_temp 
+4dcf 20204dbc branch le_send_att_find_primary_search_loop 
+
+le_send_att_error_response_notfound2:
+4dd0 680083d9 fetch 1 ,mem_le_search_res 
+4dd1 c000cddb beq le_find_by_type_val_res_found_starting_handle ,le_send_att_find_primary_search_end_ending_handle_found 
+4dd2 20204d6e branch le_send_att_error_response_notfound 
+
+le_send_att_find_primary_search_end_start_handle_found:
+4dd3 680103c8 fetch 2 ,mem_le_cur_uuid 
+4dd4 680944fb fetcht 2 ,mem_le_search_uuid 
+4dd5 98467c00 isub temp ,null 
+4dd6 2422cdcc nbranch le_send_att_find_primary_search_loop1 ,zero 
+4dd7 7003d901 jam le_find_by_type_val_res_found_starting_handle ,mem_le_search_res 
+4dd8 680909c6 fetcht 2 ,mem_temp 
+4dd9 600903c3 storet 2 ,mem_le_cur_handle_start 
+4dda 20204dcc branch le_send_att_find_primary_search_loop1 
+
+le_send_att_find_primary_search_end_ending_handle_found:
+4ddb 680083d9 fetch 1 ,mem_le_search_res 
+4ddc c0004dcc beq le_find_by_type_val_res_not_found ,le_send_att_find_primary_search_loop1 
+4ddd 7003d902 jam le_find_by_type_val_res_found_ending_handle ,mem_le_search_res 
+4dde 680909c6 fetcht 2 ,mem_temp 
+4ddf 184085ff increase -1 ,temp 
+4de0 600903c5 storet 2 ,mem_le_cur_handle_end 
+
+le_send_att_find_primary_search_end:
+4de1 680103c3 fetch 2 ,mem_le_cur_handle_start 
+4de2 1fe22200 icopy rega 
+4de3 680103c5 fetch 2 ,mem_le_cur_handle_end 
+4de4 1fe22400 icopy regb 
+4de5 70446b07 jam attop_find_by_type_value_response ,mem_le_l2cap 
+4de6 1a227e00 deposit rega 
+4de7 6001446c store 2 ,mem_le_l2cap_response 
+4de8 1a427e00 deposit regb 
+4de9 e0a10000 istore 2 ,contw 
+4dea 18000409 force 9 ,temp 
+4deb 20204f89 branch le_send_packet 
+
+le_send_att_read_by_type_request:
+4dec 680144e3 fetch 2 ,mem_le_search_handle_start 
+4ded e0a10000 istore 2 ,contw 
+4dee 680144e5 fetch 2 ,mem_le_search_handle_end 
+4def e0a10000 istore 2 ,contw 
+4df0 680144e8 fetch 2 ,mem_le_search_att_type 
+4df1 e0a10000 istore 2 ,contw 
+4df2 1800040b force 11 ,temp 
+4df3 20204f89 branch le_send_packet 
+
+le_send_att_read_by_type_response:
+4df4 680944e3 fetcht 2 ,mem_le_search_handle_start 
+4df5 600909c6 storet 2 ,mem_temp 
+4df6 204051e0 call le_init_attlist_search 
+4df7 204051f8 call le_att_get_handle_ptr2 
+4df8 18c08dfe increase -2 ,contr 
+4df9 18c27e00 copy contr ,pdata 
+4dfa 600103c1 store 2 ,mem_le_cur_attlist_start_ptr 
+4dfb 680944fb fetcht 2 ,mem_le_search_uuid 
+4dfc 58002803 setarg uuid_gatt_characteristic 
+4dfd 98467c00 isub temp ,null 
+4dfe 2422ce3d nbranch le_send_att_read_by_type_res_not_characteristic ,zero 
+4dff d9600002 arg 2 ,timeup 
+4e00 79200025 set1 mark_ext_patch ,mark 
+4e01 449ac026 bpatch patch26_5 ,mem_patch26 
+
+le_send_att_read_by_type_response_loop:
+4e02 20404eff call le_att_check_handle_end 
+4e03 24214e13 nbranch le_send_att_read_by_type_response_end ,positive 
+4e04 680909c6 fetcht 2 ,mem_temp 
+4e05 20405217 call le_att_get_handle_info_from_ptr 
+4e06 c000ce13 beq 1 ,le_send_att_read_by_type_response_end 
+4e07 20404f0b call le_att_same_uuid 
+4e08 2422ce11 nbranch le_send_att_read_by_type_response_next_handle ,zero 
+4e09 24344e15 nbranch le_send_att_read_by_type_res_found_next ,user 
+4e0a 78547c00 disable user 
+4e0b 20404e28 call le_send_att_read_by_type_write_properties 
+4e0c 20404efb call le_att_next_handle 
+4e0d 20405217 call le_att_get_handle_info_from_ptr 
+4e0e 20404e2f call le_send_att_read_by_type_write_uuid 
+4e0f 196097ff increase -1 ,timeup 
+4e10 2022ce13 branch le_send_att_read_by_type_response_end ,zero 
+
+le_send_att_read_by_type_response_next_handle:
+4e11 20404efb call le_att_next_handle 
+4e12 20204e02 branch le_send_att_read_by_type_response_loop 
+
+le_send_att_read_by_type_response_end:
+4e13 20344d6e branch le_send_att_error_response_notfound ,user 
+4e14 20204f13 branch le_send_auto_len_by_mem 
+
+le_send_att_read_by_type_res_found_next:
+4e15 20404f0e call le_store_att_record 
+4e16 20404efb call le_att_next_handle 
+4e17 20405217 call le_att_get_handle_info_from_ptr 
+4e18 6800c46c fetch 1 ,mem_le_l2cap_response 
+4e19 c00ace13 beq 21 ,le_send_att_read_by_type_response_end 
+4e1a 680083c7 fetch 1 ,mem_le_cur_uuid_lenth 
+4e1b 1fe0fe05 increase 5 ,pdata 
+4e1c 6808c46c fetcht 1 ,mem_le_l2cap_response 
+4e1d 98467c00 isub temp ,null 
+4e1e 2422ce13 nbranch le_send_att_read_by_type_response_end ,zero 
+4e1f 20407e64 call get_contw 
+4e20 680109c6 fetch 2 ,mem_temp 
+4e21 1fe0ffff increase -1 ,pdata 
+4e22 e0a10000 istore 2 ,contw 
+4e23 20404f1a call le_write_att_record_common 
+4e24 20404e2f call le_send_att_read_by_type_write_uuid 
+4e25 196097ff increase -1 ,timeup 
+4e26 2022ce13 branch le_send_att_read_by_type_response_end ,zero 
+4e27 20204e11 branch le_send_att_read_by_type_response_next_handle 
+
+le_send_att_read_by_type_write_properties:
+4e28 680109c6 fetch 2 ,mem_temp 
+4e29 6001446d store 2 ,mem_le_l2cap_response + 1 
+4e2a 680083d8 fetch 1 ,mem_le_search_len 
+4e2b 1fe27200 copy pdata ,loopcnt 
+4e2c 20407e67 call get_contr 
+4e2d 20407ec0 call memcpy_fast 
+4e2e 20207e6a branch store_contw 
+
+le_send_att_read_by_type_write_uuid:
+4e2f 20407e64 call get_contw 
+4e30 680109c6 fetch 2 ,mem_temp 
+4e31 e0a10000 istore 2 ,contw 
+4e32 20407e6a call store_contw 
+4e33 680083c7 fetch 1 ,mem_le_cur_uuid_lenth 
+4e34 1fe27200 copy pdata ,loopcnt 
+4e35 1fe0fe05 increase 5 ,pdata 
+4e36 6000c46c store 1 ,mem_le_l2cap_response 
+4e37 20407e64 call get_contw 
+4e38 20407e67 call get_contr 
+4e39 9f260c00 isub loopcnt ,contr 
+4e3a 18c08dff increase -1 ,contr 
+4e3b 20407ec0 call memcpy_fast 
+4e3c 20207e6a branch store_contw 
+
+le_send_att_read_by_type_res_not_characteristic:
+4e3d 680944e3 fetcht 2 ,mem_le_search_handle_start 
+4e3e 600909c6 storet 2 ,mem_temp 
+
+le_send_att_read_by_type_res_not_char_loop:
+4e3f 20404eff call le_att_check_handle_end 
+4e40 24214d6e nbranch le_send_att_error_response_notfound ,positive 
+4e41 20405217 call le_att_get_handle_info_from_ptr 
+4e42 c000cd6e beq 1 ,le_send_att_error_response_notfound 
+4e43 20404f0b call le_att_same_uuid 
+4e44 2422ce56 nbranch le_send_att_read_by_type_res_not_char_next ,zero 
+
+le_check_if_name_uuid:
+4e45 6800c4fa fetch 1 ,mem_le_search_uuid_length 
+4e46 c0814e4d bne 2 ,le_send_att_read_by_type_res_not_name 
+4e47 680144fb fetch 2 ,mem_le_search_uuid 
+4e48 d8402a00 arg uuid_chrctr_device_name ,temp 
+4e49 98467c00 isub temp ,null 
+4e4a 2422ce4d nbranch le_send_att_read_by_type_res_not_name ,zero 
+4e4b 6800c440 fetch 1 ,mem_le_name_len 
+4e4c 20204e4e branch le_send_att_read_by_type_res_not_char_common 
+
+le_send_att_read_by_type_res_not_name:
+4e4d 680083d8 fetch 1 ,mem_le_search_len 
+
+le_send_att_read_by_type_res_not_char_common:
+4e4e 1fe27200 copy pdata ,loopcnt 
+4e4f 1fe0fe02 increase 2 ,pdata 
+4e50 6000c46c store 1 ,mem_le_l2cap_response 
+4e51 680109c6 fetch 2 ,mem_temp 
+4e52 e0a10000 istore 2 ,contw 
+4e53 20407e67 call get_contr 
+4e54 20407ec0 call memcpy_fast 
+4e55 20204f81 branch le_send_autolen 
+
+le_send_att_read_by_type_res_not_char_next:
+4e56 20404efb call le_att_next_handle 
+4e57 20204e3f branch le_send_att_read_by_type_res_not_char_loop 
+
+le_send_att_read_request:
+4e58 6800c464 fetch 1 ,mem_le_temp 
+4e59 1fe0ffff increase -1 ,pdata 
+4e5a 6000c464 store 1 ,mem_le_temp 
+4e5b 1fe3fe00 lshift pdata ,pdata 
+4e5c 98c08c00 iadd contr ,contr 
+4e5d e8c90000 ifetcht 2 ,contr 
+4e5e 6009446c storet 2 ,mem_le_l2cap_response 
+4e5f 20204f81 branch le_send_autolen 
+
+le_send_att_read_response:
+4e60 6800c5a8 fetch 1 ,mem_le_flag 
+4e61 c3004e66 bbit0 flag_ble_insufficient_authentication ,le_send_att_read_response_common 
+4e62 6801039b fetch 2 ,mem_le_att_handle 
+4e63 6809458b fetcht 2 ,mem_le_pairing_handle 
+4e64 98467c00 isub temp ,null 
+4e65 2022ce71 branch le_send_att_read_response_error_insufficient_authentication ,zero 
+
+le_send_att_read_response_common:
+4e66 6809039b fetcht 2 ,mem_le_att_handle 
+4e67 204051f5 call le_att_get_handle_ptr 
+4e68 203a4d6e branch le_send_att_error_response_notfound ,blank 
+4e69 e8c08000 ifetch 1 ,contr 
+4e6a 203a4f81 branch le_send_autolen ,blank 
+4e6b 1fe67c16 sub pdata ,22 ,null 
+4e6c 20214e6e branch le_send_att_read_response_less ,positive 
+4e6d 18007e16 force 22 ,pdata 
+
+le_send_att_read_response_less:
+4e6e 1fe27200 icopy loopcnt 
+4e6f 20407ec0 call memcpy_fast 
+4e70 20204f81 branch le_send_autolen 
+
+le_send_att_read_response_error_insufficient_authentication:
+4e71 6800c56c fetch 1 ,mem_le_pairing_mode 
+4e72 203a4e66 branch le_send_att_read_response_common ,blank 
+4e73 68008362 fetch 1 ,mem_le_state 
+4e74 c2824e66 bbit1 lestate_encryption ,le_send_att_read_response_common 
+4e75 70039d05 jam att_err_insufficient_authentication ,mem_le_err_code 
+4e76 20204d6f branch le_send_att_error_response 
+
+le_send_att_read_blob_request:
+4e77 58000003 setarg 0x0003 
+4e78 6001446c store 2 ,mem_le_l2cap_response 
+4e79 58000008 setarg 0x0008 
+4e7a e0a10000 istore 2 ,contw 
+4e7b 20204f81 branch le_send_autolen 
+
+le_send_att_read_blob_response:
+4e7c 680144e7 fetch 2 ,mem_le_att_offset 
+4e7d 98002200 iforce rega 
+4e7e 6809039b fetcht 2 ,mem_le_att_handle 
+4e7f 204051f5 call le_att_get_handle_ptr 
+4e80 203a4d6e branch le_send_att_error_response_notfound ,blank 
+4e81 e8c08000 ifetch 1 ,contr 
+4e82 9a267200 isub rega ,loopcnt 
+4e83 24214d6e nbranch le_send_att_error_response_notfound ,positive 
+4e84 1f267c16 sub loopcnt ,22 ,null 
+4e85 20214e87 branch le_send_att_read_blob_response_less ,positive 
+4e86 18007216 force 22 ,loopcnt 
+
+le_send_att_read_blob_response_less:
+4e87 1a227e00 deposit rega 
+4e88 98c08c00 iadd contr ,contr 
+4e89 20407ec0 call memcpy_fast 
+4e8a 20204f81 branch le_send_autolen 
+
+le_send_att_read_multiple_request:
+4e8b 58000003 setarg 0x0003 
+4e8c e0a10000 istore 2 ,contw 
+4e8d 58000007 setarg 0x0007 
+4e8e e0a10000 istore 2 ,contw 
+4e8f 58000009 setarg 0x0009 
+4e90 e0a10000 istore 2 ,contw 
+4e91 20204f81 branch le_send_autolen 
+
+le_send_att_read_multiple_response:
+4e92 6800c464 fetch 1 ,mem_le_temp 
+4e93 1fe22600 icopy regc 
+4e94 da200309 arg mem_le_rxbuf + 7 ,rega 
+4e95 da40446c arg mem_le_l2cap_response ,regb 
+4e96 d9600000 arg 0 ,timeup 
+4e97 7858fc00 disable user7 
+
+le_send_att_read_multiple_response_loop:
+4e98 1a220c00 copy rega ,contr 
+4e99 e8c90000 ifetcht 2 ,contr 
+4e9a 18c22200 copy contr ,rega 
+4e9b 204051f5 call le_att_get_handle_ptr 
+4e9c 203a4eab branch le_send_att_read_multiple_response_end ,blank 
+4e9d e8c08000 ifetch 1 ,contr 
+4e9e 1fe27200 icopy loopcnt 
+4e9f 99609600 iadd timeup ,timeup 
+4ea0 19667c18 sub timeup ,24 ,null 
+4ea1 24214eb0 nbranch le_send_att_read_multiple_response_end_1 ,positive 
+4ea2 1a420a00 copy regb ,contw 
+
+le_copy_att_value_loop_3:
+4ea3 e8c08000 ifetch 1 ,contr 
+4ea4 e0a08000 istore 1 ,contw 
+4ea5 c2004ea3 loop le_copy_att_value_loop_3 
+4ea6 18a22400 copy contw ,regb 
+4ea7 7838fc00 enable user7 
+4ea8 1a60a7ff increase -1 ,regc 
+4ea9 2022ceab branch le_send_att_read_multiple_response_end ,zero 
+4eaa 20204e98 branch le_send_att_read_multiple_response_loop 
+
+le_send_att_read_multiple_response_end:
+4eab 2438ceb6 nbranch le_send_att_read_multiple_response_fail ,user7 
+4eac 7858fc00 disable user7 
+4ead 19620400 copy timeup ,temp 
+4eae 18408405 increase 5 ,temp 
+4eaf 20204f89 branch le_send_packet 
+
+le_send_att_read_multiple_response_end_1:
+4eb0 2438ceb6 nbranch le_send_att_read_multiple_response_fail ,user7 
+4eb1 7858fc00 disable user7 
+4eb2 19627e00 deposit timeup 
+4eb3 9f260400 isub loopcnt ,temp 
+4eb4 18408405 increase 5 ,temp 
+4eb5 20204f89 branch le_send_packet 
+
+le_send_att_read_multiple_response_fail:
+4eb6 70039d10 jam att_err_unsupported_group_type ,mem_le_err_code 
+4eb7 20204d6f branch le_send_att_error_response 
+
+le_send_att_read_by_group_type_request:
+4eb8 6801039b fetch 2 ,mem_le_att_handle 
+4eb9 203a4c4d branch le_send_empty_le_data ,blank 
+4eba e0a10000 istore 2 ,contw 
+4ebb 5800ffff setarg 0xffff 
+4ebc e0a10000 istore 2 ,contw 
+4ebd 58002800 setarg 0x2800 
+4ebe e0a10000 istore 2 ,contw 
+4ebf 20204f81 branch le_send_autolen 
+
+le_send_att_read_by_group_type_response:
+4ec0 d9600002 arg 2 ,timeup 
+4ec1 680144e3 fetch 2 ,mem_le_search_handle_start 
+4ec2 600109c6 store 2 ,mem_temp 
+4ec3 7003d900 jam 0 ,mem_le_search_res 
+4ec4 680944e3 fetcht 2 ,mem_le_search_handle_start 
+4ec5 600909c6 storet 2 ,mem_temp 
+4ec6 204051e0 call le_init_attlist_search 
+4ec7 204051f8 call le_att_get_handle_ptr2 
+4ec8 18c08dfe increase -2 ,contr 
+4ec9 18c27e00 copy contr ,pdata 
+4eca 600103c1 store 2 ,mem_le_cur_attlist_start_ptr 
+4ecb 79200025 set1 mark_ext_patch ,mark 
+4ecc 449b4026 bpatch patch26_6 ,mem_patch26 
+
+le_send_att_read_by_group_type_response_loop:
+4ecd 20404eff call le_att_check_handle_end 
+4ece 24214ef1 nbranch le_send_att_read_by_group_type_end0 ,positive 
+4ecf 680909c6 fetcht 2 ,mem_temp 
+4ed0 20405217 call le_att_get_handle_info_from_ptr 
+4ed1 c000cef4 beq 1 ,le_send_att_read_by_group_type_end1 
+4ed2 20404f03 call le_att_same_type 
+4ed3 2422ceed nbranch le_send_att_read_by_group_type_next_handle ,zero 
+4ed4 680083d9 fetch 1 ,mem_le_search_res 
+4ed5 c000cef4 beq 1 ,le_send_att_read_by_group_type_end1 
+4ed6 24344edd nbranch le_send_att_read_by_group_type_store_write_record ,user 
+4ed7 78547c00 disable user 
+4ed8 680083d8 fetch 1 ,mem_le_search_len 
+4ed9 1fe0fe04 increase 4 ,pdata 
+4eda 6000c46c store 1 ,mem_le_l2cap_response 
+4edb 20407e6a call store_contw 
+4edc 20204ee8 branch le_send_att_read_by_group_type_store_record 
+
+le_send_att_read_by_group_type_store_write_record:
+4edd 6800c46c fetch 1 ,mem_le_l2cap_response 
+4ede c00a4ef4 beq 20 ,le_send_att_read_by_group_type_end1 
+4edf 680083d8 fetch 1 ,mem_le_search_len 
+4ee0 1fe0fe04 increase 4 ,pdata 
+4ee1 6808c46c fetcht 1 ,mem_le_l2cap_response 
+4ee2 98467c00 isub temp ,null 
+4ee3 2422cef4 nbranch le_send_att_read_by_group_type_end1 ,zero 
+4ee4 680109c6 fetch 2 ,mem_temp 
+4ee5 1fe0ffff increase -1 ,pdata 
+4ee6 600103c5 store 2 ,mem_le_cur_handle_end 
+4ee7 20404f15 call le_write_att_record 
+
+le_send_att_read_by_group_type_store_record:
+4ee8 680109c6 fetch 2 ,mem_temp 
+4ee9 600103c3 store 2 ,mem_le_cur_handle_start 
+4eea 20404f0e call le_store_att_record 
+4eeb 196097ff increase -1 ,timeup 
+4eec 2022ceef branch le_send_att_read_by_group_type_last_find ,zero 
+
+le_send_att_read_by_group_type_next_handle:
+4eed 20404efb call le_att_next_handle 
+4eee 20204ecd branch le_send_att_read_by_group_type_response_loop 
+
+le_send_att_read_by_group_type_last_find:
+4eef 7003d901 jam 1 ,mem_le_search_res 
+4ef0 20204eed branch le_send_att_read_by_group_type_next_handle 
+
+le_send_att_read_by_group_type_end0:
+4ef1 680109c6 fetch 2 ,mem_temp 
+4ef2 600103c5 store 2 ,mem_le_cur_handle_end 
+4ef3 20204ef8 branch le_send_att_read_by_group_type_end_common 
+
+le_send_att_read_by_group_type_end1:
+4ef4 680109c6 fetch 2 ,mem_temp 
+4ef5 1fe0ffff increase -1 ,pdata 
+4ef6 600103c5 store 2 ,mem_le_cur_handle_end 
+4ef7 20204ef8 branch le_send_att_read_by_group_type_end_common 
+
+le_send_att_read_by_group_type_end_common:
+4ef8 20344d6e branch le_send_att_error_response_notfound ,user 
+4ef9 20404f15 call le_write_att_record 
+4efa 20204f13 branch le_send_auto_len_by_mem 
+
+le_att_next_handle:
+4efb 680909c6 fetcht 2 ,mem_temp 
+4efc 18408401 increase 1 ,temp 
+4efd 600909c6 storet 2 ,mem_temp 
+4efe 20600000 rtn 
+
+le_att_check_handle_end:
+4eff 680909c6 fetcht 2 ,mem_temp 
+4f00 680144e5 fetch 2 ,mem_le_search_handle_end 
+4f01 98467c00 isub temp ,null 
+4f02 20600000 rtn 
+
+le_att_same_type:
+4f03 6808c4e7 fetcht 1 ,mem_le_search_att_type_length 
+4f04 da2044e8 arg mem_le_search_att_type ,rega 
+
+le_att_check_same_common:
+4f05 680083c7 fetch 1 ,mem_le_cur_uuid_lenth 
+4f06 1fe27200 copy pdata ,loopcnt 
+4f07 98467c00 isub temp ,null 
+4f08 24628000 nrtn zero 
+4f09 da4003c8 arg mem_le_cur_uuid ,regb 
+4f0a 20207f55 branch string_compare 
+
+le_att_same_uuid:
+4f0b 6808c4fa fetcht 1 ,mem_le_search_uuid_length 
+4f0c da2044fb arg mem_le_search_uuid ,rega 
+4f0d 20204f05 branch le_att_check_same_common 
+
+le_store_att_record:
+4f0e 680083d8 fetch 1 ,mem_le_search_len 
+4f0f 60008100 store 1 ,mem_tmp_buffer 
+4f10 1fe27200 copy pdata ,loopcnt 
+4f11 20407e67 call get_contr 
+4f12 20207ec0 branch memcpy_fast 
+
+le_send_auto_len_by_mem:
+4f13 20407e64 call get_contw 
+4f14 20204f81 branch le_send_autolen 
+
+le_write_att_record:
+4f15 20407e64 call get_contw 
+4f16 680103c3 fetch 2 ,mem_le_cur_handle_start 
+4f17 e0a10000 istore 2 ,contw 
+4f18 680103c5 fetch 2 ,mem_le_cur_handle_end 
+4f19 e0a10000 istore 2 ,contw 
+
+le_write_att_record_common:
+4f1a 68008100 fetch 1 ,mem_tmp_buffer 
+4f1b 1fe27200 copy pdata ,loopcnt 
+4f1c 20407ec0 call memcpy_fast 
+4f1d 20207e6a branch store_contw 
+
+le_send_att_write_request:
+4f1e 680144f8 fetch 2 ,mem_le_notify_handle 
+4f1f 6001446c store 2 ,mem_le_l2cap_response 
+4f20 6800c50b fetch 1 ,mem_le_handle_data_len 
+4f21 1fe27200 copy pdata ,loopcnt 
+4f22 d8c0450c arg mem_le_handle_data ,contr 
+4f23 20407ec0 call memcpy_fast 
+4f24 20204f81 branch le_send_autolen 
+
+le_send_att_write_response:
+4f25 18000405 force 5 ,temp 
+4f26 20204f89 branch le_send_packet 
+
+le_send_att_prepare_write_request:
+4f27 18000406 force 6 ,temp 
+4f28 20204f89 branch le_send_packet 
+
+le_send_att_continue:
+4f29 680083da fetch 1 ,mem_le_continue_type 
+4f2a c000cf2e beq le_continue_type_notification ,le_send_att_notify_continue 
+4f2b c0014f30 beq le_continue_type_prepare_write_response ,le_send_att_prepare_write_response_continue 
+4f2c 7003da00 jam le_continue_type_null ,mem_le_continue_type 
+4f2d 20600000 rtn 
+
+le_send_att_notify_continue:
+4f2e 6801429e fetch 2 ,mem_cb_update_notify_continue 
+4f2f 20207f69 branch callback_func 
+
+le_send_att_prepare_write_response_continue:
+4f30 680145a0 fetch 2 ,mem_prepare_write_len 
+4f31 203a3b31 branch assert ,blank 
+4f32 680945a6 fetcht 2 ,mem_prepare_write_offest 
+4f33 203a3b31 branch assert ,blank 
+4f34 98467e00 isub temp ,pdata 
+4f35 d840001b arg 27 ,temp 
+4f36 20407faf call not_greater_than 
+4f37 1fe27200 copy pdata ,loopcnt 
+4f38 da200a41 arg mem_temp_prepare_write_request ,rega 
+4f39 680145a6 fetch 2 ,mem_prepare_write_offest 
+4f3a 9a20a200 iadd rega ,rega 
+4f3b 9f20fe00 iadd loopcnt ,pdata 
+4f3c 600145a6 store 2 ,mem_prepare_write_offest 
+4f3d 680945a0 fetcht 2 ,mem_prepare_write_len 
+4f3e 98460400 isub temp ,temp 
+4f3f 2442cf5e ncall le_send_att_insert_continue ,zero 
+4f40 7003da02 jam le_continue_type_prepare_write_response ,mem_le_continue_type 
+4f41 d8a04467 arg mem_le_txpayload ,contw 
+4f42 1a220c00 copy rega ,contr 
+4f43 20407ec0 call memcpy_fast 
+4f44 d8200001 arg 1 ,type 
+4f45 20204f59 branch le_send_not_fill_l2cap_len 
+
+le_send_att_prepare_write_response:
+4f46 680145a0 fetch 2 ,mem_prepare_write_len 
+4f47 203a3b31 branch assert ,blank 
+4f48 1fe08405 add pdata ,5 ,temp 
+4f49 60094467 storet 2 ,mem_le_txpayload 
+4f4a d8400012 arg 18 ,temp 
+4f4b 20407faf call not_greater_than 
+4f4c 1fe27200 copy pdata ,loopcnt 
+4f4d 600145a6 store 2 ,mem_prepare_write_offest 
+4f4e 680945a0 fetcht 2 ,mem_prepare_write_len 
+4f4f 98460400 isub temp ,temp 
+4f50 2442cf5e ncall le_send_att_insert_continue ,zero 
+4f51 7003da02 jam le_continue_type_prepare_write_response ,mem_le_continue_type 
+4f52 d8200002 arg 0x02 ,type 
+4f53 680145a4 fetch 2 ,mem_prepare_handle 
+4f54 6001446c store 2 ,mem_le_l2cap + 1 
+4f55 680145a2 fetch 2 ,mem_le_prepare_write_req_offset 
+4f56 e0a10000 istore 2 ,contw 
+4f57 d8c00a41 arg mem_temp_prepare_write_request ,contr 
+4f58 20407ec0 call memcpy_fast 
+
+le_send_not_fill_l2cap_len:
+4f59 58004467 setarg mem_le_txpayload 
+4f5a 98a67e00 isub contw ,pdata 
+4f5b 1fe60400 sub pdata ,0 ,temp 
+4f5c 6008c466 storet 1 ,mem_le_txlen 
+4f5d 20204f90 branch le_send_non_l2cap 
+
+le_send_att_insert_continue:
+4f5e 6801c544 fetch 3 ,mem_le_xtype_fifo 
+4f5f 243a4f62 nbranch le_send_att_insert_cont_next ,blank 
+4f60 7045461f jam attop_continue ,mem_le_xtype_fifo + 2 
+4f61 20600000 rtn 
+
+le_send_att_insert_cont_next:
+4f62 20404bd4 call le_xtype_fifo_is_near_full 
+4f63 243a3b31 nbranch assert ,blank 
+4f64 7045451f jam attop_continue ,mem_le_xtype_fifo + 1 
+4f65 20600000 rtn 
+
+le_send_att_execute_write_request:
+4f66 18000406 force 6 ,temp 
+4f67 20204f89 branch le_send_packet 
+
+le_send_att_execute_write_response:
+4f68 18000405 force 5 ,temp 
+4f69 20204f89 branch le_send_packet 
+
+le_att_check_notification_enable:
+4f6a 79200025 set1 mark_ext_patch ,mark 
+4f6b 449bc026 bpatch patch26_7 ,mem_patch26 
+4f6c 18408401 increase 1 ,temp 
+4f6d 204051f5 call le_att_get_handle_ptr 
+4f6e 18c08dfe increase -2 ,contr 
+4f6f e8c10000 ifetch 2 ,contr 
+4f70 d8402902 arg client_charactertic_configuration ,temp 
+4f71 98467c00 isub temp ,null 
+4f72 24628000 nrtn zero 
+4f73 18c08c01 increase 1 ,contr 
+4f74 18c22200 copy contr ,rega 
+4f75 e8c08000 ifetch 1 ,contr 
+4f76 20600000 rtn 
+
+le_send_att_handle_value_notification:
+4f77 6801429c fetch 2 ,mem_cb_update_notify_value 
+4f78 20207f69 branch callback_func 
+
+le_send_att_handle_value_indication:
+4f79 18000406 force 6 ,temp 
+4f7a 20204f89 branch le_send_packet 
+
+le_send_att_handle_value_confirmation:
+4f7b 18000406 force 6 ,temp 
+4f7c 20204f89 branch le_send_packet 
+
+le_send_att_write_command:
+4f7d 18000406 force 6 ,temp 
+4f7e 20204f89 branch le_send_packet 
+
+le_send_att_signed_write_command:
+4f7f 18000406 force 6 ,temp 
+4f80 20204f89 branch le_send_packet 
+
+le_send_autolen:
+4f81 79200025 set1 mark_ext_patch ,mark 
+4f82 449c4027 bpatch patch27_0 ,mem_patch27 
+4f83 58004467 setarg mem_le_txpayload 
+4f84 98a67e00 isub contw ,pdata 
+4f85 1fe60400 sub pdata ,0 ,temp 
+4f86 20204f89 branch le_send_packet 
+
+le_send_empty:
+4f87 18000400 force 0 ,temp 
+4f88 18000201 force 1 ,type 
+
+le_send_packet:
+4f89 79200025 set1 mark_ext_patch ,mark 
+4f8a 449cc027 bpatch patch27_1 ,mem_patch27 
+4f8b 6008c466 storet 1 ,mem_le_txlen 
+4f8c 28200602 compare 2 ,type ,3 
+4f8d 2420cf90 nbranch le_send_non_l2cap ,true 
+4f8e 1840fffc add temp ,-4 ,pdata 
+4f8f 60014467 store 2 ,mem_le_txpayload 
+
+le_send_non_l2cap:
+4f90 68088379 fetcht 1 ,mem_le_arq 
+4f91 20404bd0 call le_xtype_fifo_is_empty 
+
+le_send_non_l2cap1:
+4f92 7d3a0404 nsetflag blank ,md ,temp 
+
+le_send_non_l2cap2:
+4f93 79200405 set1 wak ,temp 
+4f94 18417efc and temp ,0xfc ,pdata 
+4f95 9821fe00 ior type ,pdata 
+4f96 60008379 store 1 ,mem_le_arq 
+4f97 1fe17e1f and_into 0x1f ,pdata 
+4f98 6000c465 store 1 ,mem_le_txheader 
+4f99 79200025 set1 mark_ext_patch ,mark 
+4f9a 449d4027 bpatch patch27_2 ,mem_patch27 
+4f9b 6800c465 fetch 1 ,mem_le_txheader 
+4f9c 28200601 compare 1 ,type ,3 
+4f9d 2420cfa0 nbranch le_send_no_txlen ,true 
+4f9e 6800c466 fetch 1 ,mem_le_txlen 
+4f9f 207a0000 rtn blank 
+
+le_send_no_txlen:
+4fa0 6803c466 fetch 7 ,mem_le_txheader + 1 
+4fa1 68008362 fetch 1 ,mem_le_state 
+4fa2 c4020000 rtnbit0 lestate_encryption 
+4fa3 204071b6 call load_sk 
+4fa4 20207109 branch le_encrypt 
+
+le_parse:
+4fa5 79200025 set1 mark_ext_patch ,mark 
+4fa6 449dc027 bpatch patch27_3 ,mem_patch27 
+4fa7 20404bd2 call le_xtype_fifo_is_full 
+4fa8 243a3b31 nbranch assert ,blank 
+4fa9 247a0000 nrtn blank 
+4faa 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4fab 207a0000 rtn blank 
+4fac 68008302 fetch 1 ,mem_le_rxbuf 
+4fad 2fe00601 compare 1 ,pdata ,3 
+4fae 2020d307 branch le_parse_continue ,true 
+4faf 68038303 fetch 7 ,mem_le_rxbuf + 1 
+4fb0 68008302 fetch 1 ,mem_le_rxbuf 
+4fb1 2fe00602 compare 2 ,pdata ,3 
+4fb2 2020cfcb branch le_parse_l2cap ,true 
+
+le_parse0:
+4fb3 68008304 fetch 1 ,mem_le_rxbuf + 2 
+4fb4 600083bb store 1 ,mem_le_rx_ll_opcode 
+4fb5 1fe22600 copy pdata ,regc 
+4fb6 79200025 set1 mark_ext_patch ,mark 
+4fb7 449e4027 bpatch patch27_4 ,mem_patch27 
+4fb8 1a627e00 copy regc ,pdata 
+4fb9 c000501f beq ll_connection_update_req ,le_parse_connection_update_req 
+4fba c000d02b beq ll_channel_map_req ,le_parse_channel_map_req 
+4fbb c0015033 beq ll_terminate_ind ,le_parse_terminate_ind 
+4fbc c001d039 beq ll_enc_req ,le_parse_enc_req 
+4fbd c002504a beq ll_enc_rsp ,le_parse_enc_rsp 
+4fbe c002d04f beq ll_start_enc_req ,le_parse_start_enc_req 
+4fbf c0035054 beq ll_start_enc_rsp ,le_parse_start_enc_rsp 
+4fc0 c003d059 beq ll_unknown_rsp ,le_parse_unknown_rsp 
+4fc1 c004505a beq ll_feature_req ,le_parse_feature_req 
+4fc2 c004d05c beq ll_feature_rsp ,le_parse_feature_rsp 
+4fc3 c005505d beq ll_pause_enc_req ,le_parse_pause_enc_req 
+4fc4 c005d062 beq ll_pause_enc_rsp ,le_parse_pause_enc_rsp 
+4fc5 c0065065 beq ll_version_ind ,le_parse_version_ind 
+4fc6 c006d068 beq ll_reject_ind ,le_parse_reject_ind 
+4fc7 c0095063 beq ll_ping_req ,le_parse_ping_req 
+4fc8 6000c550 store 1 ,mem_le_ll_cur_opcode 
+4fc9 7009bd27 jam xt_ll_unknown_rsp ,mem_fifo_temp 
+4fca 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_l2cap:
+4fcb 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4fcc 1fe17e1f and pdata ,0x1f ,pdata 
+4fcd 207a0000 rtn blank 
+4fce 68010304 fetch 2 ,mem_le_rxbuf + 2 
+4fcf 6001039e store 2 ,mem_le_l2cap_pdu_length 
+4fd0 68010306 fetch 2 ,mem_le_rxbuf + 4 
+4fd1 c002500d beq le_l2cap_cid_att ,le_parse_att 
+4fd2 c0034ffb beq le_l2cap_cid_smp ,le_parse_smp 
+4fd3 20600000 rtn 
+
+le_parse_continue_att:
+4fd4 70456901 jam le_continue_flag_rx ,mem_le_continue_flag 
+4fd5 6800839a fetch 1 ,mem_le_att_opcode 
+4fd6 c0094fea beq attop_write_request ,le_parse_l2cap_continue_write_request 
+4fd7 c00b4fee beq attop_prepare_write_request ,le_parse_l2cap_continue_prepare_write_request 
+4fd8 c0294fe6 beq attop_write_command ,le_parse_l2cap_continue_write_command 
+4fd9 70456900 jam le_continue_flag_null ,mem_le_continue_flag 
+4fda 20600000 rtn 
+
+le_parse_l2cap_continue_common:
+4fdb 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4fdc 1fe22400 icopy regb 
+4fdd da200304 arg mem_le_rxbuf + 2 ,rega 
+4fde 2040516d call le_writeatt_cb 
+4fdf 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4fe0 6809459a fetcht 2 ,mem_le_buff_len 
+4fe1 9840fe00 iadd temp ,pdata 
+4fe2 6001459a store 2 ,mem_le_buff_len 
+4fe3 6809459c fetcht 2 ,mem_le_buff_len_all 
+4fe4 98467c00 isub temp ,null 
+4fe5 20600000 rtn 
+
+le_parse_l2cap_continue_write_command:
+4fe6 20404fdb call le_parse_l2cap_continue_common 
+4fe7 24628000 nrtn zero 
+4fe8 70456900 jam le_continue_flag_null ,mem_le_continue_flag 
+4fe9 20600000 rtn 
+
+le_parse_l2cap_continue_write_request:
+4fea 20404fdb call le_parse_l2cap_continue_common 
+4feb 24628000 nrtn zero 
+4fec 70456900 jam le_continue_flag_null ,mem_le_continue_flag 
+4fed 20205123 branch le_parse_att_write_request_end 
+
+le_parse_l2cap_continue_prepare_write_request:
+4fee 680945a0 fetcht 2 ,mem_prepare_write_len 
+4fef 68008303 fetch 1 ,mem_le_rxbuf + 1 
+4ff0 1fe27200 icopy loopcnt 
+4ff1 9840fe00 iadd temp ,pdata 
+4ff2 600145a0 store 2 ,mem_prepare_write_len 
+4ff3 dfe00a41 arg mem_temp_prepare_write_request ,pdata 
+4ff4 98408a00 iadd temp ,contw 
+4ff5 d8c00304 arg mem_le_rxbuf + 2 ,contr 
+4ff6 20407ec0 call memcpy_fast 
+4ff7 20404fdb call le_parse_l2cap_continue_common 
+4ff8 24628000 nrtn zero 
+4ff9 70456900 jam le_continue_flag_null ,mem_le_continue_flag 
+4ffa 20205169 branch le_parse_att_prepare_write_request_end 
+
+le_parse_smp:
+4ffb 79200025 set1 mark_ext_patch ,mark 
+4ffc 449ec027 bpatch patch27_5 ,mem_patch27 
+4ffd e8c08000 ifetch 1 ,contr 
+4ffe c000d069 beq smp_pairing_request ,le_parse_smp_pairing_request 
+4fff c001508b beq smp_pairing_response ,le_parse_smp_pairing_response 
+5000 c001d090 beq smp_pairing_confirm ,le_parse_smp_pairing_confirm 
+5001 c00250a0 beq smp_pairing_random ,le_parse_smp_pairing_random 
+5002 c002d0a8 beq smp_pairing_failed ,le_parse_smp_pairing_failed 
+5003 c00350d5 beq smp_encryption_information ,le_parse_smp_encryption_information 
+5004 c003d0d7 beq smp_master_identification ,le_parse_smp_master_identification 
+5005 c00450d8 beq smp_identity_information ,le_parse_smp_identity_information 
+5006 c004d0e0 beq smp_identity_address_information ,le_parse_smp_identity_address_information 
+5007 c00550e3 beq smp_signing_information ,le_parse_smp_signing_information 
+5008 c005d0e4 beq smp_security_request ,le_parse_smp_security_request 
+5009 c00650c9 beq smp_pairing_public_key ,le_parse_smp_public_key 
+500a c006d0d0 beq smp_pairing_dhkey_check ,le_parse_smp_dhkey_check 
+500b 7009bd45 jam xt_smp_pairing_failed ,mem_fifo_temp 
+500c 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att:
+500d 79200025 set1 mark_ext_patch ,mark 
+500e 449f4027 bpatch patch27_6 ,mem_patch27 
+500f e8c18000 ifetch 3 ,contr 
+5010 6001839a store 3 ,mem_le_att_opcode 
+5011 c00150e8 beq attop_exchange_mtu_request ,le_parse_att_exchange_mtu_request 
+5012 c001d0e5 beq attop_exchange_mtu_response ,le_parse_att_exchange_mtu_response 
+5013 c00250eb beq attop_find_information_request ,le_parse_att_find_information_request 
+5014 c00350ee beq attop_find_by_type_value_request ,le_parse_att_find_by_type_value_request 
+5015 c00450f8 beq attop_read_by_type_request ,le_parse_att_read_by_type_request 
+5016 c005510c beq attop_read_request ,le_parse_att_read_request 
+5017 c0065110 beq attop_read_blob_request ,le_parse_att_read_blob_request 
+5018 c0075114 beq attop_read_multiple_request ,le_parse_att_read_multiple_request 
+5019 c008511a beq attop_read_by_group_type_request ,le_parse_att_read_by_group_type_request 
+501a c0095120 beq attop_write_request ,le_parse_att_write_request 
+501b c00b5142 beq attop_prepare_write_request ,le_parse_att_prepare_write_request 
+501c c00c516b beq attop_execute_write_request ,le_parse_att_execute_write_request 
+501d c029511e beq attop_write_command ,le_parse_att_write_command 
+501e 20600000 rtn 
+
+le_parse_connection_update_req:
+501f e8c48000 ifetch 9 ,contr 
+5020 6004c45b store 9 ,mem_le_new_param 
+5021 e8c10000 ifetch 2 ,contr 
+5022 60010382 store 2 ,mem_le_instant 
+5023 68008362 fetch 1 ,mem_le_state 
+5024 79207e05 set1 lestate_update_param ,pdata 
+5025 60008362 store 1 ,mem_le_state 
+5026 6800c132 fetch 1 ,mem_device_option 
+5027 c1848000 rtnne dvc_op_shutter 
+5028 70413100 jam 0 ,mem_lpm_mode 
+5029 7048c71e jam 30 ,mem_shutter_conn_update_timer 
+502a 20600000 rtn 
+
+le_parse_channel_map_req:
+502b e8c28000 ifetch 5 ,contr 
+502c 6002c456 store 5 ,mem_le_new_map 
+502d e8c10000 ifetch 2 ,contr 
+502e 60010382 store 2 ,mem_le_instant 
+502f 68008362 fetch 1 ,mem_le_state 
+5030 79207e06 set1 lestate_update_map ,pdata 
+5031 60008362 store 1 ,mem_le_state 
+5032 20600000 rtn 
+
+le_parse_terminate_ind:
+5033 6800c132 fetch 1 ,mem_device_option 
+5034 c084d036 bne dvc_op_shutter ,le_parse_terminate_ind_common 
+5035 7048bb01 jam 1 ,mem_shutter_key_data_flag_1 
+
+le_parse_terminate_ind_common:
+5036 58000014 setarg 20 
+5037 60010390 store 2 ,mem_le_superto 
+5038 20600000 rtn 
+
+le_parse_enc_req:
+5039 e8c40000 ifetch 8 ,contr 
+503a 60044573 store 8 ,mem_le_rand 
+503b e8c10000 ifetch 2 ,contr 
+503c 60014571 store 2 ,mem_le_ediv 
+503d e8c40000 ifetch 8 ,contr 
+503e 60044551 store 8 ,mem_le_skdm 
+503f e8c20000 ifetch 4 ,contr 
+5040 6002449a store 4 ,mem_le_ivm 
+5041 7009bd24 jam xt_ll_enc_rsp ,mem_fifo_temp 
+5042 20404bd6 call le_xtype_fifo_in 
+5043 70456b01 jam flag_le_enc_start ,mem_le_enc_state 
+5044 6800c56a fetch 1 ,mem_le_pairing_state 
+5045 c1010000 rtneq flag_le_pairing_after_auth 
+5046 6800c132 fetch 1 ,mem_device_option 
+5047 c004e418 beq dvc_op_shutter ,load_device_list_mode_4_shutter 
+5048 c1850000 rtnne dvc_op_module 
+5049 2020640c branch load_device_list_mode_4 
+
+le_parse_enc_rsp:
+504a e8c40000 ifetch 8 ,contr 
+504b 60044559 store 8 ,mem_le_skds 
+504c e8c20000 ifetch 4 ,contr 
+504d 6002449e store 4 ,mem_le_ivs 
+504e 202070c8 branch generate_sk 
+
+le_parse_start_enc_req:
+504f 68008362 fetch 1 ,mem_le_state 
+5050 79207e04 set1 lestate_encryption ,pdata 
+5051 60008362 store 1 ,mem_le_state 
+5052 7009bd26 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+5053 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_start_enc_rsp:
+5054 20748000 rtn master 
+5055 7009bd26 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+5056 20404bd6 call le_xtype_fifo_in 
+5057 7009bd32 jam bt_evt_le_start_enc ,mem_fifo_temp 
+5058 20207d86 branch ui_ipc_send_event 
+
+le_parse_unknown_rsp:
+5059 20600000 rtn 
+
+le_parse_feature_req:
+505a 7009bd29 jam xt_ll_feature_rsp ,mem_fifo_temp 
+505b 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_feature_rsp:
+505c 20600000 rtn 
+
+le_parse_pause_enc_req:
+505d 70456b02 jam flag_le_enc_pause ,mem_le_enc_state 
+505e 7009bd2b jam xt_ll_pause_enc_rsp ,mem_fifo_temp 
+505f 20404bd6 call le_xtype_fifo_in 
+5060 7009bd33 jam bt_evt_le_pause_enc ,mem_fifo_temp 
+5061 20207d86 branch ui_ipc_send_event 
+
+le_parse_pause_enc_rsp:
+5062 20600000 rtn 
+
+le_parse_ping_req:
+5063 7009bd33 jam xt_ll_ping_rsp ,mem_fifo_temp 
+5064 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_version_ind:
+5065 20748000 rtn master 
+5066 7009bd2c jam xt_ll_version_ind ,mem_fifo_temp 
+5067 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_reject_ind:
+5068 20600000 rtn 
+
+le_parse_smp_pairing_request:
+5069 6000c4d5 store 1 ,mem_le_preq 
+506a e8c30000 ifetch 6 ,contr 
+506b e0a30000 istore 6 ,contw 
+506c 7009bd42 jam xt_smp_pairing_response ,mem_fifo_temp 
+506d 20404bd6 call le_xtype_fifo_in 
+506e 6800c132 fetch 1 ,mem_device_option 
+506f c004d07b beq dvc_op_shutter ,le_parse_smp_pairing_request_shutter 
+5070 20405086 call le_check_master_support_secure_connect 
+5071 70456a01 jam flag_le_pairing_start ,mem_le_pairing_state 
+5072 6800c4d6 fetch 1 ,mem_le_preq_iocap 
+5073 c0005078 beq flag_iocap_displayonly ,le_set_tk_0 
+5074 c000d078 beq flag_iocap_displayyesno ,le_set_tk_0 
+5075 c001d078 beq flag_iocap_noinputnooutput ,le_set_tk_0 
+5076 6800c56c fetch 1 ,mem_le_pairing_mode 
+5077 c001507d beq le_pairing_mode_lagacy_passkey ,le_genernate_tk 
+
+le_set_tk_0:
+5078 dfe00000 arg 0 ,pdata 
+5079 6002456d store 4 ,mem_le_tk 
+507a 20600000 rtn 
+
+le_parse_smp_pairing_request_shutter:
+507b 7048ba01 jam 1 ,mem_shutter_key_data_flag 
+507c 20600000 rtn 
+
+le_genernate_tk:
+507d da20456d arg mem_le_tk ,rega 
+507e 1a220a00 copy rega ,contw 
+507f df200003 arg 3 ,loopcnt 
+5080 20405918 call generate_random_loop 
+5081 6801456f fetch 2 ,mem_le_tk + 2 
+5082 1fe17e07 and_into 0x7 ,pdata 
+5083 6001456f store 2 ,mem_le_tk + 2 
+5084 7009bd34 jam bt_evt_le_tk_generate ,mem_fifo_temp 
+5085 20207d86 branch ui_ipc_send_event 
+
+le_check_master_support_secure_connect:
+5086 6800c4d8 fetch 1 ,mem_le_preq_auth 
+5087 c3818000 rtnbit1 le_auth_secure_connection_pairing_bit 
+5088 6800c56c fetch 1 ,mem_le_pairing_mode 
+5089 c4038000 rtnbit0 le_pairing_mode_secure_connect_bit 
+508a 20203e6b branch app_ble_disconnect 
+
+le_parse_smp_pairing_response:
+508b 6000c4dc store 1 ,mem_le_pres 
+508c e8c30000 ifetch 6 ,contr 
+508d e0a30000 istore 6 ,contw 
+508e 7009bd43 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+508f 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_confirm:
+5090 18c22200 copy contr ,rega 
+5091 6800c56c fetch 1 ,mem_le_pairing_mode 
+5092 c041d09a beq le_pairing_mode_secure_connect_passkey ,le_parse_smp_pairing_confirm_secure_passkey 
+5093 1a220c00 copy rega ,contr 
+5094 d8a044b3 arg mem_le_rconfirm ,contw 
+5095 20407e87 call memcpy16 
+5096 7009bd44 jam xt_smp_pairing_random ,mem_fifo_temp 
+5097 2034cbd6 branch le_xtype_fifo_in ,master 
+5098 7009bd43 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+5099 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_confirm_secure_passkey:
+509a 1a220c00 copy rega ,contr 
+509b d8a044b3 arg mem_le_rconfirm ,contw 
+509c 20407e87 call memcpy16 
+509d 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+509e 70456608 jam le_sc_stat_passkey_wait_confirm ,mem_le_secure_connect_state 
+509f 20600000 rtn 
+
+le_parse_smp_pairing_random:
+50a0 18c22200 copy contr ,rega 
+50a1 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+50a2 c000d0ab beq 1 ,le_parse_smp_pairing_random_sc 
+50a3 1a220c00 copy rega ,contr 
+50a4 204070ba call authenticate_rconfirm 
+50a5 2022d0c0 branch le_parse_smp_pairing_random_success ,zero 
+
+le_pairing_failed:
+50a6 7009bd45 jam xt_smp_pairing_failed ,mem_fifo_temp 
+50a7 20404bd6 call le_xtype_fifo_in 
+
+le_parse_smp_pairing_failed:
+50a8 70456a00 jam flag_le_pairing_null ,mem_le_pairing_state 
+50a9 7009bd30 jam bt_evt_le_pairing_fail ,mem_fifo_temp 
+50aa 20207d86 branch ui_ipc_send_event 
+
+le_parse_smp_pairing_random_sc:
+50ab d8a00352 arg mem_le_mrand ,contw 
+50ac 1a220c00 copy rega ,contr 
+50ad 20407e87 call memcpy16 
+50ae 6800c56c fetch 1 ,mem_le_pairing_mode 
+50af c041d0b6 beq le_pairing_mode_secure_connect_passkey ,le_parse_smp_pairing_random_sc_passkey 
+50b0 20406e6e call function_g2 
+50b1 7009bd44 jam xt_smp_pairing_random ,mem_fifo_temp 
+50b2 20404bd6 call le_xtype_fifo_in 
+50b3 6800c56c fetch 1 ,mem_le_pairing_mode 
+50b4 c0415d60 beq le_pairing_mode_secure_connect_numeric ,module_hci_event_le_gkey 
+50b5 20600000 rtn 
+
+le_parse_smp_pairing_random_sc_passkey:
+50b6 20406edc call function_f4_ca 
+50b7 d8a00a11 arg mem_aes_cmac_temp ,contw 
+50b8 20406f24 call load_inverse_result 
+50b9 da200a11 arg mem_aes_cmac_temp ,rega 
+50ba da4044b3 arg mem_le_rconfirm ,regb 
+50bb df200010 arg 16 ,loopcnt 
+50bc 20407f55 call string_compare 
+50bd 2422d2d8 nbranch le_dhkey_check_fail ,zero 
+50be 7009bd44 jam xt_smp_pairing_random ,mem_fifo_temp 
+50bf 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_random_success:
+50c0 204070b5 call generate_stk 
+50c1 7009bd31 jam bt_evt_le_pairing_success ,mem_fifo_temp 
+50c2 20407d86 call ui_ipc_send_event 
+50c3 7044b201 jam 1 ,mem_ltk_exists 
+50c4 70456a02 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+50c5 7009bd23 jam xt_ll_enc_req ,mem_fifo_temp 
+50c6 2034cbd6 branch le_xtype_fifo_in ,master 
+50c7 7009bd44 jam xt_smp_pairing_random ,mem_fifo_temp 
+50c8 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_smp_public_key:
+50c9 68008303 fetch 1 ,mem_le_rxbuf + 1 
+50ca 1fe0fffb increase -5 ,pdata 
+50cb 600083db store 1 ,mem_le_public_length 
+50cc 1fe27200 copy pdata ,loopcnt 
+50cd d8a008e2 arg mem_le_pubkey_remote_x_256 ,contw 
+50ce 18c08c05 increase 5 ,contr 
+50cf 20207ec0 branch memcpy_fast 
+
+le_parse_smp_dhkey_check:
+50d0 d8a00992 arg mem_sp_confirm_remote ,contw 
+50d1 20407e87 call memcpy16 
+50d2 70456606 jam le_sc_stat_receive_dhkey ,mem_le_secure_connect_state 
+50d3 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+50d4 20600000 rtn 
+
+le_parse_smp_encryption_information:
+50d5 d8a00342 arg mem_le_peer_ltk ,contw 
+50d6 20207e87 branch memcpy16 
+
+le_parse_smp_master_identification:
+50d7 20600000 rtn 
+
+le_parse_smp_identity_information:
+50d8 d8a0457b arg mem_le_irk ,contw 
+50d9 20407e87 call memcpy16 
+50da 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+50db c1000000 rtneq master_public_addr 
+50dc 68008377 fetch 1 ,mem_le_plap + 5 
+50dd 2fe180c0 compare 0xc0 ,pdata ,0xc0 
+50de 20608000 rtn true 
+50df 20203e7b branch app_ble_store_reconn_info 
+
+le_parse_smp_identity_address_information:
+50e0 70456b03 jam flag_le_enc_end ,mem_le_enc_state 
+50e1 70456a03 jam flag_le_pairing_end ,mem_le_pairing_state 
+50e2 20600000 rtn 
+
+le_parse_smp_signing_information:
+50e3 20600000 rtn 
+
+le_parse_smp_security_request:
+50e4 20600000 rtn 
+
+le_parse_att_exchange_mtu_response:
+50e5 68010309 fetch 2 ,mem_le_rxbuf + 7 
+50e6 6001454e store 2 ,mem_le_remote_mtu 
+50e7 20600000 rtn 
+
+le_parse_att_exchange_mtu_request:
+50e8 204050e5 call le_parse_att_exchange_mtu_response 
+50e9 7009bd03 jam attop_exchange_mtu_response ,mem_fifo_temp 
+50ea 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_find_information_request:
+50eb 204050fc call le_get_search_handle_start_end_common 
+50ec 7009bd05 jam attop_find_information_response ,mem_fifo_temp 
+50ed 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_find_by_type_value_request:
+50ee 204050fc call le_get_search_handle_start_end_common 
+50ef e8c10000 ifetch 2 ,contr 
+50f0 600144fb store 2 ,mem_le_search_uuid 
+50f1 20407e6d call store_contr 
+50f2 d8a044e7 arg mem_le_search_att_type_length ,contw 
+50f3 6801039e fetch 2 ,mem_le_l2cap_pdu_length 
+50f4 1fe0fff9 increase -7 ,pdata 
+50f5 20405105 call le_get_search_common2 
+50f6 7009bd07 jam attop_find_by_type_value_response ,mem_fifo_temp 
+50f7 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_read_by_type_request:
+50f8 204050fc call le_get_search_handle_start_end_common 
+50f9 20405109 call le_get_search_att_uuid 
+50fa 7009bd09 jam attop_read_by_type_response ,mem_fifo_temp 
+50fb 20204bd6 branch le_xtype_fifo_in 
+
+le_get_search_handle_start_end_common:
+50fc 1fecfe00 rshift8 pdata ,pdata 
+50fd 600144e3 store 2 ,mem_le_search_handle_start 
+50fe e8c10000 ifetch 2 ,contr 
+50ff 600144e5 store 2 ,mem_le_search_handle_end 
+5100 20600000 rtn 
+
+le_get_search_att_type:
+5101 20407e6d call store_contr 
+5102 d8a044e7 arg mem_le_search_att_type_length ,contw 
+
+le_get_search_common:
+5103 6801039e fetch 2 ,mem_le_l2cap_pdu_length 
+5104 1fe0fffb increase -5 ,pdata 
+
+le_get_search_common2:
+5105 e0a08000 istore 1 ,contw 
+5106 1fe27200 copy pdata ,loopcnt 
+5107 20407e67 call get_contr 
+5108 20207ec0 branch memcpy_fast 
+
+le_get_search_att_uuid:
+5109 20407e6d call store_contr 
+510a d8a044fa arg mem_le_search_uuid_length ,contw 
+510b 20205103 branch le_get_search_common 
+
+le_parse_att_read_request:
+510c 68010309 fetch 2 ,mem_le_rxbuf + 7 
+510d 6001039b store 2 ,mem_le_att_handle 
+510e 7009bd0b jam attop_read_response ,mem_fifo_temp 
+510f 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_read_blob_request:
+5110 e8c10000 ifetch 2 ,contr 
+5111 600144e7 store 2 ,mem_le_att_offset 
+5112 7009bd0d jam attop_read_blob_response ,mem_fifo_temp 
+5113 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_read_multiple_request:
+5114 68008303 fetch 1 ,mem_le_rxbuf + 1 
+5115 1fe0fffb increase -5 ,pdata 
+5116 1fe37e00 rshift pdata ,pdata 
+5117 6000c464 store 1 ,mem_le_temp 
+5118 7009bd0f jam attop_read_multiple_response ,mem_fifo_temp 
+5119 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_read_by_group_type_request:
+511a 204050fc call le_get_search_handle_start_end_common 
+511b 20405101 call le_get_search_att_type 
+511c 7009bd11 jam attop_read_by_group_type_response ,mem_fifo_temp 
+511d 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_write_command:
+511e 2040512f call le_parse_att_write_common 
+511f 20205125 branch le_check_long_packet_patch 
+
+le_parse_att_write_request:
+5120 2040512f call le_parse_att_write_common 
+5121 20405125 call le_check_long_packet_patch 
+5122 24628000 nrtn zero 
+
+le_parse_att_write_request_end:
+5123 7009bd13 jam attop_write_response ,mem_fifo_temp 
+5124 20204bd6 branch le_xtype_fifo_in 
+
+le_check_long_packet_patch:
+5125 68008303 fetch 1 ,mem_le_rxbuf + 1 
+5126 1fe0fffc increase -4 ,pdata 
+5127 6001459a store 2 ,mem_le_buff_len 
+5128 1fe0fffd increase -3 ,pdata 
+5129 e8c90000 ifetcht 2 ,contr 
+512a 6009459c storet 2 ,mem_le_buff_len_all 
+512b 6009459e storet 2 ,mem_le_buff_data_len_all 
+512c 184085fd increase -3 ,temp 
+512d 98467c00 isub temp ,null 
+512e 20600000 rtn 
+
+le_parse_att_write_common:
+512f 68008303 fetch 1 ,mem_le_rxbuf + 1 
+5130 1fe0fff9 increase -7 ,pdata 
+5131 1fe27200 icopy loopcnt 
+5132 1f222400 copy loopcnt ,regb 
+5133 6800c5a8 fetch 1 ,mem_le_flag 
+5134 c300d140 bbit0 flag_ble_copy_master_data_to_att_list ,le_parse_att_write_common1 
+5135 6809039b fetcht 2 ,mem_le_att_handle 
+5136 204051f5 call le_att_get_handle_ptr 
+5137 207a0000 rtn blank 
+5138 e8c08000 ifetch 1 ,contr 
+5139 9f267c00 isub loopcnt ,null 
+513a 2021513c branch le_parse_att_write_common0 ,positive 
+513b 1fe27200 copy pdata ,loopcnt 
+
+le_parse_att_write_common0:
+513c 18c20a00 copy contr ,contw 
+513d 1f222400 copy loopcnt ,regb 
+513e d8c0030b arg mem_le_rxbuf + 9 ,contr 
+513f 20407ec0 call memcpy_fast 
+
+le_parse_att_write_common1:
+5140 da20030b arg mem_le_rxbuf + 9 ,rega 
+5141 2020516d branch le_writeatt_cb 
+
+le_parse_att_prepare_write_request:
+5142 68008303 fetch 1 ,mem_le_rxbuf + 1 
+5143 1fe0fffc increase -4 ,pdata 
+5144 6001459a store 2 ,mem_le_buff_len 
+5145 e8c90000 ifetcht 2 ,contr 
+5146 6009459c storet 2 ,mem_le_buff_len_all 
+5147 184085fe increase -2 ,temp 
+5148 6009459e storet 2 ,mem_le_buff_data_len_all 
+5149 68008303 fetch 1 ,mem_le_rxbuf + 1 
+514a 1fe0fff7 increase -9 ,pdata 
+514b 600145a0 store 2 ,mem_prepare_write_len 
+514c 1fe27200 icopy loopcnt 
+514d 1f222400 copy loopcnt ,regb 
+514e 6800c5a8 fetch 1 ,mem_le_flag 
+514f c300d15b bbit0 flag_ble_copy_master_data_to_att_list ,le_parse_att_prepare_write_request1 
+5150 6809039b fetcht 2 ,mem_le_att_handle 
+5151 204051f5 call le_att_get_handle_ptr 
+5152 203a5169 branch le_parse_att_prepare_write_request_end ,blank 
+5153 e8c08000 ifetch 1 ,contr 
+5154 9f267c00 isub loopcnt ,null 
+5155 20215157 branch le_parse_att_prepare_write_request0 ,positive 
+5156 1fe27200 copy pdata ,loopcnt 
+
+le_parse_att_prepare_write_request0:
+5157 18c20a00 copy contr ,contw 
+5158 1f222400 copy loopcnt ,regb 
+5159 d8c0030d arg mem_le_rxbuf + 11 ,contr 
+515a 20407ec0 call memcpy_fast 
+
+le_parse_att_prepare_write_request1:
+515b 1a427200 copy regb ,loopcnt 
+515c d8a00a41 arg mem_temp_prepare_write_request ,contw 
+515d d8c0030d arg mem_le_rxbuf + 11 ,contr 
+515e 20407ec0 call memcpy_fast 
+515f da20030d arg mem_le_rxbuf + 11 ,rega 
+5160 6801030b fetch 2 ,mem_le_rxbuf + 9 
+5161 600145a2 store 2 ,mem_le_prepare_write_req_offset 
+5162 6809039b fetcht 2 ,mem_le_att_handle 
+5163 600945a4 storet 2 ,mem_prepare_handle 
+5164 2040516d call le_writeatt_cb 
+5165 6801459a fetch 2 ,mem_le_buff_len 
+5166 6809459c fetcht 2 ,mem_le_buff_len_all 
+5167 98467c00 isub temp ,null 
+5168 24628000 nrtn zero 
+
+le_parse_att_prepare_write_request_end:
+5169 7009bd17 jam attop_prepare_write_response ,mem_fifo_temp 
+516a 20204bd6 branch le_xtype_fifo_in 
+
+le_parse_att_execute_write_request:
+516b 7009bd19 jam attop_execute_write_response ,mem_fifo_temp 
+516c 20204bd6 branch le_xtype_fifo_in 
+
+le_writeatt_cb:
+516d 6801429a fetch 2 ,mem_cb_att_write 
+516e 207a0000 rtn blank 
+516f 98007a00 iforce pc 
+
+le_supervision_update:
+5170 680a037e fetcht 4 ,mem_le_supervision_timer 
+5171 20403b1e call get_clkbt 
+5172 98461600 isub temp ,timeup 
+5173 19627e00 deposit timeup 
+5174 68090390 fetcht 2 ,mem_le_superto 
+5175 18520400 lshift4 temp ,temp 
+5176 18438400 lshift temp ,temp 
+5177 98467e00 isub temp ,pdata 
+5178 20600000 rtn 
+
+le_supervision_flush:
+5179 20403b1e call get_clkbt 
+517a 6002037e store 4 ,mem_le_supervision_timer 
+517b 20600000 rtn 
+
+le_adv:
+517c 70001624 jam 36 ,mem_le_ch_mapped 
+
+le_adv_loop:
+517d 79200025 set1 mark_ext_patch ,mark 
+517e 449fc027 bpatch patch27_7 ,mem_patch27 
+517f 6800c3ff fetch 1 ,mem_le_adv_enable 
+5180 207a0000 rtn blank 
+5181 d8e00001 arg le_adv_interval_timer ,queue 
+5182 20407ee2 call timer_check 
+5183 247a0000 nrtn blank 
+5184 7854fc00 disable master 
+5185 78287c00 enable swfine 
+5186 20404b1e call le_init_adv 
+5187 204049d4 call le_next_adv_channel 
+5188 20404a8a call le_send_adv_ind 
+5189 2436d193 nbranch le_adv_not_match ,match 
+518a 68008003 fetch 1 ,mem_le_req_rcv 
+518b 1fe0fe01 increase 1 ,pdata 
+518c 60008003 store 1 ,mem_le_req_rcv 
+518d 79200025 set1 mark_ext_patch ,mark 
+518e 44a04028 bpatch patch28_0 ,mem_patch28 
+518f 68008302 fetch 1 ,mem_le_rxbuf 
+5190 1fe17e0f and pdata ,0x0f ,pdata 
+5191 c001cac5 beq scan_req ,le_send_scan_response 
+5192 c002d1af beq connect_req ,le_parse_connect_req 
+
+le_adv_not_match:
+5193 20002710 nop 10000 
+5194 68008016 fetch 1 ,mem_le_ch_mapped 
+5195 c093d17d bne 39 ,le_adv_loop 
+5196 d8e00001 arg le_adv_interval_timer ,queue 
+5197 6801451e fetch 2 ,mem_le_adv_interval_max 
+5198 20207ed4 branch timer_init 
+
+le_receive_window_size:
+5199 79200025 set1 mark_ext_patch ,mark 
+519a 44a0c028 bpatch patch28_1 ,mem_patch28 
+519b 68008399 fetch 1 ,mem_le_peer_sca 
+519c 204049ad call le_sca_map 
+519d 68010364 fetch 2 ,mem_le_tsniff 
+519e 984ffe00 imul32 temp ,pdata 
+519f d8400177 arg 375 ,temp 
+51a0 984ffe00 imul32 temp ,pdata 
+51a1 d84186a0 arg 100000 ,temp 
+51a2 9846fc00 idiv temp 
+51a3 6800838d fetch 1 ,mem_le_window_size 
+51a4 d8404e20 arg 20000 ,temp 
+51a5 984ffe00 imul32 temp ,pdata 
+51a6 60024596 store 4 ,mem_le_transmit_window 
+51a7 79200025 set1 mark_ext_patch ,mark 
+51a8 44a14028 bpatch patch28_2 ,mem_patch28 
+51a9 68014161 fetch 2 ,mem_rx_window_sniff 
+51aa 20407f53 call wait_div_end 
+51ab 18078400 quotient temp 
+51ac 9840fe00 iadd temp ,pdata 
+51ad 60010370 store 2 ,mem_le_receive_window 
+51ae 20600000 rtn 
+
+le_parse_connect_req:
+51af 79200025 set1 mark_ext_patch ,mark 
+51b0 44a1c028 bpatch patch28_3 ,mem_patch28 
+51b1 6803030a fetch 6 ,mem_le_rxbuf + 8 
+51b2 680b453e fetcht 6 ,mem_le_lap 
+51b3 98467c00 isub temp ,null 
+51b4 24628000 nrtn zero 
+51b5 20404bc9 call le_scan_check_sender_addr_type 
+51b6 1a227e00 copy rega ,pdata 
+51b7 6000c52b store 1 ,mem_le_conn_peer_addr_type 
+51b8 68038317 fetch 7 ,mem_le_rxbuf + 21 
+51b9 60038100 store 7 ,mem_tmp_buffer 
+51ba e8c40000 ifetch 8 ,contr 
+51bb e0a40000 istore 8 ,contw 
+51bc 68030304 fetch 6 ,mem_le_rxbuf + 2 
+51bd 60030372 store 6 ,mem_le_plap 
+51be 79200025 set1 mark_ext_patch ,mark 
+51bf 44a24028 bpatch patch28_4 ,mem_patch28 
+51c0 18c08c06 increase 6 ,contr 
+51c1 e8c40000 ifetch 8 ,contr 
+51c2 60040386 store 8 ,mem_le_access 
+51c3 e8c90000 ifetcht 2 ,contr 
+51c4 184b8400 lshift2 temp ,temp 
+51c5 e8c10000 ifetch 2 ,contr 
+51c6 1febfe00 lshift2 pdata ,pdata 
+51c7 60010364 store 2 ,mem_le_tsniff 
+51c8 60020366 store 4 ,mem_le_anchor 
+51c9 98467e00 isub temp ,pdata 
+51ca 1fe0d1fe add pdata ,-2 ,clke_bt 
+51cb e8c48000 ifetch 9 ,contr 
+51cc 6004838e store 9 ,mem_le_slave_latency 
+51cd 79200025 set1 mark_ext_patch ,mark 
+51ce 44a2c028 bpatch patch28_5 ,mem_patch28 
+51cf e8c08000 ifetch 1 ,contr 
+51d0 1ff18400 rshift4 pdata ,temp 
+51d1 18430400 rshift temp ,temp 
+51d2 60088399 storet 1 ,mem_le_peer_sca 
+51d3 1fe17e1f and_into 0x1f ,pdata 
+51d4 6000837b store 1 ,mem_le_hop 
+51d5 20405199 call le_receive_window_size 
+51d6 204049ef call le_calc_channel_map 
+51d7 20404902 call le_init_slave 
+51d8 2040327a call context_new 
+51d9 24628000 nrtn zero 
+51da 79200025 set1 mark_ext_patch ,mark 
+51db 44a34028 bpatch patch28_6 ,mem_patch28 
+51dc 204038d1 call calc_clke_offset 
+51dd 7009bd14 jam bt_evt_le_connected ,mem_fifo_temp 
+51de 20407d86 call ui_ipc_send_event 
+51df 20203260 branch context_save 
+
+le_init_attlist_search:
+51e0 79200025 set1 mark_ext_patch ,mark 
+51e1 44a3c028 bpatch patch28_7 ,mem_patch28 
+51e2 680144e3 fetch 2 ,mem_le_search_handle_start 
+51e3 98002400 iforce regb 
+51e4 680144e5 fetch 2 ,mem_le_search_handle_end 
+51e5 98002600 iforce regc 
+51e6 68014637 fetch 2 ,mem_ui_le_uuid_table 
+51e7 98000c00 iforce contr 
+51e8 78347c00 enable user 
+51e9 20600000 rtn 
+
+le_att_handle_inrange:
+51ea e8c10000 ifetch 2 ,contr 
+51eb 207a0000 rtn blank 
+51ec 9a467c00 isub regb ,null 
+51ed 24610000 nrtn positive 
+51ee 9a667c00 isub regc ,null 
+51ef 20628000 rtn zero 
+51f0 202151f3 branch le_att_handle_blank ,positive 
+51f1 18007c01 force 1 ,null 
+51f2 20600000 rtn 
+
+le_att_handle_blank:
+51f3 18007e00 force 0 ,pdata 
+51f4 20600000 rtn 
+
+le_att_get_handle_ptr:
+51f5 204051f8 call le_att_get_handle_ptr2 
+51f6 2022d205 branch le_att_get_handle_ptr_found ,zero 
+51f7 20600000 rtn 
+
+le_att_get_handle_ptr2:
+51f8 79200025 set1 mark_ext_patch ,mark 
+51f9 44a44029 bpatch patch29_0 ,mem_patch29 
+51fa 68014637 fetch 2 ,mem_ui_le_uuid_table 
+51fb 98000c00 iforce contr 
+
+le_att_get_handle_loop1:
+51fc e8c10000 ifetch 2 ,contr 
+51fd 207a0000 rtn blank 
+51fe 98467c00 isub temp ,null 
+51ff 20628000 rtn zero 
+5200 e8c08000 ifetch 1 ,contr 
+5201 98c08c00 iadd contr ,contr 
+5202 e8c08000 ifetch 1 ,contr 
+5203 98c08c00 iadd contr ,contr 
+5204 202051fc branch le_att_get_handle_loop1 
+
+le_att_get_handle_ptr_found:
+5205 e8c08000 ifetch 1 ,contr 
+5206 98c08c00 iadd contr ,contr 
+5207 20600000 rtn 
+
+le_att_get_short_uuid_ptr:
+5208 79200025 set1 mark_ext_patch ,mark 
+5209 44a4c029 bpatch patch29_1 ,mem_patch29 
+520a 68014637 fetch 2 ,mem_ui_le_uuid_table 
+520b 98000c00 iforce contr 
+
+le_att_get_short_uuid_loop:
+520c e8c10000 ifetch 2 ,contr 
+520d 207a0000 rtn blank 
+520e e8c08000 ifetch 1 ,contr 
+520f 98c08c00 iadd contr ,contr 
+5210 18c08dfe increase -2 ,contr 
+5211 e8c10000 ifetch 2 ,contr 
+5212 98467c00 isub temp ,null 
+5213 20628000 rtn zero 
+5214 e8c08000 ifetch 1 ,contr 
+5215 98c08c00 iadd contr ,contr 
+5216 2020520c branch le_att_get_short_uuid_loop 
+
+le_att_get_handle_info_from_ptr:
+5217 680103c1 fetch 2 ,mem_le_cur_attlist_start_ptr 
+5218 1fe20c00 copy pdata ,contr 
+5219 2020521b branch le_att_get_handle_info + 1 
+
+le_att_get_handle_info:
+521a 79200025 set1 mark_ext_patch ,mark 
+521b 44a54029 bpatch patch29_2 ,mem_patch29 
+521c 68014637 fetch 2 ,mem_ui_le_uuid_table 
+521d 98000c00 iforce contr 
+521e 18422200 copy temp ,rega 
+
+le_att_get_handle_loop:
+521f e8c10000 ifetch 2 ,contr 
+5220 203a5228 branch le_att_unfind_handle ,blank 
+5221 9a267c00 isub rega ,null 
+5222 2022d22a branch le_att_finded_handle ,zero 
+5223 e8c08000 ifetch 1 ,contr 
+5224 98c08c00 iadd contr ,contr 
+5225 e8c08000 ifetch 1 ,contr 
+5226 98c08c00 iadd contr ,contr 
+5227 2020521f branch le_att_get_handle_loop 
+
+le_att_unfind_handle:
+5228 58000001 setarg 1 
+5229 20600000 rtn 
+
+le_att_finded_handle:
+522a e8c08000 ifetch 1 ,contr 
+522b 600083c7 store 1 ,mem_le_cur_uuid_lenth 
+522c 1fe27200 copy pdata ,loopcnt 
+522d d8a003c8 arg mem_le_cur_uuid ,contw 
+522e 20407ec0 call memcpy_fast 
+522f e8c08000 ifetch 1 ,contr 
+5230 600083d8 store 1 ,mem_le_search_len 
+5231 20407e6d call store_contr 
+5232 58000000 setarg 0 
+5233 20600000 rtn 
+
+le_modified_name:
+5234 79200025 set1 mark_ext_patch ,mark 
+5235 44a5c029 bpatch patch29_3 ,mem_patch29 
+5236 20405238 call le_modified_name_att_list 
+5237 2020524a branch le_modified_name_adv 
+
+le_modified_name_att_list:
+5238 d8402a00 arg uuid_chrctr_device_name ,temp 
+5239 20405208 call le_att_get_short_uuid_ptr 
+523a 207a0000 rtn blank 
+523b e8c08000 ifetch 1 ,contr 
+523c 18c20a00 copy contr ,contw 
+523d 6808c440 fetcht 1 ,mem_le_name_len 
+523e 18427200 copy temp ,loopcnt 
+523f 98467c00 isub temp ,null 
+5240 24215247 nbranch le_name_length_longer_than_att ,positive 
+5241 98460400 isub temp ,temp 
+5242 d8c04441 arg mem_le_name ,contr 
+5243 20407ecd call memcpy 
+5244 18427200 copy temp ,loopcnt 
+5245 2442d283 ncall memcpy_empty ,zero 
+5246 20600000 rtn 
+
+le_name_length_longer_than_att:
+5247 1fe27200 copy pdata ,loopcnt 
+5248 d8c04441 arg mem_le_name ,contr 
+5249 20207ec0 branch memcpy_fast 
+
+le_modified_name_adv:
+524a da604420 arg mem_le_adv_data_len + 32 ,regc 
+524b da204401 arg mem_le_adv_data ,rega 
+524c 20405257 call le_modified_name_adv_and_scan 
+524d 58000000 setarg 0 
+524e 79347e00 setflag user ,0 ,pdata 
+524f 600089be store 1 ,mem_pdatatemp 
+5250 da604440 arg mem_le_scan_data_len + 32 ,regc 
+5251 da204421 arg mem_le_scan_data ,rega 
+5252 20405257 call le_modified_name_adv_and_scan 
+5253 20740000 rtn user 
+5254 680089be fetch 1 ,mem_pdatatemp 
+5255 203a3b31 branch assert ,blank 
+5256 20600000 rtn 
+
+le_modified_name_adv_and_scan:
+5257 79200025 set1 mark_ext_patch ,mark 
+5258 44a64029 bpatch patch29_4 ,mem_patch29 
+5259 204064c0 call enable_usr 
+525a 20407ea5 call clear_temp_block 
+525b da400000 arg 0 ,regb 
+525c d8a009e2 arg mem_le_data_temp ,contw 
+525d 20405272 call le_modified_name_adv_loop 
+525e 6800c440 fetch 1 ,mem_le_name_len 
+525f 1fe08401 add pdata ,1 ,temp 
+5260 9a40a200 iadd regb ,rega 
+5261 1a20a202 increase 2 ,rega 
+5262 1a267c1f sub rega ,0x1f ,null 
+5263 24215270 nbranch le_modified_name_adv_and_scan_name_overflow ,positive 
+5264 e0a88000 istoret 1 ,contw 
+5265 d8400009 arg 0x09 ,temp 
+5266 e0a88000 istoret 1 ,contw 
+5267 98007200 iforce loopcnt 
+5268 20407ec0 call memcpy_fast 
+5269 1a222400 copy rega ,regb 
+
+le_modified_name_adv_and_scan_store_data:
+526a 1a427e00 deposit regb 
+526b 600089e1 store 1 ,mem_le_data_len_temp 
+526c d8c009e1 arg mem_le_data_len_temp ,contr 
+526d 5fffffe0 setarg -32 
+526e 9a608a00 iadd regc ,contw 
+526f 20207e85 branch memcpy32 
+
+le_modified_name_adv_and_scan_name_overflow:
+5270 204031d4 call disable_usr 
+5271 2020526a branch le_modified_name_adv_and_scan_store_data 
+
+le_modified_name_adv_loop:
+5272 ea208000 ifetch 1 ,rega 
+5273 207a0000 rtn blank 
+5274 1fe0fe01 pincrease 1 
+5275 e8c88000 ifetcht 1 ,contr 
+5276 18467c09 sub temp ,0x09 ,null 
+5277 2022d281 branch le_modified_name_adv_found_name ,zero 
+5278 9a40a400 iadd regb ,regb 
+5279 1a220c00 copy rega ,contr 
+527a 98007200 iforce loopcnt 
+527b 20407ec0 call memcpy_fast 
+527c 18c22200 copy contr ,rega 
+
+le_modified_name_adv_loop2:
+527d 1a227e00 deposit rega 
+527e 9a667c00 isub regc ,null 
+527f 20610000 rtn positive 
+5280 20205272 branch le_modified_name_adv_loop 
+
+le_modified_name_adv_found_name:
+5281 9a20a200 iadd rega ,rega 
+5282 2020527d branch le_modified_name_adv_loop2 
+
+memcpy_empty:
+5283 58000020 setarg space 
+5284 e0a08000 istore 1 ,contw 
+5285 c2005283 loop memcpy_empty 
+5286 20600000 rtn 
+
+le_lpm_set_mult:
+5287 79200025 set1 mark_ext_patch ,mark 
+5288 44a6c029 bpatch patch29_5 ,mem_patch29 
+5289 7855fc00 disable wake 
+528a 2037528c branch le_lpm_set_mult_attempt ,attempt 
+528b 2436d29a nbranch le_lpm_lost ,match 
+
+le_lpm_set_mult_attempt:
+528c 20403cb7 call lpm_match 
+528d 68014161 fetch 2 ,mem_rx_window_sniff 
+528e 60010370 store 2 ,mem_le_receive_window 
+528f 68008302 fetch 1 ,mem_le_rxbuf 
+5290 2fe00601 compare 1 ,pdata ,3 
+5291 2420bccb nbranch lpm_mult_short ,true 
+5292 6800c465 fetch 1 ,mem_le_txheader 
+5293 2fe00601 compare 1 ,pdata ,3 
+5294 2420bccb nbranch lpm_mult_short ,true 
+5295 680142a2 fetch 2 ,mem_cb_le_set_mult 
+5296 20407f69 call callback_func 
+5297 68008362 fetch 1 ,mem_le_state 
+5298 c282bccb bbit1 lestate_update_param ,lpm_mult_short 
+5299 20203cb0 branch lpm_mult_wait_timeout 
+
+le_lpm_lost:
+529a 68094161 fetcht 2 ,mem_rx_window_sniff 
+529b 18430400 rshift temp ,temp 
+529c 68010370 fetch 2 ,mem_le_receive_window 
+529d 9840fe00 iadd temp ,pdata 
+529e 60010370 store 2 ,mem_le_receive_window 
+529f 20203cc3 branch lpm_lost 
+
+le_clean_att_list_handle_enable:
+52a0 79200025 set1 mark_ext_patch ,mark 
+52a1 44a74029 bpatch patch29_6 ,mem_patch29 
+52a2 70459500 jam 0 ,mem_le_switch_send_data 
+52a3 680944f8 fetcht 2 ,mem_le_notify_handle 
+52a4 20404f6a call le_att_check_notification_enable 
+52a5 1a220a00 copy rega ,contw 
+52a6 58000000 setarg 0 
+52a7 e0a08000 istore 1 ,contw 
+52a8 20600000 rtn 
+
+le_secure_connect_sm:
+52a9 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+52aa c1000000 rtneq 0 
+52ab 6800c564 fetch 1 ,mem_le_secure_connect_flag 
+52ac c1810000 rtnne le_sp_flag_commit_256 
+52ad 79200025 set1 mark_ext_patch ,mark 
+52ae 44a8402a bpatch patch2a_0 ,mem_patch2a 
+52af 70456400 jam sp_flag_standby ,mem_le_secure_connect_flag 
+52b0 6800c566 fetch 1 ,mem_le_secure_connect_state 
+52b1 c000d2e8 beq le_sc_stat_receive_public_key ,le_sc_receive_public_key 
+52b2 c00152f0 beq le_sc_stat_wait_send_public_key ,le_sc_wait_send_public_key 
+52b3 c001d2e1 beq le_sc_stat_send_public_key ,le_sc_send_public_key 
+52b4 c00352ca beq le_sc_stat_receive_dhkey ,le_sc_receive_dhkey 
+52b5 c003d2c2 beq le_sc_stat_wait_confirm_gkey ,le_sc_wait_confirm_gkey 
+52b6 c00452b8 beq le_sc_stat_passkey_wait_confirm ,le_sc_passkey_wait_confirm 
+52b7 20600000 rtn 
+
+le_sc_passkey_wait_confirm:
+52b8 6800c6eb fetch 1 ,mem_authentication_passkey_times 
+52b9 1fe20e00 copy pdata ,queue 
+52ba 1fe0fe01 increase 1 ,pdata 
+52bb 6000c6eb store 1 ,mem_authentication_passkey_times 
+52bc 6802456d fetch 4 ,mem_le_tk 
+52bd afefffff qisolate1 pdata 
+52be 58000080 setarg 0x80 
+52bf 7920fe00 setflag true ,0 ,pdata 
+52c0 6000c6ec store 1 ,mem_passkey_1bit 
+52c1 202052e4 branch le_sc_ready_send_pairing_confirm 
+
+le_sc_wait_confirm_gkey:
+52c2 6800c567 fetch 1 ,mem_le_sc_confirm_gkey_flag 
+52c3 70456700 jam flag_le_sc_confrim_null ,mem_le_sc_confirm_gkey_flag 
+52c4 c000d2c7 beq flag_le_sc_confrim_gkey_ok ,le_sc_confirm_gkey_ok 
+52c5 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+52c6 20600000 rtn 
+
+le_sc_confirm_gkey_ok:
+52c7 70456a02 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+52c8 7009bd4d jam xt_smp_pairing_dhkey_check ,mem_fifo_temp 
+52c9 20204bd6 branch le_xtype_fifo_in 
+
+le_sc_receive_dhkey:
+52ca 680088dd fetch 1 ,mem_sp_dhkey_invalid 
+52cb c001d2ce beq sp_key_valid_256 ,le_dhkey_ready 
+52cc 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+52cd 20600000 rtn 
+
+le_dhkey_ready:
+52ce 20406eae call function_f5 
+52cf 6800c56c fetch 1 ,mem_le_pairing_mode 
+52d0 c041d2d9 beq le_pairing_mode_secure_connect_passkey ,le_sc_confirm_gkey_ok_passkey 
+52d1 20405078 call le_set_tk_0 
+
+le_dhkey_ready_common:
+52d2 20406e9a call function_f6_ea 
+52d3 da200a11 arg mem_aes_cmac_temp ,rega 
+52d4 da400992 arg mem_sp_confirm_remote ,regb 
+52d5 df200010 arg 16 ,loopcnt 
+52d6 20407f55 call string_compare 
+52d7 2022d2da branch le_dhkey_check_ok ,zero 
+
+le_dhkey_check_fail:
+52d8 202050a6 branch le_pairing_failed 
+
+le_sc_confirm_gkey_ok_passkey:
+52d9 202052d2 branch le_dhkey_ready_common 
+
+le_dhkey_check_ok:
+52da 7044b201 jam 1 ,mem_ltk_exists 
+52db 6800c56c fetch 1 ,mem_le_pairing_mode 
+52dc c040d2c7 beq le_pairing_mode_secure_connect_justwork ,le_sc_confirm_gkey_ok 
+52dd c041d2c7 beq le_pairing_mode_secure_connect_passkey ,le_sc_confirm_gkey_ok 
+52de 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+52df 70456607 jam le_sc_stat_wait_confirm_gkey ,mem_le_secure_connect_state 
+52e0 20600000 rtn 
+
+le_sc_send_public_key:
+52e1 6800c56c fetch 1 ,mem_le_pairing_mode 
+52e2 c041d2e6 beq le_pairing_mode_secure_connect_passkey ,le_sc_send_public_key_passkey 
+52e3 7046ec00 jam 0 ,mem_passkey_1bit 
+
+le_sc_ready_send_pairing_confirm:
+52e4 7009bd43 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+52e5 20204bd6 branch le_xtype_fifo_in 
+
+le_sc_send_public_key_passkey:
+52e6 7046eb00 jam 0 ,mem_authentication_passkey_times 
+52e7 2020507d branch le_genernate_tk 
+
+le_sc_receive_public_key:
+52e8 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+52e9 6800c568 fetch 1 ,mem_le_sc_local_key_invalid 
+52ea c001d2ec beq sp_key_valid_256 ,le_public_key_ready 
+52eb 20600000 rtn 
+
+le_public_key_ready:
+52ec 7008dd00 jam sp_key_invalid ,mem_sp_dhkey_invalid 
+52ed 20407ab9 call sp_dhkey_calc_256 
+52ee 70456602 jam le_sc_stat_wait_send_public_key ,mem_le_secure_connect_state 
+52ef 20600000 rtn 
+
+le_sc_wait_send_public_key:
+52f0 20404bd0 call le_xtype_fifo_is_empty 
+52f1 203a52f4 branch le_public_key_ready_send ,blank 
+52f2 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+52f3 20600000 rtn 
+
+le_public_key_ready_send:
+52f4 7009bd4c jam xt_smp_pairing_public_key ,mem_fifo_temp 
+52f5 20404bd6 call le_xtype_fifo_in 
+52f6 7009bd4c jam xt_smp_pairing_public_key ,mem_fifo_temp 
+52f7 20404bd6 call le_xtype_fifo_in 
+52f8 7009bd4c jam xt_smp_pairing_public_key ,mem_fifo_temp 
+52f9 20204bd6 branch le_xtype_fifo_in 
+
+le_pairing_public_key_continue:
+52fa dfe008e2 arg mem_le_pubkey_remote_x_256 ,pdata 
+52fb 680883db fetcht 1 ,mem_le_public_length 
+52fc 98408a00 iadd temp ,contw 
+52fd 68008303 fetch 1 ,mem_le_rxbuf + 1 
+52fe 1fe27200 copy pdata ,loopcnt 
+52ff 98408400 iadd temp ,temp 
+5300 20407ec0 call memcpy_fast 
+5301 600883db storet 1 ,mem_le_public_length 
+5302 18427e00 copy temp ,pdata 
+5303 c1a00000 rtnne 64 
+5304 70456402 jam le_sp_flag_commit_256 ,mem_le_secure_connect_flag 
+5305 70456601 jam le_sc_stat_receive_public_key ,mem_le_secure_connect_state 
+5306 20600000 rtn 
+
+le_parse_continue:
+5307 79200025 set1 mark_ext_patch ,mark 
+5308 44a8c02a bpatch patch2a_1 ,mem_patch2a 
+5309 680083db fetch 1 ,mem_le_public_length 
+530a c08052fa bne 0 ,le_pairing_public_key_continue 
+530b 20204fd4 branch le_parse_continue_att 
+
+init_lmp:
+530c 20758000 rtn wake 
+
+init_lmp_work:
+530d 79200025 set1 mark_ext_patch ,mark 
+530e 44a9402a bpatch patch2a_2 ,mem_patch2a 
+530f 58000000 setarg 0 
+5310 60008048 store 1 ,mem_lmp_to_send 
+5311 60008055 store 1 ,mem_conn_sm 
+5312 60008078 store 1 ,mem_lmo_opcode1 
+5313 6000807c store 1 ,mem_lmo_opcode2 
+5314 6000c1f8 store 1 ,mem_esco_addr 
+5315 600083fd store 1 ,mem_auth_enable 
+5316 6000816c store 1 ,mem_connection_options 
+5317 600088d9 store 1 ,mem_pairing_auth 
+5318 7045f400 jam switch_flag_init ,mem_switch_flag 
+5319 70024d00 jam 0 ,mem_switch_fail_master_count 
+531a 7003fe00 jam null_encryp ,mem_wait_encryption 
+
+init_lmp_reinit:
+531b 7008d900 jam 0 ,mem_pairing_auth 
+531c 7008d800 jam 0 ,mem_sp_localsm 
+531d 7003f700 jam 0 ,mem_lmp_conn_state 
+
+parse_rx_done:
+531e 20600000 rtn 
+
+parse_lmp:
+531f 79200025 set1 mark_ext_patch ,mark 
+5320 44a9c02a bpatch patch2a_3 ,mem_patch2a 
+5321 2054d90a call setlocalsm_master ,master 
+5322 2454d90e ncall setlocalsm_slave ,master 
+5323 204058c5 call lmo_fifo_check 
+5324 247a0000 nrtn blank 
+5325 6800804c fetch 1 ,mem_state_map 
+5326 c4030000 rtnbit0 smap_rxlmp 
+5327 793ffe06 set0 smap_rxlmp ,pdata 
+5328 793f8001 set0 mark_rxbuf_inuse ,mark 
+5329 6000804c store 1 ,mem_state_map 
+532a 68008475 fetch 1 ,mem_rxbuf 
+532b 6808804c fetcht 1 ,mem_state_map 
+532c 2feffe00 isolate1 smap_lmptidinit ,pdata 
+532d 79208401 setflag true ,smap_lmptid ,temp 
+532e 6008804c storet 1 ,mem_state_map 
+532f 18410402 and_into 0x2 ,temp 
+5330 6008807f storet 1 ,mem_lmo_tid2 
+5331 6808804c fetcht 1 ,mem_state_map 
+5332 1fe37e00 rshift pdata ,pdata 
+5333 6000807d store 1 ,mem_lmi_opcode2 
+5334 79200025 set1 mark_ext_patch ,mark 
+5335 44aa402a bpatch patch2a_4 ,mem_patch2a 
+5336 6800807d fetch 1 ,mem_lmi_opcode2 
+5337 c03fd37f beq lmp_escape ,parse_lmp_escape 
+5338 c001d3cb beq lmp_accepted ,parse_lmp_accepted 
+5339 c00253dd beq lmp_not_accepted ,parse_lmp_not_accepted 
+533a c01e5372 beq lmp_set_afh ,parse_lmp_set_afh 
+533b c002d36e beq lmp_clkoffset_req ,parse_lmp_clkoffset_req 
+533c c007d5bf beq lmp_encryption_mode_req ,parse_lmp_encryption_mode_req 
+533d c0085440 beq lmp_encryption_key_size_req ,parse_lmp_crypt_key 
+533e c011d45e beq lmp_auto_rate ,parse_lmp_auto_rate 
+533f c01cd5d8 beq lmp_test_control ,parse_lmp_test_control 
+5340 c01c55d3 beq lmp_test_activate ,parse_lmp_test_activate 
+5341 c018d443 beq lmp_setup_complete ,parse_lmp_setup_complete 
+5342 c01bd4cc beq lmp_supervision_timeout ,parse_lmp_supervision_timeout 
+5343 c013d4c8 beq lmp_features_req ,parse_lmp_features_req 
+5344 c019d4c5 beq lmp_host_connection_req ,parse_lmp_conn_req 
+5345 c012d4ca beq lmp_version_req ,parse_lmp_version_req 
+5346 c013545a beq lmp_version_res ,parse_lmp_version_res 
+5347 c003d452 beq lmp_detach ,parse_lmp_detach 
+5348 c016d449 beq lmp_max_slot ,parse_lmp_max_slot 
+5349 c017544a beq lmp_max_slot_req ,parse_lmp_max_slot_req 
+534a c000d4c1 beq lmp_name_req ,parse_lmp_name_req 
+534b c00154ac beq lmp_name_res ,parse_lmp_name_res 
+534c c01455ca beq lmp_features_res ,parse_lmp_features_res 
+534d c004d4a2 beq lmp_comb_key ,parse_lmp_comb_key 
+534e c005d47b beq lmp_au_rand ,parse_lmp_au_rand 
+534f c004545f beq lmp_in_rand ,parse_lmp_in_rand 
+5350 c0065486 beq lmp_sres ,parse_lmp_sres 
+5351 c00fd456 beq lmp_incr_power_req ,parse_lmp_incr_power 
+5352 c0105458 beq lmp_decr_power_req ,parse_lmp_decr_power 
+5353 c010d4e6 beq lmp_max_power ,parse_lmp_max_power 
+5354 c01154e6 beq lmp_min_power ,parse_lmp_min_power 
+5355 c01ad4e7 beq lmp_page_mode_req ,parse_lmp_page_mode_req 
+5356 c01b54e8 beq lmp_page_scan_mode_req ,parse_lmp_page_scan_mode_req 
+5357 c01254e6 beq lmp_preferred_rate ,parse_lmp_preferred_rate 
+5358 c01a54e9 beq lmp_slot_offset ,parse_lmp_slot_offset 
+5359 c00bd4f2 beq lmp_sniff_req ,parse_lmp_sniff_req 
+535a c008d509 beq lmp_start_encryption_req ,parse_lmp_start_encryption_req 
+535b c009550d beq lmp_stop_encryption_req ,parse_lmp_stop_encryption_req 
+535c c009d50f beq lmp_switch_req ,parse_lmp_switch_req 
+535d c006d521 beq lmp_temp_rand ,parse_lmp_temp_rand 
+535e c0075521 beq lmp_temp_key ,parse_lmp_temp_key 
+535f c017d4c6 beq lmp_timing_accuracy_req ,parse_lmp_timing_accuracy_req 
+5360 c0185521 beq lmp_timing_accuracy_res ,parse_lmp_timing_accuracy_res 
+5361 c0055521 beq lmp_unit_key ,parse_lmp_unit_key 
+5362 c00c5522 beq lmp_unsniff_req ,parse_lmp_unsniff_req 
+5363 c0195521 beq lmp_use_semi_permanent_key ,parse_lmp_use_semi_permanend_key 
+5364 c01ed527 beq lmp_encapsulated_header ,parse_lmp_encapsulated_header 
+5365 c01f5568 beq lmp_encapsulated_payload ,parse_lmp_encapsulated_payload 
+5366 c01fd562 beq lmp_simple_pairing_confirm ,parse_simple_pairing_confirm 
+5367 c020558f beq lmp_simple_pairing_number ,parse_lmp_simple_pairing_number 
+5368 c020d5a1 beq lmp_dhkey_check ,parse_dhkey_check 
+5369 c00355be beq lmp_clkoffset_res ,parse_lmp_clkoffset_res 
+536a c01d5370 beq lmp_enc_key_size_mask_req ,parse_enc_key_size_mask_req 
+
+reject_unknown_packet:
+536b 70007e19 jam unknown_lmp_pdu ,mem_lmo_reason2 
+
+reject_lmp_packet:
+536c 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+536d 20600000 rtn 
+
+parse_lmp_clkoffset_req:
+536e 70007c06 jam lmp_clkoffset_res ,mem_lmo_opcode2 
+536f 20600000 rtn 
+
+parse_enc_key_size_mask_req:
+5370 70007c3b jam lmp_enc_key_size_mask_res ,mem_lmo_opcode2 
+5371 20600000 rtn 
+
+parse_lmp_set_afh:
+5372 68020476 fetch 4 ,mem_rxbuf + 1 
+5373 1fe3fe00 lshift pdata ,pdata 
+5374 60024172 store 4 ,mem_afh_instant 
+5375 6800847a fetch 1 ,mem_rxbuf + 5 
+5376 6000c179 store 1 ,mem_afh_new_mod 
+5377 6802847b fetch 5 ,mem_rxbuf + 6 
+5378 6002c187 store 5 ,mem_afh_map_new 
+5379 68028480 fetch 5 ,mem_rxbuf + 11 
+537a e0a28000 istore 5 ,contw 
+537b 68008031 fetch 1 ,mem_mode 
+537c 79207e03 set1 afh_change ,pdata 
+537d 60008031 store 1 ,mem_mode 
+537e 20600000 rtn 
+
+parse_lmp_escape:
+537f 79200025 set1 mark_ext_patch ,mark 
+5380 44aac02a bpatch patch2a_5 ,mem_patch2a 
+5381 68008476 fetch 1 ,mem_rxbuf + 1 
+5382 79207e07 set1 7 ,pdata 
+5383 6000807d store 1 ,mem_lmi_opcode2 
+5384 c040d3a2 beq lmp_ext_accepted ,parse_lmpext_accepted 
+5385 c04153a7 beq lmp_not_accepted_ext ,parse_lmpext_not_accepted 
+5386 c04ad4cd beq lmp_sniff_subrating_req ,parse_lmp_sniff_subrating_req 
+5387 c04b54e6 beq lmp_sniff_subrating_res ,parse_lmp_sniff_subrating_res 
+5388 c045d4db beq lmp_packet_type_table_req ,parse_lmpext_packet_type_table_req 
+5389 c041d3bf beq lmp_ext_features_req ,parse_lmpext_features_req 
+538a c04253c1 beq lmp_ext_features_res ,parse_lmpext_features_res 
+538b c0485394 beq lmp_ext_chn_classification_req ,parse_lmpext_chn_classification_req 
+538c c04bd3b8 beq lmp_pause_encryption_req ,parse_lmpext_pause_encrypt 
+538d c04c53bd beq lmp_resume_encryption_req ,parse_lmpext_resume_encrypt 
+538e c04cd397 beq lmp_io_cap_req ,parse_lmpext_iocap_req 
+538f c04d539a beq lmp_io_cap_res ,parse_lmpext_iocap_res 
+5390 c1420000 rtneq lmp_ext_features_res 
+
+reject_unknown_ext_packet:
+5391 70007c82 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+5392 70007e19 jam unknown_lmp_pdu ,mem_lmo_reason2 
+5393 20600000 rtn 
+
+parse_lmpext_chn_classification_req:
+5394 70007c82 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+5395 70007e2e jam not_support_chn_classification ,mem_lmo_reason2 
+5396 20600000 rtn 
+
+parse_lmpext_iocap_req:
+5397 2040539c call iocap_lmpext_load 
+5398 70007c9a jam lmp_io_cap_res ,mem_lmo_opcode2 
+5399 20600000 rtn 
+
+parse_lmpext_iocap_res:
+539a 2040539c call iocap_lmpext_load 
+539b 202053a0 branch iocap_lmpext_common 
+
+iocap_lmpext_load:
+539c d8a046e6 arg mem_sp_iocap_remote ,contw 
+539d 68018477 fetch 3 ,mem_rxbuf + 2 
+539e e0a18000 istore 3 ,contw 
+539f 20600000 rtn 
+
+iocap_lmpext_common:
+53a0 2020f6f3 branch master_set_mem_master_sp_flag ,true 
+53a1 20600000 rtn 
+
+parse_lmpext_accepted:
+53a2 68008478 fetch 1 ,mem_rxbuf + 3 
+53a3 79207e07 set1 7 ,pdata 
+53a4 600083ef store 1 ,mem_lmi_accepted_opcode 
+53a5 c045d3ac beq lmp_packet_type_table_req ,parse_lmpext_accepted_ptt 
+53a6 20600000 rtn 
+
+parse_lmpext_not_accepted:
+53a7 68008478 fetch 1 ,mem_rxbuf + 3 
+53a8 79207e07 set1 7 ,pdata 
+53a9 600083ef store 1 ,mem_lmi_accepted_opcode 
+53aa c045d3b0 beq lmp_packet_type_table_req ,parse_lmpext_not_accepted_ptt 
+53ab 20600000 rtn 
+
+parse_lmpext_accepted_ptt:
+53ac 6800c1fa fetch 1 ,mem_ptt 
+53ad 6808804c fetcht 1 ,mem_state_map 
+53ae 7d3a0405 nsetflag blank ,smap_edr ,temp 
+53af 6008804c storet 1 ,mem_state_map 
+
+parse_lmpext_not_accepted_ptt:
+53b0 68008030 fetch 1 ,mem_state 
+53b1 c4028000 rtnbit0 state_init_seq 
+53b2 793ffe05 set0 state_init_seq ,pdata 
+53b3 60008030 store 1 ,mem_state 
+53b4 680083fd fetch 1 ,mem_auth_enable 
+53b5 247a0000 nrtn blank 
+53b6 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+53b7 20600000 rtn 
+
+parse_lmpext_pause_encrypt:
+53b8 2434d3bb nbranch parse_lmpext_pause_encrypt_slave ,master 
+53b9 70007c12 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+53ba 202058f6 branch tid_reply 
+
+parse_lmpext_pause_encrypt_slave:
+53bb 70007c97 jam lmp_pause_encryption_req ,mem_lmo_opcode2 
+53bc 20600000 rtn 
+
+parse_lmpext_resume_encrypt:
+53bd 204058f6 call tid_reply 
+53be 20205615 branch lmp_start_encryption 
+
+parse_lmpext_features_req:
+53bf 70007c84 jam lmp_ext_features_res ,mem_lmo_opcode2 
+53c0 20600000 rtn 
+
+parse_lmpext_features_res:
+53c1 68088479 fetcht 1 ,mem_rxbuf + 4 
+53c2 18410401 and temp ,0x1 ,temp 
+53c3 600883f6 storet 1 ,mem_remote_sppcap 
+53c4 6800c271 fetch 1 ,mem_hci_cmd 
+53c5 c0a8d3c7 bne hci_cmd_wait_remote_ext_feature ,parse_lmpext_features_res_not_hci 
+53c6 70427100 jam 0 ,mem_hci_cmd 
+
+parse_lmpext_features_res_not_hci:
+53c7 68008055 fetch 1 ,mem_conn_sm 
+53c8 c18a8000 rtnne conn_sm_wait_features_ext 
+53c9 70005504 jam conn_sm_send_conn_req ,mem_conn_sm 
+53ca 20205926 branch process_conn_sm 
+
+parse_lmp_accepted:
+53cb 79200025 set1 mark_ext_patch ,mark 
+53cc 44ab402a bpatch patch2a_6 ,mem_patch2a 
+53cd 68008476 fetch 1 ,mem_rxbuf + 1 
+53ce 600083ef store 1 ,mem_lmi_accepted_opcode 
+53cf c019d3f4 beq lmp_host_connection_req ,parse_lmp_accepted_hostconn 
+53d0 c0045403 beq lmp_in_rand ,parse_lmp_accepted_inrand 
+53d1 c007d40a beq lmp_encryption_mode_req ,parse_lmp_accepted_enc_mode 
+53d2 c0085410 beq lmp_encryption_key_size_req ,parse_lmp_accepted_enc_keysize 
+53d3 c008d411 beq lmp_start_encryption_req ,parse_lmp_accepted_start_enc 
+53d4 c0095419 beq lmp_stop_encryption_req ,parse_lmp_accepted_stop_enc 
+53d5 c00c542f beq lmp_unsniff_req ,parse_lmp_accepted_unsniff_req 
+53d6 c00bd432 beq lmp_sniff_req ,parse_lmp_accepted_sniff_req 
+53d7 c009d3eb beq lmp_switch_req ,parse_lmp_accepted_switch 
+53d8 c01ed535 beq lmp_encapsulated_header ,parse_lmp_accepted_encapsulated_header 
+53d9 c01f5581 beq lmp_encapsulated_payload ,parse_lmp_accepted_encapsulated_payload 
+53da c0205537 beq lmp_simple_pairing_number ,parse_lmp_accepted_simple_pairing_number 
+53db c020d554 beq lmp_dhkey_check ,parse_lmp_accepted_dhkey_check 
+53dc 20600000 rtn 
+
+parse_lmp_not_accepted:
+53dd 79200025 set1 mark_ext_patch ,mark 
+53de 44abc02a bpatch patch2a_7 ,mem_patch2a 
+53df 68008476 fetch 1 ,mem_rxbuf + 1 
+53e0 600083ef store 1 ,mem_lmi_accepted_opcode 
+53e1 c000d426 beq lmp_name_req ,parse_lmp_not_accepted_name_req 
+53e2 c019d3fe beq lmp_host_connection_req ,parse_lmp_not_accepted_hostconn 
+53e3 c005d41a beq lmp_au_rand ,parse_lmp_not_accepted_aurand 
+53e4 c004541d beq lmp_in_rand ,parse_lmp_not_accepted_inrand 
+53e5 c009d3ee beq lmp_switch_req ,parse_lmp_not_accepted_switch 
+53e6 c0205427 beq lmp_simple_pairing_number ,parse_lmp_not_accepted_simple_pairing_number 
+53e7 c020d42a beq lmp_dhkey_check ,parse_lmp_not_accepted_dhkey_check 
+53e8 c00c542d beq lmp_unsniff_req ,parse_lmp_not_accepted_unsniff_req 
+53e9 c00bd43e beq lmp_sniff_req ,parse_lmp_not_acdcept_sniff_req 
+53ea 20600000 rtn 
+
+parse_lmp_accepted_switch:
+53eb 7009bd20 jam bt_evt_switch_accept ,mem_fifo_temp 
+53ec 20407d86 call ui_ipc_send_event 
+53ed 2020320a branch role_switch_prepare0 
+
+parse_lmp_not_accepted_switch:
+53ee 7009bd19 jam bt_evt_switch_not_accept ,mem_fifo_temp 
+53ef 20407d86 call ui_ipc_send_event 
+53f0 7045f402 jam switch_flag_not_accept ,mem_switch_flag 
+53f1 58000050 setarg timer_switch_waite 
+53f2 d8e0000a arg switch_wait_timer ,queue 
+53f3 20207ed4 branch timer_init 
+
+parse_lmp_accepted_hostconn:
+53f4 680083f7 fetch 1 ,mem_lmp_conn_state 
+53f5 79207e00 set1 received_conn_req ,pdata 
+53f6 600083f7 store 1 ,mem_lmp_conn_state 
+53f7 7009bd01 jam bt_evt_bb_connected ,mem_fifo_temp 
+53f8 20407d86 call ui_ipc_send_event 
+53f9 70007c8b jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+
+parse_lmp_accepted_hostconn_ctn:
+53fa 68008055 fetch 1 ,mem_conn_sm 
+53fb c082d31e bne conn_sm_wait_conn_accept ,parse_rx_done 
+53fc 70005506 jam conn_sm_auth_pair ,mem_conn_sm 
+53fd 20600000 rtn 
+
+parse_lmp_not_accepted_hostconn:
+53fe 7003f00b jam acl_connection_already_exists ,mem_disconn_reason_send 
+53ff 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5400 70005500 jam conn_sm_standby ,mem_conn_sm 
+5401 2020d31e branch parse_rx_done ,true 
+5402 20600000 rtn 
+
+parse_lmp_accepted_inrand:
+5403 6800c25d fetch 1 ,mem_link_key_exists 
+5404 247a0000 nrtn blank 
+5405 204034a9 call clear_linkkey 
+5406 20405613 call lmp_generate_key 
+5407 20748000 rtn master 
+5408 79200021 set1 mark_slave_in_rand_accepted ,mark 
+5409 20600000 rtn 
+
+parse_lmp_accepted_enc_mode:
+540a 24748000 nrtn master 
+540b 70007c10 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+540c 6800804c fetch 1 ,mem_state_map 
+540d c4010000 rtnbit0 smap_encryption 
+540e 70007c12 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+540f 20600000 rtn 
+
+parse_lmp_accepted_enc_keysize:
+5410 20205615 branch lmp_start_encryption 
+
+parse_lmp_accepted_start_enc:
+5411 20405672 call send_create_conn_start_l2cap_timer_sm 
+5412 68008030 fetch 1 ,mem_state 
+5413 c3820000 rtnbit1 state_conn_comp 
+5414 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+5415 68008055 fetch 1 ,mem_conn_sm 
+5416 c1850000 rtnne conn_sm_encrypt_wait 
+5417 7000550b jam conn_sm_encrypt_wait_clear ,mem_conn_sm 
+5418 20600000 rtn 
+
+parse_lmp_accepted_stop_enc:
+5419 20600000 rtn 
+
+parse_lmp_not_accepted_aurand:
+
+parse_lmp_not_accepted_aurand_send_detach:
+541a 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+541b 7003f013 jam other_end_terminated ,mem_disconn_reason_send 
+541c 20600000 rtn 
+
+parse_lmp_not_accepted_inrand:
+541d 68008477 fetch 1 ,mem_rxbuf + 2 
+541e c0035423 beq key_missing ,parse_lmp_inrand_key_missing 
+541f c18c0000 rtnne pairing_not_allowed 
+5420 7003f018 jam pairing_not_allowed ,mem_disconn_reason_send 
+5421 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5422 20600000 rtn 
+
+parse_lmp_inrand_key_missing:
+5423 7003f006 jam key_missing ,mem_disconn_reason_send 
+5424 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5425 20600000 rtn 
+
+parse_lmp_not_accepted_name_req:
+5426 20600000 rtn 
+
+parse_lmp_not_accepted_simple_pairing_number:
+5427 7008d200 jam sp_stat_null ,mem_sp_state 
+5428 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5429 2020531e branch parse_rx_done 
+
+parse_lmp_not_accepted_dhkey_check:
+542a 7008d200 jam sp_stat_null ,mem_sp_state 
+542b 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+542c 2020531e branch parse_rx_done 
+
+parse_lmp_not_accepted_unsniff_req:
+542d 7009bd24 jam bt_evt_unsniff_not_accept ,mem_fifo_temp 
+542e 20207d86 branch ui_ipc_send_event 
+
+parse_lmp_accepted_unsniff_req:
+542f 7009bd23 jam bt_evt_unsniff_accept ,mem_fifo_temp 
+5430 20407d86 call ui_ipc_send_event 
+5431 2020376a branch sniff_exit 
+
+parse_lmp_accepted_sniff_req:
+5432 7009bd22 jam bt_evt_sniff_accept ,mem_fifo_temp 
+5433 20407d86 call ui_ipc_send_event 
+5434 58000000 setarg 0 
+5435 60010075 store 2 ,mem_dsniff 
+5436 68014284 fetch 2 ,mem_sniff_param_interval 
+5437 1fe3fe00 lshift pdata ,pdata 
+5438 60010032 store 2 ,mem_tsniff 
+5439 6800c286 fetch 1 ,mem_sniff_param_attempt 
+543a 60008073 store 1 ,mem_sniff_attempt 
+543b 6800c288 fetch 1 ,mem_sniff_param_timeout 
+543c 60008074 store 1 ,mem_sniff_timeout 
+543d 20203746 branch sniff_init 
+
+parse_lmp_not_acdcept_sniff_req:
+543e 7009bd21 jam bt_evt_sniff_not_accept ,mem_fifo_temp 
+543f 20207d86 branch ui_ipc_send_event 
+
+parse_lmp_crypt_key:
+5440 68088476 fetcht 1 ,mem_rxbuf + 1 
+5441 60088054 storet 1 ,mem_key_size 
+5442 20205454 branch accept_lmp_msg 
+
+parse_lmp_setup_complete:
+5443 680083f7 fetch 1 ,mem_lmp_conn_state 
+5444 79207e02 set1 received_setup_complete ,pdata 
+5445 600083f7 store 1 ,mem_lmp_conn_state 
+5446 c3818000 rtnbit1 sent_setup_complete 
+5447 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+5448 2020531e branch parse_rx_done 
+
+parse_lmp_max_slot:
+5449 20600000 rtn 
+
+parse_lmp_max_slot_req:
+544a 6800c170 fetch 1 ,mem_max_slot 
+544b 68088476 fetcht 1 ,mem_rxbuf + 1 
+544c 98467c00 isub temp ,null 
+544d 20215454 branch accept_lmp_msg ,positive 
+544e 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+544f 70007e1f jam unspecified_error ,mem_lmo_reason2 
+5450 70007d2e jam lmp_max_slot_req ,mem_lmi_opcode2 
+5451 20600000 rtn 
+
+parse_lmp_detach:
+5452 20405764 call prepare_disconnect 
+5453 20205454 branch accept_lmp_msg 
+
+accept_lmp_msg:
+5454 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5455 20600000 rtn 
+
+parse_lmp_incr_power:
+5456 70007c21 jam lmp_max_power ,mem_lmo_opcode2 
+5457 20600000 rtn 
+
+parse_lmp_decr_power:
+5458 70007c22 jam lmp_min_power ,mem_lmo_opcode2 
+5459 20600000 rtn 
+
+parse_lmp_version_res:
+545a 68008055 fetch 1 ,mem_conn_sm 
+545b c1098000 rtneq conn_sm_wait_version 
+545c 70005502 jam conn_sm_send_features ,mem_conn_sm 
+545d 20600000 rtn 
+
+parse_lmp_auto_rate:
+545e 20600000 rtn 
+
+parse_lmp_in_rand:
+545f 20405610 call lmp_copy_rand 
+5460 7003fa01 jam pincode_state_wait_pincode ,mem_pincode_state 
+5461 7009bd0a jam bt_evt_pincode_req ,mem_fifo_temp 
+5462 20407d86 call ui_ipc_send_event 
+5463 204058fe call tid_check 
+5464 2420d618 nbranch lmp_accept_inrand ,true 
+5465 2434d46a nbranch parse_lmp_inrand_res ,master 
+5466 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+5467 70007d08 jam lmp_in_rand ,mem_lmi_opcode2 
+5468 70007e23 jam transaction_collision ,mem_lmo_reason2 
+5469 20600000 rtn 
+
+parse_lmp_inrand_res:
+546a 6800804b fetch 1 ,mem_op 
+546b 79207e02 set1 op_inrand_req ,pdata 
+546c 6000804b store 1 ,mem_op 
+546d 20600000 rtn 
+
+pop_tid_follow:
+546e 6808804c fetcht 1 ,mem_state_map 
+546f 7d3a0401 nsetflag blank ,smap_lmptid ,temp 
+5470 6008804c storet 1 ,mem_state_map 
+5471 20600000 rtn 
+
+push_tid_follow:
+5472 6800807f fetch 1 ,mem_lmo_tid2 
+5473 1fe37e00 rshift pdata ,pdata 
+5474 1fe17e01 and_into 1 ,pdata 
+5475 20600000 rtn 
+
+parse_lmp_au_rand_moudle:
+5476 6800c132 fetch 1 ,mem_device_option 
+5477 c1850000 rtnne dvc_op_module 
+5478 680088d9 fetch 1 ,mem_pairing_auth 
+5479 205a6402 call load_device_list ,blank 
+547a 20600000 rtn 
+
+parse_lmp_au_rand:
+547b 20405476 call parse_lmp_au_rand_moudle 
+547c 20405472 call push_tid_follow 
+547d 600083fb store 1 ,mem_sres_tid 
+547e 20405610 call lmp_copy_rand 
+547f 70007c0c jam lmp_sres ,mem_lmo_opcode2 
+5480 6800c25d fetch 1 ,mem_link_key_exists 
+5481 247a0000 nrtn blank 
+5482 68008030 fetch 1 ,mem_state 
+5483 c3830000 rtnbit1 state_combkey 
+5484 70007e06 jam key_missing ,mem_lmo_reason2 
+5485 2020536c branch reject_lmp_packet 
+
+parse_lmp_sres:
+5486 da200040 arg mem_plap ,rega 
+5487 20406fad call function_e1 
+5488 68020476 fetch 4 ,mem_rxbuf + 1 
+5489 680a04b6 fetcht 4 ,mem_input_store 
+548a 98467c00 isub temp ,null 
+548b 2022d48f branch authentication_ok ,zero 
+548c 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+548d 7003f005 jam authentication_failure_error ,mem_disconn_reason_send 
+548e 20600000 rtn 
+
+authentication_ok:
+548f 20405493 call authentication_ok_common 
+5490 6800c6e2 fetch 1 ,mem_ssp_enable 
+5491 203a5555 branch pairing_success ,blank 
+5492 20600000 rtn 
+
+authentication_ok_common:
+5493 204070ab call copy_aco 
+5494 204031da call linkkey_ready 
+5495 6800804b fetch 1 ,mem_op 
+5496 2feffe01 isolate1 op_auth_req ,pdata 
+5497 793ffe01 set0 op_auth_req ,pdata 
+5498 6000804b store 1 ,mem_op 
+5499 68008055 fetch 1 ,mem_conn_sm 
+549a c00cd49d beq conn_sm_auth_wait ,authentication_ok_conn_sm 
+549b c00c549d beq conn_sm_pairing_wait ,authentication_ok_conn_sm 
+549c 20600000 rtn 
+
+authentication_ok_conn_sm:
+549d 680088d9 fetch 1 ,mem_pairing_auth 
+549e c1800000 rtnne defalt_pairing_auth 
+549f 6800804c fetch 1 ,mem_state_map 
+54a0 c3810000 rtnbit1 smap_encryption 
+54a1 202059bd branch host_create_conn_encrypt 
+
+parse_lmp_comb_key:
+54a2 da200476 arg mem_rxbuf + 1 ,rega 
+54a3 da4004a6 arg mem_kinit ,regb 
+54a4 d8a00486 arg mem_random_number ,contw 
+54a5 20407077 call xor16 
+54a6 da200040 arg mem_plap ,rega 
+54a7 2040591c call generate_linkkey 
+54a8 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+54a9 68008030 fetch 1 ,mem_state 
+54aa c3035613 bbit0 state_combkey ,lmp_generate_key 
+54ab 20600000 rtn 
+
+parse_lmp_name_res:
+54ac 6801015e fetch 2 ,mem_len 
+54ad 1fe0f3fd add pdata ,-3 ,loopcnt 
+54ae 68088476 fetcht 1 ,mem_rxbuf + 1 
+54af 58000100 setarg mem_tmp_buffer 
+54b0 98408a00 iadd temp ,contw 
+54b1 d8c00478 arg mem_rxbuf + 3 ,contr 
+54b2 20407ecd call memcpy 
+54b3 68088053 fetcht 1 ,mem_name_offset 
+54b4 68008477 fetch 1 ,mem_rxbuf + 2 
+54b5 98467e00 isub temp ,pdata 
+54b6 1fe67c0e sub pdata ,14 ,null 
+54b7 202154bc branch parse_lmp_name_res_end ,positive 
+54b8 1840fe0e add temp ,14 ,pdata 
+54b9 60008053 store 1 ,mem_name_offset 
+54ba 70007c01 jam lmp_name_req ,mem_lmo_opcode2 
+54bb 20600000 rtn 
+
+parse_lmp_name_res_end:
+54bc 6800804c fetch 1 ,mem_state_map 
+54bd 79207e03 set1 smap_name_res ,pdata 
+54be 6000804c store 1 ,mem_state_map 
+54bf c282561d bbit1 smap_name_req ,lmp_disconnect 
+54c0 20600000 rtn 
+
+parse_lmp_name_req:
+54c1 68008476 fetch 1 ,mem_rxbuf + 1 
+54c2 6000807d store 1 ,mem_lmi_opcode2 
+54c3 70007c02 jam lmp_name_res ,mem_lmo_opcode2 
+54c4 20600000 rtn 
+
+parse_lmp_conn_req:
+54c5 20205454 branch accept_lmp_msg 
+
+parse_lmp_timing_accuracy_req:
+54c6 70007c30 jam lmp_timing_accuracy_res ,mem_lmo_opcode2 
+54c7 20600000 rtn 
+
+parse_lmp_features_req:
+54c8 70007c28 jam lmp_features_res ,mem_lmo_opcode2 
+54c9 20600000 rtn 
+
+parse_lmp_version_req:
+54ca 70007c26 jam lmp_version_res ,mem_lmo_opcode2 
+54cb 20600000 rtn 
+
+parse_lmp_supervision_timeout:
+54cc 20600000 rtn 
+
+parse_lmp_sniff_subrating_req:
+54cd 68010032 fetch 2 ,mem_tsniff 
+54ce 98000400 iforce temp 
+54cf 68008477 fetch 1 ,mem_rxbuf + 2 
+54d0 60008094 store 1 ,mem_subsniff_rate 
+54d1 984f8400 imul32 temp ,temp 
+54d2 68010478 fetch 2 ,mem_rxbuf + 3 
+54d3 1fe3fe00 lshift pdata ,pdata 
+54d4 60010095 store 2 ,mem_subsniff_tcmax 
+54d5 6802047a fetch 4 ,mem_rxbuf + 5 
+54d6 1fe3fe00 lshift pdata ,pdata 
+54d7 60020090 store 4 ,mem_subsniff_instant 
+54d8 18427e00 deposit temp 
+54d9 60010097 store 2 ,mem_subsniff_tsniff 
+54da 20600000 rtn 
+
+parse_lmpext_packet_type_table_req:
+54db 6808c1fa fetcht 1 ,mem_ptt 
+54dc 68008477 fetch 1 ,mem_rxbuf + 2 
+54dd 9842fc00 ixor temp ,null 
+54de 2422d391 nbranch reject_unknown_ext_packet ,zero 
+54df 2feffe00 isolate1 0 ,pdata 
+54e0 6800804c fetch 1 ,mem_state_map 
+54e1 7920fe05 setflag true ,smap_edr ,pdata 
+54e2 6000804c store 1 ,mem_state_map 
+54e3 70007c81 jam lmp_ext_accepted ,mem_lmo_opcode2 
+54e4 70007d8b jam lmp_packet_type_table_req ,mem_lmi_opcode2 
+54e5 20600000 rtn 
+
+parse_lmp_sniff_subrating_res:
+
+parse_lmp_preferred_rate:
+
+parse_lmp_max_power:
+
+parse_lmp_min_power:
+54e6 20600000 rtn 
+
+parse_lmp_page_mode_req:
+54e7 20205454 branch accept_lmp_msg 
+
+parse_lmp_page_scan_mode_req:
+54e8 20205454 branch accept_lmp_msg 
+
+parse_lmp_slot_offset:
+54e9 68010476 fetch 2 ,mem_rxbuf + 1 
+54ea 60010170 store 2 ,mem_slot_offset 
+54eb 20600000 rtn 
+
+parse_lmp_sniff_req_check_sniff_para:
+54ec 68010479 fetch 2 ,mem_rxbuf + 4 
+54ed 6808c212 fetcht 1 ,mem_lpm_mult 
+54ee 984ffe00 imul32 temp ,pdata 
+54ef d8400640 arg 0x640 ,temp 
+54f0 98467c00 isub temp ,null 
+54f1 20600000 rtn 
+
+parse_lmp_sniff_req:
+54f2 204054ec call parse_lmp_sniff_req_check_sniff_para 
+54f3 20215507 branch lmp_reject_sniff ,positive 
+54f4 68008030 fetch 1 ,mem_state 
+54f5 c280d507 bbit1 state_insniff ,lmp_reject_sniff 
+54f6 68010477 fetch 2 ,mem_rxbuf + 2 
+54f7 1fe3fe00 lshift pdata ,pdata 
+54f8 60010075 store 2 ,mem_dsniff 
+54f9 68010479 fetch 2 ,mem_rxbuf + 4 
+54fa 1fe3fe00 lshift pdata ,pdata 
+54fb 60010032 store 2 ,mem_tsniff 
+54fc 6801047b fetch 2 ,mem_rxbuf + 6 
+54fd 60008073 store 1 ,mem_sniff_attempt 
+54fe 98000400 iforce temp 
+54ff 6801047d fetch 2 ,mem_rxbuf + 8 
+5500 60008074 store 1 ,mem_sniff_timeout 
+5501 98467c00 isub temp ,null 
+5502 24215504 nbranch set_big_value_to_attempt ,positive 
+5503 60008073 store 1 ,mem_sniff_attempt 
+
+set_big_value_to_attempt:
+5504 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5505 70007d17 jam lmp_sniff_req ,mem_lmi_opcode2 
+5506 20600000 rtn 
+
+lmp_reject_sniff:
+5507 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5508 2020536c branch reject_lmp_packet 
+
+parse_lmp_start_encryption_req:
+5509 20405454 call accept_lmp_msg 
+550a 20405610 call lmp_copy_rand 
+550b 20406fb0 call function_e3 
+550c 20203736 branch start_encryption 
+
+parse_lmp_stop_encryption_req:
+550d 20405454 call accept_lmp_msg 
+550e 2020373f branch stop_encryption 
+
+parse_lmp_switch_req:
+550f 68020476 fetch 4 ,mem_rxbuf + 1 
+5510 1fe3fe00 lshift pdata ,pdata 
+5511 2034d51b branch parse_lmp_switch_accept ,master 
+5512 6808c25d fetcht 1 ,mem_link_key_exists 
+5513 243a5518 nbranch parse_lmp_switch_req_clear_mark ,blank 
+
+parse_lmp_switch_req_not_accept:
+5514 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+5515 70007d13 jam lmp_switch_req ,mem_lmi_opcode2 
+5516 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5517 20600000 rtn 
+
+parse_lmp_switch_req_clear_mark:
+5518 70007c34 jam lmp_slot_offset ,mem_lmo_opcode2 
+5519 70005500 jam 0 ,mem_conn_sm 
+551a 20203206 branch role_switch_prepare 
+
+parse_lmp_switch_accept:
+551b 20403206 call role_switch_prepare 
+551c 79200022 set1 mark_reconn_recieve_switch ,mark 
+551d 6800816c fetch 1 ,mem_connection_options 
+551e 793ffe02 set0 connection_switch ,pdata 
+551f 6000816c store 1 ,mem_connection_options 
+5520 20205454 branch accept_lmp_msg 
+
+parse_lmp_temp_rand:
+
+parse_lmp_temp_key:
+
+parse_lmp_timing_accuracy_res:
+
+parse_lmp_unit_key:
+
+parse_lmp_use_semi_permanend_key:
+5521 20600000 rtn 
+
+parse_lmp_unsniff_req:
+5522 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5523 70007d18 jam lmp_unsniff_req ,mem_lmi_opcode2 
+5524 7009bd2e jam bt_evt_remote_unsniff ,mem_fifo_temp 
+5525 20407d86 call ui_ipc_send_event 
+5526 2020376a branch sniff_exit 
+
+parse_lmp_encapsulated_header:
+5527 68008476 fetch 1 ,mem_rxbuf + 1 
+5528 c080d533 bne encapsulated_major_type_p192 ,parse_lmp_encapsulated_header_reject 
+5529 68008477 fetch 1 ,mem_rxbuf + 2 
+552a c080d533 bne encapsulated_minor_type_p192 ,parse_lmp_encapsulated_header_reject 
+552b 68008478 fetch 1 ,mem_rxbuf + 3 
+552c c0985533 bne encapsulated_len_p192 ,parse_lmp_encapsulated_header_reject 
+552d 20405907 call check_localsm 
+552e 2020d530 branch parse_lmp_encapsulated_header_master ,true 
+552f 7008d201 jam sp_stat_key_recv ,mem_sp_state 
+
+parse_lmp_encapsulated_header_master:
+5530 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5531 70007d3d jam lmp_encapsulated_header ,mem_lmi_opcode2 
+5532 2020531e branch parse_rx_done 
+
+parse_lmp_encapsulated_header_reject:
+5533 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5534 2020536c branch reject_lmp_packet 
+
+parse_lmp_accepted_encapsulated_header:
+5535 70007c3e jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+5536 20600000 rtn 
+
+parse_lmp_accepted_simple_pairing_number:
+5537 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+5538 c000d53e beq ssp_mode_ssp_pin_flag ,parse_lmp_accepted_simple_pairing_number_ssp_pin 
+5539 c0015542 beq ssp_mode_passkey_entry_flag ,parse_lmp_accepted_simple_pairing_number_passkey 
+
+parse_lmp_accepted_simple_pairing_number_common:
+553a 20405907 call check_localsm 
+553b 20608000 rtn true 
+553c 7008d208 jam sp_stat_confirm_recv ,mem_sp_state 
+553d 20600000 rtn 
+
+parse_lmp_accepted_simple_pairing_number_ssp_pin:
+553e 2040797f call g_noninit_number_confirm 
+553f 7009bd35 jam bt_evt_bt_gkey_generate ,mem_fifo_temp 
+5540 20407d86 call ui_ipc_send_event 
+5541 2020553a branch parse_lmp_accepted_simple_pairing_number_common 
+
+parse_lmp_accepted_simple_pairing_number_passkey:
+5542 20405907 call check_localsm 
+5543 20608000 rtn true 
+5544 6800c6eb fetch 1 ,mem_authentication_passkey_times 
+5545 c009d552 beq 19 ,authentication_passkey_end 
+5546 1fe0fe01 increase 1 ,pdata 
+5547 6000c6eb store 1 ,mem_authentication_passkey_times 
+
+authentication_passkey:
+5548 7008d401 jam sp_flag_commit ,mem_sp_flag 
+5549 7008d204 jam sp_stat_commit_calc ,mem_sp_state 
+554a 6800c6eb fetch 1 ,mem_authentication_passkey_times 
+554b 1fe20e00 copy pdata ,queue 
+554c 68034719 fetch 6 ,mem_pin 
+554d afefffff qisolate1 pdata 
+554e 58000080 setarg 0x80 
+554f 7920fe00 setflag true ,0 ,pdata 
+5550 6000c6ec store 1 ,mem_passkey_1bit 
+5551 20600000 rtn 
+
+authentication_passkey_end:
+5552 7008d208 jam sp_stat_confirm_recv ,mem_sp_state 
+5553 20600000 rtn 
+
+parse_lmp_accepted_dhkey_check:
+5554 2040555a call parse_lmp_accepted_dhkey_check_common 
+
+pairing_success:
+5555 6800c6ed fetch 1 ,mem_flag_pairing_state 
+5556 207a0000 rtn blank 
+5557 7046ed00 jam flag_pairing_state_not_pairing ,mem_flag_pairing_state 
+5558 7009bd38 jam bt_evt_bt_pairing_success ,mem_fifo_temp 
+5559 20207d86 branch ui_ipc_send_event 
+
+parse_lmp_accepted_dhkey_check_common:
+555a 20405907 call check_localsm 
+555b 2440f982 ncall g_noninit ,true 
+555c 2040f992 call g_init ,true 
+555d 20405907 call check_localsm 
+555e 20608000 rtn true 
+555f 7008d20c jam sp_stat_link_key_calc ,mem_sp_state 
+5560 7008d401 jam sp_flag_commit ,mem_sp_flag 
+5561 20600000 rtn 
+
+parse_simple_pairing_confirm:
+5562 d8a00992 arg mem_sp_confirm_remote ,contw 
+5563 d8c00476 arg mem_rxbuf + 1 ,contr 
+5564 20407e87 call memcpy16 
+5565 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+5566 c1010000 rtneq ssp_mode_passkey_entry_flag 
+5567 202076f3 branch master_set_mem_master_sp_flag 
+
+parse_lmp_encapsulated_payload:
+5568 680088d3 fetch 1 ,mem_master_sp_state 
+5569 c003d56c beq sp_stat_random_send ,parse_encapsulated_payload_master 
+556a 680088d2 fetch 1 ,mem_sp_state 
+556b c080d57f bne sp_stat_key_recv ,parse_lmp_encapsulated_payload_reject 
+
+parse_encapsulated_payload_master:
+556c 680088db fetch 1 ,mem_sp_remote_key_recv_count 
+556d 1fe60a20 sub pdata ,0x20 ,contw 
+556e 2421557f nbranch parse_lmp_encapsulated_payload_reject ,positive 
+556f d8a008ea arg mem_sp_pubkey_remote ,contw 
+5570 98a08a00 iadd contw ,contw 
+5571 68040476 fetch 8 ,mem_rxbuf + 1 
+5572 e0a40000 istore 8 ,contw 
+5573 6804047e fetch 8 ,mem_rxbuf + 9 
+5574 e0a40000 istore 8 ,contw 
+5575 680088db fetch 1 ,mem_sp_remote_key_recv_count 
+5576 1fe0fe10 increase 16 ,pdata 
+5577 600088db store 1 ,mem_sp_remote_key_recv_count 
+5578 c0985454 bne encapsulated_len_p192 ,accept_lmp_msg 
+
+parse_lmp_encapsulated_payload_completed:
+5579 20405907 call check_localsm 
+557a 2020d454 branch accept_lmp_msg ,true 
+557b 7008dc01 jam sp_key_valid ,mem_sp_remote_key_invalid 
+557c 7008d202 jam sp_stat_key_generate ,mem_sp_state 
+557d 7008d401 jam sp_flag_commit ,mem_sp_flag 
+557e 20205454 branch accept_lmp_msg 
+
+parse_lmp_encapsulated_payload_reject:
+557f 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5580 2020536c branch reject_lmp_packet 
+
+parse_lmp_accepted_encapsulated_payload:
+5581 680088da fetch 1 ,mem_sp_local_key_send_count 
+5582 c0185585 beq encapsulated_len_p192 ,parse_lmp_encapsulated_payload_all_accepted 
+5583 70007c3e jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+5584 2020531e branch parse_rx_done 
+
+parse_lmp_encapsulated_payload_all_accepted:
+5585 20405907 call check_localsm 
+5586 2020d58e branch parse_lmp_encapsulated_payload_all_accepted_master ,true 
+5587 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+5588 c001558c beq ssp_mode_passkey_entry_flag ,parse_lmp_encapsulated_payload_all_accepted_get_passkey 
+5589 7008d401 jam sp_flag_commit ,mem_sp_flag 
+558a 7008d204 jam sp_stat_commit_calc ,mem_sp_state 
+558b 2020531e branch parse_rx_done 
+
+parse_lmp_encapsulated_payload_all_accepted_get_passkey:
+558c 7009bd36 jam bt_evt_bt_get_passkey ,mem_fifo_temp 
+558d 20207d86 branch ui_ipc_send_event 
+
+parse_lmp_encapsulated_payload_all_accepted_master:
+558e 2020531e branch parse_rx_done 
+
+parse_lmp_simple_pairing_number:
+558f 680088d3 fetch 1 ,mem_master_sp_state 
+5590 c003d593 beq sp_stat_random_send ,parse_lmp_simple_pairing_number_master 
+5591 680088d2 fetch 1 ,mem_sp_state 
+5592 c083559f bne sp_stat_random_recv ,parse_lmp_simple_pairing_number_reject 
+
+parse_lmp_simple_pairing_number_master:
+5593 d8a00952 arg mem_sp_random_remote ,contw 
+5594 68040476 fetch 8 ,mem_rxbuf + 1 
+5595 e0a40000 istore 8 ,contw 
+5596 6804047e fetch 8 ,mem_rxbuf + 9 
+5597 e0a40000 istore 8 ,contw 
+5598 20405907 call check_localsm 
+5599 2020d59d branch parse_lmp_simple_pairing_number_master0 ,true 
+559a 7008d207 jam sp_stat_random_send ,mem_sp_state 
+559b 7008d401 jam sp_flag_commit ,mem_sp_flag 
+559c 20205454 branch accept_lmp_msg 
+
+parse_lmp_simple_pairing_number_master0:
+559d 7008d304 jam sp_stat_commit_calc ,mem_master_sp_state 
+559e 202076f3 branch master_set_mem_master_sp_flag 
+
+parse_lmp_simple_pairing_number_reject:
+559f 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+55a0 2020536c branch reject_lmp_packet 
+
+parse_dhkey_check:
+55a1 680088d3 fetch 1 ,mem_master_sp_state 
+55a2 c005d5a5 beq sp_stat_confirm_send ,parse_dhkey_check_master 
+55a3 680088d2 fetch 1 ,mem_sp_state 
+55a4 c08455b4 bne sp_stat_confirm_recv ,parse_lmp_dhkey_check_reject 
+
+parse_dhkey_check_master:
+55a5 d8a00982 arg mem_sp_check_result ,contw 
+55a6 d8c00476 arg mem_rxbuf + 1 ,contr 
+55a7 20407e87 call memcpy16 
+55a8 20405907 call check_localsm 
+55a9 2020d5b1 branch parse_dhkey_check_master0 ,true 
+55aa 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+55ab c000d5b6 beq ssp_mode_ssp_pin_flag ,number_comparison_mode 
+
+number_comparison_successed:
+55ac 7046e900 jam 0 ,mem_flag_mode_ssp_pin 
+55ad 7008d209 jam sp_stat_confirm_check ,mem_sp_state 
+55ae 7008d401 jam sp_flag_commit ,mem_sp_flag 
+55af 70007d41 jam lmp_dhkey_check ,mem_lmi_opcode2 
+55b0 2020531e branch parse_rx_done 
+
+parse_dhkey_check_master0:
+55b1 7008d309 jam sp_stat_confirm_check ,mem_master_sp_state 
+55b2 7008d501 jam sp_flag_commit ,mem_master_sp_flag 
+55b3 2020531e branch parse_rx_done 
+
+parse_lmp_dhkey_check_reject:
+55b4 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+55b5 2020536c branch reject_lmp_packet 
+
+number_comparison_mode:
+55b6 6800c6e9 fetch 1 ,mem_flag_mode_ssp_pin 
+55b7 c283d5bb bbit1 flag_mode_ssp_pin_reviceve_comparison_bit ,comparison_result 
+55b8 79207e06 set1 flag_mode_ssp_pin_recieve_dhkey_bit ,pdata 
+55b9 6000c6e9 store 1 ,mem_flag_mode_ssp_pin 
+55ba 20600000 rtn 
+
+comparison_result:
+55bb c28055ac bbit1 flag_mode_ssp_pin_comparison_result_bit ,number_comparison_successed 
+55bc 7046e900 jam 0 ,mem_flag_mode_ssp_pin 
+55bd 202055b4 branch parse_lmp_dhkey_check_reject 
+
+parse_lmp_clkoffset_res:
+55be 2020531e branch parse_rx_done 
+
+parse_lmp_encryption_mode_req:
+55bf 6800816c fetch 1 ,mem_connection_options 
+55c0 793ffe01 set0 connection_encrypt 
+55c1 6000816c store 1 ,mem_connection_options 
+55c2 20405454 call accept_lmp_msg 
+55c3 24748000 nrtn master 
+55c4 68008476 fetch 1 ,mem_rxbuf + 1 
+55c5 6808804b fetcht 1 ,mem_op 
+55c6 793a0404 setflag blank ,op_stop_enc ,temp 
+55c7 7d3a0405 nsetflag blank ,op_start_enc ,temp 
+55c8 6008804b storet 1 ,mem_op 
+55c9 20600000 rtn 
+
+parse_lmp_features_res:
+55ca 680c0476 fetcht 8 ,mem_rxbuf + 1 
+
+parse_lmp_features_res_not_hci:
+55cb 68008055 fetch 1 ,mem_conn_sm 
+55cc c1818000 rtnne conn_sm_wait_features_res 
+55cd 6800816c fetch 1 ,mem_connection_options 
+55ce c30255d1 bbit0 connection_feature_ext ,parse_lmp_send_conn 
+55cf 70005514 jam conn_sm_send_features_ext ,mem_conn_sm 
+55d0 20600000 rtn 
+
+parse_lmp_send_conn:
+55d1 70005504 jam conn_sm_send_conn_req ,mem_conn_sm 
+55d2 20600000 rtn 
+
+parse_lmp_test_activate:
+55d3 6800817e fetch 1 ,mem_debug_config 
+55d4 6000815a store 1 ,mem_test_mode_old_debug_config 
+55d5 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+55d6 70007d38 jam lmp_test_activate ,mem_lmi_opcode2 
+55d7 20600000 rtn 
+
+parse_lmp_test_control:
+55d8 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+55d9 70007d39 jam lmp_test_control ,mem_lmi_opcode2 
+55da 18007209 force 9 ,loopcnt 
+55db d8c00476 arg mem_rxbuf + 1 ,contr 
+55dc d8a00151 arg mem_temp_payload ,contw 
+
+parse_lmp_test_xor:
+55dd e8c08000 ifetch 1 ,contr 
+55de 1fe2fe55 xor_into 0x55 ,pdata 
+55df e0a08000 istore 1 ,contw 
+55e0 c20055dd loop parse_lmp_test_xor 
+55e1 68008151 fetch 1 ,test_mode_scenario 
+55e2 68088150 fetcht 1 ,mem_tester_emulate 
+55e3 793f8407 set0 tester_no_whitening ,temp 
+55e4 793f8404 set0 tester_pattern_test ,temp 
+55e5 c07fd5f1 beq exit_test_mode ,parse_lmp_test_control_exit 
+55e6 c000560a beq pause_test_mode ,parse_lmp_test_control_pause 
+55e7 c002d5fe beq closed_loop_back_acl ,parse_lmp_test_control_loopback 
+55e8 c003d5fd beq acl_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+55e9 c00355fe beq closed_loop_back_sco ,parse_lmp_test_control_loopback 
+55ea c00455fd beq sco_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+55eb c000d5f6 beq zero_pattern ,parse_lmp_test_control_pattern 
+55ec c00155f6 beq one_pattern ,parse_lmp_test_control_pattern 
+55ed c001d5f6 beq alt_pattern ,parse_lmp_test_control_pattern 
+55ee c004d5f6 beq alt2_pattern ,parse_lmp_test_control_pattern 
+55ef c00255f6 beq pseudorandom ,parse_lmp_test_control_pattern 
+55f0 20600000 rtn 
+
+parse_lmp_test_control_exit:
+55f1 68008150 fetch 1 ,mem_tester_emulate 
+55f2 79207e03 set1 tester_exit ,pdata 
+55f3 79207e02 set1 tester_change ,pdata 
+55f4 60008150 store 1 ,mem_tester_emulate 
+55f5 20600000 rtn 
+
+parse_lmp_test_control_pattern:
+55f6 79200404 set1 tester_pattern_test ,temp 
+55f7 70017f05 jam 5 ,mem_lch_code 
+55f8 68010158 fetch 2 ,test_mode_data_length 
+55f9 98007200 iforce loopcnt 
+55fa 6001015e store 2 ,mem_len 
+55fb d8a00475 arg mem_rxbuf ,contw 
+55fc 20407f40 call pn9 
+
+parse_lmp_test_control_loopback_nowhite:
+55fd 79200407 set1 tester_no_whitening ,temp 
+
+parse_lmp_test_control_loopback:
+55fe 79200402 set1 tester_change ,temp 
+55ff 18007e00 force 0 ,pdata 
+5600 6000800b store 1 ,mem_slave_rcvcnt 
+5601 600100f9 store 2 ,mem_tst_pktcnt_crc 
+5602 600100fb store 2 ,mem_tst_pktcnt_dmh 
+5603 600100f7 store 2 ,mem_tst_pktcnt_hec 
+5604 600100f5 store 2 ,mem_tst_pktcnt_sync 
+5605 68008152 fetch 1 ,test_mode_hopping_mode 
+5606 2fe1fe00 compare fixed_freq ,pdata ,0xff 
+5607 79208406 setflag true ,tester_fixed_freq ,temp 
+5608 60088150 storet 1 ,mem_tester_emulate 
+5609 20600000 rtn 
+
+parse_lmp_test_control_pause:
+560a 793f8011 set0 mark_testmode ,mark 
+560b 70015000 jam 0 ,mem_tester_emulate 
+560c 6800817e fetch 1 ,mem_debug_config 
+560d 793ffe06 set0 debug_tx_pattern ,pdata 
+560e 6000817e store 1 ,mem_debug_config 
+560f 20600000 rtn 
+
+lmp_copy_rand:
+5610 d8c00476 arg mem_rxbuf + 1 ,contr 
+5611 d8a00486 arg mem_random_number ,contw 
+5612 20207e87 branch memcpy16 
+
+lmp_generate_key:
+5613 70007c09 jam lmp_comb_key ,mem_lmo_opcode2 
+5614 20600000 rtn 
+
+lmp_start_encryption:
+5615 24748000 nrtn master 
+5616 70007c11 jam lmp_start_encryption_req ,mem_lmo_opcode2 
+5617 20600000 rtn 
+
+lmp_accept_inrand:
+5618 da204140 arg mem_lap ,rega 
+5619 20406f7a call generate_kinit 
+561a 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+561b 70007d08 jam lmp_in_rand ,mem_lmi_opcode2 
+561c 20600000 rtn 
+
+lmp_disconnect:
+561d 7000720a jam 10 ,mem_conn_timer 
+561e 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+561f 7003f016 jam local_host ,mem_disconn_reason_send 
+5620 20600000 rtn 
+
+send_lmp:
+5621 79200025 set1 mark_ext_patch ,mark 
+5622 44ac402b bpatch patch2b_0 ,mem_patch2b 
+5623 78547c00 disable user 
+5624 204058ca call lmo_fifo_process 
+5625 68008048 fetch 1 ,mem_lmp_to_send 
+5626 207a0000 rtn blank 
+5627 c283d657 bbit1 7 ,send_lmp_escape 
+
+send_lmp0:
+5628 c000d77c beq lmp_name_req ,send_lmp_name_req 
+5629 c00156ef beq lmp_name_res ,send_lmp_name_res 
+562a c001d662 beq lmp_accepted ,send_lmp_accepted 
+562b c0025679 beq lmp_not_accepted ,send_lmp_not_accepted 
+562c c013d7e4 beq lmp_features_req ,send_lmp_features_req 
+562d c0145713 beq lmp_features_res ,send_lmp_features_res 
+562e c01856ff beq lmp_timing_accuracy_res ,send_lmp_timing_accuracy_res 
+562f c012d7df beq lmp_version_req ,send_lmp_version_req 
+5630 c013570e beq lmp_version_res ,send_lmp_version_res 
+5631 c018d7ce beq lmp_setup_complete ,send_lmp_setup_complete 
+5632 c01bd777 beq lmp_supervision_timeout ,send_lmp_superto 
+5633 c019d769 beq lmp_host_connection_req ,send_lmp_no_payload 
+5634 c0045862 beq lmp_in_rand ,send_lmp_inrand 
+5635 c004d858 beq lmp_comb_key ,send_lmp_comb_key 
+5636 c005d86d beq lmp_au_rand ,send_lmp_aurand 
+5637 c0065876 beq lmp_sres ,send_lmp_sres 
+5638 c007d76f beq lmp_encryption_mode_req ,send_lmp_encryption_mode_req 
+5639 c008589b beq lmp_encryption_key_size_req ,send_lmp_encryption_key_size_req 
+563a c008d891 beq lmp_start_encryption_req ,send_lmp_start_encryption 
+563b c003d75f beq lmp_detach ,send_lmp_detach 
+563c c015578b beq lmp_quality_of_service_req ,send_lmp_quality_of_service_req 
+563d c005578c beq lmp_unit_key ,send_lmp_unit_key 
+563e c00fd7c9 beq lmp_incr_power_req ,send_lmp_inc_power 
+563f c0035704 beq lmp_clkoffset_res ,send_lmp_clkoffset_res 
+5640 c010d76c beq lmp_max_power ,send_lmp_nopayload_reply 
+5641 c016d7bf beq lmp_max_slot ,send_lmp_max_slot 
+5642 c01757c4 beq lmp_max_slot_req ,send_lmp_max_slot_req 
+5643 c011576c beq lmp_min_power ,send_lmp_nopayload_reply 
+5644 c01a578d beq lmp_slot_offset ,send_lmp_slot_offset 
+5645 c009d7a2 beq lmp_switch_req ,send_lmp_switch_req 
+5646 c00bd7b1 beq lmp_sniff_req ,send_lmp_sniff_req 
+5647 c0095898 beq lmp_stop_encryption_req ,send_lmp_stop_encryption_req 
+5648 c017d7b7 beq lmp_timing_accuracy_req ,send_lmp_timing_accuracy_req 
+5649 c00c57bc beq lmp_unsniff_req ,send_lmp_unsniff_req 
+564a c01ed808 beq lmp_encapsulated_header ,send_lmp_encapsulated_header 
+564b c01f5814 beq lmp_encapsulated_payload ,send_lmp_encapsulated_payload 
+564c c01fd826 beq lmp_simple_pairing_confirm ,send_lmp_simple_pairing_comfirm 
+564d c0205830 beq lmp_simple_pairing_number ,send_lmp_simple_pairing_number 
+564e c020d845 beq lmp_dhkey_check ,send_lmp_dhkey_check 
+564f c011d854 beq lmp_auto_rate ,send_lmp_auto_rate 
+5650 c01dd84f beq lmp_enc_key_size_mask_res ,send_lmp_enc_key_size_mask_res 
+5651 c002d855 beq lmp_clkoffset_req ,send_lmp_clkoffset_req 
+5652 c014d856 beq lmp_quality_of_service ,send_lmp_quality_of_service 
+5653 c01c5857 beq lmp_test_activate ,send_lmp_test_activate 
+5654 c01cd782 beq lmp_test_control ,send_lmp_test_control 
+
+send_lmp_error:
+5655 20203b31 branch assert 
+5656 20600000 rtn 
+
+send_lmp_escape:
+5657 c040d686 beq lmp_ext_accepted ,send_lmpext_accepted 
+5658 c04256b2 beq lmp_ext_features_res ,send_lmpext_features_res 
+5659 c041568f beq lmp_not_accepted_ext ,send_lmpext_not_accepted 
+565a c041d718 beq lmp_ext_features_req ,send_lmpext_features_req 
+565b c045d723 beq lmp_packet_type_table_req ,send_lmpext_packet_type_table_req 
+565c c04bd75b beq lmp_pause_encryption_req ,send_lmpext_pause_encryption_req 
+565d c04cd6e0 beq lmp_io_cap_req ,send_lmp_io_cap_req 
+565e c04d56bd beq lmp_io_cap_res ,send_lmpext_io_cap_res 
+565f c04ad6e5 beq lmp_sniff_subrating_req ,send_lmpext_sniff_subrating_req 
+5660 c04b56e6 beq lmp_sniff_subrating_res ,send_lmpext_sniff_subrating_res 
+5661 20203b31 branch assert 
+
+send_lmp_accepted:
+5662 18007e02 force 2 ,pdata 
+5663 204058a1 call msg_send_lmp 
+5664 68008049 fetch 1 ,mem_lmi_opcode 
+5665 e0a08000 istore 1 ,contw 
+5666 204058b0 call send_lmp_follow 
+5667 79200025 set1 mark_ext_patch ,mark 
+5668 44acc02b bpatch patch2b_1 ,mem_patch2b 
+5669 68008049 fetch 1 ,mem_lmi_opcode 
+566a c0045699 beq lmp_in_rand ,send_lmp_accepted_inrand 
+566b c007d69d beq lmp_encryption_mode_req ,send_lmp_accepted_enc_mode 
+566c c00856a8 beq lmp_encryption_key_size_req ,send_lmp_accepted_enc_key 
+566d c00bd678 beq lmp_sniff_req ,send_lmp_accept_sniff_req 
+566e c019d6ab beq lmp_host_connection_req ,send_lmp_accepted_connection 
+566f c020d6b1 beq lmp_dhkey_check ,send_lmp_accept_dhkey_check 
+5670 c008d672 beq lmp_start_encryption_req ,send_create_conn_start_l2cap_timer_sm 
+5671 20600000 rtn 
+
+send_create_conn_start_l2cap_timer_sm:
+5672 68008055 fetch 1 ,mem_conn_sm 
+5673 207a0000 rtn blank 
+5674 7000551b jam conn_sm_wait_done ,mem_conn_sm 
+5675 5800000c setarg timer_enpt_waite 
+5676 d8e0000b arg enpt_delay_timer ,queue 
+5677 20207ed4 branch timer_init 
+
+send_lmp_accept_sniff_req:
+5678 20203746 branch sniff_init 
+
+send_lmp_not_accepted:
+5679 18007e03 force 3 ,pdata 
+567a 204058a1 call msg_send_lmp 
+567b 68008049 fetch 1 ,mem_lmi_opcode 
+567c c005d681 beq lmp_au_rand ,send_not_accept_aurand 
+567d e0a08000 istore 1 ,contw 
+567e 6800804a fetch 1 ,mem_lmo_reason 
+567f e0a08000 istore 1 ,contw 
+5680 202058b0 branch send_lmp_follow 
+
+send_not_accept_aurand:
+5681 e0a08000 istore 1 ,contw 
+5682 6800804a fetch 1 ,mem_lmo_reason 
+5683 e0a08000 istore 1 ,contw 
+5684 d84003fb arg mem_sres_tid ,temp 
+5685 202058ec branch special_tid_store 
+
+send_lmpext_accepted:
+5686 18000e04 force 4 ,queue 
+5687 204058a9 call send_lmpext 
+5688 5800007f setarg lmp_escape 
+5689 e0a08000 istore 1 ,contw 
+568a 68008049 fetch 1 ,mem_lmi_opcode 
+568b 793ffe07 set0 7 ,pdata 
+568c e0a08000 istore 1 ,contw 
+568d 68008049 fetch 1 ,mem_lmi_opcode 
+568e 202058b0 branch send_lmp_follow 
+
+send_lmpext_not_accepted:
+568f 18000e05 force 5 ,queue 
+5690 204058a9 call send_lmpext 
+5691 5800007f setarg lmp_escape 
+5692 e0a08000 istore 1 ,contw 
+5693 68008049 fetch 1 ,mem_lmi_opcode 
+5694 793ffe07 set0 7 ,pdata 
+5695 e0a08000 istore 1 ,contw 
+5696 6800804a fetch 1 ,mem_lmo_reason 
+5697 e0a08000 istore 1 ,contw 
+5698 202058b0 branch send_lmp_follow 
+
+send_lmp_accepted_inrand:
+5699 204034a9 call clear_linkkey 
+569a 204058fe call tid_check 
+569b 20608000 rtn true 
+569c 20205613 branch lmp_generate_key 
+
+send_lmp_accepted_enc_mode:
+569d 6800804b fetch 1 ,mem_op 
+569e c282d6a4 bbit1 op_start_enc ,send_lmp_accepted_enc_start 
+569f c4020000 rtnbit0 op_stop_enc 
+56a0 70007c12 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+56a1 793ffe04 set0 op_stop_enc ,pdata 
+56a2 204058f6 call tid_reply 
+56a3 202056a6 branch send_lmp_accepted_enc_exit 
+
+send_lmp_accepted_enc_start:
+56a4 70007c10 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+56a5 793ffe05 set0 op_start_enc ,pdata 
+
+send_lmp_accepted_enc_exit:
+56a6 6000804b store 1 ,mem_op 
+56a7 20600000 rtn 
+
+send_lmp_accepted_enc_key:
+56a8 20405907 call check_localsm 
+56a9 2020d615 branch lmp_start_encryption ,true 
+56aa 20600000 rtn 
+
+send_lmp_accepted_connection:
+56ab 70007c8b jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+56ac 680083f7 fetch 1 ,mem_lmp_conn_state 
+56ad 79207e00 set1 received_conn_req ,pdata 
+56ae 600083f7 store 1 ,mem_lmp_conn_state 
+56af 7009bd01 jam bt_evt_bb_connected ,mem_fifo_temp 
+56b0 20207d86 branch ui_ipc_send_event 
+
+send_lmp_accept_dhkey_check:
+56b1 20600000 rtn 
+
+send_lmpext_features_res:
+56b2 18000e0c force 12 ,queue 
+56b3 204058a9 call send_lmpext 
+56b4 58000001 setarg 0x01 
+56b5 e0a08000 istore 1 ,contw 
+56b6 680103f4 fetch 2 ,mem_lmpext_ssp_enable 
+56b7 e0a10000 istore 2 ,contw 
+56b8 58000000 setarg 0 
+56b9 e0a18000 istore 3 ,contw 
+56ba 58000000 setarg 0x00 
+56bb e0a20000 istore 4 ,contw 
+56bc 202058b9 branch send_lmp_reply 
+
+send_lmpext_io_cap_res:
+56bd 18000e05 force 5 ,queue 
+56be 204058a9 call send_lmpext 
+56bf 6801c6e3 fetch 3 ,mem_sp_iocap_local 
+56c0 e0a18000 istore 3 ,contw 
+56c1 204058b9 call send_lmp_reply 
+56c2 7046ed01 jam flag_pairing_state_pairing ,mem_flag_pairing_state 
+56c3 6800c6e3 fetch 1 ,mem_sp_iocap_local 
+56c4 c000d6ce beq display_yesno ,responder_iocap_display_yesno 
+56c5 c00156c8 beq keyboard_only ,responder_iocap_keyboard_only 
+56c6 c001d6d4 beq no_input_no_output ,responder_iocap_no_input_no_output 
+56c7 20600000 rtn 
+
+responder_iocap_keyboard_only:
+56c8 6800c6e6 fetch 1 ,mem_sp_iocap_remote 
+56c9 c00056de beq display_only ,responder_iocap_keyboard_only_initiator_iocap_display_only 
+56ca c000d6de beq display_yesno ,responder_iocap_keyboard_only_initiator_iocap_display_yesno 
+56cb c00156de beq keyboard_only ,responder_iocap_keyboard_only_initiator_iocap_keyboard_only 
+56cc c001d6da beq no_input_no_output ,responder_iocap_keyboard_only_initiator_iocap_no_input_no_output 
+56cd 20600000 rtn 
+
+responder_iocap_display_yesno:
+56ce 6800c6e6 fetch 1 ,mem_sp_iocap_remote 
+56cf c00056da beq display_only ,responder_iocap_display_yesno_initiator_iocap_display_only 
+56d0 c000d6dc beq display_yesno ,responder_iocap_display_yesno_initiator_iocap_display_yesno 
+56d1 c00156de beq keyboard_only ,responder_iocap_display_yesno_initiator_iocap_keyboard_only 
+56d2 c001d6da beq no_input_no_output ,responder_iocap_display_yesno_initiator_iocap_no_input_no_output 
+56d3 20600000 rtn 
+
+responder_iocap_no_input_no_output:
+56d4 6800c6e6 fetch 1 ,mem_sp_iocap_remote 
+56d5 c00056da beq display_only ,responder_iocap_no_input_no_output_initiator_iocap_display_only 
+56d6 c000d6da beq display_yesno ,responder_iocap_no_input_no_output_initiator_iocap_display_yesno 
+56d7 c00156da beq keyboard_only ,responder_iocap_no_input_no_output_initiator_iocap_keyboard_only 
+56d8 c001d6da beq no_input_no_output ,responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output 
+56d9 20600000 rtn 
+
+responder_iocap_keyboard_only_initiator_iocap_no_input_no_output:
+
+responder_iocap_display_yesno_initiator_iocap_no_input_no_output:
+
+responder_iocap_display_yesno_initiator_iocap_display_only:
+
+responder_iocap_no_input_no_output_initiator_iocap_display_only:
+
+responder_iocap_no_input_no_output_initiator_iocap_display_yesno:
+
+responder_iocap_no_input_no_output_initiator_iocap_keyboard_only:
+
+responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output:
+
+set_ssp_mode_justwork:
+56da 7046ea03 jam ssp_mode_just_work_flag ,mem_ssp_mode_flag 
+56db 20600000 rtn 
+
+responder_iocap_display_yesno_initiator_iocap_display_yesno:
+
+set_ssp_mode_numeric_comparison:
+56dc 7046ea01 jam ssp_mode_ssp_pin_flag ,mem_ssp_mode_flag 
+56dd 20600000 rtn 
+
+responder_iocap_keyboard_only_initiator_iocap_display_yesno:
+
+responder_iocap_keyboard_only_initiator_iocap_keyboard_only:
+
+responder_iocap_keyboard_only_initiator_iocap_display_only:
+
+responder_iocap_display_yesno_initiator_iocap_keyboard_only:
+
+set_ssp_mode_passkey:
+56de 7046ea02 jam ssp_mode_passkey_entry_flag ,mem_ssp_mode_flag 
+56df 20600000 rtn 
+
+send_lmp_io_cap_req:
+56e0 18000e05 force 5 ,queue 
+56e1 204058a9 call send_lmpext 
+56e2 6801c6e3 fetch 3 ,mem_sp_iocap_local 
+56e3 e0a18000 istore 3 ,contw 
+56e4 202058bb branch send_lmp_request 
+
+send_lmpext_sniff_subrating_req:
+56e5 20600000 rtn 
+
+send_lmpext_sniff_subrating_res:
+56e6 18000e09 force 9 ,queue 
+56e7 204058a9 call send_lmpext 
+56e8 68008094 fetch 1 ,mem_subsniff_rate 
+56e9 e0a08000 istore 1 ,contw 
+56ea 68010095 fetch 2 ,mem_subsniff_tcmax 
+56eb e0a10000 istore 2 ,contw 
+56ec 68020090 fetch 4 ,mem_subsniff_instant 
+56ed e0a20000 istore 4 ,contw 
+56ee 202058b9 branch send_lmp_reply 
+
+send_lmp_name_res:
+56ef 18007e11 force 17 ,pdata 
+56f0 204058a1 call msg_send_lmp 
+56f1 68008049 fetch 1 ,mem_lmi_opcode 
+56f2 1fe20400 copy pdata ,temp 
+56f3 c00056f7 beq 0x00 ,send_lmp_name_res_offset_ok 
+56f4 c00756f7 beq 0x0e ,send_lmp_name_res_offset_ok 
+56f5 c00e56f7 beq 0x1c ,send_lmp_name_res_offset_ok 
+56f6 20600000 rtn 
+
+send_lmp_name_res_offset_ok:
+56f7 e0a08000 istore 1 ,contw 
+56f8 6800c5ae fetch 1 ,mem_local_name_length 
+56f9 e0a08000 istore 1 ,contw 
+56fa df20000e arg 14 ,loopcnt 
+56fb 580045af setarg mem_local_name 
+56fc 98408c00 iadd temp ,contr 
+56fd 20407ecd call memcpy 
+56fe 202058b9 branch send_lmp_reply 
+
+send_lmp_timing_accuracy_res:
+56ff 18007e03 force 3 ,pdata 
+5700 204058a1 call msg_send_lmp 
+5701 58000114 setarg 0x0114 
+5702 e0a10000 istore 2 ,contw 
+5703 202058b9 branch send_lmp_reply 
+
+send_lmp_clkoffset_res:
+5704 18007e03 force 3 ,pdata 
+5705 204058a1 call msg_send_lmp 
+5706 68020164 fetch 4 ,mem_clke_bt 
+5707 9c467e00 isub clkn_bt ,pdata 
+5708 2034d70a branch send_lmp_clkoffset_res_master ,master 
+5709 1fe67e00 sub pdata ,0 ,pdata 
+
+send_lmp_clkoffset_res_master:
+570a 1feb7e00 rshift2 pdata ,pdata 
+570b 793ffe0f set0 15 ,pdata 
+570c e0a10000 istore 2 ,contw 
+570d 202058b9 branch send_lmp_reply 
+
+send_lmp_version_res:
+570e 18007e06 force 6 ,pdata 
+570f 204058a1 call msg_send_lmp 
+5710 6802c5a9 fetch 5 ,mem_lmp_version 
+5711 e0a28000 istore 5 ,contw 
+5712 202058b9 branch send_lmp_reply 
+
+send_lmp_features_res:
+5713 18007e09 force 9 ,pdata 
+5714 204058a1 call msg_send_lmp 
+5715 68044138 fetch 8 ,mem_features 
+5716 e0a40000 istore 8 ,contw 
+5717 202058b9 branch send_lmp_reply 
+
+send_lmpext_features_req:
+5718 18000e0c force 12 ,queue 
+5719 204058a9 call send_lmpext 
+571a 58000001 setarg 0x01 
+571b e0a08000 istore 1 ,contw 
+571c 680103f4 fetch 2 ,mem_lmpext_ssp_enable 
+571d e0a10000 istore 2 ,contw 
+571e 58000000 setarg 0 
+571f e0a18000 istore 3 ,contw 
+5720 58000000 setarg 0x00 
+5721 e0a20000 istore 4 ,contw 
+5722 202058bb branch send_lmp_request 
+
+send_lmpext_packet_type_table_req:
+5723 18000e03 force 3 ,queue 
+5724 204058a9 call send_lmpext 
+5725 6800c1fa fetch 1 ,mem_ptt 
+5726 e0a08000 istore 1 ,contw 
+5727 78547c00 disable user 
+5728 204058bb call send_lmp_request 
+5729 24740000 nrtn user 
+572a 24748000 nrtn master 
+572b 6800c178 fetch 1 ,mem_afh_cfg 
+572c c4000000 rtnbit0 afh_cfg_on 
+572d 2040573f call afh_init 
+572e 20205749 branch afh_open_all_channels 
+
+ssp_enable:
+572f 79200025 set1 mark_ext_patch ,mark 
+5730 44ad402b bpatch patch2b_2 ,mem_patch2b 
+5731 6800c13e fetch 1 ,mem_features + 6 
+5732 79207e03 set1 param_featrue_ssp ,pdata 
+5733 6000c13e store 1 ,mem_features + 6 
+5734 58000101 setarg param_lmpext_ssp_enable 
+5735 600103f4 store 2 ,mem_lmpext_ssp_enable 
+5736 20600000 rtn 
+
+ssp_disable:
+5737 79200025 set1 mark_ext_patch ,mark 
+5738 44adc02b bpatch patch2b_3 ,mem_patch2b 
+5739 6800c13e fetch 1 ,mem_features + 6 
+573a 793ffe03 set0 param_featrue_ssp ,pdata 
+573b 6000c13e store 1 ,mem_features + 6 
+573c 58000000 setarg 0 
+573d 600103f4 store 2 ,mem_lmpext_ssp_enable 
+573e 20600000 rtn 
+
+afh_init:
+573f 70417803 jam 0x3 ,mem_afh_cfg 
+5740 58000000 setarg 0 
+5741 600241e2 store 4 ,mem_afh_timer 
+5742 d8a0417a arg mem_afh_map_lo ,contw 
+5743 2040574d call afh_reset_map 
+5744 d8a04187 arg mem_afh_map_new ,contw 
+5745 2040574d call afh_reset_map 
+5746 d8a041e6 arg mem_afh_classify_channel_map ,contw 
+5747 2040574d call afh_reset_map 
+5748 20205754 branch afh_clear_error_counter 
+
+afh_open_all_channels:
+5749 d8a04187 arg mem_afh_map_new ,contw 
+574a 2040574d call afh_reset_map 
+574b 20405754 call afh_clear_error_counter 
+574c 20205757 branch afh_set_send_flag 
+
+afh_reset_map:
+574d 58ffffff setarg 0xffffff 
+574e e0a18000 istore 3 ,contw 
+574f e0a18000 istore 3 ,contw 
+5750 e0a18000 istore 3 ,contw 
+5751 5800007f setarg 0x7f 
+5752 e0a08000 istore 1 ,contw 
+5753 20600000 rtn 
+
+afh_clear_error_counter:
+5754 58000000 setarg 0 
+5755 60014176 store 2 ,mem_afh_error_total 
+5756 20600000 rtn 
+
+afh_set_send_flag:
+5757 6800c178 fetch 1 ,mem_afh_cfg 
+5758 79207e02 set1 send_lmp_set_afh ,pdata 
+5759 6000c178 store 1 ,mem_afh_cfg 
+575a 20600000 rtn 
+
+send_lmpext_pause_encryption_req:
+575b 18000e02 force 2 ,queue 
+575c 204058a9 call send_lmpext 
+575d 2434d8b9 nbranch send_lmp_reply ,master 
+575e 202058bb branch send_lmp_request 
+
+send_lmp_detach:
+575f 18007e02 force 2 ,pdata 
+5760 204058a1 call msg_send_lmp 
+5761 680083f0 fetch 1 ,mem_disconn_reason_send 
+5762 e0a08000 istore 1 ,contw 
+5763 204058bb call send_lmp_request 
+
+prepare_disconnect:
+5764 6800804b fetch 1 ,mem_op 
+5765 79207e03 set1 op_disconn ,pdata 
+5766 6000804b store 1 ,mem_op 
+5767 70007232 jam 50 ,mem_conn_timer 
+5768 20600000 rtn 
+
+send_lmp_no_payload:
+5769 18007e01 force 1 ,pdata 
+576a 204058a1 call msg_send_lmp 
+576b 202058bb branch send_lmp_request 
+
+send_lmp_nopayload_reply:
+576c 18007e01 force 1 ,pdata 
+576d 204058a1 call msg_send_lmp 
+576e 202058b9 branch send_lmp_reply 
+
+send_lmp_encryption_mode_req:
+576f 18007e02 force 2 ,pdata 
+5770 204058a1 call msg_send_lmp 
+5771 6800804c fetch 1 ,mem_state_map 
+5772 2fec0002 isolate0 smap_encryption ,pdata 
+5773 7920fe00 setflag true ,0 ,pdata 
+5774 1fe17e01 and_into 1 ,pdata 
+5775 e0a08000 istore 1 ,contw 
+5776 202058bb branch send_lmp_request 
+
+send_lmp_superto:
+5777 18007e03 force 3 ,pdata 
+5778 204058a1 call msg_send_lmp 
+5779 68010051 fetch 2 ,mem_supervision_to 
+577a e0a10000 istore 2 ,contw 
+577b 202058bb branch send_lmp_request 
+
+send_lmp_name_req:
+577c 700072fa jam 250 ,mem_conn_timer 
+577d 18007e02 force 2 ,pdata 
+577e 204058a1 call msg_send_lmp 
+577f 68008053 fetch 1 ,mem_name_offset 
+5780 e0a08000 istore 1 ,contw 
+5781 202058bb branch send_lmp_request 
+
+send_lmp_test_control:
+5782 18007e0a force 10 ,pdata 
+5783 204058a1 call msg_send_lmp 
+5784 d8c00151 arg mem_temp_payload ,contr 
+5785 18007209 force 9 ,loopcnt 
+
+send_lmp_test_control_loop:
+5786 e8c08000 ifetch 1 ,contr 
+5787 1fe2fe55 xor_into 0x55 ,pdata 
+5788 e0a08000 istore 1 ,contw 
+5789 c2005786 loop send_lmp_test_control_loop 
+578a 202058bb branch send_lmp_request 
+
+send_lmp_quality_of_service_req:
+578b 202058bb branch send_lmp_request 
+
+send_lmp_unit_key:
+578c 202058bb branch send_lmp_request 
+
+send_lmp_slot_offset:
+578d 20748000 rtn master 
+578e 204038bc call calc_slot_offset 
+578f 18007e09 force 9 ,pdata 
+5790 204058a1 call msg_send_lmp 
+5791 68010170 fetch 2 ,mem_slot_offset 
+5792 e0a10000 istore 2 ,contw 
+5793 6801c140 fetch 3 ,mem_lap 
+5794 e0a18000 istore 3 ,contw 
+5795 6800c143 fetch 1 ,mem_uap 
+5796 e0a08000 istore 1 ,contw 
+5797 68014144 fetch 2 ,mem_nap 
+5798 e0a10000 istore 2 ,contw 
+5799 c581d79e bmark0 mark_switch_initiated ,send_lmp_slot_offset_reply 
+579a 793f8003 set0 mark_switch_initiated ,mark 
+579b 204058bb call send_lmp_request 
+579c 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+579d 20600000 rtn 
+
+send_lmp_slot_offset_reply:
+579e 204058b9 call send_lmp_reply 
+579f 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+57a0 70007d13 jam lmp_switch_req ,mem_lmi_opcode2 
+57a1 20600000 rtn 
+
+send_lmp_switch_req:
+57a2 d8400200 arg 0x200 ,temp 
+57a3 2034d7a6 branch switch_on_native ,master 
+57a4 1d027e00 deposit clke_bt 
+57a5 202057a7 branch switch_slack 
+
+switch_on_native:
+57a6 1c427e00 deposit clkn_bt 
+
+switch_slack:
+57a7 1c227e00 deposit bt_clk 
+57a8 9840fe00 iadd temp ,pdata 
+57a9 1fe17ffc and_into 0x1fc ,pdata 
+57aa 60020034 store 4 ,mem_sniff_anchor 
+57ab 18007e05 force 5 ,pdata 
+57ac 204058a1 call msg_send_lmp 
+57ad 68020034 fetch 4 ,mem_sniff_anchor 
+57ae 1fe37e00 rshift pdata ,pdata 
+57af e0a20000 istore 4 ,contw 
+57b0 202058bb branch send_lmp_request 
+
+send_lmp_sniff_req:
+57b1 18007e0a force 10 ,pdata 
+57b2 204058a1 call msg_send_lmp 
+57b3 d8c003ff arg mem_sniff_payload ,contr 
+57b4 e8c48000 ifetch 9 ,contr 
+57b5 e0a48000 istore 9 ,contw 
+57b6 202058bb branch send_lmp_request 
+
+send_lmp_timing_accuracy_req:
+57b7 18007e03 force 3 ,pdata 
+57b8 204058a1 call msg_send_lmp 
+57b9 58000114 setarg 0x0114 
+57ba e0a10000 istore 2 ,contw 
+57bb 202058bb branch send_lmp_request 
+
+send_lmp_unsniff_req:
+57bc 18007e01 force 1 ,pdata 
+57bd 204058a1 call msg_send_lmp 
+57be 202058bb branch send_lmp_request 
+
+send_lmp_max_slot:
+57bf 18007e02 force 2 ,pdata 
+57c0 204058a1 call msg_send_lmp 
+57c1 6800c170 fetch 1 ,mem_max_slot 
+57c2 e0a08000 istore 1 ,contw 
+57c3 202058bb branch send_lmp_request 
+
+send_lmp_max_slot_req:
+57c4 18007e02 force 2 ,pdata 
+57c5 204058a1 call msg_send_lmp 
+57c6 58000005 setarg 0x05 
+57c7 e0a08000 istore 1 ,contw 
+57c8 202058bb branch send_lmp_request 
+
+send_lmp_inc_power:
+57c9 18007e02 force 2 ,pdata 
+57ca 204058a1 call msg_send_lmp 
+57cb 58000000 setarg 0x00 
+57cc e0a08000 istore 1 ,contw 
+57cd 202058bb branch send_lmp_request 
+
+send_lmp_setup_complete:
+57ce 70007c2e jam lmp_max_slot_req ,mem_lmo_opcode2 
+57cf 68008030 fetch 1 ,mem_state 
+57d0 79207e04 set1 state_conn_comp ,pdata 
+57d1 60008030 store 1 ,mem_state 
+57d2 1c427e00 copy clkn_bt ,pdata 
+57d3 6002040f store 4 ,mem_aurand_send_delay_time 
+57d4 680083f7 fetch 1 ,mem_lmp_conn_state 
+57d5 c281d7dd bbit1 sent_setup_complete ,send_lmp_setup_complete_has_sent 
+57d6 79207e03 set1 sent_setup_complete ,pdata 
+57d7 600083f7 store 1 ,mem_lmp_conn_state 
+57d8 7009bd05 jam bt_evt_setup_complete ,mem_fifo_temp 
+57d9 20407d86 call ui_ipc_send_event 
+57da 18007e01 force 1 ,pdata 
+57db 204058a1 call msg_send_lmp 
+57dc 202058bb branch send_lmp_request 
+
+send_lmp_setup_complete_has_sent:
+57dd 70004800 jam 0 ,mem_lmp_to_send 
+57de 20600000 rtn 
+
+send_lmp_version_req:
+57df 18007e06 force 6 ,pdata 
+57e0 204058a1 call msg_send_lmp 
+57e1 6802c5a9 fetch 5 ,mem_lmp_version 
+57e2 e0a28000 istore 5 ,contw 
+57e3 202058bb branch send_lmp_request 
+
+send_lmp_features_req:
+57e4 18007e09 force 9 ,pdata 
+57e5 204058a1 call msg_send_lmp 
+57e6 68044138 fetch 8 ,mem_features 
+57e7 e0a40000 istore 8 ,contw 
+57e8 202058bb branch send_lmp_request 
+
+sp_master_send_io_cap_get:
+57e9 7008d501 jam sp_flag_commit ,mem_master_sp_flag 
+57ea 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+57eb c1808000 rtnne sp_key_valid 
+57ec 7008d313 jam sp_master_stat_start_done ,mem_master_sp_state 
+57ed 20600000 rtn 
+
+sp_master_send_io_cap_send:
+57ee 204058fa call tid_initiate 
+57ef 70007c99 jam lmp_io_cap_req ,mem_lmo_opcode2 
+57f0 7008d303 jam sp_stat_key_send ,mem_master_sp_state 
+57f1 20600000 rtn 
+
+sp_master_send_lmp_encapsulated_header:
+57f2 204058fa call tid_initiate 
+57f3 70007c3d jam lmp_encapsulated_header ,mem_lmo_opcode2 
+57f4 7008d307 jam sp_stat_random_send ,mem_master_sp_state 
+57f5 20600000 rtn 
+
+sp_master_commitment_compare:
+57f6 da200972 arg mem_sp_calc_result_high ,rega 
+57f7 da400992 arg mem_sp_confirm_remote ,regb 
+57f8 df200010 arg 16 ,loopcnt 
+57f9 20407f55 call string_compare 
+57fa 2022d800 branch sp_master_commitment_compare_success ,zero 
+57fb 7008d300 jam sp_stat_null ,mem_master_sp_state 
+57fc 204076f5 call master_clear_mem_master_sp_flag 
+57fd 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+57fe 70007d40 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+57ff 2020536c branch reject_lmp_packet 
+
+sp_master_commitment_compare_success:
+5800 7008d30a jam sp_stat_confirm_calc ,mem_master_sp_state 
+5801 204076f3 call master_set_mem_master_sp_flag 
+5802 70007d40 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+5803 20205454 branch accept_lmp_msg 
+
+sp_master_send_lmp_simple_pairing_number:
+5804 70007c40 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+5805 20600000 rtn 
+
+sp_send_lmp_encapsulated_header:
+5806 70007c3d jam lmp_encapsulated_header ,mem_lmo_opcode2 
+5807 20600000 rtn 
+
+send_lmp_encapsulated_header:
+5808 7008da00 jam 0 ,mem_sp_local_key_send_count 
+5809 18007e04 force 4 ,pdata 
+580a 204058a1 call msg_send_lmp 
+580b 18007e01 force encapsulated_major_type_p192 ,pdata 
+580c e0a08000 istore 1 ,contw 
+580d 18007e01 force encapsulated_minor_type_p192 ,pdata 
+580e e0a08000 istore 1 ,contw 
+580f 18007e30 force encapsulated_len_p192 ,pdata 
+5810 e0a08000 istore 1 ,contw 
+5811 20405907 call check_localsm 
+5812 2020d8bb branch send_lmp_request ,true 
+5813 202058b9 branch send_lmp_reply 
+
+send_lmp_encapsulated_payload:
+5814 18007e11 force 17 ,pdata 
+5815 204058a1 call msg_send_lmp 
+5816 680088da fetch 1 ,mem_sp_local_key_send_count 
+5817 d8c046b2 arg mem_sp_pubkey_local ,contr 
+5818 98c08c00 iadd contr ,contr 
+5819 e8c40000 ifetch 8 ,contr 
+581a e0a40000 istore 8 ,contw 
+581b e8c40000 ifetch 8 ,contr 
+581c e0a40000 istore 8 ,contw 
+581d 680088da fetch 1 ,mem_sp_local_key_send_count 
+581e 1fe0fe10 increase 16 ,pdata 
+581f 600088da store 1 ,mem_sp_local_key_send_count 
+5820 20405907 call check_localsm 
+5821 2020d8bb branch send_lmp_request ,true 
+5822 202058b9 branch send_lmp_reply 
+
+sp_send_lmp_simple_pairing_comfirm:
+5823 7008d206 jam sp_stat_random_recv ,mem_sp_state 
+5824 70007c3f jam lmp_simple_pairing_confirm ,mem_lmo_opcode2 
+5825 20600000 rtn 
+
+send_lmp_simple_pairing_comfirm:
+5826 18007e11 force 17 ,pdata 
+5827 204058a1 call msg_send_lmp 
+5828 d8c00972 arg mem_sp_calc_result_high ,contr 
+5829 e8c40000 ifetch 8 ,contr 
+582a e0a40000 istore 8 ,contw 
+582b e8c40000 ifetch 8 ,contr 
+582c e0a40000 istore 8 ,contw 
+582d 202058b9 branch send_lmp_reply 
+
+sp_send_lmp_simple_pairing_number:
+582e 70007c40 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+582f 20600000 rtn 
+
+send_lmp_simple_pairing_number:
+5830 20405907 call check_localsm 
+5831 2040f628 call sp_local_random_key_generator ,true 
+5832 18007e11 force 17 ,pdata 
+5833 204058a1 call msg_send_lmp 
+5834 d8c00942 arg mem_sp_random_local ,contr 
+5835 e8c40000 ifetch 8 ,contr 
+5836 e0a40000 istore 8 ,contw 
+5837 e8c40000 ifetch 8 ,contr 
+5838 e0a40000 istore 8 ,contw 
+5839 20405907 call check_localsm 
+583a 2420d8b9 nbranch send_lmp_reply ,true 
+583b 2020d8bb branch send_lmp_request ,true 
+
+master_sp_sm_end:
+583c 7008d30f jam sp_stat_done ,mem_master_sp_state 
+
+sp_aurand_send:
+583d 204058fa call tid_initiate 
+583e 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+583f 20405912 call check_localsm_master 
+5840 2020f665 branch sp_master_key_prarm_push ,true 
+5841 2020766f branch sp_link_key_prarm_push 
+
+master_sp_send_lmp_dhkey_check:
+5842 204058f6 call tid_reply 
+
+sp_send_lmp_dhkey_check:
+5843 70007c41 jam lmp_dhkey_check ,mem_lmo_opcode2 
+5844 20600000 rtn 
+
+send_lmp_dhkey_check:
+5845 18007e11 force 17 ,pdata 
+5846 204058a1 call msg_send_lmp 
+5847 d8c00972 arg mem_sp_calc_result_high ,contr 
+5848 e8c40000 ifetch 8 ,contr 
+5849 e0a40000 istore 8 ,contw 
+584a e8c40000 ifetch 8 ,contr 
+584b e0a40000 istore 8 ,contw 
+584c 20405907 call check_localsm 
+584d 2420d8b9 nbranch send_lmp_reply ,true 
+584e 2020d8bb branch send_lmp_request ,true 
+
+send_lmp_enc_key_size_mask_res:
+584f 18007e03 force 3 ,pdata 
+5850 204058a1 call msg_send_lmp 
+5851 5800fffe setarg 0xfffe 
+5852 e0a10000 istore 2 ,contw 
+5853 202058b9 branch send_lmp_reply 
+
+send_lmp_auto_rate:
+5854 202058bb branch send_lmp_request 
+
+send_lmp_clkoffset_req:
+5855 202058bb branch send_lmp_request 
+
+send_lmp_quality_of_service:
+5856 202058bb branch send_lmp_request 
+
+send_lmp_test_activate:
+5857 202058bb branch send_lmp_request 
+
+send_lmp_comb_key:
+5858 20405916 call generate_random_number 
+5859 da204140 arg mem_lap ,rega 
+585a 2040591c call generate_linkkey 
+585b 18007e11 force 17 ,pdata 
+585c 204058a1 call msg_send_lmp 
+585d da2004a6 arg mem_kinit ,rega 
+585e da400486 arg mem_random_number ,regb 
+585f 20407077 call xor16 
+5860 2434d8b0 nbranch send_lmp_follow ,master 
+5861 202058b6 branch send_lmp_tid 
+
+send_lmp_inrand:
+5862 20405916 call generate_random_number 
+5863 da200040 arg mem_plap ,rega 
+5864 20406f7a call generate_kinit 
+
+send_lmp_rand:
+5865 18007e11 force 17 ,pdata 
+5866 204058a1 call msg_send_lmp 
+5867 d8c00486 arg mem_random_number ,contr 
+5868 20407e87 call memcpy16 
+5869 68008055 fetch 1 ,mem_conn_sm 
+586a c00cd8bb beq conn_sm_auth_wait ,send_lmp_request 
+586b c00c58bb beq conn_sm_pairing_wait ,send_lmp_request 
+586c 202058b6 branch send_lmp_tid 
+
+send_lmp_aurand:
+586d 680088d9 fetch 1 ,mem_pairing_auth 
+586e 203a5873 branch send_lmp_aurand_notpairing ,blank 
+586f 20405907 call check_localsm 
+5870 2040d8fa call tid_initiate ,true 
+5871 2440d8f6 ncall tid_reply ,true 
+5872 20205874 branch send_lmp_aurand_common 
+
+send_lmp_aurand_notpairing:
+5873 204058fa call tid_initiate 
+
+send_lmp_aurand_common:
+5874 20405916 call generate_random_number 
+5875 20205865 branch send_lmp_rand 
+
+send_lmp_sres:
+5876 da204140 arg mem_lap ,rega 
+5877 20406fad call function_e1 
+5878 18007e05 force 5 ,pdata 
+5879 204058a1 call msg_send_lmp 
+587a 680204b6 fetch 4 ,mem_input_store 
+587b e0a20000 istore 4 ,contw 
+587c d84003fb arg mem_sres_tid ,temp 
+587d 204058ec call special_tid_store 
+587e 204070ab call copy_aco 
+587f 20405907 call check_localsm 
+5880 2020d885 branch send_lmp_sres_master ,true 
+5881 7003fe01 jam done_encryp ,mem_wait_encryption 
+5882 680088d9 fetch 1 ,mem_pairing_auth 
+5883 207a0000 rtn blank 
+5884 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+
+send_lmp_sres_master:
+5885 6800c25d fetch 1 ,mem_link_key_exists 
+5886 207a0000 rtn blank 
+
+send_lmp_sres_startenc:
+5887 20405907 call check_localsm 
+5888 2420d88d nbranch send_lmp_sres_startenc_slave ,true 
+5889 680083fd fetch 1 ,mem_auth_enable 
+588a 207a0000 rtn blank 
+588b 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+588c 20600000 rtn 
+
+send_lmp_sres_startenc_slave:
+588d c6908000 rtnmark0 mark_slave_in_rand_accepted 
+588e 793f8021 set0 mark_slave_in_rand_accepted ,mark 
+588f 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+5890 20600000 rtn 
+
+send_lmp_start_encryption:
+5891 20405916 call generate_random_number 
+5892 20406fb0 call function_e3 
+5893 18007e11 force 17 ,pdata 
+5894 204058a1 call msg_send_lmp 
+5895 d8c00486 arg mem_random_number ,contr 
+5896 20407e87 call memcpy16 
+5897 202058b6 branch send_lmp_tid 
+
+send_lmp_stop_encryption_req:
+5898 18007e01 force 1 ,pdata 
+5899 204058a1 call msg_send_lmp 
+589a 202058b6 branch send_lmp_tid 
+
+send_lmp_encryption_key_size_req:
+589b 18007e02 force 2 ,pdata 
+589c 204058a1 call msg_send_lmp 
+589d 18007e10 force 16 ,pdata 
+589e e0a08000 istore 1 ,contw 
+589f 60008054 store 1 ,mem_key_size 
+58a0 202058b6 branch send_lmp_tid 
+
+msg_send_lmp:
+58a1 1fe9fe00 lshift3 pdata ,pdata 
+58a2 1fe1fe07 or_into 0x07 ,pdata 
+58a3 600083dc store 1 ,mem_lmo_header_length 
+58a4 df200011 arg 17 ,loopcnt 
+58a5 d8a003de arg mem_lmo_payload ,contw 
+58a6 20407e9f call clear_mem 
+58a7 d8a003de arg mem_lmo_payload ,contw 
+58a8 20600000 rtn 
+
+send_lmpext:
+58a9 1fe1227f and pdata ,0x7f ,rega 
+58aa 7000487f jam lmp_escape ,mem_lmp_to_send 
+58ab 18e27e00 deposit queue 
+58ac 204058a1 call msg_send_lmp 
+58ad 1a227e00 deposit rega 
+58ae e0a08000 istore 1 ,contw 
+58af 20600000 rtn 
+
+send_lmp_follow:
+58b0 68008048 fetch 1 ,mem_lmp_to_send 
+58b1 1fe3fe00 lshift pdata ,pdata 
+58b2 6808804c fetcht 1 ,mem_state_map 
+58b3 284ffe01 isolate1 smap_lmptid ,temp 
+58b4 7920fe00 setflag true ,0 ,pdata 
+58b5 202058c0 branch send_lmp_exit 
+
+send_lmp_tid:
+58b6 6808804c fetcht 1 ,mem_state_map 
+58b7 18410401 and_into 1 ,temp 
+58b8 202058bc branch send_lmp_end 
+
+send_lmp_reply:
+58b9 18000400 force 0 ,temp 
+58ba 202058bc branch send_lmp_end 
+
+send_lmp_request:
+58bb 18000401 force 1 ,temp 
+
+send_lmp_end:
+58bc 68008048 fetch 1 ,mem_lmp_to_send 
+58bd 1fe3fe00 lshift pdata ,pdata 
+58be 7934fe00 setflag master ,0 ,pdata 
+58bf 9842fe00 ixor temp ,pdata 
+
+send_lmp_exit:
+58c0 600083dd store 1 ,mem_lmo_header_opcode 
+58c1 70004800 jam 0 ,mem_lmp_to_send 
+58c2 204058d1 call lmo_fifo_process_lmo0empty 
+58c3 78347c00 enable user 
+58c4 20600000 rtn 
+
+lmo_fifo_check:
+58c5 6800807c fetch 1 ,mem_lmo_opcode2 
+58c6 207a0000 rtn blank 
+58c7 204058ca call lmo_fifo_process 
+58c8 6800807c fetch 1 ,mem_lmo_opcode2 
+58c9 20600000 rtn 
+
+lmo_fifo_process:
+58ca 79200025 set1 mark_ext_patch ,mark 
+58cb 44ae402b bpatch patch2b_4 ,mem_patch2b 
+58cc 68008048 fetch 1 ,mem_lmp_to_send 
+58cd 203a58d1 branch lmo_fifo_process_lmo0empty ,blank 
+58ce 68008078 fetch 1 ,mem_lmo_opcode1 
+58cf 247a0000 nrtn blank 
+58d0 202058db branch lmo_fifo_process_lmo2to1 
+
+lmo_fifo_process_lmo0empty:
+58d1 68008078 fetch 1 ,mem_lmo_opcode1 
+58d2 203a58e1 branch lmo_fifo_process_lmo1_empty ,blank 
+58d3 68018078 fetch 3 ,mem_lmo_opcode1 
+58d4 60018048 store 3 ,mem_lmp_to_send 
+58d5 6808807b fetcht 1 ,mem_lmo_tid1 
+58d6 6800804c fetch 1 ,mem_state_map 
+58d7 793ffe01 set0 smap_lmptid ,pdata 
+58d8 9841fe00 ior temp ,pdata 
+58d9 6000804c store 1 ,mem_state_map 
+58da 70007800 jam 0 ,mem_lmo_opcode1 
+
+lmo_fifo_process_lmo2to1:
+58db 6800807c fetch 1 ,mem_lmo_opcode2 
+58dc 207a0000 rtn blank 
+58dd 6802007c fetch 4 ,mem_lmo_opcode2 
+58de 60020078 store 4 ,mem_lmo_opcode1 
+58df 70007c00 jam 0 ,mem_lmo_opcode2 
+58e0 20600000 rtn 
+
+lmo_fifo_process_lmo1_empty:
+58e1 6800807c fetch 1 ,mem_lmo_opcode2 
+58e2 207a0000 rtn blank 
+58e3 6801807c fetch 3 ,mem_lmo_opcode2 
+58e4 60018048 store 3 ,mem_lmp_to_send 
+58e5 6808807f fetcht 1 ,mem_lmo_tid2 
+58e6 6800804c fetch 1 ,mem_state_map 
+58e7 793ffe01 set0 smap_lmptid ,pdata 
+58e8 9841fe00 ior temp ,pdata 
+58e9 6000804c store 1 ,mem_state_map 
+58ea 70007c00 jam 0 ,mem_lmo_opcode2 
+58eb 20600000 rtn 
+
+special_tid_store:
+58ec 79200025 set1 mark_ext_patch ,mark 
+58ed 44aec02b bpatch patch2b_5 ,mem_patch2b 
+58ee 6800804c fetch 1 ,mem_state_map 
+58ef 1fe22600 copy pdata ,regc 
+58f0 e8408000 ifetch 1 ,temp 
+58f1 2040546e call pop_tid_follow 
+58f2 204058b0 call send_lmp_follow 
+58f3 1a627e00 copy regc ,pdata 
+58f4 6000804c store 1 ,mem_state_map 
+58f5 20600000 rtn 
+
+tid_reply:
+58f6 6808804c fetcht 1 ,mem_state_map 
+58f7 793f8400 set0 smap_lmptidinit ,temp 
+58f8 6008804c storet 1 ,mem_state_map 
+58f9 20600000 rtn 
+
+tid_initiate:
+58fa 6808804c fetcht 1 ,mem_state_map 
+58fb 79200400 set1 smap_lmptidinit ,temp 
+58fc 6008804c storet 1 ,mem_state_map 
+58fd 20600000 rtn 
+
+tid_check:
+58fe 7d34fe01 nsetflag master ,smap_lmptid ,pdata 
+58ff 6808804c fetcht 1 ,mem_state_map 
+5900 9842fe00 ixor temp ,pdata 
+5901 2feffe01 isolate1 smap_lmptid ,pdata 
+5902 20600000 rtn 
+
+tid_set_reply:
+5903 6800804c fetch 1 ,mem_state_map 
+5904 7934fe01 setflag master ,smap_lmptid ,pdata 
+5905 6000804c store 1 ,mem_state_map 
+5906 20600000 rtn 
+
+check_localsm:
+5907 680088d8 fetch 1 ,mem_sp_localsm 
+5908 2fe0fe01 compare local_statemachine ,pdata ,0x7f 
+5909 20600000 rtn 
+
+setlocalsm_master:
+590a 680088d8 fetch 1 ,mem_sp_localsm 
+590b 79207e07 set1 7 ,pdata 
+590c 600088d8 store 1 ,mem_sp_localsm 
+590d 20600000 rtn 
+
+setlocalsm_slave:
+590e 680088d8 fetch 1 ,mem_sp_localsm 
+590f 793ffe07 set0 7 ,pdata 
+5910 600088d8 store 1 ,mem_sp_localsm 
+5911 20600000 rtn 
+
+check_localsm_master:
+5912 680088d8 fetch 1 ,mem_sp_localsm 
+5913 2feffe07 isolate1 7 ,pdata 
+5914 600088d8 store 1 ,mem_sp_localsm 
+5915 20600000 rtn 
+
+generate_random_number:
+5916 d8a00486 arg mem_random_number ,contw 
+
+generate_random:
+5917 18007210 force 16 ,loopcnt 
+
+generate_random_another:
+
+generate_random_loop:
+5918 180a7e00 random pdata 
+5919 e0a08000 istore 1 ,contw 
+591a c2005918 loop generate_random_another 
+591b 20600000 rtn 
+
+generate_linkkey:
+591c 20406f7e call function_e21 
+591d da204261 arg mem_link_key ,rega 
+591e da4004b6 arg mem_input_store ,regb 
+591f ea240000 ifetch 8 ,rega 
+5920 68088030 fetcht 1 ,mem_state 
+5921 7d3a0406 nsetflag blank ,state_combkey ,temp 
+5922 60088030 storet 1 ,mem_state 
+5923 1a220a00 copy rega ,contw 
+5924 20407077 call xor16 
+5925 202031ee branch generate_linkkey_continue 
+
+process_conn_sm:
+5926 79200025 set1 mark_ext_patch ,mark 
+5927 44af402b bpatch patch2b_6 ,mem_patch2b 
+5928 204058c5 call lmo_fifo_check 
+5929 247a0000 nrtn blank 
+
+process_conn_sm_continue:
+592a 68008055 fetch 1 ,mem_conn_sm 
+592b 207a0000 rtn blank 
+592c c002597b beq conn_sm_send_conn_req ,host_create_conn_send_conn_req 
+592d c002d980 beq conn_sm_wait_conn_accept ,host_create_conn_wait_accept 
+592e c0015972 beq conn_sm_send_features ,host_create_conn_send_features 
+592f c001d988 beq conn_sm_wait_features_res ,host_create_conn_waiting 
+5930 c0075975 beq conn_sm_send_switch ,host_create_conn_send_switch 
+5931 c00359a4 beq conn_sm_auth_pair ,host_create_conn_auth_pair 
+5932 c003d9bc beq conn_sm_auth_pair_wait ,host_create_conn_auth_pair_wait 
+5933 c004d9bd beq conn_sm_encrypt ,host_create_conn_encrypt 
+5934 c00559c6 beq conn_sm_encrypt_wait ,host_create_conn_encrypt_wait 
+5935 c005d9ca beq conn_sm_encrypt_wait_clear ,host_create_conn_encrypt_wait_clear 
+5936 c0065992 beq conn_sm_send_setup_complete ,host_create_conn_send_setup_complete 
+5937 c006d995 beq conn_sm_wait_setup_complete ,host_create_conn_wait_setup_complete 
+5938 c007d99b beq conn_sm_detach_delay ,host_create_conn_master_detach 
+5939 c0095965 beq conn_sm_send_version ,host_create_conn_send_version 
+593a c009d988 beq conn_sm_wait_version ,host_create_conn_waiting 
+593b c0085968 beq conn_sm_wait_switch_after_host_connection ,host_creat_conn_wait_switch 
+593c c00a5962 beq conn_sm_send_features_ext ,host_creat_conn_send_feat_ext 
+593d c00ad988 beq conn_sm_wait_features_ext ,host_create_conn_waiting 
+593e c00b595c beq conn_sm_pairing ,host_create_conn_pairing 
+593f c00c5961 beq conn_sm_pairing_wait ,host_create_conn_pairing_wait 
+5940 c00bd955 beq conn_sm_auth ,host_create_conn_auth 
+5941 c00cd95b beq conn_sm_auth_wait ,host_create_conn_auth_wait 
+5942 c00d5946 beq conn_sm_done ,host_create_conn_done 
+5943 c00dd950 beq conn_sm_wait_done ,host_create_conn_done_wait 
+5944 70005500 jam conn_sm_standby ,mem_conn_sm 
+5945 20600000 rtn 
+
+host_create_conn_done:
+5946 680083f7 fetch 1 ,mem_lmp_conn_state 
+5947 c4010000 rtnbit0 received_setup_complete 
+5948 c4018000 rtnbit0 sent_setup_complete 
+5949 70005500 jam conn_sm_standby ,mem_conn_sm 
+594a 2040594c call host_conn_judge_encrypt 
+594b 2020690d branch scheduler_start_upper_sm 
+
+host_conn_judge_encrypt:
+594c 6800816c fetch 1 ,mem_connection_options 
+594d c4008000 rtnbit0 connection_encrypt 
+594e 7000550a jam conn_sm_encrypt_wait ,mem_conn_sm 
+594f 20600000 rtn 
+
+host_create_conn_done_wait:
+5950 d8e0000b arg enpt_delay_timer ,queue 
+5951 20407ee2 call timer_check 
+5952 247a0000 nrtn blank 
+5953 7000551a jam conn_sm_done ,mem_conn_sm 
+5954 20600000 rtn 
+
+host_create_conn_auth:
+5955 6800816c fetch 1 ,mem_connection_options 
+5956 793ffe00 set0 connection_auth ,pdata 
+5957 6000816c store 1 ,mem_connection_options 
+5958 70005519 jam conn_sm_auth_wait ,mem_conn_sm 
+5959 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+595a 20600000 rtn 
+
+host_create_conn_auth_wait:
+595b 20600000 rtn 
+
+host_create_conn_pairing:
+595c 680083fa fetch 1 ,mem_pincode_state 
+595d c1810000 rtnne pincode_state_pincode_ready 
+595e 204059cc call host_auth 
+595f 70005518 jam conn_sm_pairing_wait ,mem_conn_sm 
+5960 20600000 rtn 
+
+host_create_conn_pairing_wait:
+5961 20600000 rtn 
+
+host_creat_conn_send_feat_ext:
+5962 70005515 jam conn_sm_wait_features_ext ,mem_conn_sm 
+5963 70007c83 jam lmp_ext_features_req ,mem_lmo_opcode2 
+5964 20600000 rtn 
+
+host_create_conn_send_version:
+5965 70005513 jam conn_sm_wait_version ,mem_conn_sm 
+5966 70007c25 jam lmp_version_req ,mem_lmo_opcode2 
+5967 20600000 rtn 
+
+host_creat_conn_wait_switch:
+5968 6800c5f4 fetch 1 ,mem_switch_flag 
+5969 c1000000 rtneq switch_flag_init 
+596a c000d970 beq switch_flag_accept ,host_create_conn_switch_accept 
+596b d8e0000a arg switch_wait_timer ,queue 
+596c 20407ee2 call timer_check 
+596d 247a0000 nrtn blank 
+596e 7045f400 jam switch_flag_init ,mem_switch_flag 
+596f 20205989 branch host_create_conn_switch 
+
+host_create_conn_switch_accept:
+5970 20748000 rtn master 
+5971 202059a4 branch host_create_conn_auth_pair 
+
+host_create_conn_send_features:
+5972 70005503 jam conn_sm_wait_features_res ,mem_conn_sm 
+5973 70007c27 jam lmp_features_req ,mem_lmo_opcode2 
+5974 20600000 rtn 
+
+host_create_conn_send_switch:
+5975 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+5976 79200003 set1 mark_switch_initiated ,mark 
+5977 70005505 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+5978 580001ff setarg 0x1ff 
+5979 600103f8 store 2 ,mem_soft_timer 
+597a 20600000 rtn 
+
+host_create_conn_send_conn_req:
+597b 70005505 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+597c 7003f8ff jam 0xff ,mem_soft_timer 
+597d 793f8022 set0 mark_reconn_recieve_switch ,mark 
+597e 70007c33 jam lmp_host_connection_req ,mem_lmo_opcode2 
+597f 2020531b branch init_lmp_reinit 
+
+host_create_conn_wait_accept:
+5980 c6110000 rtnmark1 mark_reconn_recieve_switch 
+5981 680103f8 fetch 2 ,mem_soft_timer 
+5982 1fe67e01 sub pdata ,1 ,pdata 
+5983 2022d986 branch host_create_conn_resend ,zero 
+5984 600103f8 store 2 ,mem_soft_timer 
+5985 20600000 rtn 
+
+host_create_conn_resend:
+5986 7000550e jam conn_sm_send_switch ,mem_conn_sm 
+5987 20600000 rtn 
+
+host_create_conn_waiting:
+5988 20600000 rtn 
+
+host_create_conn_switch:
+5989 680083f7 fetch 1 ,mem_lmp_conn_state 
+598a c4018000 rtnbit0 sent_setup_complete 
+598b c4010000 rtnbit0 received_setup_complete 
+598c 6800816c fetch 1 ,mem_connection_options 
+598d 793ffe02 set0 connection_switch ,pdata 
+598e 6000816c store 1 ,mem_connection_options 
+598f 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+5990 70005510 jam conn_sm_wait_switch_after_host_connection ,mem_conn_sm 
+5991 20600000 rtn 
+
+host_create_conn_send_setup_complete:
+5992 7000550d jam conn_sm_wait_setup_complete ,mem_conn_sm 
+5993 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+5994 20600000 rtn 
+
+host_create_conn_wait_setup_complete:
+5995 680083f7 fetch 1 ,mem_lmp_conn_state 
+5996 c4010000 rtnbit0 received_setup_complete 
+5997 70005500 jam conn_sm_standby ,mem_conn_sm 
+5998 20600000 rtn 
+
+host_create_conn_wait_setup_complete_rtn:
+5999 70005506 jam conn_sm_auth_pair ,mem_conn_sm 
+599a 20600000 rtn 
+
+host_create_conn_master_detach:
+599b 680083f8 fetch 1 ,mem_soft_timer 
+599c 1fe0ffff increase -1 ,pdata 
+599d 203a59a0 branch host_create_conn_send_detach ,blank 
+599e 600083f8 store 1 ,mem_soft_timer 
+599f 20600000 rtn 
+
+host_create_conn_send_detach:
+59a0 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+59a1 7003f016 jam local_host ,mem_disconn_reason_send 
+59a2 70005500 jam 0 ,mem_conn_sm 
+59a3 20600000 rtn 
+
+host_create_conn_auth_pair:
+59a4 6800816c fetch 1 ,mem_connection_options 
+59a5 c2815989 bbit1 connection_switch ,host_create_conn_switch 
+59a6 c28059a9 bbit1 connection_auth ,host_create_conn_auth_pair_true 
+
+host_create_conn_sm_done:
+59a7 7000551a jam conn_sm_done ,mem_conn_sm 
+59a8 20600000 rtn 
+
+host_create_conn_auth_pair_true:
+59a9 6800c25d fetch 1 ,mem_link_key_exists 
+59aa 203a59b5 branch host_create_conn_auth_pair_nokey ,blank 
+59ab 680083f7 fetch 1 ,mem_lmp_conn_state 
+59ac c4018000 rtnbit0 sent_setup_complete 
+59ad c4010000 rtnbit0 received_setup_complete 
+59ae 6802040f fetch 4 ,mem_aurand_send_delay_time 
+59af d8400064 arg 100 ,temp 
+59b0 98408400 iadd temp ,temp 
+59b1 1c427e00 copy clkn_bt ,pdata 
+59b2 98467c00 isub temp ,null 
+59b3 24610000 nrtn positive 
+59b4 20205955 branch host_create_conn_auth 
+
+host_create_conn_auth_pair_nokey:
+59b5 70005516 jam conn_sm_pairing ,mem_conn_sm 
+59b6 70471804 jam 4 ,mem_pin_length 
+59b7 58003030 setarg 0x3030 
+59b8 60014719 store 2 ,mem_pin 
+59b9 e0a10000 istore 2 ,contw 
+59ba 7003fa02 jam pincode_state_pincode_ready ,mem_pincode_state 
+59bb 2020595c branch host_create_conn_pairing 
+
+host_create_conn_auth_pair_wait:
+59bc 20600000 rtn 
+
+host_create_conn_encrypt:
+59bd 6800816c fetch 1 ,mem_connection_options 
+59be c280d9c1 bbit1 connection_encrypt ,host_create_conn_encrypt_start 
+59bf 7000551a jam conn_sm_done ,mem_conn_sm 
+59c0 20600000 rtn 
+
+host_create_conn_encrypt_start:
+59c1 6800816c fetch 1 ,mem_connection_options 
+59c2 793ffe01 set0 connection_encrypt ,pdata 
+59c3 6000816c store 1 ,mem_connection_options 
+59c4 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+59c5 20600000 rtn 
+
+host_create_conn_encrypt_wait:
+59c6 680083fe fetch 1 ,mem_wait_encryption 
+59c7 207a0000 rtn blank 
+59c8 70005500 jam conn_sm_standby ,mem_conn_sm 
+59c9 202059c1 branch host_create_conn_encrypt_start 
+
+host_create_conn_encrypt_wait_clear:
+59ca 7000550c jam conn_sm_send_setup_complete ,mem_conn_sm 
+59cb 20600000 rtn 
+
+host_auth:
+59cc 6800804b fetch 1 ,mem_op 
+59cd c28159d1 bbit1 op_inrand_req ,remote_auth 
+59ce 204058fa call tid_initiate 
+59cf 70007c08 jam lmp_in_rand ,mem_lmo_opcode2 
+59d0 20203f9b branch cmd_exit 
+
+remote_auth:
+59d1 6800804b fetch 1 ,mem_op 
+59d2 793ffe02 set0 op_inrand_req ,pdata 
+59d3 6000804b store 1 ,mem_op 
+59d4 20405618 call lmp_accept_inrand 
+59d5 20405903 call tid_set_reply 
+59d6 20203f9b branch cmd_exit 
+
+pincode_reinit:
+59d7 58000004 setarg 4 
+59d8 6000c718 store 1 ,mem_pin_length 
+59d9 58003030 setarg 0x3030 
+59da e0a10000 istore 2 ,contw 
+59db e0a10000 istore 2 ,contw 
+59dc 20600000 rtn 
+
+module_init:
+59dd 20758000 rtn wake 
+59de 70472f00 jam 0 ,mem_module_task 
+59df 20405234 call le_modified_name 
+59e0 20406577 call adc_init_data 
+59e1 58005a1c setarg module_process_idle 
+59e2 60014294 store 2 ,mem_cb_idle_process 
+59e3 58005a1c setarg module_conn_process 
+59e4 60014292 store 2 ,mem_cb_bt_process 
+59e5 58005a22 setarg module_process_bb_event 
+59e6 60014296 store 2 ,mem_cb_bb_event_process 
+59e7 58005a1c setarg module_conn_process 
+59e8 60014290 store 2 ,mem_cb_le_process 
+59e9 58005a18 setarg module_lpm_lock 
+59ea 6001428a store 2 ,mem_cb_check_wakelock 
+59eb 58005b60 setarg module_le_tx_update_data 
+59ec 6001429c store 2 ,mem_cb_update_notify_value 
+59ed 58005ba2 setarg module_le_tx_update_notify_continue 
+59ee 6001429e store 2 ,mem_cb_update_notify_continue 
+59ef 58005cf9 setarg module_hci_event_receive_spp_data 
+59f0 60014607 store 2 ,mem_cb_receive_spp_data 
+59f1 58005d81 setarg module_le_receive_data 
+59f2 6001429a store 2 ,mem_cb_att_write 
+59f3 79200025 set1 mark_ext_patch ,mark 
+59f4 44afc02b bpatch patch2b_7 ,mem_patch2b 
+59f5 204059fa call module_lpm_uart_init 
+59f6 20405a13 call module_gpio_init 
+59f7 20403d48 call check_module_disabled 
+59f8 20406441 call eeprom_load_reconn_info 
+59f9 20205d0e branch module_hci_event_enter_standby_mode 
+
+module_lpm_uart_init:
+59fa 6802473e fetch 4 ,mem_module_uart_rx_buffer 
+59fb 60120054 hstore 4 ,core_uart_rsaddr 
+59fc 68024742 fetch 4 ,mem_module_uart_tx_buffer 
+59fd 6012005a hstore 4 ,core_uart_tsaddr 
+59fe 68108081 hfetch 1 ,core_gpio_sel1 
+59ff 1fe1fe04 or_into 0x04 ,pdata 
+5a00 60108081 hstore 1 ,core_gpio_sel1 
+5a01 70027cff jam 0xff ,mem_ucode_id_local 
+5a02 70806200 hjam 0x0 ,core_uart_ctrl 
+5a03 6801473e fetch 2 ,mem_module_uart_rx_buffer 
+5a04 60110058 hstore 2 ,core_uart_rrptr 
+5a05 68014742 fetch 2 ,mem_module_uart_tx_buffer 
+5a06 6011005e hstore 2 ,core_uart_twptr 
+5a07 60110060 hstore 2 ,core_uart_trptrp 
+5a08 68120078 hfetch 4 ,core_gpio_pu0 
+5a09 79207e07 set1 7 ,pdata 
+5a0a 60120078 hstore 4 ,core_gpio_pu0 
+5a0b 20403ee4 call hci_init_common 
+5a0c 6800c75a fetch 1 ,mem_module_flag 
+5a0d 2feffe00 isolate1 module_flag_uart_flow_control ,pdata 
+5a0e 68188062 hfetcht 1 ,core_uart_ctrl 
+5a0f 79208404 setflag true ,4 ,temp 
+5a10 60188062 hstoret 1 ,core_uart_ctrl 
+5a11 20600000 rtn 
+
+module_lpm_init:
+5a12 204059fa call module_lpm_uart_init 
+
+module_gpio_init:
+5a13 6808c72b fetcht 1 ,mem_module_connect_state_gpio 
+5a14 204064e8 call gpio_config_output 
+5a15 20405a76 call module_set_conn_pin_low 
+5a16 6808c729 fetcht 1 ,mem_module_wake_up_gpio 
+5a17 202064df branch gpio_config_input 
+
+module_lpm_lock:
+5a18 6808c729 fetcht 1 ,mem_module_wake_up_gpio 
+5a19 204064f5 call gpio_get_bit 
+5a1a 2420be37 nbranch app_put_lpm_wake_lock ,true 
+5a1b 20203e35 branch app_get_lpm_wake_lock 
+
+module_process_idle:
+
+module_conn_process:
+
+module_app_dispatch:
+5a1c 79200025 set1 mark_ext_patch ,mark 
+5a1d 44b0402c bpatch patch2c_0 ,mem_patch2c 
+5a1e 20405dc5 call module_control_air_flow 
+5a1f 2040480e call l2cap_malloc_is_fifo_full 
+5a20 247a0000 nrtn blank 
+5a21 20205a7b branch module_process 
+
+module_process_bb_event:
+5a22 1a627e00 copy regc ,pdata 
+5a23 c000da67 beq bt_evt_bb_connected ,module_process_bb_conn 
+5a24 c0015a3e beq bt_evt_bb_disconnected ,module_process_bb_event_disconned 
+5a25 c0025a69 beq bt_evt_reconn_failed ,module_process_reconn_fail 
+5a26 c002da5b beq bt_evt_setup_complete ,module_process_setup_complete 
+5a27 c0045a44 beq bt_evt_spp_connected ,module_process_spp_connected 
+5a28 c004da4b beq bt_evt_spp_disconnected ,module_process_spp_disconnected 
+5a29 c0055a5e beq bt_evt_pincode_req ,module_process_evt_pincode_req 
+5a2a c005da4f beq bt_evt_enter_sniff ,module_process_enter_sniff 
+5a2b c0065a5a beq bt_evt_exit_sniff ,module_process_exit_sniff 
+5a2c c009da69 beq bt_evt_reconn_page_timeout ,module_process_page_time_out 
+5a2d c00a5a63 beq bt_evt_le_connected ,module_process_le_conn 
+5a2e c00ada5c beq bt_evt_le_disconnected ,module_process_bb_even_le_disconn 
+5a2f c011da5f beq bt_evt_unsniff_accept ,module_process_unsniff_accept 
+5a30 c0125a62 beq bt_evt_unsniff_not_accept ,module_process_unsniff_not_accept 
+5a31 c0185d49 beq bt_evt_le_pairing_fail ,module_hci_event_le_pairing_fail 
+5a32 c018dd4b beq bt_evt_le_pairing_success ,module_hci_event_le_pairing_success 
+5a33 c0195d59 beq bt_evt_le_start_enc ,module_hci_event_start_enc 
+5a34 c019dd57 beq bt_evt_le_pause_enc ,module_hci_event_pause_enc 
+5a35 c01a5d43 beq bt_evt_le_tk_generate ,module_hci_event_le_tk 
+5a36 c01add39 beq bt_evt_bt_gkey_generate ,module_hci_event_gkey_generate 
+5a37 c01b5d41 beq bt_evt_bt_get_passkey ,module_hci_event_passkey_entry_mode 
+5a38 c01bdd4d beq bt_evt_bt_pairing_fail ,module_hci_event_bt_pairing_fail 
+5a39 c01c5d4f beq bt_evt_bt_pairing_success ,module_hci_event_bt_pairing_success 
+5a3a 1fe1040f and pdata ,0x0f ,temp 
+5a3b 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+5a3c c0285da3 beq bt_evt_timer_init ,module_bb_event_timer 
+5a3d 20600000 rtn 
+
+module_process_bb_event_disconned:
+5a3e 6800c6ed fetch 1 ,mem_flag_pairing_state 
+5a3f 245a5d4d ncall module_hci_event_bt_pairing_fail ,blank 
+5a40 20405a69 call module_disconn_start 
+5a41 6801470b fetch 2 ,mem_ui_state_map 
+5a42 c4020000 rtnbit0 ui_state_bt_spp_conn 
+5a43 20205a4b branch module_spp_disconnected 
+
+module_process_spp_connected:
+5a44 6801470b fetch 2 ,mem_ui_state_map 
+5a45 79207e04 set1 ui_state_bt_spp_conn ,pdata 
+5a46 6001470b store 2 ,mem_ui_state_map 
+5a47 6800c73b fetch 1 ,mem_module_spp_lpm_mult 
+5a48 6000c212 store 1 ,mem_lpm_mult 
+5a49 20405a76 call module_set_conn_pin_low 
+5a4a 20205ce4 branch module_hci_event_spp_connect 
+
+module_process_spp_disconnected:
+
+module_spp_disconnected:
+5a4b 6801470b fetch 2 ,mem_ui_state_map 
+5a4c 793ffe04 set0 ui_state_bt_spp_conn ,pdata 
+5a4d 6001470b store 2 ,mem_ui_state_map 
+5a4e 20205ce8 branch module_hci_event_spp_disconnect 
+
+module_process_enter_sniff:
+
+module_sniff_param_check:
+5a4f 68014042 fetch 2 ,mem_context + coffset_tsniff 
+5a50 1fe37e00 rshift pdata ,pdata 
+5a51 68094284 fetcht 2 ,mem_sniff_param_interval 
+5a52 98467c00 isub temp ,null 
+5a53 2422da55 nbranch module_sniff_param_check_unsniff ,zero 
+5a54 20203e7f branch app_lpm_mult_enable 
+
+module_sniff_param_check_unsniff:
+5a55 6800c72f fetch 1 ,mem_module_task 
+5a56 c3800000 rtnbit1 moudle_task_unsinff 
+5a57 68110112 hfetch 2 ,core_uart_rxitems 
+5a58 245a5dbd ncall module_set_unsniff_task_flag ,blank 
+5a59 20203e77 branch app_bt_sniff_exit 
+
+module_process_exit_sniff:
+5a5a 20203e81 branch app_lpm_mult_disable 
+
+module_process_setup_complete:
+5a5b 20205a6d branch module_conn_start 
+
+module_process_bb_even_le_disconn:
+5a5c 20405a69 call module_disconn_start 
+5a5d 20205cea branch module_hci_event_le_disconnect 
+
+module_process_evt_pincode_req:
+5a5e 20203e45 branch app_bt_set_pincode 
+
+module_process_unsniff_accept:
+5a5f 6800c72f fetch 1 ,mem_module_task 
+5a60 c3003e79 bbit0 moudle_task_unsinff ,app_bt_enter_sniff 
+5a61 20205dc1 branch module_clear_unsniff_task_flag 
+
+module_process_unsniff_not_accept:
+5a62 20205dc1 branch module_clear_unsniff_task_flag 
+
+module_process_le_conn:
+5a63 20405a6d call module_conn_start 
+5a64 6800c73c fetch 1 ,mem_module_le_lpm_mult 
+5a65 6000c212 store 1 ,mem_lpm_mult 
+5a66 20205ce6 branch module_hci_event_le_connect 
+
+module_process_bb_conn:
+5a67 7046e900 jam 0 ,mem_flag_mode_ssp_pin 
+5a68 20600000 rtn 
+
+module_process_page_time_out:
+
+module_process_reconn_fail:
+
+module_disconn_start:
+5a69 20405adf call module_start_adv_discovery_by_command 
+5a6a 20205a6b branch module_set_conn_pin_high 
+
+module_set_conn_pin_high:
+5a6b 6808c72b fetcht 1 ,mem_module_connect_state_gpio 
+5a6c 202064ff branch gpio_out_active 
+
+module_conn_start:
+5a6d 20405a6f call module_stop_adv_discovery 
+5a6e 20205a76 branch module_set_conn_pin_low 
+
+module_stop_adv_discovery:
+5a6f 6800c72e fetch 1 ,mem_module_state 
+5a70 2feffe00 isolate1 moudle_state_bt_bit ,pdata 
+5a71 2040be59 call app_bt_stop_discovery ,true 
+5a72 6800c72e fetch 1 ,mem_module_state 
+5a73 2feffe01 isolate1 moudle_state_ble_bit ,pdata 
+5a74 2040be61 call app_ble_stop_adv ,true 
+5a75 20600000 rtn 
+
+module_set_conn_pin_low:
+5a76 6808c72b fetcht 1 ,mem_module_connect_state_gpio 
+5a77 202064fd branch gpio_out_inactive 
+
+module_process_with_credit:
+5a78 6800c603 fetch 1 ,mem_credit_flag 
+5a79 c1000000 rtneq credit_disable 
+5a7a 20206838 branch rfcomm_send_uih_without_payload 
+
+module_process:
+5a7b 79200025 set1 mark_ext_patch ,mark 
+5a7c 44b0c02c bpatch patch2c_1 ,mem_patch2c 
+5a7d 6810810c hfetch 1 ,core_uart_status 
+5a7e c281da78 bbit1 uart_status_rx_fifo_empty ,module_process_with_credit 
+5a7f 20407f6e call get_uart_rrptr 
+5a80 e8608000 ifetch 1 ,contru 
+5a81 c080da93 bne 0x01 ,module_hci_in_excp 
+5a82 68110112 hfetch 2 ,core_uart_rxitems 
+5a83 1fe67c02 sub pdata ,2 ,null 
+5a84 20610000 rtn positive 
+5a85 e8608000 ifetch 1 ,contru 
+5a86 60008416 store 1 ,mem_uart_opcode 
+5a87 e8688000 ifetcht 1 ,contru 
+5a88 18622200 copy contru ,rega 
+5a89 60088417 storet 1 ,mem_uart_len 
+5a8a 18408403 add temp ,3 ,temp 
+5a8b 68110112 hfetch 2 ,core_uart_rxitems 
+5a8c 98460400 isub temp ,temp 
+5a8d 24610000 nrtn positive 
+5a8e 70041801 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+5a8f 20405aaa call module_hci_cmd_control 
+5a90 68008418 fetch 1 ,mem_module_temp_nl_discard_packet 
+5a91 c1000000 rtneq hci_not_discard_packet 
+5a92 20205aa5 branch module_hci_dicard_packet 
+
+module_hci_in_excp:
+5a93 20405d3f call module_hci_event_invalid_packet 
+5a94 20407f6b call wait_uarttx 
+5a95 20205a96 branch module_hci_release_except 
+
+module_hci_release_except:
+5a96 79200025 set1 mark_ext_patch ,mark 
+5a97 44b1402c bpatch patch2c_2 ,mem_patch2c 
+5a98 68110112 hfetch 2 ,core_uart_rxitems 
+5a99 207a0000 rtn blank 
+5a9a 20407f6e call get_uart_rrptr 
+5a9b e8608000 ifetch 1 ,contru 
+5a9c 1fe67c01 sub pdata ,0x01 ,null 
+5a9d 2442daa9 ncall module_hci_dicard_bytes ,zero 
+5a9e 2422da96 nbranch module_hci_release_except ,zero 
+5a9f e8608000 ifetch 1 ,contru 
+5aa0 c1028000 rtneq hci_cmd_spp_data_req 
+5aa1 c1148000 rtneq hci_cmd_set_credit_given 
+5aa2 186087ff increase -1 ,contru 
+5aa3 20405aa9 call module_hci_dicard_bytes 
+5aa4 20205a96 branch module_hci_release_except 
+
+module_hci_dicard_packet:
+5aa5 20407f6e call get_uart_rrptr 
+5aa6 18608602 increase 2 ,contru 
+5aa7 e8608000 ifetch 1 ,contru 
+5aa8 98608600 iadd contru ,contru 
+
+module_hci_dicard_bytes:
+5aa9 20206322 branch uartd_rxdone 
+
+module_hci_cmd_control:
+5aaa 79200025 set1 mark_ext_patch ,mark 
+5aab 44b1c02c bpatch patch2c_3 ,mem_patch2c 
+5aac 68008416 fetch 1 ,mem_uart_opcode 
+5aad c0005acc beq hci_cmd_set_bt_addr_req ,module_hci_cmd_set_bt_addr 
+5aae c000dad1 beq hci_cmd_set_le_addr_req ,module_hci_cmd_set_le_addr 
+5aaf c0015ad6 beq hci_cmd_set_visibility_req ,module_hci_cmd_set_visibility 
+5ab0 c001daec beq hci_cmd_set_bt_name_req ,module_hci_cmd_set_bt_name 
+5ab1 c0025af5 beq hci_cmd_set_le_name_req ,module_hci_cmd_set_le_name 
+5ab2 c002daff beq hci_cmd_spp_data_req ,module_hci_cmd_receive_spp_data 
+5ab3 c004db23 beq hci_cmd_le_data_req ,module_hci_cmd_receive_le_data 
+5ab4 c005dbd3 beq hci_cmd_status_irq ,module_hci_cmd_inquire_status 
+5ab5 c0065bd4 beq hci_cmd_set_pairing_req ,module_hci_cmd_set_pairing_mode 
+5ab6 c006dbe8 beq hci_cmd_set_pincode_req ,module_hci_cmd_set_pincode 
+5ab7 c0075bf0 beq hci_cmd_set_uartcontrol_req ,module_hci_cmd_set_uart_control_mode 
+5ab8 c007dbf6 beq hci_cmd_set_uart_baud_req ,module_hci_cmd_set_uart_baud 
+5ab9 c0085c02 beq hci_cmd_version_req ,module_hci_cmd_version_request 
+5aba c008dc0a beq hci_cmd_bt_disconnect ,module_hci_cmd_bt_disconnect 
+5abb c0095c0e beq hci_cmd_ble_disconnect ,module_hci_cmd_ble_disconnect 
+5abc c0135c12 beq hci_cmd_set_nvram_req ,module_hci_cmd_set_nvram 
+5abd c0145c19 beq hci_cmd_confirm_gkey ,module_hci_cmd_confirm_gkey 
+5abe c014dc29 beq hci_cmd_set_credit_given ,module_hci_cmd_set_credit_given 
+5abf c0155c32 beq hci_cmd_auto_adv_scan ,module_hci_cmd_auto_adv 
+5ac0 c015dc67 beq hci_cmd_power_req ,module_hci_cmd_power_request 
+5ac1 c0165c6d beq hci_cmd_power_set ,module_hci_cmd_power_set 
+5ac2 c0185c74 beq hci_cmd_passkey_entry ,module_hci_cmd_passkey_entry 
+5ac3 c018dc7a beq hci_cmd_set_gpio ,module_hci_cmd_set_gpio 
+5ac4 c0195c8b beq hci_cmd_read_gpio ,module_hci_cmd_read_gpio 
+5ac5 c019dc93 beq hci_cmd_le_set_pairing ,module_hci_cmd_le_set_pairing_mode 
+5ac6 c01a5cb1 beq hci_cmd_le_set_adv_data ,module_hci_cmd_le_set_adv_data 
+5ac7 c01adcb9 beq hci_cmd_le_set_scan_data ,module_hci_cmd_le_set_scan_data 
+5ac8 c01b5cc1 beq hci_cmd_le_send_conn_update_req ,module_hci_cmd_le_send_conn_update_req 
+5ac9 c01c5ccb beq hci_cmd_le_start_pairing ,module_hci_cmd_le_start_pairing 
+5aca c0245cd3 beq hci_cmd_le_confirm_gkey ,module_hci_cmd_le_confirm_gkey 
+5acb 20205cde branch module_hci_event_receive_invalid_cmd 
+
+module_hci_cmd_set_bt_addr:
+5acc 68008417 fetch 1 ,mem_uart_len 
+5acd c0835cde bne 6 ,module_hci_event_receive_invalid_cmd 
+5ace e8630000 ifetch 6 ,contru 
+5acf 60034140 store 6 ,mem_lap 
+5ad0 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_set_le_addr:
+5ad1 68008417 fetch 1 ,mem_uart_len 
+5ad2 c0835cde bne 6 ,module_hci_event_receive_invalid_cmd 
+5ad3 e8630000 ifetch 6 ,contru 
+5ad4 6003453e store 6 ,mem_le_lap 
+5ad5 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_set_visibility:
+5ad6 68008417 fetch 1 ,mem_uart_len 
+5ad7 c080dcde bne 1 ,module_hci_event_receive_invalid_cmd 
+5ad8 1a220600 copy rega ,contru 
+5ad9 20405ce1 call module_hci_event_receive_valid_cmd 
+5ada e8688000 ifetcht 1 ,contru 
+5adb 6008c73d storet 1 ,mem_module_bluetooth_stauts_by_command 
+5adc 6801470b fetch 2 ,mem_ui_state_map 
+5add c3848000 rtnbit1 ui_state_ble_connected 
+5ade c3800000 rtnbit1 ui_state_bt_connected 
+
+module_start_adv_discovery_by_command:
+5adf 6800c72e fetch 1 ,mem_module_state 
+5ae0 2feffe00 isolate1 moudle_state_bt_bit ,pdata 
+5ae1 2420dae5 nbranch moudle_start_adv_by_command ,true 
+5ae2 6808c73d fetcht 1 ,mem_module_bluetooth_stauts_by_command 
+5ae3 18417e03 and temp ,0x03 ,pdata 
+5ae4 6000c133 store 1 ,mem_scan_mode 
+
+moudle_start_adv_by_command:
+5ae5 6800c72e fetch 1 ,mem_module_state 
+5ae6 2feffe01 isolate1 moudle_state_ble_bit ,pdata 
+5ae7 24608000 nrtn true 
+5ae8 6808c73d fetcht 1 ,mem_module_bluetooth_stauts_by_command 
+5ae9 284ffe02 isolate1 2 ,temp 
+5aea 2020be63 branch app_ble_start_adv ,true 
+5aeb 20203e61 branch app_ble_stop_adv 
+
+module_hci_cmd_set_bt_name:
+5aec 68008417 fetch 1 ,mem_uart_len 
+5aed 1fe67c20 sub pdata ,32 ,null 
+5aee 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5aef 6000c5ae store 1 ,mem_local_name_length 
+5af0 1fe27200 copy pdata ,loopcnt 
+5af1 1a220600 copy rega ,contru 
+5af2 d8a045af arg mem_local_name ,contw 
+5af3 20406341 call uart_copy_rx_bytes_fast 
+5af4 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_set_le_name:
+5af5 68008417 fetch 1 ,mem_uart_len 
+5af6 1fe67c13 sub pdata ,0x13 ,null 
+5af7 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5af8 6000c440 store 1 ,mem_le_name_len 
+5af9 1fe27200 copy pdata ,loopcnt 
+5afa 1a220600 copy rega ,contru 
+5afb d8a04441 arg mem_le_name ,contw 
+5afc 20406341 call uart_copy_rx_bytes_fast 
+5afd 20405234 call le_modified_name 
+5afe 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_receive_spp_data:
+5aff 6800c70b fetch 1 ,mem_ui_state_map 
+5b00 c3025cde bbit0 ui_state_bt_spp_conn ,module_hci_event_receive_invalid_cmd 
+5b01 20403e1d call app_check_sniff 
+5b02 2020db0f branch module_hci_cmd_spp_exut_sniff ,true 
+5b03 70041800 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+5b04 6800c600 fetch 1 ,mem_remote_credits 
+5b05 207a0000 rtn blank 
+5b06 6801460b fetch 2 ,mem_nl_rx_len_all 
+5b07 c0805b0d bne 0 ,module_hci_cmd_pass_init_ng_rx_len_all 
+5b08 68008417 fetch 1 ,mem_uart_len 
+5b09 6001460b store 2 ,mem_nl_rx_len_all 
+5b0a 1a220600 copy rega ,contru 
+5b0b 18627e00 copy contru ,pdata 
+5b0c 60014609 store 2 ,mem_nl_rx_data_src 
+
+module_hci_cmd_pass_init_ng_rx_len_all:
+5b0d 20405b11 call module_hci_cmd_get_current_packet_len_and_remain_len 
+5b0e 2020685f branch spp_tx_rfcomm_packet 
+
+module_hci_cmd_spp_exut_sniff:
+5b0f 70041800 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+5b10 20205d9f branch module_exit_sniff 
+
+module_hci_cmd_get_current_packet_len_and_remain_len:
+5b11 20405b17 call module_hci_cmd_get_current_patcket_len 
+5b12 6801460b fetch 2 ,mem_nl_rx_len_all 
+5b13 6809472c fetcht 2 ,mem_current_packet_length 
+5b14 98467e00 isub temp ,pdata 
+5b15 6001460b store 2 ,mem_nl_rx_len_all 
+5b16 20600000 rtn 
+
+module_hci_cmd_get_current_patcket_len:
+5b17 6801460b fetch 2 ,mem_nl_rx_len_all 
+5b18 d840006e arg dm_refcom_buff_len ,temp 
+5b19 20407faf call not_greater_than 
+5b1a 68094604 fetcht 2 ,mem_rfcomm_max_frame_size 
+5b1b 20407faf call not_greater_than 
+5b1c 680945f6 fetcht 2 ,mem_pn_max_frame_size 
+5b1d 20407faf call not_greater_than 
+5b1e 6001472c store 2 ,mem_current_packet_length 
+5b1f 20600000 rtn 
+
+module_hci_command_tx_spp_tx_complete:
+5b20 70041801 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+5b21 70041605 jam hci_cmd_spp_data_req ,mem_uart_opcode 
+5b22 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_receive_le_data:
+5b23 6801470b fetch 2 ,mem_ui_state_map 
+5b24 c4048000 rtnbit0 ui_state_ble_connected 
+5b25 70041800 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+5b26 6800c569 fetch 1 ,mem_le_continue_flag 
+5b27 247a0000 nrtn blank 
+5b28 68014760 fetch 2 ,mem_module_hci_notify_len 
+5b29 203a5b4a branch module_hci_cmd_gatt_notify_start_packet ,blank 
+5b2a 6809475e fetcht 2 ,mem_module_hci_notify_offset 
+5b2b 98467c00 isub temp ,null 
+5b2c 24628000 nrtn zero 
+5b2d 79200025 set1 mark_ext_patch ,mark 
+5b2e 44b2402c bpatch patch2c_4 ,mem_patch2c 
+5b2f 70041800 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+5b30 68014764 fetch 2 ,mem_module_hci_notify_original_len 
+5b31 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5b32 98462400 isub temp ,regb 
+5b33 24213b31 nbranch assert ,positive 
+5b34 2422db38 nbranch module_hci_cmd_gatt_notify_seperate ,zero 
+5b35 20405b47 call module_hci_cmd_gatt_notify_clear_len 
+5b36 70041801 jam hci_discard_packet ,mem_module_temp_nl_discard_packet 
+5b37 20205b8e branch module_set_le_tx_data_flag 
+
+module_hci_cmd_gatt_notify_seperate:
+5b38 6800c75a fetch 1 ,mem_module_flag 
+5b39 c3810000 rtnbit1 module_flag_ble_send_mtu23 
+5b3a 68110058 hfetch 2 ,core_uart_rrptr 
+5b3b 98000600 iforce contru 
+5b3c 68014760 fetch 2 ,mem_module_hci_notify_len 
+5b3d 98608600 iadd contru ,contru 
+5b3e 18622200 copy contru ,rega 
+5b3f 58000901 setarg 0x0901 
+5b40 e0610000 istore 2 ,contru 
+5b41 1a40fe02 add regb ,2 ,pdata 
+5b42 e0608000 istore 1 ,contru 
+5b43 68014762 fetch 2 ,mem_module_hci_notify_att 
+5b44 e0610000 istore 2 ,contru 
+5b45 1a227e00 copy rega ,pdata 
+5b46 60110058 hstore 2 ,core_uart_rrptr 
+
+module_hci_cmd_gatt_notify_clear_len:
+5b47 58000000 setarg 0 
+5b48 60014760 store 2 ,mem_module_hci_notify_len 
+5b49 20600000 rtn 
+
+module_hci_cmd_gatt_notify_start_packet:
+5b4a 1a220600 copy rega ,contru 
+5b4b e8610000 ifetch 2 ,contru 
+5b4c 60014762 store 2 ,mem_module_hci_notify_att 
+5b4d 68008417 fetch 1 ,mem_uart_len 
+5b4e 1fe0fffe increase -2 ,pdata 
+5b4f 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5b50 203a5cde branch module_hci_event_receive_invalid_cmd ,blank 
+5b51 60014764 store 2 ,mem_module_hci_notify_original_len 
+5b52 6800c75a fetch 1 ,mem_module_flag 
+5b53 c2815b5e bbit1 module_flag_ble_send_mtu23 ,module_hci_cmd_notify_start_packet_mtu23 
+5b54 6809454e fetcht 2 ,mem_le_remote_mtu 
+
+module_hci_cmd_gatt_notify_start_packet1:
+5b55 68014764 fetch 2 ,mem_module_hci_notify_original_len 
+5b56 20407faf call not_greater_than 
+5b57 60014760 store 2 ,mem_module_hci_notify_len 
+5b58 18627e00 copy contru ,pdata 
+5b59 6001475c store 2 ,mem_module_hci_notify_start 
+5b5a 58000000 setarg 0 
+5b5b 6001475e store 2 ,mem_module_hci_notify_offset 
+5b5c 7009bd1b jam attop_handle_value_notification ,mem_fifo_temp 
+5b5d 20204bd6 branch le_xtype_fifo_in 
+
+module_hci_cmd_notify_start_packet_mtu23:
+5b5e d8400014 arg 20 ,temp 
+5b5f 20205b55 branch module_hci_cmd_gatt_notify_start_packet1 
+
+module_le_tx_update_data:
+5b60 6800c75b fetch 1 ,mem_le_notify_type 
+5b61 70475b00 jam 0 ,mem_le_notify_type 
+5b62 243a5bbe nbranch module_le_send_md_notify ,blank 
+5b63 68014760 fetch 2 ,mem_module_hci_notify_len 
+5b64 203a3b31 branch assert ,blank 
+5b65 1fe08403 add pdata ,3 ,temp 
+5b66 60094467 storet 2 ,mem_le_txpayload 
+5b67 d8400014 arg 20 ,temp 
+5b68 20407faf call not_greater_than 
+5b69 1fe27200 copy pdata ,loopcnt 
+5b6a 6001475e store 2 ,mem_module_hci_notify_offset 
+5b6b 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5b6c 98460400 isub temp ,temp 
+5b6d 6800c75a fetch 1 ,mem_module_flag 
+5b6e c2815b71 bbit1 module_flag_ble_send_mtu23 ,module_le_tx_no_continue 
+5b6f 2442db9a ncall module_le_send_att_insert_continue ,zero 
+5b70 7003da01 jam le_continue_type_notification ,mem_le_continue_type 
+
+module_le_tx_no_continue:
+5b71 79200025 set1 mark_ext_patch ,mark 
+5b72 44b2c02c bpatch patch2c_5 ,mem_patch2c 
+5b73 d8200002 arg 0x02 ,type 
+5b74 68014762 fetch 2 ,mem_module_hci_notify_att 
+5b75 6001446c store 2 ,mem_le_l2cap + 1 
+5b76 6801475c fetch 2 ,mem_module_hci_notify_start 
+5b77 1fe20600 copy pdata ,contru 
+
+module_le_send_att_notify_common:
+5b78 20406341 call uart_copy_rx_bytes_fast 
+5b79 6800c75a fetch 1 ,mem_module_flag 
+5b7a c3015bb9 bbit0 module_flag_ble_send_mtu23 ,module_le_send_not_fill_l2cap_len 
+5b7b 58004467 setarg mem_le_txpayload 
+5b7c 98a67e00 isub contw ,pdata 
+5b7d 1fe60400 sub pdata ,0 ,temp 
+5b7e 6008c466 storet 1 ,mem_le_txlen 
+5b7f 68014764 fetch 2 ,mem_module_hci_notify_original_len 
+5b80 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5b81 20405b94 call module_le_check_if_send_once_more 
+5b82 68088379 fetcht 1 ,mem_le_arq 
+5b83 68008419 fetch 1 ,mem_module_le_md_flag 
+5b84 203a5b8c branch module_le_send_non_l2cap_last ,blank 
+5b85 7d3a0404 nsetflag blank ,md ,temp 
+5b86 60088379 storet 1 ,mem_le_arq 
+5b87 7009bd1b jam attop_handle_value_notification ,mem_fifo_temp 
+5b88 20404bd6 call le_xtype_fifo_in 
+5b89 70475b01 jam 1 ,mem_le_notify_type 
+5b8a 68088379 fetcht 1 ,mem_le_arq 
+5b8b 20204f92 branch le_send_non_l2cap1 
+
+module_le_send_non_l2cap_last:
+5b8c 20405b8e call module_set_le_tx_data_flag 
+5b8d 20204f90 branch le_send_non_l2cap 
+
+module_set_le_tx_data_flag:
+5b8e 6800c75a fetch 1 ,mem_module_flag 
+5b8f 79207e03 set1 module_flag_ble_send_data ,pdata 
+5b90 20205d9a branch module_store_moule_flag 
+
+module_clear_le_tx_data_flag:
+5b91 6800c75a fetch 1 ,mem_module_flag 
+5b92 793ffe03 set0 module_flag_ble_send_data ,pdata 
+5b93 20205d9a branch module_store_moule_flag 
+
+module_le_check_if_send_once_more:
+5b94 70041900 jam 0 ,mem_module_le_md_flag 
+5b95 98467c00 isub temp ,null 
+5b96 20628000 rtn zero 
+5b97 24610000 nrtn positive 
+5b98 70041901 jam 1 ,mem_module_le_md_flag 
+5b99 20600000 rtn 
+
+module_le_send_att_insert_continue:
+5b9a 6801c544 fetch 3 ,mem_le_xtype_fifo 
+5b9b 243a5b9e nbranch module_le_send_att_insert_cont_next ,blank 
+5b9c 7045461f jam attop_continue ,mem_le_xtype_fifo + 2 
+5b9d 20600000 rtn 
+
+module_le_send_att_insert_cont_next:
+5b9e 20404bd4 call le_xtype_fifo_is_near_full 
+5b9f 243a3b31 nbranch assert ,blank 
+5ba0 7045451f jam attop_continue ,mem_le_xtype_fifo + 1 
+5ba1 20600000 rtn 
+
+module_le_tx_update_notify_continue:
+5ba2 79200025 set1 mark_ext_patch ,mark 
+5ba3 44b3402c bpatch patch2c_6 ,mem_patch2c 
+5ba4 68014760 fetch 2 ,mem_module_hci_notify_len 
+5ba5 203a3b31 branch assert ,blank 
+5ba6 6809475e fetcht 2 ,mem_module_hci_notify_offset 
+5ba7 203a3b31 branch assert ,blank 
+5ba8 98467e00 isub temp ,pdata 
+5ba9 d840001b arg 27 ,temp 
+5baa 20407faf call not_greater_than 
+5bab 1fe27200 copy pdata ,loopcnt 
+5bac 6801475c fetch 2 ,mem_module_hci_notify_start 
+5bad 1fe20600 copy pdata ,contru 
+5bae 6801475e fetch 2 ,mem_module_hci_notify_offset 
+5baf 98608600 iadd contru ,contru 
+5bb0 9f20fe00 iadd loopcnt ,pdata 
+5bb1 6001475e store 2 ,mem_module_hci_notify_offset 
+5bb2 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5bb3 98460400 isub temp ,temp 
+5bb4 2442db9a ncall module_le_send_att_insert_continue ,zero 
+5bb5 7003da01 jam le_continue_type_notification ,mem_le_continue_type 
+5bb6 d8a04467 arg mem_le_txpayload ,contw 
+5bb7 20406341 call uart_copy_rx_bytes_fast 
+5bb8 d8200001 arg 1 ,type 
+
+module_le_send_not_fill_l2cap_len:
+5bb9 58004467 setarg mem_le_txpayload 
+5bba 98a67e00 isub contw ,pdata 
+5bbb 1fe60400 sub pdata ,0 ,temp 
+5bbc 6008c466 storet 1 ,mem_le_txlen 
+5bbd 20204f90 branch le_send_non_l2cap 
+
+module_le_send_md_notify:
+5bbe 68014764 fetch 2 ,mem_module_hci_notify_original_len 
+5bbf 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5bc0 98467e00 isub temp ,pdata 
+5bc1 d8400014 arg 20 ,temp 
+5bc2 20407faf call not_greater_than 
+5bc3 1fe27200 copy pdata ,loopcnt 
+5bc4 1fe08403 add pdata ,3 ,temp 
+5bc5 60094467 storet 2 ,mem_le_txpayload 
+5bc6 68094760 fetcht 2 ,mem_module_hci_notify_len 
+5bc7 9840fe00 iadd temp ,pdata 
+5bc8 60014760 store 2 ,mem_module_hci_notify_len 
+5bc9 6801475c fetch 2 ,mem_module_hci_notify_start 
+5bca 1fe20600 copy pdata ,contru 
+5bcb 6801475e fetch 2 ,mem_module_hci_notify_offset 
+5bcc 98608600 iadd contru ,contru 
+5bcd 9f20fe00 iadd loopcnt ,pdata 
+5bce 6001475e store 2 ,mem_module_hci_notify_offset 
+5bcf d8200002 arg 0x02 ,type 
+5bd0 68014762 fetch 2 ,mem_module_hci_notify_att 
+5bd1 6001446c store 2 ,mem_le_l2cap + 1 
+5bd2 20205b78 branch module_le_send_att_notify_common 
+
+module_hci_cmd_inquire_status:
+5bd3 20205d12 branch module_hci_event_status_res 
+
+module_hci_cmd_set_pairing_mode:
+5bd4 1a220600 copy rega ,contru 
+5bd5 e8608000 ifetch 1 ,contru 
+5bd6 c0005bdb beq pairing_pincode ,module_hci_pairing_pincode_mode 
+5bd7 c000dbde beq pairing_justwork ,module_hci_pairing_just_work_mode 
+5bd8 c0015be4 beq pairing_passkey ,module_hci_pairing_passkey 
+5bd9 c001dbe6 beq pairing_confirm ,module_hci_pairing_numeric_comparison 
+5bda 20205cde branch module_hci_event_receive_invalid_cmd 
+
+module_hci_pairing_pincode_mode:
+5bdb 20405737 call ssp_disable 
+5bdc 7046e200 jam 0 ,mem_ssp_enable 
+5bdd 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_pairing_just_work_mode:
+5bde 58040003 setarg ssp_mode_just_work_io_cap_data 
+
+module_hci_sspairing_mode:
+5bdf 6001c6e3 store 3 ,mem_sp_iocap_local 
+5be0 6000c6ea store 1 ,mem_ssp_mode_flag 
+5be1 2040572f call ssp_enable 
+5be2 7046e201 jam 1 ,mem_ssp_enable 
+5be3 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_pairing_passkey:
+5be4 58040002 setarg ssp_mode_passkey_io_cap_data 
+5be5 20205bdf branch module_hci_sspairing_mode 
+
+module_hci_pairing_numeric_comparison:
+5be6 58040001 setarg ssp_mode_ssp_pin_io_cap_data 
+5be7 20205bdf branch module_hci_sspairing_mode 
+
+module_hci_cmd_set_pincode:
+5be8 68008417 fetch 1 ,mem_uart_len 
+5be9 1fe67c10 sub pdata ,16 ,null 
+5bea 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5beb 6000c718 store 1 ,mem_pin_length 
+5bec 1fe27200 copy pdata ,loopcnt 
+5bed d8a04719 arg mem_pin ,contw 
+5bee 20406354 call uart_copy_rx_bytes 
+5bef 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_set_uart_control_mode:
+5bf0 1a220600 copy rega ,contru 
+5bf1 e8608000 ifetch 1 ,contru 
+5bf2 68188062 hfetcht 1 ,core_uart_ctrl 
+5bf3 7d3a0404 nsetflag blank ,4 ,temp 
+5bf4 60188062 hstoret 1 ,core_uart_ctrl 
+5bf5 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_set_uart_baud:
+5bf6 68008417 fetch 1 ,mem_uart_len 
+5bf7 1fe27200 copy pdata ,loopcnt 
+5bf8 1a220600 copy rega ,contru 
+5bf9 20407f25 call string2dec_from_uart 
+5bfa 5adc6c00 setarg uart_clk 
+5bfb 9846fc00 idiv temp 
+5bfc 20407f53 call wait_div_end 
+5bfd 1807fe00 quotient pdata 
+
+module_hci_cmd_set_uart_baud_ok:
+5bfe 600142d3 store uart_baud_len ,mem_baud 
+5bff 20405ce1 call module_hci_event_receive_valid_cmd 
+5c00 20407f6b call wait_uarttx 
+5c01 20206325 branch uart_set_baud_by_mem 
+
+module_hci_cmd_version_request:
+5c02 da200002 arg 2 ,rega 
+5c03 da4042a6 arg mem_soft_version_num ,regb 
+5c04 d8400000 arg 0 ,temp 
+5c05 20205cec branch module_hci_event_set_cmd 
+
+module_hci_event_set_cmd_send_response:
+5c06 600109e1 store 2 ,mem_event_cmd_response_content 
+5c07 da4009e1 arg mem_event_cmd_response_content ,regb 
+5c08 d8400000 arg 0 ,temp 
+5c09 20205cec branch module_hci_event_set_cmd 
+
+module_hci_cmd_bt_disconnect:
+5c0a 6801470b fetch 2 ,mem_ui_state_map 
+5c0b c3005cde bbit0 ui_state_bt_connected ,module_hci_event_receive_invalid_cmd 
+
+module_hci_cmd_bt_disconnect_doing:
+5c0c 20405ce1 call module_hci_event_receive_valid_cmd 
+5c0d 20203e52 branch app_bt_disconnect 
+
+module_hci_cmd_ble_disconnect:
+5c0e 6801470b fetch 2 ,mem_ui_state_map 
+5c0f c304dcde bbit0 ui_state_ble_connected ,module_hci_event_receive_invalid_cmd 
+
+module_hci_cmd_ble_disconnect_doing:
+5c10 20405ce1 call module_hci_event_receive_valid_cmd 
+5c11 20203e6b branch app_ble_disconnect 
+
+module_hci_cmd_set_nvram:
+5c12 68008417 fetch 1 ,mem_uart_len 
+5c13 1fe27200 copy pdata ,loopcnt 
+5c14 1a220600 copy rega ,contru 
+5c15 680142bc fetch 2 ,mem_nv_data_ptr 
+5c16 1fe20a00 icopy contw 
+5c17 20406341 call uart_copy_rx_bytes_fast 
+5c18 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_confirm_gkey:
+5c19 6800c70b fetch 1 ,mem_ui_state_map 
+5c1a c3005cde bbit0 ui_state_bt_connected ,module_hci_event_receive_invalid_cmd 
+5c1b e8608000 ifetch 1 ,contru 
+5c1c 6808c6e9 fetcht 1 ,mem_flag_mode_ssp_pin 
+5c1d 793a0400 setflag blank ,flag_mode_ssp_pin_comparison_result_bit ,temp 
+5c1e 79200407 set1 flag_mode_ssp_pin_reviceve_comparison_bit ,temp 
+5c1f 6008c6e9 storet 1 ,mem_flag_mode_ssp_pin 
+5c20 20405ce1 call module_hci_event_receive_valid_cmd 
+5c21 6800c6e9 fetch 1 ,mem_flag_mode_ssp_pin 
+5c22 c2835c27 bbit1 flag_mode_ssp_pin_recieve_dhkey_bit ,module_hci_cmd_spp_number_comparison_result_is1 
+5c23 20600000 rtn 
+
+dhkey_not_accept:
+5c24 7046e900 jam 0 ,mem_flag_mode_ssp_pin 
+5c25 7009bd21 jam bt_cmd_dhkey_not_accept ,mem_fifo_temp 
+5c26 20207d90 branch ui_ipc_send_cmd 
+
+module_hci_cmd_spp_number_comparison_result_is1:
+5c27 c28055ac bbit1 flag_mode_ssp_pin_comparison_result_bit ,number_comparison_successed 
+5c28 20205c24 branch dhkey_not_accept 
+
+module_hci_cmd_set_credit_given:
+5c29 6800c70b fetch 1 ,mem_ui_state_map 
+5c2a c4020000 rtnbit0 ui_state_bt_spp_conn 
+5c2b 6800c603 fetch 1 ,mem_credit_flag 
+5c2c c1000000 rtneq credit_disable 
+5c2d e8608000 ifetch 1 ,contru 
+5c2e 6808c601 fetcht 1 ,mem_credit_given 
+5c2f 98408400 iadd temp ,temp 
+5c30 6008c601 storet 1 ,mem_credit_given 
+5c31 20600000 rtn 
+
+module_hci_cmd_auto_adv:
+5c32 df200040 arg 0x40 ,loopcnt 
+5c33 d8a04400 arg mem_le_adv_data_len ,contw 
+5c34 20407e9f call clear_mem 
+5c35 58000000 setarg 0 
+5c36 600089d6 store 1 ,mem_regb 
+5c37 1a220600 copy rega ,contru 
+
+module_hci_cmd_auto_adv_loop:
+5c38 18627e00 copy contru ,pdata 
+5c39 600109da store 2 ,mem_regc 
+5c3a 20405c62 call module_hci_cmd_auto_adv_adv_analys 
+5c3b 680089d6 fetch 1 ,mem_regb 
+5c3c 680889c6 fetcht 1 ,mem_temp 
+5c3d 18408401 increase 1 ,temp 
+5c3e 9840fe00 iadd temp ,pdata 
+5c3f 600089d6 store 1 ,mem_regb 
+5c40 1fe67c20 sub pdata ,32 ,null 
+5c41 24215c4c nbranch module_hci_cmd_auto_adv_store_scan ,positive 
+
+module_hci_cmd_auto_adv_store_adv:
+5c42 6808c400 fetcht 1 ,mem_le_adv_data_len 
+5c43 58004401 setarg mem_le_adv_data 
+5c44 9840fe00 iadd temp ,pdata 
+5c45 600109df store 2 ,mem_contw 
+5c46 680889c6 fetcht 1 ,mem_temp 
+5c47 18408401 increase 1 ,temp 
+5c48 6800c400 fetch 1 ,mem_le_adv_data_len 
+5c49 9840fe00 iadd temp ,pdata 
+5c4a 6000c400 store 1 ,mem_le_adv_data_len 
+5c4b 20205c55 branch module_hci_cmd_auto_adv_store_common 
+
+module_hci_cmd_auto_adv_store_scan:
+5c4c 6808c420 fetcht 1 ,mem_le_scan_data_len 
+5c4d 58004421 setarg mem_le_scan_data 
+5c4e 9840fe00 iadd temp ,pdata 
+5c4f 600109df store 2 ,mem_contw 
+5c50 680889c6 fetcht 1 ,mem_temp 
+5c51 18408401 increase 1 ,temp 
+5c52 6800c420 fetch 1 ,mem_le_scan_data_len 
+5c53 9840fe00 iadd temp ,pdata 
+5c54 6000c420 store 1 ,mem_le_scan_data_len 
+
+module_hci_cmd_auto_adv_store_common:
+5c55 680109df fetch 2 ,mem_contw 
+5c56 1fe20a00 copy pdata ,contw 
+5c57 680109da fetch 2 ,mem_regc 
+5c58 1fe20600 copy pdata ,contru 
+5c59 18427200 copy temp ,loopcnt 
+5c5a 20406341 call uart_copy_rx_bytes_fast 
+5c5b 68008417 fetch 1 ,mem_uart_len 
+5c5c 680889d6 fetcht 1 ,mem_regb 
+5c5d 98467c00 isub temp ,null 
+5c5e 2422dc38 nbranch module_hci_cmd_auto_adv_loop ,zero 
+5c5f 7044001f jam 0x1f ,mem_le_adv_data_len 
+5c60 7044201f jam 0x1f ,mem_le_scan_data_len 
+5c61 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_auto_adv_adv_analys:
+5c62 e8608000 ifetch 1 ,contru 
+5c63 600089c6 store 1 ,mem_temp 
+5c64 e8608000 ifetch 1 ,contru 
+5c65 600089d2 store 1 ,mem_rega 
+5c66 20600000 rtn 
+
+module_hci_cmd_power_request:
+5c67 d8400000 arg 0 ,temp 
+5c68 da200002 arg 2 ,rega 
+5c69 68014748 fetch 2 ,mem_module_vdd_quotient 
+5c6a 600109e1 store 2 ,mem_event_cmd_response_content 
+5c6b da4009e1 arg mem_event_cmd_response_content ,regb 
+5c6c 20205cec branch module_hci_event_set_cmd 
+
+module_hci_cmd_power_set:
+5c6d 68008417 fetch 1 ,mem_uart_len 
+5c6e c080dcde bne 1 ,module_hci_event_receive_invalid_cmd 
+5c6f e8608000 ifetch 1 ,contru 
+5c70 6000c746 store 1 ,mem_module_read_vdd_flag 
+5c71 58000000 setarg 0x00 
+5c72 60014748 store 2 ,mem_module_vdd_quotient 
+5c73 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_passkey_entry:
+5c74 e8620000 ifetch 4 ,contru 
+5c75 60024719 store 4 ,mem_pin 
+5c76 70471804 jam 4 ,mem_pin_length 
+5c77 7046eb00 jam 0 ,mem_authentication_passkey_times 
+5c78 20405ce1 call module_hci_event_receive_valid_cmd 
+5c79 20205548 branch authentication_passkey 
+
+module_hci_cmd_set_gpio:
+5c7a 68008417 fetch 1 ,mem_uart_len 
+5c7b c081dcde bne 3 ,module_hci_event_receive_invalid_cmd 
+5c7c e8608000 ifetch 1 ,contru 
+5c7d c0005c80 beq 0x00 ,module_set_gpio_input 
+5c7e c000dc85 beq 0x01 ,module_set_gpio_output 
+5c7f 20205cde branch module_hci_event_receive_invalid_cmd 
+
+module_set_gpio_input:
+5c80 e8688000 ifetcht 1 ,contru 
+5c81 e8608000 ifetch 1 ,contru 
+5c82 7d3a0407 nsetflag blank ,7 ,temp 
+5c83 204064df call gpio_config_input 
+5c84 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_set_gpio_output:
+5c85 e8688000 ifetcht 1 ,contru 
+5c86 204064ea call gpio_config_output0 
+5c87 e8608000 ifetch 1 ,contru 
+5c88 2feffe00 isolate1 0 ,pdata 
+5c89 20406500 call gpio_out_flag 
+5c8a 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_read_gpio:
+5c8b 68008417 fetch 1 ,mem_uart_len 
+5c8c c080dcde bne 1 ,module_hci_event_receive_invalid_cmd 
+5c8d e8688000 ifetcht 1 ,contru 
+5c8e 204064f5 call gpio_get_bit 
+5c8f 58000000 setarg 0x0 
+5c90 7d20fe00 nsetflag true ,0 ,pdata 
+5c91 da200001 arg 1 ,rega 
+5c92 20205c06 branch module_hci_event_set_cmd_send_response 
+
+module_hci_cmd_le_set_pairing_mode:
+5c93 1a220600 copy rega ,contru 
+5c94 e8608000 ifetch 1 ,contru 
+5c95 6000c56c store 1 ,mem_le_pairing_mode 
+5c96 d8400000 arg 0 ,temp 
+5c97 2feffe07 isolate1 le_pairing_mode_secure_connect_bit ,pdata 
+5c98 79208400 setflag true ,0 ,temp 
+5c99 6008c563 storet 1 ,mem_le_secure_connect_enable 
+5c9a c0005ca9 beq le_pairing_mode_none ,module_le_set_no_pairing 
+5c9b c000dcac beq le_pairing_mode_lagacy_justwork ,module_le_set_pairing_mode_lagacy_just_work 
+5c9c c0015cae beq le_pairing_mode_lagacy_passkey ,module_le_set_pairing_mode_lagacy_passkey 
+5c9d c040dca2 beq le_pairing_mode_secure_connect_justwork ,module_le_set_pairing_mode_secure_justwork 
+5c9e c0415ca4 beq le_pairing_mode_secure_connect_numeric ,module_le_set_pairing_mode_secure_numeric 
+5c9f c041dca7 beq le_pairing_mode_secure_connect_passkey ,module_le_set_pairing_mode_secure_passkey 
+5ca0 70456300 jam 0 ,mem_le_secure_connect_enable 
+5ca1 20205cde branch module_hci_event_receive_invalid_cmd 
+
+module_le_set_pairing_mode_secure_justwork:
+5ca2 7044df0d jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+5ca3 20205caa branch module_le_set_noinputnooutput 
+
+module_le_set_pairing_mode_secure_numeric:
+5ca4 7044df0d jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+5ca5 7044dd01 jam flag_iocap_displayyesno ,mem_le_pres_iocap 
+5ca6 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_le_set_pairing_mode_secure_passkey:
+5ca7 7044df0d jam flag_le_bonding_mitm_secure ,mem_le_pres_auth 
+5ca8 20205caf branch module_le_set_displayonly 
+
+module_le_set_no_pairing:
+5ca9 7044df00 jam flag_le_no_bonding_no_mitm ,mem_le_pres_auth 
+
+module_le_set_noinputnooutput:
+5caa 7044dd03 jam flag_iocap_noinputnooutput ,mem_le_pres_iocap 
+5cab 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_le_set_pairing_mode_lagacy_just_work:
+5cac 7044df05 jam flag_le_bonding_mitm ,mem_le_pres_auth 
+5cad 20205caa branch module_le_set_noinputnooutput 
+
+module_le_set_pairing_mode_lagacy_passkey:
+5cae 7044df05 jam flag_le_bonding_mitm ,mem_le_pres_auth 
+
+module_le_set_displayonly:
+5caf 7044dd00 jam flag_iocap_displayonly ,mem_le_pres_iocap 
+5cb0 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_set_adv_data:
+5cb1 68008417 fetch 1 ,mem_uart_len 
+5cb2 1fe67c1f sub pdata ,31 ,null 
+5cb3 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5cb4 1fe27200 copy pdata ,loopcnt 
+5cb5 1a220600 copy rega ,contru 
+5cb6 d8a04401 arg mem_le_adv_data ,contw 
+5cb7 20406341 call uart_copy_rx_bytes_fast 
+5cb8 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_set_scan_data:
+5cb9 68008417 fetch 1 ,mem_uart_len 
+5cba 1fe67c1f sub pdata ,31 ,null 
+5cbb 24215cde nbranch module_hci_event_receive_invalid_cmd ,positive 
+5cbc 1fe27200 copy pdata ,loopcnt 
+5cbd 1a220600 copy rega ,contru 
+5cbe d8a04421 arg mem_le_scan_data ,contw 
+5cbf 20406341 call uart_copy_rx_bytes_fast 
+5cc0 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_send_conn_update_req:
+5cc1 6801470b fetch 2 ,mem_ui_state_map 
+5cc2 c304dcde bbit0 ui_state_ble_connected ,module_hci_event_receive_invalid_cmd 
+5cc3 68008417 fetch 1 ,mem_uart_len 
+5cc4 c0845cde bne 0x08 ,module_hci_event_receive_invalid_cmd 
+5cc5 1a220600 copy rega ,contru 
+5cc6 e8640000 ifetch 8 ,contru 
+5cc7 6004458d store 8 ,mem_le_interal_min 
+5cc8 7009bd12 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+5cc9 20407d90 call ui_ipc_send_cmd 
+5cca 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_start_pairing:
+5ccb 6800c56c fetch 1 ,mem_le_pairing_mode 
+5ccc 203a5cde branch module_hci_event_receive_invalid_cmd ,blank 
+5ccd 6800c56a fetch 1 ,mem_le_pairing_state 
+5cce c0805cde bne flag_le_pairing_null ,module_hci_event_receive_invalid_cmd 
+5ccf 6800c56b fetch 1 ,mem_le_enc_state 
+5cd0 c0805cde bne flag_le_enc_null ,module_hci_event_receive_invalid_cmd 
+5cd1 20407e29 call check_51cmd_le_smp_sec_req 
+5cd2 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_confirm_gkey:
+5cd3 e8608000 ifetch 1 ,contru 
+5cd4 c000dcdc beq 0x01 ,module_hci_cmd_le_confirm_gkey_fail 
+5cd5 6800c566 fetch 1 ,mem_le_secure_connect_state 
+5cd6 c001dcda beq le_sc_stat_send_public_key ,module_hci_cmd_le_confirm_gkey_ok 
+5cd7 c0035cda beq le_sc_stat_receive_dhkey ,module_hci_cmd_le_confirm_gkey_ok 
+5cd8 c003dcda beq le_sc_stat_wait_confirm_gkey ,module_hci_cmd_le_confirm_gkey_ok 
+5cd9 20205cde branch module_hci_event_receive_invalid_cmd 
+
+module_hci_cmd_le_confirm_gkey_ok:
+5cda 70456701 jam flag_le_sc_confrim_gkey_ok ,mem_le_sc_confirm_gkey_flag 
+5cdb 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_cmd_le_confirm_gkey_fail:
+5cdc 204050a6 call le_pairing_failed 
+5cdd 20205ce1 branch module_hci_event_receive_valid_cmd 
+
+module_hci_event_receive_invalid_cmd:
+5cde d8400001 arg 1 ,temp 
+5cdf da200000 arg 0 ,rega 
+5ce0 20205cec branch module_hci_event_set_cmd 
+
+module_hci_event_receive_valid_cmd:
+5ce1 d8400000 arg 0 ,temp 
+5ce2 da200000 arg 0 ,rega 
+5ce3 20205cec branch module_hci_event_set_cmd 
+
+module_hci_event_spp_connect:
+5ce4 70041600 jam hci_event_spp_conn_rep ,mem_uart_opcode 
+5ce5 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_le_connect:
+5ce6 70041602 jam hci_event_le_conn_rep ,mem_uart_opcode 
+5ce7 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_spp_disconnect:
+5ce8 70041603 jam hci_event_spp_dis_rep ,mem_uart_opcode 
+5ce9 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_le_disconnect:
+5cea 70041605 jam hci_event_le_dis_rep ,mem_uart_opcode 
+5ceb 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_set_cmd:
+5cec 68008416 fetch 1 ,mem_uart_opcode 
+5ced 1fe22600 copy pdata ,regc 
+5cee 70041606 jam hci_event_cmd_res ,mem_uart_opcode 
+5cef 58000002 setarg 2 
+5cf0 9a20fe00 iadd rega ,pdata 
+5cf1 20405d66 call module_hci_prepare_tx 
+5cf2 1a627e00 copy regc ,pdata 
+5cf3 e1408000 istore 1 ,contwu 
+5cf4 e1488000 istoret 1 ,contwu 
+5cf5 1a227200 copy rega ,loopcnt 
+5cf6 1a420c00 copy regb ,contr 
+5cf7 2040633b call uart_copy_tx_bytes 
+5cf8 2020631f branch uartd_send 
+
+module_hci_event_receive_spp_data:
+5cf9 70041607 jam hci_event_spp_data_rep ,mem_uart_opcode 
+5cfa 6800842e fetch 1 ,mem_current_length 
+5cfb 207a0000 rtn blank 
+5cfc 20405d66 call module_hci_prepare_tx 
+5cfd 6800842e fetch 1 ,mem_current_length 
+5cfe 1fe27200 copy pdata ,loopcnt 
+5cff 68010430 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+5d00 1fe20c00 copy pdata ,contr 
+5d01 20406328 call uart_copy_tx_bytes_fast 
+5d02 2020631f branch uartd_send 
+
+module_hci_event_receive_le_data:
+5d03 70041608 jam hci_event_le_data_rep ,mem_uart_opcode 
+5d04 6800c751 fetch 1 ,mem_module_le_rx_data_len 
+5d05 1fe27200 icopy loopcnt 
+5d06 1fe0fe02 increase 2 ,pdata 
+5d07 20405d66 call module_hci_prepare_tx 
+5d08 68014754 fetch 2 ,mem_module_le_rx_data_handle 
+5d09 e1410000 istore 2 ,contwu 
+5d0a 68014752 fetch 2 ,mem_module_le_rx_data_address 
+5d0b 1fe20c00 icopy contr 
+5d0c 20406328 call uart_copy_tx_bytes_fast 
+5d0d 2020631f branch uartd_send 
+
+module_hci_event_enter_standby_mode:
+5d0e 70041609 jam hci_event_standby_rep ,mem_uart_opcode 
+
+module_hci_event_enter_standby_mode_len0:
+5d0f 58000000 setarg 0 
+5d10 20405d66 call module_hci_prepare_tx 
+5d11 2020631f branch uartd_send 
+
+module_hci_event_status_res:
+5d12 7004160a jam hci_event_status_res ,mem_uart_opcode 
+5d13 58000001 setarg 1 
+5d14 20405d66 call module_hci_prepare_tx 
+5d15 20405d23 call module_hci_read_bt_status 
+5d16 6801470b fetch 2 ,mem_ui_state_map 
+5d17 d8e00002 arg ui_state_bt_hid_conn ,queue 
+5d18 afefffff qisolate1 pdata 
+5d19 79208403 setflag true ,3 ,temp 
+5d1a d8e00009 arg ui_state_ble_connected ,queue 
+5d1b afefffff qisolate1 pdata 
+5d1c 79208405 setflag true ,5 ,temp 
+5d1d 6800c70b fetch 1 ,mem_ui_state_map 
+5d1e d8e00004 arg ui_state_bt_spp_conn ,queue 
+5d1f afefffff qisolate1 pdata 
+5d20 79208404 setflag true ,4 ,temp 
+5d21 e1488000 istoret 1 ,contwu 
+5d22 2020631f branch uartd_send 
+
+module_hci_read_bt_status:
+5d23 d8400000 arg 0 ,temp 
+5d24 6800c133 fetch 1 ,mem_scan_mode 
+5d25 d8e00000 arg inq_scan_mode ,queue 
+5d26 afefffff qisolate1 pdata 
+5d27 79208400 setflag true ,0 ,temp 
+5d28 d8e00001 arg page_scan_mode ,queue 
+5d29 afefffff qisolate1 pdata 
+5d2a 79208401 setflag true ,1 ,temp 
+5d2b 6800c3ff fetch 1 ,mem_le_adv_enable 
+5d2c d8e00000 arg 0 ,queue 
+5d2d afefffff qisolate1 pdata 
+5d2e 79208402 setflag true ,2 ,temp 
+5d2f 20600000 rtn 
+
+module_hci_event_store_device:
+5d30 7004160d jam hci_event_nvram_rep ,mem_uart_opcode 
+5d31 6800c2be fetch 1 ,mem_nv_data_number 
+5d32 1feffe22 mul32 pdata ,34 ,pdata 
+5d33 1fe27200 icopy loopcnt 
+5d34 20405d66 call module_hci_prepare_tx 
+5d35 680142bc fetch 2 ,mem_nv_data_ptr 
+5d36 1fe20c00 icopy contr 
+5d37 20406328 call uart_copy_tx_bytes_fast 
+5d38 2020631f branch uartd_send 
+
+module_hci_event_gkey_generate:
+5d39 7004160e jam hci_event_gkey ,mem_uart_opcode 
+5d3a 58000004 setarg 4 
+5d3b 20405d66 call module_hci_prepare_tx 
+5d3c 680208de fetch 4 ,mem_gkey 
+5d3d e1420000 istore 4 ,contwu 
+5d3e 2020631f branch uartd_send 
+
+module_hci_event_invalid_packet:
+5d3f 7004160f jam hci_event_invalid_packet ,mem_uart_opcode 
+5d40 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_passkey_entry_mode:
+5d41 70041610 jam hci_event_get_passkey ,mem_uart_opcode 
+5d42 20205d0f branch module_hci_event_enter_standby_mode_len0 
+
+module_hci_event_le_tk:
+5d43 70041611 jam hci_event_le_tk ,mem_uart_opcode 
+5d44 58000004 setarg 4 
+5d45 20405d66 call module_hci_prepare_tx 
+5d46 6802456d fetch 4 ,mem_le_tk 
+5d47 e1420000 istore 4 ,contwu 
+5d48 2020631f branch uartd_send 
+
+module_hci_event_le_pairing_fail:
+5d49 da200180 arg flag_ble_pairing_fail ,rega 
+5d4a 20205d50 branch module_hci_event_pairing_completed 
+
+module_hci_event_le_pairing_success:
+5d4b da200080 arg flag_ble_pairing_success ,rega 
+5d4c 20205d50 branch module_hci_event_pairing_completed 
+
+module_hci_event_bt_pairing_fail:
+5d4d da200101 arg flag_bt_pairing_fail ,rega 
+5d4e 20205d50 branch module_hci_event_pairing_completed 
+
+module_hci_event_bt_pairing_success:
+5d4f da200001 arg flag_bt_pairing_success ,rega 
+
+module_hci_event_pairing_completed:
+5d50 7046e900 jam 0 ,mem_flag_mode_ssp_pin 
+5d51 70041614 jam hci_event_le_pairing_state ,mem_uart_opcode 
+5d52 58000002 setarg 2 
+5d53 20405d66 call module_hci_prepare_tx 
+5d54 1a227e00 copy rega ,pdata 
+5d55 e1410000 istore 2 ,contwu 
+5d56 2020631f branch uartd_send 
+
+module_hci_event_pause_enc:
+5d57 da600000 arg flag_event_pause_enc ,regc 
+5d58 20205d5a branch module_hci_event_enc 
+
+module_hci_event_start_enc:
+5d59 da600001 arg flag_event_start_enc ,regc 
+
+module_hci_event_enc:
+5d5a 70041615 jam hci_event_le_encryption_state ,mem_uart_opcode 
+5d5b 58000001 setarg 1 
+5d5c 20405d66 call module_hci_prepare_tx 
+5d5d 1a627e00 copy regc ,pdata 
+5d5e e1408000 istore 1 ,contwu 
+5d5f 2020631f branch uartd_send 
+
+module_hci_event_le_gkey:
+5d60 7004161d jam hci_event_le_gkey ,mem_uart_opcode 
+5d61 58000004 setarg 4 
+5d62 20405d66 call module_hci_prepare_tx 
+5d63 680208de fetch 4 ,mem_gkey 
+5d64 e1420000 istore 4 ,contwu 
+5d65 2020631f branch uartd_send 
+
+module_hci_prepare_tx:
+5d66 70041502 jam 0x02 ,mem_uart_cmd 
+5d67 60008417 store 1 ,mem_uart_len 
+5d68 600c09c6 storet 8 ,mem_temp 
+5d69 79200025 set1 mark_ext_patch ,mark 
+5d6a 44b3c02c bpatch patch2c_7 ,mem_patch2c 
+5d6b 20405d71 call module_set_mcu_wake_pin_high_delay 
+5d6c 680c09c6 fetcht 8 ,mem_temp 
+5d6d 2040631c call uartd_prepare_tx 
+5d6e 68018415 fetch 3 ,mem_uart_cmd 
+5d6f e1418000 istore 3 ,contwu 
+5d70 20600000 rtn 
+
+module_set_mcu_wake_pin_high_delay:
+5d71 20405d7a call module_check_mcu_wake_pin_high 
+5d72 20608000 rtn true 
+
+module_set_mcu_wake_pin_h_delay:
+5d73 20405d78 call module_set_mcu_wake_pin_high 
+5d74 68024737 fetch 4 ,mem_module_mcu_wake_delay_us 
+5d75 1feb7e00 rshift2 pdata ,pdata 
+5d76 207a0000 rtn blank 
+5d77 20205d7e branch delay 
+
+module_set_mcu_wake_pin_high:
+5d78 6808c736 fetcht 1 ,mem_module_mcu_wake_pin 
+5d79 202064ff branch gpio_out_active 
+
+module_check_mcu_wake_pin_high:
+5d7a 6808c736 fetcht 1 ,mem_module_mcu_wake_pin 
+5d7b 202064f3 branch gpio_check_active 
+
+module_set_mcu_wake_pin_low:
+5d7c 6808c736 fetcht 1 ,mem_module_mcu_wake_pin 
+5d7d 202064fd branch gpio_out_inactive 
+
+delay:
+5d7e 1fe0ffff increase -1 ,pdata 
+5d7f 243a5d7e nbranch delay ,blank 
+5d80 20600000 rtn 
+
+module_le_receive_data:
+5d81 1a227e00 copy rega ,pdata 
+5d82 60014752 store 2 ,mem_module_le_rx_data_address 
+5d83 1a427e00 copy regb ,pdata 
+5d84 6000c751 store 1 ,mem_module_le_rx_data_len 
+5d85 6801039b fetch 2 ,mem_le_att_handle 
+5d86 68094756 fetcht 2 ,mem_module_data_write_handle 
+5d87 98467c00 isub temp ,null 
+5d88 2022dd8c branch module_le_receive_data_ok ,zero 
+5d89 68094758 fetcht 2 ,mem_module_data_write_handle2 
+5d8a 98467c00 isub temp ,null 
+5d8b 24628000 nrtn zero 
+
+module_le_receive_data_ok:
+5d8c 60014754 store 2 ,mem_module_le_rx_data_handle 
+5d8d 20205d98 branch module_set_le_rx_data_flag 
+
+module_le_transmit:
+5d8e 6800c75a fetch 1 ,mem_module_flag 
+5d8f c281dd94 bbit1 module_flag_ble_send_data ,module_hci_event_send_le_data 
+
+module_le_transmit1:
+5d90 6800c75a fetch 1 ,mem_module_flag 
+5d91 c4008000 rtnbit0 module_flag_ble_received_data 
+5d92 20405d03 call module_hci_event_receive_le_data 
+5d93 20205d9c branch module_clear_le_rx_data_flag 
+
+module_hci_event_send_le_data:
+5d94 70041609 jam hci_cmd_le_data_req ,mem_uart_opcode 
+5d95 20405ce1 call module_hci_event_receive_valid_cmd 
+5d96 20405b91 call module_clear_le_tx_data_flag 
+5d97 20205d90 branch module_le_transmit1 
+
+module_set_le_rx_data_flag:
+5d98 6800c75a fetch 1 ,mem_module_flag 
+5d99 79207e01 set1 module_flag_ble_received_data ,pdata 
+
+module_store_moule_flag:
+5d9a 6000c75a store 1 ,mem_module_flag 
+5d9b 20600000 rtn 
+
+module_clear_le_rx_data_flag:
+5d9c 6800c75a fetch 1 ,mem_module_flag 
+5d9d 793ffe01 set0 module_flag_ble_received_data ,pdata 
+5d9e 20205d9a branch module_store_moule_flag 
+
+module_exit_sniff:
+5d9f 6800c72f fetch 1 ,mem_module_task 
+5da0 c3800000 rtnbit1 moudle_task_unsinff 
+5da1 20405dbd call module_set_unsniff_task_flag 
+5da2 20203e77 branch app_bt_sniff_exit 
+
+module_bb_event_timer:
+5da3 6008824e storet 1 ,mem_app_evt_timer_count 
+
+module_bb_event_100ms_loop:
+5da4 6800824e fetch 1 ,mem_app_evt_timer_count 
+5da5 207a0000 rtn blank 
+5da6 1fe0ffff increase -1 ,pdata 
+5da7 6000824e store 1 ,mem_app_evt_timer_count 
+5da8 79200025 set1 mark_ext_patch ,mark 
+5da9 44b4402d bpatch patch2d_0 ,mem_patch2d 
+5daa 20405dac call module_read_vdd_timer 
+5dab 20205da4 branch module_bb_event_100ms_loop 
+
+module_read_vdd_timer:
+5dac 6800c746 fetch 1 ,mem_module_read_vdd_flag 
+5dad 207a0000 rtn blank 
+5dae 6800c747 fetch 1 ,mem_module_read_vdd_count 
+5daf 207a0000 rtn blank 
+5db0 1fe0ffff increase -1 ,pdata 
+5db1 6000c747 store 1 ,mem_module_read_vdd_count 
+5db2 247a0000 nrtn blank 
+5db3 7047470a jam flag_module_read_vdd_count ,mem_module_read_vdd_count 
+5db4 204065c0 call adc_set_mode 
+5db5 204065de call vdd_calculate_by_mode 
+5db6 1fe6fc64 div pdata ,0x64 
+5db7 20407f53 call wait_div_end 
+5db8 1807fe00 quotient pdata 
+5db9 18070400 remainder temp 
+5dba 6000c748 store 1 ,mem_module_vdd_quotient 
+5dbb 6008c749 storet 1 ,mem_module_vdd_remainder 
+5dbc 20600000 rtn 
+
+module_set_unsniff_task_flag:
+5dbd 6800c72f fetch 1 ,mem_module_task 
+5dbe 79207e00 set1 moudle_task_unsinff ,pdata 
+5dbf 6000c72f store 1 ,mem_module_task 
+5dc0 20600000 rtn 
+
+module_clear_unsniff_task_flag:
+5dc1 6800c72f fetch 1 ,mem_module_task 
+5dc2 793ffe00 set0 moudle_task_unsinff ,pdata 
+5dc3 6000c72f store 1 ,mem_module_task 
+5dc4 20600000 rtn 
+
+module_control_air_flow:
+5dc5 79200025 set1 mark_ext_patch ,mark 
+5dc6 44b4c02d bpatch patch2d_1 ,mem_patch2d 
+5dc7 20407f84 call check_uart_tx_buff 
+5dc8 20213e41 branch app_l2cap_flow_control_enable ,positive 
+5dc9 20203e43 branch app_l2cap_flow_control_disable 
+
+mouse_init:
+5dca 79200025 set1 mark_ext_patch ,mark 
+5dcb 44b5402d bpatch patch2d_2 ,mem_patch2d 
+5dcc 58005fc3 setarg le_mouse 
+5dcd 60014290 store 2 ,mem_cb_le_process 
+5dce 58005ee2 setarg mouse_send_process 
+5dcf 60014292 store 2 ,mem_cb_bt_process 
+5dd0 58005e27 setarg mouse_process_lpm_before 
+5dd1 6001428e store 2 ,mem_cb_before_lpm 
+5dd2 58005fd4 setarg mouse_priority_bb_event 
+5dd3 60014296 store 2 ,mem_cb_bb_event_process 
+5dd4 58005def setarg mouse_idle 
+5dd5 60014294 store 2 ,mem_cb_idle_process 
+5dd6 58005efd setarg mouse_le_notify_update_data 
+5dd7 6001429c store 2 ,mem_cb_update_notify_value 
+5dd8 7008d400 jam 0 ,mem_sp_flag 
+5dd9 7008d500 jam 0 ,mem_master_sp_flag 
+5dda 79200025 set1 mark_ext_patch ,mark 
+5ddb 44b5c02d bpatch patch2d_3 ,mem_patch2d 
+5ddc 20405e0a call mouse_init_common 
+5ddd 20758000 rtn wake 
+5dde 20405de5 call mouse_init_environment 
+5ddf 20405ded call mouse_dpi_init 
+5de0 58005e24 setarg mouse_before_hibernate 
+5de1 6001428c store 2 ,mem_cb_before_hibernate 
+5de2 6801470b fetch 2 ,mem_ui_state_map 
+5de3 c2866074 bbit1 ui_state_btn_down ,mouse_start_discovery 
+5de4 20206070 branch mouse_check_reconn_target 
+
+mouse_init_environment:
+5de5 20403e28 call app_initflag_check 
+5de6 2022ddea branch mouse_load_eeprom_param ,zero 
+5de7 20406472 call eeprom_store_le_local_addr 
+5de8 20406098 call eeprom_store_mouse_dpi 
+5de9 20203e20 branch app_initflag_store 
+
+mouse_load_eeprom_param:
+5dea 20406441 call eeprom_load_reconn_info 
+5deb 20406476 call eeprom_load_le_loacal_addr 
+5dec 2020609e branch eeprom_load_mouse_dpi 
+
+mouse_dpi_init:
+5ded 70474701 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+5dee 20205e01 branch mouse_modified_dpi 
+
+mouse_idle:
+5def 20407e3f call ui_check_paring_button 
+5df0 20405df2 call mouse_check_dpi 
+5df1 20205e3e branch mouse_wheel_check 
+
+mouse_check_dpi:
+5df2 6808c752 fetcht 1 ,mem_dpi_button_gpio 
+5df3 204064f5 call gpio_get_bit 
+5df4 2420ddf9 nbranch mouse_dpi_up ,true 
+
+mouse_dpi_down:
+5df5 6800c747 fetch 1 ,mem_mouse_dpi_button_state 
+5df6 c1000000 rtneq dpi_button_state_down 
+5df7 70474700 jam dpi_button_state_down ,mem_mouse_dpi_button_state 
+5df8 20600000 rtn 
+
+mouse_dpi_up:
+5df9 6800c747 fetch 1 ,mem_mouse_dpi_button_state 
+5dfa c1008000 rtneq dpi_button_state_up 
+5dfb 70474701 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+5dfc 6800c746 fetch 1 ,mem_mouse_dpi 
+5dfd 1fe0fe01 increase 1 ,pdata 
+5dfe 1fe17e03 and pdata ,0x03 ,pdata 
+5dff 6000c746 store 1 ,mem_mouse_dpi 
+5e00 20205e01 branch mouse_modified_dpi 
+
+mouse_modified_dpi:
+5e01 58000006 setarg mouse_dpi_address 
+5e02 204060ec call twspi_read 
+5e03 1fe104fc and pdata ,0xfc ,temp 
+5e04 6800c746 fetch 1 ,mem_mouse_dpi 
+5e05 9840fe00 iadd temp ,pdata 
+5e06 1fed7e00 lshift8 pdata ,pdata 
+5e07 1fe0fe06 add pdata ,mouse_dpi_address ,pdata 
+5e08 204060eb call twspi_write 
+5e09 20206098 branch eeprom_store_mouse_dpi 
+
+mouse_init_common:
+5e0a 20405f8e call mouse_init_sunt 
+5e0b 20405e10 call mouse_gpio_init 
+5e0c 68110050 hfetch 2 ,core_clkoff 
+5e0d 793ffe0b set0 clock_off_qdecoder ,pdata 
+5e0e 60110050 hstore 2 ,core_clkoff 
+5e0f 20600000 rtn 
+
+mouse_gpio_init:
+5e10 20758000 rtn wake 
+5e11 20403d3e call lpm_disable_exen_output 
+5e12 6808c763 fetcht 1 ,mem_mwhee_a_data_gpio 
+5e13 204064df call gpio_config_input 
+5e14 6808c764 fetcht 1 ,mem_mwhee_b_data_gpio 
+5e15 204064df call gpio_config_input 
+5e16 6808c74d fetcht 1 ,mem_lbutton_gpio 
+5e17 204064df call gpio_config_input 
+5e18 6808c74e fetcht 1 ,mem_rbutton_gpio 
+5e19 204064df call gpio_config_input 
+5e1a 6808c74f fetcht 1 ,mem_mbutton_gpio 
+5e1b 204064df call gpio_config_input 
+5e1c 6808c750 fetcht 1 ,mem_sbutton1_gpio 
+5e1d 204064df call gpio_config_input 
+5e1e 6808c751 fetcht 1 ,mem_sbutton2_gpio 
+5e1f 204064df call gpio_config_input 
+5e20 6808c753 fetcht 1 ,mem_sensor_data_gpio 
+5e21 204064df call gpio_config_input 
+5e22 6808c752 fetcht 1 ,mem_dpi_button_gpio 
+5e23 202064df branch gpio_config_input 
+
+mouse_before_hibernate:
+5e24 5800bc05 setarg 0xbc05 
+5e25 204060eb call twspi_write 
+5e26 70009f01 jam 1 ,mem_lpm_current_mult 
+
+mouse_process_lpm_before:
+5e27 20405e3e call mouse_wheel_check 
+5e28 d8400019 arg 25 ,temp 
+5e29 204064e8 call gpio_config_output 
+5e2a 70808100 hjam 0 ,core_gpio_sel1 
+5e2b 6808c763 fetcht 1 ,mem_mwhee_a_data_gpio 
+5e2c 204064c2 call gpio_set_wake_by_current_state 
+5e2d 6808c764 fetcht 1 ,mem_mwhee_b_data_gpio 
+5e2e 204064c2 call gpio_set_wake_by_current_state 
+5e2f 6808c74d fetcht 1 ,mem_lbutton_gpio 
+5e30 204064c2 call gpio_set_wake_by_current_state 
+5e31 6808c74e fetcht 1 ,mem_rbutton_gpio 
+5e32 204064c2 call gpio_set_wake_by_current_state 
+5e33 6808c74f fetcht 1 ,mem_mbutton_gpio 
+5e34 204064c2 call gpio_set_wake_by_current_state 
+5e35 6808c750 fetcht 1 ,mem_sbutton1_gpio 
+5e36 204064c2 call gpio_set_wake_by_current_state 
+5e37 6808c751 fetcht 1 ,mem_sbutton2_gpio 
+5e38 204064c2 call gpio_set_wake_by_current_state 
+5e39 6808c753 fetcht 1 ,mem_sensor_data_gpio 
+5e3a 204064c7 call gpio_set_wake 
+5e3b 6800809f fetch 1 ,mem_lpm_current_mult 
+5e3c 247a0000 nrtn blank 
+5e3d 202064d2 branch gpio_clr_wake 
+
+mouse_wheel_check:
+5e3e 79200025 set1 mark_ext_patch ,mark 
+5e3f 44b6402d bpatch patch2d_4 ,mem_patch2d 
+5e40 20405e4d call mouse_t_wheel_scan 
+5e41 20405e94 call mouse_wheel_scan 
+5e42 6800c75e fetch 1 ,mem_wheel_tb_new_pinlevel 
+5e43 6808c75d fetcht 1 ,mem_wheel_tb_old_pinlevel 
+5e44 6000c75d store 1 ,mem_wheel_tb_old_pinlevel 
+5e45 98467c00 isub temp ,null 
+5e46 2422be39 nbranch app_lpm_wake_auto_lock ,zero 
+5e47 6800c766 fetch 1 ,mem_mwheel_b_new_pinlevel 
+5e48 6808c765 fetcht 1 ,mem_mwheel_b_old_pinlevel 
+5e49 6000c765 store 1 ,mem_mwheel_b_old_pinlevel 
+5e4a 98467c00 isub temp ,null 
+5e4b 2422be39 nbranch app_lpm_wake_auto_lock ,zero 
+5e4c 20600000 rtn 
+
+mouse_t_wheel_scan:
+5e4d da200000 arg 0 ,rega 
+5e4e 6808c75b fetcht 1 ,mem_whee_ta_data_gpio 
+5e4f 204064f5 call gpio_get_bit 
+5e50 7920a200 setflag true ,0 ,rega 
+5e51 6808c75c fetcht 1 ,mem_whee_tb_data_gpio 
+5e52 204064f5 call gpio_get_bit 
+5e53 7920a201 setflag true ,1 ,rega 
+5e54 1a227e00 copy rega ,pdata 
+5e55 6000c75e store 1 ,mem_wheel_tb_new_pinlevel 
+5e56 c000de5b beq 0x01 ,p_mouse_t_wheel_scan_judge1 
+5e57 c0015e5f beq 0x02 ,p_mouse_t_wheel_scan_judge2 
+5e58 6800c75f fetch 1 ,mem_wheel_tog 
+5e59 c283de6b bbit1 7 ,p_mouse_t_wheel_scan_judge3 
+5e5a 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge1:
+5e5b 6800c75d fetch 1 ,mem_wheel_tb_old_pinlevel 
+5e5c c0005e63 beq 0 ,p_mouse_t_wheel_scan_judge11 
+5e5d c001de65 beq 3 ,p_mouse_t_wheel_scan_judge12 
+5e5e 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge2:
+5e5f 6800c75d fetch 1 ,mem_wheel_tb_old_pinlevel 
+5e60 c0005e67 beq 0 ,p_mouse_t_wheel_scan_judge21 
+5e61 c001de69 beq 3 ,p_mouse_t_wheel_scan_judge22 
+5e62 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge11:
+5e63 70475f82 jam 0x82 ,mem_wheel_tog 
+5e64 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge12:
+5e65 70475f81 jam 0x81 ,mem_wheel_tog 
+5e66 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge21:
+5e67 70475f80 jam 0x80 ,mem_wheel_tog 
+5e68 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge22:
+5e69 70475f83 jam 0x83 ,mem_wheel_tog 
+5e6a 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge3:
+5e6b 6800c75f fetch 1 ,mem_wheel_tog 
+5e6c 793ffe07 set0 7 ,pdata 
+5e6d 6000c75f store 1 ,mem_wheel_tog 
+5e6e 6800c75f fetch 1 ,mem_wheel_tog 
+5e6f c0005e74 beq 0 ,p_mouse_t_wheel_scan_judge30 
+5e70 c000de77 beq 1 ,p_mouse_t_wheel_scan_judge31 
+5e71 c0015e7a beq 2 ,p_mouse_t_wheel_scan_judge32 
+5e72 c001de7d beq 3 ,p_mouse_t_wheel_scan_judge33 
+5e73 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge30:
+5e74 6800c75e fetch 1 ,mem_wheel_tb_new_pinlevel 
+5e75 c001de80 beq 3 ,p_mouse_wheel_t_forward 
+5e76 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge31:
+5e77 6800c75e fetch 1 ,mem_wheel_tb_new_pinlevel 
+5e78 c0005e80 beq 0 ,p_mouse_wheel_t_forward 
+5e79 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge32:
+5e7a 6800c75e fetch 1 ,mem_wheel_tb_new_pinlevel 
+5e7b c001de8a beq 3 ,p_mouse_wheel_t_back 
+5e7c 20600000 rtn 
+
+p_mouse_t_wheel_scan_judge33:
+5e7d 6800c75e fetch 1 ,mem_wheel_tb_new_pinlevel 
+5e7e c0005e8a beq 0 ,p_mouse_wheel_t_back 
+5e7f 20600000 rtn 
+
+p_mouse_wheel_t_forward:
+5e80 6800c762 fetch 1 ,mem_mouse_tz_data_count1 
+5e81 1fe0fe01 increase 1 ,pdata 
+5e82 6000c762 store 1 ,mem_mouse_tz_data_count1 
+5e83 1fe67c01 sub pdata ,1 ,null 
+5e84 20610000 rtn positive 
+5e85 70476200 jam 0 ,mem_mouse_tz_data_count1 
+5e86 6800c760 fetch 1 ,mem_mouse_tz_data 
+5e87 1fe0fe01 increase 1 ,pdata 
+5e88 6000c760 store 1 ,mem_mouse_tz_data 
+5e89 20600000 rtn 
+
+p_mouse_wheel_t_back:
+5e8a 6800c761 fetch 1 ,mem_mouse_tz_data_count 
+5e8b 1fe0fe01 increase 1 ,pdata 
+5e8c 6000c761 store 1 ,mem_mouse_tz_data_count 
+5e8d 1fe67c01 sub pdata ,1 ,null 
+5e8e 20610000 rtn positive 
+5e8f 70476100 jam 0 ,mem_mouse_tz_data_count 
+5e90 6800c760 fetch 1 ,mem_mouse_tz_data 
+5e91 1fe0ffff increase -1 ,pdata 
+5e92 6000c760 store 1 ,mem_mouse_tz_data 
+5e93 20600000 rtn 
+
+mouse_wheel_scan:
+5e94 da200000 arg 0 ,rega 
+5e95 6808c763 fetcht 1 ,mem_mwhee_a_data_gpio 
+5e96 204064f5 call gpio_get_bit 
+5e97 7920a200 setflag true ,0 ,rega 
+5e98 6808c764 fetcht 1 ,mem_mwhee_b_data_gpio 
+5e99 204064f5 call gpio_get_bit 
+5e9a 7920a201 setflag true ,1 ,rega 
+5e9b 1a227e00 copy rega ,pdata 
+5e9c 6000c766 store 1 ,mem_mwheel_b_new_pinlevel 
+5e9d c000dea2 beq 0x01 ,mouse_wheel_scan_judge1 
+5e9e c0015ea6 beq 0x02 ,mouse_wheel_scan_judge2 
+5e9f 6800c767 fetch 1 ,mem_mwheel_tog 
+5ea0 c283deb2 bbit1 7 ,mouse_wheel_scan_judge3 
+5ea1 20600000 rtn 
+
+mouse_wheel_scan_judge1:
+5ea2 6800c765 fetch 1 ,mem_mwheel_b_old_pinlevel 
+5ea3 c0005eaa beq 0 ,mouse_wheel_scan_judge11 
+5ea4 c001deac beq 3 ,mouse_wheel_scan_judge12 
+5ea5 20600000 rtn 
+
+mouse_wheel_scan_judge2:
+5ea6 6800c765 fetch 1 ,mem_mwheel_b_old_pinlevel 
+5ea7 c0005eae beq 0 ,mouse_wheel_scan_judge21 
+5ea8 c001deb0 beq 3 ,mouse_wheel_scan_judge22 
+5ea9 20600000 rtn 
+
+mouse_wheel_scan_judge11:
+5eaa 70476782 jam 0x82 ,mem_mwheel_tog 
+5eab 20600000 rtn 
+
+mouse_wheel_scan_judge12:
+5eac 70476781 jam 0x81 ,mem_mwheel_tog 
+5ead 20600000 rtn 
+
+mouse_wheel_scan_judge21:
+5eae 70476780 jam 0x80 ,mem_mwheel_tog 
+5eaf 20600000 rtn 
+
+mouse_wheel_scan_judge22:
+5eb0 70476783 jam 0x83 ,mem_mwheel_tog 
+5eb1 20600000 rtn 
+
+mouse_wheel_scan_judge3:
+5eb2 6800c767 fetch 1 ,mem_mwheel_tog 
+5eb3 793ffe07 set0 7 ,pdata 
+5eb4 6000c767 store 1 ,mem_mwheel_tog 
+5eb5 6800c767 fetch 1 ,mem_mwheel_tog 
+5eb6 c0005ebb beq 0 ,mouse_wheel_scan_judge30 
+5eb7 c000debe beq 1 ,mouse_wheel_scan_judge31 
+5eb8 c0015ec1 beq 2 ,mouse_wheel_scan_judge32 
+5eb9 c001dec4 beq 3 ,mouse_wheel_scan_judge33 
+5eba 20600000 rtn 
+
+mouse_wheel_scan_judge30:
+5ebb 6800c766 fetch 1 ,mem_mwheel_b_new_pinlevel 
+5ebc c001dec7 beq 3 ,mouse_wheel_forward 
+5ebd 20600000 rtn 
+
+mouse_wheel_scan_judge31:
+5ebe 6800c766 fetch 1 ,mem_mwheel_b_new_pinlevel 
+5ebf c0005ec7 beq 0 ,mouse_wheel_forward 
+5ec0 20600000 rtn 
+
+mouse_wheel_scan_judge32:
+5ec1 6800c766 fetch 1 ,mem_mwheel_b_new_pinlevel 
+5ec2 c001ded1 beq 3 ,mouse_wheel_back 
+5ec3 20600000 rtn 
+
+mouse_wheel_scan_judge33:
+5ec4 6800c766 fetch 1 ,mem_mwheel_b_new_pinlevel 
+5ec5 c0005ed1 beq 0 ,mouse_wheel_back 
+5ec6 20600000 rtn 
+
+mouse_wheel_forward:
+5ec7 6800c76a fetch 1 ,mem_mouse_z_data_count1 
+5ec8 1fe0fe01 increase 1 ,pdata 
+5ec9 6000c76a store 1 ,mem_mouse_z_data_count1 
+5eca 1fe67c01 sub pdata ,1 ,null 
+5ecb 20610000 rtn positive 
+5ecc 70476a00 jam 0 ,mem_mouse_z_data_count1 
+5ecd 6800c768 fetch 1 ,mem_mouse_z_data 
+5ece 1fe0fe01 increase 1 ,pdata 
+5ecf 6000c768 store 1 ,mem_mouse_z_data 
+5ed0 20600000 rtn 
+
+mouse_wheel_back:
+5ed1 6800c769 fetch 1 ,mem_mouse_z_data_count 
+5ed2 1fe0fe01 increase 1 ,pdata 
+5ed3 6000c769 store 1 ,mem_mouse_z_data_count 
+5ed4 1fe67c01 sub pdata ,1 ,null 
+5ed5 20610000 rtn positive 
+5ed6 70476900 jam 0 ,mem_mouse_z_data_count 
+5ed7 6800c768 fetch 1 ,mem_mouse_z_data 
+5ed8 1fe0ffff increase -1 ,pdata 
+5ed9 6000c768 store 1 ,mem_mouse_z_data 
+5eda 20600000 rtn 
+
+le_mouse_bb_event_write_request:
+5edb 20403e7b call app_ble_store_reconn_info 
+5edc 70474b02 jam mouse_mode_state_ble ,mem_mouse_mode_state 
+5edd 20403e7f call app_lpm_mult_enable 
+
+le_mouse_bb_event_enc_info:
+5ede 20203e6d branch app_ble_start_write 
+
+mouse_hid_connected:
+5edf 58000002 setarg hid_handshake_timeout 
+5ee0 6000c709 store 1 ,mem_hid_handshake_timer_count 
+5ee1 20600000 rtn 
+
+mouse_send_process:
+5ee2 6800c283 fetch 1 ,mem_app_handshake_flag 
+5ee3 207a0000 rtn blank 
+5ee4 20404812 call l2cap_malloc_is_fifo_nearly_full 
+5ee5 247a0000 nrtn blank 
+5ee6 20405f14 call mouse_motion 
+5ee7 24740000 nrtn user 
+5ee8 20405efa call mouse_no_data_timer_init 
+
+mouse_send_data:
+5ee9 da200009 arg 9 ,rega 
+5eea 20404005 call hid_malloc_tx_buff 
+5eeb 680142de fetch 2 ,mem_hid_int_remote_cid 
+5eec e0a10000 istore 2 ,contw 
+5eed 580002a1 setarg 0x02a1 
+5eee e0a10000 istore 2 ,contw 
+5eef 6803c729 fetch 7 ,mem_mouse_key 
+5ef0 e0a38000 istore 7 ,contw 
+5ef1 20600000 rtn 
+
+bt_send_empty_data:
+5ef2 58000000 setarg 0 
+5ef3 6003472a store 6 ,mem_mouse_x 
+5ef4 6000c72f store 1 ,mem_mouse_tz 
+5ef5 20205ee9 branch mouse_send_data 
+
+p_le_send_empty_data:
+5ef6 58000000 setarg 0 
+5ef7 6003472a store 6 ,mem_mouse_x 
+5ef8 6000c72f store 1 ,mem_mouse_tz 
+5ef9 20205f0c branch mouse_fill_data_le 
+
+mouse_no_data_timer_init:
+5efa 68014739 fetch 2 ,mem_mouse_no_data_timeout 
+5efb 60014741 store 2 ,mem_mouse_no_data_timer 
+5efc 20600000 rtn 
+
+mouse_le_notify_update_data:
+5efd 680944f8 fetcht 2 ,mem_le_notify_handle 
+5efe 204051f5 call le_att_get_handle_ptr 
+5eff e8c08000 ifetch 1 ,contr 
+5f00 600083be store 1 ,mem_le_notify_len 
+5f01 d8a0446b arg mem_le_l2cap ,contw 
+5f02 18a08a01 increase 1 ,contw 
+5f03 680944f8 fetcht 2 ,mem_le_notify_handle 
+5f04 e0a90000 istoret 2 ,contw 
+5f05 204051f5 call le_att_get_handle_ptr 
+5f06 e8c08000 ifetch 1 ,contr 
+5f07 1fe27200 icopy loopcnt 
+5f08 20407ecd call memcpy 
+5f09 680883be fetcht 1 ,mem_le_notify_len 
+5f0a 18408407 increase 7 ,temp 
+5f0b 20204f89 branch le_send_packet 
+
+mouse_fill_data_le:
+5f0c 79200025 set1 mark_ext_patch ,mark 
+5f0d 44b6c02d bpatch patch2d_5 ,mem_patch2d 
+5f0e 680944f8 fetcht 2 ,mem_le_notify_handle 
+5f0f 204051f5 call le_att_get_handle_ptr 
+5f10 18c08a01 add contr ,1 ,contw 
+
+mouse_fill_data:
+5f11 6803c729 fetch 7 ,mem_mouse_key 
+5f12 e0a38000 istore 7 ,contw 
+5f13 20600000 rtn 
+
+mouse_motion:
+5f14 79200025 set1 mark_ext_patch ,mark 
+5f15 44b7402d bpatch patch2d_6 ,mem_patch2d 
+5f16 78547c00 disable user 
+5f17 58000000 setarg 0 
+5f18 6003472a store 6 ,mem_mouse_x 
+5f19 20405f1e call sensor_motion 
+5f1a 20405f87 call mouse_sensor_sdio_low 
+5f1b 20405f61 call mouse_zwheel 
+5f1c 20405f67 call mouse_t_zwheel 
+5f1d 20205f7f branch mouse_key 
+
+sensor_motion:
+5f1e 6800c735 fetch 1 ,mem_mouse_move_flag 
+5f1f 205a5f5a call mouse_read_sensor_common ,blank 
+5f20 70473501 jam 1 ,mem_mouse_move_flag 
+5f21 78547c00 disable user 
+5f22 6808c753 fetcht 1 ,mem_sensor_data_gpio 
+5f23 204064f5 call gpio_get_bit 
+5f24 24608000 nrtn true 
+5f25 58000000 setarg 0 
+5f26 204060ec call twspi_read 
+5f27 58000002 setarg 2 
+5f28 204060ec call twspi_read 
+5f29 c4038000 rtnbit0 7 
+5f2a 58000003 setarg 3 
+5f2b 204060ec call twspi_read 
+5f2c 20405fbb call extsign 
+5f2d 6001472a store 2 ,mem_mouse_x 
+5f2e 58000004 setarg 4 
+5f2f 204060ec call twspi_read 
+5f30 20405fbb call extsign 
+5f31 1fe67e00 sub pdata ,0 ,pdata 
+5f32 6001472c store 2 ,mem_mouse_y 
+5f33 6802472a fetch 4 ,mem_mouse_x 
+5f34 78347c00 enable user 
+5f35 20600000 rtn 
+
+mouse_read_sensor3610_data:
+5f36 204060e7 call spi_ncs_enable 
+5f37 20405f5a call mouse_read_sensor_common 
+5f38 dfe00005 arg 5 ,pdata 
+5f39 204060ec call twspi_read 
+5f3a 6000c730 store 1 ,mem_mouse_xy_h 
+5f3b dfe00007 arg 7 ,pdata 
+5f3c 204060ec call twspi_read 
+5f3d 6000c731 store 1 ,mem_sensor_shutter_hi 
+5f3e dfe00008 arg 8 ,pdata 
+5f3f 204060ec call twspi_read 
+5f40 6000c732 store 1 ,mem_sensor_shutter_lo 
+5f41 202060e9 branch spi_ncs_disable 
+
+mouse_3610_smart_enable:
+5f42 6800c731 fetch 1 ,mem_sensor_shutter_hi 
+5f43 c1800000 rtnne 0 
+5f44 6800c732 fetch 1 ,mem_sensor_shutter_lo 
+5f45 1fe67c2d sub pdata ,45 ,null 
+5f46 20610000 rtn positive 
+5f47 70473300 jam 0 ,mem_sensor_smart_flag 
+5f48 5800ba41 setarg 0xba41 
+5f49 204060db call sensor_write 
+5f4a 58000032 setarg 0x0032 
+5f4b 204060db call sensor_write 
+5f4c 5800b541 setarg 0xb541 
+5f4d 202060db branch sensor_write 
+
+mouse_3610_smart_disable:
+5f4e 6800c731 fetch 1 ,mem_sensor_shutter_hi 
+5f4f c1800000 rtnne 0 
+5f50 6800c732 fetch 1 ,mem_sensor_shutter_lo 
+5f51 1fe67c2d sub pdata ,45 ,null 
+5f52 24610000 nrtn positive 
+5f53 70473301 jam 1 ,mem_sensor_smart_flag 
+5f54 5800ba41 setarg 0xba41 
+5f55 204060db call sensor_write 
+5f56 58008032 setarg 0x8032 
+5f57 204060db call sensor_write 
+5f58 5800b541 setarg 0xb541 
+5f59 202060db branch sensor_write 
+
+mouse_read_sensor_common:
+5f5a dfe00003 arg 3 ,pdata 
+5f5b 204060ec call twspi_read 
+5f5c 6001472a store 2 ,mem_mouse_x 
+5f5d dfe00004 arg 4 ,pdata 
+5f5e 204060ec call twspi_read 
+5f5f 6001472c store 2 ,mem_mouse_y 
+5f60 20600000 rtn 
+
+mouse_zwheel:
+5f61 6800c768 fetch 1 ,mem_mouse_z_data 
+5f62 207a0000 rtn blank 
+5f63 6000c72e store 1 ,mem_mouse_z 
+5f64 70476800 jam 0 ,mem_mouse_z_data 
+5f65 78347c00 enable user 
+5f66 20600000 rtn 
+
+mouse_t_zwheel:
+5f67 6800c760 fetch 1 ,mem_mouse_tz_data 
+5f68 207a0000 rtn blank 
+5f69 6000c72f store 1 ,mem_mouse_tz 
+5f6a 70476000 jam 0 ,mem_mouse_tz_data 
+5f6b 78347c00 enable user 
+5f6c 20600000 rtn 
+
+mouse_check_key_gpio:
+5f6d da200000 arg 0 ,rega 
+5f6e 6808c74d fetcht 1 ,mem_lbutton_gpio 
+5f6f 204064f5 call gpio_get_bit 
+5f70 7920a200 setflag true ,0 ,rega 
+5f71 6808c74e fetcht 1 ,mem_rbutton_gpio 
+5f72 204064f5 call gpio_get_bit 
+5f73 7920a201 setflag true ,1 ,rega 
+5f74 6808c74f fetcht 1 ,mem_mbutton_gpio 
+5f75 204064f5 call gpio_get_bit 
+5f76 7920a202 setflag true ,2 ,rega 
+5f77 6808c750 fetcht 1 ,mem_sbutton1_gpio 
+5f78 204064f5 call gpio_get_bit 
+5f79 7920a203 setflag true ,3 ,rega 
+5f7a 6808c751 fetcht 1 ,mem_sbutton2_gpio 
+5f7b 204064f5 call gpio_get_bit 
+5f7c 7920a204 setflag true ,4 ,rega 
+5f7d 1a227e00 copy rega ,pdata 
+5f7e 20600000 rtn 
+
+mouse_key:
+5f7f 20405f6d call mouse_check_key_gpio 
+5f80 6808c729 fetcht 1 ,mem_mouse_key 
+5f81 6000c729 store 1 ,mem_mouse_key 
+5f82 9842fe00 ixor temp ,pdata 
+5f83 1fe67c00 sub pdata ,0 ,null 
+5f84 20628000 rtn zero 
+5f85 78347c00 enable user 
+5f86 20600000 rtn 
+
+mouse_sensor_sdio_low:
+5f87 d840001a arg 26 ,temp 
+5f88 204064f5 call gpio_get_bit 
+5f89 20608000 rtn true 
+5f8a 5800000a setarg 0x0a 
+5f8b 204060ec call twspi_read 
+5f8c 200003e8 nop 1000 
+5f8d 20205f87 branch mouse_sensor_sdio_low 
+
+mouse_init_sunt:
+5f8e 204061ac call spid_init 
+5f8f 20758000 rtn wake 
+
+mouse_init_p3204:
+5f90 58000000 setarg 0 
+5f91 204060ec call twspi_read 
+5f92 6000824b store 1 ,mem_sensor_id 
+5f93 c0185f98 beq p3204_id ,mouse_init_p3204_cont 
+5f94 c018df98 beq p3065_id ,mouse_init_p3204_cont 
+5f95 204060c0 call twspi_reset 
+5f96 200003e8 nop 1000 
+5f97 20205f90 branch mouse_init_p3204 
+
+mouse_init_p3204_cont:
+5f98 58008006 setarg 0x8006 
+5f99 204060eb call twspi_write 
+5f9a 200003e8 nop 1000 
+5f9b 20600000 rtn 
+
+mouse_init_sensor_reset:
+5f9c 6808c756 fetcht 1 ,mem_sensor_reset_gpio 
+5f9d 204064ff call gpio_out_active 
+5f9e 20407e89 call delay_10ms 
+5f9f 6808c756 fetcht 1 ,mem_sensor_reset_gpio 
+5fa0 204064fd call gpio_out_inactive 
+5fa1 20207e89 branch delay_10ms 
+
+mouse_init_p3610:
+5fa2 5800ba41 setarg 0xba41 
+5fa3 204060db call sensor_write 
+5fa4 58000d11 setarg 0x0d11 
+5fa5 204060db call sensor_write 
+5fa6 5800041b setarg 0x041b 
+5fa7 204060db call sensor_write 
+5fa8 5800041c setarg 0x041c 
+5fa9 204060db call sensor_write 
+5faa 58000f1d setarg 0x0f1d 
+5fab 204060db call sensor_write 
+5fac 58000032 setarg 0x0032 
+5fad 204060db call sensor_write 
+5fae 5800b541 setarg 0xb541 
+5faf 202060db branch sensor_write 
+
+set_sensor_reg:
+5fb0 5800ba41 setarg 0xba41 
+5fb1 204060db call sensor_write 
+5fb2 20000fa0 nop 4000 
+5fb3 5800ff7f setarg 0xff7f 
+5fb4 204060db call sensor_write 
+5fb5 1a227e00 copy rega ,pdata 
+5fb6 204060db call sensor_write 
+5fb7 5800007f setarg 0x007f 
+5fb8 204060db call sensor_write 
+5fb9 5800b541 setarg 0xb541 
+5fba 202060db branch sensor_write 
+
+extsign:
+5fbb c4038000 rtnbit0 7 
+5fbc d840ff00 arg 0xff00 ,temp 
+5fbd 9841fe00 ior temp ,pdata 
+5fbe 20600000 rtn 
+
+extsign_bit3:
+5fbf c4018000 rtnbit0 3 
+5fc0 d84000f0 arg 0xf0 ,temp 
+5fc1 9841fe00 ior temp ,pdata 
+5fc2 20600000 rtn 
+
+le_mouse:
+5fc3 20404bd4 call le_xtype_fifo_is_near_full 
+5fc4 247a0000 nrtn blank 
+5fc5 6800c74c fetch 1 ,mem_mouse_le_notify_handle 
+5fc6 6000c4f8 store 1 ,mem_le_notify_handle 
+5fc7 680944f8 fetcht 2 ,mem_le_notify_handle 
+5fc8 20404f6a call le_att_check_notification_enable 
+5fc9 c4000000 rtnbit0 0 
+5fca 6800c595 fetch 1 ,mem_le_switch_send_data 
+5fcb c4000000 rtnbit0 0 
+5fcc 20405f14 call mouse_motion 
+5fcd 24740000 nrtn user 
+5fce 20405efa call mouse_no_data_timer_init 
+5fcf 6800c74c fetch 1 ,mem_mouse_le_notify_handle 
+5fd0 6000c4f8 store 1 ,mem_le_notify_handle 
+5fd1 7009bd1b jam attop_handle_value_notification ,mem_fifo_temp 
+5fd2 20404bd6 call le_xtype_fifo_in 
+5fd3 20205f0c branch mouse_fill_data_le 
+
+mouse_priority_bb_event:
+5fd4 1a627e00 copy regc ,pdata 
+5fd5 c00a5fe7 beq bt_evt_le_connected ,le_mouse_bb_event_connected 
+5fd6 c000e084 beq bt_evt_bb_connected ,mouse_stop_discovery 
+5fd7 c00adff6 beq bt_evt_le_disconnected ,mouse_bb_disconnected 
+5fd8 c0015ff6 beq bt_evt_bb_disconnected ,mouse_bb_disconnected 
+5fd9 c002dff5 beq bt_evt_setup_complete ,mouse_bt_event_setup_complete 
+5fda c0086048 beq bt_evt_button_long_pressed ,mouse_bb_event_discovery_btn 
+5fdb c0096068 beq bt_evt_hid_handshake ,mouse_bt_hid_handshake 
+5fdc c0035ff3 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
+5fdd c0145edb beq bt_evt_le_write_request ,le_mouse_bb_event_write_request 
+5fde c014dede beq bt_evt_le_enc_info ,le_mouse_bb_event_enc_info 
+5fdf c0025ff0 beq bt_evt_reconn_failed ,mouse_bb_event_reconn_failed 
+5fe0 c009dff0 beq bt_evt_reconn_page_timeout ,mouse_bb_event_reconn_failed 
+5fe1 c0055fee beq bt_evt_pincode_req ,mouse_bb_event_pincode 
+5fe2 c0173e32 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+5fe3 1fe1040f and pdata ,0x0f ,temp 
+5fe4 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+5fe5 c0286014 beq bt_evt_timer_init ,mouse_bb_event_timer 
+5fe6 20600000 rtn 
+
+le_mouse_bb_event_connected:
+5fe7 680142af fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+5fe8 793ffe00 set0 app_disc_by_button ,pdata 
+5fe9 600142af store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+5fea 58000000 setarg 0 
+5feb 6001473f store 2 ,mem_mouse_direct_timer 
+5fec 20405efa call mouse_no_data_timer_init 
+5fed 20206084 branch mouse_stop_discovery 
+
+mouse_bb_event_pincode:
+5fee 204059d7 call pincode_reinit 
+5fef 20203e45 branch app_bt_set_pincode 
+
+mouse_bb_event_reconn_failed:
+5ff0 6801470b fetch 2 ,mem_ui_state_map 
+5ff1 c2866074 bbit1 ui_state_btn_down ,mouse_start_discovery 
+5ff2 20203e0a branch app_bb_hibernate 
+
+mouse_bt_hid_connected:
+5ff3 20405edf call mouse_hid_connected 
+5ff4 20600000 rtn 
+
+mouse_bt_event_setup_complete:
+5ff5 20600000 rtn 
+
+mouse_bb_disconnected:
+5ff6 79200025 set1 mark_ext_patch ,mark 
+5ff7 44b7c02d bpatch patch2d_7 ,mem_patch2d 
+5ff8 20406000 call mouse_bb_discon_clear_stack 
+5ff9 680142ad fetch app_disc_rsn_size ,mem_app_disconn_reason 
+5ffa c283e010 bbit1 app_disc_ble ,mouse4_0_event_bb_disconn 
+5ffb c2803e0c bbit1 app_disc_by_button ,app_disconn_reason_clear 
+5ffc c280e00a bbit1 app_disc_after_pairing ,mouse_event_light_state_pairing 
+5ffd c281600d bbit1 app_disc_after_reconn ,mouse_event_light_state_hibernate 
+5ffe c281e00d bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+5fff 20206074 branch mouse_start_discovery 
+
+mouse_bb_discon_clear_stack:
+6000 58000000 setarg 0 
+6001 6004475b store 8 ,mem_whee_ta_data_gpio 
+6002 e0a40000 istore 8 ,contw 
+6003 70474500 jam 0 ,mem_mouse_send_blank_timer 
+6004 70473500 jam 0 ,mem_mouse_move_flag 
+6005 70428300 jam app_handshake_null ,mem_app_handshake_flag 
+6006 7044b200 jam 0 ,mem_ltk_exists 
+6007 70474b00 jam 0 ,mem_mouse_mode_state 
+6008 70473600 jam 0 ,mem_reconnect_timeout 
+6009 20600000 rtn 
+
+mouse_event_light_state_pairing:
+600a c282e00d bbit1 app_disc_after_handshake ,mouse_event_light_state_hibernate 
+600b c281e00d bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+600c 20206074 branch mouse_start_discovery 
+
+mouse_event_light_state_hibernate:
+600d 6801470b fetch 2 ,mem_ui_state_map 
+600e c2866074 bbit1 ui_state_btn_down ,mouse_start_discovery 
+600f 20203e0a branch app_bb_hibernate 
+
+mouse4_0_event_bb_disconn:
+6010 204052a0 call le_clean_att_list_handle_enable 
+6011 680142ad fetch app_disc_rsn_size ,mem_app_disconn_reason 
+6012 c2803e0c bbit1 app_disc_by_button ,app_disconn_reason_clear 
+6013 20203e0a branch app_bb_hibernate 
+
+mouse_bb_event_timer:
+6014 79200025 set1 mark_ext_patch ,mark 
+6015 44b8402e bpatch patch2e_0 ,mem_patch2e 
+6016 6008824e storet 1 ,mem_app_evt_timer_count 
+
+mouse_bb_event_100ms_loop:
+6017 6800824e fetch 1 ,mem_app_evt_timer_count 
+6018 207a0000 rtn blank 
+6019 1fe0ffff increase -1 ,pdata 
+601a 6000824e store 1 ,mem_app_evt_timer_count 
+601b 20406027 call mouse_check_hid_handshake_timer 
+601c 2040602d call mouse_check_discovery_timeout_timer 
+601d 20406034 call mouse_check_direct_timeout_timer 
+601e 20406042 call mouse_check_no_data_timeout_timer 
+601f 20406021 call mouse_check_mouse_state_timer 
+6020 20206017 branch mouse_bb_event_100ms_loop 
+
+mouse_check_mouse_state_timer:
+6021 6800c76c fetch 1 ,mem_mouse_statue_led_timer 
+6022 207a0000 rtn blank 
+6023 1fe0ffff pincrease -1 
+6024 6000c76c store 1 ,mem_mouse_statue_led_timer 
+6025 247a0000 nrtn blank 
+6026 202060aa branch mouse_devce_led_off 
+
+mouse_check_hid_handshake_timer:
+6027 6800c709 fetch 1 ,mem_hid_handshake_timer_count 
+6028 207a0000 rtn blank 
+6029 1fe0ffff increase -1 ,pdata 
+602a 6000c709 store 1 ,mem_hid_handshake_timer_count 
+602b 247a0000 nrtn blank 
+602c 20206068 branch mouse_bt_hid_handshake 
+
+mouse_check_discovery_timeout_timer:
+602d 6801473d fetch 2 ,mem_mouse_discovery_timer 
+602e 207a0000 rtn blank 
+602f 1fe0ffff increase -1 ,pdata 
+6030 6001473d store 2 ,mem_mouse_discovery_timer 
+6031 247a0000 nrtn blank 
+6032 20406084 call mouse_stop_discovery 
+6033 20203e75 branch app_enter_hibernate 
+
+mouse_check_direct_timeout_timer:
+6034 6801473f fetch 2 ,mem_mouse_direct_timer 
+6035 207a0000 rtn blank 
+6036 1fe0ffff increase -1 ,pdata 
+6037 6001473f store 2 ,mem_mouse_direct_timer 
+6038 247a0000 nrtn blank 
+6039 20403e5f call app_ble_stop_direct_adv 
+603a 20203e75 branch app_enter_hibernate 
+
+mouse_check_blank_data_timeout_timer:
+603b 68014743 fetch 2 ,mem_mouse_blank_data_timer 
+603c 207a0000 rtn blank 
+603d 1fe0ffff increase -1 ,pdata 
+603e 60014743 store 2 ,mem_mouse_blank_data_timer 
+603f 247a0000 nrtn blank 
+6040 70474500 jam 0 ,mem_mouse_send_blank_timer 
+6041 20600000 rtn 
+
+mouse_check_no_data_timeout_timer:
+6042 68014741 fetch 2 ,mem_mouse_no_data_timer 
+6043 207a0000 rtn blank 
+6044 1fe0ffff increase -1 ,pdata 
+6045 60014741 store 2 ,mem_mouse_no_data_timer 
+6046 247a0000 nrtn blank 
+6047 2020608f branch mouse_disconnect 
+
+mouse_bb_event_discovery_btn:
+6048 79200025 set1 mark_ext_patch ,mark 
+6049 44b8c02e bpatch patch2e_1 ,mem_patch2e 
+604a 70474500 jam 0 ,mem_mouse_send_blank_timer 
+604b 70473601 jam 1 ,mem_reconnect_timeout 
+604c 58000000 setarg 0 
+604d 6001473f store 2 ,mem_mouse_direct_timer 
+604e 2040608f call mouse_disconnect 
+604f 6800c132 fetch 1 ,mem_device_option 
+6050 2feffe01 isolate1 mode_4_mouse ,pdata 
+6051 2040e066 call mouse4_0_bb_event_discovery_btn ,true 
+6052 6800c132 fetch 1 ,mem_device_option 
+6053 2feffe00 isolate1 mode_3_mouse ,pdata 
+6054 2040e062 call mouse3_0_bb_event_discovery_btn ,true 
+6055 20403e81 call app_lpm_mult_disable 
+6056 20206074 branch mouse_start_discovery 
+
+mouse3_0_check_reconn_target:
+6057 68034273 fetch 6 ,mem_hci_plap 
+6058 203a3e54 branch app_bt_start_discovery_short ,blank 
+6059 20203e49 branch app_bt_start_reconnect 
+
+mouse4_0_check_reconn_target:
+605a 68034273 fetch 6 ,mem_hci_plap 
+605b 203a6060 branch mouse4_0_no_reconn_target ,blank 
+605c 68014737 fetch 2 ,mem_mouse_direct_timeout 
+605d 6001473f store 2 ,mem_mouse_direct_timer 
+605e 20403e7f call app_lpm_mult_enable 
+605f 20203e5d branch app_ble_start_direct_adv 
+
+mouse4_0_no_reconn_target:
+6060 20403e6f call app_led_start_blink 
+6061 20203e63 branch app_ble_start_adv 
+
+mouse3_0_bb_event_discovery_btn:
+6062 6801470b fetch 2 ,mem_ui_state_map 
+6063 2feffe07 isolate1 ui_state_bt_reconnect ,pdata 
+6064 2040be50 call app_bt_reconnect_cancel ,true 
+6065 20600000 rtn 
+
+mouse4_0_bb_event_discovery_btn:
+6066 204052a0 call le_clean_att_list_handle_enable 
+6067 20600000 rtn 
+
+mouse_bt_hid_handshake:
+6068 70428301 jam app_handshake_done ,mem_app_handshake_flag 
+6069 20403e7f call app_lpm_mult_enable 
+606a 20403e7d call app_bt_store_reconn_info 
+606b 70474b01 jam mouse_mode_state_bt ,mem_mouse_mode_state 
+606c 58000000 setarg 0 
+606d 60014707 store 2 ,mem_discovery_timeout_timer_count 
+606e 6000c709 store 1 ,mem_hid_handshake_timer_count 
+606f 20203e79 branch app_bt_enter_sniff 
+
+mouse_check_reconn_target:
+6070 6800c2b5 fetch 1 ,mem_xrecord_mode 
+6071 c019e057 beq rec_3_mode ,mouse3_0_check_reconn_target 
+6072 c01a605a beq rec_4_mode ,mouse4_0_check_reconn_target 
+6073 20206074 branch mouse_start_discovery 
+
+mouse_start_discovery:
+6074 79200025 set1 mark_ext_patch ,mark 
+6075 44b9402e bpatch patch2e_2 ,mem_patch2e 
+6076 6801470b fetch 2 ,mem_ui_state_map 
+6077 c285e07a bbit1 ui_state_ble_adv ,mouse_start_discovery_norandom 
+6078 180a7e00 random pdata 
+6079 6000c53f store 1 ,mem_le_lap + 1 
+
+mouse_start_discovery_norandom:
+607a 20403e81 call app_lpm_mult_disable 
+607b 68014716 fetch 2 ,mem_discovery_timeout 
+607c 6001473d store 2 ,mem_mouse_discovery_timer 
+607d 6800c132 fetch 1 ,mem_device_option 
+607e 2feffe01 isolate1 mode_4_mouse ,pdata 
+607f 2040be63 call app_ble_start_adv ,true 
+6080 6800c132 fetch 1 ,mem_device_option 
+6081 2feffe00 isolate1 mode_3_mouse ,pdata 
+6082 2040be57 call app_bt_start_discovery ,true 
+6083 20203e6f branch app_led_start_blink 
+
+mouse_stop_discovery:
+6084 79200025 set1 mark_ext_patch ,mark 
+6085 44b9c02e bpatch patch2e_3 ,mem_patch2e 
+6086 58000000 setarg 0 
+6087 6001473d store 2 ,mem_mouse_discovery_timer 
+6088 6800c132 fetch 1 ,mem_device_option 
+6089 2feffe01 isolate1 mode_4_mouse ,pdata 
+608a 2040be61 call app_ble_stop_adv ,true 
+608b 6800c132 fetch 1 ,mem_device_option 
+608c 2feffe00 isolate1 mode_3_mouse ,pdata 
+608d 2040be59 call app_bt_stop_discovery ,true 
+608e 20203e73 branch app_led_stop_blink 
+
+mouse_disconnect:
+608f 79200025 set1 mark_ext_patch ,mark 
+6090 44ba402e bpatch patch2e_4 ,mem_patch2e 
+6091 58000000 setarg 0 
+6092 60014741 store 2 ,mem_mouse_no_data_timer 
+6093 6801470b fetch 2 ,mem_ui_state_map 
+6094 c284be6b bbit1 ui_state_ble_connected ,app_ble_disconnect 
+6095 6801470b fetch 2 ,mem_ui_state_map 
+6096 c2803e52 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+6097 20600000 rtn 
+
+eeprom_store_mouse_dpi:
+6098 79200025 set1 mark_ext_patch ,mark 
+6099 44bac02e bpatch patch2e_5 ,mem_patch2e 
+609a d8400001 arg 1 ,temp 
+609b da204746 arg mem_mouse_dpi ,rega 
+609c da4000c6 arg mouse_dpi_eeprom_addr ,regb 
+609d 2020626f branch iicd_write_eep_data 
+
+eeprom_load_mouse_dpi:
+609e 79200025 set1 mark_ext_patch ,mark 
+609f 44bb402e bpatch patch2e_6 ,mem_patch2e 
+60a0 d8400001 arg 1 ,temp 
+60a1 da204746 arg mem_mouse_dpi ,rega 
+60a2 da4000c6 arg mouse_dpi_eeprom_addr ,regb 
+60a3 20206245 branch iicd_read_eep_data 
+
+mouse_check_mouse_statue:
+60a4 79200025 set1 mark_ext_patch ,mark 
+60a5 44bbc02e bpatch patch2e_7 ,mem_patch2e 
+60a6 6800c734 fetch 1 ,mem_sensor_squal_reg 
+60a7 204060d1 call sensor_read 
+60a8 c00060b0 beq 0x0 ,mouse_statue_up 
+60a9 20600000 rtn 
+
+mouse_devce_led_off:
+60aa 6808c757 fetcht 1 ,mem_device1_led_gpio 
+60ab 204064fd call gpio_out_inactive 
+60ac 6808c758 fetcht 1 ,mem_device2_led_gpio 
+60ad 204064fd call gpio_out_inactive 
+60ae 6808c759 fetcht 1 ,mem_device3_led_gpio 
+60af 202064fd branch gpio_out_inactive 
+
+mouse_statue_up:
+60b0 6800c76b fetch 1 ,mem_reconn_mode 
+60b1 207a0000 rtn blank 
+60b2 70476b00 jam 0 ,mem_reconn_mode 
+60b3 70476c3c jam 60 ,mem_mouse_statue_led_timer 
+60b4 204060aa call mouse_devce_led_off 
+60b5 6800c76d fetch 1 ,mem_device_flag 
+60b6 c000e0ba beq 0x01 ,mouse_device1_led_on 
+60b7 c00160bc beq 0x02 ,mouse_device2_led_on 
+60b8 c001e0be beq 0x03 ,mouse_device3_led_on 
+60b9 20600000 rtn 
+
+mouse_device1_led_on:
+60ba 6808c757 fetcht 1 ,mem_device1_led_gpio 
+60bb 202064ff branch gpio_out_active 
+
+mouse_device2_led_on:
+60bc 6808c758 fetcht 1 ,mem_device2_led_gpio 
+60bd 202064ff branch gpio_out_active 
+
+mouse_device3_led_on:
+60be 6808c759 fetcht 1 ,mem_device3_led_gpio 
+60bf 202064ff branch gpio_out_active 
+
+twspi_reset:
+60c0 79200025 set1 mark_ext_patch ,mark 
+60c1 44bc402f bpatch patch2f_0 ,mem_patch2f 
+60c2 68108073 hfetch 1 ,core_gpio_oe3 
+60c3 d8400006 arg 0x06 ,temp 
+60c4 9841fe00 ior temp ,pdata 
+60c5 60108073 hstore 1 ,core_gpio_oe3 
+60c6 68108077 hfetch 1 ,core_gpio_out3 
+60c7 9841fe00 ior temp ,pdata 
+60c8 60108077 hstore 1 ,core_gpio_out3 
+60c9 70808100 hjam 0 ,core_gpio_sel1 
+60ca 68108077 hfetch 1 ,core_gpio_out3 
+60cb 793ffe01 set0 1 ,pdata 
+60cc 793ffe02 set0 2 ,pdata 
+60cd 60108077 hstore 1 ,core_gpio_out3 
+60ce 2000001e nop 30 
+60cf 70808101 hjam 1 ,core_gpio_sel1 
+60d0 20600000 rtn 
+
+sensor_read:
+60d1 1fe22400 copy pdata ,regb 
+60d2 204060e7 call spi_ncs_enable 
+60d3 20000064 nop 100 
+60d4 1a427e00 copy regb ,pdata 
+60d5 204060ec call twspi_read 
+60d6 1fe22400 copy pdata ,regb 
+60d7 204060e9 call spi_ncs_disable 
+60d8 20000064 nop 100 
+60d9 1a427e00 copy regb ,pdata 
+60da 20600000 rtn 
+
+sensor_write:
+60db 1fe22400 copy pdata ,regb 
+60dc 204060e7 call spi_ncs_enable 
+60dd 20000064 nop 100 
+60de 1a427e00 copy regb ,pdata 
+60df 204060eb call twspi_write 
+60e0 204060e9 call spi_ncs_disable 
+60e1 20000064 nop 100 
+60e2 20600000 rtn 
+
+spi_ncs_gpio_init:
+60e3 6800c2bb fetch 1 ,mem_spi_ncs_gpio 
+60e4 c17f8000 rtneq 0xff 
+60e5 6808c2bb fetcht 1 ,mem_spi_ncs_gpio 
+60e6 202064e8 branch gpio_config_output 
+
+spi_ncs_enable:
+60e7 6808c2bb fetcht 1 ,mem_spi_ncs_gpio 
+60e8 202064ff branch gpio_out_active 
+
+spi_ncs_disable:
+60e9 6808c2bb fetcht 1 ,mem_spi_ncs_gpio 
+60ea 202064fd branch gpio_out_inactive 
+
+twspi_write:
+60eb 202061c1 branch spid_write_reg 
+
+twspi_read:
+60ec 202061c9 branch spid_read_reg 
+
+read_function_aes:
+60ed 243460f1 nbranch read_function ,user 
+60ee 68108085 hfetch 1 ,core_gpio_key2 
+60ef 1fe1fe20 or_into 0x20 ,pdata 
+60f0 60108085 hstore 1 ,core_gpio_key2 
+
+read_function:
+60f1 18427c00 copy temp ,null 
+60f2 2022e0f4 branch read_fuction_zero ,zero 
+60f3 1a627a00 copy regc ,pc 
+
+read_fuction_zero:
+60f4 2fcc0000 isolate0 0 ,null 
+60f5 2020618e branch set_ucode_status 
+
+get_block_header:
+60f6 18000404 force 4 ,temp 
+
+get_block_header0:
+60f7 da200221 arg mem_ucode_buf ,rega 
+60f8 68108085 hfetch 1 ,core_gpio_key2 
+60f9 1fe17edf and_into 0xdf ,pdata 
+60fa 60108085 hstore 1 ,core_gpio_key2 
+60fb 204060f1 call read_function 
+60fc da2055aa arg 0x55aa ,rega 
+60fd 68010221 fetch 2 ,mem_ucode_buf 
+60fe e8c90000 ifetcht 2 ,contr 
+60ff 9a267c00 isub rega ,null 
+6100 20600000 rtn 
+
+read_first_block:
+6101 d8400002 arg 2 ,temp 
+6102 da200227 arg mem_ucode_ptr ,rega 
+6103 204060f1 call read_function 
+6104 68010227 fetch 2 ,mem_ucode_ptr 
+6105 6001021a store 2 ,mem_addr_mi 
+6106 20546108 call get_iv ,user 
+6107 20600000 rtn 
+
+get_iv:
+6108 d8400010 arg 16 ,temp 
+6109 da200229 arg mem_ucode_keybuf ,rega 
+610a 68108085 hfetch 1 ,core_gpio_key2 
+610b 1fe17edf and_into 0xdf ,pdata 
+610c 60108085 hstore 1 ,core_gpio_key2 
+610d 204060f1 call read_function 
+610e d8c00229 arg mem_ucode_keybuf ,contr 
+610f df200010 arg 16 ,loopcnt 
+6110 204071a1 call aes_load_data 
+6111 20407150 call aes_init 
+6112 204071ba call aes_clear_data 
+6113 2020714a branch do_aes_cbc 
+
+load_storage:
+6114 7856fc00 disable match 
+6115 204060f6 call get_block_header 
+6116 24628000 nrtn zero 
+6117 7836fc00 enable match 
+6118 70802380 hjam 0x80 ,core_ucode_ctrl 
+6119 70802200 hjam 0 ,core_ucode_hi 
+611a 70802400 hjam 0 ,core_ucode_low 
+611b da208025 arg core_ucode_data ,rega 
+611c 204060ed call read_function_aes 
+611d 70802300 hjam 0x0 ,core_ucode_ctrl 
+611e 204060f6 call get_block_header 
+611f 24628000 nrtn zero 
+6120 18007e00 force 0 ,pdata 
+6121 60110288 hstore 2 ,core_docd_paddr 
+6122 da20828a arg core_docd_pdata ,rega 
+6123 204060ed call read_function_aes 
+
+load_storage_loop:
+6124 d8400006 arg 6 ,temp 
+6125 204060f7 call get_block_header0 
+6126 24628000 nrtn zero 
+6127 e8c10000 ifetch 2 ,contr 
+6128 98002200 iforce rega 
+6129 204060f1 call read_function 
+612a 20206124 branch load_storage_loop 
+
+reload_eeprom:
+612b 79200025 set1 mark_ext_patch ,mark 
+612c 44bcc02f bpatch patch2f_1 ,mem_patch2f 
+612d 20407f66 call clean_mem 
+612e 58001000 setarg 0x1000 
+612f 6001021a store 2 ,mem_addr_mi 
+6130 da60624c arg iicd_read_eep ,regc 
+6131 df200002 arg 2 ,loopcnt 
+
+reload_eeprom_loop:
+6132 204060f6 call get_block_header 
+6133 24628000 nrtn zero 
+6134 6801021a fetch 2 ,mem_addr_mi 
+6135 1ff0fe00 byteswap pdata ,pdata 
+6136 9840fe00 iadd temp ,pdata 
+6137 1ff0fe00 byteswap pdata ,pdata 
+6138 6001021a store 2 ,mem_addr_mi 
+6139 c2006132 loop reload_eeprom_loop 
+613a 20206124 branch load_storage_loop 
+
+loadcode:
+613b 70805025 hjam 0x25 ,core_clkoff 
+613c 70828005 hjam 5 ,core_docd_ctrl 
+613d 20407f66 call clean_mem 
+613e 79200025 set1 mark_ext_patch ,mark 
+613f 44bd402f bpatch patch2f_2 ,mem_patch2f 
+
+loadcode_lpm:
+6140 78547c00 disable user 
+6141 204062c4 call otp_enable_chgpump 
+6142 58000000 setarg otp_ucode_flag 
+6143 da200216 arg mem_otp_ucode_flag ,rega 
+6144 d8400002 arg 2 ,temp 
+6145 2040630d call otpd_read_data 
+6146 68010216 fetch 2 ,mem_otp_ucode_flag 
+6147 c303e150 bbit0 otp_uflag_aes ,loadcode_otp 
+6148 580007f0 setarg otp_ucode_aeskey 
+6149 da200229 arg mem_ucode_keybuf ,rega 
+614a d8400010 arg 16 ,temp 
+614b 2040630d call otpd_read_data 
+614c 70800608 hjam lock_otp ,core_misc_ctrl 
+614d d8c00229 arg mem_ucode_keybuf ,contr 
+614e 204071ad call load_key 
+614f 78347c00 enable user 
+
+loadcode_otp:
+6150 79200025 set1 mark_ext_patch ,mark 
+6151 44bdc02f bpatch patch2f_3 ,mem_patch2f 
+6152 68010216 fetch 2 ,mem_otp_ucode_flag 
+6153 1ff0fe00 byteswap pdata ,pdata 
+6154 d84007ff arg 0x7ff ,temp 
+6155 98417e00 iand temp ,pdata 
+6156 2022e15e branch loadcode_spi ,zero 
+6157 204062c9 call otp_set_addr 
+6158 da606312 arg otpd_read_code ,regc 
+6159 20546108 call get_iv ,user 
+615a 20406114 call load_storage 
+615b 68008215 fetch 1 ,mem_ucode_status 
+615c 2fe00603 compare 3 ,pdata ,3 
+615d 2420e150 nbranch loadcode_otp ,true 
+
+loadcode_spi:
+615e 79200025 set1 mark_ext_patch ,mark 
+615f 44be402f bpatch patch2f_4 ,mem_patch2f 
+6160 204062c7 call otp_disable_chgpump 
+6161 68008216 fetch 1 ,mem_otp_ucode_flag 
+6162 c282e16d bbit1 otp_uflag_skip_flash ,loadcode_iic 
+6163 58000000 setarg 0x0 
+6164 60018219 store 3 ,mem_addr_hi 
+6165 204061d9 call spid_init_flash 
+6166 da6061fb arg spid_read_flash ,regc 
+6167 20406101 call read_first_block 
+6168 20406114 call load_storage 
+6169 2436e16d nbranch loadcode_iic ,match 
+616a 68008215 fetch 1 ,mem_ucode_status 
+616b 2fe00603 compare 3 ,pdata ,3 
+616c 2420e15e nbranch loadcode_spi ,true 
+
+loadcode_iic:
+616d 79200025 set1 mark_ext_patch ,mark 
+616e 44bec02f bpatch patch2f_5 ,mem_patch2f 
+616f 20406236 call clear_eeprom_size_2k 
+6170 68008216 fetch 1 ,mem_otp_ucode_flag 
+6171 c2836180 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+6172 20406188 call loadcode_iic_by_eeprom 
+6173 2436e178 nbranch loadcode_iic_eeprom_2k ,match 
+6174 68008215 fetch 1 ,mem_ucode_status 
+6175 2fe00603 compare 3 ,pdata ,3 
+6176 2420e16d nbranch loadcode_iic ,true 
+6177 20206180 branch loadcode_hci 
+
+loadcode_iic_eeprom_2k:
+6178 20406233 call set_eeprom_size_2k 
+6179 68008216 fetch 1 ,mem_otp_ucode_flag 
+617a c2836180 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+617b 20406188 call loadcode_iic_by_eeprom 
+617c 2436e180 nbranch loadcode_hci ,match 
+617d 68008215 fetch 1 ,mem_ucode_status 
+617e 2fe00603 compare 3 ,pdata ,3 
+617f 2420e178 nbranch loadcode_iic_eeprom_2k ,true 
+
+loadcode_hci:
+6180 18007004 force regidx_key ,regext_index 
+6181 204071bb call aes_clear 
+6182 70805021 hjam 0x21 ,core_clkoff 
+6183 68008216 fetch 1 ,mem_otp_ucode_flag 
+6184 c4020000 rtnbit0 otp_uflag_hci 
+6185 20403ecd call hci_init 
+
+loadcode_hci_loop:
+6186 20403ef4 call hci_rx_packet 
+6187 20206186 branch loadcode_hci_loop 
+
+loadcode_iic_by_eeprom:
+6188 58000000 setarg 0x0 
+6189 6001021a store 2 ,mem_addr_mi 
+618a da60624c arg iicd_read_eep ,regc 
+618b 2040621d call iicd_init_12m 
+618c 20406101 call read_first_block 
+618d 20206114 branch load_storage 
+
+set_ucode_status:
+618e 68008215 fetch 1 ,mem_ucode_status 
+618f 1fe3fe00 lshift pdata ,pdata 
+6190 7920fe00 setflag true ,0 ,pdata 
+6191 2a2c000f isolate0 15 ,rega 
+6192 20608000 rtn true 
+6193 60008215 store 1 ,mem_ucode_status 
+6194 20600000 rtn 
+
+decrypt_code:
+6195 68108085 hfetch 1 ,core_gpio_key2 
+6196 c4028000 rtnbit0 5 
+6197 2020619b branch decrypt_code_skip 
+
+decrypt_code_loop:
+6198 6810812c hfetch 1 ,core_dma_status 
+6199 afefffff qisolate1 pdata 
+619a 20608000 rtn true 
+
+decrypt_code_skip:
+619b 68108108 hfetch 1 ,core_misc_status 
+619c c300e198 bbit0 1 ,decrypt_code_loop 
+619d 2040714a call do_aes_cbc 
+619e 20206198 branch decrypt_code_loop 
+
+load_ucode:
+619f 68014239 fetch 2 ,mem_patch_ptr 
+61a0 207a0000 rtn blank 
+61a1 70802380 hjam 0x80 ,core_ucode_ctrl 
+61a2 70802200 hjam 0 ,core_ucode_hi 
+61a3 70802400 hjam 0 ,core_ucode_low 
+61a4 6809423b fetcht 2 ,mem_patch_len 
+61a5 184bf200 lshift2 temp ,loopcnt 
+61a6 98000c00 iforce contr 
+
+load_ucode_loop:
+61a7 e8c08000 ifetch 1 ,contr 
+61a8 60108025 hstore 1 ,core_ucode_data 
+61a9 c20061a7 loop load_ucode_loop 
+61aa 70802300 hjam 0x0 ,core_ucode_ctrl 
+61ab 20600000 rtn 
+
+spid_init:
+61ac 79200025 set1 mark_ext_patch ,mark 
+61ad 44bf402f bpatch patch2f_6 ,mem_patch2f 
+61ae 6800c2b9 fetch 1 ,mem_spi_init_clk 
+61af 60108086 hstore 1 ,core_spid_ctrl 
+61b0 6800c2ba fetch 1 ,mem_spi_init_delay_time 
+61b1 60108087 hstore 1 ,core_spid_delay 
+61b2 58000218 setarg mem_spid_tbuf 
+61b3 6011008a hstore 2 ,core_spid_txaddr 
+61b4 5800021d setarg mem_spid_rbuf 
+61b5 6011008c hstore 2 ,core_spid_rxaddr 
+61b6 68108081 hfetch 1 ,core_gpio_sel1 
+61b7 79207e00 set1 0 ,pdata 
+61b8 793ffe01 set0 1 ,pdata 
+61b9 60108081 hstore 1 ,core_gpio_sel1 
+61ba 20600000 rtn 
+
+spid_reset:
+61bb 68108086 hfetch 1 ,core_spid_ctrl 
+61bc 79207e07 set1 7 ,pdata 
+61bd 60108086 hstore 1 ,core_spid_ctrl 
+61be 793ffe07 set0 7 ,pdata 
+61bf 60108086 hstore 1 ,core_spid_ctrl 
+61c0 20600000 rtn 
+
+spid_write_reg:
+61c1 79207e07 set1 7 ,pdata 
+61c2 60010218 store 2 ,mem_spid_tbuf 
+61c3 79200025 set1 mark_ext_patch ,mark 
+61c4 44bfc02f bpatch patch2f_7 ,mem_patch2f 
+61c5 70808802 hjam 2 ,core_spid_txlen 
+61c6 70808e00 hjam 0 ,core_spid_rxlen 
+61c7 70800602 hjam spid_start ,core_misc_ctrl 
+61c8 202061d3 branch wait_spid_done 
+
+spid_read_reg:
+61c9 18000401 force 1 ,temp 
+
+spid_read_regs:
+61ca 60008218 store 1 ,mem_spid_tbuf 
+61cb 79200025 set1 mark_ext_patch ,mark 
+61cc 44c04030 bpatch patch30_0 ,mem_patch30 
+61cd 70808801 hjam 1 ,core_spid_txlen 
+61ce 6019008e hstoret 2 ,core_spid_rxlen 
+61cf 70800602 hjam spid_start ,core_misc_ctrl 
+61d0 204061d3 call wait_spid_done 
+61d1 6800821d fetch 1 ,mem_spid_rbuf 
+61d2 20600000 rtn 
+
+wait_spid_done:
+61d3 68014176 fetch 2 ,mem_afh_error_total 
+61d4 1fe0fe01 increase 1 ,pdata 
+61d5 60014176 store 2 ,mem_afh_error_total 
+61d6 6810812c hfetch 1 ,core_dma_status 
+61d7 c301e1d3 bbit0 spid_done ,wait_spid_done 
+61d8 20600000 rtn 
+
+spid_init_flash:
+61d9 70808640 hjam 0x40 ,core_spid_ctrl 
+61da 70808700 hjam 0x0 ,core_spid_delay 
+61db 68108081 hfetch 1 ,core_gpio_sel1 
+61dc 793ffe00 set0 0 ,pdata 
+61dd 79207e01 set1 1 ,pdata 
+61de 60108081 hstore 1 ,core_gpio_sel1 
+61df 58000000 setarg 0 
+61e0 60020218 store 4 ,mem_spid_tbuf 
+61e1 20600000 rtn 
+
+spid_unlock_flash:
+61e2 58000000 setarg 0 
+61e3 6011008e hstore 2 ,core_spid_rxlen 
+61e4 58000001 setarg 1 
+61e5 60108088 hstore 1 ,core_spid_txlen 
+61e6 58000218 setarg mem_spid_tbuf 
+61e7 6011008a hstore 2 ,core_spid_txaddr 
+61e8 70021806 jam 6 ,mem_spid_tbuf 
+61e9 70800602 hjam spid_start ,core_misc_ctrl 
+61ea 202061d3 branch wait_spid_done 
+
+spid_write_flash:
+61eb 18408404 increase 4 ,temp 
+61ec 60190088 hstoret 2 ,core_spid_txlen 
+61ed 1a20a3fc increase -4 ,rega 
+61ee d8400002 arg 2 ,temp 
+61ef e2288000 istoret 1 ,rega 
+61f0 1ff10400 rshift16 pdata ,temp 
+61f1 e0a88000 istoret 1 ,contw 
+61f2 1fec8400 rshift8 pdata ,temp 
+61f3 e0a88000 istoret 1 ,contw 
+61f4 e0a08000 istore 1 ,contw 
+61f5 1a227e00 deposit rega 
+61f6 6011008a hstore 2 ,core_spid_txaddr 
+61f7 58000000 setarg 0 
+61f8 6011008e hstore 2 ,core_spid_rxlen 
+61f9 70800602 hjam spid_start ,core_misc_ctrl 
+61fa 202061d3 branch wait_spid_done 
+
+spid_read_flash:
+61fb 6019008e hstoret 2 ,core_spid_rxlen 
+61fc 58000004 setarg 4 
+61fd 60110088 hstore 2 ,core_spid_txlen 
+61fe 70021803 jam 3 ,mem_spid_tbuf 
+61ff 58000218 setarg mem_spid_tbuf 
+6200 6011008a hstore 2 ,core_spid_txaddr 
+6201 1a227e00 deposit rega 
+6202 6011008c hstore 2 ,core_spid_rxaddr 
+6203 68108086 hfetch 1 ,core_spid_ctrl 
+6204 2a2c000f isolate0 15 ,rega 
+6205 7920fe06 setflag true ,6 ,pdata 
+6206 60108086 hstore 1 ,core_spid_ctrl 
+6207 70800602 hjam spid_start ,core_misc_ctrl 
+
+spi_read_flash_wait:
+6208 6810812c hfetch 1 ,core_dma_status 
+6209 c283e208 bbit1 7 ,spi_read_flash_wait 
+620a d8e00003 arg spid_done ,queue 
+620b 20406195 call decrypt_code 
+620c 204061d3 call wait_spid_done 
+620d 2feffe02 isolate1 spid_crcok ,pdata 
+620e 2040618e call set_ucode_status 
+620f 68008219 fetch 1 ,mem_addr_hi 
+6210 1ff02400 lshift16 pdata ,regb 
+6211 6800821a fetch 1 ,mem_addr_mi 
+6212 1fed7e00 lshift8 pdata ,pdata 
+6213 9a41a400 ior regb ,regb 
+6214 6800821b fetch 1 ,mem_addr_lo 
+6215 9a41fe00 ior regb ,pdata 
+6216 9840fe00 iadd temp ,pdata 
+6217 6000821b store 1 ,mem_addr_lo 
+6218 1fecfe00 rshift8 pdata ,pdata 
+6219 6000821a store 1 ,mem_addr_mi 
+621a 1fecfe00 rshift8 pdata ,pdata 
+621b 60008219 store 1 ,mem_addr_hi 
+621c 20600000 rtn 
+
+iicd_init_12m:
+621d 70809105 hjam 5 ,core_iicd_scl_low 
+621e 70809207 hjam 7 ,core_iicd_scl_high 
+621f 70809307 hjam 7 ,core_iicd_start_setup 
+6220 70809407 hjam 7 ,core_iicd_start_hold 
+6221 70809507 hjam 7 ,core_iicd_stop_setup 
+6222 70809605 hjam 5 ,core_iicd_data_setup 
+6223 20600000 rtn 
+
+wait_iicd_done:
+6224 6810812c hfetch 1 ,core_dma_status 
+6225 c302e224 bbit0 iicd_done ,wait_iicd_done 
+6226 20600000 rtn 
+
+iicd_read_data:
+6227 60110098 hstore 2 ,core_iicd_txlen 
+6228 1a227e00 deposit rega 
+6229 6011009a hstore 2 ,core_iicd_txaddr 
+622a 1a427e00 deposit regb 
+622b 6011009c hstore 2 ,core_iicd_rxaddr 
+622c 18427e00 deposit temp 
+622d 6011009e hstore 2 ,core_iicd_rxlen 
+622e d8400001 arg 1 ,temp 
+622f 7d3a0401 nsetflag blank ,1 ,temp 
+6230 60108090 hstore 1 ,core_iicd_ctrl 
+6231 70800604 hjam iicd_start ,core_misc_ctrl 
+6232 20206224 branch wait_iicd_done 
+
+set_eeprom_size_2k:
+6233 7920002a set1 mark_eeprom_size ,mark 
+6234 7042b608 jam 0x08 ,mem_eeprom_block_size 
+6235 20600000 rtn 
+
+clear_eeprom_size_2k:
+6236 793f802a set0 mark_eeprom_size ,mark 
+6237 7042b620 jam 0x20 ,mem_eeprom_block_size 
+6238 20600000 rtn 
+
+iicd_read_eep_data_size_2k:
+6239 6800c2a8 fetch 1 ,mem_eeprom_base 
+623a 9a40fe00 iadd regb ,pdata 
+623b 6000821a store 1 ,mem_addr_mi 
+623c 20206240 branch iicd_read_eep_size_2k 
+
+iicd_read_eep_size_2k_lcadcode:
+623d 6801021a fetch 2 ,mem_addr_mi 
+623e 1ff0fe00 byteswap pdata ,pdata 
+623f 6000821a store 1 ,mem_addr_mi 
+
+iicd_read_eep_size_2k:
+6240 58000003 setarg 3 
+6241 60110098 hstore 2 ,core_iicd_txlen 
+6242 700219a0 jam 0xa0 ,mem_iicd_tbuf 
+6243 70021ba1 jam 0xa1 ,mem_iicd_tbuf + 2 
+6244 20206254 branch iicd_read_eep_common 
+
+iicd_read_eep_data:
+6245 79200025 set1 mark_ext_patch ,mark 
+6246 44c0c030 bpatch patch30_1 ,mem_patch30 
+6247 c5156239 bmark1 mark_eeprom_size ,iicd_read_eep_data_size_2k 
+6248 680142a8 fetch 2 ,mem_eeprom_base 
+6249 9a40fe00 iadd regb ,pdata 
+624a 1ff0fe00 byteswap pdata ,pdata 
+624b 6001021a store 2 ,mem_addr_mi 
+
+iicd_read_eep:
+624c 79200025 set1 mark_ext_patch ,mark 
+624d 44c14030 bpatch patch30_2 ,mem_patch30 
+624e c515623d bmark1 mark_eeprom_size ,iicd_read_eep_size_2k_lcadcode 
+624f 20007530 nop 30000 
+6250 58000004 setarg 4 
+6251 60110098 hstore 2 ,core_iicd_txlen 
+6252 700219a0 jam 0xa0 ,mem_iicd_tbuf 
+6253 70021ca1 jam 0xa1 ,mem_iicd_tbuf + 3 
+
+iicd_read_eep_common:
+6254 58000219 setarg mem_iicd_tbuf 
+6255 6011009a hstore 2 ,core_iicd_txaddr 
+6256 6019009e hstoret 2 ,core_iicd_rxlen 
+6257 1a227e00 deposit rega 
+6258 6011009c hstore 2 ,core_iicd_rxaddr 
+6259 58000002 setarg 2 
+625a 2a2c000f isolate0 15 ,rega 
+625b 7920fe00 setflag true ,0 ,pdata 
+625c 60108090 hstore 1 ,core_iicd_ctrl 
+625d 70800604 hjam iicd_start ,core_misc_ctrl 
+625e d8e00005 arg iicd_done ,queue 
+625f 20406195 call decrypt_code 
+6260 20406224 call wait_iicd_done 
+6261 2feffe04 isolate1 iicd_crcok ,pdata 
+6262 2040618e call set_ucode_status 
+6263 c515626a bmark1 mark_eeprom_size ,iicd_read_eep_load_code_size_2k 
+6264 6801021a fetch 2 ,mem_addr_mi 
+6265 1ff0fe00 byteswap pdata ,pdata 
+6266 9840fe00 iadd temp ,pdata 
+6267 1ff0fe00 byteswap pdata ,pdata 
+6268 6001021a store 2 ,mem_addr_mi 
+6269 20600000 rtn 
+
+iicd_read_eep_load_code_size_2k:
+626a 6800821a fetch 1 ,mem_addr_mi 
+626b 9840fe00 iadd temp ,pdata 
+626c 1ff0fe00 byteswap pdata ,pdata 
+626d 6001021a store 2 ,mem_addr_mi 
+626e 20600000 rtn 
+
+iicd_write_eep_data:
+626f 680142a8 fetch 2 ,mem_eeprom_base 
+6270 9a40fe00 iadd regb ,pdata 
+
+iicd_write_ota_data:
+6271 600109be store 2 ,mem_pdatatemp 
+6272 79200025 set1 mark_ext_patch ,mark 
+6273 44c1c030 bpatch patch30_3 ,mem_patch30 
+6274 600909c6 storet 2 ,mem_temp 
+6275 1a227e00 copy rega ,pdata 
+6276 600109dd store 2 ,mem_contr 
+
+iicd_write_eep_loop:
+6277 20406287 call iicd_eep_transparency 
+6278 680909d6 fetcht 2 ,mem_regb 
+6279 680109dd fetch 2 ,mem_contr 
+627a 1fe22200 copy pdata ,rega 
+627b 680109be fetch 2 ,mem_pdatatemp 
+627c 204062a8 call iicd_write_eep 
+627d 680109d6 fetch 2 ,mem_regb 
+627e 680909dd fetcht 2 ,mem_contr 
+627f 98408400 iadd temp ,temp 
+6280 600909dd storet 2 ,mem_contr 
+6281 680909be fetcht 2 ,mem_pdatatemp 
+6282 98408400 iadd temp ,temp 
+6283 600909be storet 2 ,mem_pdatatemp 
+6284 680109c6 fetch 2 ,mem_temp 
+6285 243a6277 nbranch iicd_write_eep_loop ,blank 
+6286 20600000 rtn 
+
+iicd_eep_transparency:
+6287 79200025 set1 mark_ext_patch ,mark 
+6288 44c24030 bpatch patch30_4 ,mem_patch30 
+6289 680142b6 fetch 2 ,mem_eeprom_block_size 
+628a 1fe0ffff increase -1 ,pdata 
+628b 680909be fetcht 2 ,mem_pdatatemp 
+628c 9841fe00 ior temp ,pdata 
+628d 1fe0fe01 increase 1 ,pdata 
+628e 600189da store 3 ,mem_regc 
+628f 680109c6 fetch 2 ,mem_temp 
+6290 9840fe00 iadd temp ,pdata 
+6291 680989da fetcht 3 ,mem_regc 
+6292 98467e00 isub temp ,pdata 
+6293 2421629a nbranch iicd_eep_deal_short_packet ,positive 
+6294 600109c6 store 2 ,mem_temp 
+6295 680189da fetch 3 ,mem_regc 
+6296 680909be fetcht 2 ,mem_pdatatemp 
+6297 98467e00 isub temp ,pdata 
+6298 600109d6 store 2 ,mem_regb 
+6299 20600000 rtn 
+
+iicd_eep_deal_short_packet:
+629a 680109c6 fetch 2 ,mem_temp 
+629b 600109d6 store 2 ,mem_regb 
+629c 58000000 setarg 0 
+629d 600109c6 store 2 ,mem_temp 
+629e 20600000 rtn 
+
+iicd_write_eep_size_2k:
+629f 18408402 increase 2 ,temp 
+62a0 60190098 hstoret 2 ,core_iicd_txlen 
+62a1 1a20a3fe increase -2 ,rega 
+62a2 ea298000 ifetcht 3 ,rega 
+62a3 18422400 copy temp ,regb 
+62a4 d84000a0 arg 0xa0 ,temp 
+62a5 e2288000 istoret 1 ,rega 
+62a6 e0a08000 istore 1 ,contw 
+62a7 202062b7 branch iicd_write_eep_common 
+
+iicd_write_eep:
+62a8 1fe22400 copy pdata ,regb 
+62a9 79200025 set1 mark_ext_patch ,mark 
+62aa 44c2c030 bpatch patch30_5 ,mem_patch30 
+62ab 20007530 nop 30000 
+62ac c515629f bmark1 mark_eeprom_size ,iicd_write_eep_size_2k 
+62ad 1a427e00 copy regb ,pdata 
+62ae 18408403 increase 3 ,temp 
+62af 60190098 hstoret 2 ,core_iicd_txlen 
+62b0 1a20a3fd increase -3 ,rega 
+62b1 ea298000 ifetcht 3 ,rega 
+62b2 18422400 copy temp ,regb 
+62b3 d84000a0 arg 0xa0 ,temp 
+62b4 e2288000 istoret 1 ,rega 
+62b5 1ff0fe00 byteswap pdata ,pdata 
+62b6 e0a10000 istore 2 ,contw 
+
+iicd_write_eep_common:
+62b7 1a227e00 deposit rega 
+62b8 6011009a hstore 2 ,core_iicd_txaddr 
+62b9 58000000 setarg 0 
+62ba 6011009e hstore 2 ,core_iicd_rxlen 
+62bb 70809001 hjam 1 ,core_iicd_ctrl 
+62bc 70800604 hjam iicd_start ,core_misc_ctrl 
+62bd 20406224 call wait_iicd_done 
+62be 1a427e00 copy regb ,pdata 
+62bf e2218000 istore 3 ,rega 
+62c0 20002710 nop 10000 
+62c1 20002710 nop 10000 
+62c2 20002710 nop 10000 
+62c3 20600000 rtn 
+
+otp_enable_chgpump:
+62c4 70897370 hjam 0x70 ,rfen_chgpump 
+62c5 20000bb8 nop param_chgpump_delay 
+62c6 20600000 rtn 
+
+otp_disable_chgpump:
+62c7 70897330 hjam 0x30 ,rfen_chgpump 
+62c8 20600000 rtn 
+
+otp_set_addr:
+62c9 1fe9fe00 lshift3 pdata ,pdata 
+62ca 60110045 hstore 2 ,core_otp_addr 
+62cb 70804b00 hjam 0 ,core_otpd_ctrl 
+62cc 20600000 rtn 
+
+otp_write:
+62cd 204062c9 call otp_set_addr 
+62ce 204062fa call otp_ce 
+
+otp_program:
+62cf ea288000 ifetcht 1 ,rega 
+62d0 1a20a201 increase 1 ,rega 
+62d1 18000e00 force 0 ,queue 
+
+otp_program_bit:
+62d2 a84c0000 qisolate0 temp 
+62d3 2020e2f1 branch otp_skip_0 ,true 
+62d4 68108046 hfetch 1 ,core_otp_din 
+62d5 79207e06 set1 6 ,pdata 
+62d6 79207e07 set1 7 ,pdata 
+62d7 60108046 hstore 1 ,core_otp_din 
+62d8 70804702 hjam 0x02 ,core_otp_ctrl 
+62d9 70804782 hjam 0x82 ,core_otp_ctrl 
+62da 793ffe07 set0 7 ,pdata 
+62db 60108046 hstore 1 ,core_otp_din 
+62dc 7080478a hjam 0x8a ,core_otp_ctrl 
+62dd 2000000b nop 11 
+62de 708047ca hjam 0xca ,core_otp_ctrl 
+62df 20000021 nop 33 
+62e0 7080474a hjam 0x4a ,core_otp_ctrl 
+62e1 2000002c nop 44 
+62e2 708047ca hjam 0xca ,core_otp_ctrl 
+62e3 20000016 nop 22 
+62e4 7080478a hjam 0x8a ,core_otp_ctrl 
+62e5 20000021 nop 33 
+62e6 70804782 hjam 0x82 ,core_otp_ctrl 
+62e7 20000001 nop 1 
+62e8 70804792 hjam 0x92 ,core_otp_ctrl 
+62e9 2000000a nop 10 
+62ea 708047b2 hjam 0xb2 ,core_otp_ctrl 
+62eb 68108007 hfetch 1 ,core_otp_rdata 
+62ec 70804792 hjam 0x92 ,core_otp_ctrl 
+62ed 20000001 nop 1 
+62ee 70804782 hjam 0x82 ,core_otp_ctrl 
+62ef afec0000 qisolate0 pdata 
+62f0 2020e2d2 branch otp_program_bit ,true 
+
+otp_skip_0:
+62f1 68110045 hfetch 2 ,core_otp_addr 
+62f2 1fe0fe01 increase 1 ,pdata 
+62f3 60110045 hstore 2 ,core_otp_addr 
+62f4 18e08e01 increase 1 ,queue 
+62f5 28e01e08 compare 8 ,queue ,0xf 
+62f6 2420e2d2 nbranch otp_program_bit ,true 
+62f7 c20062cf loop otp_program 
+62f8 70804783 hjam 0x83 ,core_otp_ctrl 
+62f9 20600000 rtn 
+
+otp_ce:
+62fa 70804782 hjam 0x82 ,core_otp_ctrl 
+62fb 2000000c nop 12 
+62fc 70804780 hjam 0x80 ,core_otp_ctrl 
+62fd 70804782 hjam 0x82 ,core_otp_ctrl 
+62fe 20000096 nop 150 
+62ff 20600000 rtn 
+
+otpd_read_init:
+6300 204062fa call otp_ce 
+6301 708047a2 hjam 0xa2 ,core_otp_ctrl 
+6302 1a227e00 deposit rega 
+6303 60110048 hstore 2 ,core_otpd_addr 
+6304 7920040b set1 11 ,temp 
+6305 2fec000f isolate0 15 ,pdata 
+6306 7920840f setflag true ,15 ,temp 
+6307 6019004a hstoret 2 ,core_otpd_len 
+6308 70800601 hjam otpd_start ,core_misc_ctrl 
+6309 20600000 rtn 
+
+otpd_wait_end:
+630a 6810812c hfetch 1 ,core_dma_status 
+630b c300e30a bbit0 otpd_done ,otpd_wait_end 
+630c 20600000 rtn 
+
+otpd_read_data:
+630d 204062c9 call otp_set_addr 
+630e 20406300 call otpd_read_init 
+630f 2040630a call otpd_wait_end 
+6310 70804783 hjam 0x83 ,core_otp_ctrl 
+6311 20600000 rtn 
+
+otpd_read_code:
+6312 68110124 hfetch 2 ,core_current_otp_addr 
+6313 60110045 hstore 2 ,core_otp_addr 
+6314 20406300 call otpd_read_init 
+6315 d8e00001 arg otpd_done ,queue 
+6316 20406195 call decrypt_code 
+6317 2040630a call otpd_wait_end 
+6318 2feffe00 isolate1 otpd_crcok ,pdata 
+6319 2040618e call set_ucode_status 
+631a 70804783 hjam 0x83 ,core_otp_ctrl 
+631b 20600000 rtn 
+
+uartd_prepare_tx:
+631c 6811005e hfetch 2 ,core_uart_twptr 
+631d 98001400 iforce contwu 
+631e 20600000 rtn 
+
+uartd_send:
+631f 19427e00 deposit contwu 
+6320 6011005e hstore 2 ,core_uart_twptr 
+6321 20600000 rtn 
+
+uartd_rxdone:
+6322 18627e00 deposit contru 
+6323 60110058 hstore 2 ,core_uart_rrptr 
+6324 20600000 rtn 
+
+uart_set_baud_by_mem:
+6325 680142d3 fetch uart_baud_len ,mem_baud 
+6326 60110052 hstore uart_baud_len ,core_uart_baud 
+6327 20600000 rtn 
+
+uart_copy_tx_bytes_fast:
+6328 1f227e00 deposit loopcnt 
+6329 207a0000 rtn blank 
+
+uart_copy_tx_bytes_fast_loop:
+632a 1f20f3f8 increase -8 ,loopcnt 
+632b 20416335 call uart_tx_8_bytes ,positive 
+632c 20628000 rtn zero 
+632d 2021632a branch uart_copy_tx_bytes_fast_loop ,positive 
+632e 1f20f208 increase 8 ,loopcnt 
+
+uart_copy_tx_bytes_fast_loop_four:
+632f 1f20f3fc increase -4 ,loopcnt 
+6330 20416338 call uart_tx_4_bytes ,positive 
+6331 20628000 rtn zero 
+6332 2021632f branch uart_copy_tx_bytes_fast_loop_four ,positive 
+6333 1f20f204 increase 4 ,loopcnt 
+6334 2020633b branch uart_copy_tx_bytes 
+
+uart_tx_8_bytes:
+6335 e8c40000 ifetch 8 ,contr 
+6336 e1440000 istore 8 ,contwu 
+6337 20600000 rtn 
+
+uart_tx_4_bytes:
+6338 e8c20000 ifetch 4 ,contr 
+6339 e1420000 istore 4 ,contwu 
+633a 20600000 rtn 
+
+uart_copy_tx_bytes:
+633b 1f227e00 deposit loopcnt 
+633c 207a0000 rtn blank 
+
+uart_copy_tx_bytes_loop:
+633d e8c08000 ifetch 1 ,contr 
+633e e1408000 istore 1 ,contwu 
+633f c200633d loop uart_copy_tx_bytes_loop 
+6340 20600000 rtn 
+
+uart_copy_rx_bytes_fast:
+6341 1f227e00 deposit loopcnt 
+6342 207a0000 rtn blank 
+
+uart_copy_rx_bytes_fast_loop:
+6343 1f20f3f8 increase -8 ,loopcnt 
+6344 2041634e call uart_rx_8_bytes ,positive 
+6345 20628000 rtn zero 
+6346 20216343 branch uart_copy_rx_bytes_fast_loop ,positive 
+6347 1f20f208 increase 8 ,loopcnt 
+
+uart_copy_rx_bytes_fast_loop_four:
+6348 1f20f3fc increase -4 ,loopcnt 
+6349 20416351 call uart_rx_4_bytes ,positive 
+634a 20628000 rtn zero 
+634b 20216348 branch uart_copy_rx_bytes_fast_loop_four ,positive 
+634c 1f20f204 increase 4 ,loopcnt 
+634d 20206354 branch uart_copy_rx_bytes 
+
+uart_rx_8_bytes:
+634e e8640000 ifetch 8 ,contru 
+634f e0a40000 istore 8 ,contw 
+6350 20600000 rtn 
+
+uart_rx_4_bytes:
+6351 e8620000 ifetch 4 ,contru 
+6352 e0a20000 istore 4 ,contw 
+6353 20600000 rtn 
+
+uart_copy_rx_bytes:
+6354 1f227e00 deposit loopcnt 
+6355 207a0000 rtn blank 
+
+uart_copy_rx_bytes_loop:
+6356 e8608000 ifetch 1 ,contru 
+6357 e0a08000 istore 1 ,contw 
+6358 c2006356 loop uart_copy_rx_bytes_loop 
+6359 20600000 rtn 
+
+check_51cmd_update_device_record:
+635a 79200025 set1 mark_ext_patch ,mark 
+635b 44c34030 bpatch patch30_6 ,mem_patch30 
+635c 6800c2be fetch 1 ,mem_nv_data_number 
+635d 207a0000 rtn blank 
+635e 204063f3 call check_nvram 
+635f 2042e3f9 call init_device_list ,zero 
+6360 2040638e call nvram_find_addr_from_bd_list 
+
+write_device_record:
+6361 6800c2be fetch 1 ,mem_nv_data_number 
+6362 1fe22600 icopy regc 
+6363 680942bc fetcht 2 ,mem_nv_data_ptr 
+6364 600901af storet 2 ,mem_list_item_ptr 
+
+write_device_loop_find:
+6365 1a627e00 copy regc ,pdata 
+6366 203a5d30 branch module_hci_event_store_device ,blank 
+6367 1a60a7ff increase -1 ,regc 
+6368 18422200 copy temp ,rega 
+6369 ea208000 ifetch 1 ,rega 
+636a 680881a7 fetcht 1 ,mem_select_list_item 
+636b 98467c00 isub temp ,null 
+636c 2042e375 call set_index_finded_device ,zero 
+636d 20216371 branch write_device_loop_find0 ,positive 
+636e ea208000 ifetch 1 ,rega 
+636f 1fe0fe01 increase 1 ,pdata 
+6370 e2208000 istore 1 ,rega 
+
+write_device_loop_find0:
+6371 680901af fetcht 2 ,mem_list_item_ptr 
+6372 18408422 increase nv_data_len ,temp 
+6373 600901af storet 2 ,mem_list_item_ptr 
+6374 20206365 branch write_device_loop_find 
+
+set_index_finded_device:
+6375 58000000 setarg 0 
+6376 e2208000 istore 1 ,rega 
+6377 680081a8 fetch 1 ,mem_temp_reconn_record 
+6378 e0a08000 istore 1 ,contw 
+6379 c099e383 bne rec_3_mode ,set_index_finded_device_ble_mode 
+637a da404261 arg mem_link_key ,regb 
+
+set_index_find_device_master_addr:
+637b e8c30000 ifetch 6 ,contr 
+637c e0a40000 istore 8 ,contw 
+637d 58000000 setarg 0 
+637e e0a40000 istore 8 ,contw 
+637f 1a420c00 copy regb ,contr 
+
+store_rec_data_common:
+6380 20407e87 call memcpy16 
+6381 18007c01 force 1 ,null 
+6382 20600000 rtn 
+
+set_index_finded_device_ble_mode:
+6383 c01b6387 beq rec_4_mode_random_resolvable_private_address ,set_index_finded_device_irk 
+6384 c01be38b beq rec_4_mode_random_non_resolvable_private_address ,set_index_finded_device_ediv 
+6385 da4044a2 arg mem_le_ltk ,regb 
+6386 2020637b branch set_index_find_device_master_addr 
+
+set_index_finded_device_irk:
+6387 d8c0457b arg mem_le_irk ,contr 
+6388 20407e87 call memcpy16 
+
+store_ble_rec_data_common:
+6389 d8c044a2 arg mem_le_ltk ,contr 
+638a 20206380 branch store_rec_data_common 
+
+set_index_finded_device_ediv:
+638b d8c04573 arg mem_le_rand ,contr 
+638c 20407e87 call memcpy16 
+638d 20206389 branch store_ble_rec_data_common 
+
+nvram_find_addr_from_bd_list:
+638e 204031d4 call disable_usr 
+638f 6800c2be fetch 1 ,mem_nv_data_number 
+6390 207a0000 rtn blank 
+6391 6801470b fetch 2 ,mem_ui_state_map 
+6392 c28063a3 bbit1 ui_state_bt_connected ,find_addr_from_bd_list_spp_mode 
+
+find_addr_from_bd_list_ble_mode:
+6393 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+6394 c000639c beq master_public_addr ,find_addr_from_bd_list_static_addr 
+6395 68008377 fetch 1 ,mem_le_plap + 5 
+6396 2fe180c0 compare 0xc0 ,pdata ,0xc0 
+6397 2020e39c branch find_addr_from_bd_list_static_addr ,true 
+6398 2fe18040 compare 0x40 ,pdata ,0xc0 
+6399 2020e3a1 branch find_addr_from_bd_list_random_addr ,true 
+639a 2fe18000 compare 0x00 ,pdata ,0xc0 
+639b 2020e39f branch find_addr_from_bd_list_random_non_resolvable_private_address ,true 
+
+find_addr_from_bd_list_static_addr:
+639c 7001a835 jam rec_4_mode_static_address ,mem_temp_reconn_record 
+639d 68030372 fetch 6 ,mem_le_plap 
+639e 202063a7 branch find_addr_from_bd_list_common 
+
+find_addr_from_bd_list_random_non_resolvable_private_address:
+639f 7001a837 jam rec_4_mode_random_non_resolvable_private_address ,mem_temp_reconn_record 
+63a0 202063a7 branch find_addr_from_bd_list_common 
+
+find_addr_from_bd_list_random_addr:
+63a1 7001a836 jam rec_4_mode_random_resolvable_private_address ,mem_temp_reconn_record 
+63a2 202063a7 branch find_addr_from_bd_list_common 
+
+find_addr_from_bd_list_spp_mode:
+63a3 79200025 set1 mark_ext_patch ,mark 
+63a4 44c3c030 bpatch patch30_7 ,mem_patch30 
+63a5 7001a833 jam rec_3_mode ,mem_temp_reconn_record 
+63a6 68030040 fetch 6 ,mem_plap 
+
+find_addr_from_bd_list_common:
+63a7 600301a9 store 6 ,mem_temp_reconn_record + 1 
+63a8 680142bc fetch 2 ,mem_nv_data_ptr 
+63a9 efe88000 ifetcht 1 ,pdata 
+63aa 1fe0fe01 pincrease 1 
+63ab 600101af store 2 ,mem_list_item_ptr 
+63ac 600881a7 storet 1 ,mem_select_list_item 
+63ad 6800c2be fetch 1 ,mem_nv_data_number 
+63ae 1fe22600 icopy regc 
+
+nvram_find_addr_from_list:
+63af 680101af fetch 2 ,mem_list_item_ptr 
+63b0 1fe22200 copy pdata ,rega 
+63b1 204063bf call nvram_find_addr_from_list_compare 
+63b2 20740000 rtn user 
+63b3 680901af fetcht 2 ,mem_list_item_ptr 
+63b4 18408422 increase nv_data_len ,temp 
+63b5 600901af storet 2 ,mem_list_item_ptr 
+63b6 184085ff increase -1 ,temp 
+63b7 e8408000 ifetch 1 ,temp 
+63b8 600081a7 store 1 ,mem_select_list_item 
+63b9 1a60a7ff increase -1 ,regc 
+63ba 2422e3af nbranch nvram_find_addr_from_list ,zero 
+63bb 6800c2be fetch 1 ,mem_nv_data_number 
+63bc 1fe0ffff pincrease decreased_one 
+63bd 600081a7 store 1 ,mem_select_list_item 
+63be 20600000 rtn 
+
+nvram_find_addr_from_list_compare:
+63bf 680081a8 fetch 1 ,mem_temp_reconn_record 
+63c0 c099e3c6 bne rec_3_mode ,find_addr_from_list_compare_ble_mode 
+
+find_master_addr_from_list_compare:
+63c1 da4001a8 arg mem_temp_reconn_record ,regb 
+63c2 df200007 arg 7 ,loopcnt 
+63c3 20407f55 call string_compare 
+63c4 2022e4c0 branch enable_usr ,zero 
+63c5 20600000 rtn 
+
+find_addr_from_list_compare_ble_mode:
+63c6 c01b63c9 beq rec_4_mode_random_resolvable_private_address ,find_irk_form_list_compare 
+63c7 c01be3e4 beq rec_4_mode_random_non_resolvable_private_address ,find_ediv_form_list_compare 
+63c8 202063c1 branch find_master_addr_from_list_compare 
+
+find_irk_form_list_compare:
+63c9 ea288000 ifetcht 1 ,rega 
+63ca 98467c00 isub temp ,null 
+63cb 24628000 nrtn zero 
+63cc d8a009e1 arg mem_le_prand ,contw 
+63cd df200010 arg 16 ,loopcnt 
+63ce 20407e9f call clear_mem 
+63cf 68018375 fetch 3 ,mem_le_plap + 3 
+63d0 600189e1 store 3 ,mem_le_prand 
+63d1 204063db call genernate_master_macaddress 
+63d2 680109fe fetch 2 ,mem_le_aes_128 + 13 
+63d3 1ff0fe00 byteswap pdata ,pdata 
+63d4 1fed0400 lshift8 pdata ,temp 
+63d5 e8c08000 ifetch 1 ,contr 
+63d6 9840fe00 iadd temp ,pdata 
+63d7 68098372 fetcht 3 ,mem_le_plap 
+63d8 98467c00 isub temp ,null 
+63d9 2022e4c0 branch enable_usr ,zero 
+63da 20600000 rtn 
+
+genernate_master_macaddress:
+63db d8c009e1 arg mem_le_prand ,contr 
+63dc 204071af call load_data128 
+63dd ea208000 ifetch 1 ,rega 
+63de 204071b0 call load_regext 
+63df 18006c38 force 0x38 ,aes_ctrl 
+63e0 18006c00 force 0x0 ,aes_ctrl 
+63e1 20407145 call wait_aes 
+63e2 d8a009f1 arg mem_le_aes_128 ,contw 
+63e3 202071c0 branch store_aes_result 
+
+find_ediv_form_list_compare:
+63e4 ea288000 ifetcht 1 ,rega 
+63e5 98467c00 isub temp ,null 
+63e6 24628000 nrtn zero 
+63e7 18c22200 copy contr ,rega 
+63e8 18c0a608 add contr ,8 ,regc 
+63e9 da404573 arg mem_le_rand ,regb 
+63ea df200008 arg 8 ,loopcnt 
+63eb 20407f55 call string_compare 
+63ec 2022e4c0 branch enable_usr ,zero 
+63ed 1a622200 copy regc ,rega 
+63ee da40457b arg mem_le_irk ,regb 
+63ef df200008 arg 8 ,loopcnt 
+63f0 20407f55 call string_compare 
+63f1 2022e4c0 branch enable_usr ,zero 
+63f2 20600000 rtn 
+
+check_nvram:
+63f3 680142bc fetch 2 ,mem_nv_data_ptr 
+63f4 efe88000 ifetcht 1 ,pdata 
+63f5 1fe0fe22 pincrease nv_data_len 
+63f6 efe08000 ifetch 1 ,pdata 
+63f7 98467c00 isub temp ,null 
+63f8 20600000 rtn 
+
+init_device_list:
+63f9 6800c2be fetch 1 ,mem_nv_data_number 
+63fa 1fe27200 icopy loopcnt 
+63fb 680942bc fetcht 2 ,mem_nv_data_ptr 
+63fc 58000000 setarg 0 
+
+init_device_list_loop:
+63fd e0408000 istore 1 ,temp 
+63fe 18408422 increase nv_data_len ,temp 
+63ff 1fe0fe01 pincrease 1 
+6400 c20063fd loop init_device_list_loop 
+6401 20600000 rtn 
+
+load_device_list:
+6402 79200025 set1 mark_ext_patch ,mark 
+6403 44c44031 bpatch patch31_0 ,mem_patch31 
+6404 2040638e call nvram_find_addr_from_bd_list 
+6405 2434640a nbranch clear_key_exists ,user 
+6406 1a208c0a add rega ,10 ,contr 
+6407 d8a04261 arg mem_link_key ,contw 
+6408 20407e87 call memcpy16 
+6409 202064b1 branch check_link_key_load 
+
+clear_key_exists:
+640a 70425d00 jam 0 ,mem_link_key_exists 
+640b 20600000 rtn 
+
+load_device_list_mode_4:
+640c 6804c571 fetch 9 ,mem_le_ediv 
+640d 203a642c branch clear_ltk_exists ,blank 
+640e 2040638e call nvram_find_addr_from_bd_list 
+640f 2434642c nbranch clear_ltk_exists ,user 
+6410 680101af fetch 2 ,mem_list_item_ptr 
+6411 1fe08c01 add pdata ,1 ,contr 
+6412 d8a0457b arg mem_le_irk ,contw 
+6413 20407e87 call memcpy16 
+6414 d8a044a2 arg mem_le_ltk ,contw 
+6415 20407e87 call memcpy16 
+6416 7044b201 jam 1 ,mem_ltk_exists 
+6417 20600000 rtn 
+
+load_device_list_mode_4_shutter:
+6418 68014571 fetch 2 ,mem_le_ediv 
+6419 243a641c nbranch load_device_list_mode_4_shutter_label ,blank 
+641a 68034573 fetch 6 ,mem_le_rand 
+641b 203a642b branch clear_ltk_exists_iphone_lost_ltk ,blank 
+
+load_device_list_mode_4_shutter_label:
+641c 7048c603 jam ltk_not_lost ,mem_ltk_states 
+641d 58112233 setarg 0x112233 
+641e 6001c4a2 store 3 ,mem_le_ltk 
+641f 58445566 setarg 0x445566 
+6420 e0a18000 istore 3 ,contw 
+6421 58778899 setarg 0x778899 
+6422 e0a18000 istore 3 ,contw 
+6423 58001122 setarg 0x001122 
+6424 e0a18000 istore 3 ,contw 
+6425 58334455 setarg 0x334455 
+6426 e0a18000 istore 3 ,contw 
+6427 58000066 setarg 0x66 
+6428 e0a08000 istore 1 ,contw 
+6429 7044b201 jam 1 ,mem_ltk_exists 
+642a 20600000 rtn 
+
+clear_ltk_exists_iphone_lost_ltk:
+642b 7048c601 jam iphone_lost_ltk ,mem_ltk_states 
+
+clear_ltk_exists:
+642c 7044b200 jam 0 ,mem_ltk_exists 
+642d 20600000 rtn 
+
+eeprom_store_le_reconn_info:
+642e 68030372 fetch 6 ,mem_le_plap 
+642f 600301a9 store 6 ,mem_temp_lap 
+6430 7001a834 jam rec_4_mode ,mem_record_bt_mode 
+6431 20206435 branch eeprom_store_reconn_info 
+
+eeprom_store_bd_reconn_info:
+6432 68030040 fetch 6 ,mem_plap 
+6433 600301a9 store 6 ,mem_temp_lap 
+6434 7001a833 jam rec_3_mode ,mem_record_bt_mode 
+
+eeprom_store_reconn_info:
+6435 79200025 set1 mark_ext_patch ,mark 
+6436 44c4c031 bpatch patch31_1 ,mem_patch31 
+6437 6800c132 fetch 1 ,mem_device_option 
+6438 c005635a beq dvc_op_module ,check_51cmd_update_device_record 
+6439 20406463 call eeprom_store_remote_bdaddr 
+643a 2040645f call eeprom_store_last_record_index 
+643b 680081a8 fetch 1 ,mem_record_bt_mode 
+643c c01a643f beq rec_4_mode ,eeprom_store_rec_4_mode 
+643d c019e48b beq rec_3_mode ,eeprom_store_link_key 
+643e 20600000 rtn 
+
+eeprom_store_rec_4_mode:
+643f 20406489 call eeprom_store_le_ltl 
+6440 20206472 branch eeprom_store_le_local_addr 
+
+eeprom_load_reconn_info:
+6441 79200025 set1 mark_ext_patch ,mark 
+6442 44c54031 bpatch patch31_2 ,mem_patch31 
+6443 2040644d call eeprom_load_reconn_bdaddr 
+6444 680081a7 fetch 1 ,mem_select_list_item 
+6445 c17f8000 rtneq 0xff 
+6446 680301a9 fetch 6 ,mem_temp_lap 
+6447 60034273 store 6 ,mem_hci_plap 
+6448 680081a8 fetch 1 ,mem_record_bt_mode 
+6449 6000c2b5 store 1 ,mem_xrecord_mode 
+644a c019e451 beq rec_3_mode ,eeprom_load_rec_3_mode 
+644b c01a6453 beq rec_4_mode ,eeprom_load_rec_4_mode 
+644c 20600000 rtn 
+
+eeprom_load_reconn_bdaddr:
+644d 2040645b call eeprom_load_last_record_index 
+644e 680081a7 fetch 1 ,mem_select_list_item 
+644f c17f8000 rtneq 0xff 
+6450 2020647a branch eeprom_load_remote_bdaddr 
+
+eeprom_load_rec_3_mode:
+6451 20406492 call eeprom_load_link_key 
+6452 202064b1 branch check_link_key_load 
+
+eeprom_load_rec_4_mode:
+6453 20406490 call eeprom_load_ltk_key 
+6454 202064b7 branch check_ltk_load 
+
+eeprom_erase_reconn_info:
+6455 79200025 set1 mark_ext_patch ,mark 
+6456 44c64031 bpatch patch31_4 ,mem_patch31 
+6457 58000000 setarg 0x0 
+6458 60018040 store 3 ,mem_plap 
+6459 e0a18000 istore 3 ,contw 
+645a 20206463 branch eeprom_store_remote_bdaddr 
+
+eeprom_load_last_record_index:
+645b d8400001 arg 1 ,temp 
+645c da2001a7 arg mem_select_list_item ,rega 
+645d da40001c arg eeprom_last_record ,regb 
+645e 20206245 branch iicd_read_eep_data 
+
+eeprom_store_last_record_index:
+645f d8400001 arg 1 ,temp 
+6460 da2001a7 arg mem_select_list_item ,rega 
+6461 da40001c arg eeprom_last_record ,regb 
+6462 2020626f branch iicd_write_eep_data 
+
+eeprom_store_remote_bdaddr:
+6463 79200025 set1 mark_ext_patch ,mark 
+6464 44c6c031 bpatch patch31_5 ,mem_patch31 
+6465 20406497 call eeprom_load_bdaddr_list 
+6466 78547c00 disable user 
+6467 2040649b call find_addr_from_bd_list 
+6468 20740000 rtn user 
+
+eeprom_store_remote_addr_unfind:
+6469 7001a700 jam 0 ,mem_select_list_item 
+646a 680301a9 fetch 6 ,mem_temp_lap 
+646b 60030184 store 6 ,mem_bdaddr_list_buff + 1 
+646c 680081a8 fetch 1 ,mem_record_bt_mode 
+646d 60008183 store 1 ,mem_bdaddr_list_buff 
+646e d840001c arg 28 ,temp 
+646f da200183 arg mem_bdaddr_list_buff ,rega 
+6470 da400000 arg eeprom_bdaddr_list ,regb 
+6471 2020626f branch iicd_write_eep_data 
+
+eeprom_store_le_local_addr:
+6472 d8400006 arg 6 ,temp 
+6473 da20453e arg mem_le_lap ,rega 
+6474 da40001d arg eeprom_le_reconn_local_addr ,regb 
+6475 2020626f branch iicd_write_eep_data 
+
+eeprom_load_le_loacal_addr:
+6476 d8400006 arg 6 ,temp 
+6477 da20453e arg mem_le_lap ,rega 
+6478 da40001d arg eeprom_le_reconn_local_addr ,regb 
+6479 20206245 branch iicd_read_eep_data 
+
+eeprom_load_remote_bdaddr:
+647a 79200025 set1 mark_ext_patch ,mark 
+647b 44c74031 bpatch patch31_6 ,mem_patch31 
+647c d8400007 arg 7 ,temp 
+647d da2001a8 arg mem_temp_reconn_record ,rega 
+647e da400000 arg eeprom_bdaddr_list ,regb 
+647f 680081a7 fetch 1 ,mem_select_list_item 
+6480 1feffe07 mul32 pdata ,7 ,pdata 
+6481 9a40a400 iadd regb ,regb 
+6482 20206245 branch iicd_read_eep_data 
+
+eeprom_linkkey_addr:
+6483 d8400010 arg 0x10 ,temp 
+6484 da400023 arg eeprom_linkkey_list ,regb 
+6485 680081a7 fetch 1 ,mem_select_list_item 
+6486 1ff27e00 lshift4 pdata ,pdata 
+6487 9a40a400 iadd regb ,regb 
+6488 20600000 rtn 
+
+eeprom_store_le_ltl:
+6489 da2044a2 arg mem_le_ltk ,rega 
+648a 2020648c branch eeprom_store_link_key_common 
+
+eeprom_store_link_key:
+648b da204261 arg mem_link_key ,rega 
+
+eeprom_store_link_key_common:
+648c 79200025 set1 mark_ext_patch ,mark 
+648d 44c7c031 bpatch patch31_7 ,mem_patch31 
+648e 20406483 call eeprom_linkkey_addr 
+648f 2020626f branch iicd_write_eep_data 
+
+eeprom_load_ltk_key:
+6490 da2044a2 arg mem_le_ltk ,rega 
+6491 20206493 branch eeprom_load_link_key_common 
+
+eeprom_load_link_key:
+6492 da204261 arg mem_link_key ,rega 
+
+eeprom_load_link_key_common:
+6493 79200025 set1 mark_ext_patch ,mark 
+6494 44c84032 bpatch patch32_0 ,mem_patch32 
+6495 20406483 call eeprom_linkkey_addr 
+6496 20206245 branch iicd_read_eep_data 
+
+eeprom_load_bdaddr_list:
+6497 d840001c arg 28 ,temp 
+6498 da20018a arg mem_bdaddr_list_buff + 7 ,rega 
+6499 da400000 arg eeprom_bdaddr_list ,regb 
+649a 20206245 branch iicd_read_eep_data 
+
+find_addr_from_bd_list:
+649b 79200025 set1 mark_ext_patch ,mark 
+649c 44c8c032 bpatch patch32_1 ,mem_patch32 
+649d 5800018a setarg mem_bdaddr_list_buff + 7 
+649e 600101af store 2 ,mem_list_item_ptr 
+649f 7001a700 jam 0 ,mem_select_list_item 
+64a0 df200004 arg 4 ,loopcnt 
+
+find_addr_from_list:
+64a1 1f227e00 copy loopcnt ,pdata 
+64a2 600089be store 1 ,mem_pdatatemp 
+64a3 680101af fetch 2 ,mem_list_item_ptr 
+64a4 1fe22200 copy pdata ,rega 
+64a5 204064bb call find_addr_from_list_compare 
+64a6 20740000 rtn user 
+64a7 680101af fetch 2 ,mem_list_item_ptr 
+64a8 1fe0fe07 increase 7 ,pdata 
+64a9 600101af store 2 ,mem_list_item_ptr 
+64aa 680081a7 fetch 1 ,mem_select_list_item 
+64ab 1fe0fe01 increase 1 ,pdata 
+64ac 600081a7 store 1 ,mem_select_list_item 
+64ad 680089be fetch 1 ,mem_pdatatemp 
+64ae 1fe27200 copy pdata ,loopcnt 
+64af c20064a1 loop find_addr_from_list 
+64b0 20600000 rtn 
+
+check_link_key_load:
+64b1 68044261 fetch 8 ,mem_link_key 
+64b2 680c4269 fetcht 8 ,mem_link_key + 8 
+64b3 9841fe00 ior temp ,pdata 
+64b4 207a0000 rtn blank 
+64b5 70425d01 jam 1 ,mem_link_key_exists 
+64b6 20600000 rtn 
+
+check_ltk_load:
+64b7 68034273 fetch 6 ,mem_hci_plap 
+64b8 207a0000 rtn blank 
+64b9 7044b201 jam 1 ,mem_ltk_exists 
+64ba 20600000 rtn 
+
+find_addr_from_list_compare:
+64bb da4001a8 arg mem_temp_reconn_record ,regb 
+64bc df200007 arg 7 ,loopcnt 
+64bd 20407f55 call string_compare 
+64be 2022e4c0 branch enable_usr ,zero 
+64bf 20600000 rtn 
+
+enable_usr:
+64c0 78347c00 enable user 
+64c1 20600000 rtn 
+
+gpio_set_wake_by_current_state:
+64c2 79200025 set1 mark_ext_patch ,mark 
+64c3 44c94032 bpatch patch32_2 ,mem_patch32 
+64c4 79200407 set1 7 ,temp 
+64c5 204064f5 call gpio_get_bit 
+64c6 7d208407 nsetflag true ,7 ,temp 
+
+gpio_set_wake:
+64c7 79200025 set1 mark_ext_patch ,mark 
+64c8 44c9c032 bpatch patch32_3 ,mem_patch32 
+64c9 284c0007 isolate0 7 ,temp 
+64ca 18410e1f and temp ,0x1f ,queue 
+64cb 680200a0 fetch 4 ,mem_gpio_wakeup_low 
+64cc f920fe00 qsetflag true ,pdata 
+64cd 600200a0 store 4 ,mem_gpio_wakeup_low 
+64ce 680200a4 fetch 4 ,mem_gpio_wakeup_high 
+64cf fd20fe00 nqsetflag true ,pdata 
+64d0 600200a4 store 4 ,mem_gpio_wakeup_high 
+64d1 20600000 rtn 
+
+gpio_clr_wake:
+64d2 79200025 set1 mark_ext_patch ,mark 
+64d3 44ca4032 bpatch patch32_4 ,mem_patch32 
+64d4 284c0007 isolate0 7 ,temp 
+64d5 18410e1f and temp ,0x1f ,queue 
+64d6 680200a0 fetch 4 ,mem_gpio_wakeup_low 
+64d7 f93ffe00 qset0 pdata 
+64d8 600200a0 store 4 ,mem_gpio_wakeup_low 
+64d9 680200a4 fetch 4 ,mem_gpio_wakeup_high 
+64da f93ffe00 qset0 pdata 
+64db 600200a4 store 4 ,mem_gpio_wakeup_high 
+64dc 20600000 rtn 
+
+gpio_config_input_nowake:
+64dd 204064d2 call gpio_clr_wake 
+64de 202064e0 branch gpio_config_input_without_wake 
+
+gpio_config_input:
+64df 2455e4c7 ncall gpio_set_wake ,wake 
+
+gpio_config_input_without_wake:
+64e0 d8a0807c arg core_gpio_pd0 ,contw 
+64e1 20406504 call gpio_set_bit 
+64e2 79400407 setflip gpio_active_bit ,temp 
+64e3 d8a08078 arg core_gpio_pu0 ,contw 
+64e4 20406504 call gpio_set_bit 
+64e5 793f8407 set0 gpio_active_bit ,temp 
+64e6 d8a08070 arg core_gpio_oe0 ,contw 
+64e7 20206504 branch gpio_set_bit 
+
+gpio_config_output:
+64e8 79400407 setflip gpio_active_bit ,temp 
+64e9 20406503 call gpio_out 
+
+gpio_config_output0:
+64ea 79200407 set1 gpio_active_bit ,temp 
+64eb d8a08070 arg core_gpio_oe0 ,contw 
+64ec 20206504 branch gpio_set_bit 
+
+gpio_common:
+64ed 18410e07 and temp ,0x07 ,queue 
+64ee 18497e00 rshift3 temp ,pdata 
+64ef 1fe17e03 and_into 3 ,pdata 
+64f0 98a08a00 iadd contw ,contw 
+64f1 e8a08000 ifetch 1 ,contw 
+64f2 20600000 rtn 
+
+gpio_check_active:
+64f3 d8a08074 arg core_gpio_out0 ,contw 
+64f4 202064f6 branch get_bit_common 
+
+gpio_get_bit:
+64f5 d8a0811c arg core_gpio_in ,contw 
+
+get_bit_common:
+64f6 204064ed call gpio_common 
+64f7 284ffe07 isolate1 gpio_active_bit ,temp 
+64f8 2020e4fb branch gpio_get_bit_reverse ,true 
+64f9 afec0000 qisolate0 pdata 
+64fa 20600000 rtn 
+
+gpio_get_bit_reverse:
+64fb afefffff qisolate1 pdata 
+64fc 20600000 rtn 
+
+gpio_out_inactive:
+64fd 2fcffe07 isolate1 7 ,null 
+64fe 20206500 branch gpio_out_flag 
+
+gpio_out_active:
+64ff 2fcc0007 isolate0 7 ,null 
+
+gpio_out_flag:
+6500 58000000 setarg 0 
+6501 7d20fe07 nsetflag true ,gpio_active_bit ,pdata 
+6502 98428400 ixor temp ,temp 
+
+gpio_out:
+6503 d8a08074 arg core_gpio_out0 ,contw 
+
+gpio_set_bit:
+6504 204064ed call gpio_common 
+6505 284ffe07 isolate1 gpio_active_bit ,temp 
+6506 f920fe00 qsetflag true ,pdata 
+6507 e0a08000 istore 1 ,contw 
+6508 20600000 rtn 
+
+gpio_set_before_lpm_common:
+6509 da3fffff arg -1 ,rega 
+650a 68108081 hfetch 1 ,core_gpio_sel1 
+650b 2feffe01 isolate1 1 ,pdata 
+650c 2040e54d call neglact4_from_23_pin ,true 
+650d 1fe12403 and pdata ,0x3 ,regb 
+650e 1a467c01 sub regb ,1 ,null 
+650f 2042e54f call neglact2_form_25_pin ,zero 
+6510 2feffe02 isolate1 2 ,pdata 
+6511 2040e549 call neglect2_from_6_pin ,true 
+6512 2feffe03 isolate1 3 ,pdata 
+6513 2040e54b call neglect4_from_9_pin ,true 
+6514 2feffe05 isolate1 5 ,pdata 
+6515 2040e551 call neglact2_form_27_pin ,true 
+6516 2feffe06 isolate1 6 ,pdata 
+6517 d8e00004 arg 4 ,queue 
+6518 2040e555 call neglact_1_pin ,true 
+6519 7d20a204 nsetflag true ,4 ,rega 
+651a 2feffe07 isolate1 7 ,pdata 
+651b d8e00005 arg 5 ,queue 
+651c 2040e555 call neglact_1_pin ,true 
+651d 68108082 hfetch 1 ,core_gpio_sel2 
+651e 2feffe00 isolate1 0 ,pdata 
+651f d8e00003 arg 3 ,queue 
+6520 2040e555 call neglact_1_pin ,true 
+6521 68188080 hfetcht 1 ,core_gpio_sel 
+6522 284ffe00 isolate1 0 ,temp 
+6523 d8e00005 arg 5 ,queue 
+6524 2040e555 call neglact_1_pin ,true 
+6525 9841fe00 ior temp ,pdata 
+6526 2feffe01 isolate1 1 ,pdata 
+6527 d8e00006 arg 6 ,queue 
+6528 2040e555 call neglact_1_pin ,true 
+6529 2feffe02 isolate1 2 ,pdata 
+652a d8e00007 arg 7 ,queue 
+652b 2040e555 call neglact_1_pin ,true 
+652c 2feffe03 isolate1 3 ,pdata 
+652d d8e00012 arg 18 ,queue 
+652e 2040e555 call neglact_1_pin ,true 
+652f 2feffe04 isolate1 4 ,pdata 
+6530 d8e00013 arg 19 ,queue 
+6531 2040e555 call neglact_1_pin ,true 
+6532 2feffe05 isolate1 5 ,pdata 
+6533 d8e00014 arg 20 ,queue 
+6534 2040e555 call neglact_1_pin ,true 
+6535 2feffe06 isolate1 6 ,pdata 
+6536 d8e00015 arg 21 ,queue 
+6537 2040e555 call neglact_1_pin ,true 
+6538 2feffe07 isolate1 7 ,pdata 
+6539 d8e00016 arg 22 ,queue 
+653a 2040e555 call neglact_1_pin ,true 
+653b 68108062 hfetch 1 ,core_uart_ctrl 
+653c 2feffe04 isolate1 4 ,pdata 
+653d 2040e553 call neglact2_form_2_pin ,true 
+653e 79200025 set1 mark_ext_patch ,mark 
+653f 44cac032 bpatch patch32_5 ,mem_patch32 
+6540 68120078 hfetch 4 ,core_gpio_pu0 
+6541 681a007c hfetcht 4 ,core_gpio_pd0 
+6542 9841fe00 ior temp ,pdata 
+6543 1fe47e00 invert pdata ,pdata 
+6544 9a217e00 iand rega ,pdata 
+6545 681a007c hfetcht 4 ,core_gpio_pd0 
+6546 9841fe00 ior temp ,pdata 
+6547 6012007c hstore 4 ,core_gpio_pd0 
+6548 20600000 rtn 
+
+neglect2_from_6_pin:
+6549 d8e00006 arg 6 ,queue 
+654a 20206559 branch neglect_2_pin 
+
+neglect4_from_9_pin:
+654b d8e00009 arg 9 ,queue 
+654c 20206557 branch neglact_4_pin 
+
+neglact4_from_23_pin:
+654d d8e00017 arg 23 ,queue 
+654e 20206557 branch neglact_4_pin 
+
+neglact2_form_25_pin:
+654f d8e00019 arg 25 ,queue 
+6550 20206559 branch neglect_2_pin 
+
+neglact2_form_27_pin:
+6551 d8e0001b arg 27 ,queue 
+6552 20206559 branch neglect_2_pin 
+
+neglact2_form_2_pin:
+6553 d8e00002 arg 2 ,queue 
+6554 20206559 branch neglect_2_pin 
+
+neglact_1_pin:
+6555 df200001 arg 1 ,loopcnt 
+6556 2020655a branch neglect_pin_loop 
+
+neglact_4_pin:
+6557 df200004 arg 4 ,loopcnt 
+6558 2020655a branch neglect_pin_loop 
+
+neglect_2_pin:
+6559 df200002 arg 2 ,loopcnt 
+
+neglect_pin_loop:
+655a f93fa200 qset0 rega 
+655b 18e08e01 increase 1 ,queue 
+655c c200655a loop neglect_pin_loop 
+655d 20600000 rtn 
+
+gpio_cfg_uart_tx_output:
+655e 2040656a call gpio_uart2gpio 
+655f d8400006 arg uart_wakeup_tx ,temp 
+6560 202064e8 branch gpio_config_output 
+
+gpio_pu_uart_tx:
+6561 2040655e call gpio_cfg_uart_tx_output 
+6562 d8400006 arg uart_wakeup_tx ,temp 
+6563 202064fd branch gpio_out_inactive 
+
+gpio_rx_config_input_with_pu:
+6564 2040656a call gpio_uart2gpio 
+6565 68108078 hfetch 1 ,core_gpio_pu0 
+6566 79207e07 set1 uart_wakeup_rx ,pdata 
+6567 60108078 hstore 1 ,core_gpio_pu0 
+6568 d8400007 arg uart_wakeup_rx ,temp 
+6569 202064df branch gpio_config_input 
+
+gpio_uart2gpio:
+656a 68108081 hfetch 1 ,core_gpio_sel1 
+656b 1fe17efb and_into 0xfb ,pdata 
+656c 60108081 hstore 1 ,core_gpio_sel1 
+656d 20600000 rtn 
+
+gpio_check_uart_state:
+656e 68108081 hfetch 1 ,core_gpio_sel1 
+656f 2feffe02 isolate1 2 ,pdata 
+6570 20600000 rtn 
+
+load_chip_option:
+6571 204062c4 call otp_enable_chgpump 
+6572 580007e0 setarg otp_chip_functions 
+6573 da2041f0 arg mem_chip_functions ,rega 
+6574 d8400002 arg 0x02 ,temp 
+6575 2040630d call otpd_read_data 
+6576 202062c7 branch otp_disable_chgpump 
+
+adc_init_data:
+6577 79200025 set1 mark_ext_patch ,mark 
+6578 44cb4032 bpatch patch32_6 ,mem_patch32 
+6579 204062c4 call otp_enable_chgpump 
+657a 580007e2 setarg otp_adc_io_0_5v_addr 
+657b da2042bf arg mem_0_5_adc_io_data ,rega 
+657c d840000e arg 14 ,temp 
+657d 2040630d call otpd_read_data 
+657e 204062c7 call otp_disable_chgpump 
+657f 6800c2cf fetch 1 ,mem_adc_config_flag 
+6580 c2806584 bbit1 adc_config_vinlpm ,adc_init_data_vinlpm 
+6581 c280e598 bbit1 adc_config_hvin ,adc_init_data_hvin 
+6582 c28165ac bbit1 adc_config_gpio ,adc_init_data_io 
+6583 20600000 rtn 
+
+adc_init_data_vinlpm:
+6584 680942cb fetcht 2 ,mem_otp_adc_flag 
+6585 5800aa55 setarg otp_adc_flag 
+6586 98467c00 isub temp ,null 
+6587 2022e58d branch adc_check_data_vinlpm ,zero 
+6588 58004dfa setarg 0x4dfa 
+6589 600142c9 store 2 ,mem_3v_adc_vinlpm_data 
+658a 58004894 setarg 0x4894 
+658b 600142c3 store 2 ,mem_2v_adc_vinlpm_data 
+658c 20206595 branch set_vdd_reference_voltage_1v 
+
+adc_check_data_vinlpm:
+658d 680142c9 fetch 2 ,mem_3v_adc_vinlpm_data 
+658e 243a6591 nbranch adc_check_2v_vinlpm ,blank 
+658f 58004dfa setarg 0x4dfa 
+6590 600142c9 store 2 ,mem_3v_adc_vinlpm_data 
+
+adc_check_2v_vinlpm:
+6591 680142c3 fetch 2 ,mem_2v_adc_vinlpm_data 
+6592 243a6595 nbranch set_vdd_reference_voltage_1v ,blank 
+6593 58004894 setarg 0x4894 
+6594 600142c3 store 2 ,mem_2v_adc_vinlpm_data 
+
+set_vdd_reference_voltage_1v:
+6595 58000064 setarg 100 
+6596 600142cd store 2 ,mem_reference_voltage 
+6597 20600000 rtn 
+
+adc_init_data_hvin:
+6598 680942cb fetcht 2 ,mem_otp_adc_flag 
+6599 5800aa55 setarg otp_adc_flag 
+659a 98467c00 isub temp ,null 
+659b 2022e5a1 branch adc_check_data_hvin ,zero 
+659c 58005932 setarg 0x5932 
+659d 600142c7 store 2 ,mem_5v_adc_hvin_data 
+659e 58004323 setarg 0x4323 
+659f 600142c1 store 2 ,mem_1v_adc_hvin_data 
+65a0 202065a9 branch set_vdd_reference_voltage_4v 
+
+adc_check_data_hvin:
+65a1 680142c7 fetch 2 ,mem_5v_adc_hvin_data 
+65a2 243a65a5 nbranch adc_check_1v_hvin ,blank 
+65a3 58005932 setarg 0x5932 
+65a4 600142c7 store 2 ,mem_5v_adc_hvin_data 
+
+adc_check_1v_hvin:
+65a5 680142c1 fetch 2 ,mem_1v_adc_hvin_data 
+65a6 243a65a9 nbranch set_vdd_reference_voltage_4v ,blank 
+65a7 58004323 setarg 0x4323 
+65a8 600142c1 store 2 ,mem_1v_adc_hvin_data 
+
+set_vdd_reference_voltage_4v:
+65a9 58000190 setarg 400 
+65aa 600142cd store 2 ,mem_reference_voltage 
+65ab 20600000 rtn 
+
+adc_init_data_io:
+65ac 680942cb fetcht 2 ,mem_otp_adc_flag 
+65ad 5800aa55 setarg otp_adc_flag 
+65ae 98467c00 isub temp ,null 
+65af 2022e5b5 branch adc_check_data_io ,zero 
+65b0 58006946 setarg 0x6946 
+65b1 600142c5 store 2 ,mem_1v_adc_io_data 
+65b2 58005377 setarg 0x5377 
+65b3 600142bf store 2 ,mem_0_5_adc_io_data 
+65b4 202065bd branch set_vdd_reference_voltage_0_5v 
+
+adc_check_data_io:
+65b5 680142c5 fetch 2 ,mem_1v_adc_io_data 
+65b6 243a65b9 nbranch adc_check_0_5v_io ,blank 
+65b7 58006946 setarg 0x6946 
+65b8 600142c5 store 2 ,mem_1v_adc_io_data 
+
+adc_check_0_5v_io:
+65b9 680142bf fetch 2 ,mem_0_5_adc_io_data 
+65ba 243a65bd nbranch set_vdd_reference_voltage_0_5v ,blank 
+65bb 58005377 setarg 0x5377 
+65bc 600142bf store 2 ,mem_0_5_adc_io_data 
+
+set_vdd_reference_voltage_0_5v:
+65bd 58000032 setarg 50 
+65be 600142cd store 2 ,mem_reference_voltage 
+65bf 20600000 rtn 
+
+adc_set_mode:
+65c0 6800c2cf fetch 1 ,mem_adc_config_flag 
+65c1 c28065c5 bbit1 adc_config_vinlpm ,adc_check_vinlpm 
+65c2 c280e5c7 bbit1 adc_config_hvin ,adc_check_hvin 
+65c3 c28165c9 bbit1 adc_config_gpio ,adc_check_gpio 
+65c4 20600000 rtn 
+
+adc_check_vinlpm:
+65c5 708971bf hjam 0xbf ,rf_adc_mode 
+65c6 202065cd branch read_adc 
+
+adc_check_hvin:
+65c7 708971af hjam 0xaf ,rf_adc_mode 
+65c8 202065cd branch read_adc 
+
+adc_check_gpio:
+65c9 7089718f hjam 0x8f ,rf_adc_mode 
+65ca 6800c2d0 fetch 1 ,mem_adc_channel 
+65cb 60108973 hstore 1 ,rf_adc_ch 
+65cc 202065cd branch read_adc 
+
+read_adc:
+65cd 79200025 set1 mark_ext_patch ,mark 
+65ce 44cbc032 bpatch patch32_7 ,mem_patch32 
+65cf 68108053 hfetch 1 ,core_uart_baud + 1 
+65d0 79207e07 set1 7 ,pdata 
+65d1 60108053 hstore 1 ,core_uart_baud + 1 
+65d2 68108973 hfetch 1 ,rf_adc_ch 
+65d3 1fe1fe30 or_into 0x30 ,pdata 
+65d4 60108973 hstore 1 ,rf_adc_ch 
+65d5 7089067c hjam 0x7c ,rfen_adc 
+65d6 708972aa hjam 0xaa ,rf_adc_gc 
+65d7 20001388 nop 5000 
+65d8 68190150 hfetcht 2 ,core_adc_sum 
+65d9 68108053 hfetch 1 ,core_uart_baud + 1 
+65da 793ffe07 set0 7 ,pdata 
+65db 60108053 hstore 1 ,core_uart_baud + 1 
+65dc 600942d1 storet 2 ,mem_adc_current_value 
+65dd 20600000 rtn 
+
+vdd_calculate_by_mode:
+65de 79200025 set1 mark_ext_patch ,mark 
+65df 44cc4033 bpatch patch33_0 ,mem_patch33 
+65e0 6800c2cf fetch 1 ,mem_adc_config_flag 
+65e1 c28065e5 bbit1 adc_config_vinlpm ,vdd_calculate_vinlpm 
+65e2 c280e5e9 bbit1 adc_config_hvin ,vdd_calculate_hvin 
+65e3 c28165ed bbit1 adc_config_gpio ,vdd_calculate_io 
+65e4 20600000 rtn 
+
+vdd_calculate_vinlpm:
+65e5 680142c9 fetch 2 ,mem_3v_adc_vinlpm_data 
+65e6 680942c3 fetcht 2 ,mem_2v_adc_vinlpm_data 
+65e7 da6000c8 arg 200 ,regc 
+65e8 202065f1 branch vdd_calculate 
+
+vdd_calculate_hvin:
+65e9 680142c7 fetch 2 ,mem_5v_adc_hvin_data 
+65ea 680942c1 fetcht 2 ,mem_1v_adc_hvin_data 
+65eb da600064 arg 100 ,regc 
+65ec 202065f1 branch vdd_calculate 
+
+vdd_calculate_io:
+65ed 680142c5 fetch 2 ,mem_1v_adc_io_data 
+65ee 680942bf fetcht 2 ,mem_0_5_adc_io_data 
+65ef da600032 arg 50 ,regc 
+65f0 202065f1 branch vdd_calculate 
+
+vdd_calculate:
+65f1 98462200 isub temp ,rega 
+65f2 680142d1 fetch 2 ,mem_adc_current_value 
+65f3 98467e00 isub temp ,pdata 
+65f4 242165fe nbranch vdd_calculate1 ,positive 
+65f5 680942cd fetcht 2 ,mem_reference_voltage 
+65f6 984fa400 imul32 temp ,regb 
+65f7 1a627e00 copy regc ,pdata 
+65f8 9a2ffe00 imul32 rega ,pdata 
+65f9 9a40fe00 iadd regb ,pdata 
+
+vdd_calculate2:
+65fa 9a26fc00 idiv rega 
+65fb 20407f53 call wait_div_end 
+65fc 1807fe00 quotient pdata 
+65fd 20600000 rtn 
+
+vdd_calculate1:
+65fe 18427e00 copy temp ,pdata 
+65ff 680942d1 fetcht 2 ,mem_adc_current_value 
+6600 98467e00 isub temp ,pdata 
+6601 680942cd fetcht 2 ,mem_reference_voltage 
+6602 984fa400 imul32 temp ,regb 
+6603 1a627e00 copy regc ,pdata 
+6604 9a2ffe00 imul32 rega ,pdata 
+6605 9a467e00 isub regb ,pdata 
+6606 202065fa branch vdd_calculate2 
+
+rfcomm_init:
+6607 20758000 rtn wake 
+6608 7045ff00 jam 0 ,mem_rfcomm_send_more_pkt 
+6609 70041c03 jam bits9600 ,memremoterpnbitrate 
+660a 70041d03 jam databits8 ,memremoteprndatabits 
+660b 70042111 jam 0x11 ,memremoteprnxon 
+660c 70042213 jam 0x13 ,memremoteprnxoff 
+660d 58000000 setarg 0 
+660e 6001841e store 3 ,memremoteprnstopbit 
+660f 6000c2e4 store 1 ,mem_spp_state 
+6610 70470a00 jam 0 ,memui_reconnect_mode 
+
+rfcomm_init_spp:
+6611 79200025 set1 mark_ext_patch ,mark 
+6612 44ccc033 bpatch patch33_1 ,mem_patch33 
+6613 58000000 setarg 0 
+6614 6000c2e4 store 1 ,mem_spp_state 
+6615 6000c5fc store 1 ,mem_remote_spp_channel 
+6616 6000c5f5 store 1 ,mem_pn_dlci 
+6617 6800c603 fetch 1 ,mem_credit_flag 
+6618 c000e61b beq credit_enable ,rfcomm_init_spp_with_credit 
+6619 70460150 jam 0x50 ,mem_credit_given 
+661a 20600000 rtn 
+
+rfcomm_init_spp_with_credit:
+661b 70460100 jam 0x00 ,mem_credit_given 
+661c 20600000 rtn 
+
+set_cr_bit:
+661d 18418402 or_into 0x02 ,temp 
+661e 20600000 rtn 
+
+rfcomm_calculate_fcs_sabm:
+661f 18427e00 copy temp ,pdata 
+6620 1fedfe00 reverse pdata ,pdata 
+6621 6000c5fa store 1 ,memfcstemp3 
+6622 18007e3f force ini_tx_sabm ,pdata 
+6623 1fedfe00 reverse pdata ,pdata 
+6624 6000c5f9 store 1 ,memfcstemp2 
+6625 18007e01 force 0x01 ,pdata 
+6626 1fedfe00 reverse pdata ,pdata 
+6627 6000c5f8 store 1 ,memfcstemp1 
+6628 20406655 call caculate_fcs 
+6629 18427e00 copy temp ,pdata 
+662a 20600000 rtn 
+
+rfcomm_calculate_fcs_ua:
+662b 1fedfe00 reverse pdata ,pdata 
+662c 6000c5fa store 1 ,memfcstemp3 
+662d 18007e73 force rsp_tx_ua ,pdata 
+662e 1fedfe00 reverse pdata ,pdata 
+662f 6000c5f9 store 1 ,memfcstemp2 
+6630 18007e01 force 0x01 ,pdata 
+6631 1fedfe00 reverse pdata ,pdata 
+6632 6000c5f8 store 1 ,memfcstemp1 
+6633 20206655 branch caculate_fcs 
+
+rfcomm_calculate_fcs_dlci0:
+6634 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+6635 203a6638 branch rfcomm_calculate_fcs_dlci0_res ,blank 
+6636 58000070 setarg 0x70 
+6637 20600000 rtn 
+
+rfcomm_calculate_fcs_dlci0_res:
+6638 580000aa setarg 0xaa 
+6639 20600000 rtn 
+
+rfcomm_save_fcs_uih:
+663a 1fedfe00 reverse pdata ,pdata 
+663b 6000c5fa store 1 ,memfcstemp3 
+663c 18007eef force rsp_rx_uih ,pdata 
+663d 20406649 call caculate_uihdata_fcs 
+663e 68090426 fetcht 2 ,mem_contw_temp 
+663f 18420a00 copy temp ,contw 
+6640 e0a08000 istore 1 ,contw 
+6641 18a20400 copy contw ,temp 
+6642 60090426 storet 2 ,mem_contw_temp 
+6643 18007eff force rsp_rx_uih_wdata ,pdata 
+6644 20406649 call caculate_uihdata_fcs 
+6645 68090426 fetcht 2 ,mem_contw_temp 
+6646 18420a00 copy temp ,contw 
+6647 e0a08000 istore 1 ,contw 
+6648 20600000 rtn 
+
+caculate_uihdata_fcs:
+6649 1fedfe00 reverse pdata ,pdata 
+664a 6000c5f9 store 1 ,memfcstemp2 
+664b 680145f9 fetch 2 ,memfcstemp2 
+664c 1fed7e00 lshift8 pdata ,pdata 
+664d 60018423 store 3 ,mem_mod2div_temp 
+664e da200107 arg 0x107 ,rega 
+664f da40000f arg 0xf ,regb 
+6650 20406662 call mod2div 
+6651 1fe2fed7 xor_into 0xd7 ,pdata 
+6652 1fe47e00 invert pdata ,pdata 
+6653 1fedfe00 reverse pdata ,pdata 
+6654 20600000 rtn 
+
+caculate_fcs:
+6655 6801c5f8 fetch 3 ,memfcstemp1 
+6656 60018423 store 3 ,mem_mod2div_temp 
+6657 da200107 arg 0x107 ,rega 
+6658 da40000f arg 0xf ,regb 
+6659 20406662 call mod2div 
+665a 1fed7e00 lshift8 pdata ,pdata 
+665b da400007 arg 0x7 ,regb 
+665c 20406662 call mod2div 
+665d 1fe2fe2b xor_into 0x2b ,pdata 
+665e 1fe47e00 invert pdata ,pdata 
+665f 1fedfe00 reverse pdata ,pdata 
+6660 1fe20400 copy pdata ,temp 
+6661 20600000 rtn 
+
+mod2div:
+6662 da600000 arg 0 ,regc 
+6663 1a427200 copy regb ,loopcnt 
+6664 20407e43 call right_shift_n 
+6665 1fe20400 icopy temp 
+
+mod2div_loop:
+6666 18427e00 copy temp ,pdata 
+6667 1a63a600 lshift regc ,regc 
+6668 c304666b bbit0 8 ,mod2div_not_enough_reduction 
+6669 9a228400 ixor rega ,temp 
+666a 1a60a601 increase 1 ,regc 
+
+mod2div_not_enough_reduction:
+666b 18438400 lshift temp ,temp 
+666c 68018423 fetch 3 ,mem_mod2div_temp 
+666d 1a40a5ff increase -1 ,regb 
+666e 2a41feff compare 0xff ,regb ,0xff 
+666f 2020e675 branch mod2div_end ,true 
+6670 1a427200 copy regb ,loopcnt 
+6671 20407e43 call right_shift_n 
+6672 2feffe00 isolate1 0 ,pdata 
+6673 79208400 setflag true ,0 ,temp 
+6674 20206666 branch mod2div_loop 
+
+mod2div_end:
+6675 18437e00 rshift temp ,pdata 
+6676 20600000 rtn 
+
+get_rfcomm_snd_adss:
+6677 6808c5f5 fetcht 1 ,mem_pn_dlci 
+
+dlci_to_address_cmd:
+6678 184b8400 lshift2 temp ,temp 
+6679 79200400 set1 rfcomm_address_ext_len ,temp 
+667a 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+667b 245a661d ncall set_cr_bit ,blank 
+667c 6008843c storet 1 ,mem_rfcomm_send_adss 
+667d 20600000 rtn 
+
+channel_to_dlci:
+667e 18438400 lshift temp ,temp 
+667f 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+6680 793a0400 setflag blank ,0 ,temp 
+6681 20600000 rtn 
+
+rfcomm_rx_process_dlci0_sabm:
+6682 6808842b fetcht 1 ,mem_current_channel 
+6683 70042dd7 jam 0xd7 ,mem_current_fcs 
+6684 204067c1 call rfcomm_send_ua 
+6685 6800c2e1 fetch 1 ,mem_rfcomm_state 
+6686 79207e06 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+6687 79207e07 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+6688 6000c2e1 store 1 ,mem_rfcomm_state 
+6689 7045fb00 jam 0 ,mem_rfcomm_initiator 
+668a 202067a1 branch rfcomm_rx_process_end 
+
+rfcomm_rx_process_dlci0_ua:
+668b 6800c2e1 fetch 1 ,mem_rfcomm_state 
+668c 79207e07 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+668d 6000c2e1 store 1 ,mem_rfcomm_state 
+668e 202067a1 branch rfcomm_rx_process_end 
+
+rfcomm_rx_process:
+668f 79200025 set1 mark_ext_patch ,mark 
+6690 44cd4033 bpatch patch33_2 ,mem_patch33 
+6691 6800c70a fetch 1 ,memui_reconnect_mode 
+6692 c0006694 beq no_reconnection ,rfcomm_rx_process_remote_page 
+6693 20206755 branch rfcomm_rx_process_reconn 
+
+rfcomm_rx_process_remote_page:
+6694 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+6695 1fe20c00 copy pdata ,contr 
+6696 204066bf call get_rfcomm_head_struct 
+6697 6800842b fetch 1 ,mem_current_channel 
+6698 c000669a beq 0 ,parse_dlci0_rp 
+6699 20206720 branch parse_uih_rp 
+
+parse_dlci0_rp:
+669a 79200025 set1 mark_ext_patch ,mark 
+669b 44cdc033 bpatch patch33_3 ,mem_patch33 
+669c 6800842c fetch 1 ,mem_current_frame_type 
+669d c01fe682 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+669e c039e68b beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+669f c077e6a2 beq rfcomm_frame_type_uih ,parse_dlci0_rp_uih 
+66a0 c029e74d beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn_send_event 
+66a1 20600000 rtn 
+
+parse_dlci0_rp_uih:
+66a2 68010430 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+66a3 1fe20c00 copy pdata ,contr 
+66a4 204066ca call get_rfcomm_uih_head_struct 
+66a5 68008432 fetch 1 ,mem_uih_cmd_type 
+66a6 c020e6ac beq uih_param_neg_cmd ,parse_dlci0_rp_uih_pn_cmd 
+66a7 c02066b4 beq uih_param_neg_res ,parse_dlci0_rp_uih_pn_res 
+66a8 c038e6ed beq uih_modem_status_cmd ,parse_dlci0_rp_uih_ms_cmd 
+66a9 c03866f9 beq uih_modem_status_res ,parse_dlci0_rp_uih_ms_res 
+66aa c024e704 beq uih_param_cmd_remove_port ,parse_dlci0_rp_uih_cmd_port 
+66ab 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_pn_cmd:
+66ac 204066b6 call parse_dlci0_rp_uih_pn_res_common 
+66ad 202066ae branch parse_dlci0_rp_uih_pn_cmd_spp 
+
+parse_dlci0_rp_uih_pn_cmd_spp:
+66ae 6800c2e4 fetch 1 ,mem_spp_state 
+66af 79207e00 set1 rfcomm_channel_state_pn_cmd ,pdata 
+66b0 79207e01 set1 rfcomm_channel_state_pn_res ,pdata 
+66b1 6000c2e4 store 1 ,mem_spp_state 
+66b2 204067ed call rfcomm_send_param_neg_res 
+66b3 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_pn_res:
+66b4 204066b6 call parse_dlci0_rp_uih_pn_res_common 
+66b5 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_pn_res_common:
+66b6 204066d2 call get_param_payload_ptr 
+66b7 202066de branch get_rfcomm_prarmer_negotiation 
+
+get_rfcomm_param_modem_status:
+66b8 204066d2 call get_param_payload_ptr 
+66b9 e8c08000 ifetch 1 ,contr 
+66ba 1fe97e00 rshift3 pdata ,pdata 
+66bb 6000c602 store 1 ,mem_ms_channel 
+66bc e8c08000 ifetch 1 ,contr 
+66bd 60008437 store 1 ,mem_ms_param 
+66be 20600000 rtn 
+
+get_rfcomm_head_struct:
+66bf e8c08000 ifetch 1 ,contr 
+66c0 6000842a store 1 ,mem_current_adss 
+66c1 1fe97e00 rshift3 pdata ,pdata 
+66c2 6000842b store 1 ,mem_current_channel 
+66c3 e8c08000 ifetch 1 ,contr 
+66c4 6000842c store 1 ,mem_current_frame_type 
+
+get_rfcomm_current_length:
+66c5 204066d5 call get_rfcomm_length_common 
+66c6 6009042e storet 2 ,mem_current_length 
+66c7 18c27e00 copy contr ,pdata 
+66c8 60010430 store 2 ,mem_rfcomm_uih_payload_ptr 
+66c9 20600000 rtn 
+
+get_rfcomm_uih_head_struct:
+66ca e8c08000 ifetch 1 ,contr 
+66cb 1fe37e00 rshift pdata ,pdata 
+66cc 60008432 store 1 ,mem_uih_cmd_type 
+66cd 204066d5 call get_rfcomm_length_common 
+66ce 60090433 storet 2 ,mem_uih_length 
+66cf 18c27e00 copy contr ,pdata 
+66d0 60010435 store 2 ,mem_param_payload_ptr 
+66d1 20600000 rtn 
+
+get_param_payload_ptr:
+66d2 68010435 fetch 2 ,mem_param_payload_ptr 
+66d3 1fe20c00 copy pdata ,contr 
+66d4 20600000 rtn 
+
+get_rfcomm_length_common:
+66d5 e8c08000 ifetch 1 ,contr 
+66d6 1fe20400 copy pdata ,temp 
+66d7 18430400 rshift temp ,temp 
+66d8 c3800000 rtnbit1 0 
+66d9 e8c08000 ifetch 1 ,contr 
+66da 1fe9fe00 lshift3 pdata ,pdata 
+66db 1ff27e00 lshift4 pdata ,pdata 
+66dc 98408400 iadd temp ,temp 
+66dd 20600000 rtn 
+
+get_rfcomm_prarmer_negotiation:
+66de e8c08000 ifetch 1 ,contr 
+66df 6000c5f5 store 1 ,mem_pn_dlci 
+66e0 e8c08000 ifetch 1 ,contr 
+66e1 60008438 store 1 ,mem_pn_credit_flow_type_info 
+66e2 e8c08000 ifetch 1 ,contr 
+66e3 60008439 store 1 ,mem_pn_priority 
+66e4 e8c08000 ifetch 1 ,contr 
+66e5 6000843a store 1 ,mem_pn_acknowledg_timer 
+66e6 e8c10000 ifetch 2 ,contr 
+66e7 600145f6 store 2 ,mem_pn_max_frame_size 
+66e8 e8c08000 ifetch 1 ,contr 
+66e9 6000843b store 1 ,mem_pn_max_retrans 
+66ea e8c08000 ifetch 1 ,contr 
+66eb 6000c600 store 1 ,mem_remote_credits 
+66ec 20600000 rtn 
+
+parse_dlci0_rp_uih_ms_cmd:
+66ed 204066b8 call get_rfcomm_param_modem_status 
+66ee 202066ef branch parse_dlci0_rp_uih_ms_cmd_spp 
+
+parse_dlci0_rp_uih_ms_cmd_spp:
+66ef 6800c2e4 fetch 1 ,mem_spp_state 
+66f0 79207e05 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+66f1 79207e06 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+66f2 6000c2e4 store 1 ,mem_spp_state 
+66f3 6808c5f5 fetcht 1 ,mem_pn_dlci 
+66f4 184b8400 lshift2 temp ,temp 
+66f5 18418403 or_into 3 ,temp 
+66f6 20406820 call rfcomm_send_modem_status_res 
+66f7 7045ff03 jam more_pkt_msc_cmd_spp ,mem_rfcomm_send_more_pkt 
+66f8 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_ms_res:
+66f9 7009bd08 jam bt_evt_spp_connected ,mem_fifo_temp 
+66fa 20407d86 call ui_ipc_send_event 
+66fb 204066b8 call get_rfcomm_param_modem_status 
+66fc 6800c602 fetch 1 ,mem_ms_channel 
+66fd 1fe67c01 sub pdata ,1 ,null 
+66fe 2022e700 branch parse_dlci0_rp_uih_ms_res_spp ,zero 
+66ff 20203b31 branch assert 
+
+parse_dlci0_rp_uih_ms_res_spp:
+6700 6800c2e4 fetch 1 ,mem_spp_state 
+6701 79207e07 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+6702 6000c2e4 store 1 ,mem_spp_state 
+6703 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_cmd_port:
+6704 204066d2 call get_param_payload_ptr 
+6705 e8c08000 ifetch 1 ,contr 
+6706 600089e1 store 1 ,mem_rpn_dlci 
+6707 2040487a call l2cap_malloc_rfcomm_channel 
+6708 20404889 call l2cap_get_rfcomm_tx_buff 
+6709 5800000e setarg 0x000e 
+670a e0a10000 istore 2 ,contw 
+670b 680142da fetch 2 ,mem_rfcomm_remote_cid 
+670c e0a10000 istore 2 ,contw 
+670d 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+670e 1fe3fe00 lshift pdata ,pdata 
+670f 79207e00 set1 0 ,pdata 
+6710 e0a08000 istore 1 ,contw 
+6711 79200025 set1 mark_ext_patch ,mark 
+6712 44ce4033 bpatch patch33_4 ,mem_patch33 
+6713 580015ef setarg 0x15ef 
+6714 e0a10000 istore 2 ,contw 
+6715 58001191 setarg 0x1191 
+6716 e0a10000 istore 2 ,contw 
+6717 680089e1 fetch 1 ,mem_rpn_dlci 
+6718 e0a08000 istore 1 ,contw 
+6719 58000007 setarg 0x000007 
+671a e0a28000 istore 5 ,contw 
+671b 58000001 setarg 0x01 
+671c e0a10000 istore 2 ,contw 
+671d 20406634 call rfcomm_calculate_fcs_dlci0 
+671e e0a08000 istore 1 ,contw 
+671f 20600000 rtn 
+
+parse_uih_rp:
+6720 20206721 branch parse_uih_rp_spp 
+
+parse_uih_rp_spp:
+6721 79200025 set1 mark_ext_patch ,mark 
+6722 44cec033 bpatch patch33_5 ,mem_patch33 
+6723 6800842c fetch 1 ,mem_current_frame_type 
+6724 c039e72a beq rfcomm_frame_type_ua ,parse_uih_rp_spp_ua 
+6725 c01fe72e beq rfcomm_frame_type_sabm ,parse_uih_rp_spp_sabm 
+6726 c077e748 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+6727 c07fe740 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+6728 c029e74f beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn 
+6729 20600000 rtn 
+
+parse_uih_rp_spp_ua:
+672a 6800c2e4 fetch 1 ,mem_spp_state 
+672b 79207e03 set1 rfcomm_channel_state_ua ,pdata 
+672c 6000c2e4 store 1 ,mem_spp_state 
+672d 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_rp_spp_sabm:
+672e 6800c2e4 fetch 1 ,mem_spp_state 
+672f 79207e03 set1 rfcomm_channel_state_ua ,pdata 
+6730 79207e02 set1 rfcomm_channel_state_sabm ,pdata 
+6731 6000c2e4 store 1 ,mem_spp_state 
+6732 6800842a fetch 1 ,mem_current_adss 
+6733 2040662b call rfcomm_calculate_fcs_ua 
+6734 6000842d store 1 ,mem_current_fcs 
+6735 204067c1 call rfcomm_send_ua 
+6736 6800842a fetch 1 ,mem_current_adss 
+6737 1feb7e00 rshift2 pdata ,pdata 
+6738 6000c5f5 store 1 ,mem_pn_dlci 
+6739 1febfe00 lshift2 pdata ,pdata 
+673a 793ffe01 set0 rfcomm_address_cr ,pdata 
+673b 79207e00 set1 rfcomm_address_ext_len ,pdata 
+673c d84045fd arg mem_hiufcs_spp ,temp 
+673d 60090426 storet 2 ,mem_contw_temp 
+673e 2040663a call rfcomm_save_fcs_uih 
+673f 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_spp_uih_credits:
+6740 68010430 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+6741 1fe20c00 copy pdata ,contr 
+6742 1fe0fe01 increase 1 ,pdata 
+6743 60010430 store 2 ,mem_rfcomm_uih_payload_ptr 
+6744 e8c08000 ifetch 1 ,contr 
+6745 6808c600 fetcht 1 ,mem_remote_credits 
+6746 9840fe00 iadd temp ,pdata 
+6747 6000c600 store 1 ,mem_remote_credits 
+
+parse_uih_spp_uih:
+6748 20406853 call rfcomm_increase_credit_given 
+
+parse_uih_spp_uih_cont:
+6749 20406677 call get_rfcomm_snd_adss 
+674a 20406838 call rfcomm_send_uih_without_payload 
+674b 2040685d call spp_process_rx_data 
+674c 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_rp_spp_disconn_send_event:
+674d 7009bd09 jam bt_evt_spp_disconnected ,mem_fifo_temp 
+674e 20407d86 call ui_ipc_send_event 
+
+parse_uih_rp_spp_disconn:
+674f 20406611 call rfcomm_init_spp 
+6750 6800842a fetch 1 ,mem_current_adss 
+6751 2040662b call rfcomm_calculate_fcs_ua 
+6752 6000842d store 1 ,mem_current_fcs 
+6753 204067c1 call rfcomm_send_ua 
+6754 202067a1 branch rfcomm_rx_process_end 
+
+rfcomm_rx_process_reconn:
+6755 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+6756 1fe20c00 copy pdata ,contr 
+6757 204066bf call get_rfcomm_head_struct 
+6758 6800842b fetch 1 ,mem_current_channel 
+6759 c000675b beq 0 ,parse_dlci0_reconn 
+675a 20206790 branch parse_uih_reconn 
+
+parse_dlci0_reconn:
+675b 79200025 set1 mark_ext_patch ,mark 
+675c 44cf4033 bpatch patch33_6 ,mem_patch33 
+675d 6800842c fetch 1 ,mem_current_frame_type 
+675e c01fe682 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+675f c039e68b beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+6760 c077e762 beq rfcomm_frame_type_uih ,parse_dlci0_reconn_uih 
+6761 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih:
+6762 68010430 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+6763 1fe20c00 copy pdata ,contr 
+6764 204066ca call get_rfcomm_uih_head_struct 
+6765 68008432 fetch 1 ,mem_uih_cmd_type 
+6766 c020e76b beq uih_param_neg_cmd ,parse_dlci0_reconn_uih_pn_cmd 
+6767 c020676b beq uih_param_neg_res ,parse_dlci0_reconn_uih_pn_cmd 
+6768 c038e776 beq uih_modem_status_cmd ,parse_dlci0_reconn_uih_ms_cmd 
+6769 c0386786 beq uih_modem_status_res ,parse_dlci0_reconn_uih_ms_res 
+676a 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_pn_cmd:
+676b 204066b6 call parse_dlci0_rp_uih_pn_res_common 
+676c 6800c5f5 fetch 1 ,mem_pn_dlci 
+676d 1fe37e00 rshift pdata ,pdata 
+676e 6808c5fc fetcht 1 ,mem_remote_spp_channel 
+676f 98467c00 isub temp ,null 
+6770 2022e772 branch parse_dlci0_reconn_uih_pn_cmd_spp ,zero 
+6771 20203b31 branch assert 
+
+parse_dlci0_reconn_uih_pn_cmd_spp:
+6772 6800c2e4 fetch 1 ,mem_spp_state 
+6773 79207e01 set1 rfcomm_channel_state_pn_res ,pdata 
+6774 6000c2e4 store 1 ,mem_spp_state 
+6775 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_ms_cmd:
+6776 204066b8 call get_rfcomm_param_modem_status 
+6777 6800c602 fetch 1 ,mem_ms_channel 
+6778 6808c5fc fetcht 1 ,mem_remote_spp_channel 
+6779 98467c00 isub temp ,null 
+677a 2022e77d branch parse_dlci0_reconn_uih_ms_cmd_spp ,zero 
+677b 20203b31 branch assert 
+677c 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_ms_cmd_spp:
+677d 6800c2e4 fetch 1 ,mem_spp_state 
+677e 79207e05 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+677f 79207e06 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+6780 6000c2e4 store 1 ,mem_spp_state 
+6781 6808c5f5 fetcht 1 ,mem_pn_dlci 
+6782 184b8400 lshift2 temp ,temp 
+6783 18418403 or_into 3 ,temp 
+6784 20406820 call rfcomm_send_modem_status_res 
+6785 202067a1 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_ms_res:
+6786 204066b8 call get_rfcomm_param_modem_status 
+6787 6800c602 fetch 1 ,mem_ms_channel 
+6788 6808c5fc fetcht 1 ,mem_remote_spp_channel 
+6789 98467c00 isub temp ,null 
+678a 2022e78c branch parse_dlci0_reconn_uih_ms_res_spp ,zero 
+678b 20203b31 branch assert 
+
+parse_dlci0_reconn_uih_ms_res_spp:
+678c 6800c2e4 fetch 1 ,mem_spp_state 
+678d 79207e07 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+678e 6000c2e4 store 1 ,mem_spp_state 
+678f 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_reconn:
+6790 6800842b fetch 1 ,mem_current_channel 
+6791 6808c5fc fetcht 1 ,mem_remote_spp_channel 
+6792 98467c00 isub temp ,null 
+6793 2022e796 branch parse_uih_reconn_spp ,zero 
+6794 20203b31 branch assert 
+6795 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_reconn_spp:
+6796 6800842c fetch 1 ,mem_current_frame_type 
+6797 c039e79b beq rfcomm_frame_type_ua ,parse_uih_reconn_spp_ua 
+6798 c077e748 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+6799 c07fe740 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+679a c029e7a0 beq rfcomm_frame_type_disconn ,parse_uih_reconn_spp_disconn 
+
+parse_uih_reconn_spp_ua:
+679b 6800c2e4 fetch 1 ,mem_spp_state 
+679c 79207e03 set1 rfcomm_channel_state_ua ,pdata 
+679d 6000c2e4 store 1 ,mem_spp_state 
+679e 202067a1 branch rfcomm_rx_process_end 
+
+parse_uih_reconn_spp_sabm:
+679f 2020679f branch parse_uih_reconn_spp_sabm 
+
+parse_uih_reconn_spp_disconn:
+67a0 2020674f branch parse_uih_rp_spp_disconn 
+
+rfcomm_rx_process_end:
+67a1 20600000 rtn 
+
+rfcomm_send_more_pkt:
+67a2 6800c5ff fetch 1 ,mem_rfcomm_send_more_pkt 
+67a3 207a0000 rtn blank 
+67a4 c001e7a6 beq more_pkt_msc_cmd_spp ,rfcomm_send_more_pkt_msc_cmd_spp 
+67a5 20203b31 branch assert 
+
+rfcomm_send_more_pkt_msc_cmd_spp:
+67a6 7045ff00 jam 0 ,mem_rfcomm_send_more_pkt 
+67a7 2040487a call l2cap_malloc_rfcomm_channel 
+67a8 d8400001 arg spp_slave_channel ,temp 
+67a9 6808c5f5 fetcht 1 ,mem_pn_dlci 
+67aa 184b8400 lshift2 temp ,temp 
+
+rfcomm_send_more_pkt_msc_cmd_spp0:
+67ab 18418403 or_into 0x03 ,temp 
+67ac da2000aa arg 0xaa ,rega 
+67ad 2040680a call rfcomm_send_modem_status_cmd 
+67ae 20404889 call l2cap_get_rfcomm_tx_buff 
+67af 18a20c00 copy contw ,contr 
+67b0 e8c10000 ifetch 2 ,contr 
+67b1 203a3b31 branch assert ,blank 
+67b2 20600000 rtn 
+
+rfcomm_send_sabm:
+67b3 20404889 call l2cap_get_rfcomm_tx_buff 
+67b4 58000004 setarg 0x0004 
+67b5 e0a10000 istore 2 ,contw 
+67b6 680142da fetch 2 ,mem_rfcomm_remote_cid 
+67b7 e0a10000 istore 2 ,contw 
+67b8 6800842a fetch 1 ,mem_current_adss 
+67b9 e0a08000 istore 1 ,contw 
+67ba 79200025 set1 mark_ext_patch ,mark 
+67bb 44cfc033 bpatch patch33_7 ,mem_patch33 
+67bc 5800013f setarg 0x013f 
+67bd e0a10000 istore 2 ,contw 
+67be 6800842d fetch 1 ,mem_current_fcs 
+67bf e0a08000 istore 1 ,contw 
+67c0 20600000 rtn 
+
+rfcomm_send_ua:
+67c1 2040487a call l2cap_malloc_rfcomm_channel 
+67c2 20404889 call l2cap_get_rfcomm_tx_buff 
+67c3 58000004 setarg 0x0004 
+67c4 e0a10000 istore 2 ,contw 
+67c5 680142da fetch 2 ,mem_rfcomm_remote_cid 
+67c6 e0a10000 istore 2 ,contw 
+67c7 6800842a fetch 1 ,mem_current_adss 
+67c8 e0a08000 istore 1 ,contw 
+67c9 79200025 set1 mark_ext_patch ,mark 
+67ca 44d04034 bpatch patch34_0 ,mem_patch34 
+67cb 58000173 setarg 0x0173 
+67cc e0a10000 istore 2 ,contw 
+67cd 6800842d fetch 1 ,mem_current_fcs 
+67ce e0a08000 istore 1 ,contw 
+67cf 20600000 rtn 
+
+rfcomm_send_param_neg_cmd:
+67d0 20404889 call l2cap_get_rfcomm_tx_buff 
+67d1 5800000e setarg 0x000e 
+67d2 e0a10000 istore 2 ,contw 
+67d3 680142da fetch 2 ,mem_rfcomm_remote_cid 
+67d4 e0a10000 istore 2 ,contw 
+67d5 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+67d6 1fe3fe00 lshift pdata ,pdata 
+67d7 79207e00 set1 0 ,pdata 
+67d8 e0a08000 istore 1 ,contw 
+67d9 79200025 set1 mark_ext_patch ,mark 
+67da 44d0c034 bpatch patch34_1 ,mem_patch34 
+67db 580015ef setarg 0x15ef 
+67dc e0a10000 istore 2 ,contw 
+67dd 58001183 setarg 0x1183 
+67de e0a10000 istore 2 ,contw 
+67df 18427e00 copy temp ,pdata 
+67e0 e0a08000 istore 1 ,contw 
+67e1 580000f0 setarg 0x0000f0 
+67e2 e0a18000 istore 3 ,contw 
+67e3 5800007f setarg rfcomm_max_frame_size 
+67e4 e0a10000 istore 2 ,contw 
+67e5 58000000 setarg 0 
+67e6 e0a08000 istore 1 ,contw 
+67e7 58000001 setarg 0x01 
+67e8 e0a08000 istore 1 ,contw 
+67e9 20406634 call rfcomm_calculate_fcs_dlci0 
+67ea e0a08000 istore 1 ,contw 
+67eb 70460110 jam 0x10 ,mem_credit_given 
+67ec 20600000 rtn 
+
+rfcomm_send_param_neg_res:
+67ed 2040487a call l2cap_malloc_rfcomm_channel 
+67ee 20404889 call l2cap_get_rfcomm_tx_buff 
+67ef 5800000e setarg 0x000e 
+67f0 e0a10000 istore 2 ,contw 
+67f1 680142da fetch 2 ,mem_rfcomm_remote_cid 
+67f2 e0a10000 istore 2 ,contw 
+67f3 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+67f4 1fe3fe00 lshift pdata ,pdata 
+67f5 79207e00 set1 0 ,pdata 
+67f6 e0a08000 istore 1 ,contw 
+67f7 79200025 set1 mark_ext_patch ,mark 
+67f8 44d14034 bpatch patch34_2 ,mem_patch34 
+67f9 580015ef setarg 0x15ef 
+67fa e0a10000 istore 2 ,contw 
+67fb 58001181 setarg 0x1181 
+67fc e0a10000 istore 2 ,contw 
+67fd 6800c5f5 fetch 1 ,mem_pn_dlci 
+67fe e0a08000 istore 1 ,contw 
+67ff 580000e0 setarg 0x0000e0 
+6800 e0a18000 istore 3 ,contw 
+6801 68014604 fetch 2 ,mem_rfcomm_max_frame_size 
+6802 e0a10000 istore 2 ,contw 
+6803 58000000 setarg 0x00 
+6804 e0a08000 istore 1 ,contw 
+6805 6800c606 fetch 1 ,mem_rfcomm_credit_init_data 
+6806 e0a08000 istore 1 ,contw 
+6807 20406634 call rfcomm_calculate_fcs_dlci0 
+6808 e0a08000 istore 1 ,contw 
+6809 20600000 rtn 
+
+rfcomm_send_modem_status_cmd:
+680a 20404889 call l2cap_get_rfcomm_tx_buff 
+680b 58000008 setarg 0x0008 
+680c e0a10000 istore 2 ,contw 
+680d 680142da fetch 2 ,mem_rfcomm_remote_cid 
+680e e0a10000 istore 2 ,contw 
+680f 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+6810 1fe3fe00 lshift pdata ,pdata 
+6811 79207e00 set1 0 ,pdata 
+6812 e0a08000 istore 1 ,contw 
+6813 79200025 set1 mark_ext_patch ,mark 
+6814 44d1c034 bpatch patch34_3 ,mem_patch34 
+6815 580009ef setarg 0x09ef 
+6816 e0a10000 istore 2 ,contw 
+6817 580005e3 setarg 0x05e3 
+6818 e0a10000 istore 2 ,contw 
+6819 18427e00 copy temp ,pdata 
+681a e0a08000 istore 1 ,contw 
+681b 5800008d setarg 0x8d 
+681c e0a08000 istore 1 ,contw 
+681d 20406634 call rfcomm_calculate_fcs_dlci0 
+681e e0a08000 istore 1 ,contw 
+681f 20600000 rtn 
+
+rfcomm_send_modem_status_res:
+6820 2040487a call l2cap_malloc_rfcomm_channel 
+6821 20404889 call l2cap_get_rfcomm_tx_buff 
+6822 58000008 setarg 0x0008 
+6823 e0a10000 istore 2 ,contw 
+6824 680142da fetch 2 ,mem_rfcomm_remote_cid 
+6825 e0a10000 istore 2 ,contw 
+6826 18421600 copy temp ,timeup 
+6827 6800c5fb fetch 1 ,mem_rfcomm_initiator 
+6828 1fe3fe00 lshift pdata ,pdata 
+6829 79207e00 set1 0 ,pdata 
+682a e0a08000 istore 1 ,contw 
+682b 79200025 set1 mark_ext_patch ,mark 
+682c 44d24034 bpatch patch34_4 ,mem_patch34 
+682d 580009ef setarg 0x09ef 
+682e e0a10000 istore 2 ,contw 
+682f 580005e1 setarg 0x05e1 
+6830 e0a10000 istore 2 ,contw 
+6831 19627e00 copy timeup ,pdata 
+6832 e0a08000 istore 1 ,contw 
+6833 5800008d setarg 0x8d 
+6834 e0a08000 istore 1 ,contw 
+6835 20406634 call rfcomm_calculate_fcs_dlci0 
+6836 e0a08000 istore 1 ,contw 
+6837 20600000 rtn 
+
+rfcomm_send_uih_without_payload:
+6838 79200025 set1 mark_ext_patch ,mark 
+6839 44d2c034 bpatch patch34_5 ,mem_patch34 
+683a 6800c601 fetch 1 ,mem_credit_given 
+683b 207a0000 rtn blank 
+683c 68110112 hfetch 2 ,core_uart_rxitems 
+683d 247a0000 nrtn blank 
+683e 1a227e00 copy rega ,pdata 
+683f 600089bf store 1 ,mem_pdatatemp + 1 
+6840 600889be storet 1 ,mem_pdatatemp 
+6841 2040480e call l2cap_malloc_is_fifo_full 
+6842 247a0000 nrtn blank 
+6843 2040487a call l2cap_malloc_rfcomm_channel 
+6844 20404889 call l2cap_get_rfcomm_tx_buff 
+6845 58000005 setarg 0x05 
+6846 e0a10000 istore 2 ,contw 
+6847 680142da fetch 2 ,mem_rfcomm_remote_cid 
+6848 e0a10000 istore 2 ,contw 
+6849 6800843c fetch 1 ,mem_rfcomm_send_adss 
+684a e0a08000 istore 1 ,contw 
+684b 580001ff setarg 0x01ff 
+684c e0a10000 istore 2 ,contw 
+684d 6800c601 fetch 1 ,mem_credit_given 
+684e e0a08000 istore 1 ,contw 
+684f 6800c5fe fetch 1 ,mem_hiufcs_spp_wcredits 
+6850 e0a08000 istore 1 ,contw 
+6851 70460100 jam 0 ,mem_credit_given 
+6852 20600000 rtn 
+
+rfcomm_increase_credit_given:
+6853 79200025 set1 mark_ext_patch ,mark 
+6854 44d34034 bpatch patch34_6 ,mem_patch34 
+6855 6800c603 fetch 1 ,mem_credit_flag 
+6856 c1008000 rtneq credit_enable 
+6857 6801042e fetch 2 ,mem_current_length 
+6858 207a0000 rtn blank 
+6859 6800c601 fetch 1 ,mem_credit_given 
+685a 1fe0fe01 increase 1 ,pdata 
+685b 6000c601 store 1 ,mem_credit_given 
+685c 20600000 rtn 
+
+spp_process_rx_data:
+685d 68014607 fetch 2 ,mem_cb_receive_spp_data 
+685e 20207f69 branch callback_func 
+
+spp_tx_rfcomm_packet:
+685f 79200025 set1 mark_ext_patch ,mark 
+6860 44d3c034 bpatch patch34_7 ,mem_patch34 
+6861 6800c600 fetch 1 ,mem_remote_credits 
+6862 207a0000 rtn blank 
+6863 1fe0ffff increase -1 ,pdata 
+6864 6000c600 store 1 ,mem_remote_credits 
+6865 680145f6 fetch 2 ,mem_pn_max_frame_size 
+6866 6809472c fetcht 2 ,mem_current_packet_length 
+6867 98467c00 isub temp ,null 
+6868 2021686a branch ssp_tx_rfcomm_from_uart ,positive 
+6869 6001472c store 2 ,mem_current_packet_length 
+
+ssp_tx_rfcomm_from_uart:
+686a 6800c601 fetch 1 ,mem_credit_given 
+686b 203a6872 branch ssp_tx_rfcomm_from_uart_without_credit ,blank 
+686c 70043f01 jam 1 ,mem_rfcomm_send_offset 
+686d 6800c5fe fetch 1 ,mem_hiufcs_spp_wcredits 
+686e 6000843e store 1 ,mem_rfcomm_send_fcs 
+686f 580000ff setarg rsp_rx_uih_wdata 
+6870 6000843d store 1 ,mem_rfcomm_send_frame_type 
+6871 20206877 branch ssp_tx_rfcomm_from_uart_common 
+
+ssp_tx_rfcomm_from_uart_without_credit:
+6872 70043f00 jam 0 ,mem_rfcomm_send_offset 
+6873 6800c5fd fetch 1 ,mem_hiufcs_spp 
+6874 6000843e store 1 ,mem_rfcomm_send_fcs 
+6875 580000ef setarg rsp_tx_uih 
+6876 6000843d store 1 ,mem_rfcomm_send_frame_type 
+
+ssp_tx_rfcomm_from_uart_common:
+6877 79200025 set1 mark_ext_patch ,mark 
+6878 44d44035 bpatch patch35_0 ,mem_patch35 
+6879 6801472c fetch 2 ,mem_current_packet_length 
+687a 1fe67c7f sub pdata ,127 ,null 
+687b 2021687f branch ssp_tx_rfcomm_from_uart_common0 ,positive 
+687c 6800843f fetch 1 ,mem_rfcomm_send_offset 
+687d 1fe0fe01 increase 1 ,pdata 
+687e 6000843f store 1 ,mem_rfcomm_send_offset 
+
+ssp_tx_rfcomm_from_uart_common0:
+687f 20406677 call get_rfcomm_snd_adss 
+6880 6801472c fetch 2 ,mem_current_packet_length 
+6881 1fe0fe08 increase 8 ,pdata 
+6882 6808843f fetcht 1 ,mem_rfcomm_send_offset 
+6883 9840a200 iadd temp ,rega 
+6884 204047dc call l2cap_malloc 
+6885 600102a0 store 2 ,mem_rfcomm_tx_buff_ptr 
+6886 1fe0fe04 increase 4 ,pdata 
+6887 600102a2 store 2 ,mem_rfcomm_tx_payload_ptr 
+6888 1fe20a00 copy pdata ,contw 
+6889 6800843c fetch 1 ,mem_rfcomm_send_adss 
+688a e0a08000 istore 1 ,contw 
+688b 6800843d fetch 1 ,mem_rfcomm_send_frame_type 
+688c e0a08000 istore 1 ,contw 
+688d 204068aa call ssp_tx_write_length 
+688e 204068bc call ssp_tx_write_given_credit 
+688f 79200025 set1 mark_ext_patch ,mark 
+6890 44d4c035 bpatch patch35_1 ,mem_patch35 
+6891 68014609 fetch 2 ,mem_nl_rx_data_src 
+6892 1fe20600 copy pdata ,contru 
+6893 6801472c fetch 2 ,mem_current_packet_length 
+6894 1fe27200 copy pdata ,loopcnt 
+6895 20406341 call uart_copy_rx_bytes_fast 
+6896 18a20400 copy contw ,temp 
+6897 18627e00 copy contru ,pdata 
+6898 60014609 store 2 ,mem_nl_rx_data_src 
+6899 18420a00 copy temp ,contw 
+689a 6800843e fetch 1 ,mem_rfcomm_send_fcs 
+689b e0a08000 istore 1 ,contw 
+689c 680102a0 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+689d 1fe20a00 copy pdata ,contw 
+689e 6801472c fetch 2 ,mem_current_packet_length 
+689f 6808843f fetcht 1 ,mem_rfcomm_send_offset 
+68a0 9840fe00 iadd temp ,pdata 
+68a1 1fe0fe04 increase 4 ,pdata 
+68a2 e0a10000 istore 2 ,contw 
+68a3 680142da fetch 2 ,mem_rfcomm_remote_cid 
+68a4 e0a10000 istore 2 ,contw 
+68a5 70460100 jam 0 ,mem_credit_given 
+68a6 6801460b fetch 2 ,mem_nl_rx_len_all 
+68a7 c0005b20 beq 0 ,module_hci_command_tx_spp_tx_complete 
+68a8 70041800 jam hci_not_discard_packet ,mem_module_temp_nl_discard_packet 
+68a9 20600000 rtn 
+
+ssp_tx_write_length:
+68aa 79200025 set1 mark_ext_patch ,mark 
+68ab 44d54035 bpatch patch35_2 ,mem_patch35 
+68ac 6801472c fetch 2 ,mem_current_packet_length 
+68ad 1fe67c7f sub pdata ,0x7f ,null 
+68ae 242168b3 nbranch ssp_tx_write_long_packet ,positive 
+68af 1fe3fe00 lshift pdata ,pdata 
+68b0 79207e00 set1 0 ,pdata 
+68b1 e0a08000 istore 1 ,contw 
+68b2 20600000 rtn 
+
+ssp_tx_write_long_packet:
+68b3 6801472c fetch 2 ,mem_current_packet_length 
+68b4 1fe97e00 rshift3 pdata ,pdata 
+68b5 1ff18400 rshift4 pdata ,temp 
+68b6 1fe17e7f and_into 0x7f ,pdata 
+68b7 1fe3fe00 lshift pdata ,pdata 
+68b8 793ffe00 set0 0 ,pdata 
+68b9 e0a08000 istore 1 ,contw 
+68ba e0a88000 istoret 1 ,contw 
+68bb 20600000 rtn 
+
+ssp_tx_write_given_credit:
+68bc 6800c601 fetch 1 ,mem_credit_given 
+68bd 207a0000 rtn blank 
+68be e0a08000 istore 1 ,contw 
+68bf 20600000 rtn 
+
+scheduler_process:
+68c0 79200025 set1 mark_ext_patch ,mark 
+68c1 44d5c035 bpatch patch35_3 ,mem_patch35 
+68c2 20407d9e call check_51cmd 
+68c3 20403d69 call app_process_bb_event 
+68c4 20405926 call process_conn_sm 
+68c5 79200025 set1 mark_ext_patch ,mark 
+68c6 44d64035 bpatch patch35_4 ,mem_patch35 
+68c7 204076f7 call sp_calc_sequence 
+68c8 204076ce call simple_pairing_sequence 
+68c9 204076e0 call master_simple_paring_sequence 
+68ca 2040480e call l2cap_malloc_is_fifo_full 
+68cb 247a0000 nrtn blank 
+68cc 2040432d call l2cap_call_proc_sigal_pending 
+68cd 2040480e call l2cap_malloc_is_fifo_full 
+68ce 247a0000 nrtn blank 
+68cf 79200025 set1 mark_ext_patch ,mark 
+68d0 44d6c035 bpatch patch35_5 ,mem_patch35 
+68d1 20406913 call process_upper_sm 
+68d2 204044f2 call l2cap_send_config_req 
+68d3 204067a2 call rfcomm_send_more_pkt 
+
+scheduler_process0:
+68d4 204068d8 call scheduler_tx_disconnect_hid 
+68d5 79200025 set1 mark_ext_patch ,mark 
+68d6 44d74035 bpatch patch35_6 ,mem_patch35 
+68d7 20203d65 branch app_process_bt 
+
+scheduler_tx_disconnect_hid:
+68d8 680082a8 fetch 1 ,mem_control_tasks 
+68d9 c2804619 bbit1 l2cap_disconnect_interrupt ,l2cap_disconnect_interrupt_req 
+68da c283c623 bbit1 l2cap_disconnect_control ,l2cap_disconnect_control_req 
+68db 20600000 rtn 
+
+scheduler_tx_l2cap_pkt:
+68dc 79200025 set1 mark_ext_patch ,mark 
+68dd 44d7c035 bpatch patch35_7 ,mem_patch35 
+68de 20404816 call l2cap_malloc_is_fifo_empty 
+68df 207a0000 rtn blank 
+68e0 6800804b fetch 1 ,mem_op 
+68e1 c3830000 rtnbit1 op_txl2cap 
+68e2 204047f5 call l2cap_malloc_fifo_out 
+68e3 6001016e store 2 ,mem_txptr 
+68e4 1fe20c00 copy pdata ,contr 
+68e5 e8c10000 ifetch 2 ,contr 
+68e6 1fe0fe04 increase 4 ,pdata 
+68e7 6001427e store 2 ,mem_tx_len 
+68e8 70427d06 jam 6 ,mem_tx_lch 
+68e9 79200025 set1 mark_ext_patch ,mark 
+68ea 44d84036 bpatch patch36_0 ,mem_patch36 
+68eb 680142d6 fetch 2 ,mem_l2cap_tx_multi_offset 
+68ec 203a68f9 branch scheduler_tx_l2cap_start_pkt ,blank 
+68ed 6800804b fetch 1 ,mem_op 
+68ee c4038000 rtnbit0 op_pkt_comp 
+68ef 793ffe07 set0 op_pkt_comp ,pdata 
+68f0 6000804b store 1 ,mem_op 
+68f1 70427d05 jam 5 ,mem_tx_lch 
+68f2 680942d6 fetcht 2 ,mem_l2cap_tx_multi_offset 
+68f3 6801016e fetch 2 ,mem_txptr 
+68f4 9840fe00 iadd temp ,pdata 
+68f5 6001016e store 2 ,mem_txptr 
+68f6 6801427e fetch 2 ,mem_tx_len 
+68f7 98467e00 isub temp ,pdata 
+68f8 6001427e store 2 ,mem_tx_len 
+
+scheduler_tx_l2cap_start_pkt:
+68f9 79200025 set1 mark_ext_patch ,mark 
+68fa 44d8c036 bpatch patch36_1 ,mem_patch36 
+68fb 6801427e fetch 2 ,mem_tx_len 
+68fc 203a3b31 branch assert ,blank 
+68fd d8400104 arg l2cap_max_pkt_len ,temp 
+68fe 98467e00 isub temp ,pdata 
+68ff 24216907 nbranch scheduler_tx_l2cap_last_pkt ,positive 
+6900 79200025 set1 mark_ext_patch ,mark 
+6901 44d94036 bpatch patch36_2 ,mem_patch36 
+6902 6009427e storet 2 ,mem_tx_len 
+6903 680142d6 fetch 2 ,mem_l2cap_tx_multi_offset 
+6904 9840fe00 iadd temp ,pdata 
+6905 600142d6 store 2 ,mem_l2cap_tx_multi_offset 
+6906 20206909 branch scheduler_tx_l2cap_pkt_end 
+
+scheduler_tx_l2cap_last_pkt:
+6907 58000000 setarg 0 
+6908 600142d6 store 2 ,mem_l2cap_tx_multi_offset 
+
+scheduler_tx_l2cap_pkt_end:
+6909 6800804b fetch 1 ,mem_op 
+690a 79207e06 set1 op_txl2cap ,pdata 
+690b 6000804b store 1 ,mem_op 
+690c 20600000 rtn 
+
+scheduler_start_upper_sm:
+690d 6800c70d fetch 1 ,mem_ui_profile_supported 
+690e c2806911 bbit1 support_hid ,scheduler_start_upper_sm_hid 
+690f 7002b001 jam uppersm_reconn_sdp_conn ,mem_upper_sm_reconn 
+6910 20600000 rtn 
+
+scheduler_start_upper_sm_hid:
+6911 7002b00f jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+6912 20600000 rtn 
+
+process_upper_sm:
+6913 6800c70a fetch 1 ,memui_reconnect_mode 
+6914 243a6919 nbranch process_upper_sm_reconn ,blank 
+
+process_upper_sm_remote_page:
+6915 680082af fetch 1 ,mem_upper_sm_remote_page 
+6916 207a0000 rtn blank 
+6917 7002af00 jam 0 ,mem_upper_sm_remote_page 
+
+process_upper_sm_rp_wait:
+6918 20600000 rtn 
+
+process_upper_sm_reconn:
+6919 79200025 set1 mark_ext_patch ,mark 
+691a 44d9c036 bpatch patch36_3 ,mem_patch36 
+691b 680082b0 fetch 1 ,mem_upper_sm_reconn 
+691c 207a0000 rtn blank 
+691d c000e93a beq uppersm_reconn_sdp_conn ,process_upper_sm_reconn_sdp_conn 
+691e c0016993 beq uppersm_reconn_sdp_conn_wait ,process_upper_sm_reconn_sdp_conn_wait 
+691f c001e940 beq uppersm_reconn_sdp_cfg ,process_upper_sm_reconn_sdp_cfg 
+6920 c0026997 beq uppersm_reconn_sdp_cfg_wait ,process_upper_sm_reconn_sdp_cfg_wait 
+6921 c01de94a beq uppersm_reconn_ss_spp ,process_upper_sm_reconn_ss_spp 
+6922 c01e699a beq uppersm_reconn_ss_spp_wait ,process_upper_sm_reconn_ss_spp_wait 
+6923 c006e94f beq uppersm_reconn_sdp_disconn ,process_upper_sm_reconn_sdp_disconn 
+6924 c007699f beq uppersm_reconn_sdp_disconn_wait ,process_upper_sm_reconn_sdp_disconn_wait 
+6925 c007e952 beq uppersm_reconn_hid_ctrl_conn ,process_upper_sm_reconn_hid_ctrl_conn 
+6926 c00869a5 beq uppersm_reconn_hid_ctrl_conn_wait ,process_upper_sm_reconn_hid_ctrl_conn_wait 
+6927 c008e958 beq uppersm_reconn_hid_ctrl_cfg ,process_upper_sm_reconn_hid_ctrl_cfg 
+6928 c00969a9 beq uppersm_reconn_hid_ctrl_cfg_wait ,process_upper_sm_reconn_hid_ctrl_cfg_wait 
+6929 c009e95e beq uppersm_reconn_hid_int_conn ,process_upper_sm_reconn_hid_int_conn 
+692a c00a69ad beq uppersm_reconn_hid_int_conn_wait ,process_upper_sm_reconn_hid_int_conn_wait 
+692b c00ae964 beq uppersm_reconn_hid_int_cfg ,process_upper_sm_reconn_hid_int_cfg 
+692c c00b69b1 beq uppersm_reconn_hid_int_cfg_wait ,process_upper_sm_reconn_hid_int_cfg_wait 
+692d c00be96a beq uppersm_reconn_rfcomm_conn ,process_upper_sm_reconn_rfcomm_conn 
+692e c00c69b6 beq uppersm_reconn_rfcomm_conn_wait ,process_upper_sm_reconn_rfcomm_conn_wait 
+692f c00ce970 beq uppersm_reconn_rfcomm_cfg ,process_upper_sm_reconn_rfcomm_cfg 
+6930 c00d69ba beq uppersm_reconn_rfcomm_cfg_wait ,process_upper_sm_reconn_rfcomm_cfg_wait 
+6931 c00de976 beq uppersm_reconn_rfcomm_sabm ,process_upper_sm_reconn_rfcomm_sabm 
+6932 c00e69be beq uppersm_reconn_rfcomm_sabm_wait ,process_upper_sm_reconn_rfcomm_sabm_wait 
+6933 c00ee97c beq uppersm_reconn_spp_cmd_pn ,process_upper_sm_reconn_spp_cmd_pn 
+6934 c00f69c3 beq uppersm_reconn_spp_cmd_pn_wait ,process_upper_sm_reconn_spp_cmd_pn_wait 
+6935 c00fe982 beq uppersm_reconn_spp_sabm ,process_upper_sm_reconn_spp_sabm 
+6936 c01069c7 beq uppersm_reconn_spp_sabm_wait ,process_upper_sm_reconn_spp_sabm_wait 
+6937 c010e98d beq uppersm_reconn_spp_cmd_ms ,process_upper_sm_reconn_spp_cmd_ms 
+6938 c01169cb beq uppersm_reconn_spp_cmd_ms_wait ,process_upper_sm_reconn_spp_cmd_ms_wait 
+
+process_upper_sm_reconn_wait:
+6939 20600000 rtn 
+
+process_upper_sm_reconn_sdp_conn:
+693a 204069d6 call upper_sm_send_sdp_conn 
+693b 7002b002 jam uppersm_reconn_sdp_conn_wait ,mem_upper_sm_reconn 
+693c 6800c2e0 fetch 1 ,mem_sdp_state 
+693d 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+693e 6000c2e0 store 1 ,mem_sdp_state 
+693f 20600000 rtn 
+
+process_upper_sm_reconn_sdp_cfg:
+6940 7002b004 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+6941 6800c2e0 fetch 1 ,mem_sdp_state 
+6942 c3810000 rtnbit1 l2cap_channel_state_snd_cfg_req 
+6943 7002b003 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+6944 204069de call upper_sm_send_sdp_cfg 
+6945 7002b004 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+6946 6800c2e0 fetch 1 ,mem_sdp_state 
+6947 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+6948 6000c2e0 store 1 ,mem_sdp_state 
+6949 20600000 rtn 
+
+process_upper_sm_reconn_ss_spp:
+694a 20404816 call l2cap_malloc_is_fifo_empty 
+694b 247a0000 nrtn blank 
+694c 204069ef call upper_sm_send_ss_spp 
+694d 7002b03c jam uppersm_reconn_ss_spp_wait ,mem_upper_sm_reconn 
+694e 20600000 rtn 
+
+process_upper_sm_reconn_sdp_disconn:
+694f 204069e4 call upper_sm_send_sdp_disconn 
+6950 7002b00e jam uppersm_reconn_sdp_disconn_wait ,mem_upper_sm_reconn 
+6951 20600000 rtn 
+
+process_upper_sm_reconn_hid_ctrl_conn:
+6952 20406a02 call upper_sm_send_hid_ctrl_conn 
+6953 7002b010 jam uppersm_reconn_hid_ctrl_conn_wait ,mem_upper_sm_reconn 
+6954 6800c2e2 fetch 1 ,mem_hid_control_state 
+6955 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+6956 6000c2e2 store 1 ,mem_hid_control_state 
+6957 20600000 rtn 
+
+process_upper_sm_reconn_hid_ctrl_cfg:
+6958 20406a0a call upper_sm_send_hid_ctrl_cfg 
+6959 7002b012 jam uppersm_reconn_hid_ctrl_cfg_wait ,mem_upper_sm_reconn 
+695a 6800c2e2 fetch 1 ,mem_hid_control_state 
+695b 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+695c 6000c2e2 store 1 ,mem_hid_control_state 
+695d 20600000 rtn 
+
+process_upper_sm_reconn_hid_int_conn:
+695e 20406a10 call upper_sm_send_hid_int_conn 
+695f 7002b014 jam uppersm_reconn_hid_int_conn_wait ,mem_upper_sm_reconn 
+6960 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+6961 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+6962 6000c2e3 store 1 ,mem_hid_interrupt_state 
+6963 20600000 rtn 
+
+process_upper_sm_reconn_hid_int_cfg:
+6964 20406a18 call upper_sm_send_hid_int_cfg 
+6965 7002b016 jam uppersm_reconn_hid_int_cfg_wait ,mem_upper_sm_reconn 
+6966 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+6967 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+6968 6000c2e3 store 1 ,mem_hid_interrupt_state 
+6969 20600000 rtn 
+
+process_upper_sm_reconn_rfcomm_conn:
+696a 204069f4 call upper_sm_send_rfcomm_conn 
+696b 7002b018 jam uppersm_reconn_rfcomm_conn_wait ,mem_upper_sm_reconn 
+696c 6800c2e1 fetch 1 ,mem_rfcomm_state 
+696d 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+696e 6000c2e1 store 1 ,mem_rfcomm_state 
+696f 20600000 rtn 
+
+process_upper_sm_reconn_rfcomm_cfg:
+6970 204069fc call upper_sm_send_rfcomm_cfg 
+6971 7002b01a jam uppersm_reconn_rfcomm_cfg_wait ,mem_upper_sm_reconn 
+6972 6800c2e1 fetch 1 ,mem_rfcomm_state 
+6973 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+6974 6000c2e1 store 1 ,mem_rfcomm_state 
+6975 20600000 rtn 
+
+process_upper_sm_reconn_rfcomm_sabm:
+6976 20406a1e call upper_sm_send_rfcomm_sabm 
+6977 7002b01c jam uppersm_reconn_rfcomm_sabm_wait ,mem_upper_sm_reconn 
+6978 6800c2e1 fetch 1 ,mem_rfcomm_state 
+6979 79207e06 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+697a 6000c2e1 store 1 ,mem_rfcomm_state 
+697b 20600000 rtn 
+
+process_upper_sm_reconn_spp_cmd_pn:
+697c 20406a26 call upper_sm_send_spp_cmd_pn 
+697d 6800c2e4 fetch 1 ,mem_spp_state 
+697e 79207e00 set1 rfcomm_channel_state_pn_cmd 
+697f 6000c2e4 store 1 ,mem_spp_state 
+6980 7002b01e jam uppersm_reconn_spp_cmd_pn_wait ,mem_upper_sm_reconn 
+6981 20600000 rtn 
+
+process_upper_sm_reconn_spp_sabm:
+6982 20406a2d call upper_sm_send_spp_sabm 
+6983 6800c2e4 fetch 1 ,mem_spp_state 
+6984 79207e02 set1 rfcomm_channel_state_sabm 
+6985 6000c2e4 store 1 ,mem_spp_state 
+6986 7002b020 jam uppersm_reconn_spp_sabm_wait ,mem_upper_sm_reconn 
+6987 6800c5fc fetch 1 ,mem_remote_spp_channel 
+6988 1fe9fe00 lshift3 pdata ,pdata 
+6989 1fe1fe03 or_into 3 ,pdata 
+698a d84045fd arg mem_hiufcs_spp ,temp 
+698b 60090426 storet 2 ,mem_contw_temp 
+698c 2020663a branch rfcomm_save_fcs_uih 
+
+process_upper_sm_reconn_spp_cmd_ms:
+698d 20406a38 call upper_sm_send_spp_cmd_ms 
+698e 6800c2e4 fetch 1 ,mem_spp_state 
+698f 79207e04 set1 rfcomm_channel_state_snd_ms_cmd 
+6990 6000c2e4 store 1 ,mem_spp_state 
+6991 7002b022 jam uppersm_reconn_spp_cmd_ms_wait ,mem_upper_sm_reconn 
+6992 20600000 rtn 
+
+process_upper_sm_reconn_sdp_conn_wait:
+6993 6800c2e0 fetch 1 ,mem_sdp_state 
+6994 c4008000 rtnbit0 l2cap_channel_state_conn_res 
+6995 7002b003 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+6996 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_sdp_cfg_wait:
+6997 6800c2e0 fetch 1 ,mem_sdp_state 
+6998 c19f8000 rtnne l2cap_channel_setup_complete 
+6999 7002b03b jam uppersm_reconn_ss_spp ,mem_upper_sm_reconn 
+
+process_upper_sm_reconn_ss_spp_wait:
+699a 680082ae fetch 1 ,mem_message_to_uppersm 
+699b c18b8000 rtnne recieve_ss_reasult_hf 
+699c 7002ae00 jam 0 ,mem_message_to_uppersm 
+699d 7002b00d jam uppersm_reconn_sdp_disconn ,mem_upper_sm_reconn 
+699e 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_sdp_disconn_wait:
+699f 6800c2e0 fetch 1 ,mem_sdp_state 
+69a0 247a0000 nrtn blank 
+69a1 6800c70d fetch 1 ,mem_ui_profile_supported 
+69a2 c28069ce bbit1 support_hid ,process_upper_sm_reconn_setup_hid 
+69a3 c28369d0 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+69a4 202069d4 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_hid_ctrl_conn_wait:
+69a5 6800c2e2 fetch 1 ,mem_hid_control_state 
+69a6 c4008000 rtnbit0 l2cap_channel_state_conn_res 
+69a7 7002b011 jam uppersm_reconn_hid_ctrl_cfg ,mem_upper_sm_reconn 
+69a8 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_hid_ctrl_cfg_wait:
+69a9 6800c2e2 fetch 1 ,mem_hid_control_state 
+69aa c19f8000 rtnne l2cap_channel_setup_complete 
+69ab 7002b013 jam uppersm_reconn_hid_int_conn ,mem_upper_sm_reconn 
+69ac 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_hid_int_conn_wait:
+69ad 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+69ae c4008000 rtnbit0 l2cap_channel_state_conn_res 
+69af 7002b015 jam uppersm_reconn_hid_int_cfg ,mem_upper_sm_reconn 
+69b0 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_hid_int_cfg_wait:
+69b1 6800c2e3 fetch 1 ,mem_hid_interrupt_state 
+69b2 c19f8000 rtnne l2cap_channel_setup_complete 
+69b3 6800c70d fetch 1 ,mem_ui_profile_supported 
+69b4 c28369d0 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+69b5 202069d4 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_rfcomm_conn_wait:
+69b6 6800c2e1 fetch 1 ,mem_rfcomm_state 
+69b7 c4008000 rtnbit0 l2cap_channel_state_conn_res 
+69b8 7002b019 jam uppersm_reconn_rfcomm_cfg ,mem_upper_sm_reconn 
+69b9 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_rfcomm_cfg_wait:
+69ba 6800c2e1 fetch 1 ,mem_rfcomm_state 
+69bb c19f8000 rtnne l2cap_channel_setup_complete 
+69bc 7002b01b jam uppersm_reconn_rfcomm_sabm ,mem_upper_sm_reconn 
+69bd 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_rfcomm_sabm_wait:
+69be 6800c2e1 fetch 1 ,mem_rfcomm_state 
+69bf c1ff8000 rtnne l2cap_channel_rfcomm_dlci0_opened 
+69c0 6800c70d fetch 1 ,mem_ui_profile_supported 
+69c1 c28369d2 bbit1 support_spp ,process_upper_sm_reconn_setup_spp 
+69c2 202069d4 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_spp_cmd_pn_wait:
+69c3 6800c2e4 fetch 1 ,mem_spp_state 
+69c4 c4008000 rtnbit0 rfcomm_channel_state_pn_res 
+69c5 7002b01f jam uppersm_reconn_spp_sabm ,mem_upper_sm_reconn 
+69c6 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_spp_sabm_wait:
+69c7 6800c2e4 fetch 1 ,mem_spp_state 
+69c8 c4018000 rtnbit0 rfcomm_channel_state_ua 
+69c9 7002b021 jam uppersm_reconn_spp_cmd_ms ,mem_upper_sm_reconn 
+69ca 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_spp_cmd_ms_wait:
+69cb 6800c2e4 fetch 1 ,mem_spp_state 
+69cc c1ff8000 rtnne rfcomm_channel_setup_complete 
+69cd 202069d4 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_setup_hid:
+69ce 7002b00f jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+69cf 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_setup_rfcomm:
+69d0 7002b017 jam uppersm_reconn_rfcomm_conn ,mem_upper_sm_reconn 
+69d1 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_setup_spp:
+69d2 7002b01d jam uppersm_reconn_spp_cmd_pn ,mem_upper_sm_reconn 
+69d3 20206919 branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_termination:
+69d4 7002b000 jam 0 ,mem_upper_sm_reconn 
+69d5 20600000 rtn 
+
+upper_sm_send_sdp_conn:
+69d6 79200025 set1 mark_ext_patch ,mark 
+69d7 44da4036 bpatch patch36_4 ,mem_patch36 
+69d8 2040485e call l2cap_malloc_signal_channel 
+69d9 58000001 setarg psm_sdp 
+69da 1fe20400 copy pdata ,temp 
+69db 58000050 setarg l2cap_sdp_channel 
+69dc 1fe21600 copy pdata ,timeup 
+69dd 2020463a branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_sdp_cfg:
+69de 79200025 set1 mark_ext_patch ,mark 
+69df 44dac036 bpatch patch36_5 ,mem_patch36 
+69e0 2040485e call l2cap_malloc_signal_channel 
+69e1 680142d8 fetch 2 ,mem_sdp_remote_cid 
+69e2 1fe20400 copy pdata ,temp 
+69e3 2020464a branch ml2cap_send_signal_config_req 
+
+upper_sm_send_sdp_disconn:
+69e4 79200025 set1 mark_ext_patch ,mark 
+69e5 44db4036 bpatch patch36_6 ,mem_patch36 
+69e6 2040485e call l2cap_malloc_signal_channel 
+69e7 680142d8 fetch 2 ,mem_sdp_remote_cid 
+69e8 1fe20400 copy pdata ,temp 
+69e9 d9600050 arg l2cap_sdp_channel ,timeup 
+69ea 20404660 call ml2cap_send_signal_disconn_req 
+69eb 6800c2e0 fetch 1 ,mem_sdp_state 
+69ec 793ffe05 set0 l2cap_channel_state_rcv_cfg_res ,pdata 
+69ed 6000c2e0 store 1 ,mem_sdp_state 
+69ee 20600000 rtn 
+
+upper_sm_send_ss_spp:
+69ef 79200025 set1 mark_ext_patch ,mark 
+69f0 44dbc036 bpatch patch36_7 ,mem_patch36 
+69f1 2040486c call l2cap_malloc_sdp_channel 
+69f2 20406d01 call sdp_send_spp_request 
+69f3 2020467c branch msdp_send_req_done 
+
+upper_sm_send_rfcomm_conn:
+69f4 79200025 set1 mark_ext_patch ,mark 
+69f5 44dc4037 bpatch patch37_0 ,mem_patch37 
+69f6 2040485e call l2cap_malloc_signal_channel 
+69f7 58000003 setarg psm_rfcomm 
+69f8 1fe20400 copy pdata ,temp 
+69f9 58000051 setarg l2cap_rfcomm_channel 
+69fa 1fe21600 copy pdata ,timeup 
+69fb 2020463a branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_rfcomm_cfg:
+69fc 79200025 set1 mark_ext_patch ,mark 
+69fd 44dcc037 bpatch patch37_1 ,mem_patch37 
+69fe 2040485e call l2cap_malloc_signal_channel 
+69ff 680142da fetch 2 ,mem_rfcomm_remote_cid 
+6a00 1fe20400 copy pdata ,temp 
+6a01 2020464a branch ml2cap_send_signal_config_req 
+
+upper_sm_send_hid_ctrl_conn:
+6a02 79200025 set1 mark_ext_patch ,mark 
+6a03 44dd4037 bpatch patch37_2 ,mem_patch37 
+6a04 2040485e call l2cap_malloc_signal_channel 
+6a05 58000011 setarg psm_hid_control 
+6a06 1fe20400 copy pdata ,temp 
+6a07 58000052 setarg l2cap_hid_control_channel 
+6a08 1fe21600 copy pdata ,timeup 
+6a09 2020463a branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_hid_ctrl_cfg:
+6a0a 79200025 set1 mark_ext_patch ,mark 
+6a0b 44ddc037 bpatch patch37_3 ,mem_patch37 
+6a0c 2040485e call l2cap_malloc_signal_channel 
+6a0d 680142dc fetch 2 ,mem_hid_ctrl_remote_cid 
+6a0e 1fe20400 copy pdata ,temp 
+6a0f 2020464a branch ml2cap_send_signal_config_req 
+
+upper_sm_send_hid_int_conn:
+6a10 79200025 set1 mark_ext_patch ,mark 
+6a11 44de4037 bpatch patch37_4 ,mem_patch37 
+6a12 2040485e call l2cap_malloc_signal_channel 
+6a13 58000013 setarg psm_hid_interrupt 
+6a14 1fe20400 copy pdata ,temp 
+6a15 58000053 setarg l2cap_hid_interrupt_channel 
+6a16 1fe21600 copy pdata ,timeup 
+6a17 2020463a branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_hid_int_cfg:
+6a18 79200025 set1 mark_ext_patch ,mark 
+6a19 44dec037 bpatch patch37_5 ,mem_patch37 
+6a1a 2040485e call l2cap_malloc_signal_channel 
+6a1b 680142de fetch 2 ,mem_hid_int_remote_cid 
+6a1c 1fe20400 copy pdata ,temp 
+6a1d 2020464a branch ml2cap_send_signal_config_req 
+
+upper_sm_send_rfcomm_sabm:
+6a1e 79200025 set1 mark_ext_patch ,mark 
+6a1f 44df4037 bpatch patch37_6 ,mem_patch37 
+6a20 2040487a call l2cap_malloc_rfcomm_channel 
+6a21 70042a03 jam 3 ,mem_current_adss 
+6a22 70042d1c jam 0x1c ,mem_current_fcs 
+6a23 204067b3 call rfcomm_send_sabm 
+6a24 7045fb01 jam 1 ,mem_rfcomm_initiator 
+6a25 20600000 rtn 
+
+upper_sm_send_spp_cmd_pn:
+6a26 79200025 set1 mark_ext_patch ,mark 
+6a27 44dfc037 bpatch patch37_7 ,mem_patch37 
+6a28 2040487a call l2cap_malloc_rfcomm_channel 
+6a29 6808c5fc fetcht 1 ,mem_remote_spp_channel 
+6a2a 2040667e call channel_to_dlci 
+6a2b 6008c5f5 storet 1 ,mem_pn_dlci 
+6a2c 202067d0 branch rfcomm_send_param_neg_cmd 
+
+upper_sm_send_spp_sabm:
+6a2d 79200025 set1 mark_ext_patch ,mark 
+6a2e 44e04038 bpatch patch38_0 ,mem_patch38 
+6a2f 2040487a call l2cap_malloc_rfcomm_channel 
+6a30 6808c5f5 fetcht 1 ,mem_pn_dlci 
+6a31 20406678 call dlci_to_address_cmd 
+6a32 2040661f call rfcomm_calculate_fcs_sabm 
+6a33 6000842d store 1 ,mem_current_fcs 
+6a34 6808c5f5 fetcht 1 ,mem_pn_dlci 
+6a35 20406678 call dlci_to_address_cmd 
+6a36 6008842a storet 1 ,mem_current_adss 
+6a37 202067b3 branch rfcomm_send_sabm 
+
+upper_sm_send_spp_cmd_ms:
+6a38 79200025 set1 mark_ext_patch ,mark 
+6a39 44e0c038 bpatch patch38_1 ,mem_patch38 
+6a3a 2040487a call l2cap_malloc_rfcomm_channel 
+6a3b 6808c5f5 fetcht 1 ,mem_pn_dlci 
+6a3c 20406678 call dlci_to_address_cmd 
+6a3d 2020680a branch rfcomm_send_modem_status_cmd 
+
+sdp_process:
+6a3e 79200025 set1 mark_ext_patch ,mark 
+6a3f 44e14038 bpatch patch38_2 ,mem_patch38 
+6a40 6801028d fetch 2 ,mem_l2cap_payload_ptr 
+6a41 98000c00 iforce contr 
+6a42 e8c08000 ifetch 1 ,contr 
+6a43 1fe22400 copy pdata ,regb 
+6a44 60008446 store 1 ,mem_sdp_pduid 
+6a45 e8c10000 ifetch 2 ,contr 
+6a46 60010447 store 2 ,mem_sdp_transactionid 
+6a47 e8c08000 ifetch 1 ,contr 
+6a48 1fed1600 lshift8 pdata ,timeup 
+6a49 e8c08000 ifetch 1 ,contr 
+6a4a 99609600 iadd timeup ,timeup 
+6a4b 79200025 set1 mark_ext_patch ,mark 
+6a4c 44e1c038 bpatch patch38_3 ,mem_patch38 
+6a4d 1a427e00 deposit regb 
+6a4e c0016a53 beq 2 ,servicesearch_req 
+6a4f c0026a7c beq 4 ,patch_serviceattribute_req 
+6a50 c0036b5d beq 6 ,patch_servicesearchattribute_req 
+6a51 c003ed18 beq 7 ,servicesearchattribute_res 
+6a52 20206d40 branch sdp_insufficient_resource 
+
+servicesearch_req:
+6a53 20406d4f call ask_serviceclassid 
+6a54 2841fe01 compare 1 ,temp ,0xff 
+6a55 2020edbd branch empth_sa_rsp ,true 
+6a56 2841feff compare 0xff ,temp ,0xff 
+6a57 2020ed43 branch sdp_invalid_reqest_syntax ,true 
+6a58 e8c10000 ifetch 2 ,contr 
+6a59 6001044b store 2 ,mem_sdp_record_maxcnt 
+6a5a 196097fe increase -2 ,timeup 
+6a5b 196097ff increase -1 ,timeup 
+6a5c 2422ed3d nbranch sdp_invalid_pdu_size ,zero 
+6a5d d9600440 arg mem_uuid_search_pat ,timeup 
+6a5e e9610000 ifetch 2 ,timeup 
+6a5f 207a0000 rtn blank 
+6a60 19609602 increase 2 ,timeup 
+6a61 20406e09 call search_uuid 
+6a62 20404878 call l2cap_get_sdp_tx_payload 
+6a63 18007e03 force 3 ,pdata 
+6a64 e0a08000 istore 1 ,contw 
+6a65 68010447 fetch 2 ,mem_sdp_transactionid 
+6a66 e0a10000 istore 2 ,contw 
+6a67 18ebfe00 lshift2 queue ,pdata 
+6a68 1fe0fe05 add pdata ,5 ,pdata 
+6a69 1fe0a605 add pdata ,5 ,regc 
+6a6a 1ff0fe00 byteswap pdata ,pdata 
+6a6b e0a10000 istore 2 ,contw 
+6a6c 18e27e00 deposit queue 
+6a6d 1ff0fe00 byteswap pdata ,pdata 
+6a6e e0a10000 istore 2 ,contw 
+6a6f e0a10000 istore 2 ,contw 
+6a70 d8c0045c arg mem_handle_list ,contr 
+6a71 18e27200 copy queue ,loopcnt 
+6a72 2022ea76 branch servicesearch_req_blank ,zero 
+
+servicesearch_req_loop:
+6a73 e8c20000 ifetch 4 ,contr 
+6a74 e0a20000 istore 4 ,contw 
+6a75 c2006a73 loop servicesearch_req_loop 
+
+servicesearch_req_blank:
+6a76 18007e00 force 0 ,pdata 
+6a77 e0a08000 istore 1 ,contw 
+6a78 1a627e00 deposit regc 
+6a79 6000829e store 1 ,mem_sdp_tx_pkt_length 
+6a7a 203a3b31 branch assert ,blank 
+6a7b 20600000 rtn 
+
+patch_serviceattribute_req:
+6a7c e8c20000 ifetch 4 ,contr 
+6a7d 60020455 store 4 ,mem_sdp_record_handle 
+6a7e 196097fc increase -4 ,timeup 
+6a7f 98000400 iforce temp 
+6a80 e8c10000 ifetch 2 ,contr 
+6a81 1ff0fe00 byteswap pdata ,pdata 
+6a82 1fe0ffee increase -18 ,pdata 
+6a83 60010449 store 2 ,mem_sdp_attribute_maxbyte 
+6a84 196097fe increase -2 ,timeup 
+6a85 20406da6 call dataelementtype6 
+6a86 2022ed43 branch sdp_invalid_reqest_syntax ,zero 
+6a87 2a21fe05 compare 5 ,rega ,0xff 
+6a88 2020ea8c branch patch_serviceattribute_judge_wholerangle ,true 
+
+patch_serviceattribute_isnot_wholerangle:
+6a89 d8a00428 arg mem_attrib_list ,contw 
+6a8a 18000e00 force 0 ,queue 
+6a8b 20206a9c branch patch_serviceattribute_req_loop 
+
+patch_serviceattribute_judge_wholerangle:
+6a8c e8c08000 ifetch 1 ,contr 
+6a8d c0856d43 bne 0xa ,sdp_invalid_reqest_syntax 
+6a8e e8c10000 ifetch 2 ,contr 
+6a8f 243a6a9a nbranch patch_serviceattribute_judge_wholerangle_false1 ,blank 
+6a90 e8c08000 ifetch 1 ,contr 
+6a91 c0ffea98 bne 0xff ,patch_serviceattribute_judge_wholerangle_false2 
+6a92 e8c08000 ifetch 1 ,contr 
+6a93 c0ffea96 bne 0xff ,patch_serviceattribute_judge_wholerangle_false3 
+6a94 18c08dfb increase -5 ,contr 
+6a95 20206af2 branch serviceattribute_req_all 
+
+patch_serviceattribute_judge_wholerangle_false3:
+6a96 18c08dfb increase -5 ,contr 
+6a97 20206a89 branch patch_serviceattribute_isnot_wholerangle 
+
+patch_serviceattribute_judge_wholerangle_false2:
+6a98 18c08dfc increase -4 ,contr 
+6a99 20206a89 branch patch_serviceattribute_isnot_wholerangle 
+
+patch_serviceattribute_judge_wholerangle_false1:
+6a9a 18c08dfd increase -3 ,contr 
+6a9b 20206a89 branch patch_serviceattribute_isnot_wholerangle 
+
+patch_serviceattribute_req_loop:
+6a9c e8c08000 ifetch 1 ,contr 
+6a9d c004eab1 beq 0x09 ,patch_serviceattribute_req_one_id 
+6a9e c0056a9f beq 0x0a ,patch_serviceattribute_req_range_id 
+
+patch_serviceattribute_req_range_id:
+6a9f e8c10000 ifetch 2 ,contr 
+6aa0 e0a10000 istore 2 ,contw 
+6aa1 18e08e01 increase 1 ,queue 
+6aa2 1ff0a400 byteswap pdata ,regb 
+6aa3 e8c10000 ifetch 2 ,contr 
+6aa4 1ff0fe00 byteswap pdata ,pdata 
+
+patch_serviceattribute_req_range_id_increase:
+6aa5 1a40a401 increase 1 ,regb 
+6aa6 9a467c00 isub regb ,null 
+6aa7 24216aae nbranch patch_serviceattribute_req_range_id_finish ,positive 
+6aa8 1fe22600 copy pdata ,regc 
+6aa9 1a50fe00 byteswap regb ,pdata 
+6aaa e0a10000 istore 2 ,contw 
+6aab 18e08e01 increase 1 ,queue 
+6aac 1a627e00 copy regc ,pdata 
+6aad 20206aa5 branch patch_serviceattribute_req_range_id_increase 
+
+patch_serviceattribute_req_range_id_finish:
+6aae 196097fb increase -5 ,timeup 
+6aaf 1a20a3fb increase -5 ,rega 
+6ab0 20206ab6 branch patch_serviceattribute_req_check_next_id 
+
+patch_serviceattribute_req_one_id:
+6ab1 e8c10000 ifetch 2 ,contr 
+6ab2 e0a10000 istore 2 ,contw 
+6ab3 18e08e01 increase 1 ,queue 
+6ab4 196097fd increase -3 ,timeup 
+6ab5 1a20a3fd increase -3 ,rega 
+
+patch_serviceattribute_req_check_next_id:
+6ab6 24216d43 nbranch sdp_invalid_reqest_syntax ,positive 
+6ab7 2422ea9c nbranch patch_serviceattribute_req_loop ,zero 
+6ab8 196097ff increase -1 ,timeup 
+6ab9 2422ed43 nbranch sdp_invalid_reqest_syntax ,zero 
+6aba 20404878 call l2cap_get_sdp_tx_payload 
+6abb 18a08a0a increase 10 ,contw 
+6abc da200428 arg mem_attrib_list ,rega 
+
+patch_answer_handle_attributelist_next:
+6abd 79200025 set1 mark_ext_patch ,mark 
+6abe 44e24038 bpatch patch38_4 ,mem_patch38 
+6abf 18e27e00 copy queue ,pdata 
+6ac0 203a6ad2 branch answer_handle_attributelist_end ,blank 
+6ac1 ea210000 ifetch 2 ,rega 
+6ac2 203a6ad2 branch answer_handle_attributelist_end ,blank 
+6ac3 98002400 iforce regb 
+6ac4 68020455 fetch 4 ,mem_sdp_record_handle 
+6ac5 98000400 iforce temp 
+6ac6 20406e52 call search_handle_attrib 
+6ac7 203a6acf branch patch_answer_handle_attributelist_notfound ,blank 
+6ac8 18c08dfd increase -3 ,contr 
+6ac9 e8c18000 ifetch 3 ,contr 
+6aca e0a18000 istore 3 ,contw 
+6acb 20406cea call patch_sdp_data_len 
+6acc 203a6acf branch patch_answer_handle_attributelist_notfound ,blank 
+6acd 98007200 iforce loopcnt 
+6ace 20407ecd call memcpy 
+
+patch_answer_handle_attributelist_notfound:
+6acf 1a20a202 increase 2 ,rega 
+6ad0 18e08fff increase -1 ,queue 
+6ad1 20206abd branch patch_answer_handle_attributelist_next 
+
+answer_handle_attributelist_end:
+6ad2 79200025 set1 mark_ext_patch ,mark 
+6ad3 44e2c038 bpatch patch38_5 ,mem_patch38 
+6ad4 18007e00 force 0 ,pdata 
+6ad5 e0a08000 istore 1 ,contw 
+6ad6 18a08bff increase -1 ,contw 
+6ad7 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6ad8 1840fe0a add temp ,10 ,pdata 
+6ad9 98a67e00 isub contw ,pdata 
+6ada 1fe62200 sub pdata ,0 ,rega 
+6adb 1a30fe00 byteswap rega ,pdata 
+6adc 1840a408 add temp ,8 ,regb 
+6add e2410000 istore 2 ,regb 
+6ade 1a20a203 increase 3 ,rega 
+6adf 1a30fe00 byteswap rega ,pdata 
+6ae0 1840a405 add temp ,5 ,regb 
+6ae1 e2410000 istore 2 ,regb 
+6ae2 1a20a203 increase 3 ,rega 
+6ae3 1a30fe00 byteswap rega ,pdata 
+6ae4 1840a403 add temp ,3 ,regb 
+6ae5 e2410000 istore 2 ,regb 
+6ae6 1a20a205 increase 5 ,rega 
+6ae7 1a227e00 copy rega ,pdata 
+6ae8 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6ae9 58000036 setarg 0x36 
+6aea 1840a407 add temp ,7 ,regb 
+6aeb e2408000 istore 1 ,regb 
+6aec 58000005 setarg 5 
+6aed e0408000 istore 1 ,temp 
+6aee 68010447 fetch 2 ,mem_sdp_transactionid 
+6aef 1840a401 add temp ,1 ,regb 
+6af0 e2410000 istore 2 ,regb 
+6af1 20600000 rtn 
+
+serviceattribute_req_all:
+6af2 e8c08000 ifetch 1 ,contr 
+6af3 c0856d43 bne 0xa ,sdp_invalid_reqest_syntax 
+6af4 e8c10000 ifetch 2 ,contr 
+6af5 243a6d43 nbranch sdp_invalid_reqest_syntax ,blank 
+6af6 e8c08000 ifetch 1 ,contr 
+6af7 c0ffed43 bne 0xff ,sdp_invalid_reqest_syntax 
+6af8 e8c08000 ifetch 1 ,contr 
+6af9 c0ffed43 bne 0xff ,sdp_invalid_reqest_syntax 
+6afa 196097fb increase -5 ,timeup 
+6afb e8c08000 ifetch 1 ,contr 
+6afc c0006aff beq 0 ,continue_zero 
+6afd c000eb02 beq 1 ,continue_one_byte 
+6afe c0016b06 beq 2 ,continue_two_byte 
+
+continue_zero:
+6aff 60010444 store 2 ,mem_sdp_continue_byte 
+6b00 196097ff increase -1 ,timeup 
+6b01 20206b0a branch continue_end 
+
+continue_one_byte:
+6b02 e8c08000 ifetch 1 ,contr 
+6b03 60010444 store 2 ,mem_sdp_continue_byte 
+6b04 196097fe increase -2 ,timeup 
+6b05 20206b0a branch continue_end 
+
+continue_two_byte:
+6b06 e8c10000 ifetch 2 ,contr 
+6b07 1ff0fe00 byteswap pdata ,pdata 
+6b08 60010444 store 2 ,mem_sdp_continue_byte 
+6b09 196097fd increase -3 ,timeup 
+
+continue_end:
+6b0a 2422ed3d nbranch sdp_invalid_pdu_size ,zero 
+6b0b 79200025 set1 mark_ext_patch ,mark 
+6b0c 44e34038 bpatch patch38_6 ,mem_patch38 
+6b0d 20406e20 call search_handle 
+6b0e 2422ed3a nbranch sdp_invalid_service_record_handle ,zero 
+6b0f 18c22200 copy contr ,rega 
+6b10 20404878 call l2cap_get_sdp_tx_payload 
+6b11 1a220c00 copy rega ,contr 
+6b12 18a08a03 increase 3 ,contw 
+6b13 18c21600 copy contr ,timeup 
+6b14 20406dea call sdp_get_data 
+6b15 1fe22200 copy pdata ,rega 
+6b16 68010444 fetch 2 ,mem_sdp_continue_byte 
+6b17 1fe22400 copy pdata ,regb 
+6b18 1a227e00 copy rega ,pdata 
+6b19 9a462400 isub regb ,regb 
+6b1a 68010449 fetch 2 ,mem_sdp_attribute_maxbyte 
+6b1b 9a467c00 isub regb ,null 
+6b1c 24216b38 nbranch fragment_sdp ,positive 
+6b1d 78547c00 disable user 
+6b1e 68010444 fetch 2 ,mem_sdp_continue_byte 
+6b1f 203a6b2b branch fisrt_fragment ,blank 
+6b20 99608c00 iadd timeup ,contr 
+6b21 1a40a403 increase 3 ,regb 
+6b22 1a427200 copy regb ,loopcnt 
+6b23 1f227e00 copy loopcnt ,pdata 
+6b24 1fe0fe03 increase 3 ,pdata 
+6b25 1ff0fe00 byteswap pdata ,pdata 
+6b26 e0a10000 istore 2 ,contw 
+6b27 1f227e00 copy loopcnt ,pdata 
+6b28 1ff0fe00 byteswap pdata ,pdata 
+6b29 e0a10000 istore 2 ,contw 
+6b2a 20206b46 branch answer_attributelist_full_loop 
+
+fisrt_fragment:
+6b2b 1a20f206 add rega ,6 ,loopcnt 
+6b2c 20346b2f branch parlength_continue_byte ,user 
+6b2d 1f30fe00 byteswap loopcnt ,pdata 
+6b2e 20206b32 branch parlength_continue_byte_end 
+
+parlength_continue_byte:
+6b2f 1f227e00 copy loopcnt ,pdata 
+6b30 1fe0fe02 increase 2 ,pdata 
+6b31 1ff0fe00 byteswap pdata ,pdata 
+
+parlength_continue_byte_end:
+6b32 e0a10000 istore 2 ,contw 
+6b33 1f20f3fd increase -3 ,loopcnt 
+6b34 1f30fe00 byteswap loopcnt ,pdata 
+6b35 e0a10000 istore 2 ,contw 
+6b36 19620c00 copy timeup ,contr 
+6b37 20206b46 branch answer_attributelist_full_loop 
+
+fragment_sdp:
+6b38 78347c00 enable user 
+6b39 68010449 fetch 2 ,mem_sdp_attribute_maxbyte 
+6b3a 1fe22200 copy pdata ,rega 
+6b3b 1fe27200 copy pdata ,loopcnt 
+6b3c 68010444 fetch 2 ,mem_sdp_continue_byte 
+6b3d 203a6b2b branch fisrt_fragment ,blank 
+6b3e 99608c00 iadd timeup ,contr 
+6b3f 1a227e00 copy rega ,pdata 
+6b40 1fe0fe05 increase 5 ,pdata 
+6b41 1ff0fe00 byteswap pdata ,pdata 
+6b42 e0a10000 istore 2 ,contw 
+6b43 1a227e00 copy rega ,pdata 
+6b44 1ff0fe00 byteswap pdata ,pdata 
+6b45 e0a10000 istore 2 ,contw 
+
+answer_attributelist_full_loop:
+6b46 e8c08000 ifetch 1 ,contr 
+6b47 e0a08000 istore 1 ,contw 
+6b48 c2006b46 loop answer_attributelist_full_loop 
+6b49 24346b51 nbranch last_frag_continue ,user 
+6b4a 18007e02 force 2 ,pdata 
+6b4b e0a08000 istore 1 ,contw 
+6b4c 18c27e00 copy contr ,pdata 
+6b4d 99667e00 isub timeup ,pdata 
+6b4e 1ff0fe00 byteswap pdata ,pdata 
+6b4f e0a10000 istore 2 ,contw 
+6b50 20206b53 branch sdp_frag_end 
+
+last_frag_continue:
+6b51 18007e00 force 0 ,pdata 
+6b52 e0a08000 istore 1 ,contw 
+
+sdp_frag_end:
+6b53 6801029c fetch 2 ,mem_sdp_tx_payload_ptr 
+6b54 98a67e00 isub contw ,pdata 
+6b55 1fe67e00 sub pdata ,0 ,pdata 
+6b56 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6b57 20404878 call l2cap_get_sdp_tx_payload 
+6b58 58000005 setarg 5 
+6b59 e0a08000 istore 1 ,contw 
+6b5a 68010447 fetch 2 ,mem_sdp_transactionid 
+6b5b e0a10000 istore 2 ,contw 
+6b5c 20600000 rtn 
+
+patch_servicesearchattribute_req:
+6b5d 20406d4f call ask_serviceclassid 
+6b5e 2841feff compare 0xff ,temp ,0xff 
+6b5f 2020eb88 branch patch_servicesearchattribute_req_all ,true 
+6b60 e8c10000 ifetch 2 ,contr 
+6b61 1ff0fe00 byteswap pdata ,pdata 
+6b62 1fe0ffee increase -18 ,pdata 
+6b63 60010449 store 2 ,mem_sdp_attribute_maxbyte 
+6b64 196097fe increase -2 ,timeup 
+6b65 20406da6 call dataelementtype6 
+6b66 d8a00428 arg mem_attrib_list ,contw 
+6b67 18000e00 force 0 ,queue 
+
+patch_servicesearchattribute_req_loop:
+6b68 e8c18000 ifetch 3 ,contr 
+6b69 c084eb88 bne 0x09 ,patch_servicesearchattribute_req_all 
+
+patch_servicesearchattribute_req_uuid:
+6b6a 1fecfe00 rshift8 pdata ,pdata 
+6b6b e0a10000 istore 2 ,contw 
+6b6c 18e08e01 increase 1 ,queue 
+6b6d 196097fd increase -3 ,timeup 
+6b6e 1a20a3fd increase -3 ,rega 
+6b6f 24216d43 nbranch sdp_invalid_reqest_syntax ,positive 
+6b70 2422eb68 nbranch patch_servicesearchattribute_req_loop ,zero 
+6b71 196097ff increase -1 ,timeup 
+6b72 2422ed43 nbranch sdp_invalid_reqest_syntax ,zero 
+
+patch_servicesearchattribute_req_search:
+6b73 20404878 call l2cap_get_sdp_tx_payload 
+6b74 18a08a0d increase 13 ,contw 
+6b75 68010440 fetch 2 ,mem_uuid_search_pat 
+6b76 98002600 iforce regc 
+6b77 da200428 arg mem_attrib_list ,rega 
+
+patch_answer_attributelist_next:
+6b78 ea220000 ifetch 4 ,rega 
+6b79 203a6bae branch patch_answer_attributelist_end ,blank 
+6b7a ea210000 ifetch 2 ,rega 
+6b7b 98002400 iforce regb 
+6b7c 20406e2e call search_attrib 
+6b7d 203a6b86 branch patch_answer_attributelist_notfound ,blank 
+6b7e 18c08dfd increase -3 ,contr 
+6b7f e8c18000 ifetch 3 ,contr 
+6b80 e0a18000 istore 3 ,contw 
+6b81 20406cea call patch_sdp_data_len 
+6b82 98007200 iforce loopcnt 
+
+patch_answer_attributelist_attrib_loop:
+6b83 e8c08000 ifetch 1 ,contr 
+6b84 e0a08000 istore 1 ,contw 
+6b85 c2006b83 loop patch_answer_attributelist_attrib_loop 
+
+patch_answer_attributelist_notfound:
+6b86 1a20a202 increase 2 ,rega 
+6b87 20206b78 branch patch_answer_attributelist_next 
+
+patch_servicesearchattribute_req_all:
+6b88 79200025 set1 mark_ext_patch ,mark 
+6b89 44e3c038 bpatch patch38_7 ,mem_patch38 
+6b8a e8c08000 ifetch 1 ,contr 
+6b8b e8c08000 ifetch 1 ,contr 
+6b8c 196097fb increase -5 ,timeup 
+6b8d 1a20a3fb increase -5 ,rega 
+6b8e 24216d43 nbranch sdp_invalid_reqest_syntax ,positive 
+6b8f e8c08000 ifetch 1 ,contr 
+6b90 196097ff increase -1 ,timeup 
+6b91 70044400 jam 0 ,mem_sdp_continue_byte 
+6b92 70044500 jam 0 ,mem_sdp_continue_byte + 1 
+6b93 243a6b9f nbranch patch_servicesearchattribute_req_all_continue ,blank 
+6b94 d9600440 arg mem_uuid_search_pat ,timeup 
+6b95 e9610000 ifetch 2 ,timeup 
+6b96 19609602 increase 2 ,timeup 
+6b97 20406e09 call search_uuid 
+6b98 18e27e00 deposit queue 
+6b99 60008474 store 1 ,mem_handle_humber 
+6b9a 203a6dc0 branch empty_ssa_rsp ,blank 
+6b9b d8e00000 arg 0 ,queue 
+6b9c 20404878 call l2cap_get_sdp_tx_payload 
+6b9d 18a08a0a increase 10 ,contw 
+6b9e 20206c05 branch servicesearchattribute_req_next_handle 
+
+patch_servicesearchattribute_req_all_continue:
+6b9f e8c10000 ifetch 2 ,contr 
+6ba0 196097fe increase -2 ,timeup 
+6ba1 1ff0fe00 byteswap pdata ,pdata 
+6ba2 60010444 store 2 ,mem_sdp_continue_byte 
+6ba3 d9600440 arg mem_uuid_search_pat ,timeup 
+6ba4 e9610000 ifetch 2 ,timeup 
+6ba5 19609602 increase 2 ,timeup 
+6ba6 20406e09 call search_uuid 
+6ba7 18e27e00 deposit queue 
+6ba8 60008474 store 1 ,mem_handle_humber 
+6ba9 203a6dc0 branch empty_ssa_rsp ,blank 
+6baa d8e00000 arg 0 ,queue 
+6bab 20404878 call l2cap_get_sdp_tx_payload 
+6bac 18a08a07 increase 7 ,contw 
+6bad 20206c14 branch servicesearchattribute_req_next_handle_continue 
+
+patch_answer_attributelist_end:
+6bae 18007e00 force 0 ,pdata 
+6baf e0a08000 istore 1 ,contw 
+6bb0 18a08bff increase -1 ,contw 
+6bb1 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6bb2 1840fe0d add temp ,13 ,pdata 
+6bb3 98a67e00 isub contw ,pdata 
+6bb4 2022ebd2 branch patch_no_attribute_return ,zero 
+6bb5 1fe67e00 sub pdata ,0 ,pdata 
+6bb6 1840a40c add temp ,12 ,regb 
+6bb7 e2408000 istore 1 ,regb 
+6bb8 1fe0fe03 increase 3 ,pdata 
+6bb9 1840a409 add temp ,9 ,regb 
+6bba e2408000 istore 1 ,regb 
+6bbb 1fe0fe03 increase 3 ,pdata 
+6bbc 1ff0fe00 byteswap pdata ,pdata 
+6bbd 1840a405 add temp ,5 ,regb 
+6bbe e2410000 istore 2 ,regb 
+6bbf 1fecfe00 rshift8 pdata ,pdata 
+6bc0 1fe0fe03 increase 3 ,pdata 
+6bc1 1ff0fe00 byteswap pdata ,pdata 
+6bc2 1840a403 add temp ,3 ,regb 
+6bc3 e2410000 istore 2 ,regb 
+6bc4 1fecfe00 rshift8 pdata ,pdata 
+6bc5 1fe0fe05 increase 5 ,pdata 
+6bc6 6000829e store 1 ,mem_sdp_tx_pkt_length 
+6bc7 68010447 fetch 2 ,mem_sdp_transactionid 
+6bc8 1840a401 add temp ,1 ,regb 
+6bc9 e2410000 istore 2 ,regb 
+6bca 58000007 setarg 7 
+6bcb e0408000 istore 1 ,temp 
+6bcc 58000036 setarg 0x0036 
+6bcd 1840a407 add temp ,7 ,regb 
+6bce e2410000 istore 2 ,regb 
+6bcf 1840a40a add temp ,10 ,regb 
+6bd0 e2410000 istore 2 ,regb 
+6bd1 20600000 rtn 
+
+patch_no_attribute_return:
+6bd2 70029e0a jam 10 ,mem_sdp_tx_pkt_length 
+6bd3 20404878 call l2cap_get_sdp_tx_payload 
+6bd4 58000007 setarg 7 
+6bd5 e0a08000 istore 1 ,contw 
+6bd6 68010447 fetch 2 ,mem_sdp_transactionid 
+6bd7 e0a10000 istore 2 ,contw 
+6bd8 58000500 setarg 0x0500 
+6bd9 e0a10000 istore 2 ,contw 
+6bda 58000200 setarg 0x0200 
+6bdb e0a10000 istore 2 ,contw 
+6bdc 58000035 setarg 0x000035 
+6bdd e0a18000 istore 3 ,contw 
+6bde 20600000 rtn 
+
+servicesearchattribute_req_attributelist_loop:
+6bdf e8c08000 ifetch 1 ,contr 
+6be0 e0a08000 istore 1 ,contw 
+6be1 1a40a401 increase 1 ,regb 
+6be2 1a20a3ff increase -1 ,rega 
+6be3 2022ebe5 branch servicesearchattribute_req_check_next_ctn ,zero 
+6be4 c2006bdf loop servicesearchattribute_req_attributelist_loop 
+
+servicesearchattribute_req_check_next_ctn:
+6be5 18a21600 copy contw ,timeup 
+6be6 1a427e00 copy regb ,pdata 
+6be7 60010444 store 2 ,mem_sdp_continue_byte 
+6be8 1a227e00 copy rega ,pdata 
+6be9 60010449 store 2 ,mem_sdp_attribute_maxbyte 
+6bea 203a6c26 branch answer_attributelist_with_ctn_bytes ,blank 
+6beb 20346c85 branch answer_attributelist_with_ctn_end ,user 
+6bec 19620a00 copy timeup ,contw 
+
+servicesearchattribute_req_check_handle:
+6bed 18e08e01 increase 1 ,queue 
+6bee 68008474 fetch 1 ,mem_handle_humber 
+6bef 98e67c00 isub queue ,null 
+6bf0 2422ec05 nbranch servicesearchattribute_req_next_handle ,zero 
+6bf1 20206ca4 branch answer_attributelist_end_long 
+
+servicesearchattribute_req_attributelist_loop_continue:
+6bf2 e8c08000 ifetch 1 ,contr 
+6bf3 e0a08000 istore 1 ,contw 
+6bf4 1a40a401 increase 1 ,regb 
+6bf5 1a20a3ff increase -1 ,rega 
+6bf6 2022ebf8 branch servicesearchattribute_req_check_next_ctn_continue ,zero 
+6bf7 c2006bf2 loop servicesearchattribute_req_attributelist_loop_continue 
+
+servicesearchattribute_req_check_next_ctn_continue:
+6bf8 18a21600 copy contw ,timeup 
+6bf9 1a427e00 copy regb ,pdata 
+6bfa 60010444 store 2 ,mem_sdp_continue_byte 
+6bfb 1a227e00 copy rega ,pdata 
+6bfc 60010449 store 2 ,mem_sdp_attribute_maxbyte 
+6bfd 203a6c61 branch answer_attributelist_with_ctn_bytes_continue ,blank 
+6bfe 20346c85 branch answer_attributelist_with_ctn_end ,user 
+6bff 19620a00 copy timeup ,contw 
+
+servicesearchattribute_req_check_handle_continue:
+6c00 18e08e01 increase 1 ,queue 
+6c01 68008474 fetch 1 ,mem_handle_humber 
+6c02 98e67c00 isub queue ,null 
+6c03 2422ec14 nbranch servicesearchattribute_req_next_handle_continue ,zero 
+6c04 20206ccc branch answer_attributelist_end_long_continue 
+
+servicesearchattribute_req_next_handle:
+6c05 d8c0045c arg mem_handle_list ,contr 
+6c06 18ebfe00 lshift2 queue ,pdata 
+6c07 98c08c00 iadd contr ,contr 
+6c08 e8c20000 ifetch 4 ,contr 
+6c09 98000400 iforce temp 
+6c0a 20406e20 call search_handle 
+6c0b 18c21600 copy contr ,timeup 
+6c0c 20406dea call sdp_get_data 
+6c0d 1fe0f203 add pdata ,3 ,loopcnt 
+6c0e 68010449 fetch 2 ,mem_sdp_attribute_maxbyte 
+6c0f 1fe22200 copy pdata ,rega 
+6c10 68010444 fetch 2 ,mem_sdp_continue_byte 
+6c11 1fe22400 copy pdata ,regb 
+6c12 19620c00 copy timeup ,contr 
+6c13 20206bdf branch servicesearchattribute_req_attributelist_loop 
+
+servicesearchattribute_req_next_handle_continue:
+6c14 d8c0045c arg mem_handle_list ,contr 
+6c15 18ebfe00 lshift2 queue ,pdata 
+6c16 98c08c00 iadd contr ,contr 
+6c17 e8c20000 ifetch 4 ,contr 
+6c18 98000400 iforce temp 
+6c19 20406e20 call search_handle 
+6c1a 18c21600 copy contr ,timeup 
+6c1b 20406dea call sdp_get_data 
+6c1c 1fe0fe03 add pdata ,3 ,pdata 
+6c1d 68090444 fetcht 2 ,mem_sdp_continue_byte 
+6c1e 98467200 isub temp ,loopcnt 
+6c1f 68010449 fetch 2 ,mem_sdp_attribute_maxbyte 
+6c20 1fe22200 copy pdata ,rega 
+6c21 68010444 fetch 2 ,mem_sdp_continue_byte 
+6c22 1fe22400 copy pdata ,regb 
+6c23 19620c00 copy timeup ,contr 
+6c24 98c08c00 iadd contr ,contr 
+6c25 20206bf2 branch servicesearchattribute_req_attributelist_loop_continue 
+
+answer_attributelist_with_ctn_bytes:
+6c26 d8e00000 arg 0 ,queue 
+6c27 da400000 arg 0 ,regb 
+
+answer_attributelist_calc_attribute_length:
+6c28 d8c0045c arg mem_handle_list ,contr 
+6c29 18ebfe00 lshift2 queue ,pdata 
+6c2a 98c08c00 iadd contr ,contr 
+6c2b e8c20000 ifetch 4 ,contr 
+6c2c 98000400 iforce temp 
+6c2d 20406e20 call search_handle 
+6c2e 20406dea call sdp_get_data 
+6c2f 1fe0fe03 add pdata ,3 ,pdata 
+6c30 9a40a400 iadd regb ,regb 
+6c31 18e08e01 increase 1 ,queue 
+6c32 68008474 fetch 1 ,mem_handle_humber 
+6c33 98e67c00 isub queue ,null 
+6c34 2422ec28 nbranch answer_attributelist_calc_attribute_length ,zero 
+6c35 19620a00 copy timeup ,contw 
+6c36 18007e02 force 2 ,pdata 
+6c37 e0a08000 istore 1 ,contw 
+6c38 68010444 fetch 2 ,mem_sdp_continue_byte 
+6c39 1ff0fe00 byteswap pdata ,pdata 
+6c3a e0a10000 istore 2 ,contw 
+6c3b 18a08bfd increase -3 ,contw 
+6c3c 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6c3d 1840fe0a add temp ,10 ,pdata 
+6c3e 98a67e00 isub contw ,pdata 
+6c3f 1fe67e00 sub pdata ,0 ,pdata 
+6c40 98002200 iforce rega 
+6c41 1a427e00 deposit regb 
+6c42 1840a409 add temp ,9 ,regb 
+6c43 e2408000 istore 1 ,regb 
+6c44 1fecfe00 rshift8 pdata ,pdata 
+6c45 1840a408 add temp ,8 ,regb 
+6c46 e2408000 istore 1 ,regb 
+6c47 1a20a203 increase 3 ,rega 
+6c48 1a227e00 deposit rega 
+6c49 1840a406 add temp ,6 ,regb 
+6c4a e2408000 istore 1 ,regb 
+6c4b 1fecfe00 rshift8 pdata ,pdata 
+6c4c 1840a405 add temp ,5 ,regb 
+6c4d e2408000 istore 1 ,regb 
+6c4e 1a20a205 increase 5 ,rega 
+6c4f 1a227e00 deposit rega 
+6c50 1840a404 add temp ,4 ,regb 
+6c51 e2408000 istore 1 ,regb 
+6c52 1fecfe00 rshift8 pdata ,pdata 
+6c53 1840a403 add temp ,3 ,regb 
+6c54 e2408000 istore 1 ,regb 
+6c55 1a20a205 increase 5 ,rega 
+6c56 1a227e00 deposit rega 
+6c57 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6c58 58000007 setarg 7 
+6c59 e0408000 istore 1 ,temp 
+6c5a 58000036 setarg 0x36 
+6c5b 1840a407 add temp ,7 ,regb 
+6c5c e2408000 istore 1 ,regb 
+6c5d 1840a401 add temp ,1 ,regb 
+6c5e 68010447 fetch 2 ,mem_sdp_transactionid 
+6c5f e2410000 istore 2 ,regb 
+6c60 20600000 rtn 
+
+answer_attributelist_with_ctn_bytes_continue:
+6c61 d8e00000 arg 0 ,queue 
+6c62 da400000 arg 0 ,regb 
+
+answer_attributelist_calc_attribute_length_continue:
+6c63 19620a00 copy timeup ,contw 
+6c64 18007e02 force 2 ,pdata 
+6c65 e0a08000 istore 1 ,contw 
+6c66 68010444 fetch 2 ,mem_sdp_continue_byte 
+6c67 1ff0fe00 byteswap pdata ,pdata 
+6c68 e0a10000 istore 2 ,contw 
+6c69 18a08bfd increase -3 ,contw 
+6c6a 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6c6b 1840fe07 add temp ,7 ,pdata 
+6c6c 98a67e00 isub contw ,pdata 
+6c6d 1fe67e00 sub pdata ,0 ,pdata 
+6c6e 98002200 iforce rega 
+6c6f 1a227e00 deposit rega 
+6c70 1840a406 add temp ,6 ,regb 
+6c71 e2408000 istore 1 ,regb 
+6c72 1fecfe00 rshift8 pdata ,pdata 
+6c73 1840a405 add temp ,5 ,regb 
+6c74 e2408000 istore 1 ,regb 
+6c75 1a20a205 increase 5 ,rega 
+6c76 1a227e00 deposit rega 
+6c77 1840a404 add temp ,4 ,regb 
+6c78 e2408000 istore 1 ,regb 
+6c79 1fecfe00 rshift8 pdata ,pdata 
+6c7a 1840a403 add temp ,3 ,regb 
+6c7b e2408000 istore 1 ,regb 
+6c7c 1a20a205 increase 5 ,rega 
+6c7d 1a227e00 deposit rega 
+6c7e 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6c7f 58000007 setarg 7 
+6c80 e0408000 istore 1 ,temp 
+6c81 1840a401 add temp ,1 ,regb 
+6c82 68010447 fetch 2 ,mem_sdp_transactionid 
+6c83 e2410000 istore 2 ,regb 
+6c84 20600000 rtn 
+
+answer_attributelist_with_ctn_end:
+6c85 19620a00 copy timeup ,contw 
+6c86 18007e00 force 0 ,pdata 
+6c87 e0a08000 istore 1 ,contw 
+6c88 18a08bff increase -1 ,contw 
+6c89 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6c8a 1840fe07 add temp ,7 ,pdata 
+6c8b 98a67e00 isub contw ,pdata 
+6c8c 1fe67e00 sub pdata ,0 ,pdata 
+6c8d 98002200 iforce rega 
+6c8e 1a227e00 deposit rega 
+6c8f 1840a406 add temp ,6 ,regb 
+6c90 e2408000 istore 1 ,regb 
+6c91 1fecfe00 rshift8 pdata ,pdata 
+6c92 1840a405 add temp ,5 ,regb 
+6c93 e2408000 istore 1 ,regb 
+6c94 1a20a203 increase 3 ,rega 
+6c95 1a227e00 deposit rega 
+6c96 1840a404 add temp ,4 ,regb 
+6c97 e2408000 istore 1 ,regb 
+6c98 1fecfe00 rshift8 pdata ,pdata 
+6c99 1840a403 add temp ,3 ,regb 
+6c9a e2408000 istore 1 ,regb 
+6c9b 1a20a205 increase 5 ,rega 
+6c9c 1a227e00 deposit rega 
+6c9d 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6c9e 58000007 setarg 7 
+6c9f e0408000 istore 1 ,temp 
+6ca0 68010447 fetch 2 ,mem_sdp_transactionid 
+6ca1 1840a401 add temp ,1 ,regb 
+6ca2 e2410000 istore 2 ,regb 
+6ca3 20600000 rtn 
+
+answer_attributelist_end_long:
+6ca4 18007e00 force 0 ,pdata 
+6ca5 e0a08000 istore 1 ,contw 
+6ca6 18a08bff increase -1 ,contw 
+6ca7 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6ca8 1840fe0a add temp ,10 ,pdata 
+6ca9 98a67e00 isub contw ,pdata 
+6caa 1fe67e00 sub pdata ,0 ,pdata 
+6cab 98002200 iforce rega 
+6cac 1a227e00 deposit rega 
+6cad 1840a409 add temp ,9 ,regb 
+6cae e2408000 istore 1 ,regb 
+6caf 1fecfe00 rshift8 pdata ,pdata 
+6cb0 1840a408 add temp ,8 ,regb 
+6cb1 e2408000 istore 1 ,regb 
+6cb2 1a20a203 increase 3 ,rega 
+6cb3 1a227e00 deposit rega 
+6cb4 1840a406 add temp ,6 ,regb 
+6cb5 e2408000 istore 1 ,regb 
+6cb6 1fecfe00 rshift8 pdata ,pdata 
+6cb7 1840a405 add temp ,5 ,regb 
+6cb8 e2408000 istore 1 ,regb 
+6cb9 1a20a203 increase 3 ,rega 
+6cba 1a227e00 deposit rega 
+6cbb 1840a404 add temp ,4 ,regb 
+6cbc e2408000 istore 1 ,regb 
+6cbd 1fecfe00 rshift8 pdata ,pdata 
+6cbe 1840a403 add temp ,3 ,regb 
+6cbf e2408000 istore 1 ,regb 
+6cc0 1a20a205 increase 5 ,rega 
+6cc1 1a227e00 deposit rega 
+6cc2 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6cc3 58000036 setarg 0x36 
+6cc4 1840a407 add temp ,7 ,regb 
+6cc5 e2408000 istore 1 ,regb 
+6cc6 58000007 setarg 7 
+6cc7 e0408000 istore 1 ,temp 
+6cc8 68010447 fetch 2 ,mem_sdp_transactionid 
+6cc9 1840a401 add temp ,1 ,regb 
+6cca e2410000 istore 2 ,regb 
+6ccb 20600000 rtn 
+
+answer_attributelist_end_long_continue:
+6ccc 18007e00 force 0 ,pdata 
+6ccd e0a08000 istore 1 ,contw 
+6cce 18a08bff increase -1 ,contw 
+6ccf 6809029c fetcht 2 ,mem_sdp_tx_payload_ptr 
+6cd0 1840fe07 add temp ,7 ,pdata 
+6cd1 98a67e00 isub contw ,pdata 
+6cd2 1fe67e00 sub pdata ,0 ,pdata 
+6cd3 98002200 iforce rega 
+6cd4 1a227e00 deposit rega 
+6cd5 1840a406 add temp ,6 ,regb 
+6cd6 e2408000 istore 1 ,regb 
+6cd7 1fecfe00 rshift8 pdata ,pdata 
+6cd8 1840a405 add temp ,5 ,regb 
+6cd9 e2408000 istore 1 ,regb 
+6cda 1a20a203 increase 3 ,rega 
+6cdb 1a227e00 deposit rega 
+6cdc 1840a404 add temp ,4 ,regb 
+6cdd e2408000 istore 1 ,regb 
+6cde 1fecfe00 rshift8 pdata ,pdata 
+6cdf 1840a403 add temp ,3 ,regb 
+6ce0 e2408000 istore 1 ,regb 
+6ce1 1a20a205 increase 5 ,rega 
+6ce2 1a227e00 deposit rega 
+6ce3 6001029e store 2 ,mem_sdp_tx_pkt_length 
+6ce4 58000007 setarg 7 
+6ce5 e0408000 istore 1 ,temp 
+6ce6 68010447 fetch 2 ,mem_sdp_transactionid 
+6ce7 1840a401 add temp ,1 ,regb 
+6ce8 e2410000 istore 2 ,regb 
+6ce9 20600000 rtn 
+
+patch_sdp_data_len:
+6cea 18c21600 copy contr ,timeup 
+6ceb e8c08000 ifetch 1 ,contr 
+6cec 1fe17207 and pdata ,0x07 ,loopcnt 
+6ced 1fe97e00 rshift3 pdata ,pdata 
+6cee c0036cf3 beq 6 ,patch_sdp_data_len_6 
+6cef c000ede2 beq 1 ,sdp_data_len_1 
+6cf0 c0026de7 beq 4 ,sdp_data_len_6 
+6cf1 c002ede5 beq 5 ,sdp_data_len_5 
+6cf2 20206de0 branch sdp_data_len_rtn 
+
+patch_sdp_data_len_6:
+6cf3 20406cf5 call patch_sdp_get_data_6 
+6cf4 20206de0 branch sdp_data_len_rtn 
+
+patch_sdp_get_data_6:
+6cf5 1f227e00 deposit loopcnt 
+6cf6 c002ecfa beq 5 ,patch_sdp_get_data_6_8bit 
+6cf7 c0036cfd beq 6 ,patch_sdp_get_data_6_16bit 
+6cf8 18007203 force 3 ,loopcnt 
+6cf9 20206df1 branch sdp_get_data_1 
+
+patch_sdp_get_data_6_8bit:
+6cfa e8c08000 ifetch 1 ,contr 
+6cfb 1fe0fe02 increase 2 ,pdata 
+6cfc 20600000 rtn 
+
+patch_sdp_get_data_6_16bit:
+6cfd e8c10000 ifetch 2 ,contr 
+6cfe 1ff0fe00 byteswap pdata ,pdata 
+6cff 1fe0fe03 increase 3 ,pdata 
+6d00 20600000 rtn 
+
+sdp_send_spp_request:
+6d01 20404878 call l2cap_get_sdp_tx_payload 
+6d02 1fe20a00 copy pdata ,contw 
+6d03 58000006 setarg 6 
+6d04 e0a08000 istore 1 ,contw 
+6d05 5800006e setarg sdp_tid_spp 
+6d06 e0a10000 istore 2 ,contw 
+6d07 58000f00 setarg 0x0f00 
+6d08 e0a10000 istore 2 ,contw 
+6d09 581a0535 setarg 0x1a0535 
+6d0a e0a18000 istore 3 ,contw 
+6d0b 58000111 setarg 0x0111 
+6d0c 1ff07e00 lshift16 pdata ,pdata 
+6d0d e0a20000 istore 4 ,contw 
+6d0e 58002600 setarg 0x2600 
+6d0f e0a10000 istore 2 ,contw 
+6d10 58000335 setarg 0x0335 
+6d11 e0a10000 istore 2 ,contw 
+6d12 58000009 setarg 0x0009 
+6d13 e0a10000 istore 2 ,contw 
+6d14 58000004 setarg 0x0004 
+6d15 e0a10000 istore 2 ,contw 
+6d16 70029e14 jam 0x14 ,mem_sdp_tx_pkt_length 
+6d17 20600000 rtn 
+
+servicesearchattribute_res:
+6d18 18c20400 copy contr ,temp 
+6d19 68010447 fetch 2 ,mem_sdp_transactionid 
+6d1a c0376d1c beq sdp_tid_spp ,servicesearchattribute_res_spp 
+6d1b 20206d25 branch srchfail 
+
+servicesearchattribute_res_spp:
+6d1c 18420c00 copy temp ,contr 
+6d1d 196097fd increase -3 ,timeup 
+6d1e 19627e00 copy timeup ,pdata 
+6d1f c0016d25 beq 2 ,srchfail 
+6d20 20406d26 call find_rfcomm_channel_number 
+6d21 20740000 rtn user 
+6d22 6000c5fc store 1 ,mem_remote_spp_channel 
+6d23 7002ae17 jam recieve_ss_reasult_hf ,mem_message_to_uppersm 
+6d24 20600000 rtn 
+
+srchfail:
+6d25 20600000 rtn 
+
+find_rfcomm_channel_number:
+6d26 78347c00 enable user 
+6d27 1fe27200 copy pdata ,loopcnt 
+6d28 d8400400 arg 0x0400 ,temp 
+
+find_rfcomm_channel_number_loop:
+6d29 e8c10000 ifetch 2 ,contr 
+6d2a 98467c00 isub temp ,null 
+6d2b 2022ed2f branch find_rfcomm_channel_number_find_adl ,zero 
+6d2c 18c08dff increase -1 ,contr 
+6d2d c2006d29 loop find_rfcomm_channel_number_loop 
+6d2e 20600000 rtn 
+
+find_rfcomm_channel_number_find_adl:
+6d2f d8400300 arg 0x0300 ,temp 
+
+find_rfcomm_channel_number_loop2:
+6d30 e8c10000 ifetch 2 ,contr 
+6d31 98467c00 isub temp ,null 
+6d32 2022ed36 branch find_rfcomm_channel_number_find_rfcomm ,zero 
+6d33 18c08dff increase -1 ,contr 
+6d34 c2006d30 loop find_rfcomm_channel_number_loop2 
+6d35 20600000 rtn 
+
+find_rfcomm_channel_number_find_rfcomm:
+6d36 e8c08000 ifetch 1 ,contr 
+6d37 e8c08000 ifetch 1 ,contr 
+6d38 78547c00 disable user 
+6d39 20600000 rtn 
+
+sdp_invalid_service_record_handle:
+6d3a 58000200 setarg 0x0200 
+6d3b 6001044d store 2 ,mem_sdp_error_code 
+6d3c 20206d45 branch sdp_error_response 
+
+sdp_invalid_pdu_size:
+6d3d 58000400 setarg 0x0400 
+6d3e 6001044d store 2 ,mem_sdp_error_code 
+6d3f 20206d45 branch sdp_error_response 
+
+sdp_insufficient_resource:
+6d40 58000600 setarg 0x0600 
+6d41 6001044d store 2 ,mem_sdp_error_code 
+6d42 20206d45 branch sdp_error_response 
+
+sdp_invalid_reqest_syntax:
+6d43 58000300 setarg 0x0300 
+6d44 6001044d store 2 ,mem_sdp_error_code 
+
+sdp_error_response:
+6d45 20404878 call l2cap_get_sdp_tx_payload 
+6d46 e0a08000 istore 1 ,contw 
+6d47 68010447 fetch 2 ,mem_sdp_transactionid 
+6d48 e0a10000 istore 2 ,contw 
+6d49 58000200 setarg 0x0200 
+6d4a e0a10000 istore 2 ,contw 
+6d4b 6801044d fetch 2 ,mem_sdp_error_code 
+6d4c e0a10000 istore 2 ,contw 
+6d4d 70029e07 jam 7 ,mem_sdp_tx_pkt_length 
+6d4e 20600000 rtn 
+
+ask_serviceclassid:
+6d4f 79200025 set1 mark_ext_patch ,mark 
+6d50 44e44039 bpatch patch39_0 ,mem_patch39 
+6d51 18000400 force 0 ,temp 
+6d52 d8a00440 arg mem_uuid_search_pat ,contw 
+6d53 20406da6 call dataelementtype6 
+6d54 2022eda4 branch asksrv_error ,zero 
+
+classidloop:
+6d55 e8c08000 ifetch 1 ,contr 
+6d56 1a20a3ff increase -1 ,rega 
+6d57 196097ff increase -1 ,timeup 
+6d58 2fe1f018 compare 0x18 ,pdata ,0xf8 
+6d59 2420eda4 nbranch asksrv_error ,true 
+6d5a 2fe00e04 compare 0x04 ,pdata ,0x07 
+6d5b 2420ed72 nbranch cmp032 ,true 
+6d5c 18000401 force 1 ,temp 
+
+skip2bytes:
+6d5d e8c08000 ifetch 1 ,contr 
+6d5e 1a20a3ff increase -1 ,rega 
+6d5f 196097ff increase -1 ,timeup 
+6d60 c0806d66 bne 0x00 ,frstbwrong 
+6d61 e8c08000 ifetch 1 ,contr 
+6d62 1a20a3ff increase -1 ,rega 
+6d63 196097ff increase -1 ,timeup 
+6d64 c0006d77 beq 0x00 ,cmpuuid 
+6d65 20206d69 branch scndbwrong 
+
+frstbwrong:
+6d66 18c08c01 increase 1 ,contr 
+6d67 1a20a3ff increase -1 ,rega 
+6d68 196097ff increase -1 ,timeup 
+
+scndbwrong:
+6d69 18c08c02 increase 2 ,contr 
+6d6a 1a20a3fe increase -2 ,rega 
+6d6b 196097fe increase -2 ,timeup 
+6d6c 2841fe00 compare 0x00 ,temp ,0xff 
+6d6d 2020ed9f branch loopornot ,true 
+6d6e 18c08c0c increase 12 ,contr 
+6d6f 1a20a3f4 increase -12 ,rega 
+6d70 196097f4 increase -12 ,timeup 
+6d71 20206d9f branch loopornot 
+
+cmp032:
+6d72 2fe00e02 compare 0x02 ,pdata ,0x07 
+6d73 2420ed75 nbranch cmp016 ,true 
+6d74 20206d5d branch skip2bytes 
+
+cmp016:
+6d75 2fe00e01 compare 0x01 ,pdata ,0x07 
+6d76 2420eda4 nbranch asksrv_error ,true 
+
+cmpuuid:
+6d77 e8c10000 ifetch 2 ,contr 
+6d78 1a20a3fe increase -2 ,rega 
+6d79 196097fe increase -2 ,timeup 
+6d7a e0a10000 istore 2 ,contw 
+
+uuidsize:
+6d7b 2841fe00 compare 0x00 ,temp ,0xff 
+6d7c 2020ed9f branch loopornot ,true 
+6d7d 18c20400 copy contr ,temp 
+6d7e 79200025 set1 mark_ext_patch ,mark 
+6d7f 44e4c039 bpatch patch39_1 ,mem_patch39 
+6d80 e8c08000 ifetch 1 ,contr 
+6d81 c0806d98 bne 0x00 ,wrong12b 
+6d82 e8c08000 ifetch 1 ,contr 
+6d83 c0806d98 bne 0x00 ,wrong12b 
+6d84 e8c08000 ifetch 1 ,contr 
+6d85 c0886d98 bne 0x10 ,wrong12b 
+6d86 e8c08000 ifetch 1 ,contr 
+6d87 c0806d98 bne 0x00 ,wrong12b 
+6d88 e8c08000 ifetch 1 ,contr 
+6d89 c0c06d98 bne 0x80 ,wrong12b 
+6d8a e8c08000 ifetch 1 ,contr 
+6d8b c0806d98 bne 0x00 ,wrong12b 
+6d8c e8c08000 ifetch 1 ,contr 
+6d8d c0806d98 bne 0x00 ,wrong12b 
+6d8e e8c08000 ifetch 1 ,contr 
+6d8f c0c06d98 bne 0x80 ,wrong12b 
+6d90 e8c08000 ifetch 1 ,contr 
+6d91 c0afed98 bne 0x5f ,wrong12b 
+6d92 e8c08000 ifetch 1 ,contr 
+6d93 c0cded98 bne 0x9b ,wrong12b 
+6d94 e8c08000 ifetch 1 ,contr 
+6d95 c09a6d98 bne 0x34 ,wrong12b 
+6d96 e8c08000 ifetch 1 ,contr 
+6d97 c07ded9d beq 0xfb ,chck12dn 
+
+wrong12b:
+6d98 18420c00 copy temp ,contr 
+
+wrong12b1:
+6d99 18c08c0c increase 12 ,contr 
+6d9a 18000e00 force 0x00 ,queue 
+6d9b 18000400 force 0x00 ,temp 
+6d9c 20206d9d branch chck12dn 
+
+chck12dn:
+6d9d 196097f4 increase -12 ,timeup 
+6d9e 1a20a3f4 increase -12 ,rega 
+
+loopornot:
+6d9f 2a21fe00 compare 0x00 ,rega ,0xff 
+6da0 2420ed55 nbranch classidloop ,true 
+6da1 18007e00 force 0 ,pdata 
+6da2 e0a10000 istore 2 ,contw 
+6da3 20600000 rtn ,
+
+asksrv_error:
+6da4 d84000ff arg 0xff ,temp 
+6da5 20600000 rtn 
+
+dataelementtype6:
+6da6 e8c08000 ifetch 1 ,contr 
+6da7 196097ff increase -1 ,timeup 
+6da8 2fe1f030 compare 0x30 ,pdata ,0xf8 
+6da9 2420edbb nbranch dsize_error ,true 
+6daa 2fe00e07 compare 0x07 ,pdata ,0x07 
+6dab 2020edb4 branch dsize32 ,true 
+6dac 2fe00e06 compare 0x06 ,pdata ,0x07 
+6dad 2020edb6 branch dsize16 ,true 
+6dae 2fe00e05 compare 0x05 ,pdata ,0x07 
+6daf 2420edbb nbranch dsize_error ,true 
+6db0 e8c08000 ifetch 1 ,contr 
+6db1 1fe22200 copy pdata ,rega 
+6db2 196097ff increase -1 ,timeup 
+6db3 20206db9 branch dsize 
+
+dsize32:
+6db4 18c08c02 increase 2 ,contr 
+6db5 196097fe increase -2 ,timeup 
+
+dsize16:
+6db6 e8c10000 ifetch 2 ,contr 
+6db7 1ff0a200 byteswap pdata ,rega 
+6db8 196097fe increase -2 ,timeup 
+
+dsize:
+6db9 18007e01 force 0x01 ,pdata 
+6dba 20600000 rtn 
+
+dsize_error:
+6dbb 18007e00 force 0x00 ,pdata 
+6dbc 20600000 rtn 
+
+empth_sa_rsp:
+6dbd 58000003 setarg 0x03 
+6dbe 60008446 store 1 ,mem_sdp_pduid 
+6dbf 20206dc2 branch empty_response 
+
+empty_ssa_rsp:
+6dc0 58000007 setarg 0x07 
+6dc1 60008446 store 1 ,mem_sdp_pduid 
+
+empty_response:
+6dc2 20404878 call l2cap_get_sdp_tx_payload 
+6dc3 68008446 fetch 1 ,mem_sdp_pduid 
+6dc4 e0a08000 istore 1 ,contw 
+6dc5 1fe22400 copy pdata ,regb 
+6dc6 68010447 fetch 2 ,mem_sdp_transactionid 
+6dc7 e0a10000 istore 2 ,contw 
+6dc8 58000500 setarg 0x0500 
+6dc9 e0a10000 istore 2 ,contw 
+6dca 2a41fe05 compare 0x05 ,regb ,0xff 
+6dcb 2020edd2 branch fullsearch ,true 
+6dcc 2a41fe07 compare 0x07 ,regb ,0xff 
+6dcd 2020edd2 branch fullsearch ,true 
+6dce 58000000 setarg 0x000000 
+6dcf e0a18000 istore 3 ,contw 
+6dd0 e0a10000 istore 2 ,contw 
+6dd1 20206dd6 branch outempty 
+
+fullsearch:
+6dd2 58350200 setarg 0x350200 
+6dd3 e0a18000 istore 3 ,contw 
+6dd4 58000000 setarg 0 
+6dd5 e0a10000 istore 2 ,contw 
+
+outempty:
+6dd6 70029e0a jam 10 ,mem_sdp_tx_pkt_length 
+6dd7 20600000 rtn 
+
+sdp_data_len:
+6dd8 18c21600 copy contr ,timeup 
+6dd9 e8c08000 ifetch 1 ,contr 
+6dda 1fe17207 and pdata ,0x7 ,loopcnt 
+6ddb 1fe97e00 rshift3 pdata ,pdata 
+6ddc c0036de7 beq 6 ,sdp_data_len_6 
+6ddd c000ede2 beq 1 ,sdp_data_len_1 
+6dde c0026de7 beq 4 ,sdp_data_len_6 
+6ddf c002ede5 beq 5 ,sdp_data_len_5 
+
+sdp_data_len_rtn:
+6de0 19620c00 copy timeup ,contr 
+6de1 20600000 rtn 
+
+sdp_data_len_1:
+6de2 20406e03 call sdp_data_size 
+6de3 1fe0fe01 increase 1 ,pdata 
+6de4 20206de0 branch sdp_data_len_rtn 
+
+sdp_data_len_5:
+6de5 18007e02 force 2 ,pdata 
+6de6 20206de0 branch sdp_data_len_rtn 
+
+sdp_data_len_6:
+6de7 20406df9 call sdp_get_data_6 
+6de8 1fe0fe02 increase 2 ,pdata 
+6de9 20206de0 branch sdp_data_len_rtn 
+
+sdp_get_data:
+6dea e8c08000 ifetch 1 ,contr 
+6deb 1fe17207 and pdata ,0x7 ,loopcnt 
+6dec 1fe97e00 rshift3 pdata ,pdata 
+6ded c0036df9 beq 6 ,sdp_get_data_6 
+6dee c000edf1 beq 1 ,sdp_get_data_1 
+6def c002edfe beq 5 ,sdp_get_data_6_8bit 
+6df0 20600000 rtn 
+
+sdp_get_data_1:
+6df1 20406e03 call sdp_data_size 
+6df2 98007200 iforce loopcnt 
+6df3 18000400 force 0 ,temp 
+
+sdp_get_data_1_loop:
+6df4 184d0400 lshift8 temp ,temp 
+6df5 e8c08000 ifetch 1 ,contr 
+6df6 98418400 ior temp ,temp 
+6df7 c2006df4 loop sdp_get_data_1_loop 
+6df8 20600000 rtn 
+
+sdp_get_data_6:
+6df9 1f227e00 deposit loopcnt 
+6dfa c002edfe beq 5 ,sdp_get_data_6_8bit 
+6dfb c0036e00 beq 6 ,sdp_get_data_6_16bit 
+6dfc 18007203 force 3 ,loopcnt 
+6dfd 20206df1 branch sdp_get_data_1 
+
+sdp_get_data_6_8bit:
+6dfe e8c08000 ifetch 1 ,contr 
+6dff 20600000 rtn 
+
+sdp_get_data_6_16bit:
+6e00 e8c10000 ifetch 2 ,contr 
+6e01 1ff0fe00 byteswap pdata ,pdata 
+6e02 20600000 rtn 
+
+sdp_data_size:
+6e03 18007e01 force 1 ,pdata 
+6e04 1f227c00 copy loopcnt ,null 
+6e05 20628000 rtn zero 
+
+sdp_data_size_loop:
+6e06 1fe3fe00 lshift pdata ,pdata 
+6e07 c2006e06 loop sdp_data_size_loop 
+6e08 20600000 rtn 
+
+search_uuid:
+6e09 98002600 iforce regc 
+6e0a 79200025 set1 mark_ext_patch ,mark 
+6e0b 44e54039 bpatch patch39_2 ,mem_patch39 
+6e0c 18000e00 force 0 ,queue 
+6e0d 6801460d fetch 2 ,mem_ui_uuid_table 
+6e0e 98000c00 iforce contr 
+6e0f d8a0045c arg mem_handle_list ,contw 
+
+search_uuid_next:
+6e10 78547c00 disable user 
+6e11 e8c08000 ifetch 1 ,contr 
+6e12 207a0000 rtn blank 
+6e13 98007200 iforce loopcnt 
+
+search_uuid_loop:
+6e14 e8c10000 ifetch 2 ,contr 
+6e15 9a667c00 isub regc ,null 
+6e16 2422ee18 nbranch search_uuid_not_found ,zero 
+6e17 78347c00 enable user 
+
+search_uuid_not_found:
+6e18 c2006e14 loop search_uuid_loop 
+6e19 e8c20000 ifetch 4 ,contr 
+6e1a 24346e1d nbranch search_uuid_nomatch ,user 
+6e1b e0a20000 istore 4 ,contw 
+6e1c 18e08e01 increase 1 ,queue 
+
+search_uuid_nomatch:
+6e1d 20406dea call sdp_get_data 
+6e1e 98c08c00 iadd contr ,contr 
+6e1f 20206e10 branch search_uuid_next 
+
+search_handle:
+6e20 79200025 set1 mark_ext_patch ,mark 
+6e21 44e5c039 bpatch patch39_3 ,mem_patch39 
+6e22 6801460d fetch 2 ,mem_ui_uuid_table 
+6e23 98000c00 iforce contr 
+
+search_handle_loop:
+6e24 e8c08000 ifetch 1 ,contr 
+6e25 207a0000 rtn blank 
+6e26 1fe3fe00 lshift pdata ,pdata 
+6e27 98c08c00 iadd contr ,contr 
+6e28 e8c20000 ifetch 4 ,contr 
+6e29 98467c00 isub temp ,null 
+6e2a 20628000 rtn zero 
+6e2b 20406dea call sdp_get_data 
+6e2c 98c08c00 iadd contr ,contr 
+6e2d 20206e24 branch search_handle_loop 
+
+search_attrib:
+6e2e 79200025 set1 mark_ext_patch ,mark 
+6e2f 44e64039 bpatch patch39_4 ,mem_patch39 
+6e30 6801460d fetch 2 ,mem_ui_uuid_table 
+6e31 98000c00 iforce contr 
+
+search_attrib_next:
+6e32 e8c08000 ifetch 1 ,contr 
+6e33 203a6e4f branch search_attrib_end ,blank 
+6e34 98007200 iforce loopcnt 
+
+search_attrib_loop:
+6e35 e8c10000 ifetch 2 ,contr 
+6e36 9a667c00 isub regc ,null 
+6e37 2022ee3d branch search_attrib_found_uuid ,zero 
+6e38 c2006e35 loop search_attrib_loop 
+6e39 18c08c04 increase 4 ,contr 
+6e3a 20406dea call sdp_get_data 
+6e3b 98c08c00 iadd contr ,contr 
+6e3c 20206e32 branch search_attrib_next 
+
+search_attrib_found_uuid:
+6e3d 1f20f3ff increase -1 ,loopcnt 
+6e3e 1f23fe00 lshift loopcnt ,pdata 
+6e3f 98c08c00 iadd contr ,contr 
+6e40 18c08c04 increase 4 ,contr 
+6e41 20406dea call sdp_get_data 
+6e42 98c08400 iadd contr ,temp 
+
+search_attrib_loop_attribs:
+6e43 18c08c01 increase 1 ,contr 
+6e44 e8c10000 ifetch 2 ,contr 
+6e45 9a461600 isub regb ,timeup 
+6e46 7922fe00 setflag zero ,0 ,pdata 
+6e47 19621600 copy timeup ,timeup 
+6e48 20628000 rtn zero 
+6e49 20406dd8 call sdp_data_len 
+6e4a 98c08c00 iadd contr ,contr 
+6e4b 18427e00 deposit temp 
+6e4c 98c67c00 isub contr ,null 
+6e4d 2022ee4f branch search_attrib_end ,zero 
+6e4e 20206e43 branch search_attrib_loop_attribs 
+
+search_attrib_end:
+6e4f 18000c00 force 0 ,contr 
+6e50 18007e00 force 0 ,pdata 
+6e51 20600000 rtn 
+
+search_handle_attrib:
+6e52 79200025 set1 mark_ext_patch ,mark 
+6e53 44e6c039 bpatch patch39_5 ,mem_patch39 
+6e54 6801460d fetch 2 ,mem_ui_uuid_table 
+6e55 98000c00 iforce contr 
+
+search_handle_attrib_next:
+6e56 e8c08000 ifetch 1 ,contr 
+6e57 203a6e6c branch search_handle_attrib_end ,blank 
+6e58 1fe3fe00 lshift pdata ,pdata 
+6e59 98c08c00 iadd contr ,contr 
+6e5a e8c20000 ifetch 4 ,contr 
+6e5b 98467c00 isub temp ,null 
+6e5c 2022ee60 branch search_handl_attrib_found_handle ,zero 
+6e5d 20406dea call sdp_get_data 
+6e5e 98c08c00 iadd contr ,contr 
+6e5f 20206e56 branch search_handle_attrib_next 
+
+search_handl_attrib_found_handle:
+6e60 20406dea call sdp_get_data 
+6e61 98c08400 iadd contr ,temp 
+
+search_handle_attrib_loop_attribs:
+6e62 18c08c01 increase 1 ,contr 
+6e63 e8c10000 ifetch 2 ,contr 
+6e64 9a467c00 isub regb ,null 
+6e65 20628000 rtn zero 
+6e66 20406dd8 call sdp_data_len 
+6e67 98c08c00 iadd contr ,contr 
+6e68 18427e00 deposit temp 
+6e69 98c67c00 isub contr ,null 
+6e6a 2022ee6c branch search_handle_attrib_end ,zero 
+6e6b 20206e62 branch search_handle_attrib_loop_attribs 
+
+search_handle_attrib_end:
+6e6c 18000c00 force 0 ,contr 
+6e6d 20600000 rtn 
+
+function_g2:
+6e6e 79200025 set1 mark_ext_patch ,mark 
+6e6f 44e74039 bpatch patch39_6 ,mem_patch39 
+6e70 70050950 jam 80 ,mem_aes_cmac_data_length 
+6e71 d8a0050a arg memdat ,contw 
+6e72 d8c044c3 arg mem_le_srand ,contr 
+6e73 20407e87 call memcpy16 
+6e74 d8c0465a arg mem_le_pubkey_local_x_256 ,contr 
+6e75 20407e85 call memcpy32 
+6e76 d8c008e2 arg mem_le_pubkey_remote_x_256 ,contr 
+6e77 20407e85 call memcpy32 
+6e78 20406f2d call inverse_memdat 
+6e79 d8c00352 arg mem_le_mrand ,contr 
+6e7a 20406f28 call store_inverse_k 
+6e7b 20406ef2 call function_aes_cmac 
+6e7c d8a00a11 arg mem_aes_cmac_temp ,contw 
+6e7d 20406f24 call load_inverse_result 
+6e7e 580f4240 setarg 1000000 
+6e7f 1fe22200 copy pdata ,rega 
+6e80 68020a11 fetch 4 ,mem_aes_cmac_temp 
+6e81 9a26fc00 idiv rega 
+6e82 20407f53 call wait_div_end 
+6e83 18077e00 remainder pdata 
+6e84 600208de store 4 ,mem_gkey 
+6e85 20600000 rtn 
+
+function_f6_eb:
+6e86 70050941 jam 65 ,mem_aes_cmac_data_length 
+6e87 d8a0050a arg memdat ,contw 
+6e88 20406ed7 call store_addr_common_a 
+6e89 20406ed2 call store_addr_common_b 
+6e8a 6801c4dd fetch 3 ,mem_le_pres + 1 
+6e8b e0a18000 istore 3 ,contw 
+6e8c 20406e96 call get_r 
+6e8d d8c00352 arg mem_le_mrand ,contr 
+6e8e 20407e87 call memcpy16 
+6e8f d8c044c3 arg mem_le_srand ,contr 
+6e90 20407e87 call memcpy16 
+6e91 20406f2d call inverse_memdat 
+6e92 d8c00a31 arg mem_le_mackey ,contr 
+6e93 d8a009e1 arg mem_aes_cmac_k ,contw 
+6e94 20407e87 call memcpy16 
+6e95 20206ef2 branch function_aes_cmac 
+
+get_r:
+6e96 6802456d fetch 4 ,mem_le_tk 
+6e97 e0a20000 istore 4 ,contw 
+6e98 20407e98 call memset0_4 
+6e99 20207e95 branch memset0_8 
+
+function_f6_ea:
+6e9a 79200025 set1 mark_ext_patch ,mark 
+6e9b 44e7c039 bpatch patch39_7 ,mem_patch39 
+6e9c 70050941 jam 65 ,mem_aes_cmac_data_length 
+6e9d d8a0050a arg memdat ,contw 
+6e9e 20406ed2 call store_addr_common_b 
+6e9f 20406ed7 call store_addr_common_a 
+6ea0 6801c4d6 fetch 3 ,mem_le_preq + 1 
+6ea1 e0a18000 istore 3 ,contw 
+6ea2 20406e96 call get_r 
+6ea3 d8c044c3 arg mem_le_srand ,contr 
+6ea4 20407e87 call memcpy16 
+6ea5 d8c00352 arg mem_le_mrand ,contr 
+6ea6 20407e87 call memcpy16 
+6ea7 20406f2d call inverse_memdat 
+6ea8 d8c00a31 arg mem_le_mackey ,contr 
+6ea9 d8a009e1 arg mem_aes_cmac_k ,contw 
+6eaa 20407e87 call memcpy16 
+6eab 20406ef2 call function_aes_cmac 
+6eac d8a00a11 arg mem_aes_cmac_temp ,contw 
+6ead 20206f24 branch load_inverse_result 
+
+function_f5:
+6eae 70050920 jam 32 ,mem_aes_cmac_data_length 
+6eaf d8c00922 arg mem_le_dhkey_256 ,contr 
+6eb0 d8a0050a arg memdat ,contw 
+6eb1 20407e85 call memcpy32 
+6eb2 20406f2d call inverse_memdat 
+6eb3 d8c008c2 arg mem_le_slat ,contr 
+6eb4 20406f28 call store_inverse_k 
+6eb5 20406ef2 call function_aes_cmac 
+6eb6 d8a009e1 arg mem_aes_cmac_k ,contw 
+6eb7 204071c0 call store_aes_result 
+6eb8 d8400001 arg 1 ,temp 
+6eb9 20406ec0 call function_f5_common 
+6eba d8a044a2 arg mem_le_ltk ,contw 
+6ebb 20406f24 call load_inverse_result 
+6ebc d8400000 arg 0 ,temp 
+6ebd 20406ec0 call function_f5_common 
+6ebe d8a00a31 arg mem_le_mackey ,contw 
+6ebf 202071c0 branch store_aes_result 
+
+function_f5_common:
+6ec0 79200025 set1 mark_ext_patch ,mark 
+6ec1 44e8403a bpatch patch3a_0 ,mem_patch3a 
+6ec2 70050935 jam 53 ,mem_aes_cmac_data_length 
+6ec3 58000100 setarg 0x100 
+6ec4 6001050a store 2 ,memdat 
+6ec5 20406ed2 call store_addr_common_b 
+6ec6 20406ed7 call store_addr_common_a 
+6ec7 d8c044c3 arg mem_le_srand ,contr 
+6ec8 20407e87 call memcpy16 
+6ec9 d8c00352 arg mem_le_mrand ,contr 
+6eca 20407e87 call memcpy16 
+6ecb 58006c65 setarg 0x6c65 
+6ecc e0a10000 istore 2 ,contw 
+6ecd 58006274 setarg 0x6274 
+6ece e0a10000 istore 2 ,contw 
+6ecf e0a88000 istoret 1 ,contw 
+6ed0 20406f2d call inverse_memdat 
+6ed1 20206ef2 branch function_aes_cmac 
+
+store_addr_common_b:
+6ed2 6803453e fetch 6 ,mem_le_lap 
+6ed3 e0a30000 istore 6 ,contw 
+6ed4 6800c532 fetch 1 ,mem_le_conn_own_addr_type 
+6ed5 e0a08000 istore 1 ,contw 
+6ed6 20600000 rtn 
+
+store_addr_common_a:
+6ed7 68030372 fetch 6 ,mem_le_plap 
+6ed8 e0a30000 istore 6 ,contw 
+6ed9 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+6eda e0a08000 istore 1 ,contw 
+6edb 20600000 rtn 
+
+function_f4_ca:
+6edc 70050941 jam 65 ,mem_aes_cmac_data_length 
+6edd 6800c6ec fetch 1 ,mem_passkey_1bit 
+6ede 6000850a store 1 ,memdat 
+6edf d8c0465a arg mem_le_pubkey_local_x_256 ,contr 
+6ee0 20407e85 call memcpy32 
+6ee1 d8c008e2 arg mem_le_pubkey_remote_x_256 ,contr 
+6ee2 20407e85 call memcpy32 
+6ee3 20406f2d call inverse_memdat 
+6ee4 d8c00352 arg mem_le_mrand ,contr 
+6ee5 20406f28 call store_inverse_k 
+6ee6 20206ef2 branch function_aes_cmac 
+
+function_f4_cb:
+6ee7 70050941 jam 65 ,mem_aes_cmac_data_length 
+6ee8 6800c6ec fetch 1 ,mem_passkey_1bit 
+6ee9 6000850a store 1 ,memdat 
+6eea d8c008e2 arg mem_le_pubkey_remote_x_256 ,contr 
+6eeb 20407e85 call memcpy32 
+6eec d8c0465a arg mem_le_pubkey_local_x_256 ,contr 
+6eed 20407e85 call memcpy32 
+6eee 20406f2d call inverse_memdat 
+6eef d8c044c3 arg mem_le_srand ,contr 
+6ef0 20406f28 call store_inverse_k 
+6ef1 20206ef2 branch function_aes_cmac 
+
+function_aes_cmac:
+6ef2 79200025 set1 mark_ext_patch ,mark 
+6ef3 44e8c03a bpatch patch3a_1 ,mem_patch3a 
+6ef4 20406f42 call function_aes_cmac_generate_subkey 
+6ef5 68008509 fetch 1 ,mem_aes_cmac_data_length 
+6ef6 1fe20400 copy pdata ,temp 
+
+function_ceil16:
+6ef7 1fe0fe0f increase 15 ,pdata 
+6ef8 1ff1fe00 rshift4 pdata ,pdata 
+6ef9 1fe22400 copy pdata ,regb 
+6efa 203a6f05 branch function_aes_cmac_set_flag_0_balnk ,blank 
+6efb 18417e0f and temp ,0x0f ,pdata 
+6efc 243a6f08 nbranch function_aes_cmac_set_flag_0 ,blank 
+6efd da6009f1 arg mem_aes_cmac_k1 ,regc 
+6efe dfe0050a arg memdat ,pdata 
+6eff 1fe0fff0 increase -16 ,pdata 
+6f00 9840a200 iadd temp ,rega 
+6f01 d8a00a21 arg mem_aes_cmac_m_last ,contw 
+6f02 df200004 arg 4 ,loopcnt 
+6f03 20407ea8 call xor_loop 
+6f04 20206f13 branch function_aes_cmac_aes 
+
+function_aes_cmac_set_flag_0_balnk:
+6f05 da400001 arg 1 ,regb 
+6f06 da200000 arg 0 ,rega 
+6f07 20206f09 branch function_aes_cmac_set_flag_0_common 
+
+function_aes_cmac_set_flag_0:
+6f08 1841220f and temp ,0x0f ,rega 
+
+function_aes_cmac_set_flag_0_common:
+6f09 dfe0050a arg memdat ,pdata 
+6f0a 9840fe00 iadd temp ,pdata 
+6f0b 9a260c00 isub rega ,contr 
+6f0c d8a00a11 arg mem_aes_cmac_temp ,contw 
+6f0d 20406f69 call function_aes_cmac_padding 
+6f0e da600a01 arg mem_aes_cmac_k2 ,regc 
+6f0f da200a11 arg mem_aes_cmac_temp ,rega 
+6f10 d8a00a21 arg mem_aes_cmac_m_last ,contw 
+6f11 df200004 arg 4 ,loopcnt 
+6f12 20407ea8 call xor_loop 
+
+function_aes_cmac_aes:
+6f13 204071ba call aes_clear_data 
+6f14 20407150 call aes_init 
+6f15 d8c0050a arg memdat ,contr 
+
+function_aes_cmac_aes_loop:
+6f16 1a40a5ff increase -1 ,regb 
+6f17 1a427e00 deposit regb 
+6f18 203a6f1c branch function_aes_cmac_aes_loop_end ,blank 
+6f19 204071af call load_data128 
+6f1a 2040714a call do_aes_cbc 
+6f1b 20206f16 branch function_aes_cmac_aes_loop 
+
+function_aes_cmac_aes_loop_end:
+6f1c d8a00a11 arg mem_aes_cmac_temp ,contw 
+6f1d 204071c0 call store_aes_result 
+6f1e d8c00a21 arg mem_aes_cmac_m_last ,contr 
+6f1f 204071af call load_data128 
+6f20 20407150 call aes_init 
+6f21 d8c00a11 arg mem_aes_cmac_temp ,contr 
+6f22 204071af call load_data128 
+6f23 2020714a branch do_aes_cbc 
+
+load_inverse_result:
+6f24 18a22200 copy contw ,rega 
+6f25 204071c0 call store_aes_result 
+6f26 df200010 arg 16 ,loopcnt 
+6f27 20207eb0 branch inverse_data 
+
+store_inverse_k:
+6f28 d8a009e1 arg mem_aes_cmac_k ,contw 
+6f29 20407e87 call memcpy16 
+
+inverse_k:
+6f2a df200010 arg 16 ,loopcnt 
+6f2b da2009e1 arg mem_aes_cmac_k ,rega 
+6f2c 20207eb0 branch inverse_data 
+
+inverse_memdat:
+6f2d 68008509 fetch 1 ,mem_aes_cmac_data_length 
+6f2e 1fe27200 copy pdata ,loopcnt 
+6f2f da20050a arg memdat ,rega 
+6f30 20207eb0 branch inverse_data 
+
+bn_lshift_0_inverse:
+6f31 ea208000 ifetch 1 ,rega 
+6f32 1fe3fe00 lshift pdata ,pdata 
+6f33 2a6ffe00 isolate1 0 ,regc 
+6f34 7920fe00 setflag true ,0 ,pdata 
+6f35 2feffe08 isolate1 8 ,pdata 
+6f36 7920a600 setflag true ,0 ,regc 
+6f37 e2208000 istore 1 ,rega 
+6f38 1a20a3ff increase -1 ,rega 
+6f39 c2006f31 loop bn_lshift_0_inverse 
+6f3a 20600000 rtn 
+
+function_aes_cmac_k1_inverse:
+6f3b da2009f1 arg mem_aes_cmac_k1 ,rega 
+
+function_aes_cmac_inverse_common:
+6f3c 1a20a20f increase 15 ,rega 
+6f3d 18007210 force 16 ,loopcnt 
+6f3e 18002600 force 0 ,regc 
+6f3f 20206f31 branch bn_lshift_0_inverse 
+
+function_aes_cmac_k2_inverse:
+6f40 da200a01 arg mem_aes_cmac_k2 ,rega 
+6f41 20206f3c branch function_aes_cmac_inverse_common 
+
+function_aes_cmac_generate_subkey:
+6f42 d8c009e1 arg mem_aes_cmac_k ,contr 
+6f43 204071ad call load_key 
+6f44 18007008 force regidx_xor ,regext_index 
+6f45 204071bb call aes_clear 
+6f46 204071ba call aes_clear_data 
+6f47 20407147 call do_aes_ocb 
+6f48 d8a009f1 arg mem_aes_cmac_k1 ,contw 
+6f49 204071c0 call store_aes_result 
+
+function_aes_cmac_k1:
+6f4a 79200025 set1 mark_ext_patch ,mark 
+6f4b 44e9403a bpatch patch3a_2 ,mem_patch3a 
+6f4c 680089f1 fetch 1 ,mem_aes_cmac_k1 
+6f4d 2feffe07 isolate1 7 ,pdata 
+6f4e 2420ef54 nbranch function_aes_cmac_k1_0 ,true 
+6f4f 20406f3b call function_aes_cmac_k1_inverse 
+6f50 da6009f1 arg mem_aes_cmac_k1 ,regc 
+6f51 d8a009f1 arg mem_aes_cmac_k1 ,contw 
+6f52 20406f5e call function_aes_cmac_xor_rb 
+6f53 20206f55 branch function_aes_cmac_k2 
+
+function_aes_cmac_k1_0:
+6f54 20406f3b call function_aes_cmac_k1_inverse 
+
+function_aes_cmac_k2:
+6f55 d8c009f1 arg mem_aes_cmac_k1 ,contr 
+6f56 d8a00a01 arg mem_aes_cmac_k2 ,contw 
+6f57 20407e87 call memcpy16 
+6f58 68008a01 fetch 1 ,mem_aes_cmac_k2 
+6f59 2feffe07 isolate1 7 ,pdata 
+6f5a 2420ef40 nbranch function_aes_cmac_k2_inverse ,true 
+6f5b 20406f40 call function_aes_cmac_k2_inverse 
+6f5c da600a01 arg mem_aes_cmac_k2 ,regc 
+6f5d d8a00a01 arg mem_aes_cmac_k2 ,contw 
+
+function_aes_cmac_xor_rb:
+6f5e df200003 arg 3 ,loopcnt 
+
+function_aes_cmac_xor_rb_loop:
+6f5f d8400000 arg 0 ,temp 
+6f60 20406f65 call function_aes_cmac_xor_loop_common 
+6f61 1a60a604 increase 4 ,regc 
+6f62 c2006f5f loop function_aes_cmac_xor_rb_loop 
+6f63 d8408700 arg 0x8700 ,temp 
+6f64 18500400 lshift16 temp ,temp 
+
+function_aes_cmac_xor_loop_common:
+6f65 ea620000 ifetch 4 ,regc 
+6f66 9842fe00 ixor temp ,pdata 
+6f67 e0a20000 istore 4 ,contw 
+6f68 20600000 rtn 
+
+function_aes_cmac_padding:
+6f69 79200025 set1 mark_ext_patch ,mark 
+6f6a 44e9c03a bpatch patch3a_3 ,mem_patch3a 
+6f6b df200010 arg 16 ,loopcnt 
+6f6c dfe00000 arg 0 ,pdata 
+
+function_aes_cmac_padding_loop:
+6f6d 9a267c00 isub rega ,null 
+6f6e 2022ef75 branch function_aes_cmac_padding_beq_length ,zero 
+6f6f 20216f78 branch function_aes_cmac_padding_big_length ,positive 
+6f70 e8c88000 ifetcht 1 ,contr 
+6f71 e0a88000 istoret 1 ,contw 
+
+function_aes_cmac_padding_loop2:
+6f72 1fe0fe01 increase 1 ,pdata 
+6f73 c2006f6d loop function_aes_cmac_padding_loop 
+6f74 20600000 rtn 
+
+function_aes_cmac_padding_beq_length:
+6f75 d8400080 arg 0x80 ,temp 
+
+function_aes_cmac_padding_common:
+6f76 e0a88000 istoret 1 ,contw 
+6f77 20206f72 branch function_aes_cmac_padding_loop2 
+
+function_aes_cmac_padding_big_length:
+6f78 d8400000 arg 0 ,temp 
+6f79 20206f76 branch function_aes_cmac_padding_common 
+
+generate_kinit:
+6f7a 20406f8d call function_e22 
+6f7b d8c004b6 arg mem_input_store ,contr 
+6f7c d8a004a6 arg mem_kinit ,contw 
+6f7d 20207e87 branch memcpy16 
+
+function_e21:
+6f7e 78547c00 disable user 
+6f7f 20407084 call function_expand 
+6f80 d8c00486 arg mem_random_number ,contr 
+6f81 d8a004c6 arg mem_x ,contw 
+6f82 1800720f force 15 ,loopcnt 
+6f83 20407ecd call memcpy 
+6f84 e8c08000 ifetch 1 ,contr 
+6f85 1fe2fe06 xor_into 6 ,pdata 
+6f86 e0a08000 istore 1 ,contw 
+6f87 580004d6 setarg mem_y 
+6f88 600104fa store 2 ,memp_ar_input 
+6f89 580004c6 setarg mem_x 
+6f8a 600104f8 store 2 ,memp_ar_key 
+6f8b 79200012 set1 mark_ar2 ,mark 
+6f8c 20206fcd branch function_ar 
+
+function_e22:
+6f8d 6808c718 fetcht 1 ,mem_pin_length 
+6f8e 18002410 force 16 ,regb 
+6f8f 1840a606 add temp ,6 ,regc 
+6f90 1a667c10 sub regc ,16 ,null 
+6f91 20216f93 branch function_e22_pin_init ,positive 
+6f92 18002610 force 16 ,regc 
+
+function_e22_pin_init:
+6f93 d8a004c6 arg mem_x ,contw 
+
+function_e22_genx_pin:
+6f94 d8c04719 arg mem_pin ,contr 
+6f95 18427200 copy temp ,loopcnt 
+6f96 78547c00 disable user 
+
+function_e22_genx_loop:
+6f97 e8c08000 ifetch 1 ,contr 
+6f98 e0a08000 istore 1 ,contw 
+6f99 1a40a5ff increase -1 ,regb 
+6f9a 2022efa1 branch function_e22_genx_end ,zero 
+6f9b c2006f97 loop function_e22_genx_loop 
+6f9c 20346f94 branch function_e22_genx_pin ,user 
+6f9d 78347c00 enable user 
+6f9e 18007206 force 6 ,loopcnt 
+6f9f 1a220c00 copy rega ,contr 
+6fa0 20206f97 branch function_e22_genx_loop 
+
+function_e22_genx_end:
+6fa1 d8c00486 arg mem_random_number ,contr 
+6fa2 d8a004d6 arg mem_y ,contw 
+6fa3 20407e87 call memcpy16 
+6fa4 680084e5 fetch 1 ,mem_y15 
+6fa5 9a62fe00 ixor regc ,pdata 
+6fa6 600084e5 store 1 ,mem_y15 
+6fa7 580004d6 setarg mem_y 
+6fa8 600104fa store 2 ,memp_ar_input 
+6fa9 580004c6 setarg mem_x 
+6faa 600104f8 store 2 ,memp_ar_key 
+6fab 79200012 set1 mark_ar2 ,mark 
+6fac 20206fcd branch function_ar 
+
+function_e1:
+6fad 78547c00 disable user 
+6fae 20407084 call function_expand 
+6faf 20206fb7 branch function_hash 
+
+function_e3:
+6fb0 da200056 arg mem_aco ,rega 
+6fb1 78347c00 enable user 
+6fb2 20407084 call function_expand 
+6fb3 20406fb7 call function_hash 
+6fb4 d8c004b6 arg mem_input_store ,contr 
+6fb5 d8a00062 arg mem_kc ,contw 
+6fb6 20207e87 branch memcpy16 
+
+function_hash:
+6fb7 58000486 setarg mem_random_number 
+6fb8 600104fa store 2 ,memp_ar_input 
+6fb9 58004261 setarg mem_link_key 
+6fba 600104f8 store 2 ,memp_ar_key 
+6fbb 793f8012 set0 mark_ar2 ,mark 
+6fbc 20406fcd call function_ar 
+6fbd da2004b6 arg mem_input_store ,rega 
+6fbe da400486 arg mem_random_number ,regb 
+6fbf d8a004c6 arg mem_x ,contw 
+6fc0 20407077 call xor16 
+6fc1 da2004c6 arg mem_x ,rega 
+6fc2 da4004d6 arg mem_y ,regb 
+6fc3 1a420a00 copy regb ,contw 
+6fc4 78347c00 enable user 
+6fc5 20407075 call add16 
+6fc6 2040708f call key_offset 
+6fc7 580004d6 setarg mem_y 
+6fc8 600104fa store 2 ,memp_ar_input 
+6fc9 580004c6 setarg mem_x 
+6fca 600104f8 store 2 ,memp_ar_key 
+6fcb 79200012 set1 mark_ar2 ,mark 
+6fcc 20206fcd branch function_ar 
+
+function_ar:
+6fcd 7004fc00 jam 0 ,mem_ar_hround 
+6fce 680104f8 fetch 2 ,memp_ar_key 
+6fcf 98000c00 iforce contr 
+6fd0 d8a004e6 arg mem_key_store ,contw 
+6fd1 20407e87 call memcpy16 
+6fd2 680104fa fetch 2 ,memp_ar_input 
+6fd3 98000c00 iforce contr 
+6fd4 d8a004b6 arg mem_input_store ,contw 
+6fd5 20407e87 call memcpy16 
+
+function_ar_loop:
+6fd6 20406ff4 call key_scheduling 
+6fd7 78547c00 disable user 
+6fd8 c5896fde bmark0 mark_ar2 ,function_ar_original 
+6fd9 680084fc fetch 1 ,mem_ar_hround 
+6fda c0826fde bne 4 ,function_ar_original 
+6fdb 680104fa fetch 2 ,memp_ar_input 
+6fdc 98002400 iforce regb 
+6fdd 20407026 call xor_mod32_ar2 
+
+function_ar_original:
+6fde 20407025 call xor_mod32 
+6fdf 20407038 call el_boxes 
+6fe0 680084fc fetch 1 ,mem_ar_hround 
+6fe1 1fe0fe01 increase 1 ,pdata 
+6fe2 600084fc store 1 ,mem_ar_hround 
+6fe3 20406ff4 call key_scheduling 
+6fe4 78347c00 enable user 
+6fe5 20407025 call xor_mod32 
+6fe6 20407047 call pht 
+6fe7 20407056 call permute 
+6fe8 20407047 call pht 
+6fe9 20407056 call permute 
+6fea 20407047 call pht 
+6feb 20407056 call permute 
+6fec 20407047 call pht 
+6fed 680084fc fetch 1 ,mem_ar_hround 
+6fee 1fe0fe01 increase 1 ,pdata 
+6fef 600084fc store 1 ,mem_ar_hround 
+6ff0 c0886fd6 bne 16 ,function_ar_loop 
+6ff1 20406ff4 call key_scheduling 
+6ff2 78547c00 disable user 
+6ff3 20207025 branch xor_mod32 
+
+key_scheduling:
+6ff4 680084fc fetch 1 ,mem_ar_hround 
+6ff5 d8c004e6 arg mem_key_store ,contr 
+6ff6 203a701b branch key_sched_zero ,blank 
+6ff7 98002400 iforce regb 
+6ff8 18007211 force 17 ,loopcnt 
+6ff9 18c20a00 copy contr ,contw 
+
+key_rotateloop:
+6ffa e8c08000 ifetch 1 ,contr 
+6ffb 1fe98400 lshift3 pdata ,temp 
+6ffc 1feb7e00 rshift2 pdata ,pdata 
+6ffd 1fe97e00 rshift3 pdata ,pdata 
+6ffe 9841fe00 ior temp ,pdata 
+6fff e0a08000 istore 1 ,contw 
+7000 c2006ffa loop key_rotateloop 
+7001 580004e6 setarg mem_key_store 
+7002 9a408c00 iadd regb ,contr 
+7003 18007210 force 16 ,loopcnt 
+7004 d8a00496 arg mem_round_key ,contw 
+
+key_select_octet_loop:
+7005 e8c08000 ifetch 1 ,contr 
+7006 e0a08000 istore 1 ,contw 
+7007 28c1fef7 compare mem_key_store_end ,contr ,0xff 
+7008 2420f00a nbranch key_select_octet_nwrap ,true 
+7009 18c08def increase -17 ,contr 
+
+key_select_octet_nwrap:
+700a c2007005 loop key_select_octet_loop 
+700b 18002200 force 0 ,rega 
+700c 1a40a7ff add regb ,-1 ,regc 
+700d 1a6ba600 lshift2 regc ,regc 
+700e 1a6ba600 lshift2 regc ,regc 
+700f 204071e2 call enable_authrom 
+7010 58008400 setarg mem_b_box 
+7011 9a60a600 iadd regc ,regc 
+7012 d8a00496 arg mem_round_key ,contw 
+7013 18007210 force 16 ,loopcnt 
+
+bias_round_key_loop:
+7014 ea688000 ifetcht 1 ,regc 
+7015 e8a08000 ifetch 1 ,contw 
+7016 9840fe00 iadd temp ,pdata 
+7017 e0a08000 istore 1 ,contw 
+7018 1a60a601 increase 1 ,regc 
+7019 c2007014 loop bias_round_key_loop 
+701a 202071e6 branch disable_authrom 
+
+key_sched_zero:
+701b 18007210 force 16 ,loopcnt 
+701c 18000400 force 0 ,temp 
+
+create_byte_16_loop:
+701d e8c08000 ifetch 1 ,contr 
+701e 98428400 ixor temp ,temp 
+701f c200701d loop create_byte_16_loop 
+7020 18427e00 deposit temp 
+7021 e0c08000 istore 1 ,contr 
+7022 d8c004e6 arg mem_key_store ,contr 
+7023 d8a00496 arg mem_round_key ,contw 
+7024 20207e87 branch memcpy16 
+
+xor_mod32:
+7025 da400496 arg mem_round_key ,regb 
+
+xor_mod32_ar2:
+7026 18007210 force 16 ,loopcnt 
+7027 da2004b6 arg mem_input_store ,rega 
+7028 1a220a00 copy rega ,contw 
+
+xor_mod32_loop:
+7029 ea288000 ifetcht 1 ,rega 
+702a ea408000 ifetch 1 ,regb 
+702b 9842e000 ixor temp ,alarm 
+702c 1f212603 and loopcnt ,3 ,regc 
+702d 2434702f nbranch xor_mod32_invert ,user 
+702e 1a62a603 xor_into 3 ,regc 
+
+xor_mod32_invert:
+702f 1a662601 sub regc ,1 ,regc 
+7030 20217032 branch xor_even ,positive 
+7031 9840e000 iadd temp ,alarm 
+
+xor_even:
+7032 1e027e00 deposit alarm 
+7033 e0a08000 istore 1 ,contw 
+7034 1a20a201 increase 1 ,rega 
+7035 1a40a401 increase 1 ,regb 
+7036 c2007029 loop xor_mod32_loop 
+7037 20600000 rtn 
+
+el_boxes:
+7038 204071e2 call enable_authrom 
+7039 18007210 force 16 ,loopcnt 
+703a da2004b6 arg mem_input_store ,rega 
+
+el_box_loop:
+703b ea208000 ifetch 1 ,rega 
+703c d8c08500 arg mem_e_box ,contr 
+703d 1f212603 and loopcnt ,3 ,regc 
+703e 1a667c01 sub regc ,1 ,null 
+703f 20217041 branch e_boxes ,positive 
+7040 d8c08600 arg mem_l_box ,contr 
+
+e_boxes:
+7041 98c08c00 iadd contr ,contr 
+7042 e8c08000 ifetch 1 ,contr 
+7043 e2208000 istore 1 ,rega 
+7044 1a20a201 increase 1 ,rega 
+7045 c200703b loop el_box_loop 
+7046 202071e6 branch disable_authrom 
+
+pht:
+7047 18007208 force 8 ,loopcnt 
+7048 d8c004b6 arg mem_input_store ,contr 
+7049 18c20a00 copy contr ,contw 
+
+pht_loop:
+704a e8c08000 ifetch 1 ,contr 
+704b 98002200 iforce rega 
+704c e8c08000 ifetch 1 ,contr 
+704d 98002400 iforce regb 
+704e 1a23fe00 lshift rega ,pdata 
+704f 9a40fe00 iadd regb ,pdata 
+7050 e0a08000 istore 1 ,contw 
+7051 1a227e00 deposit rega 
+7052 9a40fe00 iadd regb ,pdata 
+7053 e0a08000 istore 1 ,contw 
+7054 c200704a loop pht_loop 
+7055 20600000 rtn 
+
+permute:
+7056 588ae42c setarg 0x8ae42c 
+7057 98000400 iforce temp 
+7058 18007207 force 7 ,loopcnt 
+7059 20407065 call permute_exchange 
+705a 580d751b setarg 0xd751b 
+705b 98000400 iforce temp 
+705c 18007205 force 5 ,loopcnt 
+705d 20407065 call permute_exchange 
+705e 680084c5 fetch 1 ,mem_input_store + 15 
+705f 98002200 iforce rega 
+7060 680084b9 fetch 1 ,mem_input_store + 3 
+7061 600084c5 store 1 ,mem_input_store + 15 
+7062 1a227e00 deposit rega 
+7063 600084b9 store 1 ,mem_input_store + 3 
+7064 20600000 rtn 
+
+permute_exchange:
+7065 1841240f and temp ,0xf ,regb 
+
+permute_loop:
+7066 18417e0f and temp ,0xf ,pdata 
+7067 d8a004b6 arg mem_input_store ,contw 
+7068 98a08a00 iadd contw ,contw 
+7069 e8a08000 ifetch 1 ,contw 
+706a 98002600 iforce regc 
+706b 1a227e00 deposit rega 
+706c e0a08000 istore 1 ,contw 
+706d 1a622200 copy regc ,rega 
+706e 18518400 rshift4 temp ,temp 
+706f c2007066 loop permute_loop 
+7070 580004b6 setarg mem_input_store 
+7071 9a408a00 iadd regb ,contw 
+7072 1a227e00 deposit rega 
+7073 e0a08000 istore 1 ,contw 
+7074 20600000 rtn 
+
+add16:
+7075 78347c00 enable user 
+7076 20207078 branch xor_add16 
+
+xor16:
+7077 78547c00 disable user 
+
+xor_add16:
+7078 18007210 force 16 ,loopcnt 
+
+xoradd_loop:
+7079 ea288000 ifetcht 1 ,rega 
+707a ea408000 ifetch 1 ,regb 
+707b 2034707e branch xoradd_add ,user 
+707c 9842fe00 ixor temp ,pdata 
+707d 2020707f branch xoradd_store 
+
+xoradd_add:
+707e 9840fe00 iadd temp ,pdata 
+
+xoradd_store:
+707f e0a08000 istore 1 ,contw 
+7080 1a20a201 increase 1 ,rega 
+7081 1a40a401 increase 1 ,regb 
+7082 c2007079 loop xoradd_loop 
+7083 20600000 rtn 
+
+function_expand:
+7084 d8a004d6 arg mem_y ,contw 
+7085 ea230000 ifetch 6 ,rega 
+7086 e0a30000 istore 6 ,contw 
+7087 2034708a branch expand_12 ,user 
+7088 ea230000 ifetch 6 ,rega 
+7089 2020708b branch expand_cont 
+
+expand_12:
+708a e8c30000 ifetch 6 ,contr 
+
+expand_cont:
+708b e0a30000 istore 6 ,contw 
+708c ea220000 ifetch 4 ,rega 
+708d e0a20000 istore 4 ,contw 
+708e 20600000 rtn 
+
+key_offset:
+708f d8c04261 arg mem_link_key ,contr 
+7090 d8a004c6 arg mem_x ,contw 
+7091 d8400000 arg 0 ,temp 
+7092 588395a7 setarg 0x8395a7 
+7093 204070b0 call concatenate_temp24 
+7094 58b3c1df setarg 0xb3c1df 
+7095 204070b0 call concatenate_temp24 
+7096 5800e5e9 setarg 0xe5e9 
+7097 204070b1 call concatenate_temp16 
+7098 18422800 copy temp ,regab 
+7099 78547c00 disable user 
+709a 2040709e call key_addxor 
+709b 1a820400 copy regab ,temp 
+709c 78347c00 enable user 
+709d 2020709e branch key_addxor 
+
+key_addxor:
+709e 18007208 force 8 ,loopcnt 
+
+key_addxor_loop:
+709f e8c08000 ifetch 1 ,contr 
+70a0 2f200201 compare 1 ,loopcnt ,1 
+70a1 203470a5 branch key_high ,user 
+70a2 2020f0a6 branch key_xor ,true 
+
+key_add:
+70a3 9840fe00 iadd temp ,pdata 
+70a4 202070a7 branch key_store 
+
+key_high:
+70a5 2020f0a3 branch key_add ,true 
+
+key_xor:
+70a6 9842fe00 ixor temp ,pdata 
+
+key_store:
+70a7 e0a08000 istore 1 ,contw 
+70a8 184c8400 rshift8 temp ,temp 
+70a9 c200709f loop key_addxor_loop 
+70aa 20600000 rtn 
+
+copy_aco:
+70ab 680304ba fetch 6 ,mem_input_store + 4 
+70ac 60030056 store 6 ,mem_aco 
+70ad e8c30000 ifetch 6 ,contr 
+70ae e0a30000 istore 6 ,contw 
+70af 20600000 rtn 
+
+concatenate_temp24:
+70b0 184d0400 lshift8 temp ,temp 
+
+concatenate_temp16:
+70b1 18500400 lshift16 temp ,temp 
+70b2 98418400 ior temp ,temp 
+70b3 20600000 rtn 
+
+loop1:
+70b4 202070b4 branch loop1 
+
+generate_stk:
+70b5 79200025 set1 mark_ext_patch ,mark 
+70b6 44ea403a bpatch patch3a_4 ,mem_patch3a 
+70b7 20407153 call function_s1 
+70b8 d8a044a2 arg mem_le_ltk ,contw 
+70b9 202071c0 branch store_aes_result 
+
+authenticate_rconfirm:
+70ba d8a044c3 arg mem_le_srand ,contw 
+70bb 2034f0bd branch authenticate_mconfirm ,master 
+70bc d8a00352 arg mem_le_mrand ,contw 
+
+authenticate_mconfirm:
+70bd 18c22200 copy contr ,rega 
+70be 20407e87 call memcpy16 
+70bf 20407168 call function_c1 
+70c0 d8c044b3 arg mem_le_rconfirm ,contr 
+70c1 202071d9 branch compare_res 
+
+generate_confirm:
+70c2 da200352 arg mem_le_mrand ,rega 
+70c3 2034f0c5 branch generate_mrand ,master 
+70c4 da2044c3 arg mem_le_srand ,rega 
+
+generate_mrand:
+70c5 1a220a00 copy rega ,contw 
+70c6 20405917 call generate_random 
+70c7 20207168 branch function_c1 
+
+generate_sk:
+70c8 d8c04551 arg mem_le_skdm ,contr 
+70c9 204071af call load_data128 
+70ca d8c044a2 arg mem_le_ltk ,contr 
+70cb 204071b0 call load_regext 
+70cc 18006c38 force 0x38 ,aes_ctrl 
+70cd 18006c00 force 0x0 ,aes_ctrl 
+70ce 20407145 call wait_aes 
+70cf d8a003a0 arg mem_le_sk ,contw 
+70d0 202071c0 branch store_aes_result 
+
+first_block_counter:
+70d1 18007e49 force 0x49 ,pdata 
+70d2 202070d4 branch first_block 
+
+first_block_data:
+70d3 18007e01 force 1 ,pdata 
+
+first_block:
+70d4 18007000 force regidx_data ,regext_index 
+70d5 184d5e00 lshift8 temp ,regext 
+70d6 9de1de00 ior regext ,regext 
+70d7 1f00f001 increase 1 ,regext_index 
+70d8 184cde00 rshift8 temp ,regext 
+70d9 1df15e00 rshift16 regext ,regext 
+70da 6801449a fetch 2 ,mem_le_ivm 
+70db 1ff07e00 lshift16 ,pdata ,pdata 
+70dc 9de1de00 ior regext ,regext 
+70dd 1f00f001 increase 1 ,regext_index 
+70de e8c20000 ifetch 4 ,contr 
+70df 98005e00 iforce regext 
+70e0 1f00f001 increase 1 ,regext_index 
+70e1 e8c10000 ifetch 2 ,contr 
+70e2 1a30de00 byteswap rega ,regext 
+70e3 1df05e00 lshift16 regext ,regext 
+70e4 9de1de00 ior regext ,regext 
+70e5 1f00f001 increase 1 ,regext_index 
+70e6 20600000 rtn 
+
+generate_mic:
+70e7 1a608c01 add regc ,1 ,contr 
+70e8 e8c08000 ifetch 1 ,contr 
+70e9 98002200 iforce rega 
+70ea 204070d1 call first_block_counter 
+70eb 20407147 call do_aes_ocb 
+70ec 18007000 force regidx_data ,regext_index 
+70ed ea608000 ifetch 1 ,regc 
+70ee 1fe17e03 and_into 0x3 ,pdata 
+70ef 1ff05e00 lshift16 pdata ,regext 
+70f0 79205e08 set1 8 ,regext 
+70f1 204071b8 call clear_hidata 
+70f2 2040714a call do_aes_cbc 
+70f3 1a227200 copy rega ,loopcnt 
+70f4 1a608c02 add regc ,2 ,contr 
+70f5 20407197 call padding_data 
+
+generate_mic_loop:
+70f6 204071a1 call aes_load_data 
+70f7 2040714a call do_aes_cbc 
+70f8 1f227e00 deposit loopcnt 
+70f9 203a70fb branch generate_mic_end ,blank 
+70fa 202070f6 branch generate_mic_loop 
+
+generate_mic_end:
+70fb 1800700c force regidx_result ,regext_index 
+70fc 1de27e00 deposit regext 
+70fd 6002033a store 4 ,mem_le_mic 
+70fe 20600000 rtn 
+
+aes_crypt_data:
+70ff 1a20a201 increase 1 ,rega 
+7100 204070d3 call first_block_data 
+7101 1a620c00 copy regc ,contr 
+7102 204071ab call aes_load_xor 
+7103 2040714d call do_aes_ctr 
+7104 204071c7 call store_enc_data 
+7105 1a60a610 increase 16 ,regc 
+7106 1a40a5f0 increase -16 ,regb 
+7107 202170ff branch aes_crypt_data ,positive 
+7108 20600000 rtn 
+
+le_encrypt:
+7109 79200025 set1 mark_ext_patch ,mark 
+710a 44eac03a bpatch patch3a_5 ,mem_patch3a 
+710b da604465 arg mem_le_txheader ,regc 
+710c 680ac48c fetcht 5 ,mem_le_pcnt_tx 
+710d 204070e7 call generate_mic 
+710e 18007008 force regidx_xor ,regext_index 
+710f 98005e00 iforce regext 
+7110 18002200 force 0 ,rega 
+7111 204070d3 call first_block_data 
+7112 2040714d call do_aes_ctr 
+7113 da604467 arg mem_le_txpayload ,regc 
+7114 6800c466 fetch 1 ,mem_le_txlen 
+7115 1fe0a5ff add pdata ,-1 ,regb 
+7116 9a608a00 iadd regc ,contw 
+7117 1800700c force regidx_result ,regext_index 
+7118 1de27e00 deposit regext 
+7119 e0a20000 istore 4 ,contw 
+711a 204070ff call aes_crypt_data 
+711b 6800c466 fetch 1 ,mem_le_txlen 
+711c 1fe0fe04 increase 4 ,pdata 
+711d 6000c466 store 1 ,mem_le_txlen 
+711e 680ac48c fetcht 5 ,mem_le_pcnt_tx 
+711f 18408401 increase 1 ,temp 
+7120 600ac48c storet 5 ,mem_le_pcnt_tx 
+7121 20600000 rtn 
+
+le_decrypt:
+7122 79200025 set1 mark_ext_patch ,mark 
+7123 44eb403a bpatch patch3a_6 ,mem_patch3a 
+7124 68008303 fetch 1 ,mem_le_rxbuf + 1 
+7125 1fe67c14 sub pdata ,20 ,null 
+7126 20217127 branch le_dec_cont ,positive 
+
+le_dec_cont:
+7127 da600304 arg mem_le_rxbuf + 2 ,regc 
+7128 1fe0a5ff add pdata ,-1 ,regb 
+7129 1fe0fffc increase -4 ,pdata 
+712a 60008303 store 1 ,mem_le_rxbuf + 1 
+712b 9a608c00 iadd regc ,contr 
+712c e8c20000 ifetch 4 ,contr 
+712d 18007008 force regidx_xor ,regext_index 
+712e 98005e00 iforce regext 
+712f 18002200 force 0 ,rega 
+7130 680ac491 fetcht 5 ,mem_le_pcnt_rx 
+7131 204070d3 call first_block_data 
+7132 2040714d call do_aes_ctr 
+7133 1800700c force regidx_result ,regext_index 
+7134 1de27e00 deposit regext 
+7135 6002033e store 4 ,mem_le_peer_mic 
+7136 204070ff call aes_crypt_data 
+7137 da600302 arg mem_le_rxbuf ,regc 
+7138 204070e7 call generate_mic 
+7139 680a033e fetcht 4 ,mem_le_peer_mic 
+713a 98467e00 isub temp ,pdata 
+713b 247a0000 nrtn blank 
+713c 68024496 fetch 4 ,mem_le_last_mic 
+713d 98467e00 isub temp ,pdata 
+713e 207a0000 rtn blank 
+713f 600a4496 storet 4 ,mem_le_last_mic 
+7140 6802c491 fetch 5 ,mem_le_pcnt_rx 
+7141 1fe0fe01 increase 1 ,pdata 
+7142 6002c491 store 5 ,mem_le_pcnt_rx 
+7143 18007e00 force 0 ,pdata 
+7144 20600000 rtn 
+
+wait_aes:
+7145 243bf145 nbranch wait_aes ,aes_ready 
+7146 20600000 rtn 
+
+do_aes_ocb:
+7147 18006c30 force 0x30 ,aes_ctrl 
+7148 18006c00 force 0x0 ,aes_ctrl 
+7149 20207145 branch wait_aes 
+
+do_aes_cbc:
+714a 18006c32 force 0x32 ,aes_ctrl 
+714b 18006c02 force 0x2 ,aes_ctrl 
+714c 20207145 branch wait_aes 
+
+do_aes_ctr:
+714d 18006c34 force 0x34 ,aes_ctrl 
+714e 18006c04 force 0x4 ,aes_ctrl 
+714f 20207145 branch wait_aes 
+
+aes_init:
+7150 18006c01 force 1 ,aes_ctrl 
+7151 18006c00 force 0 ,aes_ctrl 
+7152 20600000 rtn 
+
+function_s1:
+7153 18007000 force regidx_data ,regext_index 
+7154 68020352 fetch 4 ,mem_le_mrand 
+7155 98005e00 iforce regext 
+7156 1f00f001 increase 1 ,regext_index 
+7157 e8c20000 ifetch 4 ,contr 
+7158 98005e00 iforce regext 
+7159 1f00f001 increase 1 ,regext_index 
+715a 680244c3 fetch 4 ,mem_le_srand 
+715b 98005e00 iforce regext 
+715c 1f00f001 increase 1 ,regext_index 
+715d e8c20000 ifetch 4 ,contr 
+715e 98005e00 iforce regext 
+715f 1f00f001 increase 1 ,regext_index 
+7160 204071bb call aes_clear 
+7161 1f00f1fc increase -4 ,regext_index 
+7162 6802456d fetch 4 ,mem_le_tk 
+7163 1fe25e00 copy pdata ,regext 
+7164 1f00f004 increase 4 ,regext_index 
+7165 18006c38 force 0x38 ,aes_ctrl 
+7166 18006c08 force 0x8 ,aes_ctrl 
+7167 20207145 branch wait_aes 
+
+function_c1:
+7168 79200025 set1 mark_ext_patch ,mark 
+7169 44ebc03a bpatch patch3a_7 ,mem_patch3a 
+716a 6803453e fetch 6 ,mem_le_lap 
+716b 680b0372 fetcht 6 ,mem_le_plap 
+716c 2034f16f branch function_c1_master ,master 
+716d 68030372 fetch 6 ,mem_le_plap 
+716e 680b453e fetcht 6 ,mem_le_lap 
+
+function_c1_master:
+716f 18007008 force regidx_xor ,regext_index 
+7170 18425e00 copy temp ,regext 
+7171 1f00f001 increase 1 ,regext_index 
+7172 184f5e00 rshift32 temp ,regext 
+7173 1ff07e00 lshift16 pdata ,pdata 
+7174 9de1de00 ior regext ,regext 
+7175 1f00f001 increase 1 ,regext_index 
+7176 1fef5e00 rshift32 pdata ,regext 
+7177 1f00f001 increase 1 ,regext_index 
+7178 18005e00 force 0 ,regext 
+7179 18007e00 force 0 ,pdata 
+717a 6800c52b fetch 1 ,mem_le_conn_peer_addr_type 
+717b 6808c521 fetcht 1 ,mem_le_adv_own_addr_type 
+717c 2434f17f nbranch function_c1_irat ,master 
+717d 6800c532 fetch 1 ,mem_le_conn_own_addr_type 
+717e 6808c52b fetcht 1 ,mem_le_conn_peer_addr_type 
+
+function_c1_irat:
+717f 6000c4d3 store 1 ,mem_le_iat 
+7180 6008c4d4 storet 1 ,mem_le_rat 
+7181 18007000 force regidx_data ,regext_index 
+7182 da4044d3 arg mem_le_iat ,regb 
+7183 18007204 force 4 ,loopcnt 
+
+function_c1_loop1:
+7184 ea220000 ifetch 4 ,rega 
+7185 ea4a0000 ifetcht 4 ,regb 
+7186 9842de00 ixor temp ,regext 
+7187 1f00f001 increase 1 ,regext_index 
+7188 1a20a204 increase 4 ,rega 
+7189 1a40a404 increase 4 ,regb 
+718a c2007184 loop function_c1_loop1 
+718b 204071bb call aes_clear 
+718c 1f00f1fc increase -4 ,regext_index 
+718d 6802456d fetch 4 ,mem_le_tk 
+718e 1fe25e00 copy pdata ,regext 
+718f 1f00f004 increase 4 ,regext_index 
+7190 18006c38 force 0x38 ,aes_ctrl 
+7191 18006c0c force 0xc ,aes_ctrl 
+7192 20407145 call wait_aes 
+7193 204071ba call aes_clear_data 
+7194 18006c3a force 0x3a ,aes_ctrl 
+7195 18006c08 force 0x8 ,aes_ctrl 
+7196 20207145 branch wait_aes 
+
+padding_data:
+7197 2f200600 compare 0 ,loopcnt ,3 
+7198 20608000 rtn true 
+7199 18c27e00 deposit contr 
+719a 9f208a00 iadd loopcnt ,contw 
+719b 18007e00 force 0 ,pdata 
+
+padding_loop:
+719c e0a08000 istore 1 ,contw 
+719d 1f20f201 increase 1 ,loopcnt 
+719e 2f200600 compare 0 ,loopcnt ,3 
+719f 20608000 rtn true 
+71a0 2020719c branch padding_loop 
+
+aes_load_data:
+71a1 18007000 force regidx_data ,regext_index 
+
+load_data_loop:
+71a2 1f227e00 deposit loopcnt 
+71a3 203a71a6 branch load_data_padding ,blank 
+71a4 e8c20000 ifetch 4 ,contr 
+71a5 1f20f3fc increase -4 ,loopcnt 
+
+load_data_padding:
+71a6 98005e00 iforce regext 
+71a7 1f00f001 increase 1 ,regext_index 
+71a8 2f001e04 compare regidx_key ,regext_index ,0xf 
+71a9 20608000 rtn true 
+71aa 202071a2 branch load_data_loop 
+
+aes_load_xor:
+71ab 18007008 force regidx_xor ,regext_index 
+71ac 202071b0 branch load_regext 
+
+load_key:
+71ad 18007004 force regidx_key ,regext_index 
+71ae 202071b0 branch load_regext 
+
+load_data128:
+71af 18007000 force regidx_data ,regext_index 
+
+load_regext:
+71b0 18007204 force 4 ,loopcnt 
+
+load_regext_loop:
+71b1 e8c20000 ifetch 4 ,contr 
+71b2 98005e00 iforce regext 
+71b3 1f00f001 increase 1 ,regext_index 
+71b4 c20071b1 loop load_regext_loop 
+71b5 20600000 rtn 
+
+load_sk:
+71b6 d8c003a0 arg mem_le_sk ,contr 
+71b7 202071ad branch load_key 
+
+clear_hidata:
+71b8 18007204 force 4 ,loopcnt 
+71b9 202071bd branch clear_data_rest 
+
+aes_clear_data:
+71ba 18007000 force regidx_data ,regext_index 
+
+aes_clear:
+71bb 18007204 force 4 ,loopcnt 
+
+clear_loop:
+71bc 18005e00 force 0 ,regext 
+
+clear_data_rest:
+71bd 1f00f001 increase 1 ,regext_index 
+71be c20071bc loop clear_loop 
+71bf 20600000 rtn 
+
+store_aes_result:
+71c0 1800700c force regidx_result ,regext_index 
+71c1 18007204 force 4 ,loopcnt 
+
+send_aes_result_loop:
+71c2 1de27e00 deposit regext 
+71c3 e0a20000 istore 4 ,contw 
+71c4 1f00f001 increase 1 ,regext_index 
+71c5 c20071c2 loop send_aes_result_loop 
+71c6 20600000 rtn 
+
+store_enc_data:
+71c7 1800700c force regidx_result ,regext_index 
+71c8 1a620a00 copy regc ,contw 
+71c9 1a40f201 add regb ,1 ,loopcnt 
+71ca 1f267c0f sub loopcnt ,15 ,null 
+71cb 202171cd branch store_enc_loop ,positive 
+71cc 18007210 force 16 ,loopcnt 
+
+store_enc_loop:
+71cd 1de27e00 deposit regext 
+71ce 1f267c03 sub loopcnt ,3 ,null 
+71cf 202171d5 branch store_enc_byte ,positive 
+71d0 e0a20000 istore 4 ,contw 
+71d1 1f20f3fc increase -4 ,loopcnt 
+71d2 20628000 rtn zero 
+71d3 1f00f001 increase 1 ,regext_index 
+71d4 202071cd branch store_enc_loop 
+
+store_enc_byte:
+71d5 e0a08000 istore 1 ,contw 
+71d6 1fecfe00 rshift8 pdata ,pdata 
+71d7 c20071d5 loop store_enc_byte 
+71d8 20600000 rtn 
+
+compare_res:
+71d9 1800700c force regidx_result ,regext_index 
+71da 18007204 force 4 ,loopcnt 
+
+compare_res_loop:
+71db e8c20000 ifetch 4 ,contr 
+71dc 9de67c00 isub regext ,null 
+71dd 24628000 nrtn zero 
+71de 1f00f001 increase 1 ,regext_index 
+71df c20071db loop compare_res_loop 
+71e0 18007c00 force 0 ,null 
+71e1 20600000 rtn 
+
+enable_authrom:
+71e2 68108050 hfetch 1 ,core_clkoff 
+71e3 793ffe00 set0 clock_off_auth_rom ,pdata 
+71e4 60108050 hstore 1 ,core_clkoff 
+71e5 20600000 rtn 
+
+disable_authrom:
+71e6 68108050 hfetch 1 ,core_clkoff 
+71e7 79207e00 set1 clock_off_auth_rom ,pdata 
+71e8 60108050 hstore 1 ,core_clkoff 
+71e9 20600000 rtn 
+
+init_memp:
+71ea d8a007aa arg mem_p ,contw 
+71eb 3803ffff setsect 0 ,0x3ffff 
+71ec 3807ffff setsect 1 ,0x3ffff 
+71ed 380bffff setsect 2 ,0x3ffff 
+71ee 380ffbff setsect 3 ,0x3fbff 
+71ef e0a48000 istore 9 ,contw 
+71f0 3803ffff setsect 0 ,0x3ffff 
+71f1 3807ffff setsect 1 ,0x3ffff 
+71f2 380bffff setsect 2 ,0x3ffff 
+71f3 380fffff setsect 3 ,0x3ffff 
+71f4 e0a48000 istore 9 ,contw 
+71f5 3803ffff setsect 0 ,0x3ffff 
+71f6 3807ffff setsect 1 ,0x3ffff 
+71f7 380bcfff setsect 2 ,0x3cfff 
+71f8 380fffff setsect 3 ,0x3ffff 
+71f9 e0a48000 istore 9 ,contw 
+71fa 3803ffff setsect 0 ,0x3ffff 
+71fb 3807ffff setsect 1 ,0x3ffff 
+71fc 380bffef setsect 2 ,0x3ffef 
+71fd 380fffff setsect 3 ,0x3ffff 
+71fe e0a48000 istore 9 ,contw 
+71ff 3803ffff setsect 0 ,0x3ffff 
+7200 3807ffff setsect 1 ,0x3ffff 
+7201 380bffff setsect 2 ,0x3ffff 
+7202 380fffff setsect 3 ,0x3ffff 
+7203 e0a48000 istore 9 ,contw 
+7204 3803ffff setsect 0 ,0x3ffff 
+7205 38066c7f setsect 1 ,0x26c7f 
+7206 3808146b setsect 2 ,0x146b 
+7207 380f7bb3 setsect 3 ,0x37bb3 
+7208 e0a48000 istore 9 ,contw 
+7209 3801feb8 setsect 0 ,0x1feb8 
+720a 38050c12 setsect 1 ,0x10c12 
+720b 380ab722 setsect 2 ,0x2b722 
+720c 380e9fa6 setsect 3 ,0x29fa6 
+720d e0a48000 istore 9 ,contw 
+720e 3800e70f setsect 0 ,0xe70f 
+720f 38056720 setsect 1 ,0x16720 
+7210 3808519e setsect 2 ,0x519e 
+7211 380d9084 setsect 3 ,0x19084 
+7212 e0a48000 istore 9 ,contw 
+7213 38031012 setsect 0 ,0x31012 
+7214 380760bf setsect 1 ,0x360bf 
+7215 380bf0af setsect 2 ,0x3f0af 
+7216 380c03d3 setsect 3 ,0x3d3 
+7217 e0a48000 istore 9 ,contw 
+7218 3803a188 setsect 0 ,0x3a188 
+7219 38043ad0 setsect 1 ,0x3ad0 
+721a 380bcbf2 setsect 2 ,0x3cbf2 
+721b 380e43d9 setsect 3 ,0x243d9 
+721c e0a48000 istore 9 ,contw 
+721d 3802b030 setsect 0 ,0x2b030 
+721e 38076a03 setsect 1 ,0x36a03 
+721f 38091188 setsect 2 ,0x11188 
+7220 380de520 setsect 3 ,0x1e520 
+7221 e0a48000 istore 9 ,contw 
+7222 3803a11e setsect 0 ,0x3a11e 
+7223 3804fe5d setsect 1 ,0xfe5d 
+7224 3808dd57 setsect 2 ,0xdd57 
+7225 380dac93 setsect 3 ,0x1ac93 
+7226 e0a48000 istore 9 ,contw 
+7227 380011ed setsect 0 ,0x11ed 
+7228 380618c4 setsect 1 ,0x218c4 
+7229 38088da7 setsect 2 ,0x8da7 
+722a 380e57ff setsect 3 ,0x257ff 
+722b e0a48000 istore 9 ,contw 
+722c 3803192b setsect 0 ,0x3192b 
+722d 38074641 setsect 1 ,0x34641 
+722e 3809be0c setsect 2 ,0x1be0c 
+722f 380f66ad setsect 3 ,0x366ad 
+7230 e0a48000 istore 9 ,contw 
+7231 38001f83 setsect 0 ,0x1f83 
+7232 38055a23 setsect 1 ,0x15a23 
+7233 380bf9b0 setsect 2 ,0x3f9b0 
+7234 380c3949 setsect 3 ,0x3949 
+7235 e0a48000 istore 9 ,contw 
+7236 38013a51 setsect 0 ,0x13a51 
+7237 380553fd setsect 1 ,0x153fd 
+7238 380b372a setsect 2 ,0x3372a 
+7239 380cf1bb setsect 3 ,0xf1bb 
+723a e0a48000 istore 9 ,contw 
+723b 3803ae85 setsect 0 ,0x3ae85 
+723c 3805eed9 setsect 1 ,0x1eed9 
+723d 38089e66 setsect 2 ,0x9e66 
+723e 380c01a8 setsect 3 ,0x1a8 
+723f e0a40000 istore 8 ,contw 
+7240 20600000 rtn 
+
+init_memp_256:
+7241 d8a00842 arg mem_p_256 ,contw 
+7242 3803ffff setsect 0 ,0x3ffff 
+7243 3807ffff setsect 1 ,0x3ffff 
+7244 380bffff setsect 2 ,0x3ffff 
+7245 380fffff setsect 3 ,0x3ffff 
+7246 e0a48000 istore 9 ,contw 
+7247 3803ffff setsect 0 ,0x3ffff 
+7248 3804003f setsect 1 ,0x3f 
+7249 38080000 setsect 2 ,0x0 
+724a 380c0000 setsect 3 ,0x0 
+724b e0a48000 istore 9 ,contw 
+724c 38000000 setsect 0 ,0x0 
+724d 38040000 setsect 1 ,0x0 
+724e 38081000 setsect 2 ,0x1000 
+724f 380c0000 setsect 3 ,0x0 
+7250 e0a48000 istore 9 ,contw 
+7251 3803ff00 setsect 0 ,0x3ff00 
+7252 3807ffff setsect 1 ,0x3ffff 
+7253 380bffcf setsect 2 ,0x3ffcf 
+7254 380fffff setsect 3 ,0x3ffff 
+7255 e0a48000 istore 9 ,contw 
+7256 3803ffff setsect 0 ,0x3ffff 
+7257 3807ffff setsect 1 ,0x3ffff 
+7258 380bffff setsect 2 ,0x3ffff 
+7259 380c03ff setsect 3 ,0x3ff 
+725a e0a48000 istore 9 ,contw 
+725b 38000000 setsect 0 ,0x0 
+725c 38040000 setsect 1 ,0x0 
+725d 38080000 setsect 2 ,0x0 
+725e 380c0000 setsect 3 ,0x0 
+725f e0a48000 istore 9 ,contw 
+7260 38010000 setsect 0 ,0x10000 
+7261 38040000 setsect 1 ,0x0 
+7262 380bf000 setsect 2 ,0x3f000 
+7263 380fffff setsect 3 ,0x3ffff 
+7264 e0a48000 istore 9 ,contw 
+7265 380296ff setsect 0 ,0x296ff 
+7266 38062630 setsect 1 ,0x22630 
+7267 380b945d setsect 2 ,0x3945d 
+7268 380fd284 setsect 3 ,0x3d284 
+7269 e0a48000 istore 9 ,contw 
+726a 380333a0 setsect 0 ,0x333a0 
+726b 38044b7a setsect 1 ,0x4b7a 
+726c 380837d8 setsect 2 ,0x37d8 
+726d 380fc9dc setsect 3 ,0x3c9dc 
+726e e0a48000 istore 9 ,contw 
+726f 3803a440 setsect 0 ,0x3a440 
+7270 3805b958 setsect 1 ,0x1b958 
+7271 380b8bce setsect 2 ,0x38bce 
+7272 380d091f setsect 3 ,0x1091f 
+7273 e0a48000 istore 9 ,contw 
+7274 3802e12c setsect 0 ,0x2e12c 
+7275 3805f47c setsect 1 ,0x1f47c 
+7276 380b56b1 setsect 2 ,0x356b1 
+7277 380efd47 setsect 3 ,0x2fd47 
+7278 e0a48000 istore 9 ,contw 
+7279 38006837 setsect 0 ,0x6837 
+727a 3806ed90 setsect 1 ,0x2ed90 
+727b 3809ecec setsect 2 ,0x1ecec 
+727c 380dacc5 setsect 3 ,0x1acc5 
+727d e0a48000 istore 9 ,contw 
+727e 38023357 setsect 0 ,0x23357 
+727f 38058af3 setsect 1 ,0x18af3 
+7280 3808f9e1 setsect 2 ,0xf9e1 
+7281 380d29f0 setsect 3 ,0x129f0 
+7282 e0a48000 istore 9 ,contw 
+7283 3802e7eb setsect 0 ,0x2e7eb 
+7284 3807e6e3 setsect 1 ,0x3e6e3 
+7285 380be1a7 setsect 2 ,0x3e1a7 
+7286 380d0b8b setsect 3 ,0x10b8b 
+7287 e0a48000 istore 9 ,contw 
+7288 38024fe3 setsect 0 ,0x24fe3 
+7289 380420ef setsect 1 ,0x20ef 
+728a 3809b5a6 setsect 2 ,0x1b5a6 
+728b 380cdc2f setsect 3 ,0xdc2f 
+728c e0a48000 istore 9 ,contw 
+728d 38013860 setsect 0 ,0x13860 
+728e 3806bd69 setsect 1 ,0x2bd69 
+728f 3808391a setsect 2 ,0x391a 
+7290 380db222 setsect 3 ,0x1b222 
+7291 e0a48000 istore 9 ,contw 
+7292 20600000 rtn 
+
+shutter_init:
+7293 20758000 rtn wake 
+7294 204074fd call init_shutter_le_att_list 
+7295 204075c9 call shutter_init_param 
+7296 70808100 hjam 0x00 ,core_gpio_sel1 
+7297 204073a5 call shutter_key_init 
+7298 5800737c setarg shutter_le_before_hibernate 
+7299 6001428c store 2 ,mem_cb_before_hibernate 
+729a 5800748c setarg shutter_le_process_lpm_before 
+729b 6001428e store 2 ,mem_cb_before_lpm 
+729c 58007365 setarg shutter_le_discovery_timeout_sleep 
+729d 60014298 store 2 ,mem_cb_discovry_timeout 
+729e 5800737a setarg scale_process_idle 
+729f 60014294 store 2 ,mem_cb_idle_process 
+72a0 58007371 setarg scale_process 
+72a1 60014290 store 2 ,mem_cb_le_process 
+72a2 580072f4 setarg scale_process_bb_event 
+72a3 60014296 store 2 ,mem_cb_bb_event_process 
+72a4 580072ef setarg shutter_le_scale_lpm_lock 
+72a5 6001428a store 2 ,mem_cb_check_wakelock 
+72a6 580074e5 setarg shutter_le_send_att_handle_value_notification 
+72a7 6001429c store 2 ,mem_cb_update_notify_value 
+
+shutter_init0:
+72a8 580074f4 setarg shutter_le_receive_data 
+72a9 6001429a store 2 ,mem_cb_att_write 
+72aa 20407496 call shutter_le_queue_init 
+72ab 70421200 jam 0 ,mem_lpm_mult 
+72ac 7048c700 jam 0 ,mem_shutter_conn_update_timer 
+72ad 79200025 set1 mark_ext_patch ,mark 
+72ae 44ec403b bpatch patch3b_0 ,mem_patch3b 
+72af 6800c755 fetch 1 ,mem_hard_soft_switch_case 
+72b0 c00072b8 beq hard_switch ,shutter_le_hard_switch_power_on_signal 
+72b1 20407382 call shutter_ui_led_init 
+72b2 20407cf6 call ui_button_init 
+72b3 20407d02 call ui_button_polling 
+72b4 70475600 jam shutter_power_up ,mem_shutter_powerup_flag 
+72b5 6801470b fetch 2 ,mem_ui_state_map 
+72b6 c3860000 rtnbit1 ui_state_btn_down 
+72b7 20203e75 branch app_enter_hibernate 
+
+shutter_le_hard_switch_power_on_signal:
+72b8 70475601 jam shutter_power_on ,mem_shutter_powerup_flag 
+72b9 70475b01 jam 1 ,mem_enable_key_scan 
+72ba 20407382 call shutter_ui_led_init 
+72bb 58004771 setarg mem_power_on_led_style 
+72bc 2040738e call shutter_ui_led_send 
+
+in_poweron_hard_switch_led:
+72bd 20407d44 call ui_led_blink_polling 
+72be 6800c713 fetch 1 ,mem_led_blink_count 
+72bf 243a72bd nbranch in_poweron_hard_switch_led ,blank 
+
+shutter_le_soft_switch_power_on_signal:
+72c0 7043ff01 jam on ,mem_le_adv_enable 
+72c1 58000000 setarg 0 
+72c2 60024729 store 4 ,mem_shutter_send_data 
+72c3 20407382 call shutter_ui_led_init 
+72c4 68014748 fetch 2 ,mem_le_sleep_timeout 
+72c5 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+72c6 204072e5 call shutter_le_fast_advertise 
+72c7 70474600 jam pair_unknown ,mem_pair_state 
+72c8 20405234 call le_modified_name 
+72c9 6803453e fetch 6 ,mem_le_lap 
+72ca 204072d6 call shutter_byteswap 
+72cb 204072d2 call shutter_updata_mac 
+72cc 20600000 rtn 
+
+shutter_le_adv_interval_set:
+72cd 600141f4 store 2 ,mem_lpm_interval 
+72ce 1fe0fffc increase -4 ,pdata 
+72cf 6001451c store 2 ,mem_le_adv_interval_min 
+72d0 6001451e store 2 ,mem_le_adv_interval_max 
+72d1 20600000 rtn 
+
+shutter_updata_mac:
+72d2 68094741 fetcht 2 ,mem_adv_lap_ptr 
+72d3 207a0000 rtn blank 
+72d4 e0430000 istore 6 ,temp 
+72d5 20600000 rtn 
+
+shutter_byteswap:
+72d6 60030100 store 6 ,mem_tmp_buffer 
+72d7 68008100 fetch 1 ,mem_tmp_buffer 
+72d8 6000810b store 1 ,mem_tmp_buffer + 11 
+72d9 e8c08000 ifetch 1 ,contr 
+72da 6000810a store 1 ,mem_tmp_buffer + 10 
+72db e8c08000 ifetch 1 ,contr 
+72dc 60008109 store 1 ,mem_tmp_buffer + 9 
+72dd e8c08000 ifetch 1 ,contr 
+72de 60008108 store 1 ,mem_tmp_buffer + 8 
+72df e8c08000 ifetch 1 ,contr 
+72e0 60008107 store 1 ,mem_tmp_buffer + 7 
+72e1 e8c08000 ifetch 1 ,contr 
+72e2 60008106 store 1 ,mem_tmp_buffer + 6 
+72e3 68030106 fetch 6 ,mem_tmp_buffer + 6 
+72e4 20600000 rtn 
+
+shutter_le_fast_advertise:
+72e5 7048bb00 jam 0 ,mem_shutter_key_data_flag_1 
+72e6 6801474e fetch 2 ,mem_le_fast_adv_timeout_timer_count 
+72e7 243a72ec nbranch in_shutter_skip_set ,blank 
+72e8 58004763 setarg mem_fast_adv_led_style 
+72e9 2040738e call shutter_ui_led_send 
+72ea 580000a0 setarg fast_adv_interval_value 
+72eb 204072cd call shutter_le_adv_interval_set 
+
+in_shutter_skip_set:
+72ec 6801474c fetch 2 ,mem_le_fast_adv_timeout 
+72ed 6001474e store 2 ,mem_le_fast_adv_timeout_timer_count 
+72ee 20600000 rtn 
+
+shutter_le_scale_lpm_lock:
+72ef 6800c740 fetch 1 ,mem_scale_txbuff_inuse 
+72f0 c000be35 beq 1 ,app_get_lpm_wake_lock 
+72f1 6800c877 fetch 1 ,mem_queue_ele_num 
+72f2 243a3e35 nbranch app_get_lpm_wake_lock ,blank 
+72f3 20203e37 branch app_put_lpm_wake_lock 
+
+scale_process_bb_event:
+72f4 1a627e00 copy regc ,pdata 
+72f5 c016f475 beq bt_evt_button_up ,shutter_bb_event_button_up 
+72f6 c008747a beq bt_evt_button_long_pressed ,shutter_evt_button_long_pressed 
+72f7 c00a7334 beq bt_evt_le_connected ,scale_process_le_conn 
+72f8 c00af34c beq bt_evt_le_disconnected ,scale_process_le_discon 
+72f9 1fe1040f and pdata ,0x0f ,temp 
+72fa 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+72fb c02872fd beq bt_evt_timer_init ,shutter_le_bb_event_timer 
+72fc 20600000 rtn 
+
+shutter_le_bb_event_timer:
+72fd 6008824e storet 1 ,mem_app_evt_timer_count 
+
+shutter_le_bb_event_100ms_loop:
+72fe 6800824e fetch 1 ,mem_app_evt_timer_count 
+72ff 207a0000 rtn blank 
+7300 1fe0ffff increase -1 ,pdata 
+7301 6000824e store 1 ,mem_app_evt_timer_count 
+7302 79200025 set1 mark_ext_patch ,mark 
+7303 44ecc03b bpatch patch3b_1 ,mem_patch3b 
+7304 20407d1f call ui_button_check_long_press 
+7305 2040731f call shutter_le_shutter_fast_adv_timer 
+7306 2040732c call shutter_le_sleep_timer 
+7307 2040746c call shutter_ui_button_timeout_timer 
+7308 20407464 call shutter_ui_power_timeout_timer 
+7309 20407313 call shutter_app_updata_le_param_timer 
+730a 2040730c call shutter_conn_update_timer 
+730b 202072fe branch shutter_le_bb_event_100ms_loop 
+
+shutter_conn_update_timer:
+730c 6800c8c7 fetch 1 ,mem_shutter_conn_update_timer 
+730d 207a0000 rtn blank 
+730e 1fe0ffff increase -1 ,pdata 
+730f 6000c8c7 store 1 ,mem_shutter_conn_update_timer 
+7310 247a0000 nrtn blank 
+7311 70421205 jam 0x05 ,mem_lpm_mult 
+7312 20600000 rtn 
+
+shutter_app_updata_le_param_timer:
+7313 6800c8c2 fetch 1 ,mem_send_updata_le_param_timer 
+7314 207a0000 rtn blank 
+7315 1fe0ffff increase -1 ,pdata 
+7316 6000c8c2 store 1 ,mem_send_updata_le_param_timer 
+7317 247a0000 nrtn blank 
+7318 68008362 fetch 1 ,mem_le_state 
+7319 c302731c bbit0 lestate_encryption ,shutter_app_updata_le_param 
+731a 7048c201 jam 1 ,mem_send_updata_le_param_timer 
+731b 20600000 rtn 
+
+shutter_app_updata_le_param:
+731c 20403e7f call app_lpm_mult_enable 
+731d 7009bd12 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+731e 20207d90 branch ui_ipc_send_cmd 
+
+shutter_le_shutter_fast_adv_timer:
+731f 6800c756 fetch 1 ,mem_shutter_powerup_flag 
+7320 c1808000 rtnne shutter_power_on 
+7321 6801474e fetch 2 ,mem_le_fast_adv_timeout_timer_count 
+7322 207a0000 rtn blank 
+7323 1fe0ffff increase -1 ,pdata 
+7324 6001474e store 2 ,mem_le_fast_adv_timeout_timer_count 
+7325 247a0000 nrtn blank 
+7326 6801470b fetch 2 ,mem_ui_state_map 
+7327 c284f32a bbit1 ui_state_ble_connected ,in_is_connected 
+7328 5800476a setarg mem_slow_adv_led_style 
+7329 2040738e call shutter_ui_led_send 
+
+in_is_connected:
+732a 58000140 setarg slow_adv_interval_value 
+732b 202072cd branch shutter_le_adv_interval_set 
+
+shutter_le_sleep_timer:
+732c 6801474a fetch 2 ,mem_le_sleep_timeout_timer_count 
+732d 207a0000 rtn blank 
+732e 1fe0ffff increase -1 ,pdata 
+732f 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+7330 247a0000 nrtn blank 
+7331 70475602 jam shutter_power_off ,mem_shutter_powerup_flag 
+7332 20407487 call shutter_shutter_power_off_end 
+7333 20600000 rtn 
+
+scale_process_le_conn:
+7334 70413100 jam 0 ,mem_lpm_mode 
+7335 68014748 fetch 2 ,mem_le_sleep_timeout 
+7336 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+7337 70474600 jam pair_unknown ,mem_pair_state 
+7338 20403e61 call app_ble_stop_adv 
+7339 58112233 setarg 0x112233 
+733a 6001c4a2 store 3 ,mem_le_ltk 
+733b 58445566 setarg 0x445566 
+733c e0a18000 istore 3 ,contw 
+733d 58778899 setarg 0x778899 
+733e e0a18000 istore 3 ,contw 
+733f 58001122 setarg 0x001122 
+7340 e0a18000 istore 3 ,contw 
+7341 58334455 setarg 0x334455 
+7342 e0a18000 istore 3 ,contw 
+7343 58000066 setarg 0x66 
+7344 e0a08000 istore 1 ,contw 
+7345 20403e61 call app_ble_stop_adv 
+7346 20403e7f call app_lpm_mult_enable 
+7347 70474e00 jam 0 ,mem_le_fast_adv_timeout_timer_count 
+7348 5800477f setarg mem_connected_led_style 
+7349 2040738e call shutter_ui_led_send 
+734a 70470e00 jam 0 ,mem_led_gpio 
+734b 20600000 rtn 
+
+scale_process_le_discon:
+734c 70421200 jam 0 ,mem_lpm_mult 
+734d 7048c700 jam 0 ,mem_shutter_conn_update_timer 
+734e 7044b200 jam 0 ,mem_ltk_exists 
+734f 7048c600 jam default_states ,mem_ltk_states 
+7350 7048c000 jam 0 ,mem_shutter_find_type_value_flag 
+7351 2040749b call shutter_le_queue_clear 
+7352 68014748 fetch 2 ,mem_le_sleep_timeout 
+7353 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+7354 6800c743 fetch 1 ,mem_le_sleep_flag 
+7355 c0807369 bne 0 ,shutter_le_sleep_enter 
+7356 204072e5 call shutter_le_fast_advertise 
+7357 70474600 jam pair_unknown ,mem_pair_state 
+7358 58000000 setarg 0 
+7359 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+735a 58000000 setarg 0 
+735b 60010288 store 2 ,mem_l2cap_rxbuff2_len 
+735c 20407363 call shutter_le_tx_buff_unuse 
+735d 20403e63 call app_ble_start_adv 
+735e 20600000 rtn 
+
+shutter_le_tx_buff_inuse:
+735f 70474001 jam 1 ,mem_scale_txbuff_inuse 
+7360 20600000 rtn 
+
+shutter_le_check_tx_buff:
+7361 6800c740 fetch 1 ,mem_scale_txbuff_inuse 
+7362 20600000 rtn 
+
+shutter_le_tx_buff_unuse:
+7363 70474000 jam 0 ,mem_scale_txbuff_inuse 
+7364 20600000 rtn 
+
+shutter_le_discovery_timeout_sleep:
+7365 20203e75 branch app_enter_hibernate 
+
+shutter_le_sleep_req_hibernate:
+7366 70474301 jam 0x01 ,mem_le_sleep_flag 
+
+shutter_le_sleep_req_ok:
+7367 6801470b fetch 2 ,mem_ui_state_map 
+7368 c284be6b bbit1 ui_state_ble_connected ,app_ble_disconnect 
+
+shutter_le_sleep_enter:
+7369 2040736d call shutter_le_sleep_clr 
+736a 20407f6b call wait_uarttx 
+736b 70474300 jam 0x00 ,mem_le_sleep_flag 
+736c 20203e0a branch app_bb_hibernate 
+
+shutter_le_sleep_clr:
+736d 58000000 setarg 0 
+736e 60010286 store 2 ,mem_l2cap_rxbuff1_len 
+736f 60010288 store 2 ,mem_l2cap_rxbuff2_len 
+7370 20207363 branch shutter_le_tx_buff_unuse 
+
+scale_process:
+7371 6800c747 fetch 1 ,mem_exchange_mtu_req 
+7372 245a7375 ncall shutter_le_parse_att_exchange_mtu_request ,blank 
+7373 204074ca call shutter_le_send_packet 
+7374 202073c5 branch shutter_le_key_process 
+
+shutter_le_parse_att_exchange_mtu_request:
+7375 70474700 jam 0 ,mem_exchange_mtu_req 
+7376 7009bd03 jam attop_exchange_mtu_response ,mem_fifo_temp 
+7377 20204bd6 branch le_xtype_fifo_in 
+
+shutter_le_parse_att_exchange_mtu_request_save:
+7378 70474701 jam 1 ,mem_exchange_mtu_req 
+7379 20600000 rtn 
+
+scale_process_idle:
+737a 204074ca call shutter_le_send_packet 
+737b 202073c5 branch shutter_le_key_process 
+
+shutter_le_before_hibernate:
+737c 204073af call shutter_shutter_scan_key 
+737d 680147b6 fetch 2 ,mem_key_value_temp 
+737e 203a7380 branch in_enter_hibernate ,blank 
+737f 20203e75 branch app_enter_hibernate 
+
+in_enter_hibernate:
+7380 20406509 call gpio_set_before_lpm_common 
+7381 2020748c branch shutter_le_process_lpm_before 
+
+shutter_ui_led_init:
+7382 6800c75e fetch 1 ,mem_shutter_led_num 
+7383 1fe27200 copy pdata ,loopcnt 
+7384 5800475f setarg mem_led_map 
+7385 1fe22200 copy pdata ,rega 
+
+in_lp1:
+7386 1a220c00 copy rega ,contr 
+7387 e8c08000 ifetch 1 ,contr 
+7388 c07ff38c beq invalid_pin_num ,in_lp1_end 
+7389 1fe20400 copy pdata ,temp 
+738a 6000c70e store 1 ,mem_led_gpio 
+738b 20407d2a call ui_led_init 
+
+in_lp1_end:
+738c c2007386 loop in_lp1 
+
+shutter_ui_led_init_end:
+738d 20600000 rtn 
+
+shutter_ui_led_send:
+738e 1fe20c00 copy pdata ,contr 
+738f 18007207 force 7 ,loopcnt 
+7390 d8a047a2 arg mem_temp_led_style ,contw 
+7391 20407ecd call memcpy 
+7392 79200025 set1 mark_ext_patch ,mark 
+7393 44ed403b bpatch patch3b_2 ,mem_patch3b 
+7394 6800c7a2 fetch 1 ,mem_temp_led_type 
+7395 c17f8000 rtneq led_invalid 
+7396 680947a4 fetcht 2 ,mem_temp_led_on_time 
+7397 60094711 storet 2 ,mem_led_light_time 
+7398 680947a6 fetcht 2 ,mem_temp_led_off_time 
+7399 6009470f storet 2 ,mem_led_dark_time 
+739a 6808c7a8 fetcht 1 ,mem_temp_blink_count 
+739b 6008c713 storet 1 ,mem_led_blink_count 
+739c 20407d2f call ui_led_blink_stop 
+739d 6808c7a3 fetcht 1 ,mem_temp_led_pin 
+739e 6008c70e storet 1 ,mem_led_gpio 
+739f 6800c7a2 fetch 1 ,mem_temp_led_type 
+73a0 c00073a3 beq led_off ,shutter_ui_led_send_end 
+73a1 c000fd38 beq led_on ,ui_led_on 
+73a2 c0017d3f beq led_blink ,ui_led_blink_start1 
+
+shutter_ui_led_send_end:
+73a3 20600000 rtn 
+
+shutter_ui_led_off:
+73a4 20207d2f branch ui_led_blink_stop 
+
+shutter_key_init:
+73a5 6800c7a9 fetch 1 ,mem_shutter_key_num 
+73a6 207a0000 rtn blank 
+73a7 1fe27200 copy pdata ,loopcnt 
+73a8 580047aa setarg mem_key_conf0_pin 
+73a9 1fe22200 copy pdata ,rega 
+
+shutter_key_lp1:
+73aa ea288000 ifetcht 1 ,rega 
+73ab 204064df call gpio_config_input 
+73ac 1a20a202 increase key_conf_struct_len ,rega 
+73ad c20073aa loop shutter_key_lp1 
+
+shutter_key_init_end:
+73ae 20600000 rtn 
+
+shutter_shutter_scan_key:
+73af da2047aa arg mem_key_conf0_pin ,rega 
+73b0 18002400 force 0 ,regb 
+73b1 7047b600 jam 0 ,mem_key_value_temp 
+
+in_scan_key_lp1:
+73b2 ea288000 ifetcht 1 ,rega 
+73b3 204064f5 call gpio_get_bit 
+73b4 79200025 set1 mark_ext_patch ,mark 
+73b5 44edc03b bpatch patch3b_3 ,mem_patch3b 
+73b6 680147b6 fetch 2 ,mem_key_value_temp 
+73b7 1a420e00 copy regb ,queue 
+73b8 f920fe00 qsetflag true ,pdata 
+73b9 600147b6 store 2 ,mem_key_value_temp 
+73ba 1a20a202 increase key_conf_struct_len ,rega 
+73bb 1a40a401 increase 1 ,regb 
+73bc 6800c7a9 fetch 1 ,mem_shutter_key_num 
+73bd 9a42fc00 ixor regb ,null 
+73be 2422f3b2 nbranch in_scan_key_lp1 ,zero 
+73bf 680147b6 fetch 2 ,mem_key_value_temp 
+73c0 680947b8 fetcht 2 ,mem_key_value 
+73c1 9842fc00 ixor temp ,null 
+73c2 20628000 rtn zero 
+73c3 78347c00 enable user 
+73c4 20600000 rtn 
+
+shutter_le_key_process:
+73c5 d8e0000c arg temp_timer ,queue 
+73c6 20407ee2 call timer_check 
+73c7 247a0000 nrtn blank 
+73c8 204074c7 call shutter_le_packet_interval_set 
+73c9 6800c75b fetch 1 ,mem_enable_key_scan 
+73ca 207a0000 rtn blank 
+73cb 78547c00 disable user 
+73cc 2040748c call shutter_le_process_lpm_before 
+73cd 79200025 set1 mark_ext_patch ,mark 
+73ce 44ee403b bpatch patch3b_4 ,mem_patch3b 
+73cf 6800c7a9 fetch 1 ,mem_shutter_key_num 
+73d0 207a0000 rtn blank 
+73d1 204073af call shutter_shutter_scan_key 
+73d2 24347d28 nbranch lpm_button_clean_wake_lock ,user 
+73d3 20407d26 call lpm_button_get_wake_lock 
+73d4 78547c00 disable user 
+73d5 68014748 fetch 2 ,mem_le_sleep_timeout 
+73d6 6001474a store 2 ,mem_le_sleep_timeout_timer_count 
+73d7 6801470b fetch 2 ,mem_ui_state_map 
+73d8 c304f2e5 bbit0 ui_state_ble_connected ,shutter_le_fast_advertise 
+73d9 204074de call shutter_shutter_cancel_key_shake 
+73da 202173f5 branch in_le_key_process_end ,positive 
+73db 680147b6 fetch 2 ,mem_key_value_temp 
+73dc 600147c0 store 2 ,mem_key_value_temp4 
+73dd 7047c200 jam 0 ,mem_key_value_temp6 
+73de 18000e00 force 0 ,queue 
+
+shutter_le_key_lp1:
+73df 79200025 set1 mark_ext_patch ,mark 
+73e0 44eec03b bpatch patch3b_5 ,mem_patch3b 
+73e1 680147b8 fetch 2 ,mem_key_value 
+73e2 1fe30400 rshift pdata ,temp 
+73e3 600947b8 storet 2 ,mem_key_value 
+73e4 1fe17e01 and pdata ,0x01 ,pdata 
+73e5 680947c0 fetcht 2 ,mem_key_value_temp4 
+73e6 18412201 and temp ,0x01 ,rega 
+73e7 18430400 rshift temp ,temp 
+73e8 600947c0 storet 2 ,mem_key_value_temp4 
+73e9 9a22fc00 ixor rega ,null 
+73ea 2442f3f9 ncall shutter_le_send_key_data ,zero 
+73eb 6800c7a9 fetch 1 ,mem_shutter_key_num 
+73ec 6808c7c2 fetcht 1 ,mem_key_value_temp6 
+73ed 18408401 increase 1 ,temp 
+73ee 6008c7c2 storet 1 ,mem_key_value_temp6 
+73ef 18420e00 copy temp ,queue 
+73f0 98e2fc00 ixor queue ,null 
+73f1 2422f3df nbranch shutter_le_key_lp1 ,zero 
+73f2 680147b6 fetch 2 ,mem_key_value_temp 
+73f3 600147b8 store 2 ,mem_key_value 
+73f4 20600000 rtn 
+
+in_le_key_process_end:
+73f5 58000000 setarg 0 
+73f6 600147b6 store 2 ,mem_key_value_temp 
+73f7 600147b8 store 2 ,mem_key_value 
+73f8 20600000 rtn 
+
+shutter_le_send_key_data:
+73f9 1a227e00 deposit rega 
+73fa 203a7419 branch in_le_key_is_release ,blank 
+73fb 79200025 set1 mark_ext_patch ,mark 
+73fc 44ef403b bpatch patch3b_6 ,mem_patch3b 
+73fd 18e27e00 copy queue ,pdata 
+73fe c0007423 beq 0 ,in_le_send_key0_press 
+73ff c000f427 beq 1 ,in_le_send_key1_press 
+7400 c001742b beq 2 ,in_le_send_key2_press 
+7401 c001f42f beq 3 ,in_le_send_key3_press 
+7402 c0027433 beq 4 ,in_le_send_key4_press 
+7403 c002f437 beq 5 ,in_le_send_key5_press 
+
+in_le_send_lable:
+7404 6800c56b fetch 1 ,mem_le_enc_state 
+7405 c1818000 rtnne flag_le_enc_end 
+7406 6800c8bb fetch 1 ,mem_shutter_key_data_flag_1 
+7407 247a0000 nrtn blank 
+7408 e8408000 ifetch 1 ,temp 
+7409 207a0000 rtn blank 
+740a 6000c7ba store 1 ,mem_key_packet_count 
+740b 18408401 increase 1 ,temp 
+740c 600947bb storet 2 ,mem_key_next_addr 
+
+in_le_send_lp1:
+740d 680147bb fetch 2 ,mem_key_next_addr 
+740e efe88000 ifetcht 1 ,pdata 
+740f 18427200 copy temp ,loopcnt 
+7410 98408400 iadd temp ,temp 
+7411 600947bb storet 2 ,mem_key_next_addr 
+7412 1fe20400 copy pdata ,temp 
+7413 2040749c call shutter_le_queue_put 
+7414 6800c7ba fetch 1 ,mem_key_packet_count 
+7415 1fe0ffff increase -1 ,pdata 
+7416 6000c7ba store 1 ,mem_key_packet_count 
+7417 2422f40d nbranch in_le_send_lp1 ,zero 
+7418 202074ca branch shutter_le_send_packet 
+
+in_le_key_is_release:
+7419 79200025 set1 mark_ext_patch ,mark 
+741a 44efc03b bpatch patch3b_7 ,mem_patch3b 
+741b 18e27e00 copy queue ,pdata 
+741c c000743b beq 0 ,in_le_send_key0_rel 
+741d c000f43f beq 1 ,in_le_send_key1_rel 
+741e c0017443 beq 2 ,in_le_send_key2_rel 
+741f c001f447 beq 3 ,in_le_send_key3_rel 
+7420 c002744b beq 4 ,in_le_send_key4_rel 
+7421 c002f44f beq 5 ,in_le_send_key5_rel 
+7422 20207404 branch in_le_send_lable 
+
+in_le_send_key0_press:
+7423 6800c7ab fetch 1 ,mem_key_conf0_led 
+7424 20407457 call shutter_le_key_led_index 
+7425 d84047c3 arg mem_key0_press ,temp 
+7426 20207404 branch in_le_send_lable 
+
+in_le_send_key1_press:
+7427 6800c7ad fetch 1 ,mem_key_conf1_led 
+7428 20407457 call shutter_le_key_led_index 
+7429 d84047eb arg mem_key1_press ,temp 
+742a 20207404 branch in_le_send_lable 
+
+in_le_send_key2_press:
+742b 6800c7af fetch 1 ,mem_key_conf2_led 
+742c 20407457 call shutter_le_key_led_index 
+742d d8404807 arg mem_key2_press ,temp 
+742e 20207404 branch in_le_send_lable 
+
+in_le_send_key3_press:
+742f 6800c7b1 fetch 1 ,mem_key_conf3_led 
+7430 20407457 call shutter_le_key_led_index 
+7431 d8404823 arg mem_key3_press ,temp 
+7432 20207404 branch in_le_send_lable 
+
+in_le_send_key4_press:
+7433 6800c7b3 fetch 1 ,mem_key_conf4_led 
+7434 20407457 call shutter_le_key_led_index 
+7435 d840483f arg mem_key4_press ,temp 
+7436 20207404 branch in_le_send_lable 
+
+in_le_send_key5_press:
+7437 6800c7b5 fetch 1 ,mem_key_conf5_led 
+7438 20407457 call shutter_le_key_led_index 
+7439 d840485b arg mem_key5_press ,temp 
+743a 20207404 branch in_le_send_lable 
+
+in_le_send_key0_rel:
+743b 6800c7ab fetch 1 ,mem_key_conf0_led 
+743c 20407453 call shutter_le_disble_key_led 
+743d d84047d7 arg mem_key0_release ,temp 
+743e 20207404 branch in_le_send_lable 
+
+in_le_send_key1_rel:
+743f 6800c7ad fetch 1 ,mem_key_conf1_led 
+7440 20407453 call shutter_le_disble_key_led 
+7441 d84047f9 arg mem_key1_release ,temp 
+7442 20207404 branch in_le_send_lable 
+
+in_le_send_key2_rel:
+7443 6800c7af fetch 1 ,mem_key_conf2_led 
+7444 20407453 call shutter_le_disble_key_led 
+7445 d8404815 arg mem_key2_release ,temp 
+7446 20207404 branch in_le_send_lable 
+
+in_le_send_key3_rel:
+7447 6800c7b1 fetch 1 ,mem_key_conf3_led 
+7448 20407453 call shutter_le_disble_key_led 
+7449 d8404831 arg mem_key3_release ,temp 
+744a 20207404 branch in_le_send_lable 
+
+in_le_send_key4_rel:
+744b 6800c7b3 fetch 1 ,mem_key_conf4_led 
+744c 20407453 call shutter_le_disble_key_led 
+744d d840484d arg mem_key4_release ,temp 
+744e 20207404 branch in_le_send_lable 
+
+in_le_send_key5_rel:
+744f 6800c7b5 fetch 1 ,mem_key_conf5_led 
+7450 20407453 call shutter_le_disble_key_led 
+7451 d8404869 arg mem_key5_release ,temp 
+7452 20207404 branch in_le_send_lable 
+
+shutter_le_disble_key_led:
+7453 2fe1fe01 compare led_on ,pdata ,0xff 
+7454 20608000 rtn true 
+7455 18007e03 force 3 ,pdata 
+7456 20207457 branch shutter_le_key_led_index 
+
+shutter_le_key_led_index:
+7457 c000745c beq 0 ,in_le_key_led_0 
+7458 c000f45e beq 1 ,in_le_key_led_1 
+7459 c0017460 beq 2 ,in_le_key_led_2 
+745a c001f462 beq 3 ,in_le_key_led_3 
+
+in_le_light_led:
+745b 2020738e branch shutter_ui_led_send 
+
+in_le_key_led_0:
+745c 58004786 setarg mem_key_led_style_ind_0 
+745d 2020738e branch shutter_ui_led_send 
+
+in_le_key_led_1:
+745e 5800478d setarg mem_key_led_style_ind_1 
+745f 2020738e branch shutter_ui_led_send 
+
+in_le_key_led_2:
+7460 58004794 setarg mem_key_led_style_ind_2 
+7461 2020738e branch shutter_ui_led_send 
+
+in_le_key_led_3:
+7462 5800479b setarg mem_key_led_style_ind_3 
+7463 2020738e branch shutter_ui_led_send 
+
+shutter_ui_power_timeout_timer:
+7464 6800c75a fetch 1 ,mem_power_timer 
+7465 207a0000 rtn blank 
+7466 1fe0ffff increase -1 ,pdata 
+7467 6000c75a store 1 ,mem_power_timer 
+7468 247a0000 nrtn blank 
+7469 6800c756 fetch 1 ,mem_shutter_powerup_flag 
+746a c000f2c0 beq shutter_power_on ,shutter_le_soft_switch_power_on_signal 
+746b 2020748a branch shutter_shutter_power_off_signal 
+
+shutter_ui_button_timeout_timer:
+746c 6800c758 fetch 1 ,mem_shutter_button_timer 
+746d 207a0000 rtn blank 
+746e 1fe0ffff increase -1 ,pdata 
+746f 6000c758 store 1 ,mem_shutter_button_timer 
+7470 247a0000 nrtn blank 
+7471 20203e73 branch app_led_off 
+
+shutter_shuuter_led_on:
+7472 6800c757 fetch 1 ,mem_shutter_button_timeout 
+7473 6000c758 store 1 ,mem_shutter_button_timer 
+7474 20203e71 branch app_led_on 
+
+shutter_bb_event_button_up:
+7475 6800c756 fetch 1 ,mem_shutter_powerup_flag 
+7476 c000f478 beq shutter_power_on ,in_power_release 
+7477 20203e75 branch app_enter_hibernate 
+
+in_power_release:
+7478 70475b01 jam 1 ,mem_enable_key_scan 
+7479 20600000 rtn 
+
+shutter_evt_button_long_pressed:
+747a 6800c756 fetch 1 ,mem_shutter_powerup_flag 
+747b c000f481 beq shutter_power_on ,shutter_le_power_off 
+747c 70475601 jam shutter_power_on ,mem_shutter_powerup_flag 
+747d 58004771 setarg mem_power_on_led_style 
+
+shutter_shutter_power_on:
+
+shutter_shutter_power_on_off:
+747e 6808c759 fetcht 1 ,mem_power_timeout 
+747f 6008c75a storet 1 ,mem_power_timer 
+7480 2020738e branch shutter_ui_led_send 
+
+shutter_le_power_off:
+7481 70475602 jam shutter_power_off ,mem_shutter_powerup_flag 
+7482 70475b00 jam 0 ,mem_enable_key_scan 
+7483 7043ff00 jam off ,mem_le_adv_enable 
+7484 6801470b fetch 2 ,mem_ui_state_map 
+7485 c304f487 bbit0 ui_state_ble_connected ,shutter_shutter_power_off_end 
+7486 20403e6b call app_ble_disconnect 
+
+shutter_shutter_power_off_end:
+7487 7043ff00 jam off ,mem_le_adv_enable 
+7488 58004778 setarg mem_powe_off_led_style 
+7489 2020747e branch shutter_shutter_power_on_off 
+
+shutter_shutter_power_off_signal:
+748a 20407382 call shutter_ui_led_init 
+748b 20203e75 branch app_enter_hibernate 
+
+shutter_le_process_lpm_before:
+748c 6800c7a9 fetch 1 ,mem_shutter_key_num 
+748d 207a0000 rtn blank 
+748e 1fe27200 copy pdata ,loopcnt 
+748f 580047aa setarg mem_key_conf0_pin 
+7490 1fe22200 copy pdata ,rega 
+
+in_shutter_process_lpm_before_lp1:
+7491 ea288000 ifetcht 1 ,rega 
+7492 204064c2 call gpio_set_wake_by_current_state 
+7493 1a20a202 increase key_conf_struct_len ,rega 
+7494 c2007491 loop in_shutter_process_lpm_before_lp1 
+
+shutter_le_process_lpm_before_end:
+7495 20600000 rtn 
+
+shutter_le_queue_init:
+7496 70487700 jam 0 ,mem_queue_ele_num 
+7497 5800487c setarg mem_queue_start 
+7498 60014878 store 2 ,mem_queue_read 
+7499 6001487a store 2 ,mem_queue_write 
+749a 20600000 rtn 
+
+shutter_le_queue_clear:
+749b 20207496 branch shutter_le_queue_init 
+
+shutter_le_queue_put:
+749c 78547c00 disable user 
+749d 6800c877 fetch 1 ,mem_queue_ele_num 
+749e 2fe1fe06 compare queue_ele_count ,pdata ,0xff 
+749f 20608000 rtn true 
+74a0 78347c00 enable user 
+74a1 6801487a fetch 2 ,mem_queue_write 
+74a2 1fe20a00 copy pdata ,contw 
+74a3 18420c00 copy temp ,contr 
+74a4 20407ecd call memcpy 
+74a5 6800c877 fetch 1 ,mem_queue_ele_num 
+74a6 1fe0fe01 increase 1 ,pdata 
+74a7 6000c877 store 1 ,mem_queue_ele_num 
+74a8 5800487a setarg mem_queue_write 
+74a9 204074ab call shutter_le_queue_increase 
+74aa 20600000 rtn 
+
+shutter_le_queue_increase:
+74ab 1fe22200 copy pdata ,rega 
+74ac d84048b8 arg mem_queue_end ,temp 
+74ad ea210000 ifetch 2 ,rega 
+74ae 1fe0fe0a increase queue_ele_length ,pdata 
+74af 98467c00 isub temp ,null 
+74b0 242174b2 nbranch shutter_le_queue_put_end ,positive 
+74b1 5800487c setarg mem_queue_start 
+
+shutter_le_queue_put_end:
+74b2 e2210000 istore 2 ,rega 
+74b3 20600000 rtn 
+
+shutter_le_queue_get:
+74b4 78547c00 disable user 
+74b5 6800c877 fetch 1 ,mem_queue_ele_num 
+74b6 207a0000 rtn blank 
+74b7 78347c00 enable user 
+74b8 6800c877 fetch 1 ,mem_queue_ele_num 
+74b9 1fe0ffff increase -1 ,pdata 
+74ba 6000c877 store 1 ,mem_queue_ele_num 
+74bb 68014878 fetch 2 ,mem_queue_read 
+74bc 600148b8 store 2 ,mem_queue_temp 
+74bd 58004878 setarg mem_queue_read 
+74be 204074ab call shutter_le_queue_increase 
+74bf 680148b8 fetch 2 ,mem_queue_temp 
+74c0 20600000 rtn 
+
+shutter_le_queue_read_point:
+74c1 78547c00 disable user 
+74c2 6800c877 fetch 1 ,mem_queue_ele_num 
+74c3 207a0000 rtn blank 
+74c4 78347c00 enable user 
+74c5 68014878 fetch 2 ,mem_queue_read 
+74c6 20600000 rtn 
+
+shutter_le_packet_interval_set:
+74c7 6801475c fetch 2 ,mem_packet_interval_set 
+74c8 d8e0000c arg temp_timer ,queue 
+74c9 20207ed4 branch timer_init 
+
+shutter_le_send_packet:
+74ca 204074c1 call shutter_le_queue_read_point 
+74cb 24740000 nrtn user 
+74cc 78547c00 disable user 
+74cd 18000413 force 0x0013 ,temp 
+74ce 600944f8 storet 2 ,mem_le_notify_handle 
+74cf 202074d0 branch shutter_le_shutter_send_keydata 
+
+shutter_le_shutter_send_keydata:
+74d0 df200002 arg 2 ,loopcnt 
+74d1 680944f8 fetcht 2 ,mem_le_notify_handle 
+74d2 d8c04729 arg mem_shutter_send_data ,contr 
+74d3 204074d7 call shutter_le_tx_notification 
+74d4 20600000 rtn 
+
+shutter_le_tx_indication:
+74d5 7009bd1d jam attop_handle_value_indication ,mem_fifo_temp 
+74d6 202074dc branch shutter_le_tx_common 
+
+shutter_le_tx_notification:
+74d7 20404bd0 call le_xtype_fifo_is_empty 
+74d8 247a0000 nrtn blank 
+74d9 6800c8ba fetch 1 ,mem_shutter_key_data_flag 
+74da 247a0000 nrtn blank 
+74db 7009bd1b jam attop_handle_value_notification ,mem_fifo_temp 
+
+shutter_le_tx_common:
+74dc 20404bd6 call le_xtype_fifo_in 
+74dd 2020735f branch shutter_le_tx_buff_inuse 
+
+shutter_shutter_cancel_key_shake:
+74de 680a472f fetcht 4 ,mem_shutter_clkn_bt_last 
+74df 1c427e00 deposit clkn_bt 
+74e0 6002472f store 4 ,mem_shutter_clkn_bt_last 
+74e1 98467e00 isub temp ,pdata 
+74e2 24610000 nrtn positive 
+74e3 1fe67e14 sub pdata ,20 ,pdata 
+74e4 20600000 rtn 
+
+shutter_le_send_att_handle_value_notification:
+74e5 204074b4 call shutter_le_queue_get 
+74e6 24740000 nrtn user 
+74e7 78547c00 disable user 
+74e8 1fe20c00 copy pdata ,contr 
+74e9 e8c88000 ifetcht 1 ,contr 
+74ea 184085fd increase -3 ,temp 
+74eb 18427200 copy temp ,loopcnt 
+74ec e8c90000 ifetcht 2 ,contr 
+74ed 1f20fe07 add loopcnt ,7 ,pdata 
+74ee 6000c73f store 1 ,mem_scale_tx_length 
+74ef d8a0446c arg mem_le_l2cap + 1 ,contw 
+74f0 e0a90000 istoret 2 ,contw 
+74f1 20407ecd call memcpy 
+74f2 6808c73f fetcht 1 ,mem_scale_tx_length 
+74f3 20204f89 branch le_send_packet 
+
+shutter_le_receive_data:
+74f4 6800839a fetch 1 ,mem_le_att_opcode 
+74f5 c00974f8 beq attop_write_request ,shutter_le_parse_att_write_request 
+74f6 c02974fb beq attop_write_command ,shutter_le_parse_att_write_command 
+74f7 20600000 rtn 
+
+shutter_le_parse_att_write_request:
+74f8 6801039b fetch 2 ,mem_le_att_handle 
+74f9 c00c74fb beq att_write_request_handle ,shutter_key_data_send 
+74fa 20600000 rtn 
+
+shutter_le_parse_att_write_command:
+
+shutter_key_data_send:
+74fb 7048ba00 jam 0 ,mem_shutter_key_data_flag 
+74fc 20600000 rtn 
+
+init_shutter_le_att_list:
+74fd d8a048cc arg mem_shutter_le_att_list ,contw 
+74fe 38020001 setsect 0 ,0x20001 
+74ff 38060000 setsect 1 ,0x20000 
+7500 38081022 setsect 2 ,0x1022 
+7501 380c0860 setsect 3 ,0x860 
+7502 e0a48000 istore 9 ,contw 
+7503 38030200 setsect 0 ,0x30200 
+7504 38044a00 setsect 1 ,0x4a00 
+7505 38083200 setsect 2 ,0x3200 
+7506 380c0800 setsect 3 ,0x800 
+7507 e0a48000 istore 9 ,contw 
+7508 38012a05 setsect 0 ,0x12a05 
+7509 38050000 setsect 1 ,0x10000 
+750a 38082000 setsect 2 ,0x2000 
+750b 380ca408 setsect 3 ,0xa408 
+750c e0a48000 istore 9 ,contw 
+750d 38000002 setsect 0 ,0x2 
+750e 38040140 setsect 1 ,0x140 
+750f 38080020 setsect 2 ,0x20 
+7510 380c08a0 setsect 3 ,0x8a0 
+7511 e0a48000 istore 9 ,contw 
+7512 38021800 setsect 0 ,0x21800 
+7513 38048001 setsect 1 ,0x8001 
+7514 380a8030 setsect 2 ,0x28030 
+7515 380c0804 setsect 3 ,0x804 
+7516 e0a48000 istore 9 ,contw 
+7517 38020007 setsect 0 ,0x20007 
+7518 38068000 setsect 1 ,0x28000 
+7519 38083132 setsect 2 ,0x3132 
+751a 380da5a1 setsect 3 ,0x1a5a1 
+751b e0a48000 istore 9 ,contw 
+751c 38017370 setsect 0 ,0x17370 
+751d 38075859 setsect 1 ,0x35859 
+751e 3808c422 setsect 2 ,0xc422 
+751f 380c8115 setsect 3 ,0x8115 
+7520 e0a48000 istore 9 ,contw 
+7521 38002020 setsect 0 ,0x2020 
+7522 38040808 setsect 1 ,0x808 
+7523 380a0202 setsect 2 ,0x20202 
+7524 380c0020 setsect 3 ,0x20 
+7525 e0a48000 istore 9 ,contw 
+7526 38000302 setsect 0 ,0x302 
+7527 3804804a setsect 1 ,0x804a 
+7528 38080090 setsect 2 ,0x90 
+7529 380c0408 setsect 3 ,0x408 
+752a e0a48000 istore 9 ,contw 
+752b 3800022a setsect 0 ,0x22a 
+752c 38068032 setsect 1 ,0x28032 
+752d 38082000 setsect 2 ,0x2000 
+752e 380ca00c setsect 3 ,0xa00c 
+752f e0a48000 istore 9 ,contw 
+7530 38030201 setsect 0 ,0x30201 
+7531 38048002 setsect 1 ,0x8002 
+7532 380aa040 setsect 2 ,0x2a040 
+7533 380c1820 setsect 3 ,0x1820 
+7534 e0a48000 istore 9 ,contw 
+7535 38000600 setsect 0 ,0x600 
+7536 38041900 setsect 1 ,0x1900 
+7537 380812c0 setsect 2 ,0x12c0 
+7538 380c0030 setsect 3 ,0x30 
+7539 e0a48000 istore 9 ,contw 
+753a 38000002 setsect 0 ,0x2 
+753b 3806808a setsect 1 ,0x2808a 
+753c 3808d180 setsect 2 ,0xd180 
+753d 380c0800 setsect 3 ,0x800 
+753e e0a48000 istore 9 ,contw 
+753f 38012803 setsect 0 ,0x12803 
+7540 38078080 setsect 1 ,0x38080 
+7541 38082000 setsect 2 ,0x2000 
+7542 380ca940 setsect 3 ,0xa940 
+7543 e0a48000 istore 9 ,contw 
+7544 38020207 setsect 0 ,0x20207 
+7545 38058922 setsect 1 ,0x18922 
+7546 38081826 setsect 2 ,0x1826 
+7547 380c3c00 setsect 3 ,0x3c00 
+7548 e0a48000 istore 9 ,contw 
+7549 38000200 setsect 0 ,0x200 
+754a 38048a00 setsect 1 ,0x8a00 
+754b 38098120 setsect 2 ,0x18120 
+754c 380c0040 setsect 3 ,0x40 
+754d e0a48000 istore 9 ,contw 
+754e 38000302 setsect 0 ,0x302 
+754f 3805804a setsect 1 ,0x1804a 
+7550 38080110 setsect 2 ,0x110 
+7551 380d3808 setsect 3 ,0x13808 
+7552 e0a48000 istore 9 ,contw 
+7553 5801012a setarg 0x1012a 
+7554 e0a18000 istore 3 ,contw 
+7555 38020012 setsect 0 ,0x20012 
+7556 380600c0 setsect 1 ,0x200c0 
+7557 38092012 setsect 2 ,0x12012 
+7558 380c004c setsect 3 ,0x4c 
+7559 e0a48000 istore 9 ,contw 
+755a 38024d02 setsect 0 ,0x24d02 
+755b 3804008a setsect 1 ,0x8a 
+755c 38094280 setsect 2 ,0x14280 
+755d 380c0800 setsect 3 ,0x800 
+755e e0a48000 istore 9 ,contw 
+755f 38022902 setsect 0 ,0x22902 
+7560 38040000 setsect 1 ,0x0 
+7561 38080150 setsect 2 ,0x150 
+7562 380c2008 setsect 3 ,0x2008 
+7563 e0a48000 istore 9 ,contw 
+7564 38020229 setsect 0 ,0x20229 
+7565 38058040 setsect 1 ,0x18040 
+7566 38082001 setsect 2 ,0x2001 
+7567 380ca00c setsect 3 ,0xa00c 
+7568 e0a48000 istore 9 ,contw 
+7569 38031201 setsect 0 ,0x31201 
+756a 38048005 setsect 1 ,0x8005 
+756b 380aa4d0 setsect 2 ,0x2a4d0 
+756c 380c0008 setsect 3 ,0x8 
+756d e0a48000 istore 9 ,contw 
+756e 38001828 setsect 0 ,0x1828 
+756f 38048080 setsect 1 ,0x8080 
+7570 38082290 setsect 2 ,0x2290 
+7571 380c0000 setsect 3 ,0x0 
+7572 e0a48000 istore 9 ,contw 
+7573 38020019 setsect 0 ,0x20019 
+7574 38064200 setsect 1 ,0x24200 
+7575 38083022 setsect 2 ,0x3022 
+7576 380c6804 setsect 3 ,0x6804 
+7577 e0a48000 istore 9 ,contw 
+7578 38030200 setsect 0 ,0x30200 
+7579 38044a00 setsect 1 ,0x4a00 
+757a 3809b020 setsect 2 ,0x1b020 
+757b 380c0800 setsect 3 ,0x800 
+757c e0a48000 istore 9 ,contw 
+757d 38002a4b setsect 0 ,0x2a4b 
+757e 38070151 setsect 1 ,0x30151 
+757f 38081090 setsect 2 ,0x1090 
+7580 380c0684 setsect 3 ,0x684 
+7581 e0a48000 istore 9 ,contw 
+7582 38010285 setsect 0 ,0x10285 
+7583 38067a42 setsect 1 ,0x27a42 
+7584 38089ea0 setsect 2 ,0x9ea0 
+7585 380c2788 setsect 3 ,0x2788 
+7586 e0a48000 istore 9 ,contw 
+7587 38011530 setsect 0 ,0x11530 
+7588 38070940 setsect 1 ,0x30940 
+7589 38090750 setsect 2 ,0x10750 
+758a 380c0654 setsect 3 ,0x654 
+758b e0a48000 istore 9 ,contw 
+758c 38000081 setsect 0 ,0x81 
+758d 38044170 setsect 1 ,0x4170 
+758e 38086090 setsect 2 ,0x6090 
+758f 380c0684 setsect 3 ,0x684 
+7590 e0a48000 istore 9 ,contw 
+7591 38010385 setsect 0 ,0x10385 
+7592 380641c1 setsect 1 ,0x241c1 
+7593 380a9e01 setsect 2 ,0x29e01 
+7594 380c579c setsect 3 ,0x579c 
+7595 e0a48000 istore 9 ,contw 
+7596 38012500 setsect 0 ,0x12500 
+7597 38045d40 setsect 1 ,0x5d40 
+7598 38088950 setsect 2 ,0x8950 
+7599 380c0a04 setsect 3 ,0xa04 
+759a e0a48000 istore 9 ,contw 
+759b 38010875 setsect 0 ,0x10875 
+759c 38054065 setsect 1 ,0x14065 
+759d 380a5001 setsect 2 ,0x25001 
+759e 380c17d0 setsect 3 ,0x17d0 
+759f e0a48000 istore 9 ,contw 
+75a0 38001907 setsect 0 ,0x1907 
+75a1 38050a40 setsect 1 ,0x10a40 
+75a2 3808081f setsect 2 ,0x81f 
+75a3 380c0300 setsect 3 ,0x300 
+75a4 e0a40000 istore 8 ,contw 
+75a5 3802001c setsect 0 ,0x2001c 
+75a6 380600c0 setsect 1 ,0x200c0 
+75a7 38082012 setsect 2 ,0x2012 
+75a8 380c0074 setsect 3 ,0x74 
+75a9 e0a48000 istore 9 ,contw 
+75aa 38024a02 setsect 0 ,0x24a02 
+75ab 3804410a setsect 1 ,0x410a 
+75ac 38080011 setsect 2 ,0x11 
+75ad 380c7804 setsect 3 ,0x7804 
+75ae e0a48000 istore 9 ,contw 
+75af 38030200 setsect 0 ,0x30200 
+75b0 38044a00 setsect 1 ,0x4a00 
+75b1 3809f040 setsect 2 ,0x1f040 
+75b2 380c0800 setsect 3 ,0x800 
+75b3 e0a48000 istore 9 ,contw 
+75b4 38012a4c setsect 0 ,0x12a4c 
+75b5 38040000 setsect 1 ,0x0 
+75b6 38082002 setsect 2 ,0x2002 
+75b7 380ca000 setsect 3 ,0xa000 
+75b8 e0a48000 istore 9 ,contw 
+75b9 38000f02 setsect 0 ,0xf02 
+75ba 38040846 setsect 1 ,0x846 
+75bb 38083020 setsect 2 ,0x3020 
+75bc 380c04a0 setsect 3 ,0x4a0 
+75bd e0a48000 istore 9 ,contw 
+75be 38002212 setsect 0 ,0x2212 
+75bf 38064080 setsect 1 ,0x24080 
+75c0 380812a1 setsect 2 ,0x12a1 
+75c1 380c8c00 setsect 3 ,0x8c00 
+75c2 e0a48000 istore 9 ,contw 
+75c3 38020200 setsect 0 ,0x20200 
+75c4 38048a40 setsect 1 ,0x8a40 
+75c5 38080000 setsect 2 ,0x0 
+75c6 380c0000 setsect 3 ,0x0 
+75c7 e0a48000 istore 9 ,contw 
+75c8 20600000 rtn 
+
+shutter_init_param:
+75c9 7044df01 jam 1 ,mem_le_pres_auth 
+75ca 7045a801 jam 1 ,mem_le_flag 
+75cb 70456c01 jam 1 ,mem_le_pairing_mode 
+75cc 5800001b setarg 0x1b 
+75cd 6001458b store 2 ,mem_le_pairing_handle 
+75ce 70452201 jam 1 ,mem_le_adv_direct_addr_type 
+75cf 7048c803 jam 3 ,mem_empty_count 
+75d0 70459650 jam 0x50 ,mem_le_transmit_window 
+75d1 70454c17 jam 0x17 ,mem_le_local_mtu 
+75d2 70454e17 jam 0x17 ,mem_le_remote_mtu 
+75d3 d8a044dc arg mem_le_pres ,contw 
+75d4 38000302 setsect 0 ,0x302 
+75d5 38040040 setsect 1 ,0x40 
+75d6 38081021 setsect 2 ,0x1021 
+75d7 380c0000 setsect 3 ,0x0 
+75d8 e0a38000 istore 7 ,contw 
+75d9 d8a0458d arg mem_le_interal_min ,contw 
+75da 38000008 setsect 0 ,0x8 
+75db 38040004 setsect 1 ,0x4 
+75dc 380ac000 setsect 2 ,0x2c000 
+75dd 380c0004 setsect 3 ,0x4 
+75de e0a40000 istore 8 ,contw 
+75df 20600000 rtn 
+
+publickey_init:
+75e0 6800c6e2 fetch 1 ,mem_ssp_enable 
+75e1 243a75f4 nbranch sp_initialize ,blank 
+75e2 20207a96 branch sp_initialize_256 
+
+publickey_calc:
+75e3 79200025 set1 mark_ext_patch ,mark 
+75e4 44f0403c bpatch patch3c_0 ,mem_patch3c 
+75e5 6800c6e2 fetch 1 ,mem_ssp_enable 
+75e6 207a0000 rtn blank 
+75e7 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+75e8 c1808000 rtnne sp_key_valid 
+75e9 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+75ea 207a0000 rtn blank 
+75eb 6800c568 fetch 1 ,mem_le_sc_local_key_invalid 
+75ec c1018000 rtneq sp_key_valid_256 
+75ed 6801470b fetch 2 ,mem_ui_state_map 
+75ee c28075f2 bbit1 ui_state_bt_connected ,stop_publickey_calc_256 
+75ef 6800c565 fetch 1 ,mem_le_sc_calc 
+75f0 c0007a96 beq sp_calc_standby ,sp_initialize_256 
+75f1 20600000 rtn 
+
+stop_publickey_calc_256:
+75f2 70456500 jam sp_calc_standby ,mem_le_sc_calc 
+75f3 20600000 rtn 
+
+sp_initialize:
+75f4 79200025 set1 mark_ext_patch ,mark 
+75f5 44f0c03c bpatch patch3c_1 ,mem_patch3c 
+75f6 6800c6e2 fetch 1 ,mem_ssp_enable 
+75f7 203a5737 branch ssp_disable ,blank 
+75f8 2040572f call ssp_enable 
+75f9 204075fb call sp_clear_flags 
+75fa 20207684 branch sp_pubkey_calc 
+
+sp_clear_flags:
+75fb 58000000 setarg 0 
+75fc 600408d2 store 8 ,mem_sp_state_start 
+75fd 600208da store 4 ,mem_sp_flag_start 
+75fe 6003c6e6 store 7 ,mem_sp_iocap_remote 
+75ff 20600000 rtn 
+
+sp_generate_local_key:
+7600 7008d401 jam sp_flag_commit ,mem_sp_flag 
+7601 20207605 branch sp_generate_local_key0 
+
+sp_master_generate_local_key:
+7602 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+7603 c000f6a2 beq sp_key_valid ,sp_dhkey_calc 
+7604 20203b31 branch assert 
+
+sp_generate_local_key0:
+7605 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+7606 c000f608 beq sp_key_valid ,sp_start_send_pubkey 
+7607 20207684 branch sp_pubkey_calc 
+
+sp_start_send_pubkey:
+7608 204076a2 call sp_dhkey_calc 
+7609 680088d3 fetch 1 ,mem_master_sp_state 
+760a 247a0000 nrtn blank 
+760b 7008d203 jam sp_stat_key_send ,mem_sp_state 
+760c 20600000 rtn 
+
+sp_calculate_commitment:
+760d 680088d6 fetch 1 ,mem_sp_calc 
+760e c080762b bne sp_calc_standby ,sp_calculate_commitment_wait_dhkey_calc 
+760f 20407628 call sp_local_random_key_generator 
+7610 d8a009a2 arg mem_sp_prarm_stack ,contw 
+7611 58000952 setarg mem_sp_random_local_end 
+7612 e0a10000 istore 2 ,contw 
+7613 580046ca setarg mem_sp_pubkey_local_x_end 
+7614 e0a10000 istore 2 ,contw 
+7615 58000902 setarg mem_sp_pubkey_remote_x_end 
+7616 e0a10000 istore 2 ,contw 
+7617 2020761f branch sp_calculate_commitment0 
+
+master_sp_calculate_commitment:
+7618 d8a009a2 arg mem_sp_prarm_stack ,contw 
+7619 58000962 setarg mem_sp_random_remote_end 
+761a e0a10000 istore 2 ,contw 
+761b 58000902 setarg mem_sp_pubkey_remote_x_end 
+761c e0a10000 istore 2 ,contw 
+761d 580046ca setarg mem_sp_pubkey_local_x_end 
+761e e0a10000 istore 2 ,contw 
+
+sp_calculate_commitment0:
+761f 204079bd call function_f1 
+7620 680088d3 fetch 1 ,mem_master_sp_state 
+7621 c0027625 beq sp_stat_commit_calc ,master_sp_calculate_commitment0 
+7622 7008d401 jam sp_flag_commit ,mem_sp_flag 
+7623 7008d205 jam sp_stat_commit_send ,mem_sp_state 
+7624 20600000 rtn 
+
+master_sp_calculate_commitment0:
+7625 7008d314 jam sp_stat_commitment_compare ,mem_master_sp_state 
+7626 20407602 call sp_master_generate_local_key 
+7627 202076f3 branch master_set_mem_master_sp_flag 
+
+sp_local_random_key_generator:
+7628 d8a00942 arg mem_sp_random_local ,contw 
+7629 18000e08 force 8 ,queue 
+762a 202076bb branch random_generator 
+
+sp_calculate_commitment_wait_dhkey_calc:
+762b 7008d401 jam sp_flag_commit ,mem_sp_flag 
+762c 20600000 rtn 
+
+sp_confirm_check:
+762d 79200025 set1 mark_ext_patch ,mark 
+762e 44f1403c bpatch patch3c_2 ,mem_patch3c 
+762f d8a0064b arg mem_addr_value ,contw 
+7630 68034140 fetch 6 ,mem_lap 
+7631 e0a30000 istore 6 ,contw 
+7632 68030040 fetch 6 ,mem_plap 
+7633 e0a30000 istore 6 ,contw 
+7634 6801c6e6 fetch 3 ,mem_sp_iocap_remote 
+7635 e0a18000 istore 3 ,contw 
+7636 20407a2b call function_f3a 
+7637 da200972 arg mem_sp_calc_result_high ,rega 
+7638 da400982 arg mem_sp_check_result ,regb 
+7639 18000e04 force 4 ,queue 
+763a 204076c0 call compare4 
+763b 2420f648 nbranch sp_confirm_check_failed ,true 
+763c 2040763f call sp_confirm_check_success 
+763d 70007d41 jam lmp_dhkey_check ,mem_lmi_opcode2 
+763e 20205903 branch tid_set_reply 
+
+sp_confirm_check_success:
+763f 680088d3 fetch 1 ,mem_master_sp_state 
+7640 c004f645 beq sp_stat_confirm_check ,sp_confirm_check_success_master 
+7641 7008d20a jam sp_stat_confirm_calc ,mem_sp_state 
+7642 7008d401 jam sp_flag_commit ,mem_sp_flag 
+7643 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+7644 20600000 rtn 
+
+sp_confirm_check_success_master:
+7645 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+7646 7008d315 jam sp_state_end ,mem_master_sp_state 
+7647 202076f3 branch master_set_mem_master_sp_flag 
+
+sp_confirm_check_failed:
+7648 680088d3 fetch 1 ,mem_master_sp_state 
+7649 c004f64e beq sp_stat_confirm_check ,sp_confirm_check_failed_master 
+764a 7008d200 jam sp_stat_null ,mem_sp_state 
+764b 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+764c 70007e05 jam authentication_failure_error ,mem_lmo_reason2 
+764d 20600000 rtn 
+
+sp_confirm_check_failed_master:
+764e 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+764f 7008d300 jam sp_stat_null ,mem_master_sp_state 
+7650 20600000 rtn 
+
+sp_confirm_calc:
+7651 680088d7 fetch 1 ,mem_sp_dh_ready 
+7652 c000f655 beq sp_flag_commit ,sp_confirm_calc_ready 
+7653 7008d30a jam sp_stat_confirm_calc ,mem_master_sp_state 
+7654 202076f3 branch master_set_mem_master_sp_flag 
+
+sp_confirm_calc_ready:
+7655 d8a0064b arg mem_addr_value ,contw 
+7656 68030040 fetch 6 ,mem_plap 
+7657 e0a30000 istore 6 ,contw 
+7658 68034140 fetch 6 ,mem_lap 
+7659 e0a30000 istore 6 ,contw 
+765a 6801c6e3 fetch 3 ,mem_sp_iocap_local 
+765b e0a18000 istore 3 ,contw 
+765c 20407a43 call function_f3b 
+765d 680088d3 fetch 1 ,mem_master_sp_state 
+765e c0057662 beq sp_stat_confirm_calc ,sp_confirm_calc_master 
+765f 7008d20b jam sp_stat_confirm_send ,mem_sp_state 
+7660 7008d401 jam sp_flag_commit ,mem_sp_flag 
+7661 20600000 rtn 
+
+sp_confirm_calc_master:
+7662 7008d30b jam sp_stat_confirm_send ,mem_master_sp_state 
+7663 7008d501 jam sp_flag_commit ,mem_master_sp_flag 
+7664 20600000 rtn 
+
+sp_master_key_prarm_push:
+7665 d8a009a2 arg mem_sp_prarm_stack ,contw 
+7666 68030040 fetch 6 ,mem_plap 
+7667 e0a30000 istore 6 ,contw 
+7668 68034140 fetch 6 ,mem_lap 
+7669 e0a30000 istore 6 ,contw 
+766a 58000952 setarg mem_sp_random_local_end 
+766b e0a10000 istore 2 ,contw 
+766c 58000962 setarg mem_sp_random_remote_end 
+766d e0a10000 istore 2 ,contw 
+766e 20207679 branch sp_link_key_calc 
+
+sp_link_key_prarm_push:
+766f 7008d20f jam sp_stat_done ,mem_sp_state 
+7670 d8a009a2 arg mem_sp_prarm_stack ,contw 
+7671 68034140 fetch 6 ,mem_lap 
+7672 e0a30000 istore 6 ,contw 
+7673 68030040 fetch 6 ,mem_plap 
+7674 e0a30000 istore 6 ,contw 
+7675 58000962 setarg mem_sp_random_remote_end 
+7676 e0a10000 istore 2 ,contw 
+7677 58000952 setarg mem_sp_random_local_end 
+7678 e0a10000 istore 2 ,contw 
+
+sp_link_key_calc:
+7679 d8a0064b arg mem_addr_value ,contw 
+767a 680309a2 fetch 6 ,mem_sp_prarm_stack 
+767b e0a30000 istore 6 ,contw 
+767c 680309a8 fetch 6 ,mem_sp_prarm_stack + 6 
+767d e0a30000 istore 6 ,contw 
+767e 204079f5 call function_f2 
+767f 70425d01 jam 1 ,mem_link_key_exists 
+7680 d8a04261 arg mem_link_key ,contw 
+7681 d8c00972 arg mem_sp_calc_result_high ,contr 
+7682 20407e87 call memcpy16 
+7683 202031ee branch generate_linkkey_continue 
+
+sp_pubkey_calc:
+7684 79200025 set1 mark_ext_patch ,mark 
+7685 44f1c03c bpatch patch3c_3 ,mem_patch3c 
+7686 6800c639 fetch 1 ,mem_sp_local_key_invalid 
+7687 c1800000 rtnne sp_key_invalid 
+7688 680088d6 fetch 1 ,mem_sp_calc 
+7689 c1800000 rtnne sp_calc_standby 
+768a d8a0469a arg mem_sp_private_key ,contw 
+768b 18000e0b force 11 ,queue 
+768c 204076bb call random_generator 
+768d 180a7e00 random pdata 
+768e 1fe37e00 rshift pdata ,pdata 
+768f e0a10000 istore 2 ,contw 
+7690 d8a005e2 arg mem_k ,contw 
+7691 d8c0469a arg mem_sp_private_key ,contr 
+7692 20407e86 call memcpy24 
+7693 d8a0050a arg mem_ax ,contw 
+7694 d8c007f2 arg mem_gx ,contr 
+7695 20407e84 call memcpy48 
+7696 d8a0053a arg mem_az ,contw 
+7697 20407e90 call bn_zero 
+7698 70053a01 jam 1 ,mem_az 
+7699 20407a7c call eckp_calc_init 
+769a 7008d601 jam sp_calc_pubkey ,mem_sp_calc 
+769b 20600000 rtn 
+
+sp_pubkey_generated:
+769c d8a046b2 arg mem_sp_pubkey_local ,contw 
+769d d8c00552 arg mem_bx ,contr 
+769e 20407e84 call memcpy48 
+769f 70463901 jam sp_key_valid ,mem_sp_local_key_invalid 
+76a0 7008d600 jam sp_calc_standby ,mem_sp_calc 
+76a1 20600000 rtn 
+
+sp_dhkey_calc:
+76a2 79200025 set1 mark_ext_patch ,mark 
+76a3 44f2403c bpatch patch3c_4 ,mem_patch3c 
+76a4 680088dd fetch 1 ,mem_sp_dhkey_invalid 
+76a5 c1800000 rtnne sp_key_invalid 
+76a6 680088d6 fetch 1 ,mem_sp_calc 
+76a7 c1800000 rtnne sp_calc_standby 
+76a8 d8a005e2 arg mem_k ,contw 
+76a9 d8c0469a arg mem_sp_private_key ,contr 
+76aa 20407e86 call memcpy24 
+76ab d8a0050a arg mem_ax ,contw 
+76ac d8c008ea arg mem_sp_pubkey_remote ,contr 
+76ad 20407e84 call memcpy48 
+76ae d8a0053a arg mem_az ,contw 
+76af 20407e90 call bn_zero 
+76b0 70053a01 jam 1 ,mem_az 
+76b1 20407a7c call eckp_calc_init 
+76b2 7008d602 jam sp_calc_dhkey ,mem_sp_calc 
+76b3 20600000 rtn 
+
+sp_dhkey_generated:
+76b4 7008d701 jam sp_flag_commit ,mem_sp_dh_ready 
+76b5 d8a0092a arg mem_sp_dhkey ,contw 
+76b6 d8c00552 arg mem_bx ,contr 
+76b7 20407e86 call memcpy24 
+76b8 7008dd01 jam sp_key_valid ,mem_sp_dhkey_invalid 
+76b9 7008d600 jam sp_calc_standby ,mem_sp_calc 
+76ba 20600000 rtn 
+
+random_generator:
+76bb 18e08fff increase -1 ,queue 
+76bc 24610000 nrtn positive 
+76bd 180a7e00 random pdata 
+76be e0a10000 istore 2 ,contw 
+76bf 202076bb branch random_generator 
+
+compare4:
+76c0 18e08fff increase -1 ,queue 
+76c1 242176cc nbranch compare4_success ,positive 
+76c2 ea220000 ifetch 4 ,rega 
+76c3 1fe20400 copy pdata ,temp 
+76c4 ea420000 ifetch 4 ,regb 
+76c5 9842fe00 iflip temp ,pdata 
+76c6 2422f6ca nbranch compare4_failed ,zero 
+76c7 1a20a204 increase 4 ,rega 
+76c8 1a40a404 increase 4 ,regb 
+76c9 202076c0 branch compare4 
+
+compare4_failed:
+76ca 7840fc00 disable true 
+76cb 20600000 rtn 
+
+compare4_success:
+76cc 7820fc00 enable true 
+76cd 20600000 rtn 
+
+simple_pairing_sequence:
+76ce 79200025 set1 mark_ext_patch ,mark 
+76cf 44f2c03c bpatch patch3c_5 ,mem_patch3c 
+76d0 680088d4 fetch 1 ,mem_sp_flag 
+76d1 207a0000 rtn blank 
+76d2 204058c5 call lmo_fifo_check 
+76d3 247a0000 nrtn blank 
+76d4 7008d400 jam sp_flag_standby ,mem_sp_flag 
+76d5 680088d2 fetch 1 ,mem_sp_state 
+76d6 c001d806 beq sp_stat_key_send ,sp_send_lmp_encapsulated_header 
+76d7 c002d823 beq sp_stat_commit_send ,sp_send_lmp_simple_pairing_comfirm 
+76d8 c003d82e beq sp_stat_random_send ,sp_send_lmp_simple_pairing_number 
+76d9 c005d843 beq sp_stat_confirm_send ,sp_send_lmp_dhkey_check 
+76da c0017600 beq sp_stat_key_generate ,sp_generate_local_key 
+76db c002760d beq sp_stat_commit_calc ,sp_calculate_commitment 
+76dc c004f62d beq sp_stat_confirm_check ,sp_confirm_check 
+76dd c0057651 beq sp_stat_confirm_calc ,sp_confirm_calc 
+76de c006766f beq sp_stat_link_key_calc ,sp_link_key_prarm_push 
+76df 20600000 rtn 
+
+master_simple_paring_sequence:
+76e0 79200025 set1 mark_ext_patch ,mark 
+76e1 44f3403c bpatch patch3c_6 ,mem_patch3c 
+76e2 680088d5 fetch 1 ,mem_master_sp_flag 
+76e3 207a0000 rtn blank 
+76e4 204058c5 call lmo_fifo_check 
+76e5 247a0000 nrtn blank 
+76e6 7008d500 jam sp_flag_standby ,mem_master_sp_flag 
+76e7 680088d3 fetch 1 ,mem_master_sp_state 
+76e8 c00957e9 beq sp_master_stat_start_skip ,sp_master_send_io_cap_get 
+76e9 c009d7ee beq sp_master_stat_start_done ,sp_master_send_io_cap_send 
+76ea c001d7f2 beq sp_stat_key_send ,sp_master_send_lmp_encapsulated_header 
+76eb c0027618 beq sp_stat_commit_calc ,master_sp_calculate_commitment 
+76ec c00a57f6 beq sp_stat_commitment_compare ,sp_master_commitment_compare 
+76ed c003d804 beq sp_stat_random_send ,sp_master_send_lmp_simple_pairing_number 
+76ee c0057651 beq sp_stat_confirm_calc ,sp_confirm_calc 
+76ef c005d842 beq sp_stat_confirm_send ,master_sp_send_lmp_dhkey_check 
+76f0 c004f62d beq sp_stat_confirm_check ,sp_confirm_check 
+76f1 c00ad83c beq sp_state_end ,master_sp_sm_end 
+76f2 20600000 rtn 
+
+master_set_mem_master_sp_flag:
+76f3 7008d501 jam sp_flag_commit ,mem_master_sp_flag 
+76f4 20600000 rtn 
+
+master_clear_mem_master_sp_flag:
+76f5 7008d500 jam sp_flag_standby ,mem_master_sp_flag 
+76f6 20600000 rtn 
+
+sp_calc_sequence:
+76f7 79200025 set1 mark_ext_patch ,mark 
+76f8 44f3c03c bpatch patch3c_7 ,mem_patch3c 
+76f9 6800c6e2 fetch 1 ,mem_ssp_enable 
+76fa 207a0000 rtn blank 
+76fb 680088d6 fetch 1 ,mem_sp_calc 
+76fc 207a0000 rtn blank 
+76fd 1fe0fe80 increase 0x80 ,pdata 
+76fe 600088d6 store 1 ,mem_sp_calc 
+76ff c3838000 rtnbit1 7 
+7700 68008507 fetch 1 ,mem_ec_loopc 
+7701 203a7703 branch sp_calc_sequence_done ,blank 
+7702 20207a87 branch eckp_calc 
+
+sp_calc_sequence_done:
+7703 204078ef call ecunmapz 
+7704 680088d6 fetch 1 ,mem_sp_calc 
+7705 c000f69c beq sp_calc_pubkey ,sp_pubkey_generated 
+7706 c00176b4 beq sp_calc_dhkey ,sp_dhkey_generated 
+7707 20600000 rtn 
+
+bn_testbit:
+7708 1fe10e07 and pdata ,7 ,queue 
+7709 1fe97e00 rshift3 pdata ,pdata 
+770a 98c08c00 iadd contr ,contr 
+770b e8c08000 ifetch 1 ,contr 
+770c afec0000 qisolate0 pdata 
+770d 20600000 rtn 
+
+ec_copy:
+770e 20407e86 call memcpy24 
+770f 20407e86 call memcpy24 
+7710 20207e86 branch memcpy24 
+
+bn_eq_zero:
+7711 e8c40000 ifetch 8 ,contr 
+7712 247a0000 nrtn blank 
+7713 e8c40000 ifetch 8 ,contr 
+7714 247a0000 nrtn blank 
+7715 e8c40000 ifetch 8 ,contr 
+7716 20600000 rtn 
+
+bn_eq_0:
+7717 ea220000 ifetch 4 ,rega 
+7718 98000400 iforce temp 
+7719 ea420000 ifetch 4 ,regb 
+771a 98467c00 isub temp ,null 
+771b 24628000 nrtn zero 
+771c 1a20a204 increase 4 ,rega 
+771d 1a40a404 increase 4 ,regb 
+771e c2007717 loop bn_eq_0 
+771f 20600000 rtn 
+
+bn_bigeq:
+7720 18007206 force 6 ,loopcnt 
+7721 1a20a214 increase 20 ,rega 
+7722 1a40a414 increase 20 ,regb 
+
+bn_bigeq_0:
+7723 ea420000 ifetch 4 ,regb 
+7724 98000400 iforce temp 
+7725 ea220000 ifetch 4 ,rega 
+7726 98467e00 isub temp ,pdata 
+7727 24610000 nrtn positive 
+7728 247a0000 nrtn blank 
+7729 1a20a3fc increase -4 ,rega 
+772a 1a40a5fc increase -4 ,regb 
+772b c2007723 loop bn_bigeq_0 
+772c 20600000 rtn 
+
+bn_add:
+772d 18007206 force 6 ,loopcnt 
+772e 18002600 force 0 ,regc 
+
+bn_add_0:
+772f ea220000 ifetch 4 ,rega 
+7730 98000400 iforce temp 
+7731 ea420000 ifetch 4 ,regb 
+7732 9840fe00 iadd temp ,pdata 
+7733 9a60fe00 iadd regc ,pdata 
+7734 e0a20000 istore 4 ,contw 
+7735 2feffe20 isolate1 32 ,pdata 
+7736 7920a600 setflag true ,0 ,regc 
+7737 1a20a204 increase 4 ,rega 
+7738 1a40a404 increase 4 ,regb 
+7739 c200772f loop bn_add_0 
+773a 20600000 rtn 
+
+bn_sub:
+773b 18007206 force 6 ,loopcnt 
+773c 18002600 force 0 ,regc 
+
+bn_sub_0:
+773d ea420000 ifetch 4 ,regb 
+773e 98000400 iforce temp 
+773f ea220000 ifetch 4 ,rega 
+7740 98467e00 isub temp ,pdata 
+7741 9a667e00 isub regc ,pdata 
+7742 e0a20000 istore 4 ,contw 
+7743 2feffe20 isolate1 32 ,pdata 
+7744 7920a600 setflag true ,0 ,regc 
+7745 1a20a204 increase 4 ,rega 
+7746 1a40a404 increase 4 ,regb 
+7747 c200773d loop bn_sub_0 
+7748 20600000 rtn 
+
+bn_rshift6:
+7749 18007206 force 6 ,loopcnt 
+774a 1a20a214 increase 20 ,rega 
+
+bn_rshift:
+774b 18002600 force 0 ,regc 
+
+bn_rshift_0:
+774c ea220000 ifetch 4 ,rega 
+774d 2feffe00 isolate1 0 ,pdata 
+774e 7920a601 setflag true ,1 ,regc 
+774f 1fe37e00 rshift pdata ,pdata 
+7750 2a6ffe00 isolate1 0 ,regc 
+7751 7920fe1f setflag true ,31 ,pdata 
+7752 e2220000 istore 4 ,rega 
+7753 1a20a3fc increase -4 ,rega 
+7754 1a632600 rshift regc ,regc 
+7755 c200774c loop bn_rshift_0 
+7756 20600000 rtn 
+
+bn_lshift:
+7757 18007206 force 6 ,loopcnt 
+7758 18002600 force 0 ,regc 
+
+bn_lshift_0:
+7759 ea220000 ifetch 4 ,rega 
+775a 2feffe1f isolate1 31 ,pdata 
+775b 7920a601 setflag true ,1 ,regc 
+775c 1fe3fe00 lshift pdata ,pdata 
+775d 2a6ffe00 isolate1 0 ,regc 
+775e 7920fe00 setflag true ,0 ,pdata 
+775f e2220000 istore 4 ,rega 
+7760 1a20a204 increase 4 ,rega 
+7761 1a632600 rshift regc ,regc 
+7762 c2007759 loop bn_lshift_0 
+7763 20600000 rtn 
+
+bn_lshiftmod:
+7764 20407757 call bn_lshift 
+
+bn_lshiftmod_ismod:
+7765 2a6ffe00 isolate1 0 ,regc 
+7766 2020f76d branch bn_lshiftmod_0 ,true 
+7767 da4007aa arg mem_p ,regb 
+7768 1a222600 copy rega ,regc 
+7769 1a20a3e8 increase -24 ,rega 
+776a 20407720 call bn_bigeq 
+776b 24610000 nrtn positive 
+776c 1a622200 copy regc ,rega 
+
+bn_lshiftmod_0:
+776d 1a20a3e8 increase -24 ,rega 
+776e da4007aa arg mem_p ,regb 
+776f 1a220a00 copy rega ,contw 
+7770 2020773b branch bn_sub 
+
+bn_addmod:
+7771 2040772d call bn_add 
+7772 18a22200 copy contw ,rega 
+7773 20207765 branch bn_lshiftmod_ismod 
+
+bn_submod:
+7774 2040773b call bn_sub 
+7775 2a6c0000 isolate0 0 ,regc 
+7776 20608000 rtn true 
+7777 da4007aa arg mem_p ,regb 
+7778 18a0a3e8 add contw ,-24 ,rega 
+7779 1a220a00 copy rega ,contw 
+777a 2020772d branch bn_add 
+
+bn_p192mod:
+777b 18a21600 copy contw ,timeup 
+777c 1a226000 copy rega ,alarm 
+777d da40063a arg mem_tmp2 ,regb 
+777e 1a420a00 copy regb ,contw 
+777f 1a208c18 add rega ,24 ,contr 
+7780 e8c40000 ifetch 8 ,contr 
+7781 e0a40000 istore 8 ,contw 
+7782 e0a40000 istore 8 ,contw 
+7783 18007e00 force 0 ,pdata 
+7784 e0a40000 istore 8 ,contw 
+7785 19620a00 copy timeup ,contw 
+7786 20407771 call bn_addmod 
+7787 da40063a arg mem_tmp2 ,regb 
+7788 1a420a00 copy regb ,contw 
+7789 18007e00 force 0 ,pdata 
+778a e0a40000 istore 8 ,contw 
+778b 1e008c20 add alarm ,32 ,contr 
+778c e8c40000 ifetch 8 ,contr 
+778d e0a40000 istore 8 ,contw 
+778e e0a40000 istore 8 ,contw 
+778f 19622200 copy timeup ,rega 
+7790 1a220a00 copy rega ,contw 
+7791 20407771 call bn_addmod 
+7792 da40063a arg mem_tmp2 ,regb 
+7793 1a420a00 copy regb ,contw 
+7794 1e008c28 add alarm ,40 ,contr 
+7795 e8c40000 ifetch 8 ,contr 
+7796 e0a40000 istore 8 ,contw 
+7797 e0a40000 istore 8 ,contw 
+7798 e0a40000 istore 8 ,contw 
+7799 19622200 copy timeup ,rega 
+779a 1a220a00 copy rega ,contw 
+779b 20207771 branch bn_addmod 
+
+bn_load:
+779c 18007206 force 6 ,loopcnt 
+
+bn_load_0:
+779d e8c20000 ifetch 4 ,contr 
+779e 98005e00 iforce regext 
+779f 1f00f001 increase 1 ,regext_index 
+77a0 c200779d loop bn_load_0 
+77a1 20600000 rtn 
+
+bn_mulmod:
+77a2 18a21600 copy contw ,timeup 
+77a3 d8a0060a arg mem_tmp1 ,contw 
+77a4 20407e90 call bn_zero 
+77a5 d8a0060a arg mem_tmp1 ,contw 
+77a6 1a220c00 copy rega ,contr 
+77a7 18007000 force 0 ,regext_index 
+77a8 2040779c call bn_load 
+77a9 1a420c00 copy regb ,contr 
+77aa 2040779c call bn_load 
+77ab 18002400 force 0 ,regb 
+
+bn_mulmod_1:
+77ac 18000400 force 0 ,temp 
+77ad 18002606 force 6 ,regc 
+
+bn_mulmod_0:
+77ae e8a20000 ifetch 4 ,contw 
+77af 98002200 iforce rega 
+77b0 1a427000 copy regb ,regext_index 
+77b1 1de27e00 deposit regext 
+77b2 1a627000 copy regc ,regext_index 
+77b3 9deffe00 imul32 regext ,pdata 
+77b4 9a20fe00 iadd rega ,pdata 
+77b5 9840fe00 iadd temp ,pdata 
+77b6 e0a20000 istore 4 ,contw 
+77b7 1fef0400 rshift32 pdata ,temp 
+77b8 1a60a601 increase 1 ,regc 
+77b9 2a61fe0c compare 12 ,regc ,0xff 
+77ba 2420f7ae nbranch bn_mulmod_0 ,true 
+77bb 18427e00 deposit temp 
+77bc e0a20000 istore 4 ,contw 
+77bd 18a08be8 increase -24 ,contw 
+77be 1a40a401 increase 1 ,regb 
+77bf 2a41fe06 compare 6 ,regb ,0xff 
+77c0 2420f7ac nbranch bn_mulmod_1 ,true 
+77c1 da20060a arg mem_tmp1 ,rega 
+77c2 19620a00 copy timeup ,contw 
+77c3 2020777b branch bn_p192mod 
+
+bn_sqrmod:
+77c4 1a222400 copy rega ,regb 
+77c5 202077a2 branch bn_mulmod 
+
+bn_rshifteven:
+77c6 1a226000 copy rega ,alarm 
+
+bn_rshifteven_1:
+77c7 1e022200 copy alarm ,rega 
+77c8 ea208000 ifetch 1 ,rega 
+77c9 2feffe00 isolate1 0 ,pdata 
+77ca 20608000 rtn true 
+77cb 20407749 call bn_rshift6 
+77cc ea408000 ifetch 1 ,regb 
+77cd 2fec0000 isolate0 0 ,pdata 
+77ce 2020f7d6 branch bn_rshifteven_0 ,true 
+77cf da2007aa arg mem_p ,rega 
+77d0 1a420a00 copy regb ,contw 
+77d1 2040772d call bn_add 
+77d2 ea408000 ifetch 1 ,regb 
+77d3 9a60fe00 iadd regc ,pdata 
+77d4 e2408000 istore 1 ,regb 
+77d5 1a40a5e8 increase -24 ,regb 
+
+bn_rshifteven_0:
+77d6 1a40a218 add regb ,24 ,rega 
+77d7 18007207 force 7 ,loopcnt 
+77d8 2040774b call bn_rshift 
+77d9 202077c7 branch bn_rshifteven_1 
+
+bn_invmod:
+77da 18a21600 copy contw ,timeup 
+77db d8a0066a arg mem_tmp0 ,contw 
+77dc 20407e90 call bn_zero 
+77dd 18007e00 force 0 ,pdata 
+77de 60020622 store 4 ,mem_tmp5 
+77df 60020682 store 4 ,mem_t2 
+77e0 70066a01 jam 1 ,mem_tmp0 
+77e1 d8a0060a arg mem_tmp1 ,contw 
+77e2 20407e90 call bn_zero 
+77e3 d8c007aa arg mem_p ,contr 
+77e4 d8a0063a arg mem_tmp2 ,contw 
+77e5 20407e86 call memcpy24 
+77e6 1a220c00 copy rega ,contr 
+77e7 d8a00652 arg mem_tmp3 ,contw 
+77e8 20407e86 call memcpy24 
+
+bn_invmod_2:
+77e9 d8c00652 arg mem_tmp3 ,contr 
+77ea 20407711 call bn_eq_zero 
+77eb 203a7812 branch bn_invmod_0 ,blank 
+77ec da200652 arg mem_tmp3 ,rega 
+77ed da40066a arg mem_tmp0 ,regb 
+77ee 204077c6 call bn_rshifteven 
+77ef da20063a arg mem_tmp2 ,rega 
+77f0 da40060a arg mem_tmp1 ,regb 
+77f1 204077c6 call bn_rshifteven 
+77f2 da200652 arg mem_tmp3 ,rega 
+77f3 da40063a arg mem_tmp2 ,regb 
+77f4 20407720 call bn_bigeq 
+77f5 20217804 branch bn_invmod_1 ,positive 
+77f6 da20063a arg mem_tmp2 ,rega 
+77f7 da400652 arg mem_tmp3 ,regb 
+77f8 1a220a00 copy rega ,contw 
+77f9 2040773b call bn_sub 
+77fa da20066a arg mem_tmp0 ,rega 
+77fb da40060a arg mem_tmp1 ,regb 
+77fc 1a420a00 copy regb ,contw 
+77fd 2040772d call bn_add 
+77fe ea208000 ifetch 1 ,rega 
+77ff 9a60a600 iadd regc ,regc 
+7800 ea408000 ifetch 1 ,regb 
+7801 9a60fe00 iadd regc ,pdata 
+7802 e2408000 istore 1 ,regb 
+7803 202077e9 branch bn_invmod_2 
+
+bn_invmod_1:
+7804 da200652 arg mem_tmp3 ,rega 
+7805 da40063a arg mem_tmp2 ,regb 
+7806 1a220a00 copy rega ,contw 
+7807 2040773b call bn_sub 
+7808 da20060a arg mem_tmp1 ,rega 
+7809 da40066a arg mem_tmp0 ,regb 
+780a 1a420a00 copy regb ,contw 
+780b 2040772d call bn_add 
+780c ea208000 ifetch 1 ,rega 
+780d 9a60a600 iadd regc ,regc 
+780e ea408000 ifetch 1 ,regb 
+780f 9a60fe00 iadd regc ,pdata 
+7810 e2408000 istore 1 ,regb 
+7811 202077e9 branch bn_invmod_2 
+
+bn_invmod_0:
+7812 d8a0066a arg mem_tmp0 ,contw 
+7813 20407e90 call bn_zero 
+7814 68008622 fetch 1 ,mem_tmp5 
+7815 6000866a store 1 ,mem_tmp0 
+7816 60008672 store 1 ,mem_tmp0a 
+7817 da20066a arg mem_tmp0 ,rega 
+7818 da40060a arg mem_tmp1 ,regb 
+7819 1a420a00 copy regb ,contw 
+781a 20407771 call bn_addmod 
+781b da2007aa arg mem_p ,rega 
+781c da40060a arg mem_tmp1 ,regb 
+781d 19620a00 copy timeup ,contw 
+781e 20207774 branch bn_submod 
+
+ecdbl:
+781f da2005ca arg mem_cz ,rega 
+7820 d8a00682 arg mem_t2 ,contw 
+7821 204077c4 call bn_sqrmod 
+7822 da200682 arg mem_t2 ,rega 
+7823 d8a0069a arg mem_t3 ,contw 
+7824 204077c4 call bn_sqrmod 
+7825 da2007c2 arg mem_a ,rega 
+7826 da40069a arg mem_t3 ,regb 
+7827 d8a0069a arg mem_t3 ,contw 
+7828 204077a2 call bn_mulmod 
+7829 da20059a arg mem_cx ,rega 
+782a d8a00682 arg mem_t2 ,contw 
+782b 204077c4 call bn_sqrmod 
+782c d8c00682 arg mem_t2 ,contr 
+782d d8a00652 arg mem_t1 ,contw 
+782e 20407e86 call memcpy24 
+782f da200652 arg mem_t1 ,rega 
+7830 20407764 call bn_lshiftmod 
+7831 da200682 arg mem_t2 ,rega 
+7832 da400652 arg mem_t1 ,regb 
+7833 d8a00682 arg mem_t2 ,contw 
+7834 20407771 call bn_addmod 
+7835 da200682 arg mem_t2 ,rega 
+7836 da40069a arg mem_t3 ,regb 
+7837 d8a00682 arg mem_t2 ,contw 
+7838 20407771 call bn_addmod 
+7839 d8c0059a arg mem_cx ,contr 
+783a d8a00652 arg mem_t1 ,contw 
+783b 20407e86 call memcpy24 
+783c da2005b2 arg mem_cy ,rega 
+783d d8a0069a arg mem_t3 ,contw 
+783e 204077c4 call bn_sqrmod 
+783f da200652 arg mem_t1 ,rega 
+7840 20407764 call bn_lshiftmod 
+7841 da200652 arg mem_t1 ,rega 
+7842 20407764 call bn_lshiftmod 
+7843 da200652 arg mem_t1 ,rega 
+7844 da40069a arg mem_t3 ,regb 
+7845 d8a00652 arg mem_t1 ,contw 
+7846 204077a2 call bn_mulmod 
+7847 da20069a arg mem_t3 ,rega 
+7848 d8a0066a arg mem_t0 ,contw 
+7849 204077c4 call bn_sqrmod 
+784a da20066a arg mem_t0 ,rega 
+784b 20407764 call bn_lshiftmod 
+784c da20066a arg mem_t0 ,rega 
+784d 20407764 call bn_lshiftmod 
+784e da20066a arg mem_t0 ,rega 
+784f 20407764 call bn_lshiftmod 
+7850 d8c005b2 arg mem_cy ,contr 
+7851 d8a0069a arg mem_t3 ,contw 
+7852 20407e86 call memcpy24 
+7853 da20069a arg mem_t3 ,rega 
+7854 20407764 call bn_lshiftmod 
+7855 da20069a arg mem_t3 ,rega 
+7856 da4005ca arg mem_cz ,regb 
+7857 d8a005ca arg mem_cz ,contw 
+7858 204077a2 call bn_mulmod 
+7859 da200682 arg mem_t2 ,rega 
+785a d8a0069a arg mem_t3 ,contw 
+785b 204077c4 call bn_sqrmod 
+785c da20069a arg mem_t3 ,rega 
+785d da400652 arg mem_t1 ,regb 
+785e d8a0069a arg mem_t3 ,contw 
+785f 20407774 call bn_submod 
+7860 da20069a arg mem_t3 ,rega 
+7861 da400652 arg mem_t1 ,regb 
+7862 d8a0059a arg mem_cx ,contw 
+7863 20407774 call bn_submod 
+7864 da200652 arg mem_t1 ,rega 
+7865 da40059a arg mem_cx ,regb 
+7866 d8a0069a arg mem_t3 ,contw 
+7867 20407774 call bn_submod 
+7868 da20069a arg mem_t3 ,rega 
+7869 da400682 arg mem_t2 ,regb 
+786a d8a0069a arg mem_t3 ,contw 
+786b 204077a2 call bn_mulmod 
+786c da20069a arg mem_t3 ,rega 
+786d da40066a arg mem_t0 ,regb 
+786e d8a005b2 arg mem_cy ,contw 
+786f 20207774 branch bn_submod 
+
+ecadd:
+7870 da20053a arg mem_az ,rega 
+7871 d8a006b2 arg mem_t7 ,contw 
+7872 204077c4 call bn_sqrmod 
+7873 da20059a arg mem_cx ,rega 
+7874 da4006b2 arg mem_t7 ,regb 
+7875 d8a0066a arg mem_t0 ,contw 
+7876 204077a2 call bn_mulmod 
+7877 da20053a arg mem_az ,rega 
+7878 da4006b2 arg mem_t7 ,regb 
+7879 d8a006b2 arg mem_t7 ,contw 
+787a 204077a2 call bn_mulmod 
+787b da2005b2 arg mem_cy ,rega 
+787c da4006b2 arg mem_t7 ,regb 
+787d d8a00652 arg mem_t1 ,contw 
+787e 204077a2 call bn_mulmod 
+787f da2005ca arg mem_cz ,rega 
+7880 d8a006b2 arg mem_t7 ,contw 
+7881 204077c4 call bn_sqrmod 
+7882 da20050a arg mem_ax ,rega 
+7883 da4006b2 arg mem_t7 ,regb 
+7884 d8a00682 arg mem_t2 ,contw 
+7885 204077a2 call bn_mulmod 
+7886 da2005ca arg mem_cz ,rega 
+7887 da4006b2 arg mem_t7 ,regb 
+7888 d8a006b2 arg mem_t7 ,contw 
+7889 204077a2 call bn_mulmod 
+788a da200522 arg mem_ay ,rega 
+788b da4006b2 arg mem_t7 ,regb 
+788c d8a0069a arg mem_t3 ,contw 
+788d 204077a2 call bn_mulmod 
+788e da20066a arg mem_t0 ,rega 
+788f da400682 arg mem_t2 ,regb 
+7890 d8a006b2 arg mem_t7 ,contw 
+7891 20407774 call bn_submod 
+7892 da20066a arg mem_t0 ,rega 
+7893 da400682 arg mem_t2 ,regb 
+7894 d8a0066a arg mem_t0 ,contw 
+7895 20407771 call bn_addmod 
+7896 da200652 arg mem_t1 ,rega 
+7897 da40069a arg mem_t3 ,regb 
+7898 d8a00682 arg mem_t2 ,contw 
+7899 20407774 call bn_submod 
+789a da200652 arg mem_t1 ,rega 
+789b da40069a arg mem_t3 ,regb 
+789c d8a00652 arg mem_t1 ,contw 
+789d 20407771 call bn_addmod 
+789e da200652 arg mem_t1 ,rega 
+789f da4006b2 arg mem_t7 ,regb 
+78a0 d8a00652 arg mem_t1 ,contw 
+78a1 204077a2 call bn_mulmod 
+78a2 da2005ca arg mem_cz ,rega 
+78a3 da40053a arg mem_az ,regb 
+78a4 d8a0069a arg mem_t3 ,contw 
+78a5 204077a2 call bn_mulmod 
+78a6 da20069a arg mem_t3 ,rega 
+78a7 da4006b2 arg mem_t7 ,regb 
+78a8 d8a005ca arg mem_cz ,contw 
+78a9 204077a2 call bn_mulmod 
+78aa da2006b2 arg mem_t7 ,rega 
+78ab d8a006b2 arg mem_t7 ,contw 
+78ac 204077c4 call bn_sqrmod 
+78ad da2006b2 arg mem_t7 ,rega 
+78ae da40066a arg mem_t0 ,regb 
+78af d8a0069a arg mem_t3 ,contw 
+78b0 204077a2 call bn_mulmod 
+78b1 da2006b2 arg mem_t7 ,rega 
+78b2 da400652 arg mem_t1 ,regb 
+78b3 d8a00652 arg mem_t1 ,contw 
+78b4 204077a2 call bn_mulmod 
+78b5 da200682 arg mem_t2 ,rega 
+78b6 d8a0059a arg mem_cx ,contw 
+78b7 204077c4 call bn_sqrmod 
+78b8 da20059a arg mem_cx ,rega 
+78b9 da40069a arg mem_t3 ,regb 
+78ba d8a0059a arg mem_cx ,contw 
+78bb 20407774 call bn_submod 
+78bc d8c0059a arg mem_cx ,contr 
+78bd d8a006b2 arg mem_t7 ,contw 
+78be 20407e86 call memcpy24 
+78bf da2006b2 arg mem_t7 ,rega 
+78c0 20407764 call bn_lshiftmod 
+78c1 da20069a arg mem_t3 ,rega 
+78c2 da4006b2 arg mem_t7 ,regb 
+78c3 d8a0069a arg mem_t3 ,contw 
+78c4 20407774 call bn_submod 
+78c5 da20069a arg mem_t3 ,rega 
+78c6 da400682 arg mem_t2 ,regb 
+78c7 d8a00682 arg mem_t2 ,contw 
+78c8 204077a2 call bn_mulmod 
+78c9 da200682 arg mem_t2 ,rega 
+78ca da400652 arg mem_t1 ,regb 
+78cb d8a005b2 arg mem_cy ,contw 
+78cc 20407774 call bn_submod 
+78cd da2005b2 arg mem_cy ,rega 
+78ce da4007aa arg mem_p ,regb 
+78cf d8a005b2 arg mem_cy ,contw 
+78d0 18002600 force 0 ,regc 
+78d1 680085b2 fetch 1 ,mem_cy 
+78d2 2feffe00 isolate1 0 ,pdata 
+78d3 2040f72d call bn_add ,true 
+78d4 1a626000 copy regc ,alarm 
+78d5 da2005b2 arg mem_cy ,rega 
+78d6 20407749 call bn_rshift6 
+78d7 680085c9 fetch 1 ,mem_cy5 
+78d8 2e0ffe00 isolate1 0 ,alarm 
+78d9 7920fe07 setflag true ,7 ,pdata 
+78da 600085c9 store 1 ,mem_cy5 
+78db 20600000 rtn 
+
+eckp_0:
+78dc 68008507 fetch 1 ,mem_ec_loopc 
+78dd 1fe0ffff increase -1 ,pdata 
+78de 24610000 nrtn positive 
+78df 60008507 store 1 ,mem_ec_loopc 
+78e0 68008506 fetch 1 ,mem_ec_infinite 
+78e1 205a781f call ecdbl ,blank 
+78e2 68008507 fetch 1 ,mem_ec_loopc 
+78e3 d8c005e2 arg mem_k ,contr 
+78e4 20407708 call bn_testbit 
+78e5 2020f8dc branch eckp_0 ,true 
+78e6 68008506 fetch 1 ,mem_ec_infinite 
+78e7 243a78ea nbranch eckp_1 ,blank 
+78e8 20407870 call ecadd 
+78e9 202078dc branch eckp_0 
+
+eckp_1:
+78ea 70050600 jam 0 ,mem_ec_infinite 
+78eb d8c0050a arg mem_ax ,contr 
+78ec d8a0059a arg mem_cx ,contw 
+78ed 2040770e call ec_copy 
+78ee 202078dc branch eckp_0 
+
+ecunmapz:
+78ef da2005ca arg mem_cz ,rega 
+78f0 d8a0069a arg mem_t3 ,contw 
+78f1 204077da call bn_invmod 
+78f2 da20069a arg mem_t3 ,rega 
+78f3 d8a00652 arg mem_t1 ,contw 
+78f4 204077c4 call bn_sqrmod 
+78f5 da20059a arg mem_cx ,rega 
+78f6 da400652 arg mem_t1 ,regb 
+78f7 d8a00552 arg mem_bx ,contw 
+78f8 204077a2 call bn_mulmod 
+78f9 da20069a arg mem_t3 ,rega 
+78fa da400652 arg mem_t1 ,regb 
+78fb d8a00682 arg mem_t2 ,contw 
+78fc 204077a2 call bn_mulmod 
+78fd da2005b2 arg mem_cy ,rega 
+78fe da400682 arg mem_t2 ,regb 
+78ff d8a0056a arg mem_by ,contw 
+7900 202077a2 branch bn_mulmod 
+
+sha_endian_swap2:
+7901 e8c20000 ifetch 4 ,contr 
+7902 18002204 force 4 ,rega 
+7903 18a08a03 increase 3 ,contw 
+
+sha_endian_loop:
+7904 e0a08000 istore 1 ,contw 
+7905 1fecfe00 rshift8 pdata ,pdata 
+7906 18a08bfe increase -2 ,contw 
+7907 1a20a3ff increase -1 ,rega 
+7908 2422f904 nbranch sha_endian_loop ,zero 
+7909 18a08a05 increase 5 ,contw 
+790a c2007901 loop sha_endian_swap2 
+790b 20600000 rtn 
+
+sha_getw:
+790c 18ebfe00 lshift2 queue ,pdata 
+790d 99608c00 iadd timeup ,contr 
+790e e8c20000 ifetch 4 ,contr 
+790f 20600000 rtn 
+
+sha_r:
+7910 18006010 force 16 ,alarm 
+7911 d960050a arg memdat ,timeup 
+
+sha_r_loop:
+7912 1e008ff9 add alarm ,-7 ,queue 
+7913 2040790c call sha_getw 
+7914 98000400 iforce temp 
+7915 1e008ff0 add alarm ,-16 ,queue 
+7916 2040790c call sha_getw 
+7917 98408400 iadd temp ,temp 
+7918 1e008ffe add alarm ,-2 ,queue 
+7919 2040790c call sha_getw 
+791a 1fee7e01 shasx pdata ,1 ,pdata 
+791b 98408400 iadd temp ,temp 
+791c 1e008ff1 add alarm ,-15 ,queue 
+791d 2040790c call sha_getw 
+791e 1fee7e00 shasx pdata ,0 ,pdata 
+791f 98408400 iadd temp ,temp 
+7920 1e0bfe00 lshift2 alarm ,pdata 
+7921 99608a00 iadd timeup ,contw 
+7922 e0aa0000 istoret 4 ,contw 
+7923 1e00e001 increase 1 ,alarm 
+7924 2e01fe40 compare 64 ,alarm ,0xff 
+7925 2420f912 nbranch sha_r_loop ,true 
+7926 20600000 rtn 
+
+sha_init:
+7927 d8c00822 arg memh0 ,contr 
+7928 18007007 force 7 ,regext_index 
+
+sha_init_0:
+7929 e8c20000 ifetch 4 ,contr 
+792a 98005e00 iforce regext 
+792b 1f00f1ff increase -1 ,regext_index 
+792c 20217929 branch sha_init_0 ,positive 
+792d 20600000 rtn 
+
+sha:
+792e 79200025 set1 mark_ext_patch ,mark 
+792f 44f4403d bpatch patch3d_0 ,mem_patch3d 
+7930 20407910 call sha_r 
+7931 d8a0060a arg memahbak ,contw 
+7932 18007000 force 0 ,regext_index 
+
+sha_0:
+7933 1de27e00 deposit regext 
+7934 e0a20000 istore 4 ,contw 
+7935 1f00f001 increase 1 ,regext_index 
+7936 2f01fe08 compare 8 ,regext_index ,0xff 
+7937 2420f933 nbranch sha_0 ,true 
+7938 204071e2 call enable_authrom 
+7939 d9608700 arg memk ,timeup 
+793a de00050a arg memdat ,alarm 
+793b 18007240 force 64 ,loopcnt 
+
+sha_loop:
+793c ee0a0000 ifetcht 4 ,alarm 
+793d e9620000 ifetch 4 ,timeup 
+793e 19609604 increase 4 ,timeup 
+793f 1e00e004 increase 4 ,alarm 
+7940 9840fe00 iadd temp ,pdata 
+7941 18007007 force 7 ,regext_index 
+7942 9de08400 iadd regext ,temp 
+7943 18007004 force 4 ,regext_index 
+7944 1dee7e03 shasx regext ,3 ,pdata 
+7945 98408400 iadd temp ,temp 
+7946 18007005 force 5 ,regext_index 
+7947 1de27e00 deposit regext 
+7948 18007006 force 6 ,regext_index 
+7949 9de2fe00 ixor regext ,pdata 
+794a 18007004 force 4 ,regext_index 
+794b 9de17e00 iand regext ,pdata 
+794c 18007006 force 6 ,regext_index 
+794d 9de2fe00 ixor regext ,pdata 
+794e 98408400 iadd temp ,temp 
+794f 18007007 force 7 ,regext_index 
+7950 18425e00 copy temp ,regext 
+7951 18007003 force 3 ,regext_index 
+7952 1de27e00 deposit regext 
+7953 9840de00 iadd temp ,regext 
+7954 18007000 force 0 ,regext_index 
+7955 1de27e00 deposit regext 
+7956 18007001 force 1 ,regext_index 
+7957 9de10400 iand regext ,temp 
+7958 9de1fe00 ior regext ,pdata 
+7959 18007002 force 2 ,regext_index 
+795a 9de17e00 iand regext ,pdata 
+795b 98418400 ior temp ,temp 
+795c 18007000 force 0 ,regext_index 
+795d 1dee7e02 shasx regext ,2 ,pdata 
+795e 9840fe00 iadd temp ,pdata 
+795f 18007007 force 7 ,regext_index 
+7960 9de0de00 iadd regext ,regext 
+7961 980efc00 regexrot 
+7962 c200793c loop sha_loop 
+7963 d8c0060a arg memahbak ,contr 
+7964 18007000 force 0 ,regext_index 
+
+sha_1:
+7965 e8c20000 ifetch 4 ,contr 
+7966 9de0de00 iadd regext ,regext 
+7967 1f00f001 increase 1 ,regext_index 
+7968 2f01fe08 compare 8 ,regext_index ,0xff 
+7969 2420f965 nbranch sha_1 ,true 
+796a 202071e6 branch disable_authrom 
+
+sha_result:
+796b d8a00962 arg memresult ,contw 
+796c 18007007 force 7 ,regext_index 
+
+sha_regext_save:
+796d 1de27e00 deposit regext 
+796e e0a20000 istore 4 ,contw 
+796f 1f00f1ff increase -1 ,regext_index 
+7970 2021796d branch sha_regext_save ,positive 
+7971 20600000 rtn 
+
+pad_xor:
+7972 d8a0050a arg memdat ,contw 
+7973 18c08dfc increase -4 ,contr 
+7974 1f262210 sub loopcnt ,16 ,rega 
+
+pad_xor_0:
+7975 e8c20000 ifetch 4 ,contr 
+7976 9842fe00 ixor temp ,pdata 
+7977 e0a20000 istore 4 ,contw 
+7978 18c08df8 increase -8 ,contr 
+7979 c2007975 loop pad_xor_0 
+797a 1a227200 copy rega ,loopcnt 
+797b 18427e00 deposit temp 
+
+pad_xor_1:
+797c e0a20000 istore 4 ,contw 
+797d c200797c loop pad_xor_1 
+797e 20600000 rtn 
+
+g_noninit_number_confirm:
+797f 20407984 call g_noninit0 
+7980 2040796b call sha_result 
+7981 202079aa branch g_common0 
+
+g_noninit:
+7982 20407984 call g_noninit0 
+7983 202079aa branch g_common0 
+
+g_noninit0:
+7984 d8c00902 arg mem_sp_pubkey_remote_x_end ,contr 
+7985 d8a0050a arg memdat ,contw 
+7986 18007206 force 6 ,loopcnt 
+7987 20407a90 call memcpy_dword_swap 
+7988 d8c046ca arg mem_sp_pubkey_local_x_end ,contr 
+7989 18007206 force 6 ,loopcnt 
+798a 20407a90 call memcpy_dword_swap 
+798b d8c00962 arg mem_sp_random_remote_end ,contr 
+798c 20407a8f call memcpy_dword_swap4 
+798d 20407927 call sha_init 
+798e 2040792e call sha 
+798f d8c00952 arg mem_sp_random_local_end ,contr 
+7990 d8a0050a arg memdat ,contw 
+7991 202079a1 branch g_common 
+
+g_init:
+7992 d8c046ca arg mem_sp_pubkey_local_x_end ,contr 
+7993 d8a0050a arg memdat ,contw 
+7994 18007206 force 6 ,loopcnt 
+7995 20407a90 call memcpy_dword_swap 
+7996 d8c00902 arg mem_sp_pubkey_remote_x_end ,contr 
+7997 18007206 force 6 ,loopcnt 
+7998 20407a90 call memcpy_dword_swap 
+7999 d8c00952 arg mem_sp_random_local_end ,contr 
+799a 20407a8f call memcpy_dword_swap4 
+799b 20407927 call sha_init 
+799c 2040792e call sha 
+799d d8c00962 arg mem_sp_random_remote_end ,contr 
+799e d8a0050a arg memdat ,contw 
+799f 204079a1 call g_common 
+79a0 202079aa branch g_common0 
+
+g_common:
+79a1 20407a8f call memcpy_dword_swap4 
+79a2 58800000 setarg 0x800000 
+79a3 1fed7e00 lshift8 pdata ,pdata 
+79a4 e0a20000 istore 4 ,contw 
+79a5 18007205 force 5 ,loopcnt 
+79a6 20407e91 call memset0 
+79a7 58000280 setarg 640 
+79a8 e0a20000 istore 4 ,contw 
+79a9 2020792e branch sha 
+
+g_common0:
+79aa 68020962 fetch 4 ,memresult 
+79ab da2003e8 arg 1000 ,rega 
+79ac 9a26fc00 idiv rega 
+79ad 20407f53 call wait_div_end 
+79ae 18077e00 remainder pdata 
+79af 600208de store 4 ,mem_gkey 
+79b0 1807fe00 quotient pdata 
+79b1 da2003e8 arg 1000 ,rega 
+79b2 9a26fc00 idiv rega 
+79b3 20407f53 call wait_div_end 
+79b4 18077e00 remainder pdata 
+79b5 da2003e8 arg 1000 ,rega 
+79b6 9a2ffe00 imul32 rega ,pdata 
+79b7 680a08de fetcht 4 ,mem_gkey 
+79b8 9840fe00 iadd temp ,pdata 
+79b9 600208de store 4 ,mem_gkey 
+79ba 20600000 rtn 
+
+function_f1_no_key:
+79bb 7046ec00 jam 0 ,mem_passkey_1bit 
+79bc 202079bf branch function_f1_common 
+
+function_f1:
+79bd 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+79be c08179bb bne ssp_mode_passkey_entry_flag ,function_f1_no_key 
+
+function_f1_common:
+79bf 79200025 set1 mark_ext_patch ,mark 
+79c0 44f4c03d bpatch patch3d_1 ,mem_patch3d 
+79c1 58363636 setarg 0x363636 
+79c2 1fed0400 lshift8 pdata ,temp 
+79c3 18418436 or_into 0x36 ,temp 
+79c4 680109a2 fetch 2 ,mem_sp_prarm_stack 
+79c5 1fe20c00 copy pdata ,contr 
+79c6 18007204 force 4 ,loopcnt 
+79c7 20407972 call pad_xor 
+79c8 20407927 call sha_init 
+79c9 2040792e call sha 
+79ca 680109a4 fetch 2 ,mem_sp_prarm_stack + 2 
+79cb 1fe20c00 copy pdata ,contr 
+79cc d8a0050a arg memdat ,contw 
+79cd 18007206 force 6 ,loopcnt 
+79ce 20407a90 call memcpy_dword_swap 
+79cf 680109a6 fetch 2 ,mem_sp_prarm_stack + 4 
+79d0 1fe20c00 copy pdata ,contr 
+79d1 18007206 force 6 ,loopcnt 
+79d2 20407a90 call memcpy_dword_swap 
+79d3 58800000 setarg 0x800000 
+79d4 e0a18000 istore 3 ,contw 
+79d5 6800c6ec fetch 1 ,mem_passkey_1bit 
+79d6 e0a08000 istore 1 ,contw 
+79d7 18007e00 force 0 ,pdata 
+79d8 e0a40000 istore 8 ,contw 
+79d9 58000388 setarg 0x0388 
+79da e0a20000 istore 4 ,contw 
+79db 2040792e call sha 
+79dc 2040796b call sha_result 
+79dd d8c00962 arg memresult ,contr 
+79de d8a0062a arg memahsave ,contw 
+79df 20407e85 call memcpy32 
+79e0 585c5c5c setarg 0x5c5c5c 
+79e1 1fed0400 lshift8 pdata ,temp 
+79e2 1841845c or_into 0x5c ,temp 
+79e3 680109a2 fetch 2 ,mem_sp_prarm_stack 
+79e4 1fe20c00 copy pdata ,contr 
+79e5 18007204 force 4 ,loopcnt 
+79e6 20407972 call pad_xor 
+79e7 20407927 call sha_init 
+79e8 2040792e call sha 
+79e9 d8c0064a arg memahsave_end ,contr 
+79ea d8a0050a arg memdat ,contw 
+79eb 18007208 force 8 ,loopcnt 
+79ec 20407a90 call memcpy_dword_swap 
+79ed 58800000 setarg 0x800000 
+79ee 1fed7e00 lshift8 pdata ,pdata 
+79ef e0a20000 istore 4 ,contw 
+79f0 20407e90 call bn_zero 
+79f1 58000300 setarg 0x0300 
+79f2 e0a20000 istore 4 ,contw 
+79f3 2040792e call sha 
+79f4 2020796b branch sha_result 
+
+function_f2:
+79f5 58363636 setarg 0x363636 
+79f6 1fed0400 lshift8 pdata ,temp 
+79f7 18418436 or_into 0x36 ,temp 
+79f8 d8c00942 arg mem_sp_dhkey_end ,contr 
+79f9 18007206 force 6 ,loopcnt 
+79fa 20407972 call pad_xor 
+79fb 20407927 call sha_init 
+79fc 2040792e call sha 
+79fd 680109ae fetch 2 ,mem_sp_prarm_stack + 12 
+79fe 1fe20c00 copy pdata ,contr 
+79ff d8a0050a arg memdat ,contw 
+7a00 20407a8f call memcpy_dword_swap4 
+7a01 680109b0 fetch 2 ,mem_sp_prarm_stack + 14 
+7a02 1fe20c00 copy pdata ,contr 
+7a03 20407a8f call memcpy_dword_swap4 
+7a04 5862746c setarg 0x62746c 
+7a05 1fed7e00 lshift8 pdata ,pdata 
+7a06 1fe1fe6b or_into 0x6b ,pdata 
+7a07 e0a20000 istore 4 ,contw 
+7a08 d8c00657 arg mem_addr_value_end ,contr 
+7a09 18007203 force 3 ,loopcnt 
+7a0a 20407a90 call memcpy_dword_swap 
+7a0b 58800000 setarg 0x800000 
+7a0c 1fed7e00 lshift8 pdata ,pdata 
+7a0d e0a20000 istore 4 ,contw 
+7a0e 18007e00 force 0 ,pdata 
+7a0f e0a40000 istore 8 ,contw 
+7a10 58000380 setarg 0x0380 
+7a11 e0a20000 istore 4 ,contw 
+7a12 2040792e call sha 
+7a13 2040796b call sha_result 
+7a14 d8c00962 arg memresult ,contr 
+7a15 d8a0062a arg memahsave ,contw 
+7a16 20407e85 call memcpy32 
+7a17 585c5c5c setarg 0x5c5c5c 
+7a18 1fed0400 lshift8 pdata ,temp 
+7a19 1841845c or_into 0x5c ,temp 
+7a1a d8c00942 arg mem_sp_dhkey_end ,contr 
+7a1b 18007206 force 6 ,loopcnt 
+7a1c 20407972 call pad_xor 
+7a1d 20407927 call sha_init 
+7a1e 2040792e call sha 
+7a1f d8c0064a arg memahsave_end ,contr 
+7a20 d8a0050a arg memdat ,contw 
+7a21 18007208 force 8 ,loopcnt 
+7a22 20407a90 call memcpy_dword_swap 
+7a23 58800000 setarg 0x800000 
+7a24 1fed7e00 lshift8 pdata ,pdata 
+7a25 e0a20000 istore 4 ,contw 
+7a26 20407e90 call bn_zero 
+7a27 58000300 setarg 0x0300 
+7a28 e0a20000 istore 4 ,contw 
+7a29 2040792e call sha 
+7a2a 2020796b branch sha_result 
+
+function_f3a:
+7a2b 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+7a2c c0817a3d bne ssp_mode_passkey_entry_flag ,function_f3a_no_pin 
+
+function_f3a_common:
+7a2d 79200025 set1 mark_ext_patch ,mark 
+7a2e 44f5403d bpatch patch3d_2 ,mem_patch3d 
+7a2f 58363636 setarg 0x363636 
+7a30 1fed0400 lshift8 pdata ,temp 
+7a31 18418436 or_into 0x36 ,temp 
+7a32 d8c00942 arg mem_sp_dhkey_end ,contr 
+7a33 18007206 force 6 ,loopcnt 
+7a34 20407972 call pad_xor 
+7a35 20407927 call sha_init 
+7a36 2040792e call sha 
+7a37 d8c00962 arg mem_sp_random_remote_end ,contr 
+7a38 d8a0050a arg memdat ,contw 
+7a39 20407a8f call memcpy_dword_swap4 
+7a3a d8c00952 arg mem_sp_random_local_end ,contr 
+7a3b 20407a8f call memcpy_dword_swap4 
+7a3c 20207a52 branch function_f3_common 
+
+function_f3a_no_pin:
+7a3d 58000000 setarg 0 
+7a3e 60024719 store 4 ,mem_pin 
+7a3f 20207a2d branch function_f3a_common 
+
+function_f3b_no_pin:
+7a40 58000000 setarg 0 
+7a41 60024719 store 4 ,mem_pin 
+7a42 20207a45 branch function_f3b_common 
+
+function_f3b:
+7a43 6800c6ea fetch 1 ,mem_ssp_mode_flag 
+7a44 c0817a40 bne ssp_mode_passkey_entry_flag ,function_f3b_no_pin 
+
+function_f3b_common:
+7a45 58363636 setarg 0x363636 
+7a46 1fed0400 lshift8 pdata ,temp 
+7a47 18418436 or_into 0x36 ,temp 
+7a48 d8c00942 arg mem_sp_dhkey_end ,contr 
+7a49 18007206 force 6 ,loopcnt 
+7a4a 20407972 call pad_xor 
+7a4b 20407927 call sha_init 
+7a4c 2040792e call sha 
+7a4d d8c00952 arg mem_sp_random_local_end ,contr 
+7a4e d8a0050a arg memdat ,contw 
+7a4f 20407a8f call memcpy_dword_swap4 
+7a50 d8c00962 arg mem_sp_random_remote_end ,contr 
+7a51 20407a8f call memcpy_dword_swap4 
+
+function_f3_common:
+7a52 58000000 setarg 0x0 
+7a53 e0a40000 istore 8 ,contw 
+7a54 e0a20000 istore 4 ,contw 
+7a55 68024719 fetch 4 ,mem_pin 
+7a56 e0a20000 istore 4 ,contw 
+7a57 18a20400 copy contw ,temp 
+7a58 70064a80 jam 0x80 ,mem_addr_padding 
+7a59 18420a00 copy temp ,contw 
+7a5a d8c0065a arg mem_addr_iocap_end ,contr 
+7a5b 20407a8f call memcpy_dword_swap4 
+7a5c 2040792e call sha 
+7a5d d8a0050a arg memdat ,contw 
+7a5e 18007207 force 7 ,loopcnt 
+7a5f 20407e91 call memset0 
+7a60 e0a20000 istore 4 ,contw 
+7a61 580003f8 setarg 0x03F8 
+7a62 e0a20000 istore 4 ,contw 
+7a63 2040792e call sha 
+7a64 2040796b call sha_result 
+7a65 d8c00962 arg memresult ,contr 
+7a66 d8a0062a arg memahsave ,contw 
+7a67 20407e85 call memcpy32 
+7a68 585c5c5c setarg 0x5c5c5c 
+7a69 1fed0400 lshift8 pdata ,temp 
+7a6a 1841845c or_into 0x5c ,temp 
+7a6b d8c00942 arg mem_sp_dhkey_end ,contr 
+7a6c 18007206 force 6 ,loopcnt 
+7a6d 20407972 call pad_xor 
+7a6e 20407927 call sha_init 
+7a6f 2040792e call sha 
+7a70 d8c0064a arg memahsave_end ,contr 
+7a71 d8a0050a arg memdat ,contw 
+7a72 18007208 force 8 ,loopcnt 
+7a73 20407a90 call memcpy_dword_swap 
+7a74 58800000 setarg 0x800000 
+7a75 1fed7e00 lshift8 pdata ,pdata 
+7a76 e0a20000 istore 4 ,contw 
+7a77 20407e90 call bn_zero 
+7a78 58000300 setarg 0x0300 
+7a79 e0a20000 istore 4 ,contw 
+7a7a 2040792e call sha 
+7a7b 2020796b branch sha_result 
+
+eckp_calc_init:
+7a7c 700507c0 jam 192 ,mem_ec_loopc 
+
+eckp_calc_init_1:
+7a7d 68008507 fetch 1 ,mem_ec_loopc 
+7a7e 207a0000 rtn blank 
+7a7f 1fe0ffff increase -1 ,pdata 
+7a80 60008507 store 1 ,mem_ec_loopc 
+7a81 d8c005e2 arg mem_k ,contr 
+7a82 20407708 call bn_testbit 
+7a83 2020fa7d branch eckp_calc_init_1 ,true 
+7a84 d8c0050a arg mem_ax ,contr 
+7a85 d8a0059a arg mem_cx ,contw 
+7a86 2020770e branch ec_copy 
+
+eckp_calc:
+7a87 2040781f call ecdbl 
+7a88 68008507 fetch 1 ,mem_ec_loopc 
+7a89 1fe0ffff increase -1 ,pdata 
+7a8a 60008507 store 1 ,mem_ec_loopc 
+7a8b d8c005e2 arg mem_k ,contr 
+7a8c 20407708 call bn_testbit 
+7a8d 20608000 rtn true 
+7a8e 20207870 branch ecadd 
+
+memcpy_dword_swap4:
+7a8f 18007204 force 4 ,loopcnt 
+
+memcpy_dword_swap:
+7a90 18c08dfc increase -4 ,contr 
+
+memcpy_dword_swap_loop:
+7a91 e8c20000 ifetch 4 ,contr 
+7a92 e0a20000 istore 4 ,contw 
+7a93 18c08df8 increase -8 ,contr 
+7a94 c2007a91 loop memcpy_dword_swap_loop 
+7a95 20600000 rtn 
+
+sp_initialize_256:
+7a96 79200025 set1 mark_ext_patch ,mark 
+7a97 44f5c03d bpatch patch3d_3 ,mem_patch3d 
+7a98 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+7a99 203a48de branch le_secure_connection_disable ,blank 
+7a9a 204048da call le_secure_connection_enable 
+7a9b 204075fb call sp_clear_flags 
+7a9c 20207a9d branch sp_pubkey_calc_256 
+
+sp_pubkey_calc_256:
+7a9d 6800c568 fetch 1 ,mem_le_sc_local_key_invalid 
+7a9e c1800000 rtnne sp_key_invalid 
+7a9f 6800c565 fetch 1 ,mem_le_sc_calc 
+7aa0 c1800000 rtnne sp_calc_standby 
+7aa1 d8a0463a arg mem_le_private_key_256 ,contw 
+7aa2 18000e0f force 15 ,queue 
+7aa3 204076bb call random_generator 
+7aa4 180a7e00 random pdata 
+7aa5 1fe37e00 rshift pdata ,pdata 
+7aa6 e0a10000 istore 2 ,contw 
+7aa7 d8a0068a arg mem_k_256 ,contw 
+7aa8 d8c0463a arg mem_le_private_key_256 ,contr 
+7aa9 20407e85 call memcpy32 
+7aaa d8a0056a arg mem_ax_256 ,contw 
+7aab d8c00882 arg mem_gx_256 ,contr 
+7aac 20407e7b call memcpy64 
+7aad d8a005aa arg mem_az_256 ,contw 
+7aae 20407e9b call clear_mem_256 
+7aaf 7005aa01 jam 1 ,mem_az_256 
+7ab0 20407ae8 call eckp_calc_init_256 
+7ab1 70456503 jam sp_calc_pubkey_256 ,mem_le_sc_calc 
+7ab2 20600000 rtn 
+
+sp_pubkey_generated_256:
+7ab3 d8a0465a arg mem_le_pubkey_local_x_256 ,contw 
+7ab4 d8c005ca arg mem_bx_256 ,contr 
+7ab5 20407e7b call memcpy64 
+7ab6 70456803 jam sp_key_valid_256 ,mem_le_sc_local_key_invalid 
+7ab7 70456500 jam sp_calc_standby ,mem_le_sc_calc 
+7ab8 20600000 rtn 
+
+sp_dhkey_calc_256:
+7ab9 680088dd fetch 1 ,mem_sp_dhkey_invalid 
+7aba c1800000 rtnne sp_key_invalid 
+7abb 6800c565 fetch 1 ,mem_le_sc_calc 
+7abc c1800000 rtnne sp_calc_standby 
+7abd d8a0068a arg mem_k_256 ,contw 
+7abe d8c0463a arg mem_le_private_key_256 ,contr 
+7abf 20407e85 call memcpy32 
+7ac0 d8a0056a arg mem_ax_256 ,contw 
+7ac1 d8c008e2 arg mem_le_pubkey_remote_x_256 ,contr 
+7ac2 20407e7b call memcpy64 
+7ac3 d8a005aa arg mem_az_256 ,contw 
+7ac4 20407e9b call clear_mem_256 
+7ac5 7005aa01 jam 1 ,mem_az_256 
+7ac6 20407ae8 call eckp_calc_init_256 
+7ac7 70456504 jam sp_calc_dhkey_256 ,mem_le_sc_calc 
+7ac8 20600000 rtn 
+
+sp_dhkey_generated_256:
+7ac9 d8a00922 arg mem_le_dhkey_256 ,contw 
+7aca d8c005ca arg mem_bx_256 ,contr 
+7acb 20407e85 call memcpy32 
+7acc 7008dd03 jam sp_key_valid_256 ,mem_sp_dhkey_invalid 
+7acd 70456500 jam sp_calc_standby ,mem_le_sc_calc 
+7ace 20600000 rtn 
+
+sp_calc_sequence_256:
+7acf 6800c563 fetch 1 ,mem_le_secure_connect_enable 
+7ad0 207a0000 rtn blank 
+7ad1 6800c565 fetch 1 ,mem_le_sc_calc 
+7ad2 207a0000 rtn blank 
+7ad3 1fe0fe80 increase 0x80 ,pdata 
+7ad4 6000c565 store 1 ,mem_le_sc_calc 
+7ad5 c3838000 rtnbit1 7 
+7ad6 68010507 fetch 2 ,mem_ec_loopc 
+7ad7 203a7ad9 branch sp_calc_sequence_done_256 ,blank 
+7ad8 20207ae0 branch eckp_calc_256 
+
+sp_calc_sequence_done_256:
+7ad9 79200025 set1 mark_ext_patch ,mark 
+7ada 44f6403d bpatch patch3d_4 ,mem_patch3d 
+7adb 20407af6 call ecunmapz_256 
+7adc 6800c565 fetch 1 ,mem_le_sc_calc 
+7add c001fab3 beq sp_calc_pubkey_256 ,sp_pubkey_generated_256 
+7ade c0027ac9 beq sp_calc_dhkey_256 ,sp_dhkey_generated_256 
+7adf 20600000 rtn 
+
+eckp_calc_256:
+7ae0 20407b08 call ecdbl_256 
+7ae1 68010507 fetch 2 ,mem_ec_loopc 
+7ae2 1fe0ffff increase -1 ,pdata 
+7ae3 60010507 store 2 ,mem_ec_loopc 
+7ae4 d8c0068a arg mem_k_256 ,contr 
+7ae5 20407708 call bn_testbit 
+7ae6 20608000 rtn true 
+7ae7 20207b59 branch ecadd_256 
+
+eckp_calc_init_256:
+7ae8 79200025 set1 mark_ext_patch ,mark 
+7ae9 44f6c03d bpatch patch3d_5 ,mem_patch3d 
+7aea 58000100 setarg 256 ,pdata 
+7aeb 60010507 store 2 ,mem_ec_loopc 
+
+eckp_calc_init_256_1:
+7aec 68010507 fetch 2 ,mem_ec_loopc 
+7aed 207a0000 rtn blank 
+7aee 1fe0ffff increase -1 ,pdata 
+7aef 60010507 store 2 ,mem_ec_loopc 
+7af0 d8c0068a arg mem_k_256 ,contr 
+7af1 20407708 call bn_testbit 
+7af2 2020faec branch eckp_calc_init_256_1 ,true 
+7af3 d8c0056a arg mem_ax_256 ,contr 
+7af4 d8a0062a arg mem_cx_256 ,contw 
+7af5 20207e7a branch memcpy96 
+
+ecunmapz_256:
+7af6 da20066a arg mem_cz_256 ,rega 
+7af7 d8a0076a arg mem_t3_256 ,contw 
+7af8 20407bc5 call bn_invmod_256 
+7af9 da20076a arg mem_t3_256 ,rega 
+7afa d8a0070a arg mem_t1_256 ,contw 
+7afb 20407c9c call bn_sqrmod_256 
+7afc da20062a arg mem_cx_256 ,rega 
+7afd da40070a arg mem_t1_256 ,regb 
+7afe d8a005ca arg mem_bx_256 ,contw 
+7aff 20407c03 call bn_mulmod_256 
+7b00 da20076a arg mem_t3_256 ,rega 
+7b01 da40070a arg mem_t1_256 ,regb 
+7b02 d8a0074a arg mem_t2_256 ,contw 
+7b03 20407c03 call bn_mulmod_256 
+7b04 da20064a arg mem_cy_256 ,rega 
+7b05 da40074a arg mem_t2_256 ,regb 
+7b06 d8a005ea arg mem_by_256 ,contw 
+7b07 20207c03 branch bn_mulmod_256 
+
+ecdbl_256:
+7b08 da20066a arg mem_cz_256 ,rega 
+7b09 d8a0074a arg mem_t2_256 ,contw 
+7b0a 20407c9c call bn_sqrmod_256 
+7b0b da20074a arg mem_t2_256 ,rega 
+7b0c d8a0076a arg mem_t3_256 ,contw 
+7b0d 20407c9c call bn_sqrmod_256 
+7b0e da200862 arg mem_a_256 ,rega 
+7b0f da40076a arg mem_t3_256 ,regb 
+7b10 d8a0076a arg mem_t3_256 ,contw 
+7b11 20407c03 call bn_mulmod_256 
+7b12 da20062a arg mem_cx_256 ,rega 
+7b13 d8a0074a arg mem_t2_256 ,contw 
+7b14 20407c9c call bn_sqrmod_256 
+7b15 d8c0074a arg mem_t2_256 ,contr 
+7b16 d8a0070a arg mem_t1_256 ,contw 
+7b17 20407e85 call memcpy32 
+7b18 da20070a arg mem_t1_256 ,rega 
+7b19 20407ca3 call bn_lshiftmod_256 
+7b1a da20074a arg mem_t2_256 ,rega 
+7b1b da40070a arg mem_t1_256 ,regb 
+7b1c d8a0074a arg mem_t2_256 ,contw 
+7b1d 20407ca0 call bn_addmod_256 
+7b1e da20074a arg mem_t2_256 ,rega 
+7b1f da40076a arg mem_t3_256 ,regb 
+7b20 d8a0074a arg mem_t2_256 ,contw 
+7b21 20407ca0 call bn_addmod_256 
+7b22 d8c0062a arg mem_cx_256 ,contr 
+7b23 d8a0070a arg mem_t1_256 ,contw 
+7b24 20407e85 call memcpy32 
+7b25 da20064a arg mem_cy_256 ,rega 
+7b26 d8a0076a arg mem_t3_256 ,contw 
+7b27 20407c9c call bn_sqrmod_256 
+7b28 da20070a arg mem_t1_256 ,rega 
+7b29 20407ca3 call bn_lshiftmod_256 
+7b2a da20070a arg mem_t1_256 ,rega 
+7b2b 20407ca3 call bn_lshiftmod_256 
+7b2c da20070a arg mem_t1_256 ,rega 
+7b2d da40076a arg mem_t3_256 ,regb 
+7b2e d8a0070a arg mem_t1_256 ,contw 
+7b2f 20407c03 call bn_mulmod_256 
+7b30 da20076a arg mem_t3_256 ,rega 
+7b31 d8a0072a arg mem_t0_256 ,contw 
+7b32 20407c9c call bn_sqrmod_256 
+7b33 da20072a arg mem_t0_256 ,rega 
+7b34 20407ca3 call bn_lshiftmod_256 
+7b35 da20072a arg mem_t0_256 ,rega 
+7b36 20407ca3 call bn_lshiftmod_256 
+7b37 da20072a arg mem_t0_256 ,rega 
+7b38 20407ca3 call bn_lshiftmod_256 
+7b39 d8c0064a arg mem_cy_256 ,contr 
+7b3a d8a0076a arg mem_t3_256 ,contw 
+7b3b 20407e85 call memcpy32 
+7b3c da20076a arg mem_t3_256 ,rega 
+7b3d 20407ca3 call bn_lshiftmod_256 
+7b3e da20076a arg mem_t3_256 ,rega 
+7b3f da40066a arg mem_cz_256 ,regb 
+7b40 d8a0066a arg mem_cz_256 ,contw 
+7b41 20407c03 call bn_mulmod_256 
+7b42 da20074a arg mem_t2_256 ,rega 
+7b43 d8a0076a arg mem_t3_256 ,contw 
+7b44 20407c9c call bn_sqrmod_256 
+7b45 da20076a arg mem_t3_256 ,rega 
+7b46 da40070a arg mem_t1_256 ,regb 
+7b47 d8a0076a arg mem_t3_256 ,contw 
+7b48 20407cb9 call bn_submod_256 
+7b49 da20076a arg mem_t3_256 ,rega 
+7b4a da40070a arg mem_t1_256 ,regb 
+7b4b d8a0062a arg mem_cx_256 ,contw 
+7b4c 20407cb9 call bn_submod_256 
+7b4d da20070a arg mem_t1_256 ,rega 
+7b4e da40062a arg mem_cx_256 ,regb 
+7b4f d8a0076a arg mem_t3_256 ,contw 
+7b50 20407cb9 call bn_submod_256 
+7b51 da20076a arg mem_t3_256 ,rega 
+7b52 da40074a arg mem_t2_256 ,regb 
+7b53 d8a0076a arg mem_t3_256 ,contw 
+7b54 20407c03 call bn_mulmod_256 
+7b55 da20076a arg mem_t3_256 ,rega 
+7b56 da40072a arg mem_t0_256 ,regb 
+7b57 d8a0064a arg mem_cy_256 ,contw 
+7b58 20207cb9 branch bn_submod_256 
+
+ecadd_256:
+7b59 da2005aa arg mem_az_256 ,rega 
+7b5a d8a0078a arg mem_t7_256 ,contw 
+7b5b 20407c9c call bn_sqrmod_256 
+7b5c da20062a arg mem_cx_256 ,rega 
+7b5d da40078a arg mem_t7_256 ,regb 
+7b5e d8a0072a arg mem_t0_256 ,contw 
+7b5f 20407c03 call bn_mulmod_256 
+7b60 da2005aa arg mem_az_256 ,rega 
+7b61 da40078a arg mem_t7_256 ,regb 
+7b62 d8a0078a arg mem_t7_256 ,contw 
+7b63 20407c03 call bn_mulmod_256 
+7b64 da20064a arg mem_cy_256 ,rega 
+7b65 da40078a arg mem_t7_256 ,regb 
+7b66 d8a0070a arg mem_t1_256 ,contw 
+7b67 20407c03 call bn_mulmod_256 
+7b68 da20066a arg mem_cz_256 ,rega 
+7b69 d8a0078a arg mem_t7_256 ,contw 
+7b6a 20407c9c call bn_sqrmod_256 
+7b6b da20056a arg mem_ax_256 ,rega 
+7b6c da40078a arg mem_t7_256 ,regb 
+7b6d d8a0074a arg mem_t2_256 ,contw 
+7b6e 20407c03 call bn_mulmod_256 
+7b6f da20066a arg mem_cz_256 ,rega 
+7b70 da40078a arg mem_t7_256 ,regb 
+7b71 d8a0078a arg mem_t7_256 ,contw 
+7b72 20407c03 call bn_mulmod_256 
+7b73 da20058a arg mem_ay_256 ,rega 
+7b74 da40078a arg mem_t7_256 ,regb 
+7b75 d8a0076a arg mem_t3_256 ,contw 
+7b76 20407c03 call bn_mulmod_256 
+7b77 da40072a arg mem_t0_256 ,regb 
+7b78 da20074a arg mem_t2_256 ,rega 
+7b79 d8a0078a arg mem_t7_256 ,contw 
+7b7a 20407cb9 call bn_submod_256 
+7b7b da20072a arg mem_t0_256 ,rega 
+7b7c da40074a arg mem_t2_256 ,regb 
+7b7d d8a0072a arg mem_t0_256 ,contw 
+7b7e 20407ca0 call bn_addmod_256 
+7b7f da40070a arg mem_t1_256 ,regb 
+7b80 da20076a arg mem_t3_256 ,rega 
+7b81 d8a0074a arg mem_t2_256 ,contw 
+7b82 20407cb9 call bn_submod_256 
+7b83 da20070a arg mem_t1_256 ,rega 
+7b84 da40076a arg mem_t3_256 ,regb 
+7b85 d8a0070a arg mem_t1_256 ,contw 
+7b86 20407ca0 call bn_addmod_256 
+7b87 da20070a arg mem_t1_256 ,rega 
+7b88 da40078a arg mem_t7_256 ,regb 
+7b89 d8a0070a arg mem_t1_256 ,contw 
+7b8a 20407c03 call bn_mulmod_256 
+7b8b da20066a arg mem_cz_256 ,rega 
+7b8c da4005aa arg mem_az_256 ,regb 
+7b8d d8a0076a arg mem_t3_256 ,contw 
+7b8e 20407c03 call bn_mulmod_256 
+7b8f da20076a arg mem_t3_256 ,rega 
+7b90 da40078a arg mem_t7_256 ,regb 
+7b91 d8a0066a arg mem_cz_256 ,contw 
+7b92 20407c03 call bn_mulmod_256 
+7b93 da20078a arg mem_t7_256 ,rega 
+7b94 d8a0078a arg mem_t7_256 ,contw 
+7b95 20407c9c call bn_sqrmod_256 
+7b96 da20078a arg mem_t7_256 ,rega 
+7b97 da40072a arg mem_t0_256 ,regb 
+7b98 d8a0076a arg mem_t3_256 ,contw 
+7b99 20407c03 call bn_mulmod_256 
+7b9a da20078a arg mem_t7_256 ,rega 
+7b9b da40070a arg mem_t1_256 ,regb 
+7b9c d8a0070a arg mem_t1_256 ,contw 
+7b9d 20407c03 call bn_mulmod_256 
+7b9e da20074a arg mem_t2_256 ,rega 
+7b9f d8a0062a arg mem_cx_256 ,contw 
+7ba0 20407c9c call bn_sqrmod_256 
+7ba1 da20062a arg mem_cx_256 ,rega 
+7ba2 da40076a arg mem_t3_256 ,regb 
+7ba3 d8a0062a arg mem_cx_256 ,contw 
+7ba4 20407cb9 call bn_submod_256 
+7ba5 d8c0062a arg mem_cx_256 ,contr 
+7ba6 d8a0078a arg mem_t7_256 ,contw 
+7ba7 20407e85 call memcpy32 
+7ba8 da20078a arg mem_t7_256 ,rega 
+7ba9 20407ca3 call bn_lshiftmod_256 
+7baa da20076a arg mem_t3_256 ,rega 
+7bab da40078a arg mem_t7_256 ,regb 
+7bac d8a0076a arg mem_t3_256 ,contw 
+7bad 20407cb9 call bn_submod_256 
+7bae da20076a arg mem_t3_256 ,rega 
+7baf da40074a arg mem_t2_256 ,regb 
+7bb0 d8a0074a arg mem_t2_256 ,contw 
+7bb1 20407c03 call bn_mulmod_256 
+7bb2 da20074a arg mem_t2_256 ,rega 
+7bb3 da40070a arg mem_t1_256 ,regb 
+7bb4 d8a0064a arg mem_cy_256 ,contw 
+7bb5 20407cb9 call bn_submod_256 
+7bb6 da20064a arg mem_cy_256 ,rega 
+7bb7 da400842 arg mem_p_256 ,regb 
+7bb8 d8a0064a arg mem_cy_256 ,contw 
+7bb9 18002600 force 0 ,regc 
+7bba 6800864a fetch 1 ,mem_cy_256 
+7bbb 2feffe00 isolate1 0 ,pdata 
+7bbc 2040fc9e call bn_add_256 ,true 
+7bbd 1a626000 copy regc ,alarm 
+7bbe da20064a arg mem_cy_256 ,rega 
+7bbf 20407cce call bn_rshift_256 
+7bc0 68008669 fetch 1 ,mem_cy5_256 
+7bc1 2e0ffe00 isolate1 0 ,alarm 
+7bc2 7920fe07 setflag true ,7 ,pdata 
+7bc3 60008669 store 1 ,mem_cy5_256 
+7bc4 20600000 rtn 
+
+bn_invmod_256:
+7bc5 18a21600 copy contw ,timeup 
+7bc6 d8a0072a arg mem_tmp0_256 ,contw 
+7bc7 20407e9b call clear_mem_256 
+7bc8 18007e00 force 0 ,pdata 
+7bc9 6002074a store 4 ,mem_t2_256 
+7bca 70072a01 jam 1 ,mem_tmp0_256 
+7bcb d8a006aa arg mem_tmp1_256 ,contw 
+7bcc 20407e9d call clear_mem_512 
+7bcd d8c00842 arg mem_p_256 ,contr 
+7bce d8a006ea arg mem_tmp2_256 ,contw 
+7bcf 20407e85 call memcpy32 
+7bd0 1a220c00 copy rega ,contr 
+7bd1 d8a0070a arg mem_tmp3_256 ,contw 
+7bd2 20407e85 call memcpy32 
+
+bn_invmod_256_2:
+7bd3 d8c0070a arg mem_tmp3_256 ,contr 
+7bd4 20407cd8 call bn_eq_zero_256 
+7bd5 203a7bfc branch bn_invmod_256_0 ,blank 
+7bd6 da20070a arg mem_tmp3_256 ,rega 
+7bd7 da40072a arg mem_tmp0_256 ,regb 
+7bd8 20407cdb call bn_rshifteven_256 
+7bd9 da2006ea arg mem_tmp2_256 ,rega 
+7bda da4006aa arg mem_tmp1_256 ,regb 
+7bdb 20407cdb call bn_rshifteven_256 
+7bdc da20070a arg mem_tmp3_256 ,rega 
+7bdd da4006ea arg mem_tmp2_256 ,regb 
+7bde 20407cd4 call bn_bigeq_256 
+7bdf 20217bee branch bn_invmod_256_1 ,positive 
+7be0 da2006ea arg mem_tmp2_256 ,rega 
+7be1 da40070a arg mem_tmp3_256 ,regb 
+7be2 1a220a00 copy rega ,contw 
+7be3 20407ccc call bn_sub_256 
+7be4 da20072a arg mem_tmp0_256 ,rega 
+7be5 da4006aa arg mem_tmp1_256 ,regb 
+7be6 1a420a00 copy regb ,contw 
+7be7 20407c9e call bn_add_256 
+7be8 ea208000 ifetch 1 ,rega 
+7be9 9a60a600 iadd regc ,regc 
+7bea ea408000 ifetch 1 ,regb 
+7beb 9a60fe00 iadd regc ,pdata 
+7bec e2408000 istore 1 ,regb 
+7bed 20207bd3 branch bn_invmod_256_2 
+
+bn_invmod_256_1:
+7bee da20070a arg mem_tmp3_256 ,rega 
+7bef da4006ea arg mem_tmp2_256 ,regb 
+7bf0 1a220a00 copy rega ,contw 
+7bf1 20407ccc call bn_sub_256 
+7bf2 da2006aa arg mem_tmp1_256 ,rega 
+7bf3 da40072a arg mem_tmp0_256 ,regb 
+7bf4 1a420a00 copy regb ,contw 
+7bf5 20407c9e call bn_add_256 
+7bf6 ea208000 ifetch 1 ,rega 
+7bf7 9a60a600 iadd regc ,regc 
+7bf8 ea408000 ifetch 1 ,regb 
+7bf9 9a60fe00 iadd regc ,pdata 
+7bfa e2408000 istore 1 ,regb 
+7bfb 20207bd3 branch bn_invmod_256_2 
+
+bn_invmod_256_0:
+7bfc da2006aa arg mem_tmp1_256 ,rega 
+7bfd 19620a00 copy timeup ,contw 
+7bfe 20407c2c call bn_p256mod 
+7bff da200842 arg mem_p_256 ,rega 
+7c00 19622400 copy timeup ,regb 
+7c01 19620a00 copy timeup ,contw 
+7c02 20207cb9 branch bn_submod_256 
+
+bn_mulmod_256:
+7c03 18a21600 copy contw ,timeup 
+7c04 18007000 force 0 ,regext_index 
+7c05 d8a006aa arg mem_tmp1_256 ,contw 
+7c06 20407e9d call clear_mem_512 
+7c07 d8a009f1 arg mem_regext ,contw 
+7c08 20407e9d call clear_mem_512 
+7c09 1a220c00 copy rega ,contr 
+7c0a 7009f100 jam 0 ,mem_regext 
+7c0b 58000000 setarg 0 
+7c0c 20407c96 call bn_load_mem 
+7c0d 1a420c00 copy regb ,contr 
+7c0e 20407c9a call bn_load_256 
+7c0f 18000e00 force 0 ,queue 
+7c10 d8a006aa arg mem_tmp1_256 ,contw 
+
+bn_mulmod_256_1:
+7c11 d84009f1 arg mem_regext ,temp 
+7c12 18e22400 copy queue ,regb 
+7c13 1a4bfe00 lshift2 regb ,pdata 
+7c14 9840a400 iadd temp ,regb 
+7c15 18000400 force 0 ,temp 
+7c16 18002600 force 0 ,regc 
+
+bn_mulmod_256_0:
+7c17 e8a20000 ifetch 4 ,contw 
+7c18 98002200 iforce rega 
+7c19 ea420000 ifetch 4 ,regb 
+7c1a 1a627000 copy regc ,regext_index 
+7c1b 9deffe00 imul32 regext ,pdata 
+7c1c 9a20fe00 iadd rega ,pdata 
+7c1d 9840fe00 iadd temp ,pdata 
+7c1e e0a20000 istore 4 ,contw 
+7c1f 1fef0400 rshift32 pdata ,temp 
+7c20 1a60a601 increase 1 ,regc 
+7c21 2a61fe08 compare 8 ,regc ,0xff 
+7c22 2420fc17 nbranch bn_mulmod_256_0 ,true 
+7c23 18427e00 deposit temp 
+7c24 e0a20000 istore 4 ,contw 
+7c25 18a08be0 increase -32 ,contw 
+7c26 18e08e01 increase 1 ,queue 
+7c27 28e1fe08 compare 8 ,queue ,0xff 
+7c28 2420fc11 nbranch bn_mulmod_256_1 ,true 
+7c29 da2006aa arg mem_tmp1_256 ,rega 
+7c2a 19620a00 copy timeup ,contw 
+7c2b 20207c2c branch bn_p256mod 
+
+bn_p256mod:
+7c2c 79200025 set1 mark_ext_patch ,mark 
+7c2d 44f7403d bpatch patch3d_6 ,mem_patch3d 
+7c2e 18a21600 copy contw ,timeup 
+7c2f 1a226000 copy rega ,alarm 
+7c30 da4006ea arg mem_tmp2_256 ,regb 
+7c31 1a420a00 copy regb ,contw 
+7c32 20407e98 call memset0_4 
+7c33 e0a40000 istore 8 ,contw 
+7c34 1a208c2c add rega ,44 ,contr 
+7c35 20407e81 call memcpy8 
+7c36 20407e7d call memcpy12 
+7c37 1a422200 copy regb ,rega 
+7c38 20407ca3 call bn_lshiftmod_256 
+7c39 da4006ea arg mem_tmp2_256 ,regb 
+7c3a 1e022200 copy alarm ,rega 
+7c3b 19620a00 copy timeup ,contw 
+7c3c 20407ca0 call bn_addmod_256 
+7c3d da4006ea arg mem_tmp2_256 ,regb 
+7c3e 1a420a00 copy regb ,contw 
+7c3f 20407e98 call memset0_4 
+7c40 e0a40000 istore 8 ,contw 
+7c41 1e008c30 add alarm ,48 ,contr 
+7c42 20407e87 call memcpy16 
+7c43 20407e98 call memset0_4 
+7c44 1a422200 copy regb ,rega 
+7c45 20407ca3 call bn_lshiftmod_256 
+7c46 da4006ea arg mem_tmp2_256 ,regb 
+7c47 19622200 copy timeup ,rega 
+7c48 1a220a00 copy rega ,contw 
+7c49 20407ca0 call bn_addmod_256 
+7c4a da4006ea arg mem_tmp2_256 ,regb 
+7c4b 1a420a00 copy regb ,contw 
+7c4c 1e008c20 add alarm ,32 ,contr 
+7c4d 20407e7d call memcpy12 
+7c4e 20407e98 call memset0_4 
+7c4f e0a40000 istore 8 ,contw 
+7c50 1e008c38 add alarm ,56 ,contr 
+7c51 20407e81 call memcpy8 
+7c52 19622200 copy timeup ,rega 
+7c53 1a220a00 copy rega ,contw 
+7c54 20407ca0 call bn_addmod_256 
+7c55 da4006ea arg mem_tmp2_256 ,regb 
+7c56 1a420a00 copy regb ,contw 
+7c57 1e008c24 add alarm ,36 ,contr 
+7c58 20407e7d call memcpy12 
+7c59 1e008c34 add alarm ,52 ,contr 
+7c5a 20407e7d call memcpy12 
+7c5b 1e008c34 add alarm ,52 ,contr 
+7c5c 20407e7e call memcpy4 
+7c5d 1e008c20 add alarm ,32 ,contr 
+7c5e 20407e7e call memcpy4 
+7c5f 19622200 copy timeup ,rega 
+7c60 1a220a00 copy rega ,contw 
+7c61 20407ca0 call bn_addmod_256 
+7c62 da4006ea arg mem_tmp2_256 ,regb 
+7c63 1a420a00 copy regb ,contw 
+7c64 1e008c2c add alarm ,44 ,contr 
+7c65 20407e7d call memcpy12 
+7c66 20407e98 call memset0_4 
+7c67 e0a40000 istore 8 ,contw 
+7c68 1e008c20 add alarm ,32 ,contr 
+7c69 20407e7e call memcpy4 
+7c6a 1e008c28 add alarm ,40 ,contr 
+7c6b 20407e7e call memcpy4 
+7c6c 19622200 copy timeup ,rega 
+7c6d 1a220a00 copy rega ,contw 
+7c6e 20407cb9 call bn_submod_256 
+7c6f da4006ea arg mem_tmp2_256 ,regb 
+7c70 1a420a00 copy regb ,contw 
+7c71 1e008c30 add alarm ,48 ,contr 
+7c72 20407e81 call memcpy8 
+7c73 20407e81 call memcpy8 
+7c74 18007e00 force 0 ,pdata 
+7c75 e0a40000 istore 8 ,contw 
+7c76 1e008c24 add alarm ,36 ,contr 
+7c77 20407e7e call memcpy4 
+7c78 1e008c2c add alarm ,44 ,contr 
+7c79 20407e7e call memcpy4 
+7c7a 19622200 copy timeup ,rega 
+7c7b 1a220a00 copy rega ,contw 
+7c7c 20407cb9 call bn_submod_256 
+7c7d da4006ea arg mem_tmp2_256 ,regb 
+7c7e 1a420a00 copy regb ,contw 
+7c7f 1e008c34 add alarm ,52 ,contr 
+7c80 20407e7d call memcpy12 
+7c81 1e008c20 add alarm ,32 ,contr 
+7c82 20407e7d call memcpy12 
+7c83 20407e98 call memset0_4 
+7c84 1e008c30 add alarm ,48 ,contr 
+7c85 20407e7e call memcpy4 
+7c86 19622200 copy timeup ,rega 
+7c87 1a220a00 copy rega ,contw 
+7c88 20407cb9 call bn_submod_256 
+7c89 da4006ea arg mem_tmp2_256 ,regb 
+7c8a 1a420a00 copy regb ,contw 
+7c8b 1e008c38 add alarm ,56 ,contr 
+7c8c 20407e81 call memcpy8 
+7c8d 20407e98 call memset0_4 
+7c8e 1e008c24 add alarm ,36 ,contr 
+7c8f 20407e7d call memcpy12 
+7c90 20407e98 call memset0_4 
+7c91 1e008c34 add alarm ,52 ,contr 
+7c92 20407e7e call memcpy4 
+7c93 19622200 copy timeup ,rega 
+7c94 1a220a00 copy rega ,contw 
+7c95 20207cb9 branch bn_submod_256 
+
+bn_load_mem:
+7c96 18007220 force 32 ,loopcnt 
+7c97 d8a009f1 arg mem_regext ,contw 
+7c98 98a08a00 iadd contw ,contw 
+7c99 20207ecd branch memcpy 
+
+bn_load_256:
+7c9a 18007208 force 8 ,loopcnt 
+7c9b 2020779d branch bn_load_0 
+
+bn_sqrmod_256:
+7c9c 1a222400 copy rega ,regb 
+7c9d 20207c03 branch bn_mulmod_256 
+
+bn_add_256:
+7c9e 18007208 force 8 ,loopcnt 
+7c9f 2020772e branch bn_add + 1 
+
+bn_addmod_256:
+7ca0 20407c9e call bn_add_256 
+7ca1 18a22200 copy contw ,rega 
+7ca2 20207ca4 branch bn_lshiftmod_ismod_256 
+
+bn_lshiftmod_256:
+7ca3 20407cd1 call bn_lshift_256 
+
+bn_lshiftmod_ismod_256:
+7ca4 2a6ffe00 isolate1 0 ,regc 
+7ca5 2020fcad branch bn_lshiftmod_p_256 ,true 
+7ca6 da400842 arg mem_p_256 ,regb 
+7ca7 1a222600 copy rega ,regc 
+7ca8 1a20a3e0 increase -32 ,rega 
+7ca9 20407cd4 call bn_bigeq_256 
+7caa 24610000 nrtn positive 
+7cab 1a622200 copy regc ,rega 
+7cac 20207cb5 branch sub_p2_256 
+
+bn_lshiftmod_p_256:
+7cad 20407cb5 call sub_p2_256 
+7cae 1a222600 copy rega ,regc 
+7caf 1a20a3e0 increase -32 ,rega 
+7cb0 da400842 arg mem_p_256 ,regb 
+7cb1 20407cd4 call bn_bigeq_256 
+7cb2 24610000 nrtn positive 
+7cb3 1a622200 copy regc ,rega 
+7cb4 20207cb5 branch sub_p2_256 
+
+sub_p2_256:
+7cb5 1a20a3e0 increase -32 ,rega 
+7cb6 da400842 arg mem_p_256 ,regb 
+7cb7 1a220a00 copy rega ,contw 
+7cb8 20207ccc branch bn_sub_256 
+
+bn_submod_256:
+7cb9 20407ccc call bn_sub_256 
+7cba 2020fcc3 branch bn_submod_256_np ,true 
+7cbb 18a0a3e0 add contw ,-32 ,rega 
+7cbc da400842 arg mem_p_256 ,regb 
+7cbd 20407cd4 call bn_bigeq_256 
+7cbe 24610000 nrtn positive 
+7cbf da400842 arg mem_p_256 ,regb 
+7cc0 18a0a3e0 add contw ,-32 ,rega 
+7cc1 1a220a00 copy rega ,contw 
+7cc2 20207ccc branch bn_sub_256 
+
+bn_submod_256_np:
+7cc3 18a0a3e0 add contw ,-32 ,rega 
+7cc4 da400842 arg mem_p_256 ,regb 
+7cc5 1a220a00 copy rega ,contw 
+7cc6 20407c9e call bn_add_256 
+7cc7 20608000 rtn true 
+7cc8 18a0a3e0 add contw ,-32 ,rega 
+7cc9 da400842 arg mem_p_256 ,regb 
+7cca 1a220a00 copy rega ,contw 
+7ccb 20207c9e branch bn_add_256 
+
+bn_sub_256:
+7ccc 18007208 force 8 ,loopcnt 
+7ccd 2020773c branch bn_sub + 1 
+
+bn_rshift_256:
+7cce 18007208 force 8 ,loopcnt 
+7ccf 1a20a21c increase 28 ,rega 
+7cd0 2020774b branch bn_rshift 
+
+bn_lshift_256:
+7cd1 18007208 force 8 ,loopcnt 
+7cd2 18002600 force 0 ,regc 
+7cd3 20207759 branch bn_lshift_0 
+
+bn_bigeq_256:
+7cd4 18007208 force 8 ,loopcnt 
+7cd5 1a20a21c increase 28 ,rega 
+7cd6 1a40a41c increase 28 ,regb 
+7cd7 20207723 branch bn_bigeq_0 
+
+bn_eq_zero_256:
+7cd8 e8c40000 ifetch 8 ,contr 
+7cd9 247a0000 nrtn blank 
+7cda 20207711 branch bn_eq_zero 
+
+bn_rshifteven_256:
+7cdb 1a226000 copy rega ,alarm 
+
+bn_rshifteven_256_1:
+7cdc 1e022200 copy alarm ,rega 
+7cdd ea208000 ifetch 1 ,rega 
+7cde 2feffe00 isolate1 0 ,pdata 
+7cdf 20608000 rtn true 
+7ce0 20407cce call bn_rshift_256 
+7ce1 ea408000 ifetch 1 ,regb 
+7ce2 2fec0000 isolate0 0 ,pdata 
+7ce3 2020fceb branch bn_rshifteven_256_0 ,true 
+7ce4 da200842 arg mem_p_256 ,rega 
+7ce5 1a420a00 copy regb ,contw 
+7ce6 20407c9e call bn_add_256 
+7ce7 ea408000 ifetch 1 ,regb 
+7ce8 9a60fe00 iadd regc ,pdata 
+7ce9 e2408000 istore 1 ,regb 
+7cea 1a40a5e0 increase -32 ,regb 
+
+bn_rshifteven_256_0:
+7ceb 1a40a220 add regb ,32 ,rega 
+7cec 18007209 force 9 ,loopcnt 
+7ced 2040774b call bn_rshift 
+7cee 20207cdc branch bn_rshifteven_256_1 
+
+ui_init:
+7cef 20403d3e call lpm_disable_exen_output 
+7cf0 20758000 rtn wake 
+7cf1 20407cf6 call ui_button_init 
+7cf2 20407d72 call ui_timer_init 
+7cf3 20207d2a branch ui_led_init 
+
+ui_dispatch:
+7cf4 20407d44 call ui_led_blink_polling 
+7cf5 20207d60 branch ui_timer_check 
+
+ui_button_init:
+7cf6 79200025 set1 mark_ext_patch ,mark 
+7cf7 44f7c03d bpatch patch3d_7 ,mem_patch3d 
+7cf8 6800c715 fetch 1 ,mem_ui_button_gpio 
+7cf9 c17f8000 rtneq ui_button_gpio_disable 
+7cfa 98000400 iforce temp 
+7cfb 204064e8 call gpio_config_output 
+7cfc 6808c715 fetcht 1 ,mem_ui_button_gpio 
+7cfd 204064fd call gpio_out_inactive 
+7cfe 20000064 nop 100 
+7cff 6808c715 fetcht 1 ,mem_ui_button_gpio 
+7d00 204064df call gpio_config_input 
+7d01 20207d02 branch ui_button_polling 
+
+ui_button_polling:
+7d02 79200025 set1 mark_ext_patch ,mark 
+7d03 44f8403e bpatch patch3e_0 ,mem_patch3e 
+7d04 6800c715 fetch 1 ,mem_ui_button_gpio 
+7d05 c17f8000 rtneq ui_button_gpio_disable 
+7d06 1fe20400 copy pdata ,temp 
+7d07 204064f5 call gpio_get_bit 
+7d08 2420fd15 nbranch ui_button_up ,true 
+
+ui_button_down:
+7d09 20407d1f call ui_button_check_long_press 
+7d0a 6801470b fetch 2 ,mem_ui_state_map 
+7d0b 79207e0c set1 ui_state_btn_down 
+7d0c 6001470b store 2 ,mem_ui_state_map 
+7d0d 6800c702 fetch 1 ,mem_ui_button_last_state 
+7d0e c1000000 rtneq ui_button_state_down 
+7d0f 70470200 jam ui_button_state_down ,mem_ui_button_last_state 
+7d10 6800c714 fetch 1 ,mem_ui_button_timeout 
+7d11 6000c701 store 1 ,mem_ui_button_timer 
+7d12 20407d26 call lpm_button_get_wake_lock 
+7d13 7009bd2c jam bt_evt_button_down ,mem_fifo_temp 
+7d14 20207d86 branch ui_ipc_send_event 
+
+ui_button_up:
+7d15 6801470b fetch 2 ,mem_ui_state_map 
+7d16 793ffe0c set0 ui_state_btn_down 
+7d17 6001470b store 2 ,mem_ui_state_map 
+7d18 6800c702 fetch 1 ,mem_ui_button_last_state 
+7d19 c1008000 rtneq ui_button_state_up 
+7d1a 70470201 jam ui_button_state_up ,mem_ui_button_last_state 
+7d1b 70470100 jam 0 ,mem_ui_button_timer 
+7d1c 20407d28 call lpm_button_clean_wake_lock 
+7d1d 7009bd2d jam bt_evt_button_up ,mem_fifo_temp 
+7d1e 20207d86 branch ui_ipc_send_event 
+
+ui_button_check_long_press:
+7d1f 6800c701 fetch 1 ,mem_ui_button_timer 
+7d20 207a0000 rtn blank 
+7d21 1fe0ffff increase -1 ,pdata 
+7d22 6000c701 store 1 ,mem_ui_button_timer 
+7d23 247a0000 nrtn blank 
+7d24 7009bd10 jam bt_evt_button_long_pressed ,mem_fifo_temp 
+7d25 20207d86 branch ui_ipc_send_event 
+
+lpm_button_get_wake_lock:
+7d26 d8e00007 arg wake_lock_button ,queue 
+7d27 20203d06 branch lpm_get_wake_lock 
+
+lpm_button_clean_wake_lock:
+7d28 d8e00007 arg wake_lock_button ,queue 
+7d29 20203d0a branch lpm_put_wake_lock 
+
+ui_led_init:
+7d2a 6800c70e fetch 1 ,mem_led_gpio 
+7d2b c17f8000 rtneq ui_button_gpio_disable 
+7d2c 98000400 iforce temp 
+7d2d 204064e8 call gpio_config_output 
+7d2e 20207d33 branch ui_led_off 
+
+ui_led_blink_stop:
+7d2f 6801470b fetch 2 ,mem_ui_state_map 
+7d30 793ffe0d set0 ui_state_led_blink 
+7d31 6001470b store 2 ,mem_ui_state_map 
+7d32 70470000 jam ui_led_stop ,mem_led_switch 
+
+ui_led_off:
+7d33 6801470b fetch 2 ,mem_ui_state_map 
+7d34 793ffe0e set0 ui_state_led_on 
+7d35 6001470b store 2 ,mem_ui_state_map 
+7d36 6808c70e fetcht 1 ,mem_led_gpio 
+7d37 202064fd branch gpio_out_inactive 
+
+ui_led_on:
+7d38 6801470b fetch 2 ,mem_ui_state_map 
+7d39 79207e0e set1 ui_state_led_on 
+7d3a 6001470b store 2 ,mem_ui_state_map 
+7d3b 70470000 jam ui_led_stop ,mem_led_switch 
+7d3c 6808c70e fetcht 1 ,mem_led_gpio 
+7d3d 202064ff branch gpio_out_active 
+
+ui_led_blink_start:
+7d3e 704713ff jam 0xff ,mem_led_blink_count 
+
+ui_led_blink_start1:
+7d3f 6801470b fetch 2 ,mem_ui_state_map 
+7d40 79207e0d set1 ui_state_led_blink 
+7d41 6001470b store 2 ,mem_ui_state_map 
+7d42 70470001 jam ui_led_start ,mem_led_switch 
+7d43 20600000 rtn 
+
+ui_led_blink_polling:
+7d44 79200025 set1 mark_ext_patch ,mark 
+7d45 44f8c03e bpatch patch3e_1 ,mem_patch3e 
+7d46 6800c713 fetch 1 ,mem_led_blink_count 
+7d47 207a0000 rtn blank 
+7d48 6800c700 fetch 1 ,mem_led_switch 
+7d49 c1000000 rtneq ui_led_stop 
+7d4a d8e00009 arg ui_led_blink ,queue 
+7d4b 20407ee2 call timer_check 
+7d4c 247a0000 nrtn blank 
+7d4d 6800c700 fetch 1 ,mem_led_switch 
+7d4e c0017d53 beq ui_led_dark_time ,in_ui_led_blink_polling_dark 
+7d4f 20407d38 call ui_led_on 
+7d50 70470002 jam ui_led_dark_time ,mem_led_switch 
+7d51 68014711 fetch 2 ,mem_led_light_time 
+7d52 20207d5a branch in_ui_led_blink_timer_start 
+
+in_ui_led_blink_polling_dark:
+7d53 20407d33 call ui_led_off 
+7d54 6800c713 fetch 1 ,mem_led_blink_count 
+7d55 c07ffd58 beq led_flash_infinite ,in_ui_led_infinite 
+7d56 1fe0ffff increase -1 ,pdata 
+7d57 6000c713 store 1 ,mem_led_blink_count 
+
+in_ui_led_infinite:
+7d58 70470003 jam ui_led_light_time ,mem_led_switch 
+7d59 6801470f fetch 2 ,mem_led_dark_time 
+
+in_ui_led_blink_timer_start:
+7d5a d8e00009 arg ui_led_blink ,queue 
+7d5b 20207ed4 branch timer_init 
+
+ui_timer_timeout:
+7d5c 58001000 setarg 0x1000 
+7d5d 1ff07e00 lshift16 pdata ,pdata 
+7d5e 9a40a400 iadd regb ,regb 
+7d5f 20600000 rtn 
+
+ui_timer_check:
+7d60 79200025 set1 mark_ext_patch ,mark 
+7d61 44f9403e bpatch patch3e_2 ,mem_patch3e 
+7d62 da200000 arg 0 ,rega 
+7d63 680a4703 fetcht 4 ,mem_ui_timer_last_btclk 
+7d64 1c422400 copy clkn_bt ,regb 
+7d65 1a427e00 copy regb ,pdata 
+7d66 98467c00 isub temp ,null 
+7d67 24417d5c ncall ui_timer_timeout ,positive 
+
+ui_timer_check_loop:
+7d68 1a427e00 copy regb ,pdata 
+7d69 184084a0 increase 160 ,temp 
+7d6a 184084a0 increase 160 ,temp 
+7d6b 98467c00 isub temp ,null 
+7d6c 24217d75 nbranch ui_timer_check_end ,positive 
+7d6d 1a20a201 increase 1 ,rega 
+7d6e 1a217e0f and rega ,0x0f ,pdata 
+7d6f 243a7d68 nbranch ui_timer_check_loop ,blank 
+7d70 da200000 arg 0 ,rega 
+7d71 20407d7d call ui_timer_check_send_evt 
+
+ui_timer_init:
+7d72 1c427e00 copy clkn_bt ,pdata 
+7d73 60024703 store 4 ,mem_ui_timer_last_btclk 
+7d74 20600000 rtn 
+
+ui_timer_check_end:
+7d75 79200025 set1 mark_ext_patch ,mark 
+7d76 44f9c03e bpatch patch3e_3 ,mem_patch3e 
+7d77 1a227e00 copy rega ,pdata 
+7d78 207a0000 rtn blank 
+7d79 18408560 increase -160 ,temp 
+7d7a 18408560 increase -160 ,temp 
+7d7b 793f841c set0 28 ,temp 
+7d7c 600a4703 storet 4 ,mem_ui_timer_last_btclk 
+
+ui_timer_check_send_evt:
+7d7d 1fe0fe50 increase bt_evt_timer_init ,pdata 
+7d7e 600089bd store 1 ,mem_fifo_temp 
+7d7f 20207d86 branch ui_ipc_send_event 
+
+ui_ipc_get_lock:
+7d80 7046ee01 jam 1 ,mem_ipc_lock_bt 
+
+ui_ipc_get_lock_wait:
+7d81 6800c6ef fetch 1 ,mem_ipc_lock_c51 
+7d82 243a7d81 nbranch ui_ipc_get_lock_wait ,blank 
+7d83 20600000 rtn 
+
+ui_ipc_put_lock:
+7d84 7046ee00 jam 0 ,mem_ipc_lock_bt 
+7d85 20600000 rtn 
+
+ui_ipc_send_event:
+7d86 79200025 set1 mark_ext_patch ,mark 
+7d87 44fa403e bpatch patch3e_4 ,mem_patch3e 
+7d88 20407d80 call ui_ipc_get_lock 
+7d89 1a227e00 copy rega ,pdata 
+7d8a 600209b5 store 4 ,mem_ipc_rega_temp 
+7d8b da2046f0 arg mem_ipc_fifo_bt2c51 ,rega 
+7d8c 20407f88 call fifo_in 
+7d8d 680209b5 fetch 4 ,mem_ipc_rega_temp 
+7d8e 1fe22200 copy pdata ,rega 
+7d8f 20207d84 branch ui_ipc_put_lock 
+
+ui_ipc_send_cmd:
+7d90 79200025 set1 mark_ext_patch ,mark 
+7d91 44fac03e bpatch patch3e_5 ,mem_patch3e 
+7d92 20407d80 call ui_ipc_get_lock 
+7d93 1a227e00 copy rega ,pdata 
+7d94 600209b5 store 4 ,mem_ipc_rega_temp 
+7d95 da2046f8 arg mem_ipc_fifo_c512bt ,rega 
+7d96 20407f88 call fifo_in 
+7d97 680209b5 fetch 4 ,mem_ipc_rega_temp 
+7d98 1fe22200 copy pdata ,rega 
+7d99 20207d84 branch ui_ipc_put_lock 
+
+ui_ipc_clean_all_fifo:
+7d9a 58000000 setarg 0 
+7d9b 600446f8 store util_fifo_len ,mem_ipc_fifo_c512bt 
+7d9c 600446f0 store util_fifo_len ,mem_ipc_fifo_bt2c51 
+7d9d 20600000 rtn 
+
+check_51cmd:
+7d9e 79200025 set1 mark_ext_patch ,mark 
+7d9f 44fb403e bpatch patch3e_6 ,mem_patch3e 
+7da0 6800c271 fetch 1 ,mem_hci_cmd 
+7da1 247a0000 nrtn blank 
+7da2 da2046f8 arg mem_ipc_fifo_c512bt ,rega 
+7da3 20407fa2 call fifo_is_empty 
+7da4 207a0000 rtn blank 
+7da5 7009b400 jam ipc_continue_process ,mem_ipc_skip_continue_proc 
+7da6 20407daa call check_51cmd_once 
+7da7 680089b4 fetch 1 ,mem_ipc_skip_continue_proc 
+7da8 203a7d9e branch check_51cmd ,blank 
+7da9 20600000 rtn 
+
+check_51cmd_once:
+7daa 79200025 set1 mark_ext_patch ,mark 
+7dab 44fbc03e bpatch patch3e_7 ,mem_patch3e 
+7dac 20407d80 call ui_ipc_get_lock 
+7dad da2046f8 arg mem_ipc_fifo_c512bt ,rega 
+7dae 20407f95 call fifo_out 
+7daf 1fe20400 copy pdata ,temp 
+7db0 20407d84 call ui_ipc_put_lock 
+7db1 18427e00 copy temp ,pdata 
+7db2 207a0000 rtn blank 
+7db3 c000fdf0 beq bt_cmd_start_discovery ,check_51cmd_start_discovery 
+7db4 c0017df5 beq bt_cmd_stop_discovery ,check_51cmd_stop_discovery 
+7db5 c001fdfb beq bt_cmd_reconnect ,check_51cmd_reconnect 
+7db6 c003fe00 beq bt_cmd_enter_sniff_subrating ,check_51cmd_enter_sniff_subrating 
+7db7 c0047e01 beq bt_cmd_exit_sniff_subrating ,check_51cmd_exit_sniff_subrating 
+7db8 c004fe02 beq bt_cmd_sniff_test ,check_51cmd_sniff_test 
+7db9 c005fe05 beq bt_cmd_start_inquiry ,check_51cmd_inq 
+7dba c0067e06 beq bt_cmd_stop_inquiry ,check_51cmd_stop_inq 
+7dbb c006fe07 beq bt_cmd_start_adv ,check_51cmd_adv 
+7dbc c0077e0d beq bt_cmd_stop_adv ,check_51cmd_stop_adv 
+7dbd c007fe12 beq bt_cmd_start_direct_adv ,check_51cmd_direct_adv 
+7dbe c0087e18 beq bt_cmd_stop_direct_adv ,check_51cmd_stop_direct_adv 
+7dbf c00afd3e beq bt_cmd_led_blink ,ui_led_blink_start 
+7dc0 c00a7d38 beq bt_cmd_led_on ,ui_led_on 
+7dc1 c009fd2f beq bt_cmd_led_off ,ui_led_blink_stop 
+7dc2 c00b7e21 beq bt_cmd_le_start_conn ,check_51cmd_le_start_con 
+7dc3 c00bfe24 beq bt_cmd_le_start_scan ,check_51cmd_start_scan 
+7dc4 c00c7e26 beq bt_cmd_le_stop_scan ,check_51cmd_stop_scan 
+7dc5 c00cfe2b beq bt_cmd_enter_hibernate ,check_51cmd_hibernate 
+7dc6 c00dfe29 beq bt_cmd_le_smp_security_request ,check_51cmd_le_smp_sec_req 
+7dc7 c00e7e3b beq bt_cmd_le_start_write ,check_51cmd_le_start_write 
+7dc8 c00f7e3d beq bt_cmd_bb_reconn_cancel ,check_51cmd_bb_reconn_cancel 
+7dc9 600089bd store 1 ,mem_fifo_temp 
+7dca 79200025 set1 mark_ext_patch ,mark 
+7dcb 44fc403f bpatch patch3f_0 ,mem_patch3f 
+7dcc 204058c5 call lmo_fifo_check 
+7dcd 243a7de5 nbranch check_51cmd_restore ,blank 
+
+check_51cmd_once_continue:
+7dce 680089bd fetch 1 ,mem_fifo_temp 
+7dcf c584fde0 bmark0 mark_context ,check_51cmd_check_idle 
+7dd0 c002bfae beq bt_cmd_enter_sniff ,cmd_in_sniff 
+7dd1 c0033fbd beq bt_cmd_exit_sniff ,cmd_exit_sniff 
+7dd2 c0057e03 beq bt_cmd_set_pin_code ,check_51cmd_pincode 
+7dd3 c0027dfd beq bt_cmd_disconnect ,check_51cmd_disconnect 
+7dd4 c008fe1d beq bt_cmd_le_disconnect ,check_51cmd_le_disconnect 
+7dd5 c00efde7 beq bt_cmd_role_switch ,check_51cmd_role_switch 
+7dd6 c00fe42e beq bt_cmd_store_reconn_info_le ,eeprom_store_le_reconn_info 
+7dd7 c0106432 beq bt_cmd_store_reconn_info_bt ,eeprom_store_bd_reconn_info 
+7dd8 c0097dde beq bt_cmd_le_update_conn ,check_51cmd_ble_update_connect_param 
+7dd9 c010fddb beq bt_cmd_dhkey_not_accept ,check_51cmd_dhkey_not_accept 
+7dda 20600000 rtn 
+
+check_51cmd_dhkey_not_accept:
+7ddb 20405903 call tid_set_reply 
+7ddc 70007d41 jam lmp_dhkey_check ,mem_lmi_opcode2 
+7ddd 202055b4 branch parse_lmp_dhkey_check_reject 
+
+check_51cmd_ble_update_connect_param:
+7dde 7009bd2f jam xt_ll_connection_param_req ,mem_fifo_temp 
+7ddf 20204bd6 branch le_xtype_fifo_in 
+
+check_51cmd_check_idle:
+7de0 600089bd store 1 ,mem_fifo_temp 
+7de1 20403292 call context_check_idle 
+7de2 2022fde5 branch check_51cmd_restore ,zero 
+7de3 2040329a call context_search_plap 
+7de4 24628000 nrtn zero 
+
+check_51cmd_restore:
+7de5 7009b401 jam ipc_skip_continue_process ,mem_ipc_skip_continue_proc 
+7de6 20207d90 branch ui_ipc_send_cmd 
+
+check_51cmd_role_switch:
+7de7 70007c34 jam lmp_slot_offset ,mem_lmo_opcode2 
+7de8 79200003 set1 mark_switch_initiated ,mark 
+7de9 24748000 nrtn master 
+7dea 7045f400 jam switch_flag_init ,mem_switch_flag 
+7deb 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+7dec 6800816c fetch 1 ,mem_connection_options 
+7ded 793ffe02 set0 connection_switch ,pdata 
+7dee 6000816c store 1 ,mem_connection_options 
+7def 20600000 rtn 
+
+check_51cmd_start_discovery:
+7df0 6801470b fetch 2 ,mem_ui_state_map 
+7df1 79207e06 set1 ui_state_bt_discovery 
+7df2 6001470b store 2 ,mem_ui_state_map 
+7df3 70413303 jam 3 ,mem_scan_mode 
+7df4 20600000 rtn 
+
+check_51cmd_stop_discovery:
+7df5 70470900 jam 0 ,mem_hid_handshake_timer_count 
+7df6 70413300 jam 0 ,mem_scan_mode 
+7df7 6801470b fetch 2 ,mem_ui_state_map 
+7df8 793ffe06 set0 ui_state_bt_discovery 
+7df9 6001470b store 2 ,mem_ui_state_map 
+7dfa 20600000 rtn 
+
+check_51cmd_reconnect:
+7dfb 70427105 jam hci_cmd_create_conn ,mem_hci_cmd 
+7dfc 20600000 rtn 
+
+check_51cmd_disconnect:
+7dfd 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+7dfe 7003f013 jam other_end_terminated ,mem_disconn_reason_send 
+7dff 20600000 rtn 
+
+check_51cmd_enter_sniff_subrating:
+7e00 20600000 rtn 
+
+check_51cmd_exit_sniff_subrating:
+7e01 20600000 rtn 
+
+check_51cmd_sniff_test:
+7e02 20600000 rtn 
+
+check_51cmd_pincode:
+7e03 7003fa02 jam pincode_state_pincode_ready ,mem_pincode_state 
+7e04 20203fa1 branch cmd_pair 
+
+check_51cmd_inq:
+7e05 20600000 rtn 
+
+check_51cmd_stop_inq:
+7e06 20600000 rtn 
+
+check_51cmd_adv:
+7e07 7043ff01 jam on ,mem_le_adv_enable 
+7e08 70452000 jam adv_ind ,mem_le_adv_type 
+7e09 6801470b fetch 2 ,mem_ui_state_map 
+7e0a 79207e0b set1 ui_state_ble_adv ,pdata 
+7e0b 6001470b store 2 ,mem_ui_state_map 
+7e0c 20600000 rtn 
+
+check_51cmd_stop_adv:
+7e0d 6801470b fetch 2 ,mem_ui_state_map 
+7e0e 793ffe0b set0 ui_state_ble_adv ,pdata 
+7e0f 6001470b store 2 ,mem_ui_state_map 
+7e10 7043ff00 jam off ,mem_le_adv_enable 
+7e11 20600000 rtn 
+
+check_51cmd_direct_adv:
+7e12 7043ff01 jam on ,mem_le_adv_enable 
+7e13 70452001 jam adv_direct_ind ,mem_le_adv_type 
+7e14 6801470b fetch 2 ,mem_ui_state_map 
+7e15 79207e0b set1 ui_state_ble_adv ,pdata 
+7e16 6001470b store 2 ,mem_ui_state_map 
+7e17 20600000 rtn 
+
+check_51cmd_stop_direct_adv:
+7e18 6801470b fetch 2 ,mem_ui_state_map 
+7e19 793ffe0b set0 ui_state_ble_adv ,pdata 
+7e1a 6001470b store 2 ,mem_ui_state_map 
+7e1b 7043ff00 jam off ,mem_le_adv_enable 
+7e1c 20600000 rtn 
+
+check_51cmd_le_disconnect:
+7e1d 5800000a setarg 10 
+7e1e 60010390 store 2 ,mem_le_superto 
+7e1f 7009bd22 jam xt_ll_terminate_ind ,mem_fifo_temp 
+7e20 20204bd6 branch le_xtype_fifo_in 
+
+check_51cmd_le_start_con:
+7e21 7043f901 jam on ,mem_le_scan_enable 
+7e22 7042711b jam hci_cmd_le_create_conn ,mem_hci_cmd 
+7e23 20600000 rtn 
+
+check_51cmd_start_scan:
+7e24 7043f901 jam on ,mem_le_scan_enable 
+7e25 20600000 rtn 
+
+check_51cmd_stop_scan:
+7e26 7043f900 jam off ,mem_le_scan_enable 
+7e27 70427100 jam 0 ,mem_hci_cmd 
+7e28 20600000 rtn 
+
+check_51cmd_le_smp_sec_req:
+7e29 7009bd4b jam xt_smp_security_request ,mem_fifo_temp 
+7e2a 20204bd6 branch le_xtype_fifo_in 
+
+check_51cmd_hibernate:
+7e2b 79200025 set1 mark_ext_patch ,mark 
+7e2c 44fcc03f bpatch patch3f_1 ,mem_patch3f 
+7e2d 6801428c fetch 2 ,mem_cb_before_hibernate 
+7e2e 20407f69 call callback_func 
+7e2f 78347c00 enable user 
+7e30 68120138 hfetch 4 ,0x8138 
+7e31 79347e1a setflag user ,26 ,pdata 
+7e32 6012004c hstore 4 ,core_lpm_reg 
+7e33 20403cf4 call lpm_write_ctrl 
+7e34 6800c715 fetch 1 ,mem_ui_button_gpio 
+7e35 c07ffe38 beq ui_button_gpio_disable ,check_51cmd_hibernate_btn_disabled 
+7e36 1fe20400 copy pdata ,temp 
+7e37 204064df call gpio_config_input 
+
+check_51cmd_hibernate_btn_disabled:
+7e38 20407d33 call ui_led_off 
+7e39 20407d9a call ui_ipc_clean_all_fifo 
+7e3a 20203c04 branch lpm_hibernate 
+
+check_51cmd_le_start_write:
+7e3b 70459501 jam 1 ,mem_le_switch_send_data 
+7e3c 20600000 rtn 
+
+check_51cmd_bb_reconn_cancel:
+7e3d 18000e04 force page_length_timer ,queue 
+7e3e 20207ed3 branch timer_stop 
+
+ui_check_paring_button:
+7e3f 6800c70b fetch 1 ,mem_ui_state_map 
+7e40 c4060000 rtnbit0 ui_state_btn_down 
+7e41 c4038000 rtnbit0 ui_state_bt_reconnect 
+7e42 20207e3d branch check_51cmd_bb_reconn_cancel 
+
+right_shift_n:
+7e43 1f267c00 sub loopcnt ,0 ,null 
+7e44 20628000 rtn zero 
+
+right_shift_n_loop:
+7e45 1fe37e00 rshift pdata ,pdata 
+7e46 c2007e45 loop right_shift_n_loop 
+7e47 20600000 rtn 
+
+push_stack:
+7e48 18a27e00 deposit contw 
+7e49 600109df store 2 ,mem_contw 
+7e4a 600c09c6 storet 8 ,mem_temp 
+7e4b 19627e00 deposit timeup 
+7e4c 600209ce store 4 ,mem_timeup 
+7e4d 1a227e00 deposit rega 
+7e4e 600209d2 store 4 ,mem_rega 
+7e4f 1a427e00 deposit regb 
+7e50 600209d6 store 4 ,mem_regb 
+7e51 1a627e00 deposit regc 
+7e52 600189da store 3 ,mem_regc 
+7e53 18c27e00 deposit contr 
+7e54 600109dd store 2 ,mem_contr 
+7e55 20600000 rtn 
+
+pop_stack:
+7e56 680c09c6 fetcht 8 ,mem_temp 
+7e57 680209ce fetch 4 ,mem_timeup 
+7e58 98001600 iforce timeup 
+7e59 680209d2 fetch 4 ,mem_rega 
+7e5a 98002200 iforce rega 
+7e5b 680209d6 fetch 4 ,mem_regb 
+7e5c 98002400 iforce regb 
+7e5d 680189da fetch 3 ,mem_regc 
+7e5e 98002600 iforce regc 
+7e5f 680109df fetch 2 ,mem_contw 
+7e60 98000a00 iforce contw 
+7e61 680109dd fetch 2 ,mem_contr 
+7e62 98000c00 iforce contr 
+7e63 20600000 rtn 
+
+get_contw:
+7e64 680109df fetch 2 ,mem_contw 
+7e65 1fe20a00 copy pdata ,contw 
+7e66 20600000 rtn 
+
+get_contr:
+7e67 680109dd fetch 2 ,mem_contr 
+7e68 1fe20c00 copy pdata ,contr 
+7e69 20600000 rtn 
+
+store_contw:
+7e6a 18a27e00 copy contw ,pdata 
+7e6b 600109df store 2 ,mem_contw 
+7e6c 20600000 rtn 
+
+store_contr:
+7e6d 18c27e00 copy contr ,pdata 
+7e6e 600109dd store 2 ,mem_contr 
+7e6f 20600000 rtn 
+
+save_cont_pointers:
+7e70 18a27e00 copy contw ,pdata 
+7e71 600109bb store 2 ,mem_hold_contw 
+7e72 18c27e00 copy contr ,pdata 
+7e73 600109b9 store 2 ,mem_hold_contr 
+7e74 20600000 rtn 
+
+load_cont_pointers:
+7e75 680109bb fetch 2 ,mem_hold_contw 
+7e76 1fe20a00 copy pdata ,contw 
+7e77 680109b9 fetch 2 ,mem_hold_contr 
+7e78 1fe20c00 copy pdata ,contr 
+7e79 20600000 rtn 
+
+memcpy96:
+7e7a 20407e85 call memcpy32 
+
+memcpy64:
+7e7b 20407e85 call memcpy32 
+7e7c 20207e85 branch memcpy32 
+
+memcpy12:
+7e7d 20407e81 call memcpy8 
+
+memcpy4:
+7e7e e8c20000 ifetch 4 ,contr 
+7e7f e0a20000 istore 4 ,contw 
+7e80 20600000 rtn 
+
+memcpy8:
+7e81 e8c40000 ifetch 8 ,contr 
+7e82 e0a40000 istore 8 ,contw 
+7e83 20600000 rtn 
+
+memcpy48:
+7e84 20407e87 call memcpy16 
+
+memcpy32:
+7e85 20407e81 call memcpy8 
+
+memcpy24:
+7e86 20407e81 call memcpy8 
+
+memcpy16:
+7e87 20407e81 call memcpy8 
+7e88 20207e81 branch memcpy8 
+
+delay_10ms:
+7e89 1c427e00 copy clkn_bt ,pdata 
+7e8a 1fe0fe10 increase 16 ,pdata 
+7e8b 1fe0fe10 increase 16 ,pdata 
+
+delay_ms_wait:
+7e8c 1c420400 copy clkn_bt ,temp 
+7e8d 98467c00 isub temp ,null 
+7e8e 20217e8c branch delay_ms_wait ,positive 
+7e8f 20600000 rtn 
+
+bn_zero:
+7e90 18007203 force 3 ,loopcnt 
+
+memset0:
+7e91 18007e00 force 0 ,pdata 
+
+memset8:
+7e92 e0a40000 istore 8 ,contw 
+7e93 c2007e92 loop memset8 
+7e94 20600000 rtn 
+
+memset0_8:
+7e95 18007e00 force 0 ,pdata 
+7e96 e0a40000 istore 8 ,contw 
+7e97 20600000 rtn 
+
+memset0_4:
+7e98 18007e00 force 0 ,pdata 
+7e99 e0a20000 istore 4 ,contw 
+7e9a 20600000 rtn 
+
+clear_mem_256:
+7e9b 18007204 force 4 ,loopcnt 
+7e9c 20207e91 branch memset0 
+
+clear_mem_512:
+7e9d 18007208 force 8 ,loopcnt 
+7e9e 20207e91 branch memset0 
+
+clear_mem:
+7e9f 1f227e00 deposit loopcnt 
+7ea0 207a0000 rtn blank 
+7ea1 58000000 setarg 0 
+
+clear_mem_loop:
+7ea2 e0a08000 istore 1 ,contw 
+7ea3 c2007ea2 loop clear_mem_loop 
+7ea4 20600000 rtn 
+
+clear_temp_block:
+7ea5 df200020 arg 32 ,loopcnt 
+7ea6 d8a009e1 arg mem_temp_block0 ,contw 
+7ea7 20207e9f branch clear_mem 
+
+xor_loop:
+7ea8 ea620000 ifetch 4 ,regc 
+7ea9 ea2a0000 ifetcht 4 ,rega 
+7eaa 9842fe00 ixor temp ,pdata 
+7eab e0a20000 istore 4 ,contw 
+7eac 1a20a204 increase 4 ,rega 
+7ead 1a60a604 increase 4 ,regc 
+7eae c2007ea8 loop xor_loop 
+7eaf 20600000 rtn 
+
+inverse_data:
+7eb0 79200025 set1 mark_ext_patch ,mark 
+7eb1 44fd403f bpatch patch3f_2 ,mem_patch3f 
+7eb2 1f227e00 copy loopcnt ,pdata 
+7eb3 1fe67c01 sub pdata ,1 ,null 
+7eb4 20610000 rtn positive 
+7eb5 9a20a400 iadd rega ,regb 
+7eb6 1a40a5ff increase -1 ,regb 
+7eb7 1f237200 rshift loopcnt ,loopcnt 
+
+inverse_loop:
+7eb8 ea288000 ifetcht 1 ,rega 
+7eb9 ea408000 ifetch 1 ,regb 
+7eba e2208000 istore 1 ,rega 
+7ebb e2488000 istoret 1 ,regb 
+7ebc 1a40a5ff increase -1 ,regb 
+7ebd 1a20a201 increase 1 ,rega 
+7ebe c2007eb8 loop inverse_loop 
+7ebf 20600000 rtn 
+
+memcpy_fast:
+7ec0 1f227e00 deposit loopcnt 
+7ec1 207a0000 rtn blank 
+
+memcpy_fast_loop:
+7ec2 1f20f3f8 increase -8 ,loopcnt 
+7ec3 20417e81 call memcpy8 ,positive 
+7ec4 20628000 rtn zero 
+7ec5 20217ec2 branch memcpy_fast_loop ,positive 
+7ec6 1f20f208 increase 8 ,loopcnt 
+
+memcpy_fast_loop_four:
+7ec7 1f20f3fc increase -4 ,loopcnt 
+7ec8 20417e7e call memcpy4 ,positive 
+7ec9 20628000 rtn zero 
+7eca 20217ec7 branch memcpy_fast_loop_four ,positive 
+7ecb 1f20f204 increase 4 ,loopcnt 
+7ecc 20207ecd branch memcpy 
+
+memcpy:
+7ecd 1f227e00 deposit loopcnt 
+7ece 207a0000 rtn blank 
+
+memcpy_loop:
+7ecf e8c08000 ifetch 1 ,contr 
+7ed0 e0a08000 istore 1 ,contw 
+7ed1 c2007ecf loop memcpy_loop 
+7ed2 20600000 rtn 
+
+timer_stop:
+7ed3 58000000 setarg 0 
+
+timer_init:
+7ed4 1c430400 rshift clkn_bt ,temp 
+7ed5 600a4134 storet 4 ,mem_last_clkn 
+7ed6 d8a0423d arg mem_timers ,contw 
+7ed7 98000400 iforce temp 
+7ed8 18e3fe00 lshift queue ,pdata 
+7ed9 98a08a00 iadd contw ,contw 
+7eda e0a90000 istoret 2 ,contw 
+7edb 79200025 set1 mark_ext_patch ,mark 
+7edc 44fdc03f bpatch patch3f_3 ,mem_patch3f 
+7edd 20600000 rtn 
+
+timer_check_timeout:
+7ede d9600800 arg 0x800 ,timeup 
+7edf 19701600 lshift16 timeup ,timeup 
+7ee0 9960fe00 iadd timeup ,pdata 
+7ee1 20600000 rtn 
+
+timer_check:
+7ee2 79200025 set1 mark_ext_patch ,mark 
+7ee3 44fe403f bpatch patch3f_4 ,mem_patch3f 
+7ee4 680a4134 fetcht 4 ,mem_last_clkn 
+7ee5 1c437e00 rshift clkn_bt ,pdata 
+7ee6 60024134 store 4 ,mem_last_clkn 
+7ee7 98467c00 isub temp ,null 
+7ee8 24417ede ncall timer_check_timeout ,positive 
+7ee9 98461600 isub temp ,timeup 
+7eea 19620400 copy timeup ,temp 
+7eeb d8c0423d arg mem_timers ,contr 
+7eec 18c20a00 copy contr ,contw 
+7eed df200010 arg 16 ,loopcnt 
+
+timer_loop:
+7eee e8c10000 ifetch 2 ,contr 
+7eef 98467e00 isub temp ,pdata 
+7ef0 20217ef2 branch timer_counting ,positive 
+7ef1 18007e00 force 0 ,pdata 
+
+timer_counting:
+7ef2 e0a10000 istore 2 ,contw 
+7ef3 c2007eee loop timer_loop 
+7ef4 d8c0423d arg mem_timers ,contr 
+7ef5 18e3fe00 lshift queue ,pdata 
+7ef6 98c08c00 iadd contr ,contr 
+7ef7 e8c10000 ifetch 2 ,contr 
+7ef8 20600000 rtn 
+
+clk_add:
+7ef9 98408400 iadd temp ,temp 
+7efa 18427200 copy temp ,loopcnt 
+7efb 58000ea6 setarg 3750 
+7efc 9f267e00 isub loopcnt ,pdata 
+7efd 20610000 rtn positive 
+7efe 1fe67e00 sub pdata ,0 ,pdata 
+7eff 18510400 rshift16 temp ,temp 
+7f00 18408401 increase 1 ,temp 
+7f01 18500400 lshift16 temp ,temp 
+7f02 98418400 ior temp ,temp 
+7f03 20600000 rtn 
+
+clk_diff_rt:
+7f04 20407f06 call clk_diff 
+7f05 20207f10 branch clk2rt 
+
+clk_diff:
+7f06 78547c00 disable user 
+7f07 98467e00 isub temp ,pdata 
+7f08 20217f0b branch clk_diff_pos ,positive 
+7f09 78347c00 enable user 
+7f0a 1fe67e00 sub pdata ,0 ,pdata 
+
+clk_diff_pos:
+7f0b c4078000 rtnbit0 15 
+7f0c d85f0ea6 arg -61786 ,temp 
+7f0d 9840fe00 iadd temp ,pdata 
+7f0e 793ffe40 set0 64 ,pdata 
+7f0f 20600000 rtn 
+
+clk2rt:
+7f10 98000c00 iforce contr 
+7f11 1ff17e00 rshift16 pdata ,pdata 
+7f12 d8400ea6 arg 3750 ,temp 
+7f13 984ffe00 imul32 temp ,pdata 
+7f14 98c0fe00 iadd contr ,pdata 
+7f15 20600000 rtn 
+
+clk2lpo:
+7f16 1fed7e00 lshift8 pdata ,pdata 
+7f17 1ff27e00 lshift4 pdata ,pdata 
+7f18 6809c20f fetcht 3 ,mem_clks_per_lpo 
+7f19 9846fc00 idiv temp 
+7f1a 20407f53 call wait_div_end 
+7f1b 18078400 quotient temp 
+7f1c 20600000 rtn 
+
+clk2bt:
+7f1d d8400ea6 arg 3750 ,temp 
+7f1e 9846fc00 idiv temp 
+7f1f 20407f53 call wait_div_end 
+7f20 1807fe00 quotient pdata 
+7f21 1ff07e00 lshift16 pdata ,pdata 
+7f22 18070400 remainder temp 
+7f23 98418400 ior temp ,temp 
+7f24 20600000 rtn 
+
+string2dec_from_uart:
+7f25 d8400000 arg 0 ,temp 
+
+string2dec_from_uart_done:
+7f26 18422600 copy temp ,regc 
+7f27 e8608000 ifetch 1 ,contru 
+7f28 20407f31 call uchar2dialog 
+7f29 1a620400 copy regc ,temp 
+7f2a 20407f62 call swap 
+7f2b da40000a arg 10 ,regb 
+7f2c 9a4ffe00 imul32 regb ,pdata 
+7f2d 9840fe00 iadd temp ,pdata 
+7f2e 1fe20400 copy pdata ,temp 
+7f2f c2007f26 loop string2dec_from_uart_done 
+7f30 20600000 rtn 
+
+uchar2dialog:
+7f31 d840003a arg 0x3a ,temp 
+7f32 98467c00 isub temp ,null 
+7f33 24217f3a nbranch uchar2dialog_number ,positive 
+7f34 d8400061 arg 0x61 ,temp 
+7f35 98467c00 isub temp ,null 
+7f36 20217f3d branch uchar2dialog_a2f ,positive 
+7f37 d8400037 arg 0x37 ,temp 
+7f38 98467e00 isub temp ,pdata 
+7f39 20600000 rtn 
+
+uchar2dialog_number:
+7f3a d8400030 arg 0x30 ,temp 
+7f3b 98467e00 isub temp ,pdata 
+7f3c 20600000 rtn 
+
+uchar2dialog_a2f:
+7f3d d8400057 arg 0x57 ,temp 
+7f3e 98467e00 isub temp ,pdata 
+7f3f 20600000 rtn 
+
+pn9:
+7f40 18426000 copy temp ,alarm 
+7f41 580001ff setarg 0x1ff 
+7f42 18002400 force 0 ,regb 
+
+pn9_loop:
+7f43 1fe92200 rshift3 pdata ,rega 
+7f44 1a232200 rshift rega ,rega 
+7f45 9a22a200 ixor rega ,rega 
+7f46 2a2ffe00 isolate1 0 ,rega 
+7f47 7920fe09 setflag true ,9 ,pdata 
+7f48 18430400 rshift temp ,temp 
+7f49 2feffe00 isolate1 0 ,pdata 
+7f4a 79208407 setflag true ,7 ,temp 
+7f4b 1fe37e00 rshift pdata ,pdata 
+7f4c 1a40a401 increase 1 ,regb 
+7f4d 2a400e00 compare 0 ,regb ,0x7 
+7f4e 2420ff43 nbranch pn9_loop ,true 
+7f4f e0a88000 istoret 1 ,contw 
+7f50 c2007f43 loop pn9_loop 
+7f51 1e020400 copy alarm ,temp 
+7f52 20600000 rtn 
+
+wait_div_end:
+7f53 207a8000 rtn modone 
+7f54 20207f53 branch wait_div_end 
+
+string_compare:
+7f55 ea208000 ifetch 1 ,rega 
+7f56 ea488000 ifetcht 1 ,regb 
+7f57 98467c00 isub temp ,null 
+7f58 24628000 nrtn zero 
+7f59 1a20a201 increase 1 ,rega 
+7f5a 1a40a401 increase 1 ,regb 
+7f5b c2007f55 loop string_compare 
+7f5c 18007c00 force 0 ,null 
+7f5d 20600000 rtn 
+
+ceiling:
+7f5e 98467c00 isub temp ,null 
+7f5f 24610000 nrtn positive 
+7f60 18427e00 deposit temp 
+7f61 20600000 rtn 
+
+swap:
+7f62 9840fe00 iadd temp ,pdata 
+7f63 98460400 isub temp ,temp 
+7f64 98467e00 isub temp ,pdata 
+7f65 20600000 rtn 
+
+clean_mem:
+7f66 df200200 arg 0x200 ,loopcnt 
+7f67 d8a04000 arg 0x4000 ,contw 
+7f68 20207e91 branch memset0 
+
+callback_func:
+7f69 207a0000 rtn blank 
+7f6a 1fe27a00 copy pdata ,pc 
+
+wait_uarttx:
+7f6b 6811010e hfetch 2 ,core_uart_txitems 
+7f6c 243a7f6b nbranch wait_uarttx ,blank 
+7f6d 20600000 rtn 
+
+get_uart_rrptr:
+7f6e 68110058 hfetch 2 ,core_uart_rrptr 
+7f6f 1fe20600 copy pdata ,contru 
+7f70 20600000 rtn 
+
+ice_break:
+7f71 70820301 hjam 0x1 ,core_ice_ctrl 
+7f72 20600000 rtn 
+
+ice_setbp:
+7f73 60110205 hstore 2 ,core_ice_break0 
+7f74 68108203 hfetch 1 ,core_ice_ctrl 
+7f75 79207e04 set1 4 ,pdata 
+7f76 60108203 hstore 1 ,core_ice_ctrl 
+7f77 20600000 rtn 
+
+ice_setbp2:
+7f78 60110207 hstore 2 ,core_ice_break1 
+7f79 68108203 hfetch 1 ,core_ice_ctrl 
+7f7a 79207e06 set1 6 ,pdata 
+7f7b 60108203 hstore 1 ,core_ice_ctrl 
+7f7c 20600000 rtn 
+
+ice_set_write_bp:
+7f7d 60110205 hstore 2 ,core_ice_break0 
+7f7e 70820330 hjam 0x30 ,core_ice_ctrl 
+7f7f 20600000 rtn 
+
+test_enable_white:
+7f80 68108043 hfetch 1 ,core_config 
+7f81 793ffe04 set0 whiteoff_bit ,pdata 
+7f82 60108043 hstore 1 ,core_config 
+7f83 20600000 rtn 
+
+check_uart_tx_buff:
+7f84 6811010e hfetch 2 ,core_uart_txitems 
+7f85 d8400200 arg uart_air_control_threshold ,temp 
+
+pdata_sub_temp:
+7f86 98467c00 isub temp ,null 
+7f87 20600000 rtn 
+
+fifo_in:
+7f88 79200025 set1 mark_ext_patch ,mark 
+7f89 44fec03f bpatch patch3f_5 ,mem_patch3f 
+7f8a ea2c0000 ifetcht util_fifo_len ,rega 
+7f8b 18417eff and temp ,0xff ,pdata 
+7f8c 243a7f8f nbranch fifo_in_push ,blank 
+7f8d 184cfe00 rshift8 temp ,pdata 
+7f8e e2240000 istore util_fifo_len ,rega 
+
+fifo_in_push:
+7f8f 1a20a207 increase util_fifo_len + util_fifo_offset ,rega 
+7f90 ea208000 ifetch 1 ,rega 
+7f91 243a3b31 nbranch assert ,blank 
+7f92 680089bd fetch 1 ,mem_fifo_temp 
+7f93 e2208000 istore 1 ,rega 
+7f94 20600000 rtn 
+
+fifo_out:
+7f95 79200025 set1 mark_ext_patch ,mark 
+7f96 44ff403f bpatch patch3f_6 ,mem_patch3f 
+7f97 df200008 arg util_fifo_len ,loopcnt 
+7f98 ea240000 ifetch util_fifo_len ,rega 
+7f99 207a0000 rtn blank 
+
+fifo_out_loop:
+7f9a ea208000 ifetch 1 ,rega 
+7f9b 243a7f9f nbranch fifo_out_end ,blank 
+7f9c 1a20a201 increase 1 ,rega 
+7f9d c2007f9a loop fifo_out_loop 
+7f9e 20203b31 branch assert 
+
+fifo_out_end:
+7f9f d8400000 arg 0 ,temp 
+7fa0 e2288000 istoret 1 ,rega 
+7fa1 20600000 rtn 
+
+fifo_is_empty:
+7fa2 ea240000 ifetch util_fifo_len ,rega 
+7fa3 20600000 rtn 
+
+fifo_is_full:
+7fa4 ea208000 ifetch 1 ,rega 
+7fa5 20600000 rtn 
+
+fifo_is_near_full:
+7fa6 ea210000 ifetch 2 ,rega 
+7fa7 20600000 rtn 
+
+fifo_content_count:
+7fa8 d8400000 arg 0 ,temp 
+
+fifo_content_count_loop:
+7fa9 68008006 fetch 1 ,contr 
+7faa c2007fa9 loop fifo_content_count_loop ,blank 
+7fab 18408401 increase 1 ,temp 
+7fac c2007fa9 loop fifo_content_count_loop 
+7fad 18427e00 copy temp ,pdata 
+7fae 20600000 rtn 
+
+not_greater_than:
+7faf 98467c00 isub temp ,null 
+7fb0 24610000 nrtn positive 
+7fb1 18427e00 copy temp ,pdata 
+7fb2 20600000 rtn 
+rtn 
Index: Receive_Code/output/ramcode.rom
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/ramcode.rom	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/ramcode.rom	(working copy)
@@ -0,0 +1,612 @@
+c5128007
+c0018015
+c0430232
+c04501fb
+c0458254
+c05a0035
+20203b31
+c00180d8
+c00c822a
+c0158073
+c01700cf
+c019001e
+c01980bc
+c01e0094
+c01f009d
+c04a81f4
+c06c005b
+c06c81c5
+c06e013b
+c07b8086
+20203b31
+d8e0000e
+20407ee2
+245a001a
+2040001b
+2040009d
+2020301b
+5800000e
+d8e0000e
+20207ed4
+6800c46b
+c000ccbb
+c001002d
+c001ccda
+c0024ce8
+c002cced
+c0034cf2
+c003cd10
+c0044d27
+c004cd2d
+c0054d32
+c005cd35
+c0064d39
+c006cd64
+20203b31
+59000302
+600244dc
+58010010
+e0a18000
+680344dd
+6003446c
+1800040b
+20204f89
+6800c132
+203a3d4b
+c001c00c
+c004803d
+c00559dd
+c2835dca
+c283c00c
+20600000
+20758000
+204074fd
+df200087
+d8a049b2
+d8c04ac1
+20407ecd
+204075c9
+70808100
+204073a5
+5800737c
+6001428c
+5800748c
+6001428e
+58007365
+60014298
+5800737a
+60014294
+58007371
+60014290
+580000c6
+60014296
+204001d0
+580072ef
+6001428a
+580074f4
+6001429a
+2040010b
+70421200
+7048c700
+202072ad
+6800c755
+c000005e
+202072b1
+70475601
+70475b01
+20407382
+58004771
+2040738e
+20407d44
+6800c713
+243a0063
+7043f901
+58000000
+60024729
+20407382
+68014748
+6001474a
+2020006d
+68014748
+6001474a
+7048bb00
+7043f901
+58004763
+2020738e
+68030304
+60030372
+68030372
+680b452c
+98467c00
+2022cbb4
+2020007a
+68030372
+680b4bf2
+98467c00
+24628000
+68030372
+60034b4b
+7043f71c
+58000100
+60014539
+7043f900
+704b5101
+20203e69
+20407d80
+da2046f8
+20407f95
+1fe20400
+20407d84
+18427e00
+207a0000
+c00b008f
+20207db3
+7043f901
+7042711b
+68034b4b
+6003452c
+20600000
+1a627e00
+c0010097
+20204fb9
+6800c132
+c084809a
+7048bb01
+58000003
+60010390
+20600000
+e8c18000
+6001839a
+c00980a3
+c00d80a2
+20600000
+202001e9
+6800cbf8
+207a0000
+1fe0ffff
+6000cbf8
+c00080aa
+c00000b3
+20600000
+58000027
+600144f8
+70450b02
+58000001
+6001450c
+704b5200
+704b5301
+7009bd12
+20204bd6
+58000060
+600144f8
+70450b02
+58000001
+6001450c
+704b5200
+704b5301
+7009bd12
+20204bd6
+6800c46b
+c00900bf
+20204c2b
+680144f8
+6001446c
+6800c50b
+1fe27200
+d8c0450c
+20407ecd
+20204f81
+1a627e00
+c016f475
+c008747a
+c00a7334
+c00a80f6
+1fe1040f
+1fe17ef0
+c02872fd
+20600000
+68014bdf
+6001474a
+5800477f
+2040738e
+704b5101
+70475b01
+704b5221
+20404bc2
+20600000
+68008005
+1fe0fe01
+60008005
+20404b51
+204000df
+7854fc00
+20600000
+6800cb52
+c01080e4
+c01280ee
+c01300f5
+20600000
+5800001a
+600144f8
+70450b02
+58000001
+6001450c
+704b5200
+704b5301
+7009bd12
+20404bd6
+20600000
+704b5226
+7009bd02
+20404bd6
+6801470b
+79207e09
+6001470b
+20600000
+20600000
+58000000
+6003452c
+704bf802
+704b5100
+70421200
+7048c700
+7044b200
+7048c600
+7048c000
+20400110
+68014748
+6001474a
+6800c743
+c0807369
+2040006d
+70474600
+58000000
+60010286
+58000000
+60010288
+20207363
+704b6000
+58004b65
+60014b61
+60014b63
+20600000
+2020010b
+78547c00
+6800cb60
+2fe1fe06
+20608000
+78347c00
+68014b63
+1fe20a00
+18420c00
+20407ecd
+6800cb60
+1fe0fe01
+6000cb60
+58004b63
+2020011f
+1fe22200
+d8404bdd
+ea210000
+1fe0fe14
+98467c00
+24210126
+58004b65
+e2210000
+20600000
+78547c00
+6800cb60
+207a0000
+78347c00
+6800cb60
+1fe0ffff
+6000cb60
+68014b61
+60014bdd
+58004b61
+2040011f
+68014bdd
+20600000
+78547c00
+6800cb60
+207a0000
+78347c00
+68014b61
+20600000
+6800c7a9
+207a0000
+204073af
+24347d28
+20407d26
+78547c00
+68014bdf
+6001474a
+6800cb51
+c000006d
+204074de
+2021015f
+680147b6
+600147c0
+7047c200
+18000e00
+680147b8
+1fe30400
+600947b8
+1fe17e01
+680947c0
+18412201
+18430400
+600947c0
+9a22fc00
+24428163
+6800c7a9
+6808c7c2
+18408401
+6008c7c2
+18420e00
+98e2fc00
+2422814b
+680147b6
+600147b8
+20600000
+58000000
+600147b6
+600147b8
+20600000
+1a227e00
+203a0181
+18e27e00
+c0000187
+c000818e
+c0010195
+c001819c
+e8408000
+207a0000
+6000c7ba
+18408401
+600947bb
+680147bb
+efe88000
+18427200
+98408400
+600947bb
+1fe20400
+20400111
+6800c7ba
+1fe0ffff
+6000c7ba
+2422816f
+2020017b
+20400135
+24740000
+78547c00
+7009bd12
+20404bd6
+2020735f
+18e27e00
+c00001a3
+c00081aa
+c00101b1
+c00181b8
+2020016a
+704b5e01
+d8c04b58
+df200007
+204001bf
+6000cb5f
+d8404b54
+2020016a
+704b5e02
+d8c04b58
+df200007
+204001bf
+6000cb5f
+d8404b54
+2020016a
+704b5d01
+d8c04b58
+df200007
+204001bf
+6000cb5f
+d8404b54
+2020016a
+704b5d02
+d8c04b58
+df200007
+204001bf
+6000cb5f
+d8404b54
+2020016a
+704b5e00
+d8c04b58
+df200007
+204001bf
+6000cb5f
+d8404b54
+2020016a
+704b5e00
+d8c04b58
+df200007
+204001bf
+6000cb5f
+d8404b54
+2020016a
+704b5d00
+d8c04b58
+df200007
+204001bf
+6000cb5f
+d8404b54
+2020016a
+704b5d00
+d8c04b58
+df200007
+204001bf
+6000cb5f
+d8404b54
+2020016a
+da200000
+e8c08000
+9a20a200
+c20001c0
+1a217eff
+20600000
+2040731f
+20407313
+202072fe
+6800c75a
+207a0000
+1fe0ffff
+6000c75a
+247a0000
+6800c756
+c0008066
+2020748a
+70808104
+68120078
+79207e07
+60120078
+70804301
+58004000
+60110054
+58004030
+60110056
+58001f00
+6011005a
+58001f10
+6011005c
+58004000
+60110058
+58001f00
+6011005e
+60110060
+580001a0
+60110052
+68110050
+793ffe0f
+60110050
+70806281
+20600000
+6803830b
+6003cbea
+704be702
+704be829
+704be908
+6811005e
+1fe21400
+df20000b
+d8c04be7
+2040633b
+2020631f
+68120078
+681a007c
+9841fe00
+1fe47e00
+9a217e00
+60120070
+20600000
+60088017
+1840a200
+20403a13
+58000500
+20403b35
+70890601
+7089003c
+708901e0
+70896d12
+2000000a
+70890201
+7089023d
+2000000a
+708903b7
+2000000a
+7089027f
+6800cb51
+c000021b
+6800c280
+c2800213
+c2808217
+c281021b
+c281821f
+c2820223
+708956f0
+204039f5
+708955d8
+20600000
+708956df
+204039f5
+708955df
+20600000
+708956ff
+204039f5
+708955df
+20600000
+708956ce
+204039f5
+708955d8
+20600000
+708956cb
+204039f5
+708955d8
+20600000
+708956c0
+708955d8
+20600000
+20404985
+20400230
+20404a6d
+6800c132
+c0055d8e
+20600000
+20368200
+20204994
+20308243
+708955d4
+20000004
+708955d2
+20000004
+708955d1
+20000004
+6800cb51
+c0000251
+6800c280
+c2800241
+c280824e
+c2810241
+c281824e
+c282024e
+708955d0
+708956e0
+18002a00
+7850fc00
+78507c00
+782f7c00
+70890200
+70890100
+70890000
+70890300
+70890470
+70890600
+20600000
+708955d0
+708956c0
+20200243
+708955d0
+708956c0
+20600000
+6800c218
+243a025a
+20403cd2
+20007530
+20007530
+20007530
+20403a5f
+70804205
+20000001
+70804204
+6810896b
+1fe17ecf
+6010896b
+1fe1fe30
+6010896b
+20600000
Index: Receive_Code/output/romcode.rom
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/romcode.rom	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/romcode.rom	(working copy)
@@ -0,0 +1,20480 @@
+20403bab
+70800608
+793f8025
+44804000
+6810813b
+6000c2b8
+204060e3
+20800000
+2455ff6b
+204039fc
+2040621d
+20403b3c
+204042ea
+793f8025
+4480c000
+20406607
+2040530c
+20407cef
+20403d4b
+2455e571
+793f8025
+44814000
+2055bd55
+204075e0
+2055bc29
+793f8025
+4481c000
+204076f7
+20407acf
+204075e3
+20404911
+793f8025
+44824000
+20403043
+20403d60
+2040309e
+2040333e
+204033b3
+20403029
+20403c53
+20203019
+2040302e
+c6848000
+793f8009
+20403260
+2020497d
+793f8025
+4482c000
+2040329f
+2422b038
+20403246
+1a208c01
+e8c08000
+c2804915
+c280b188
+2020341f
+793f8025
+44834000
+20403269
+1f227c00
+20628000
+20403246
+68008030
+c281b0e8
+68008031
+c280b188
+2020341f
+6800c271
+207a0000
+c000b053
+c0013058
+c001b05b
+c002b060
+c00db050
+20403297
+20628000
+2040329a
+20628000
+70427100
+20600000
+7003bf1b
+70427100
+20600000
+7920001c
+793f801e
+70008eff
+70008c1f
+2020304e
+793f801c
+18003600
+2020304e
+2040329a
+20628000
+18000401
+70016d05
+20203068
+793f8025
+4483c000
+68034273
+203a304e
+70470a01
+70005503
+20203067
+18000425
+793f8025
+44844001
+680080f0
+203a306f
+1fe9fe00
+1ff27e00
+1fe0ffff
+6000c146
+600080ef
+70008d1f
+793f800c
+2040327a
+2422b091
+20403b11
+60008077
+6008807c
+68034273
+60030040
+793f8025
+4484c001
+20407ee2
+18007e00
+2841fe01
+7d20fe05
+79207e03
+60008030
+7009bd03
+20407d86
+18007e00
+7920fe04
+6000804c
+58000000
+79207e01
+60008031
+7834fc00
+20403260
+7854fc00
+18000e04
+68014159
+20407ed4
+2020304e
+793f8025
+44854001
+68034273
+60030040
+2841fe01
+2020b098
+2020304e
+d8a00100
+df200008
+20407e91
+7009bd04
+20407d86
+2020304e
+c68e0000
+18000e02
+20407ee2
+7d3a001c
+243a30a4
+20600000
+793f8025
+4485c001
+6809415b
+18000e04
+2040379f
+20740000
+20403937
+18004800
+20618000
+793f800b
+793f8000
+1c40c201
+280ffe1e
+7920c802
+2c200400
+2420b0d0
+793f8025
+44864001
+68008012
+1fe0fe01
+60008012
+2040396e
+20403967
+2040398b
+20403aee
+20403af4
+20403b05
+204036c6
+204030c2
+202030ac
+793f8025
+4486c001
+6800808c
+1fe0ffff
+6000808c
+20610000
+70008c1f
+6800808e
+1fe0ffff
+6000808e
+20610000
+7940001e
+70008eff
+20600000
+793f8025
+44874001
+2040396e
+20403960
+2040398b
+20403afa
+20403a7f
+20403aa3
+202c30db
+204030c2
+202030af
+793f8025
+4487c001
+20403a50
+20403b0d
+20403584
+793f8001
+c6858000
+793f8025
+44884002
+68008013
+1fe0fe01
+60008013
+20600000
+793f8025
+4488c002
+7834fc00
+78387c00
+68014155
+203a30f1
+18000e0d
+20407ee2
+247a0000
+793f8025
+44894002
+68094157
+18000e28
+2040379f
+2034312f
+18000e04
+20407ee2
+243a3108
+6800804c
+c28230fd
+20203100
+d8a00100
+df200008
+20407e91
+793f8025
+4489c002
+70003000
+2040530d
+70470a00
+7009bd13
+20407d86
+2020312f
+793f8025
+448a4002
+18001600
+34730200
+680080f1
+1fe0ffff
+9c42fe00
+2fe00600
+2420b108
+18827e00
+60008180
+18004c00
+18004800
+793f8025
+448ac002
+2021b12f
+20403972
+d9600600
+34730200
+793f8025
+448b4002
+680200f1
+98004200
+1fe0fe01
+600200f1
+280ffe0c
+7920c802
+2c200400
+2420b145
+6800800c
+1fe0fe01
+6000800c
+20403967
+20403aee
+20403af4
+20403b05
+204036c6
+20403136
+20203115
+793f8025
+448bc002
+7854fc00
+68014155
+207a0000
+18000e0d
+20207ed4
+793f8025
+448c4003
+6800808d
+1fe0ffff
+6000808d
+20610000
+70008d1f
+680080ef
+1fe0ffff
+600080ef
+20610000
+7940000c
+6800c146
+600080ef
+20600000
+793f8025
+448cc003
+20403960
+20403afa
+20403a7f
+20403aa3
+202c314e
+20403136
+2020311b
+204036c6
+6800800d
+1fe0fe01
+6000800d
+18003600
+680200f1
+793f8025
+448d4003
+20403aec
+20403972
+1cc0cc01
+1c2143fd
+1c8149fc
+20403967
+20403aee
+20403af4
+20403b05
+1c427e00
+60020160
+18000800
+18000202
+20403b0d
+204037ee
+793f8025
+448dc003
+20403aea
+1c21c202
+1c8149fc
+20403960
+20403afa
+20403a7f
+20403aa3
+204c36c6
+202c3175
+68008010
+203a3115
+1fe0ffff
+60008010
+20203154
+793f8025
+448e4003
+6800800e
+1fe0fe01
+6000800e
+2040348d
+20403337
+202c3180
+204034b0
+243a317b
+20203115
+793f8025
+448ec003
+68008030
+793ffe03
+60008030
+20403499
+7854fc00
+20600000
+793f8025
+448f4003
+7834fc00
+78387c00
+2040321a
+20740000
+20403d42
+20403aec
+1c40c201
+20403979
+18004803
+204068dc
+204034e7
+20403967
+20403aee
+20403af4
+20403b05
+204037ec
+793f8025
+448fc003
+2040531f
+20403328
+2436b1a4
+20403b2c
+204037ac
+6800800f
+1fe0fe01
+6000800f
+793f8025
+44904004
+204068c0
+204031b0
+24748000
+20403775
+243a31ad
+7854fc00
+20600000
+204034e7
+2040331d
+2020319a
+2036b1b3
+20403b22
+202131c1
+204031cd
+243431c1
+6800804c
+c4020000
+c3818000
+6800804b
+c3818000
+204031d6
+247a0000
+6800816d
+1fe0ffff
+6000816d
+247a0000
+2020561d
+793f8025
+4490c004
+204034b8
+7854fc00
+6800804c
+c28231c8
+20600000
+6800804c
+c3818000
+d8a00100
+df200008
+20207e91
+793f8025
+44914004
+78347c00
+6800804b
+c4018000
+204031d6
+247a0000
+78547c00
+20600000
+68008072
+1fe0ffff
+60008072
+20600000
+793f8025
+4491c004
+68008030
+c283b1e4
+680088d9
+203a31e4
+7008d900
+7009bd18
+20407d86
+202031e4
+793f8025
+44924004
+20403294
+68008030
+79207e07
+60008030
+70425d01
+68008055
+c08b31ed
+20600000
+7008d901
+68008030
+793ffe07
+60008030
+20600000
+793f8025
+4492c004
+78547c00
+68008030
+c4008000
+68010032
+247a0000
+68020034
+203831fe
+9d067e00
+202031ff
+9c467e00
+1fe67c04
+24610000
+68008030
+793ffe01
+60008030
+78347c00
+20600000
+1fe20400
+793f8025
+44934004
+60020034
+7045f401
+68008030
+79207e01
+60008030
+18007e00
+60010032
+70007301
+70007400
+70008b00
+68020034
+1c420400
+98467e00
+1feb7e00
+1fe0fff8
+6000808a
+20600000
+793f8025
+4493c004
+204031f3
+24740000
+78547c00
+70001120
+793f800b
+20403aec
+2040332b
+c505b22f
+204034b0
+243a3221
+793f8025
+44944005
+78547c00
+1c427e00
+6002416a
+78387c00
+7834fc00
+7009bd2a
+20207d86
+793f8025
+4494c005
+20403aea
+20403320
+78587c00
+7854fc00
+204038a7
+2040348d
+793f8025
+44954005
+204034d9
+2036b23e
+204034b0
+243a3237
+20203226
+68008031
+793ffe01
+60008031
+20403b2c
+204038d1
+78347c00
+7009bd2b
+20207d86
+793f8025
+4495c005
+79200009
+1a227e00
+6001001e
+18007250
+d8a00362
+1a208c01
+e8c08000
+1a220c00
+c2807ecd
+d8a00030
+20407ecd
+78577c00
+68008077
+98000800
+70008a01
+2034b259
+70008a01
+68008030
+c4008000
+68008073
+6000808a
+68008074
+6000808b
+20600000
+793f8025
+44964005
+6801001e
+98000a00
+18007250
+d8c00362
+203b7ecd
+d8c00030
+20207ecd
+6800c281
+1fe27200
+68088015
+18408401
+2841fe03
+2420b270
+d8400000
+60088015
+184ffe50
+da204040
+9a20a200
+ea208000
+c280b278
+c3800000
+c3818000
+c200326c
+20600000
+793f8025
+4496c005
+da6032ad
+204032a2
+24628000
+1a227e00
+6001001e
+18007c00
+20600000
+204037a9
+2020b28b
+6801001e
+1fe08a17
+68008047
+e0a08000
+da6032ed
+202032a2
+68008047
+2feffe03
+2020b290
+18007c01
+20600000
+18007c00
+20600000
+da6032ea
+202032a2
+6809001e
+da603312
+202032a2
+6808c272
+da6032b8
+202032a2
+793f8025
+44974005
+680b4273
+da6032b1
+202032a2
+da6032be
+202032a2
+da603309
+793f8025
+4497c005
+da204040
+6800c281
+1fe27200
+ea208000
+1a627a00
+1a20a250
+c20032a7
+18007c01
+20600000
+c28032a9
+c281b2a9
+18007c00
+20600000
+c281b2b3
+c30032a9
+1a208c10
+e8c30000
+98467c00
+20628000
+202032a9
+c30032a9
+1a208c16
+e8c08000
+98467c00
+20628000
+202032a9
+c300b2a9
+204032f6
+204032da
+98467e00
+1fe0fe01
+202132d4
+18c22400
+600489c6
+6800c565
+243a32cc
+680489c6
+1a420c00
+1fe0fe05
+202032cf
+680489c6
+1a420c00
+1fe0fe14
+242132a9
+18424200
+20403302
+18007c00
+20600000
+98002400
+1a208c02
+e8c10000
+203a32d0
+20403302
+202032bf
+1ff11600
+196c9600
+2022b2e4
+29601e0f
+24608000
+18511600
+196c9600
+24628000
+7920041c
+20600000
+18511600
+196c9600
+29601e0f
+24608000
+79207e1c
+20600000
+c30032a9
+18007c00
+20600000
+c30032a9
+1a208c01
+e8c08000
+c28032a9
+1a208c17
+e8c08000
+c301b2a9
+18007c00
+20600000
+1a208c01
+e8c88000
+1c427e00
+284ffe01
+1a208c04
+e8ca0000
+20608000
+1a208c08
+e8c30000
+204038e5
+1d027e00
+20600000
+1a208c02
+1a208a04
+e8c10000
+98409600
+19627e00
+e0a20000
+202049dc
+c300b2a9
+204032f6
+9b60fe00
+9b60fe00
+98e0fe00
+98467c00
+242132a9
+18007c00
+20600000
+c30032a9
+18427e00
+9a267c00
+203f32a9
+1a208c01
+e8c08000
+c28032a9
+ea208000
+793ffe07
+e2208000
+202032a9
+793f8025
+44984006
+20403aec
+1c40c201
+20403979
+18004803
+20403967
+20403aee
+20403af4
+20403b05
+202037ec
+793f8025
+4498c006
+20403aea
+1c40c201
+20403979
+18004803
+20403960
+20403481
+20403a86
+20403afa
+20403a7f
+20403aa3
+246c0000
+20403a50
+20203582
+793f8025
+44994006
+68008180
+98000800
+18000201
+2040331d
+20203328
+6800c133
+c4000000
+18000e05
+20407ee2
+247a0000
+6809414d
+18000e04
+2040379f
+20740000
+2040334e
+18000e05
+6801414f
+242c7ed4
+180a7e00
+9ea17e00
+20207ed4
+793f8025
+4499c006
+70018000
+78587c00
+78577c00
+20403937
+1c4143fc
+18004801
+2040396e
+20403960
+7940001d
+68008006
+1fe0fe01
+60008006
+2040398b
+20403a7f
+20403aab
+246c0000
+793f8025
+449a4006
+18003600
+20403992
+68008007
+1fe0fe01
+60008007
+2040396e
+20403aea
+1c21c202
+18004801
+20403967
+2040398b
+20403aee
+20403aff
+1c427e00
+60020160
+20403b05
+18000202
+18000800
+20403b0d
+204037ee
+2040337a
+1c2143fd
+1cc0cc01
+20600000
+793f8025
+449ac006
+6800c171
+207a0000
+d8a001b1
+6800c5ae
+1fe27200
+1fe0fe01
+e0a08000
+18a20400
+1fe0fe01
+6001427e
+18420a00
+58000009
+e0a08000
+d8c045af
+20407ecd
+da604625
+df200004
+2040339d
+da60460f
+df200001
+2040339d
+1800020a
+70427d02
+580001b1
+6001016e
+20403aea
+20403967
+20403aee
+20403aff
+20403b05
+20403b0d
+204037ee
+20600000
+18a20400
+1a620c00
+e8c08000
+207a0000
+1fe3fe00
+c20033a1
+1fe22200
+1fe0fe02
+1fe20e00
+6801427e
+98e0fe00
+6001427e
+18420a00
+1a227e00
+1fe0fe01
+e0a08000
+1a620c00
+e8c08000
+e8c08000
+e0a08000
+1a227200
+20207ecd
+6800c133
+c4008000
+18000e06
+20407ee2
+247a0000
+68094151
+18000e28
+2040379f
+20740000
+18000800
+70001008
+793f800b
+204033c3
+18000e06
+68014153
+20207ed4
+793f8025
+449b4006
+78587c00
+20403937
+68008008
+1fe0fe01
+60008008
+18004c00
+20403979
+1c40c201
+18004802
+793f8025
+449bc006
+20403960
+20403a7f
+20403aab
+246c0000
+20403992
+68008009
+1fe0fe01
+60008009
+18003600
+20403aea
+1c21c202
+18004801
+20403967
+20403aee
+20403aff
+20403b05
+204036c6
+18000800
+d9600600
+35330200
+1d01d003
+1c2143fd
+793f8025
+449c4007
+1cc0cc01
+20403960
+20403a7f
+20403a9d
+242c33f0
+20403b0d
+20403584
+c505b3f8
+793f8025
+449cc007
+68008010
+207a0000
+1fe0ffff
+60008010
+20403aec
+202033e6
+793f8025
+449d4007
+793fd001
+79205000
+6800800a
+1fe0fe01
+6000800a
+20403aea
+1c21c202
+20403967
+20403aee
+20403aff
+20403b05
+204036c6
+2d000603
+2020b40a
+37cb8200
+20203406
+68020164
+1fe1fe03
+1fe25000
+793f8025
+449dc007
+68030177
+60030040
+2040348d
+204034d9
+2036b417
+204034b0
+243a3412
+20600000
+793f8025
+449e4007
+20403499
+2040327a
+24628000
+70003100
+204038d1
+20203260
+793f8025
+449ec007
+204038e1
+20403447
+20740000
+793f8025
+449f4007
+20403d42
+204068c0
+20403579
+2436b434
+20403b2c
+204068dc
+204034e7
+204037de
+204037ac
+2040531f
+6800800b
+1fe0fe01
+6000800b
+204038d1
+793f8025
+449fc007
+20403ca0
+20403b22
+2021343e
+204031cd
+2434343e
+20403775
+243a3424
+20600000
+793f8025
+44a04008
+70015000
+70017e00
+204034b8
+793f8011
+20407f80
+68008030
+20600000
+793f8025
+44a0c008
+204031f3
+24740000
+18820400
+20403b11
+60008180
+18420800
+70001120
+793f8025
+44a14008
+20403aec
+18000202
+204037d5
+1c427e00
+60020160
+204037ec
+20403aea
+7837fc00
+2040355a
+202c3463
+20403992
+204034b0
+243a3450
+c6820000
+70007c34
+79200003
+20600000
+78387c00
+2040348d
+20403937
+793f8025
+44a1c008
+20403337
+202c3470
+204034b0
+243a3466
+78587c00
+1d027e00
+6002416a
+20600000
+7834fc00
+c5823476
+793f8004
+70007c03
+70007d33
+20405903
+18827e00
+60008077
+18007e00
+60030038
+68008031
+79207e01
+60008031
+20403b2c
+7854fc00
+78347c00
+20600000
+793f8025
+44a24008
+7856fc00
+793f8005
+793f800a
+793f8010
+793f800f
+68008047
+793ffe05
+79207e04
+60008047
+20600000
+793f8025
+44a2c008
+70001120
+70004750
+6801415f
+6001003e
+1c427e00
+6002416a
+20780000
+1d027e00
+6002416a
+20600000
+793f8025
+44a34008
+2040531b
+204034b4
+60008046
+58000000
+60010286
+58001c80
+60010051
+68008030
+79207e00
+60008030
+70004b00
+70004c00
+70009f00
+20203b2c
+793f8025
+44a3c008
+18007e00
+60044261
+e0a40000
+204031ef
+20203294
+68008011
+1fe0ffff
+60008011
+20600000
+6800c16f
+1fe0fe01
+6000c16f
+20600000
+793f8025
+44a44009
+6800c271
+c001b4be
+68008048
+c080b4c2
+20403f9d
+2422b4c2
+204031ca
+70427100
+793f8025
+44a4c009
+20403e12
+2040376a
+7009bd02
+20407d86
+2040530d
+204042eb
+204075f4
+68008030
+793ffe00
+60008030
+70470a00
+6800804c
+2fe18000
+2020b4d3
+793f8001
+68008047
+c301b4d5
+6800804b
+c4030000
+793f8002
+20600000
+793f8025
+44a54009
+68008173
+207a0000
+1fe20800
+20403579
+24768000
+18000200
+204037de
+18827e00
+60008077
+18007e00
+60008173
+20600000
+793f8025
+44a5c009
+68008030
+c30134f5
+18000207
+c583b4f4
+204037a9
+2420b4f5
+203734f5
+20403523
+58000002
+60014168
+20600000
+24770000
+793f8025
+44a64009
+20403283
+2422b508
+68008047
+c301b511
+c502b515
+6800817e
+c283351c
+68014168
+1fe0ffff
+60014168
+203a3505
+6800c165
+98000200
+20600000
+793f8025
+44a6c009
+20403703
+204037a9
+2020b511
+20405621
+20343520
+6800804b
+c2833522
+c502b515
+6800817e
+c283351c
+18000201
+20748000
+18000200
+20600000
+793f8025
+44a74009
+68008019
+98000200
+c1808000
+18000200
+20600000
+68008157
+1fe1020f
+79200005
+20600000
+18000213
+20203523
+2040352d
+793f8025
+44a7c009
+68088047
+79200403
+60088047
+18227e00
+6000c165
+5800ffff
+60014168
+20600000
+793f8025
+44a8400a
+6800804c
+2feffe05
+6801427e
+2020b544
+18000203
+1fe67c11
+20610000
+18000204
+1fe67c1b
+20610000
+1800020a
+1fe67c79
+20610000
+1800020b
+1fe67cb7
+20610000
+1800020e
+1fe67ce0
+20610000
+1800020f
+20600000
+18000203
+1fe67c11
+20610000
+18000204
+1fe67c36
+20610000
+1800020a
+d840016f
+98467c00
+24610000
+1800020e
+d84002a7
+98467c00
+24610000
+1800020f
+20600000
+68008030
+c300b559
+68010032
+203a3559
+2437355b
+20403aec
+1d00c201
+78287c00
+6801003e
+1fe37e00
+d8400500
+9840fe00
+20403abd
+20403982
+18004803
+20403960
+20403481
+20403a86
+793f8025
+44a8c00a
+6801003e
+1fe37e00
+20403abd
+20403a7f
+7826fc00
+6801003e
+d84003bb
+9840b600
+37c18400
+1b420400
+600b0099
+7846fc00
+246c0000
+dd2003bb
+1c225000
+2035bbed
+20600000
+793f8025
+44a9400a
+20403554
+242c3992
+20403a50
+c588b582
+680100f5
+1fe0fe01
+600100f5
+1c230400
+18419c40
+793f8025
+44a9c00a
+7823fc00
+78257c00
+7825fc00
+09800003
+198cfe00
+6000815c
+09800004
+08008007
+19827e00
+60008019
+09800003
+198cfe00
+6000815d
+68008019
+1fe67c03
+2021359a
+c003b59a
+6800804c
+2feffe05
+7920aa01
+793f8025
+44aa400a
+09800008
+7845fc00
+78457c00
+202336a8
+c588b5a4
+680100f7
+1fe0fe01
+600100f7
+793f8025
+44aac00a
+6800815c
+2fe00e00
+7920800a
+2020b5b5
+a8800e00
+2020b5b4
+c583b6c6
+680880af
+a8400e00
+2420b6c6
+68008047
+793ffe05
+79207e04
+60008047
+7836fc00
+793f8025
+44ab400a
+68008019
+1fe20200
+c50535c5
+6808815d
+68008047
+793ffe00
+284ffe00
+7920fe00
+284ffe01
+7920fe01
+60008047
+284c0001
+2020b5c5
+20403703
+793f8025
+44abc00a
+d8400000
+20403ab4
+18217e0f
+c000b5f4
+c00036c6
+c00136d3
+6808815d
+68008047
+a8400800
+2420b5d4
+c58535d3
+c303b5d4
+7920000f
+793f8025
+44ac400b
+18227e00
+c001b5f6
+c00235fa
+c003b5e4
+c00435f9
+d8400004
+20403ab4
+c00535f5
+c005b5f8
+d8400008
+20403ab4
+c00735f5
+c007b5f8
+20600000
+793f8025
+44acc00b
+7826fc00
+7824fc00
+78277c00
+d8a000d0
+1800721e
+09800008
+19897e00
+e0a08000
+c20035eb
+c583b6c6
+09800010
+7d230008
+202336b5
+20203696
+202036c6
+79200010
+78267c00
+202035fb
+79200010
+79202a02
+7826fc00
+793f8025
+44ad400b
+c500b6c6
+2aac0001
+2020b608
+7843fc00
+7826fc00
+78467c00
+1c409602
+34530400
+242c36b5
+79200010
+7823fc00
+793f8025
+44adc00b
+78277c00
+7824fc00
+09800003
+198cfe00
+6000817f
+09800005
+c5083614
+19897200
+1f297200
+20203617
+09800005
+19837200
+09800003
+793f8025
+44ae400b
+1f227e00
+6001015e
+203a365b
+9ea67c00
+202136b5
+793f8025
+44aec00b
+793f8000
+6800817f
+1fe17e03
+d8a00475
+c001b62b
+c508b657
+6800817f
+1fe17e03
+c0013630
+c000b645
+202036b5
+6801015e
+1fe67c70
+242136b5
+c507b696
+20203657
+793f8025
+44af400b
+c507b696
+6801015e
+d84002e0
+98467c00
+202136b5
+6800828c
+c300363b
+c300b640
+202036c6
+70028a01
+68010286
+c08036c6
+d8a01000
+20203657
+70028a02
+68010288
+c08036c6
+d8a01400
+20203657
+793f8025
+44afc00b
+c507b696
+6801015e
+d84002e0
+98467c00
+202136b5
+6800828a
+c000b650
+c0013654
+202036c6
+d8a01000
+68010286
+98a08a00
+20203657
+d8a01400
+68010288
+98a08a00
+09800008
+19897e00
+e0a08000
+c2003657
+793f8025
+44b0400c
+09800010
+202336af
+6800c3f3
+c000b6c6
+c508b682
+c507b6c3
+6800817f
+2fe00603
+2020b682
+6801015e
+203a3682
+793f8025
+44b0c00c
+6800828a
+c000b66e
+c0013678
+20203b31
+68010286
+6809015e
+9840fe00
+60010286
+c0003b31
+68091000
+18408404
+98467c00
+2042b7cd
+20203682
+68010288
+6809015e
+9840fe00
+60010288
+c0003b31
+68091400
+18408404
+98467c00
+2042b7d1
+20203682
+793f8025
+44b1400c
+6808804c
+6800817f
+2fe00603
+79208406
+7d208407
+6008804c
+2420b68c
+79200001
+c588b696
+284ffe06
+2020b696
+680100f9
+1fe0fe01
+600100f9
+79200005
+793f8407
+793f8001
+6008804c
+793f8025
+44b1c00c
+6808815d
+68008047
+79207e05
+284ffe02
+7920fe02
+280ffe0a
+7920fe07
+60008047
+6801015e
+243a36c6
+6800804c
+793ffe07
+6000804c
+6800817f
+2fe00e01
+202036c6
+793f8025
+44b2400c
+7856fc00
+6801001a
+1fe0fe01
+6001001a
+202036c6
+6801001c
+1fe0fe01
+6001001c
+204036b6
+c588b6b5
+79200005
+202036c6
+793f8025
+44b2c00c
+6800817f
+2fe00603
+2420b6bf
+6808804c
+793f8406
+6008804c
+20600000
+6808804c
+793f8407
+6008804c
+20203eca
+68008047
+79207e05
+60008047
+793f8025
+44b3400c
+784efc00
+784e7c00
+7846fc00
+78467c00
+7844fc00
+78477c00
+7843fc00
+2030b992
+37d38200
+20000064
+20203992
+793f8025
+44b3c00c
+7824fc00
+78267c00
+09800048
+2feffe3a
+79208000
+1c020400
+57e04000
+57e03c00
+782afc00
+380bffff
+380cffff
+20000020
+29a80000
+1d827e00
+60018177
+1da27e00
+6000817a
+18424000
+2020b6e9
+202036b5
+793f8025
+44b4400d
+09800048
+57e03e00
+57e00800
+57e05c00
+57e02400
+18007e00
+09800010
+202336b5
+5ffffffc
+9a417e00
+60020164
+1ba27e00
+60018174
+1b827e00
+60008172
+18827e00
+60008173
+1dc27e00
+6001017b
+1c227e00
+08008220
+28201e02
+7920800b
+202036c6
+793f8025
+44b4c00d
+68008047
+c4018000
+793ffe03
+79407e06
+60008047
+6800c165
+c009b719
+c1038000
+6800804b
+c4030000
+793ffe06
+79207e07
+6000804b
+793f8002
+680142d6
+247a0000
+6800804b
+793ffe07
+6000804b
+202047fb
+793f8025
+44b5400d
+680083dd
+1fe37e00
+c008b736
+c009373f
+c00c376a
+c03fb726
+c1818000
+680083de
+c015b72e
+c008b729
+20600000
+680083de
+79207e07
+20600000
+20748000
+68008030
+c3820000
+70007c31
+20600000
+20748000
+68008031
+2feffe04
+2020b733
+20600000
+793ffe04
+60008031
+20600000
+793f8025
+44b5c00d
+6800804c
+79207e02
+6000804c
+70801101
+68008030
+2feffe04
+20600000
+793f8025
+44b6400d
+6800804c
+793ffe02
+6000804c
+70801100
+20600000
+793f8025
+44b6c00d
+1c427e00
+600242b1
+1c40a203
+2034b74d
+1d00a203
+68090032
+1a227e00
+793ffe1b
+9846fc00
+68010075
+20407f53
+18072600
+9a667e00
+20213757
+9840fe00
+9a20fe00
+60020034
+7045f400
+68008030
+79207e01
+60008030
+68008073
+6000808a
+58000000
+6001c209
+6001c20c
+6000c1f9
+7009bd0b
+20407d86
+68014161
+6001003e
+24748000
+18808fff
+20600000
+793f8025
+44b7400d
+68008030
+c4008000
+793ffe01
+60008030
+6801415f
+6001003e
+7855fc00
+7009bd0c
+20207d86
+793f8025
+44b7c00d
+78377c00
+68008030
+c280b783
+c6088000
+68008047
+c3818000
+68008048
+247a0000
+6800804b
+c3830000
+18007e00
+20600000
+c3013792
+6800808a
+c0013789
+68008047
+c281b79b
+c584379b
+2434b79b
+68008048
+243a379b
+680080ee
+1fe0ffff
+600080ee
+243a3781
+7000ee10
+2020379b
+6800808a
+c080b79b
+6800808b
+203a379b
+1fe0ffff
+6000808b
+68008047
+c3818000
+24768000
+6800808a
+1fe0ffff
+6000808a
+20600000
+793f8025
+44b8400e
+78487c00
+18423600
+204032a1
+78547c00
+24628000
+18003600
+78347c00
+20600000
+6800c1f8
+a881fe00
+20600000
+793f8025
+44b8c00e
+793f8001
+70029300
+6800828c
+207a0000
+2feffe00
+d8c01000
+2040c2fa
+793f8025
+44b9400e
+68008293
+c000b7c1
+70029300
+6800828c
+c4008000
+d8c01400
+204042fa
+68008293
+c000b7c7
+20600000
+6800828c
+793ffe00
+6000828c
+58000000
+60010286
+20600000
+6800828c
+793ffe01
+6000828c
+58000000
+60010288
+20600000
+6800828c
+79207e00
+6000828c
+20600000
+6800828c
+79207e01
+6000828c
+20600000
+793f8025
+44b9c00e
+1d00c201
+20403982
+18004803
+20403967
+20403aee
+20403aff
+20203b05
+793f8025
+44ba400e
+20403aea
+1d027e00
+680a416a
+98467e00
+c1808000
+28203e00
+2420b7e9
+68008019
+207a0000
+204037d5
+28203e10
+2020b6c6
+1c230400
+18419c40
+793f8025
+44bac00e
+7823fc00
+78257c00
+782dfc00
+793f8010
+18827e00
+08008603
+18227e00
+08008604
+68008047
+08008004
+08008603
+78247c00
+08008608
+784dfc00
+78447c00
+78457c00
+793faa02
+d8400000
+20403ab4
+793f8025
+44bb400e
+18217e1f
+c009b840
+c00036c6
+c000b6c6
+c0013822
+c001b852
+c0023858
+c003b816
+c0043857
+d8400004
+20403ab4
+c0053854
+c005b85a
+d8400008
+20403ab4
+c007b85a
+20203854
+793f8025
+44bbc00e
+782efc00
+7824fc00
+78277c00
+1800721e
+d8c000b2
+e8c08000
+08008608
+c200381d
+c503b885
+202036c6
+793f8025
+44bc400f
+68008180
+1fe20800
+6800808f
+1fe23800
+6801c14a
+1fe23a00
+68014144
+1fe25c00
+7824fc00
+782e7c00
+1c022200
+20403979
+782afc00
+20000020
+1c221600
+68020160
+1fe24200
+53c07e00
+79207e3a
+08008648
+53e07e00
+08008648
+19624200
+1a224000
+78247c00
+08008610
+78447c00
+202036c6
+793f8025
+44bcc00f
+78277c00
+7824fc00
+782e7c00
+680083dc
+1fe105f8
+d8c003dc
+18408408
+1840a7b8
+2421384f
+e8c48000
+08008648
+1a620400
+20203849
+e8c48000
+08418600
+20203885
+782e7c00
+2020385d
+782e7c00
+79200010
+2020385d
+79202a02
+782efc00
+2020385d
+79202a02
+782efc00
+79200010
+793f8025
+44bd400f
+6800804c
+c302b873
+18267c03
+20213873
+78477c00
+784e7c00
+782efc00
+7843fc00
+79202a01
+2aaffe02
+2020b86d
+580abeee
+08008614
+20203871
+585faeba
+08008618
+58000012
+08008606
+7823fc00
+79200010
+78277c00
+7824fc00
+c502b88e
+6800c27d
+08008603
+6801427e
+98007200
+c508387d
+08008605
+2020387e
+0800860d
+1f227e00
+203a3885
+6801016e
+98000c00
+e8c08000
+08008608
+c2003882
+78247c00
+08008610
+78447c00
+20403523
+6800804c
+c302b6c6
+18007e00
+08008606
+202036c6
+793f8025
+44bdc00f
+c5083897
+6800817f
+08008603
+6800815e
+98002600
+08008605
+2020389c
+6800817f
+08008603
+6801015e
+98002600
+0800860d
+d8c00475
+1a627c00
+2022b8a3
+e8c08000
+08008608
+1a60a7ff
+2020389d
+680100fb
+1fe0fe01
+600100fb
+20203885
+68020164
+1fe0a207
+68010170
+243a38ad
+1a20a3fd
+202038b5
+1feffe0c
+68190040
+18408401
+98467e00
+242138b4
+1a20a3ff
+202038b0
+1fe67e00
+37d18200
+2c400600
+2420b8b5
+98005200
+1a225000
+98005200
+20600000
+793f8025
+44be400f
+37d10200
+1b427e00
+98000c00
+1ff17e00
+9c467200
+1f217203
+2422b8c7
+18007e00
+202038cb
+d8400ea6
+18007e00
+9840fe00
+c20038c9
+98c0fe00
+1fe6fc0c
+20407f53
+1807fe00
+60010170
+20600000
+793f8025
+44bec00f
+1b427e00
+1b220400
+98467c00
+7d217e2c
+98460400
+58000ea6
+284c000f
+2020b8dd
+5fff0ea6
+98408400
+600b036a
+207b0000
+600b0038
+20600000
+78587c00
+6803036a
+203b38e5
+68030038
+9b20e000
+1e00e00a
+58000ea6
+9e067e00
+2fec000f
+2020b8ef
+5800f15a
+9e00e000
+1e023400
+20600000
+18007c00
+202038ed
+793f8025
+44bf400f
+204039b1
+1c227e00
+1fe17f80
+2c800e03
+2420b8fb
+1fe97e00
+9ae0fe00
+202038fc
+1ae27e00
+1fe6fc4f
+782afc00
+20407f53
+18072200
+1a2085d8
+20213904
+1a238400
+20203906
+18438400
+18408401
+793f8025
+44bfc00f
+68008031
+c301b918
+68024172
+9c267c00
+20213918
+20403937
+6800c179
+207a0000
+68008031
+79207e02
+60008031
+6802c187
+6002c17a
+e8c28000
+6002c17f
+2040393c
+68008031
+c4010000
+2c2ffe01
+2020b934
+18492200
+18410e07
+5800417a
+9a20a200
+ea208000
+afec0000
+2020b925
+18427e00
+20203931
+6800c184
+98002400
+1c227e00
+1fe17f80
+1fe97e00
+9ae0fe00
+9a46fc00
+58004192
+20407f53
+18072200
+9a208c00
+e8c08000
+6000c185
+98000400
+20600000
+6800c185
+98000400
+20600000
+68008031
+793ffe02
+793ffe03
+60008031
+20600000
+793f8025
+44c04010
+d8a04192
+1800720a
+20407e91
+d8a04192
+18002600
+18000e02
+6802c17a
+98000400
+28e1fe02
+2020b949
+18430400
+284c0000
+2020b94d
+1a627e00
+e0a08000
+184b0400
+1a60a602
+2a61fc28
+2420b956
+6802c17f
+98000400
+28e1fe02
+2020b956
+18430400
+1a667c4e
+20213949
+18002601
+18e08fff
+2422b944
+da204192
+18a27e00
+9a267e00
+6000c184
+20600000
+793f8025
+44c0c010
+204038f1
+6800817e
+c302b966
+680883f2
+202039b9
+793f8025
+44c14010
+204038f1
+6800817e
+c302396d
+680883f1
+202039c9
+18005a00
+6801c147
+98005800
+20600000
+793f8025
+44c1c010
+6800c276
+1fe25a00
+6801c273
+1fe25800
+20600000
+793f8025
+44c24010
+68014144
+1fe25c00
+6800c143
+1fe25a00
+6801c140
+1fe25800
+20600000
+793f8025
+44c2c010
+68010044
+1fe25c00
+68008043
+1fe25a00
+68018040
+1fe25800
+20600000
+c510398e
+c68e8000
+c68f8000
+1d815900
+782afc00
+20000020
+20600000
+793f8025
+44c34010
+2030b9a3
+708955d4
+20000004
+708955d2
+20000004
+708955d1
+20000004
+6800c280
+c28039a1
+c280b9ae
+c28139a1
+c281b9ae
+c28239ae
+708955d0
+708956e0
+18002a00
+7850fc00
+78507c00
+782f7c00
+70890200
+70890100
+70890000
+70890300
+70890470
+70890600
+20600000
+708955d0
+708956c0
+202039a3
+793f8025
+44c3c010
+70890200
+70890100
+70890018
+708903a7
+7089047f
+20600000
+793f8025
+44c44011
+60088017
+1840a204
+70896d07
+20203a13
+793f8025
+44c4c011
+708901cf
+2000000a
+708900ff
+708903af
+708904ff
+2000000a
+708902a0
+20600000
+793f8025
+44c54011
+60088017
+1840a200
+20403a13
+58000500
+20403b35
+70890601
+7089003c
+708901e0
+70896d12
+2000000a
+70890201
+7089023d
+2000000a
+708903b7
+2000000a
+7089027f
+6800c280
+c28039e1
+c280b9e5
+c28139e9
+c281b9ed
+c28239f1
+708956f0
+204039f5
+708955d8
+20600000
+708956df
+204039f5
+708955df
+20600000
+708956ff
+204039f5
+708955df
+20600000
+708956ce
+204039f5
+708955d8
+20600000
+708956cb
+204039f5
+708955d8
+20600000
+20000004
+708955d1
+20000004
+708955d2
+20000004
+708955d4
+20600000
+70804206
+20403b64
+68014163
+c30739fe
+98000c00
+d8408900
+e8c08000
+c07fba08
+98418a00
+e8c08000
+e0a08000
+20203a02
+793f8025
+44c5c011
+20403cd2
+20403a5f
+580007d0
+9c40fe00
+60020168
+79202a03
+18002a00
+2455ba2b
+20203a3f
+793f8025
+44c64011
+58000960
+9a208400
+6800c15d
+70895f04
+984ffe00
+6808c15e
+9846fc00
+20407f53
+1807a200
+18077e00
+1ff07e00
+1ff27e00
+9846fc00
+20407f53
+1807fe00
+1fed7e00
+1fe3fe00
+9a21fe00
+60120960
+70895f44
+70895fc4
+20600000
+793f8025
+44c6c011
+70890602
+5803d090
+20403b35
+7089007f
+20000082
+70895230
+708901d0
+70895270
+708952f0
+18007232
+68108980
+c282ba3a
+c2003a37
+6000c16e
+70890100
+70890000
+70890600
+20600000
+793f8025
+44c74011
+6800c16e
+79207e05
+60108952
+68188950
+18410407
+1fe9fe00
+9841fe00
+60108950
+68108951
+793ffe00
+60108951
+68108952
+793ffe05
+60108952
+20600000
+793f8025
+44c7c011
+68110981
+1ff1fe00
+1fe97e00
+1fe67e00
+1fe17eff
+1fe6fc0a
+20407f53
+1807fe00
+1ff27e00
+18070400
+9841fe00
+60008018
+20600000
+70804206
+6810896b
+793ffe04
+793ffe05
+6010896b
+70890500
+70890400
+70890470
+708905ff
+6810896b
+79207e04
+79207e05
+6010896b
+20403a7d
+68108968
+79207e07
+60108968
+793ffe07
+60108968
+79207e07
+60108968
+70804204
+6810896b
+1fe17ecf
+6010896b
+1fe1fe30
+6010896b
+20600000
+58000f0f
+20203ceb
+5800080f
+20203ceb
+793f8025
+44c84012
+204039bf
+78507c00
+7830fc00
+782b7c00
+20600000
+793f8025
+44c8c012
+6800804c
+2feffe02
+7920fe00
+60108011
+d8c00062
+e8c48000
+98006400
+e8c38000
+98006600
+68008054
+1fe0e9ff
+782d7c00
+20600000
+1b427e00
+60030099
+7846fc00
+242c3992
+dd2003bb
+1d00d001
+1d0151fc
+20600000
+7826fc00
+37cb8400
+202c3a95
+2d000402
+2420ba9e
+20203a95
+793f8025
+44c94012
+d9600600
+7826fc00
+34730400
+7846fc00
+242c3992
+20600000
+793f8025
+44c9c012
+7826fc00
+37c18400
+7846fc00
+242c3992
+dd2003bb
+1d0151fc
+20600000
+793f8025
+44ca4012
+98002200
+1c227e00
+98409600
+19627e00
+6002416a
+1a227e00
+20600000
+1fe20400
+793f8025
+44cac012
+18427e00
+20407f1d
+1c307e00
+79207e2c
+20407f06
+793ffe2c
+20403b1a
+20407f06
+20740000
+20407f10
+98003600
+37c18200
+20600000
+793f8025
+44cb4012
+20383ad3
+35330200
+1d020400
+20203ad6
+20373ad5
+34730200
+1c420400
+20343ae3
+28400601
+2420bacd
+793f8025
+44cbc012
+68008030
+c4000000
+6802416a
+98467e00
+24610000
+1fe67cff
+20213acd
+20600000
+28400603
+2420bacd
+20203ad9
+793f8025
+44cc4013
+d9600600
+20203acd
+78547c00
+20203ae6
+78347c00
+20203ae6
+793f8025
+44ccc013
+20403a86
+7850fc00
+78307c00
+20600000
+793f8025
+44cd4013
+d9600e43
+34730200
+782b7c00
+20600000
+793f8025
+44cdc013
+d9600d00
+34730200
+20600000
+793f8025
+44ce4013
+d9600e43
+35330200
+782b7c00
+20600000
+793f8025
+44cec013
+51207e00
+782efc00
+79202a00
+08008648
+784efc00
+20600000
+1ca20400
+18418460
+18421c00
+20600000
+793f8025
+44cf4013
+6800c130
+1fe0fe01
+c083bb17
+18007e01
+6000c130
+98000800
+20600000
+1b220400
+20748000
+1b420400
+20600000
+1c427e00
+20748000
+1d027e00
+20600000
+793f8025
+44cfc013
+680a004d
+20403b1e
+98461600
+19627e00
+68090051
+18438400
+98467e00
+20600000
+793f8025
+44d04014
+20403b1e
+6002004d
+20600000
+793f8025
+44d0c014
+20600000
+20203b34
+207a0000
+1fe37e00
+1fe0fffd
+1fe0ffff
+2422bb38
+18007e00
+20600000
+df200010
+d8a00000
+20407e91
+d8a00362
+df20000a
+20407e91
+7008d600
+7009bd00
+7003b000
+70017e00
+7003f700
+793f8025
+44d14014
+70016c00
+70015000
+70015b00
+589e8b33
+6001c147
+58000153
+60010083
+7000851e
+70008601
+70008807
+5812e904
+60018080
+70008f60
+70417005
+70001402
+6800c6e2
+245a71ea
+6800c563
+245a7241
+793f8025
+44d1c014
+20758000
+58000000
+6001427e
+1c437e00
+60024134
+20600000
+7089091f
+70891245
+70895300
+70896f88
+70897330
+708956c9
+708907ff
+70890801
+70890af8
+70890bff
+70891afb
+70891bfb
+70891cfb
+70891df6
+70891ef2
+70891fee
+708920ea
+708921e6
+708922e2
+708923de
+708924da
+708925d6
+708926d2
+708927ce
+708928ca
+708929c6
+70892ac2
+70892bbd
+70892cb9
+70892db5
+70892eb1
+70892fad
+708930a9
+70893180
+70893280
+70893380
+708934c0
+708935c1
+708936c2
+708937c3
+708938c4
+708939c5
+70893ac6
+70893bc7
+70893c06
+70893d07
+70893e46
+70893f85
+70894086
+70894187
+708942c6
+708943c7
+708944d6
+708945d7
+708946e6
+708947f5
+70894800
+708949f8
+70894a7f
+70894cfb
+70894def
+70894eec
+70894f5e
+7089574c
+7089586c
+70895950
+708968e4
+70896900
+70896a00
+70896b30
+20600000
+5800ee21
+60110050
+6810813e
+c301e13b
+7835fc00
+c303bbb6
+7855fc00
+1ce27e00
+243a3bb6
+d85fffff
+20203c24
+6811813c
+6011804c
+e8c08000
+1fe1feef
+e0a08000
+20403cf6
+6810804f
+79207e04
+6010804f
+20403cf6
+2055bbc7
+6810804e
+793ffe03
+6010804e
+20403cf6
+20758000
+2020613b
+6800c238
+60108086
+6801c22d
+60118080
+68024221
+60120074
+6802421d
+60120070
+68044225
+60140078
+68044230
+98000000
+68140140
+600400a0
+2040619f
+20600000
+18027e00
+60044230
+68140070
+6004421d
+e8c40000
+e0a40000
+68118080
+6001c22d
+68108086
+6000c238
+20203cfc
+681080b4
+243a3be8
+6801c20f
+247a0000
+7080b4c0
+70800680
+6810812d
+c4008000
+68118149
+6001c20f
+20600000
+793f8025
+44d24014
+1b427e00
+20407f04
+680a41ff
+18467cff
+20610000
+1fed7e00
+1ff27e00
+9846fc00
+20407f53
+1807fe00
+d84000c8
+20407f5e
+60008098
+24343bfe
+1fe67e00
+6809c20f
+9840fe00
+6001c20f
+58000000
+600241ff
+20600000
+793f8025
+44d2c014
+20403cfc
+68120138
+793ffe0f
+6012004c
+20403cf4
+d85fffff
+6800c1f7
+6000c21c
+6800c21a
+79207e07
+6000c21a
+793f8025
+44d34014
+20403a7b
+680241ff
+9840fe00
+600241ff
+20403bd7
+6802c218
+6012004c
+1fef2200
+37d98200
+1b227e00
+60034203
+70800502
+37d98200
+37d98200
+1a227e00
+6010804f
+70800502
+37d98200
+37d98200
+601a004c
+70800510
+37df8200
+793f8025
+44d3c014
+58000000
+1ce27c00
+2022bc35
+6810813c
+6818813d
+98467c00
+20213c33
+18427e00
+9ce67e00
+1fe0fe01
+1fe0fe08
+37d98200
+9e20fe00
+680a41fb
+9840fe00
+6809c20f
+984ffe00
+1fecfe00
+1ff1fe00
+1fe0fe6e
+d8400ea6
+9846fc00
+20407f53
+1807fe00
+1ff07e00
+18070400
+9841fe00
+680b4203
+20407ef9
+18423200
+68034048
+204038e5
+1b427e00
+600309be
+1ce27e00
+e0a08000
+6810811d
+1fe1fef0
+e0a08000
+20600000
+793f8025
+44d44015
+20403be2
+6801c20f
+207a0000
+6800c131
+207a0000
+6800c6e2
+203a3c5e
+6800c639
+207a0000
+6800c565
+247a0000
+20403d0e
+247a0000
+6800c040
+2fe00e03
+2420bc8a
+68014042
+207a0000
+20758000
+793f8025
+44d4c015
+6808809f
+68014042
+984ffe00
+18518400
+184b0400
+98467e00
+680a4044
+9840fe00
+6808c1f6
+98467e00
+1ff06000
+793f8025
+44d54015
+6801404e
+1fe37e00
+20407f1d
+1e027e00
+20407f06
+1b420400
+20407f04
+20740000
+20407f16
+793f8025
+44d5c015
+6800c218
+98467c00
+20213c01
+600a41fb
+20403d9f
+204048a5
+680a41fb
+20203c11
+793f8025
+44d64015
+6800c040
+c3800000
+c3818000
+6800c6e2
+203a3c93
+6800c639
+207a0000
+793f8025
+44d6c015
+6800c3ff
+243a3c99
+6800c133
+207a0000
+680141f4
+207a0000
+6808c1f6
+98467e00
+d8401d4c
+984ffe00
+20203c7f
+793f8025
+44d74015
+7855fc00
+68008030
+c4008000
+2436bcbc
+20403cb7
+68014161
+6001003e
+68008047
+c281bccb
+c586bccb
+20404816
+243a3ccb
+680142a4
+20407f69
+70009f00
+c586bccb
+6800c214
+203a3ccf
+1fe0ffff
+6000c214
+20600000
+7041f900
+6801c209
+1fe0fe01
+6001c209
+20600000
+793f8025
+44d7c015
+68094161
+18430400
+6801003e
+9840fe00
+6001003e
+70009f00
+6801c20c
+1fe0fe01
+6001c20c
+6800c1f9
+1fe0fe01
+6000c1f9
+20600000
+70009f00
+6800c213
+6000c214
+20600000
+6808c212
+6008809f
+20600000
+793f8025
+44d84016
+6800c218
+247a0000
+70804206
+58000f0c
+20403ceb
+58030d40
+20403b35
+37d98200
+1e226000
+20403a7b
+70804204
+2000000a
+37d98200
+1e227e00
+9e067e00
+1fe0fe30
+d84000ff
+20407f5e
+6000c218
+20007530
+20007530
+20007530
+20600000
+d8a00fff
+98a10a00
+6800c215
+1fe17ef0
+1fed7e00
+98a1fe00
+6011004c
+e8c10000
+e0a10000
+58000001
+20203cf7
+58000002
+37d98200
+60108005
+37d98200
+37d98200
+20600000
+793f8025
+44d8c016
+680200a0
+6012004c
+58000004
+20403cf7
+680200a4
+6012004c
+58000008
+20203cf7
+680141f2
+f9207e00
+600141f2
+20600000
+680141f2
+f93ffe00
+600141f2
+20600000
+793f8025
+44d94016
+20403d9d
+680141f2
+1fe22200
+6800804c
+2feffe06
+7920a20b
+68008078
+6808807c
+9840fe00
+68088048
+9840fe00
+7d3a220a
+793f8025
+44d9c016
+68010286
+68090288
+9840fe00
+7d3a220d
+6802c6f0
+7d3a220f
+6802c6f8
+7d3a220e
+6800c271
+7d3a2208
+6800c132
+2fe1fe0a
+2040bd2c
+20203d31
+68110112
+7d3a2206
+6811010e
+7d3a2205
+20600000
+5ffffff8
+9a212200
+1a227e00
+600141f2
+207a0000
+20768000
+7835fc00
+20600000
+68120138
+793ffe1b
+6012004c
+20403cf4
+20203b31
+6812013c
+793ffe14
+6012004c
+20203cf6
+680141f0
+c2803b31
+20600000
+680141f0
+c280bb31
+20600000
+680141f0
+c2813b31
+20600000
+793f8025
+44da4016
+6800c132
+203a3d4b
+c001c00c
+c004f293
+c00559dd
+c2835dca
+c283c00c
+20600000
+793f8025
+44dac016
+70015000
+70017e00
+70017f00
+58000000
+600288d2
+6800c132
+203a3d55
+c0055a12
+20600000
+20407cf4
+20407d9e
+20403d69
+68014294
+20207f69
+68014292
+20207f69
+68014290
+20207f69
+793f8025
+44db4016
+da2046f0
+20407f95
+207a0000
+1fe22600
+20403d73
+20203d9b
+da600000
+20600000
+c000bd88
+c0083dcf
+c002bdac
+c0093db3
+c0033dcb
+c0023df6
+c0013dfb
+c009bdf6
+c00a3dc2
+c00abdc6
+c001bda5
+c005bdb7
+c0063dbe
+c00b3dd3
+c00c3da1
+c0153d91
+c015bd8f
+1fe1040f
+1fe17ef0
+c0283dd7
+20600000
+6801470b
+79207e00
+6001470b
+680142af
+793ffe00
+600142af
+20600000
+70024d00
+20600000
+6800824d
+1fe0fe01
+6000824d
+1fe67c01
+20213e47
+70024d00
+680142af
+79207e09
+600142af
+20203e52
+68014296
+20207f69
+6801428a
+20207f69
+6801428e
+20207f69
+680142af
+79207e01
+600142af
+20203e7d
+6801470b
+79207e07
+6001470b
+680142af
+79207e02
+600142af
+20600000
+6801470b
+79207e01
+6001470b
+680142af
+79207e04
+600142af
+20600000
+6801470b
+79207e03
+6001470b
+20600000
+6801470b
+79207e05
+6001470b
+680142af
+79207e03
+600142af
+20600000
+6801470b
+793ffe05
+6001470b
+20600000
+6801470b
+79207e09
+6001470b
+20600000
+6801470b
+793ffe09
+6001470b
+70459500
+20203e81
+6801470b
+79207e02
+6001470b
+20600000
+680142af
+79207e00
+600142af
+20600000
+680142af
+79207e08
+600142af
+20203e52
+793f8025
+44dbc016
+6008824e
+6800824e
+207a0000
+1fe0ffff
+6000824e
+20407d02
+20403e3b
+20403de5
+20403ded
+680142a0
+20407f69
+20203dda
+6800c2aa
+207a0000
+1fe0ffff
+6000c2aa
+247a0000
+20403292
+2022be79
+20600000
+68014707
+207a0000
+1fe0ffff
+60014707
+247a0000
+20403e59
+20403e73
+68014298
+20207f69
+20403e0f
+6801470b
+793ffe07
+6001470b
+20600000
+7042aa00
+6801470b
+c283be00
+2fec0001
+2040bd71
+793f8025
+44dc4017
+6801470b
+793ffe00
+793ffe01
+793ffe02
+793ffe03
+793ffe07
+6001470b
+20203e81
+20403e0c
+20203e75
+58000000
+600142ad
+20600000
+58000000
+600142af
+20600000
+680142af
+600142ad
+58000000
+600142af
+20600000
+680142af
+79207e07
+600142ad
+58000000
+600142af
+20600000
+6800c70b
+2feffe05
+20600000
+5800aa55
+600109ce
+793f8025
+44dcc017
+d8400002
+da2009ce
+da4000c3
+2020626f
+793f8025
+44dd4017
+d8400002
+da2009be
+da4000c3
+20406245
+680109be
+d840aa55
+98467c00
+20600000
+6800c5f3
+6000c2aa
+20600000
+d8e00009
+20203d06
+d8e00009
+20203d0a
+7042ab05
+20203e35
+6800c2ab
+207a0000
+1fe0ffff
+6000c2ab
+247a0000
+20203e37
+7043f301
+20600000
+7043f300
+20600000
+7009bd0a
+20207d90
+7009bd1d
+20207d90
+793f8025
+44ddc017
+6800c2ac
+6000816c
+70024c01
+7009bd03
+20207d90
+7009bd1e
+20207d90
+7009bd04
+20207d90
+68014716
+60014707
+20403e6f
+7009bd01
+20207d90
+58000000
+60014707
+7009bd02
+20207d90
+7009bd0f
+20207d90
+7009bd10
+20207d90
+7009bd0e
+20207d90
+7009bd0d
+20207d90
+7009bd17
+20207d90
+7009bd18
+20207d90
+7009bd16
+20207d90
+7009bd11
+20207d90
+7009bd1c
+20207d90
+7009bd15
+20207d90
+7009bd14
+20207d90
+7009bd13
+20207d90
+7009bd19
+20207d90
+7009bd06
+20207d90
+7009bd05
+20207d90
+7009bd1f
+20207d90
+7009bd20
+20207d90
+7920000d
+20600000
+793f800d
+20600000
+793f8025
+44de4017
+6800c271
+247a0000
+20403e8a
+24543ea3
+20600000
+793f8025
+44dec017
+18622200
+d8400004
+e8608000
+c000be95
+18408401
+c0013e95
+18627e00
+60110058
+20600000
+68110112
+98467c00
+24213e95
+78547c00
+1a220600
+20403eac
+98408400
+68110112
+98467c00
+24213e9c
+1a220600
+e8608000
+c000bf06
+20203b31
+793f8025
+44df4017
+68110058
+98000600
+20403eac
+98608600
+18627e00
+60110058
+20600000
+e8608000
+18608602
+c0013eb1
+e8608000
+20600000
+e8610000
+20600000
+6811005e
+194095fb
+99409400
+20600000
+d8400004
+20203eba
+d8400002
+793f8025
+44dfc017
+1f20f201
+6811005e
+1fe21400
+1f227e00
+e1488000
+1fe0ffff
+99409400
+19427e00
+6001027a
+18427e00
+c1010000
+6801027a
+6011005e
+20203eca
+58000000
+6001027a
+20600000
+793f8025
+44e04018
+20758000
+58003fbf
+60014294
+580001a0
+600142d3
+793f8025
+44e0c018
+58001800
+60110054
+58001bff
+60110056
+58001c00
+6011005a
+20403eed
+70806200
+58001c00
+6011005e
+60110060
+58001800
+60110058
+60010266
+793f8025
+44e14018
+68110050
+793ffe0f
+60110050
+20406325
+70804301
+70806281
+20600000
+58001fff
+6011005c
+68108081
+1fe1fe07
+60108081
+70027cff
+20600000
+793f8025
+44e1c018
+6810810c
+98002400
+c301befe
+68110112
+98002600
+d840044f
+98467c00
+24628000
+68110058
+98000600
+20203e83
+6818810c
+284ffe06
+2020bf01
+60108015
+20600000
+793f8025
+44e24018
+6800c271
+203a3f0c
+78347c00
+20600000
+e8610000
+98006000
+98000e00
+e8608000
+98000400
+1e0b7e00
+1fecfe00
+c01fbf15
+20600000
+793f8025
+44e2c018
+18e27e00
+c0003f70
+c000bf2d
+c0013f32
+c001bf36
+c0023f49
+c002bf70
+c0033f5a
+c003bf23
+c0083f5d
+c008bf65
+20203f70
+20403f70
+20407f6b
+20406561
+20403e37
+20403e41
+20206564
+7042d500
+20403e35
+20403ed4
+20203e43
+20403f89
+68110000
+e1410000
+18007206
+20203f73
+e8610000
+600142d3
+60110052
+20600000
+e8608000
+1fe20400
+60108024
+e8608000
+98408400
+79207e07
+60108023
+e8608000
+98408400
+1fe27200
+e8608000
+60108025
+98408400
+c2003f40
+184104ff
+e8608000
+98467c00
+2422bf58
+20203f70
+df200020
+d8a04000
+d8400000
+e8608000
+e0a08000
+98408400
+c2003f4c
+184104ff
+e8608000
+98467c00
+2422bf58
+70802300
+20403f70
+20403ea3
+20203001
+70802300
+20203000
+e8630000
+60034140
+20203f70
+e8608000
+60008283
+1fe27200
+e8610000
+60010284
+1fe20a00
+20406354
+20203f70
+e8608000
+60008283
+1fe27200
+e8610000
+60010284
+d8a01000
+20406354
+68088283
+da201000
+68010284
+20206271
+793f8025
+44e34018
+18007204
+20403f8b
+18007e01
+e1408000
+1e027e00
+e1418000
+18000e0e
+793f8025
+44e3c018
+20403f8d
+18e27e00
+e1408000
+1f227e00
+e1408000
+18000e05
+1f20f202
+20203eb7
+18000eff
+20403f8b
+58000001
+e1408000
+18007201
+20203f79
+1800140c
+20203f8e
+18001408
+20203f8e
+18001406
+20203eb3
+7827fc00
+7824fc00
+e9408000
+08008008
+c2003f91
+78247c00
+08008010
+78447c00
+7844fc00
+7847fc00
+1ff0fe00
+20600000
+70427100
+20600000
+68034273
+680b0040
+98467c00
+20600000
+6800804b
+c2813fa6
+204058fa
+70007c08
+20203f9b
+793ffe02
+6000804b
+20405618
+58000000
+7934fe01
+6000807f
+20203f9b
+20600000
+70007c17
+d8a003ff
+58000000
+2d0ffe1b
+7920fe01
+e0a08000
+58000000
+e0a10000
+68014284
+e0a10000
+6800c286
+e0a10000
+6800c288
+e0a10000
+20203f9b
+70007c18
+20203f9b
+2040656e
+20608000
+d8400007
+204064f5
+2420bfc6
+7042d501
+20600000
+6800c2d5
+c1808000
+20403f29
+20203f83
+793f8025
+44e44019
+6801028d
+1fe20c00
+e8c08000
+1fe1040f
+1ff1fe00
+c004bfeb
+c003bfeb
+c0053ff7
+c002bfe3
+c000bfd7
+20600000
+18427e00
+c002bfdb
+c001bfe2
+20600000
+7009bd27
+20407d86
+6800c132
+c1830000
+18427e00
+c002e455
+20600000
+20600000
+20403ff7
+da200001
+20404005
+680142dc
+e0a10000
+58000000
+e0a08000
+20600000
+da200001
+20404005
+680142dc
+e0a10000
+58000000
+e0a08000
+7009b201
+6800c2e2
+79207e06
+6000c2e2
+7009bd12
+20207d86
+e8c08000
+c000bffa
+20600000
+18c22200
+6800c132
+c1818000
+1a220c00
+e8c08000
+6000cb0f
+6000cb27
+6800cb01
+247a0000
+704b2402
+20600000
+204047dc
+1a220400
+600889b2
+1fe20a00
+1a227e00
+e0a10000
+20600000
+20404196
+20758000
+20404034
+20404055
+580041a1
+60014294
+58004082
+60014292
+580041e6
+60014296
+58004268
+6001428e
+58004246
+60014298
+5800424b
+6001428c
+7008d400
+7008d500
+20404027
+6801470b
+c2863e54
+6800c2b5
+c019c024
+2020423e
+68034273
+203a3e54
+20203e49
+20403e28
+2022c032
+58000001
+6000cae9
+2040427d
+68034b07
+60030040
+60034273
+20406432
+7042b533
+20203e20
+20404284
+20206441
+793f8025
+44e4c019
+70807000
+708078ff
+708071ff
+708072ff
+68108073
+1fe1fe07
+60108073
+70808000
+70808100
+70806f00
+58000013
+1fe9fe00
+1fe0fe07
+60108064
+708083ff
+708084ff
+68108085
+1fe1fe01
+60108085
+68108043
+79207e02
+60108043
+7080630c
+70806630
+68108051
+793ffe01
+60108051
+68108063
+79207e00
+60108063
+20600000
+20404058
+2040405c
+20204060
+6800c737
+c17f8000
+6808c737
+202064e8
+6800c738
+c17f8000
+6808c738
+202064e8
+6800c739
+c17f8000
+6808c739
+202064e8
+6800cb24
+207a0000
+1fe0ffff
+6000cb24
+247a0000
+793f8025
+44e54019
+6800cb27
+1fe22200
+6808c738
+2a2ffe00
+20406500
+6808c737
+2a2ffe01
+20406500
+6808c739
+2a2ffe02
+20406500
+2020407d
+6800caa7
+207a0000
+1fe0ffff
+6000caa7
+247a0000
+20203e7f
+6800caa8
+6000caa7
+20203e81
+704b2601
+202040b4
+20404812
+247a0000
+68034b07
+680b0040
+98467c00
+2022c097
+680083fa
+c000c119
+6800c2e3
+c19f8000
+680c4aba
+68044aaa
+60044aba
+98467c00
+2442c0ac
+680c4ac2
+68044ab2
+60044ac2
+98467c00
+2442c0c7
+20600000
+6800caca
+c03fc0aa
+680c4aba
+68044aaa
+60044aba
+98467c00
+20628000
+d8c04aaa
+da204ade
+204040bb
+da20000a
+20404005
+58000053
+e0a10000
+580001a1
+e0a10000
+68044ade
+e0a40000
+20600000
+60044aaa
+20204099
+20404812
+247a0000
+6800caa9
+c3810000
+204040e0
+6800caaa
+c01cc080
+704b2600
+d8c04aaa
+da204ade
+204040bb
+204040f1
+68044ade
+e0a40000
+20600000
+d8400000
+1a208a02
+df200008
+e8c08000
+c303c0c3
+1fe10e07
+f9200400
+202040c4
+e0a08000
+c20040be
+e2290000
+20600000
+20404812
+247a0000
+204040e0
+6800cab2
+c07fc10d
+c07f4109
+58000000
+60044ade
+204040d6
+6800caa9
+c28140ff
+204040f8
+68024ade
+e0a20000
+20600000
+6800cab2
+207a0000
+7820fc00
+6800cab2
+1fe20e00
+68044ade
+f920fe00
+60044ade
+7840fc00
+20600000
+68014afa
+60014aa1
+20600000
+68014aa1
+207a0000
+68014aa1
+1fe0ffff
+60014aa1
+247a0000
+202040ea
+58000000
+60014aa1
+6801470b
+c284be6b
+6801470b
+c2803e52
+20600000
+da20000a
+20404005
+680142de
+e0a10000
+580001a1
+e0a10000
+20600000
+da200006
+20404005
+680142de
+e0a10000
+580002a1
+e0a10000
+20600000
+204040f1
+58000000
+e0a40000
+204040f8
+58000000
+e0a20000
+6800caa9
+793ffe02
+6000caa9
+20600000
+204040f8
+58002002
+e0a20000
+20600000
+204040f8
+58000040
+e0a20000
+204040f1
+58000000
+e0a10000
+58000010
+e0a38000
+6800caa9
+79207e02
+6000caa9
+20600000
+793f8025
+44e5c019
+6800caa9
+c4008000
+793ffe01
+6000caa9
+6808c718
+58004719
+98408a00
+6800caca
+203a4128
+c015412a
+c0944134
+6008c718
+20203e45
+6008c718
+20600000
+6800c718
+207a0000
+1fe0ffff
+6000c718
+d8a04719
+98a08a00
+58000000
+e0a08000
+78367c00
+20204143
+1fe67c1d
+20610000
+d8400030
+1fe67c27
+24610000
+2022c13d
+d840001d
+98460400
+18418430
+e0a88000
+6800c718
+1fe0fe01
+6000c718
+78567c00
+20204143
+680142de
+207a0000
+da200003
+20404005
+680142de
+e0a10000
+5800ffa1
+e0a10000
+58000000
+79367e00
+e0a08000
+20600000
+78547c00
+78567c00
+68108119
+c3800000
+6810811b
+c2804159
+68108119
+c3034159
+6810811a
+2020414f
+78347c00
+78367c00
+6810811b
+2fec0000
+6810811a
+d8c049ff
+98c08c00
+e8c08000
+c283c191
+2420c182
+78567c00
+98000400
+6800c731
+1fe67c04
+24610000
+1fe22200
+df200003
+d8c0472b
+e8c08000
+98467c00
+2022c14f
+c200416b
+1a227e00
+d8a0472b
+98a08a00
+e0a88000
+1fe0fe01
+6000c731
+6810811b
+1fe97e00
+243a4179
+20204180
+1fe0ffff
+2022c180
+6810811b
+1fe17e01
+c000414f
+c000c180
+20600000
+78367c00
+20600000
+1fe104ff
+6800c731
+207a0000
+98007200
+d8c0472b
+e8c08000
+98467c00
+2022c291
+c2004187
+20600000
+6810811b
+1fe17e01
+c0004180
+c000c14f
+20600000
+1fe10e07
+6800c729
+f920fe00
+6000c729
+20600000
+58000000
+60044aca
+6000c731
+20600000
+6810811b
+6810811a
+68108119
+c300419a
+580000ff
+78347c00
+20600000
+204041ac
+20758000
+6800cb17
+205a4299
+2040429c
+6800c731
+207a0000
+204041bf
+68020b26
+60024afc
+20600000
+6801470b
+c4038000
+6800caa9
+c3800000
+68014aca
+68094b28
+98467c00
+2022c1bb
+68014aca
+68094b29
+98467c00
+2022c1bb
+6801470b
+c28641bb
+20600000
+6800caa9
+79207e00
+6000caa9
+20207e3d
+68118083
+98002400
+68120078
+98002200
+681c0070
+58000000
+60118083
+20000064
+6810811c
+60008b26
+70807800
+68108073
+1fe17ef0
+60108073
+1fe2feff
+6010807b
+580000ff
+60118070
+5800ffff
+60110079
+20000064
+6811811d
+9a417e00
+60018b27
+1a227e00
+60120078
+601c0070
+1a427e00
+60118083
+20600000
+6800c133
+247a0000
+6800c283
+247a0000
+6800c701
+207a0000
+6800c702
+247a0000
+20203e75
+1a627e00
+c003426d
+c0054247
+c0094271
+c0084223
+c0173e32
+c000c23a
+c001420c
+c0024201
+c009c201
+1fe1040f
+1fe17ef0
+c02841f4
+20600000
+793f8025
+44e64019
+6008824e
+6800824e
+207a0000
+1fe0ffff
+6000824e
+20404064
+2040421d
+20404077
+204040e3
+204042b3
+202041f7
+6801470b
+c286423e
+6800caa9
+c3003e0a
+6800caa9
+793ffe00
+6000caa9
+6801470b
+793ffe07
+6001470b
+20600000
+793f8025
+44e6c019
+2040421a
+680142ad
+c2803e0c
+c280c214
+c2814217
+2020423e
+c282c217
+c281c217
+2020423e
+6801470b
+c286423e
+20203e0a
+70428300
+704b0200
+20600000
+6800c709
+207a0000
+1fe0ffff
+6000c709
+247a0000
+20204271
+58000000
+60014a9f
+6000c718
+2040422a
+2040422d
+20403e81
+2020423e
+704af901
+6808c737
+202064fd
+793f8025
+44e74019
+6801470b
+2feffe07
+2040be50
+68014716
+60014707
+680142af
+79207e00
+600142af
+6801470b
+c2803e52
+20600000
+20403e73
+58000000
+60014a9d
+20203e59
+20403e81
+68014716
+60014a9d
+20403e57
+704b0100
+20403e6f
+2040419a
+20204196
+20203e75
+70470900
+70471800
+20404196
+2020419a
+6800cb01
+203a4254
+d8400140
+984f8400
+1c427e00
+98408400
+1c427e00
+98467c00
+24214251
+6808caef
+204064fd
+78347c00
+68120138
+79347e1a
+6012004c
+20403cf4
+70808300
+70808400
+68108085
+1fe17ef0
+60108085
+58000000
+600200a4
+580000ff
+6808c715
+18420e00
+f9207e00
+600200a0
+20600000
+2040425b
+6800809f
+247a0000
+7000a000
+20600000
+58000002
+6000c709
+2040419a
+20204196
+793f8025
+44e7c019
+20407d33
+70428301
+2040419a
+20404196
+20403e7f
+20403e7d
+58000000
+60014707
+6000c709
+20203e79
+6800cae9
+1fe17e07
+6000cb00
+d8400001
+da204b00
+58001fec
+202062a8
+d8400001
+da204b00
+58001fec
+1ff0fe00
+6001021a
+2040624c
+6800cb00
+1fe22400
+1fe17e0f
+c007c2b9
+1a427e00
+6000cae9
+20600000
+18c08bff
+20407ecd
+6800c731
+1fe0ffff
+6000c731
+6800cb23
+c03fc2bd
+202042c0
+68044aca
+60044b19
+202042c0
+6800c731
+203a42ca
+1fe22400
+6802caca
+1fe20400
+18427e00
+2fe1fe7f
+2020c2b0
+1a40a5ff
+58004b12
+9a408a00
+18427e00
+e0a08000
+18427e00
+1fecfe00
+1fe20400
+243a42a1
+6802cb12
+205a42cc
+202042c0
+58000001
+6000cb17
+202042a9
+6800caf8
+207a0000
+1fe0ffff
+6000caf8
+247a0000
+20207d2f
+1a427e00
+1fe17e01
+6000cae9
+20600000
+704b1700
+204042cc
+202042c0
+793f8025
+44e8c01a
+68108119
+c3800000
+6810811b
+c28042d4
+68108119
+c30342d4
+6810811a
+202042c0
+204042cf
+202042c0
+68044aca
+60044b19
+20600000
+58000000
+6000cb17
+6002cb12
+60044aca
+20600000
+6800caa9
+79207e01
+6000caa9
+6810811b
+2feffe00
+6000caa6
+6810811a
+6000caa5
+d8c049ff
+98c08c00
+e8c08000
+6808c731
+18467c04
+242142c0
+98000c00
+58004aca
+98408a00
+18c27e00
+e0a08000
+18408401
+6008c731
+2020429c
+2035c2ef
+580043f5
+d8a042d6
+98a67200
+20407e9f
+793f8025
+44e9401a
+58000475
+d8a00440
+98a67200
+20407e9f
+580002f2
+d8a00286
+98a67200
+20407e9f
+202048c3
+793f8025
+44e9c01a
+18c20400
+18420c00
+e8c10000
+6001028f
+e8c10000
+60010291
+18c27e00
+6001028d
+6800c70a
+c0004307
+20204684
+6801028f
+203a4383
+793f8025
+44ea401a
+68008291
+c000c321
+c0284366
+c028c37b
+c0294379
+c029c379
+20204383
+793f8025
+44eac01a
+20404821
+6800c2e6
+c000431f
+c000c31f
+c001431f
+c001c31f
+c040c31f
+c060431f
+c040431f
+c020431f
+20600000
+58000000
+20600000
+20404312
+247a0000
+2040485e
+20404388
+68090298
+203a4382
+20404868
+68010298
+e0a10000
+18007e01
+e0a10000
+20204383
+6800c3f4
+207a0000
+1fe22200
+793f8025
+44eb401a
+680202fe
+d8400100
+98408400
+1c427e00
+98467c00
+24610000
+7043f400
+1a227e00
+c028433c
+20203b31
+d9000000
+2040485e
+20404404
+2040486a
+20407e70
+20404437
+20404868
+5800000c
+e0a10000
+18007e01
+e0a10000
+20204383
+793f8025
+44ebc01a
+6801029e
+1fe0fe04
+1ff1fe00
+1fe97e00
+1fe08401
+d8c042f0
+e8c18000
+207a0000
+600189e1
+680089e1
+1fe22200
+20404359
+1a427e00
+6000c2f0
+20600000
+d8e00000
+da400000
+18e67c07
+24610000
+aa2fffff
+2020c360
+20204364
+18427e00
+203a4364
+f9202400
+184085ff
+18e08e01
+2020435b
+20404816
+247a0000
+20404312
+247a0000
+2040486c
+20406a3e
+20404348
+20204372
+20404816
+247a0000
+2040486c
+20406a3e
+20404876
+6801029e
+203a4382
+e0a10000
+680142d8
+e0a10000
+20204383
+20403fca
+20204383
+793f8025
+44ec401b
+7002ad00
+2040668f
+680082ad
+c1008000
+20204383
+20404803
+58000000
+6001028f
+60010291
+70029301
+20600000
+793f8025
+44ecc01b
+2040486a
+18002400
+6801028f
+1fe22600
+6801028d
+98000c00
+20404398
+1a627e00
+1a60a7fc
+1fe0fffc
+243a4390
+1a427e00
+60010298
+20600000
+793f8025
+44ed401b
+e8c08000
+c000c3d2
+c00143da
+c001c460
+c0024491
+c002c531
+c003455b
+c003c5ac
+c00445e2
+c004c5f2
+c00543a8
+c005c5f3
+204045f4
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+5800000b
+e0a08000
+18e27e00
+e0a08000
+e8c10000
+c00143b6
+c001c3bc
+20600000
+58020008
+e0a30000
+58000280
+e0a20000
+18007e0c
+202043c1
+5803000c
+e0a30000
+58000006
+e0a40000
+18007e10
+9a40a400
+202043a7
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+600109c6
+1a627e00
+9a262600
+2040486a
+5800000b
+e0a08000
+18e27e00
+e0a08000
+680109c6
+202043b3
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+98c08c00
+1a627e00
+9a262600
+202043a7
+20407e70
+20407e75
+d9000000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+1fe20400
+e8c10000
+1fe21600
+793f8025
+44edc01b
+18427e00
+c000c3ee
+c001c410
+c008c41c
+c009c427
+204045f4
+2020445f
+20407e70
+d8400050
+680142d8
+243a4459
+19627e00
+600142d8
+1c427e00
+600202fe
+204043f8
+20204433
+600902fc
+19627e00
+600102f2
+1a227e00
+600102f4
+1a427e00
+600102f6
+1a627e00
+600102f8
+18e27e00
+600102fa
+20600000
+680902fc
+680102f2
+1fe21600
+680102f4
+1fe22200
+680102f6
+1fe22400
+680102f8
+1fe22600
+680102fa
+1fe20e00
+20600000
+20407e70
+58000051
+d8400051
+680142da
+243a4459
+19627e00
+600142da
+6800c2e1
+79207e00
+79207e01
+6000c2e1
+2020443b
+20407e70
+d8400052
+680142dc
+243a4459
+19627e00
+600142dc
+6800c2e2
+79207e00
+79207e01
+6000c2e2
+2020443b
+20407e70
+1b427e00
+d8400053
+680142de
+243a4459
+19627e00
+600142de
+6800c2e3
+79207e00
+79207e01
+6000c2e3
+2020443b
+58000001
+600102a6
+7043f450
+2020443d
+6800c2e0
+79207e00
+79207e01
+6000c2e0
+58000000
+600102a6
+793f8025
+44ee401b
+20407e75
+58000003
+e0a08000
+18e27e00
+e0a08000
+58000008
+e0a10000
+18427e00
+e0a10000
+19627e00
+e0a10000
+680102a6
+c000c454
+290c0000
+2020c44f
+58000004
+e0a10000
+18007e00
+e0a10000
+5800000c
+2020445b
+e0a10000
+18007e02
+e0a10000
+5800000c
+2020445b
+79201000
+2020443b
+9a40a400
+1a627e00
+9a262600
+2020445f
+202043a7
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+793f8025
+44eec01b
+58000050
+98467c00
+2022c479
+58000051
+98467c00
+2022c47f
+58000052
+98467c00
+2022c48b
+58000053
+98467c00
+2022c485
+20600000
+19627e00
+600142d8
+6800c2e0
+79207e01
+6000c2e0
+202043a7
+19627e00
+600142da
+6800c2e1
+79207e01
+6000c2e1
+20600000
+19627e00
+600142dc
+6800c2e3
+79207e01
+6000c2e3
+20600000
+19627e00
+600142de
+6800c2e2
+79207e01
+6000c2e2
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe20400
+18422200
+793f8025
+44ef401b
+58000050
+98467c00
+2022c4a9
+58000051
+98467c00
+2022c4c7
+58000052
+98467c00
+2022c4b3
+58000053
+98467c00
+2022c4bd
+202045f4
+18a21600
+6800c2e0
+79207e04
+79207e03
+6000c2e0
+19620a00
+d9600050
+680142d8
+1fe20400
+202044d0
+18a21600
+6800c2e2
+79207e04
+79207e03
+6000c2e2
+19620a00
+d9600052
+680142dc
+1fe20400
+202044d0
+18a21600
+6800c2e3
+79207e04
+79207e03
+6000c2e3
+19620a00
+d9600053
+680142de
+1fe20400
+202044d0
+18a21600
+6800c2e1
+79207e04
+79207e03
+6000c2e1
+19620a00
+d9600051
+680142da
+1fe20400
+793f8025
+44efc01b
+58000005
+e0a08000
+18e27e00
+e0a08000
+58000006
+e0a10000
+18427e00
+e0a10000
+18007e00
+e0a10000
+18007e00
+e0a10000
+18007e0a
+9a40a400
+600902ab
+18e27e00
+600082aa
+18007e50
+a961fe00
+2020c4e7
+1fe0fe01
+20600000
+78547c00
+c3810000
+c4000000
+c4008000
+79207e02
+18c20a00
+18a08bff
+e0a08000
+78347c00
+20600000
+6800c2e0
+204044e8
+243444f9
+7002a950
+680142d8
+600102ab
+2020450d
+6800c2e1
+204044e8
+24344500
+7002a951
+680142da
+600102ab
+2020450d
+6800c2e2
+204044e8
+24344507
+7002a952
+680142dc
+600102ab
+2020450d
+6800c2e3
+204044e8
+24740000
+7002a953
+680142de
+600102ab
+793f8025
+44f0401c
+204047d6
+2040485e
+18002400
+2040486a
+18007e04
+e0a08000
+6800c2e5
+e0a08000
+58000008
+e0a10000
+680102ab
+e0a10000
+58000000
+e0a10000
+18007e01
+e0a08000
+18007e02
+e0a08000
+680082a9
+c028c526
+58000030
+e0a10000
+20204528
+580003e3
+e0a10000
+d840000c
+60090298
+20404868
+68010298
+e0a10000
+18007e01
+e0a10000
+7002a900
+202043a7
+18c08c01
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe22200
+793f8025
+44f0c01c
+58000050
+9a267c00
+2022c54a
+58000051
+9a267c00
+2022c54e
+58000052
+9a267c00
+2022c552
+58000053
+9a267c00
+2022c556
+18c08c02
+e8c10000
+98007c00
+202043a7
+6800c2e0
+79207e05
+6000c2e0
+202043a7
+6800c2e1
+79207e05
+6000c2e1
+202043a7
+6800c2e2
+79207e05
+6000c2e2
+202043a7
+6800c2e3
+79207e05
+6000c2e3
+7009bd06
+20207d86
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+1a220400
+20407e70
+793f8025
+44f1401c
+58000050
+98467c00
+2022c583
+58000051
+98467c00
+2022c593
+58000052
+98467c00
+2022c577
+58000053
+98467c00
+2022c57d
+204045f4
+202045a8
+19620400
+680142dc
+98467c00
+2022c589
+204045f4
+202045a8
+19620400
+680142de
+98467c00
+2022c58b
+204045f4
+202045a8
+19620400
+680142d8
+98467c00
+2022c58f
+204045f4
+202045a8
+2040460b
+2020459b
+20404611
+680142dc
+203a459b
+2020459b
+20404606
+680082b1
+243a459b
+2020459b
+19620400
+680142da
+98467c00
+2022c599
+204045f4
+202045a8
+20404601
+2020459b
+20407e75
+58000007
+e0a08000
+18e27e00
+e0a08000
+58000004
+e0a10000
+1a227e00
+e0a10000
+19627e00
+e0a10000
+18007e08
+202045aa
+20407e75
+202045aa
+9a40a400
+202043a7
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+20407e70
+793f8025
+44f1c01c
+58000050
+98467c00
+2022c5c7
+58000051
+98467c00
+2022c5cd
+58000052
+98467c00
+2022c5d3
+58000053
+98467c00
+2022c5d9
+204045f4
+202045e1
+18422200
+19620400
+680142d8
+98467c00
+2042c606
+202045df
+18422200
+19620400
+680142da
+98467c00
+2042c601
+202045df
+18422200
+19620400
+680142dc
+98467c00
+2042c60b
+202045df
+18422200
+19620400
+680142de
+98467c00
+2042c611
+202045df
+20407e75
+202043a7
+202043a7
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+98c08c00
+58000009
+e0a08000
+18e27e00
+e0a08000
+18007e00
+e0a10000
+18007e04
+9a40a400
+1a627e00
+9a262600
+202043a7
+202043a7
+202043a7
+18002400
+2040486a
+58000001
+e0a08000
+18e27e00
+e0a08000
+58000002
+e0a10000
+58000000
+e0a10000
+1a40a406
+da600004
+202043a7
+58000000
+600102a4
+600142da
+7042e100
+20600000
+58000000
+6001029e
+600142d8
+7042e000
+20600000
+58000000
+600142dc
+7042e200
+6800c2e3
+c0004617
+20600000
+58000000
+600142de
+7042e300
+6800c2e2
+c0004617
+20600000
+7009bd07
+20207d86
+680082a8
+793ffe00
+600082a8
+680142de
+207a0000
+2040485e
+680142de
+1fe22200
+18002453
+2020462c
+680082a8
+793ffe07
+600082a8
+680142dc
+207a0000
+2040485e
+680142dc
+1fe22200
+18002452
+204047d6
+2040486a
+18007e06
+e0a08000
+6800c2e5
+e0a08000
+58000004
+e0a10000
+1a227e00
+e0a10000
+1a427e00
+e0a10000
+18000408
+20204673
+793f8025
+44f2401c
+204047d6
+2040486a
+58000002
+e0a08000
+6800c2e5
+e0a08000
+58000004
+e0a10000
+18427e00
+e0a10000
+19627e00
+e0a10000
+d8400008
+20204673
+793f8025
+44f2c01c
+204047d6
+2040486a
+58000004
+e0a08000
+6800c2e5
+e0a08000
+58000008
+e0a10000
+18427e00
+e0a10000
+58000000
+e0a10000
+58000001
+e0a08000
+58000002
+e0a08000
+580003e3
+e0a10000
+d840000c
+20204673
+793f8025
+44f3401c
+204047d6
+2040486a
+58000006
+e0a08000
+6800c2e5
+1fe0fe01
+18a22200
+6000c2e5
+1a220a00
+e0a08000
+58000004
+e0a10000
+18427e00
+e0a10000
+19627e00
+e0a10000
+d8400008
+60090298
+18427e00
+203a4803
+20404868
+68010298
+e0a10000
+18007e01
+e0a10000
+20600000
+6801029e
+203a3b31
+20404876
+6801029e
+e0a10000
+680142d8
+e0a10000
+20600000
+6801028f
+203a4383
+793f8025
+44f3c01c
+68008291
+c000c68f
+c028436e
+c028c37b
+c0294379
+c029c379
+20204383
+793f8025
+44f4401d
+2040485e
+18002400
+2040486a
+1fe20a00
+6801028f
+1fe22600
+6801028d
+98000c00
+2040469f
+1a60a7fc
+2422c699
+1a420400
+20404673
+20204383
+e8c08000
+c00146aa
+c000c6ad
+c001c6b7
+c002c6f4
+c0024727
+c003c7ae
+c003477b
+c00445e2
+c00543c3
+202047ca
+20407e70
+20407e75
+202043da
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c08000
+1a20a3ff
+2422c6b3
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+e8c10000
+1fe67c00
+2022c6c9
+c00146c5
+c00246c5
+202046c7
+7009bd16
+20407d86
+e8c10000
+202046f1
+20407e70
+793f8025
+44f4c01d
+58000050
+98467c00
+2022c6d9
+58000051
+98467c00
+2022c6df
+58000053
+98467c00
+2022c6eb
+58000052
+98467c00
+2022c6e5
+202046f1
+19627e00
+600142d8
+6800c2e0
+79207e01
+6000c2e0
+202046f0
+19627e00
+600142da
+6800c2e1
+79207e01
+6000c2e1
+202046f0
+19627e00
+600142dc
+6800c2e2
+79207e01
+6000c2e2
+202046f0
+19627e00
+600142de
+6800c2e3
+79207e01
+6000c2e3
+20407e75
+1a627e00
+9a262600
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe21600
+e8c10000
+e8c10000
+243a4721
+20407e70
+19620400
+793f8025
+44f5401d
+58000050
+98467c00
+2022c70f
+58000051
+98467c00
+2022c713
+58000052
+98467c00
+2022c717
+58000053
+98467c00
+2022c71b
+6800c2e0
+79207e05
+6000c2e0
+20600000
+6800c2e1
+79207e05
+6000c2e1
+20600000
+6800c2e2
+79207e05
+6000c2e2
+20600000
+6800c2e3
+79207e05
+6000c2e3
+7009bd06
+20207d86
+20407e75
+1a20a3fa
+2022c726
+18c08c01
+1a20a3ff
+20204722
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+18c08c02
+1fe20400
+58000005
+e0a08000
+18e27e00
+e0a08000
+1a20a202
+1a227e00
+e0a10000
+20407e70
+793f8025
+44f5c01d
+58000050
+98467c00
+2022c747
+58000051
+98467c00
+2022c758
+58000052
+98467c00
+2022c75e
+58000053
+98467c00
+2022c764
+20204769
+6800c2e0
+79207e04
+79207e03
+6000c2e0
+c2814755
+680882a8
+79200406
+600882a8
+18e27e00
+1fe0fe01
+600082aa
+6800c2e0
+79207e02
+6000c2e0
+680142d8
+600102ab
+20204769
+6800c2e1
+79207e04
+79207e03
+6000c2e1
+680142da
+20204769
+6800c2e2
+79207e04
+79207e03
+6000c2e2
+680142dc
+20204769
+6800c2e3
+79207e04
+79207e03
+6000c2e3
+680142de
+1fe21600
+20407e75
+19627e00
+e0a10000
+18007e00
+e0a10000
+18007e00
+e0a10000
+18007e0a
+9a40a400
+1a20a3fa
+2022c77a
+e8c08000
+e0a08000
+1a40a401
+1a20a3ff
+20204774
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+20407e70
+793f8025
+44f6401d
+58000050
+1a220400
+98467c00
+2022c795
+58000052
+1a220400
+98467c00
+2022c79a
+58000053
+1a220400
+98467c00
+2022c79c
+2020479e
+58000000
+6001029e
+600142d8
+6000c2e0
+202047a0
+2040460b
+202047a0
+20404611
+202047a0
+58000000
+600102a4
+20407e75
+58000007
+e0a08000
+18e27e00
+e0a08000
+58000004
+e0a10000
+1a227e00
+e0a10000
+19627e00
+e0a10000
+18007e08
+9a40a400
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+20407e70
+793f8025
+44f6c01d
+6800c2e5
+a8e1fe00
+2420c7c6
+58000050
+98467c00
+2022c7c3
+58000051
+98467c00
+2022c7c6
+202047c6
+7042d800
+7042e000
+202047c6
+20407e75
+1a627e00
+9a262600
+20600000
+58000001
+e0a08000
+e8c08000
+e0a08000
+58000002
+e0a10000
+58000000
+e0a10000
+58000006
+9a40a400
+18002604
+20600000
+6800c2e5
+1fe0fe01
+c08047da
+1fe0fe01
+6000c2e5
+20600000
+793f8025
+44f7401d
+da400000
+2040480e
+243a3b31
+20404821
+da401800
+d8e00000
+6808c2e6
+a84fffff
+2020c7ec
+20404845
+19667c00
+202147ec
+2040482c
+202047f2
+1a40a480
+18e08e01
+58000008
+98e67c00
+202147e4
+da400000
+1a427e00
+203a3b31
+20600000
+793f8025
+44f7c01d
+2040481a
+18c08c01
+e8c10000
+20600000
+793f8025
+44f8401e
+2040481a
+18c20a00
+18c20400
+58000000
+e0a18000
+20600000
+793f8025
+44f8c01e
+20404816
+203a3b31
+6801c2ed
+6001c2f0
+6801c2ea
+6001c2ed
+6801c2e7
+6001c2ea
+20600000
+793f8025
+44f9401e
+6801c2e7
+20600000
+793f8025
+44f9c01e
+6801c2ea
+20600000
+793f8025
+44fa401e
+6801c2f0
+20600000
+20404816
+203a3b31
+d8c042e7
+e8c18000
+203a481d
+18c08dfd
+20600000
+793f8025
+44fac01e
+df200004
+d8c042e7
+d8400000
+e8c18000
+1fe17eff
+98418400
+c2004826
+6008c2e6
+20600000
+793f8025
+44fb401e
+2040480e
+243a3b31
+20404816
+203a483a
+6801c2ea
+6001c2e7
+e8c18000
+e0a18000
+e8c18000
+e0a18000
+58000000
+e0a18000
+d8400000
+19627e00
+98e0fe00
+f9200400
+18e08e01
+98e67c00
+2422c83d
+1a4d7e00
+9841fe00
+6001c2f0
+20600000
+793f8025
+44fbc01e
+20404821
+18e22600
+d8400000
+d9600000
+18e27e00
+c0044856
+6800c2e6
+afefffff
+2020c856
+18408480
+18e08e01
+1a227e00
+98467c00
+2022c856
+2021484b
+18427e00
+9a267c00
+2421485c
+18e27e00
+1a620400
+98461600
+1a620e00
+20600000
+793f8025
+44fc401f
+da20007f
+204047dc
+60010294
+1fe0fe04
+60010296
+58000000
+60010298
+20600000
+68010294
+2020488b
+68010296
+2020488b
+793f8025
+44fcc01f
+da2002ff
+204047dc
+6001029a
+1fe0fe04
+6001029c
+58000000
+6001029e
+20600000
+6801029a
+2020488b
+6801029c
+2020488b
+793f8025
+44fd401f
+20407e48
+7002ad01
+2040480e
+247a0000
+da20007f
+204047dc
+600102a0
+1fe0fe04
+600102a2
+58000000
+600102a4
+7002ad00
+20207e56
+680102a0
+2020488b
+203a3b31
+1fe20a00
+20600000
+793f8025
+44fdc01f
+da400000
+da2042e7
+1a20a3fe
+1a20a202
+580042f3
+9a267c00
+2022c89f
+ea208000
+1a20a201
+203a4893
+ea290000
+e8410000
+9a40a400
+1a40a404
+20204893
+1a427e00
+20600000
+d8e0000c
+20203d06
+d8e0000c
+20203d0a
+793f8025
+44fe401f
+20404821
+6800c2e6
+207a0000
+2040488e
+d8400100
+98467c00
+202148a1
+204048a3
+d8a042f3
+da2042e7
+580042f3
+9a267c00
+20628000
+ea208000
+1a20a201
+243a48ba
+e0a10000
+1a20a202
+202048b1
+ea210000
+1a20a202
+1fe20c00
+e8c10000
+e0a10000
+1fe27200
+1f20f202
+20407ecd
+202048b1
+793f8025
+44fec01f
+20404821
+6800c2e6
+207a0000
+da2042e8
+1a20a3fd
+d8c042f3
+1a20a203
+580042f4
+9a267c00
+20628000
+e8c10000
+203a48cb
+1fe0fe04
+1fe27200
+18c22400
+ea210000
+1fe20a00
+1a420c00
+18c08dfe
+20407ecd
+202048cb
+6800c4df
+79207e03
+6000c4df
+20600000
+6800c4df
+793ffe03
+6000c4df
+20600000
+793f8025
+44ff401f
+7855fc00
+70037801
+70036203
+70037901
+5fffffff
+6001037c
+18007e00
+6000837a
+60008385
+6001c209
+6001c20c
+6002c48c
+79207e27
+6002c491
+70446501
+70446600
+20205179
+793f8025
+44ffc01f
+7834fc00
+70036303
+70039b01
+7044e301
+5800ffff
+600144e5
+18007e00
+6002c491
+79207e27
+6002c48c
+202048e2
+79200025
+44804020
+7854fc00
+70036301
+7043ff00
+70009f00
+70456a00
+70456b00
+68010390
+60014561
+68010364
+1feffe05
+1ff1fe00
+60010390
+202048e2
+20404976
+20404b91
+2040517c
+2020497d
+79200025
+4480c020
+20404976
+20403d67
+68008363
+c001c91c
+20204932
+79200025
+44814020
+7834fc00
+20405170
+2021492f
+20403d45
+204049c4
+20404bd8
+7856fc00
+20404a5a
+24768000
+79200025
+4481c020
+68008005
+1fe0fe01
+60008005
+20404b51
+7854fc00
+20600000
+2040495b
+7854fc00
+20600000
+79200025
+44824020
+20407acf
+204052a9
+78577c00
+20405170
+2021495b
+20403d45
+204049c4
+20404a20
+242c494f
+20404968
+2036c940
+20204949
+79200025
+4482c020
+20404968
+20404b51
+20404bd8
+68008302
+c2824955
+20404bd0
+243a4955
+79200025
+44834020
+20404a63
+20407d9e
+68008385
+c281c95b
+79200025
+4483c020
+20405287
+20404b43
+20404b22
+202038d1
+79200025
+44844021
+78377c00
+20404a5a
+2036c940
+2020494c
+79200025
+4484c021
+20404962
+20403e17
+20407a96
+7009bd15
+20207d86
+70037800
+70036300
+70036200
+70456b00
+70456a00
+20600000
+79200025
+44854021
+68008005
+1fe0fe01
+60008005
+68008362
+c3818000
+79207e03
+60008362
+68014561
+60010390
+58000000
+60024596
+20600000
+79200025
+4485c021
+70890f36
+70890b5f
+783b7c00
+70891407
+20203d45
+79200025
+44864021
+70890f2e
+70890bff
+785b7c00
+70891403
+db600000
+20600000
+7844fc00
+7843fc00
+6801838a
+98001e00
+68008016
+1fed8400
+79200401
+18431c00
+20600000
+20404996
+204039b9
+58000500
+20403b35
+202039bf
+2036b9d0
+20404996
+202039c9
+79200025
+4486c021
+204039b1
+680083b0
+243a49aa
+68008016
+1fe67c24
+202149a4
+18000400
+c1128000
+18000418
+c1130000
+1800044e
+20600000
+1fe67c0a
+202149a7
+1fe0fe01
+1fe3fe00
+1fe08402
+20600000
+68008016
+1fe38400
+20600000
+d84001f4
+207a0000
+d84000fa
+c1008000
+d8400096
+c1010000
+d8400064
+c1018000
+d840004b
+c1020000
+d8400032
+c1028000
+d8400028
+c1030000
+d8400014
+20600000
+588e89be
+1fed7e00
+1fe1fed6
+98001200
+58555555
+6001838a
+20600000
+79200025
+44874021
+78287c00
+68020386
+98001200
+204049fb
+58000200
+2034c9ce
+68010370
+1fe37e00
+d8400500
+9840fe00
+20403abd
+1b427e00
+600303b5
+20600000
+79200025
+4487c021
+68008016
+1fe0fe01
+60008016
+c1940000
+70001625
+20600000
+79200025
+44884022
+1a208c01
+e8c08000
+c4000000
+1a208a1a
+e8a10000
+1fe0fe01
+e0a10000
+1a208c19
+e8c08000
+1a208a18
+e8a88000
+9840fe00
+1fe67c24
+202149ed
+1fe0ffdb
+e0a08000
+20600000
+79200025
+4488c022
+68028392
+18000400
+18007225
+c30049f6
+18408401
+1fe37e00
+c20049f4
+1840ffff
+60008384
+20600000
+79200025
+44894022
+6800837a
+98000e00
+680a8392
+a84fffff
+2020ca13
+79200025
+4489c022
+68008384
+98e67e00
+20214a09
+1fe60fff
+20204a02
+18e27200
+18000e00
+a84fffff
+2020ca0e
+1f20f201
+1f227e00
+203a4a13
+18e08e01
+1f20f3ff
+20204a0b
+18e27e00
+60008016
+20600000
+2034ca19
+37c18200
+20600000
+d9600ea0
+34730200
+20600000
+78487c00
+680143fc
+1fe21600
+20204a26
+79200025
+448a4022
+78287c00
+68010370
+680a4596
+98409600
+2040498e
+79200025
+448ac022
+20404985
+7856fc00
+7826fc00
+7830fc00
+78507c00
+19623600
+37c18400
+20374a33
+1b420400
+600b0099
+242c36c6
+20374a3a
+dd2001e0
+1c225000
+68008362
+c301ca3a
+2055bbed
+79200025
+448b4022
+20403a50
+7823fc00
+7824fc00
+09800008
+19897e00
+60008302
+09800008
+19897e00
+e0a08000
+1fe1723f
+2022ca4b
+09800008
+19897e00
+e0a08000
+c2004a47
+79200025
+448bc022
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+202336c6
+7836fc00
+68008017
+1fe0a200
+20403a13
+7846fc00
+202039b1
+79200025
+448c4023
+20404a65
+68088017
+204039b9
+204039bf
+78287c00
+d960157c
+20204a27
+20404a65
+202036c6
+79200025
+448cc023
+20404985
+20404993
+20404a6d
+6800c132
+c0055d8e
+20600000
+79202a00
+782efc00
+78307c00
+7850fc00
+20404a16
+19317e00
+1fecfe00
+1ff1fe00
+08008628
+7823fc00
+7824fc00
+79200025
+448d4023
+6800c465
+08008608
+e8c08000
+1fe1723f
+08008608
+2022ca83
+e8c08000
+08008608
+c2004a80
+78247c00
+08008618
+78447c00
+37d38200
+20000064
+784efc00
+20600000
+79200025
+448dc023
+6800c520
+c000ca9b
+6800c521
+1ff27e00
+1febfe00
+6000c465
+6808c400
+1840fe06
+6000c466
+6803453e
+60034467
+18427200
+d8c04401
+20407ec0
+20204aab
+680944f8
+20404f6a
+1a220a00
+58000001
+e0a08000
+6800c522
+1ff27e00
+1febfe00
+1fe0fe01
+6000c465
+5800000c
+6000c466
+6803453e
+60034467
+68034273
+e0a30000
+79200025
+448e4023
+68008000
+1fe0fe01
+60008000
+db600708
+7856fc00
+20204a5a
+79200025
+448ec023
+6800c53b
+c1808000
+68008000
+1fe0fe01
+60008000
+d8400c03
+6800c53c
+7d3a0406
+1a227e00
+7d3a0407
+60094465
+6803453e
+e0a30000
+68030372
+e0a30000
+20204a5a
+79200025
+448f4023
+d8400004
+6800c521
+7d3a0406
+6008c465
+6808c420
+1840fe06
+6000c466
+6803453e
+60034467
+d8c04421
+18427200
+20407ec0
+20204a63
+79200025
+448fc023
+18007fff
+38080001
+60028392
+204049ef
+18007204
+d8a00386
+20405918
+68014539
+60010390
+180a7e00
+1fe17e0f
+1fe67c04
+20214adf
+6000837b
+6000860a
+79200025
+44904024
+680943f7
+60090364
+18422600
+1c40fe07
+9a66fc00
+20407f53
+18072200
+9a267e00
+9a60fe00
+680943f5
+9840fe00
+60020366
+9c462200
+1a20a3fa
+da402205
+6800c532
+7d3a2406
+6800c52b
+7d3a2407
+1a427e00
+60014465
+6803453e
+e0a30000
+68030372
+e0a30000
+68020386
+e0a20000
+180a7e00
+e0a10000
+180a7e00
+e0a08000
+18007e02
+e0a08000
+1a2b7e00
+e0a10000
+1a6b7e00
+e0a10000
+79200025
+4490c024
+68014537
+e0a10000
+68014539
+e0a10000
+68028392
+e0a28000
+6800837b
+d84000a0
+9841fe00
+e0a08000
+20404a63
+58004465
+1fe08c12
+e8c18000
+6001838a
+20600000
+79200025
+44914024
+7854fc00
+202049bd
+68008362
+c4028000
+6801037c
+68090382
+98467e00
+24610000
+79200025
+4491c024
+6800c132
+c084cb2d
+70413101
+68008362
+793ffe05
+793ffe03
+60008362
+68020366
+68090364
+98462200
+79200025
+44924024
+6800c45b
+6000838d
+e8c90000
+e8c10000
+1febfe00
+60010364
+184b8400
+9840fe00
+e8ca0000
+600a038e
+9a20fe00
+60020366
+20205199
+79200025
+4492c024
+68008362
+c4030000
+6801037c
+68090382
+98467e00
+24610000
+68008362
+793ffe06
+60008362
+6802c456
+60028392
+202049ef
+79200025
+44934024
+20405179
+20404b66
+68008302
+1fe37e00
+9842fe00
+2feffe02
+7920800f
+68008303
+203a4b61
+68008362
+c3024b61
+204071b6
+20407122
+247a0000
+c6078000
+68088379
+79400402
+60088379
+20204fa5
+79200025
+4493c024
+68088379
+284c0005
+20608000
+68008302
+1fe3fe00
+9842fe00
+c4018000
+793f8405
+79400403
+60088379
+28400603
+24608000
+6800c467
+c002cb79
+6800c56b
+c0014b7d
+20600000
+68008362
+79207e04
+60008362
+20600000
+79200025
+44944025
+70456b00
+dfe00000
+60024496
+6002c48c
+79207e27
+6002c491
+68008362
+793ffe04
+60008362
+20600000
+79200025
+4494c025
+204049d4
+20404a1c
+68008001
+1fe0fe01
+60008001
+20600000
+79200025
+44954025
+6800c3f9
+c1808000
+d8e00003
+20407ee2
+247a0000
+680143fa
+680943fc
+98467e00
+d8e00003
+20407ed4
+7854fc00
+20404b1e
+20404b89
+24768000
+79200025
+4495c025
+68030304
+60030372
+68008002
+1fe0fe01
+60008002
+20404bb4
+20748000
+20404ab3
+24768000
+79200025
+44964025
+68008004
+1fe0fe01
+60008004
+6804830a
+60048100
+20600000
+79200025
+4496c025
+680083bf
+c18d8000
+68030372
+680b452c
+98467c00
+24628000
+2040327a
+24628000
+20404ad4
+204048f5
+79200025
+44974025
+70427100
+70039900
+7043f900
+7003bf00
+7009bd2c
+20404bd6
+20203260
+da200001
+68008302
+c3830000
+da200000
+20600000
+d8c04544
+20207fa8
+da204544
+20207fa2
+da204544
+20207fa4
+da204544
+20207fa6
+da204544
+20207f88
+79200025
+4497c025
+68008379
+c3828000
+6800c132
+c004cbe2
+da204544
+20407f95
+243a4bf1
+20204f87
+6800c8c8
+243a4be9
+68008362
+c3024bed
+68008303
+203a4bed
+20204f87
+6800c8c8
+1fe0ffff
+6000c8c8
+20204f87
+6800c56a
+c0814bf0
+7048c803
+20204bde
+1fe20400
+79200025
+44984026
+18427e00
+c302cc0d
+18000203
+793ffe05
+6000c467
+79200025
+4498c026
+6800c467
+c0004c54
+c000cc56
+c0014c58
+c001cc5a
+c0024c6b
+c002cc84
+c0034c86
+c003cc9c
+c0044ca0
+c004cca0
+c0054ca4
+c005cca4
+c0064ca6
+c006ccaa
+c007ccae
+c009cca4
+20203b31
+70446a00
+18000202
+c3034c26
+c0294c26
+c0694c26
+70446906
+793ffe06
+6000c46b
+79200025
+44994026
+6800c46b
+c000ccbb
+c0014cc3
+c001ccda
+c0024ce8
+c002cced
+c0034cf2
+c003cd10
+c0044d27
+c004cd2d
+c0054d32
+c005cd35
+c0064d39
+c006cd64
+20203b31
+70446904
+6000c46b
+79200025
+4499c026
+6800c46b
+c000cd6f
+c0014d75
+c001cd75
+c0024d78
+c002cd7d
+c0034d93
+c003cda7
+c0044dec
+c004cdf4
+c0054e58
+c005ce60
+c0064e77
+c006ce7c
+c0074e8b
+c007ce92
+c0084eb8
+c008cec0
+c0094f1e
+c009cf25
+c00b4f27
+c00bcf46
+c00c4f66
+c00ccf68
+c00dcf77
+c00ecf79
+c00f4f7b
+c0294f7d
+c0694f7f
+c04f4c4b
+c04fcc4d
+c00fcf29
+20203b31
+7009bd10
+20404bd6
+58000011
+60014465
+68008379
+79207e05
+60008379
+7009bd12
+20204bd6
+1800040c
+20204f89
+18000408
+20204f89
+18000402
+20204f89
+18007e00
+e0a40000
+e0a10000
+18a20400
+d8a04551
+18007208
+20405918
+68044551
+e0440000
+18a20400
+d8a0449a
+18007204
+20405918
+6802449a
+e0420000
+18000417
+20204f89
+18a20400
+d8a04559
+18007208
+20405918
+68044559
+e0440000
+18a20400
+d8a0449e
+18007204
+20405918
+6802449e
+e0420000
+204070c8
+6800c4b2
+c0004c7e
+7009bd25
+20404bd6
+1800040d
+20204f89
+70456b00
+7009bd2d
+20404bd6
+20407e29
+1800040d
+20204f89
+18000401
+20204f89
+18000401
+2034cf89
+6800c132
+c004cc92
+6800c56a
+c0814c8f
+7009bd46
+20404bd6
+20204c90
+70456b03
+18000401
+20204f89
+70413101
+6800c56a
+c0814c97
+7009bd46
+20404bd6
+70456b03
+18000401
+20404f89
+7048c201
+20600000
+6800c550
+e0a08000
+18000402
+20204f89
+58000001
+e0a40000
+18000409
+20204f89
+18000401
+20204f89
+6802c5a9
+e0a28000
+18000406
+20204f89
+58000006
+e0a08000
+18000402
+20204f89
+18a08bff
+5800000c
+e0a10000
+58000005
+e0a10000
+5800b412
+e0a10000
+58000008
+e0a10000
+6804458d
+e0a40000
+18000202
+20204f81
+59000401
+600244d5
+58070710
+e0a18000
+680344d6
+6003446c
+1800040b
+20204f89
+6800c132
+1fe67c0a
+2042ccd1
+6800c132
+c084cccd
+70474601
+6800c4da
+c280cccd
+58010010
+e0a18000
+680344dd
+6003446c
+1800040b
+20204f89
+6808c4e1
+6800c4da
+2feffe01
+79208401
+6008c4e1
+6808c4e2
+79208401
+6008c4e2
+20600000
+6800c563
+c000cce1
+204070c2
+d8a0446c
+204071c0
+18000415
+20204f89
+d8a044c3
+20405917
+20406ee7
+d8a0446c
+20406f24
+18000415
+20204f89
+68040352
+2034cceb
+680444c3
+20404d69
+20204f89
+70456a00
+dfe00008
+e0a08000
+18000406
+20204f89
+7009bd29
+20407d86
+7009bd47
+20404bd6
+6800c132
+c004cd01
+680444a2
+20404d69
+20404f89
+6800c52b
+c0003e7b
+68008377
+2fe180c0
+2020be7b
+20600000
+58112233
+6001c4a2
+58445566
+e0a18000
+58778899
+e0a18000
+58001122
+e0a18000
+58334455
+e0a18000
+58000066
+e0a08000
+680444a2
+20404d69
+20204f89
+6800c132
+c004cd22
+6800c4da
+c300cd17
+7009bd48
+20404bd6
+20204d19
+70456b03
+70456a03
+d8a04571
+1800720a
+20405918
+68014571
+6001446c
+68044573
+e0a40000
+1800040f
+20204f89
+d8a0446c
+18007208
+20405918
+1800040f
+20204f89
+7009bd49
+20404bd6
+58000000
+6004446c
+e0a40000
+20204f81
+6800c532
+6000c46c
+6803453e
+e0a30000
+20204f81
+d8a0446c
+20405917
+20204f81
+6800c4df
+6000c46c
+18000406
+20204f89
+680083da
+c001cd4e
+d8400041
+60094467
+79200025
+449a4026
+d8200002
+58000006
+60014469
+d8a0446c
+df200016
+d8c0465a
+20407ec0
+7003db16
+7044661b
+68088379
+79200404
+60088379
+7003da03
+68088379
+20204f93
+7003da00
+680083db
+c00b4d5e
+df20000f
+7044660f
+20404d58
+70456402
+70456603
+7003db00
+20600000
+d8c0465a
+98c08c00
+d8a04467
+20407ec0
+d8200001
+20204f90
+7003db31
+df20001b
+7044661b
+20404d58
+7003da03
+20600000
+20406e86
+d8a0446c
+20406f24
+18000415
+20204f89
+6004446c
+e8c40000
+e0a40000
+18000415
+20600000
+70039d0a
+70446b01
+6801839a
+6001c46c
+6800839d
+e0a08000
+20204f81
+6801454c
+e0a10000
+20204f81
+680144e3
+6001446c
+680144e5
+e0a10000
+20204f81
+d9600002
+18007e01
+6000c46c
+204051e0
+204051ea
+203a4d91
+24214d8e
+78547c00
+e0a10000
+e8c08000
+1fe27200
+20407ec0
+196097ff
+2022cd91
+e8c08000
+98c08c00
+20204d81
+e8c08000
+98c08c00
+20204d8b
+20344d6e
+20204f81
+680144e3
+203a4c4d
+6001446c
+680144e5
+e0a10000
+680144fb
+e0a10000
+680144e8
+e0a10000
+20204f81
+78547c00
+680944e3
+680144e5
+98467c00
+24214da4
+18427e00
+c1800000
+78347c00
+70039d01
+20204d6f
+20404d9d
+20740000
+680944fb
+58002800
+98467c00
+2022cdb7
+58002801
+98467c00
+2022cd6e
+58002802
+98467c00
+2022cd6e
+58002803
+98467c00
+2022cd6e
+20204d6e
+7003d900
+680944e3
+600909c6
+2040521a
+243a4d6e
+680909c6
+2040521a
+243a4dd0
+18c22200
+680083d8
+1fe27200
+6808c4e7
+98467c00
+2422cdcc
+da4044e8
+20407f55
+2022cdd3
+680103c8
+680944fb
+98467c00
+2022cddb
+680109c6
+1fe0fe01
+600109c6
+20204dbc
+680083d9
+c000cddb
+20204d6e
+680103c8
+680944fb
+98467c00
+2422cdcc
+7003d901
+680909c6
+600903c3
+20204dcc
+680083d9
+c0004dcc
+7003d902
+680909c6
+184085ff
+600903c5
+680103c3
+1fe22200
+680103c5
+1fe22400
+70446b07
+1a227e00
+6001446c
+1a427e00
+e0a10000
+18000409
+20204f89
+680144e3
+e0a10000
+680144e5
+e0a10000
+680144e8
+e0a10000
+1800040b
+20204f89
+680944e3
+600909c6
+204051e0
+204051f8
+18c08dfe
+18c27e00
+600103c1
+680944fb
+58002803
+98467c00
+2422ce3d
+d9600002
+79200025
+449ac026
+20404eff
+24214e13
+680909c6
+20405217
+c000ce13
+20404f0b
+2422ce11
+24344e15
+78547c00
+20404e28
+20404efb
+20405217
+20404e2f
+196097ff
+2022ce13
+20404efb
+20204e02
+20344d6e
+20204f13
+20404f0e
+20404efb
+20405217
+6800c46c
+c00ace13
+680083c7
+1fe0fe05
+6808c46c
+98467c00
+2422ce13
+20407e64
+680109c6
+1fe0ffff
+e0a10000
+20404f1a
+20404e2f
+196097ff
+2022ce13
+20204e11
+680109c6
+6001446d
+680083d8
+1fe27200
+20407e67
+20407ec0
+20207e6a
+20407e64
+680109c6
+e0a10000
+20407e6a
+680083c7
+1fe27200
+1fe0fe05
+6000c46c
+20407e64
+20407e67
+9f260c00
+18c08dff
+20407ec0
+20207e6a
+680944e3
+600909c6
+20404eff
+24214d6e
+20405217
+c000cd6e
+20404f0b
+2422ce56
+6800c4fa
+c0814e4d
+680144fb
+d8402a00
+98467c00
+2422ce4d
+6800c440
+20204e4e
+680083d8
+1fe27200
+1fe0fe02
+6000c46c
+680109c6
+e0a10000
+20407e67
+20407ec0
+20204f81
+20404efb
+20204e3f
+6800c464
+1fe0ffff
+6000c464
+1fe3fe00
+98c08c00
+e8c90000
+6009446c
+20204f81
+6800c5a8
+c3004e66
+6801039b
+6809458b
+98467c00
+2022ce71
+6809039b
+204051f5
+203a4d6e
+e8c08000
+203a4f81
+1fe67c16
+20214e6e
+18007e16
+1fe27200
+20407ec0
+20204f81
+6800c56c
+203a4e66
+68008362
+c2824e66
+70039d05
+20204d6f
+58000003
+6001446c
+58000008
+e0a10000
+20204f81
+680144e7
+98002200
+6809039b
+204051f5
+203a4d6e
+e8c08000
+9a267200
+24214d6e
+1f267c16
+20214e87
+18007216
+1a227e00
+98c08c00
+20407ec0
+20204f81
+58000003
+e0a10000
+58000007
+e0a10000
+58000009
+e0a10000
+20204f81
+6800c464
+1fe22600
+da200309
+da40446c
+d9600000
+7858fc00
+1a220c00
+e8c90000
+18c22200
+204051f5
+203a4eab
+e8c08000
+1fe27200
+99609600
+19667c18
+24214eb0
+1a420a00
+e8c08000
+e0a08000
+c2004ea3
+18a22400
+7838fc00
+1a60a7ff
+2022ceab
+20204e98
+2438ceb6
+7858fc00
+19620400
+18408405
+20204f89
+2438ceb6
+7858fc00
+19627e00
+9f260400
+18408405
+20204f89
+70039d10
+20204d6f
+6801039b
+203a4c4d
+e0a10000
+5800ffff
+e0a10000
+58002800
+e0a10000
+20204f81
+d9600002
+680144e3
+600109c6
+7003d900
+680944e3
+600909c6
+204051e0
+204051f8
+18c08dfe
+18c27e00
+600103c1
+79200025
+449b4026
+20404eff
+24214ef1
+680909c6
+20405217
+c000cef4
+20404f03
+2422ceed
+680083d9
+c000cef4
+24344edd
+78547c00
+680083d8
+1fe0fe04
+6000c46c
+20407e6a
+20204ee8
+6800c46c
+c00a4ef4
+680083d8
+1fe0fe04
+6808c46c
+98467c00
+2422cef4
+680109c6
+1fe0ffff
+600103c5
+20404f15
+680109c6
+600103c3
+20404f0e
+196097ff
+2022ceef
+20404efb
+20204ecd
+7003d901
+20204eed
+680109c6
+600103c5
+20204ef8
+680109c6
+1fe0ffff
+600103c5
+20204ef8
+20344d6e
+20404f15
+20204f13
+680909c6
+18408401
+600909c6
+20600000
+680909c6
+680144e5
+98467c00
+20600000
+6808c4e7
+da2044e8
+680083c7
+1fe27200
+98467c00
+24628000
+da4003c8
+20207f55
+6808c4fa
+da2044fb
+20204f05
+680083d8
+60008100
+1fe27200
+20407e67
+20207ec0
+20407e64
+20204f81
+20407e64
+680103c3
+e0a10000
+680103c5
+e0a10000
+68008100
+1fe27200
+20407ec0
+20207e6a
+680144f8
+6001446c
+6800c50b
+1fe27200
+d8c0450c
+20407ec0
+20204f81
+18000405
+20204f89
+18000406
+20204f89
+680083da
+c000cf2e
+c0014f30
+7003da00
+20600000
+6801429e
+20207f69
+680145a0
+203a3b31
+680945a6
+203a3b31
+98467e00
+d840001b
+20407faf
+1fe27200
+da200a41
+680145a6
+9a20a200
+9f20fe00
+600145a6
+680945a0
+98460400
+2442cf5e
+7003da02
+d8a04467
+1a220c00
+20407ec0
+d8200001
+20204f59
+680145a0
+203a3b31
+1fe08405
+60094467
+d8400012
+20407faf
+1fe27200
+600145a6
+680945a0
+98460400
+2442cf5e
+7003da02
+d8200002
+680145a4
+6001446c
+680145a2
+e0a10000
+d8c00a41
+20407ec0
+58004467
+98a67e00
+1fe60400
+6008c466
+20204f90
+6801c544
+243a4f62
+7045461f
+20600000
+20404bd4
+243a3b31
+7045451f
+20600000
+18000406
+20204f89
+18000405
+20204f89
+79200025
+449bc026
+18408401
+204051f5
+18c08dfe
+e8c10000
+d8402902
+98467c00
+24628000
+18c08c01
+18c22200
+e8c08000
+20600000
+6801429c
+20207f69
+18000406
+20204f89
+18000406
+20204f89
+18000406
+20204f89
+18000406
+20204f89
+79200025
+449c4027
+58004467
+98a67e00
+1fe60400
+20204f89
+18000400
+18000201
+79200025
+449cc027
+6008c466
+28200602
+2420cf90
+1840fffc
+60014467
+68088379
+20404bd0
+7d3a0404
+79200405
+18417efc
+9821fe00
+60008379
+1fe17e1f
+6000c465
+79200025
+449d4027
+6800c465
+28200601
+2420cfa0
+6800c466
+207a0000
+6803c466
+68008362
+c4020000
+204071b6
+20207109
+79200025
+449dc027
+20404bd2
+243a3b31
+247a0000
+68008303
+207a0000
+68008302
+2fe00601
+2020d307
+68038303
+68008302
+2fe00602
+2020cfcb
+68008304
+600083bb
+1fe22600
+79200025
+449e4027
+1a627e00
+c000501f
+c000d02b
+c0015033
+c001d039
+c002504a
+c002d04f
+c0035054
+c003d059
+c004505a
+c004d05c
+c005505d
+c005d062
+c0065065
+c006d068
+c0095063
+6000c550
+7009bd27
+20204bd6
+68008303
+1fe17e1f
+207a0000
+68010304
+6001039e
+68010306
+c002500d
+c0034ffb
+20600000
+70456901
+6800839a
+c0094fea
+c00b4fee
+c0294fe6
+70456900
+20600000
+68008303
+1fe22400
+da200304
+2040516d
+68008303
+6809459a
+9840fe00
+6001459a
+6809459c
+98467c00
+20600000
+20404fdb
+24628000
+70456900
+20600000
+20404fdb
+24628000
+70456900
+20205123
+680945a0
+68008303
+1fe27200
+9840fe00
+600145a0
+dfe00a41
+98408a00
+d8c00304
+20407ec0
+20404fdb
+24628000
+70456900
+20205169
+79200025
+449ec027
+e8c08000
+c000d069
+c001508b
+c001d090
+c00250a0
+c002d0a8
+c00350d5
+c003d0d7
+c00450d8
+c004d0e0
+c00550e3
+c005d0e4
+c00650c9
+c006d0d0
+7009bd45
+20204bd6
+79200025
+449f4027
+e8c18000
+6001839a
+c00150e8
+c001d0e5
+c00250eb
+c00350ee
+c00450f8
+c005510c
+c0065110
+c0075114
+c008511a
+c0095120
+c00b5142
+c00c516b
+c029511e
+20600000
+e8c48000
+6004c45b
+e8c10000
+60010382
+68008362
+79207e05
+60008362
+6800c132
+c1848000
+70413100
+7048c71e
+20600000
+e8c28000
+6002c456
+e8c10000
+60010382
+68008362
+79207e06
+60008362
+20600000
+6800c132
+c084d036
+7048bb01
+58000014
+60010390
+20600000
+e8c40000
+60044573
+e8c10000
+60014571
+e8c40000
+60044551
+e8c20000
+6002449a
+7009bd24
+20404bd6
+70456b01
+6800c56a
+c1010000
+6800c132
+c004e418
+c1850000
+2020640c
+e8c40000
+60044559
+e8c20000
+6002449e
+202070c8
+68008362
+79207e04
+60008362
+7009bd26
+20204bd6
+20748000
+7009bd26
+20404bd6
+7009bd32
+20207d86
+20600000
+7009bd29
+20204bd6
+20600000
+70456b02
+7009bd2b
+20404bd6
+7009bd33
+20207d86
+20600000
+7009bd33
+20204bd6
+20748000
+7009bd2c
+20204bd6
+20600000
+6000c4d5
+e8c30000
+e0a30000
+7009bd42
+20404bd6
+6800c132
+c004d07b
+20405086
+70456a01
+6800c4d6
+c0005078
+c000d078
+c001d078
+6800c56c
+c001507d
+dfe00000
+6002456d
+20600000
+7048ba01
+20600000
+da20456d
+1a220a00
+df200003
+20405918
+6801456f
+1fe17e07
+6001456f
+7009bd34
+20207d86
+6800c4d8
+c3818000
+6800c56c
+c4038000
+20203e6b
+6000c4dc
+e8c30000
+e0a30000
+7009bd43
+20204bd6
+18c22200
+6800c56c
+c041d09a
+1a220c00
+d8a044b3
+20407e87
+7009bd44
+2034cbd6
+7009bd43
+20204bd6
+1a220c00
+d8a044b3
+20407e87
+70456402
+70456608
+20600000
+18c22200
+6800c563
+c000d0ab
+1a220c00
+204070ba
+2022d0c0
+7009bd45
+20404bd6
+70456a00
+7009bd30
+20207d86
+d8a00352
+1a220c00
+20407e87
+6800c56c
+c041d0b6
+20406e6e
+7009bd44
+20404bd6
+6800c56c
+c0415d60
+20600000
+20406edc
+d8a00a11
+20406f24
+da200a11
+da4044b3
+df200010
+20407f55
+2422d2d8
+7009bd44
+20204bd6
+204070b5
+7009bd31
+20407d86
+7044b201
+70456a02
+7009bd23
+2034cbd6
+7009bd44
+20204bd6
+68008303
+1fe0fffb
+600083db
+1fe27200
+d8a008e2
+18c08c05
+20207ec0
+d8a00992
+20407e87
+70456606
+70456402
+20600000
+d8a00342
+20207e87
+20600000
+d8a0457b
+20407e87
+6800c52b
+c1000000
+68008377
+2fe180c0
+20608000
+20203e7b
+70456b03
+70456a03
+20600000
+20600000
+20600000
+68010309
+6001454e
+20600000
+204050e5
+7009bd03
+20204bd6
+204050fc
+7009bd05
+20204bd6
+204050fc
+e8c10000
+600144fb
+20407e6d
+d8a044e7
+6801039e
+1fe0fff9
+20405105
+7009bd07
+20204bd6
+204050fc
+20405109
+7009bd09
+20204bd6
+1fecfe00
+600144e3
+e8c10000
+600144e5
+20600000
+20407e6d
+d8a044e7
+6801039e
+1fe0fffb
+e0a08000
+1fe27200
+20407e67
+20207ec0
+20407e6d
+d8a044fa
+20205103
+68010309
+6001039b
+7009bd0b
+20204bd6
+e8c10000
+600144e7
+7009bd0d
+20204bd6
+68008303
+1fe0fffb
+1fe37e00
+6000c464
+7009bd0f
+20204bd6
+204050fc
+20405101
+7009bd11
+20204bd6
+2040512f
+20205125
+2040512f
+20405125
+24628000
+7009bd13
+20204bd6
+68008303
+1fe0fffc
+6001459a
+1fe0fffd
+e8c90000
+6009459c
+6009459e
+184085fd
+98467c00
+20600000
+68008303
+1fe0fff9
+1fe27200
+1f222400
+6800c5a8
+c300d140
+6809039b
+204051f5
+207a0000
+e8c08000
+9f267c00
+2021513c
+1fe27200
+18c20a00
+1f222400
+d8c0030b
+20407ec0
+da20030b
+2020516d
+68008303
+1fe0fffc
+6001459a
+e8c90000
+6009459c
+184085fe
+6009459e
+68008303
+1fe0fff7
+600145a0
+1fe27200
+1f222400
+6800c5a8
+c300d15b
+6809039b
+204051f5
+203a5169
+e8c08000
+9f267c00
+20215157
+1fe27200
+18c20a00
+1f222400
+d8c0030d
+20407ec0
+1a427200
+d8a00a41
+d8c0030d
+20407ec0
+da20030d
+6801030b
+600145a2
+6809039b
+600945a4
+2040516d
+6801459a
+6809459c
+98467c00
+24628000
+7009bd17
+20204bd6
+7009bd19
+20204bd6
+6801429a
+207a0000
+98007a00
+680a037e
+20403b1e
+98461600
+19627e00
+68090390
+18520400
+18438400
+98467e00
+20600000
+20403b1e
+6002037e
+20600000
+70001624
+79200025
+449fc027
+6800c3ff
+207a0000
+d8e00001
+20407ee2
+247a0000
+7854fc00
+78287c00
+20404b1e
+204049d4
+20404a8a
+2436d193
+68008003
+1fe0fe01
+60008003
+79200025
+44a04028
+68008302
+1fe17e0f
+c001cac5
+c002d1af
+20002710
+68008016
+c093d17d
+d8e00001
+6801451e
+20207ed4
+79200025
+44a0c028
+68008399
+204049ad
+68010364
+984ffe00
+d8400177
+984ffe00
+d84186a0
+9846fc00
+6800838d
+d8404e20
+984ffe00
+60024596
+79200025
+44a14028
+68014161
+20407f53
+18078400
+9840fe00
+60010370
+20600000
+79200025
+44a1c028
+6803030a
+680b453e
+98467c00
+24628000
+20404bc9
+1a227e00
+6000c52b
+68038317
+60038100
+e8c40000
+e0a40000
+68030304
+60030372
+79200025
+44a24028
+18c08c06
+e8c40000
+60040386
+e8c90000
+184b8400
+e8c10000
+1febfe00
+60010364
+60020366
+98467e00
+1fe0d1fe
+e8c48000
+6004838e
+79200025
+44a2c028
+e8c08000
+1ff18400
+18430400
+60088399
+1fe17e1f
+6000837b
+20405199
+204049ef
+20404902
+2040327a
+24628000
+79200025
+44a34028
+204038d1
+7009bd14
+20407d86
+20203260
+79200025
+44a3c028
+680144e3
+98002400
+680144e5
+98002600
+68014637
+98000c00
+78347c00
+20600000
+e8c10000
+207a0000
+9a467c00
+24610000
+9a667c00
+20628000
+202151f3
+18007c01
+20600000
+18007e00
+20600000
+204051f8
+2022d205
+20600000
+79200025
+44a44029
+68014637
+98000c00
+e8c10000
+207a0000
+98467c00
+20628000
+e8c08000
+98c08c00
+e8c08000
+98c08c00
+202051fc
+e8c08000
+98c08c00
+20600000
+79200025
+44a4c029
+68014637
+98000c00
+e8c10000
+207a0000
+e8c08000
+98c08c00
+18c08dfe
+e8c10000
+98467c00
+20628000
+e8c08000
+98c08c00
+2020520c
+680103c1
+1fe20c00
+2020521b
+79200025
+44a54029
+68014637
+98000c00
+18422200
+e8c10000
+203a5228
+9a267c00
+2022d22a
+e8c08000
+98c08c00
+e8c08000
+98c08c00
+2020521f
+58000001
+20600000
+e8c08000
+600083c7
+1fe27200
+d8a003c8
+20407ec0
+e8c08000
+600083d8
+20407e6d
+58000000
+20600000
+79200025
+44a5c029
+20405238
+2020524a
+d8402a00
+20405208
+207a0000
+e8c08000
+18c20a00
+6808c440
+18427200
+98467c00
+24215247
+98460400
+d8c04441
+20407ecd
+18427200
+2442d283
+20600000
+1fe27200
+d8c04441
+20207ec0
+da604420
+da204401
+20405257
+58000000
+79347e00
+600089be
+da604440
+da204421
+20405257
+20740000
+680089be
+203a3b31
+20600000
+79200025
+44a64029
+204064c0
+20407ea5
+da400000
+d8a009e2
+20405272
+6800c440
+1fe08401
+9a40a200
+1a20a202
+1a267c1f
+24215270
+e0a88000
+d8400009
+e0a88000
+98007200
+20407ec0
+1a222400
+1a427e00
+600089e1
+d8c009e1
+5fffffe0
+9a608a00
+20207e85
+204031d4
+2020526a
+ea208000
+207a0000
+1fe0fe01
+e8c88000
+18467c09
+2022d281
+9a40a400
+1a220c00
+98007200
+20407ec0
+18c22200
+1a227e00
+9a667c00
+20610000
+20205272
+9a20a200
+2020527d
+58000020
+e0a08000
+c2005283
+20600000
+79200025
+44a6c029
+7855fc00
+2037528c
+2436d29a
+20403cb7
+68014161
+60010370
+68008302
+2fe00601
+2420bccb
+6800c465
+2fe00601
+2420bccb
+680142a2
+20407f69
+68008362
+c282bccb
+20203cb0
+68094161
+18430400
+68010370
+9840fe00
+60010370
+20203cc3
+79200025
+44a74029
+70459500
+680944f8
+20404f6a
+1a220a00
+58000000
+e0a08000
+20600000
+6800c563
+c1000000
+6800c564
+c1810000
+79200025
+44a8402a
+70456400
+6800c566
+c000d2e8
+c00152f0
+c001d2e1
+c00352ca
+c003d2c2
+c00452b8
+20600000
+6800c6eb
+1fe20e00
+1fe0fe01
+6000c6eb
+6802456d
+afefffff
+58000080
+7920fe00
+6000c6ec
+202052e4
+6800c567
+70456700
+c000d2c7
+70456402
+20600000
+70456a02
+7009bd4d
+20204bd6
+680088dd
+c001d2ce
+70456402
+20600000
+20406eae
+6800c56c
+c041d2d9
+20405078
+20406e9a
+da200a11
+da400992
+df200010
+20407f55
+2022d2da
+202050a6
+202052d2
+7044b201
+6800c56c
+c040d2c7
+c041d2c7
+70456402
+70456607
+20600000
+6800c56c
+c041d2e6
+7046ec00
+7009bd43
+20204bd6
+7046eb00
+2020507d
+70456402
+6800c568
+c001d2ec
+20600000
+7008dd00
+20407ab9
+70456602
+20600000
+20404bd0
+203a52f4
+70456402
+20600000
+7009bd4c
+20404bd6
+7009bd4c
+20404bd6
+7009bd4c
+20204bd6
+dfe008e2
+680883db
+98408a00
+68008303
+1fe27200
+98408400
+20407ec0
+600883db
+18427e00
+c1a00000
+70456402
+70456601
+20600000
+79200025
+44a8c02a
+680083db
+c08052fa
+20204fd4
+20758000
+79200025
+44a9402a
+58000000
+60008048
+60008055
+60008078
+6000807c
+6000c1f8
+600083fd
+6000816c
+600088d9
+7045f400
+70024d00
+7003fe00
+7008d900
+7008d800
+7003f700
+20600000
+79200025
+44a9c02a
+2054d90a
+2454d90e
+204058c5
+247a0000
+6800804c
+c4030000
+793ffe06
+793f8001
+6000804c
+68008475
+6808804c
+2feffe00
+79208401
+6008804c
+18410402
+6008807f
+6808804c
+1fe37e00
+6000807d
+79200025
+44aa402a
+6800807d
+c03fd37f
+c001d3cb
+c00253dd
+c01e5372
+c002d36e
+c007d5bf
+c0085440
+c011d45e
+c01cd5d8
+c01c55d3
+c018d443
+c01bd4cc
+c013d4c8
+c019d4c5
+c012d4ca
+c013545a
+c003d452
+c016d449
+c017544a
+c000d4c1
+c00154ac
+c01455ca
+c004d4a2
+c005d47b
+c004545f
+c0065486
+c00fd456
+c0105458
+c010d4e6
+c01154e6
+c01ad4e7
+c01b54e8
+c01254e6
+c01a54e9
+c00bd4f2
+c008d509
+c009550d
+c009d50f
+c006d521
+c0075521
+c017d4c6
+c0185521
+c0055521
+c00c5522
+c0195521
+c01ed527
+c01f5568
+c01fd562
+c020558f
+c020d5a1
+c00355be
+c01d5370
+70007e19
+70007c04
+20600000
+70007c06
+20600000
+70007c3b
+20600000
+68020476
+1fe3fe00
+60024172
+6800847a
+6000c179
+6802847b
+6002c187
+68028480
+e0a28000
+68008031
+79207e03
+60008031
+20600000
+79200025
+44aac02a
+68008476
+79207e07
+6000807d
+c040d3a2
+c04153a7
+c04ad4cd
+c04b54e6
+c045d4db
+c041d3bf
+c04253c1
+c0485394
+c04bd3b8
+c04c53bd
+c04cd397
+c04d539a
+c1420000
+70007c82
+70007e19
+20600000
+70007c82
+70007e2e
+20600000
+2040539c
+70007c9a
+20600000
+2040539c
+202053a0
+d8a046e6
+68018477
+e0a18000
+20600000
+2020f6f3
+20600000
+68008478
+79207e07
+600083ef
+c045d3ac
+20600000
+68008478
+79207e07
+600083ef
+c045d3b0
+20600000
+6800c1fa
+6808804c
+7d3a0405
+6008804c
+68008030
+c4028000
+793ffe05
+60008030
+680083fd
+247a0000
+70007c31
+20600000
+2434d3bb
+70007c12
+202058f6
+70007c97
+20600000
+204058f6
+20205615
+70007c84
+20600000
+68088479
+18410401
+600883f6
+6800c271
+c0a8d3c7
+70427100
+68008055
+c18a8000
+70005504
+20205926
+79200025
+44ab402a
+68008476
+600083ef
+c019d3f4
+c0045403
+c007d40a
+c0085410
+c008d411
+c0095419
+c00c542f
+c00bd432
+c009d3eb
+c01ed535
+c01f5581
+c0205537
+c020d554
+20600000
+79200025
+44abc02a
+68008476
+600083ef
+c000d426
+c019d3fe
+c005d41a
+c004541d
+c009d3ee
+c0205427
+c020d42a
+c00c542d
+c00bd43e
+20600000
+7009bd20
+20407d86
+2020320a
+7009bd19
+20407d86
+7045f402
+58000050
+d8e0000a
+20207ed4
+680083f7
+79207e00
+600083f7
+7009bd01
+20407d86
+70007c8b
+68008055
+c082d31e
+70005506
+20600000
+7003f00b
+70007c07
+70005500
+2020d31e
+20600000
+6800c25d
+247a0000
+204034a9
+20405613
+20748000
+79200021
+20600000
+24748000
+70007c10
+6800804c
+c4010000
+70007c12
+20600000
+20205615
+20405672
+68008030
+c3820000
+70007c31
+68008055
+c1850000
+7000550b
+20600000
+20600000
+70007c07
+7003f013
+20600000
+68008477
+c0035423
+c18c0000
+7003f018
+70007c07
+20600000
+7003f006
+70007c07
+20600000
+20600000
+7008d200
+70007c07
+2020531e
+7008d200
+70007c07
+2020531e
+7009bd24
+20207d86
+7009bd23
+20407d86
+2020376a
+7009bd22
+20407d86
+58000000
+60010075
+68014284
+1fe3fe00
+60010032
+6800c286
+60008073
+6800c288
+60008074
+20203746
+7009bd21
+20207d86
+68088476
+60088054
+20205454
+680083f7
+79207e02
+600083f7
+c3818000
+70007c31
+2020531e
+20600000
+6800c170
+68088476
+98467c00
+20215454
+70007c04
+70007e1f
+70007d2e
+20600000
+20405764
+20205454
+70007c03
+20600000
+70007c21
+20600000
+70007c22
+20600000
+68008055
+c1098000
+70005502
+20600000
+20600000
+20405610
+7003fa01
+7009bd0a
+20407d86
+204058fe
+2420d618
+2434d46a
+70007c04
+70007d08
+70007e23
+20600000
+6800804b
+79207e02
+6000804b
+20600000
+6808804c
+7d3a0401
+6008804c
+20600000
+6800807f
+1fe37e00
+1fe17e01
+20600000
+6800c132
+c1850000
+680088d9
+205a6402
+20600000
+20405476
+20405472
+600083fb
+20405610
+70007c0c
+6800c25d
+247a0000
+68008030
+c3830000
+70007e06
+2020536c
+da200040
+20406fad
+68020476
+680a04b6
+98467c00
+2022d48f
+70007c07
+7003f005
+20600000
+20405493
+6800c6e2
+203a5555
+20600000
+204070ab
+204031da
+6800804b
+2feffe01
+793ffe01
+6000804b
+68008055
+c00cd49d
+c00c549d
+20600000
+680088d9
+c1800000
+6800804c
+c3810000
+202059bd
+da200476
+da4004a6
+d8a00486
+20407077
+da200040
+2040591c
+70007c0b
+68008030
+c3035613
+20600000
+6801015e
+1fe0f3fd
+68088476
+58000100
+98408a00
+d8c00478
+20407ecd
+68088053
+68008477
+98467e00
+1fe67c0e
+202154bc
+1840fe0e
+60008053
+70007c01
+20600000
+6800804c
+79207e03
+6000804c
+c282561d
+20600000
+68008476
+6000807d
+70007c02
+20600000
+20205454
+70007c30
+20600000
+70007c28
+20600000
+70007c26
+20600000
+20600000
+68010032
+98000400
+68008477
+60008094
+984f8400
+68010478
+1fe3fe00
+60010095
+6802047a
+1fe3fe00
+60020090
+18427e00
+60010097
+20600000
+6808c1fa
+68008477
+9842fc00
+2422d391
+2feffe00
+6800804c
+7920fe05
+6000804c
+70007c81
+70007d8b
+20600000
+20600000
+20205454
+20205454
+68010476
+60010170
+20600000
+68010479
+6808c212
+984ffe00
+d8400640
+98467c00
+20600000
+204054ec
+20215507
+68008030
+c280d507
+68010477
+1fe3fe00
+60010075
+68010479
+1fe3fe00
+60010032
+6801047b
+60008073
+98000400
+6801047d
+60008074
+98467c00
+24215504
+60008073
+70007c03
+70007d17
+20600000
+70007e24
+2020536c
+20405454
+20405610
+20406fb0
+20203736
+20405454
+2020373f
+68020476
+1fe3fe00
+2034d51b
+6808c25d
+243a5518
+70007c04
+70007d13
+70007e24
+20600000
+70007c34
+70005500
+20203206
+20403206
+79200022
+6800816c
+793ffe02
+6000816c
+20205454
+20600000
+70007c03
+70007d18
+7009bd2e
+20407d86
+2020376a
+68008476
+c080d533
+68008477
+c080d533
+68008478
+c0985533
+20405907
+2020d530
+7008d201
+70007c03
+70007d3d
+2020531e
+70007e24
+2020536c
+70007c3e
+20600000
+6800c6ea
+c000d53e
+c0015542
+20405907
+20608000
+7008d208
+20600000
+2040797f
+7009bd35
+20407d86
+2020553a
+20405907
+20608000
+6800c6eb
+c009d552
+1fe0fe01
+6000c6eb
+7008d401
+7008d204
+6800c6eb
+1fe20e00
+68034719
+afefffff
+58000080
+7920fe00
+6000c6ec
+20600000
+7008d208
+20600000
+2040555a
+6800c6ed
+207a0000
+7046ed00
+7009bd38
+20207d86
+20405907
+2440f982
+2040f992
+20405907
+20608000
+7008d20c
+7008d401
+20600000
+d8a00992
+d8c00476
+20407e87
+6800c6ea
+c1010000
+202076f3
+680088d3
+c003d56c
+680088d2
+c080d57f
+680088db
+1fe60a20
+2421557f
+d8a008ea
+98a08a00
+68040476
+e0a40000
+6804047e
+e0a40000
+680088db
+1fe0fe10
+600088db
+c0985454
+20405907
+2020d454
+7008dc01
+7008d202
+7008d401
+20205454
+70007e24
+2020536c
+680088da
+c0185585
+70007c3e
+2020531e
+20405907
+2020d58e
+6800c6ea
+c001558c
+7008d401
+7008d204
+2020531e
+7009bd36
+20207d86
+2020531e
+680088d3
+c003d593
+680088d2
+c083559f
+d8a00952
+68040476
+e0a40000
+6804047e
+e0a40000
+20405907
+2020d59d
+7008d207
+7008d401
+20205454
+7008d304
+202076f3
+70007e24
+2020536c
+680088d3
+c005d5a5
+680088d2
+c08455b4
+d8a00982
+d8c00476
+20407e87
+20405907
+2020d5b1
+6800c6ea
+c000d5b6
+7046e900
+7008d209
+7008d401
+70007d41
+2020531e
+7008d309
+7008d501
+2020531e
+70007e24
+2020536c
+6800c6e9
+c283d5bb
+79207e06
+6000c6e9
+20600000
+c28055ac
+7046e900
+202055b4
+2020531e
+6800816c
+793ffe01
+6000816c
+20405454
+24748000
+68008476
+6808804b
+793a0404
+7d3a0405
+6008804b
+20600000
+680c0476
+68008055
+c1818000
+6800816c
+c30255d1
+70005514
+20600000
+70005504
+20600000
+6800817e
+6000815a
+70007c03
+70007d38
+20600000
+70007c03
+70007d39
+18007209
+d8c00476
+d8a00151
+e8c08000
+1fe2fe55
+e0a08000
+c20055dd
+68008151
+68088150
+793f8407
+793f8404
+c07fd5f1
+c000560a
+c002d5fe
+c003d5fd
+c00355fe
+c00455fd
+c000d5f6
+c00155f6
+c001d5f6
+c004d5f6
+c00255f6
+20600000
+68008150
+79207e03
+79207e02
+60008150
+20600000
+79200404
+70017f05
+68010158
+98007200
+6001015e
+d8a00475
+20407f40
+79200407
+79200402
+18007e00
+6000800b
+600100f9
+600100fb
+600100f7
+600100f5
+68008152
+2fe1fe00
+79208406
+60088150
+20600000
+793f8011
+70015000
+6800817e
+793ffe06
+6000817e
+20600000
+d8c00476
+d8a00486
+20207e87
+70007c09
+20600000
+24748000
+70007c11
+20600000
+da204140
+20406f7a
+70007c03
+70007d08
+20600000
+7000720a
+70007c07
+7003f016
+20600000
+79200025
+44ac402b
+78547c00
+204058ca
+68008048
+207a0000
+c283d657
+c000d77c
+c00156ef
+c001d662
+c0025679
+c013d7e4
+c0145713
+c01856ff
+c012d7df
+c013570e
+c018d7ce
+c01bd777
+c019d769
+c0045862
+c004d858
+c005d86d
+c0065876
+c007d76f
+c008589b
+c008d891
+c003d75f
+c015578b
+c005578c
+c00fd7c9
+c0035704
+c010d76c
+c016d7bf
+c01757c4
+c011576c
+c01a578d
+c009d7a2
+c00bd7b1
+c0095898
+c017d7b7
+c00c57bc
+c01ed808
+c01f5814
+c01fd826
+c0205830
+c020d845
+c011d854
+c01dd84f
+c002d855
+c014d856
+c01c5857
+c01cd782
+20203b31
+20600000
+c040d686
+c04256b2
+c041568f
+c041d718
+c045d723
+c04bd75b
+c04cd6e0
+c04d56bd
+c04ad6e5
+c04b56e6
+20203b31
+18007e02
+204058a1
+68008049
+e0a08000
+204058b0
+79200025
+44acc02b
+68008049
+c0045699
+c007d69d
+c00856a8
+c00bd678
+c019d6ab
+c020d6b1
+c008d672
+20600000
+68008055
+207a0000
+7000551b
+5800000c
+d8e0000b
+20207ed4
+20203746
+18007e03
+204058a1
+68008049
+c005d681
+e0a08000
+6800804a
+e0a08000
+202058b0
+e0a08000
+6800804a
+e0a08000
+d84003fb
+202058ec
+18000e04
+204058a9
+5800007f
+e0a08000
+68008049
+793ffe07
+e0a08000
+68008049
+202058b0
+18000e05
+204058a9
+5800007f
+e0a08000
+68008049
+793ffe07
+e0a08000
+6800804a
+e0a08000
+202058b0
+204034a9
+204058fe
+20608000
+20205613
+6800804b
+c282d6a4
+c4020000
+70007c12
+793ffe04
+204058f6
+202056a6
+70007c10
+793ffe05
+6000804b
+20600000
+20405907
+2020d615
+20600000
+70007c8b
+680083f7
+79207e00
+600083f7
+7009bd01
+20207d86
+20600000
+18000e0c
+204058a9
+58000001
+e0a08000
+680103f4
+e0a10000
+58000000
+e0a18000
+58000000
+e0a20000
+202058b9
+18000e05
+204058a9
+6801c6e3
+e0a18000
+204058b9
+7046ed01
+6800c6e3
+c000d6ce
+c00156c8
+c001d6d4
+20600000
+6800c6e6
+c00056de
+c000d6de
+c00156de
+c001d6da
+20600000
+6800c6e6
+c00056da
+c000d6dc
+c00156de
+c001d6da
+20600000
+6800c6e6
+c00056da
+c000d6da
+c00156da
+c001d6da
+20600000
+7046ea03
+20600000
+7046ea01
+20600000
+7046ea02
+20600000
+18000e05
+204058a9
+6801c6e3
+e0a18000
+202058bb
+20600000
+18000e09
+204058a9
+68008094
+e0a08000
+68010095
+e0a10000
+68020090
+e0a20000
+202058b9
+18007e11
+204058a1
+68008049
+1fe20400
+c00056f7
+c00756f7
+c00e56f7
+20600000
+e0a08000
+6800c5ae
+e0a08000
+df20000e
+580045af
+98408c00
+20407ecd
+202058b9
+18007e03
+204058a1
+58000114
+e0a10000
+202058b9
+18007e03
+204058a1
+68020164
+9c467e00
+2034d70a
+1fe67e00
+1feb7e00
+793ffe0f
+e0a10000
+202058b9
+18007e06
+204058a1
+6802c5a9
+e0a28000
+202058b9
+18007e09
+204058a1
+68044138
+e0a40000
+202058b9
+18000e0c
+204058a9
+58000001
+e0a08000
+680103f4
+e0a10000
+58000000
+e0a18000
+58000000
+e0a20000
+202058bb
+18000e03
+204058a9
+6800c1fa
+e0a08000
+78547c00
+204058bb
+24740000
+24748000
+6800c178
+c4000000
+2040573f
+20205749
+79200025
+44ad402b
+6800c13e
+79207e03
+6000c13e
+58000101
+600103f4
+20600000
+79200025
+44adc02b
+6800c13e
+793ffe03
+6000c13e
+58000000
+600103f4
+20600000
+70417803
+58000000
+600241e2
+d8a0417a
+2040574d
+d8a04187
+2040574d
+d8a041e6
+2040574d
+20205754
+d8a04187
+2040574d
+20405754
+20205757
+58ffffff
+e0a18000
+e0a18000
+e0a18000
+5800007f
+e0a08000
+20600000
+58000000
+60014176
+20600000
+6800c178
+79207e02
+6000c178
+20600000
+18000e02
+204058a9
+2434d8b9
+202058bb
+18007e02
+204058a1
+680083f0
+e0a08000
+204058bb
+6800804b
+79207e03
+6000804b
+70007232
+20600000
+18007e01
+204058a1
+202058bb
+18007e01
+204058a1
+202058b9
+18007e02
+204058a1
+6800804c
+2fec0002
+7920fe00
+1fe17e01
+e0a08000
+202058bb
+18007e03
+204058a1
+68010051
+e0a10000
+202058bb
+700072fa
+18007e02
+204058a1
+68008053
+e0a08000
+202058bb
+18007e0a
+204058a1
+d8c00151
+18007209
+e8c08000
+1fe2fe55
+e0a08000
+c2005786
+202058bb
+202058bb
+202058bb
+20748000
+204038bc
+18007e09
+204058a1
+68010170
+e0a10000
+6801c140
+e0a18000
+6800c143
+e0a08000
+68014144
+e0a10000
+c581d79e
+793f8003
+204058bb
+70007c13
+20600000
+204058b9
+70007c03
+70007d13
+20600000
+d8400200
+2034d7a6
+1d027e00
+202057a7
+1c427e00
+1c227e00
+9840fe00
+1fe17ffc
+60020034
+18007e05
+204058a1
+68020034
+1fe37e00
+e0a20000
+202058bb
+18007e0a
+204058a1
+d8c003ff
+e8c48000
+e0a48000
+202058bb
+18007e03
+204058a1
+58000114
+e0a10000
+202058bb
+18007e01
+204058a1
+202058bb
+18007e02
+204058a1
+6800c170
+e0a08000
+202058bb
+18007e02
+204058a1
+58000005
+e0a08000
+202058bb
+18007e02
+204058a1
+58000000
+e0a08000
+202058bb
+70007c2e
+68008030
+79207e04
+60008030
+1c427e00
+6002040f
+680083f7
+c281d7dd
+79207e03
+600083f7
+7009bd05
+20407d86
+18007e01
+204058a1
+202058bb
+70004800
+20600000
+18007e06
+204058a1
+6802c5a9
+e0a28000
+202058bb
+18007e09
+204058a1
+68044138
+e0a40000
+202058bb
+7008d501
+6800c639
+c1808000
+7008d313
+20600000
+204058fa
+70007c99
+7008d303
+20600000
+204058fa
+70007c3d
+7008d307
+20600000
+da200972
+da400992
+df200010
+20407f55
+2022d800
+7008d300
+204076f5
+70007e24
+70007d40
+2020536c
+7008d30a
+204076f3
+70007d40
+20205454
+70007c40
+20600000
+70007c3d
+20600000
+7008da00
+18007e04
+204058a1
+18007e01
+e0a08000
+18007e01
+e0a08000
+18007e30
+e0a08000
+20405907
+2020d8bb
+202058b9
+18007e11
+204058a1
+680088da
+d8c046b2
+98c08c00
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+680088da
+1fe0fe10
+600088da
+20405907
+2020d8bb
+202058b9
+7008d206
+70007c3f
+20600000
+18007e11
+204058a1
+d8c00972
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+202058b9
+70007c40
+20600000
+20405907
+2040f628
+18007e11
+204058a1
+d8c00942
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+20405907
+2420d8b9
+2020d8bb
+7008d30f
+204058fa
+70007c0b
+20405912
+2020f665
+2020766f
+204058f6
+70007c41
+20600000
+18007e11
+204058a1
+d8c00972
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+20405907
+2420d8b9
+2020d8bb
+18007e03
+204058a1
+5800fffe
+e0a10000
+202058b9
+202058bb
+202058bb
+202058bb
+202058bb
+20405916
+da204140
+2040591c
+18007e11
+204058a1
+da2004a6
+da400486
+20407077
+2434d8b0
+202058b6
+20405916
+da200040
+20406f7a
+18007e11
+204058a1
+d8c00486
+20407e87
+68008055
+c00cd8bb
+c00c58bb
+202058b6
+680088d9
+203a5873
+20405907
+2040d8fa
+2440d8f6
+20205874
+204058fa
+20405916
+20205865
+da204140
+20406fad
+18007e05
+204058a1
+680204b6
+e0a20000
+d84003fb
+204058ec
+204070ab
+20405907
+2020d885
+7003fe01
+680088d9
+207a0000
+70007c0b
+6800c25d
+207a0000
+20405907
+2420d88d
+680083fd
+207a0000
+70007c0f
+20600000
+c6908000
+793f8021
+70007c0f
+20600000
+20405916
+20406fb0
+18007e11
+204058a1
+d8c00486
+20407e87
+202058b6
+18007e01
+204058a1
+202058b6
+18007e02
+204058a1
+18007e10
+e0a08000
+60008054
+202058b6
+1fe9fe00
+1fe1fe07
+600083dc
+df200011
+d8a003de
+20407e9f
+d8a003de
+20600000
+1fe1227f
+7000487f
+18e27e00
+204058a1
+1a227e00
+e0a08000
+20600000
+68008048
+1fe3fe00
+6808804c
+284ffe01
+7920fe00
+202058c0
+6808804c
+18410401
+202058bc
+18000400
+202058bc
+18000401
+68008048
+1fe3fe00
+7934fe00
+9842fe00
+600083dd
+70004800
+204058d1
+78347c00
+20600000
+6800807c
+207a0000
+204058ca
+6800807c
+20600000
+79200025
+44ae402b
+68008048
+203a58d1
+68008078
+247a0000
+202058db
+68008078
+203a58e1
+68018078
+60018048
+6808807b
+6800804c
+793ffe01
+9841fe00
+6000804c
+70007800
+6800807c
+207a0000
+6802007c
+60020078
+70007c00
+20600000
+6800807c
+207a0000
+6801807c
+60018048
+6808807f
+6800804c
+793ffe01
+9841fe00
+6000804c
+70007c00
+20600000
+79200025
+44aec02b
+6800804c
+1fe22600
+e8408000
+2040546e
+204058b0
+1a627e00
+6000804c
+20600000
+6808804c
+793f8400
+6008804c
+20600000
+6808804c
+79200400
+6008804c
+20600000
+7d34fe01
+6808804c
+9842fe00
+2feffe01
+20600000
+6800804c
+7934fe01
+6000804c
+20600000
+680088d8
+2fe0fe01
+20600000
+680088d8
+79207e07
+600088d8
+20600000
+680088d8
+793ffe07
+600088d8
+20600000
+680088d8
+2feffe07
+600088d8
+20600000
+d8a00486
+18007210
+180a7e00
+e0a08000
+c2005918
+20600000
+20406f7e
+da204261
+da4004b6
+ea240000
+68088030
+7d3a0406
+60088030
+1a220a00
+20407077
+202031ee
+79200025
+44af402b
+204058c5
+247a0000
+68008055
+207a0000
+c002597b
+c002d980
+c0015972
+c001d988
+c0075975
+c00359a4
+c003d9bc
+c004d9bd
+c00559c6
+c005d9ca
+c0065992
+c006d995
+c007d99b
+c0095965
+c009d988
+c0085968
+c00a5962
+c00ad988
+c00b595c
+c00c5961
+c00bd955
+c00cd95b
+c00d5946
+c00dd950
+70005500
+20600000
+680083f7
+c4010000
+c4018000
+70005500
+2040594c
+2020690d
+6800816c
+c4008000
+7000550a
+20600000
+d8e0000b
+20407ee2
+247a0000
+7000551a
+20600000
+6800816c
+793ffe00
+6000816c
+70005519
+70007c0b
+20600000
+20600000
+680083fa
+c1810000
+204059cc
+70005518
+20600000
+20600000
+70005515
+70007c83
+20600000
+70005513
+70007c25
+20600000
+6800c5f4
+c1000000
+c000d970
+d8e0000a
+20407ee2
+247a0000
+7045f400
+20205989
+20748000
+202059a4
+70005503
+70007c27
+20600000
+70007c13
+79200003
+70005505
+580001ff
+600103f8
+20600000
+70005505
+7003f8ff
+793f8022
+70007c33
+2020531b
+c6110000
+680103f8
+1fe67e01
+2022d986
+600103f8
+20600000
+7000550e
+20600000
+20600000
+680083f7
+c4018000
+c4010000
+6800816c
+793ffe02
+6000816c
+70007c13
+70005510
+20600000
+7000550d
+70007c31
+20600000
+680083f7
+c4010000
+70005500
+20600000
+70005506
+20600000
+680083f8
+1fe0ffff
+203a59a0
+600083f8
+20600000
+70007c07
+7003f016
+70005500
+20600000
+6800816c
+c2815989
+c28059a9
+7000551a
+20600000
+6800c25d
+203a59b5
+680083f7
+c4018000
+c4010000
+6802040f
+d8400064
+98408400
+1c427e00
+98467c00
+24610000
+20205955
+70005516
+70471804
+58003030
+60014719
+e0a10000
+7003fa02
+2020595c
+20600000
+6800816c
+c280d9c1
+7000551a
+20600000
+6800816c
+793ffe01
+6000816c
+70007c0f
+20600000
+680083fe
+207a0000
+70005500
+202059c1
+7000550c
+20600000
+6800804b
+c28159d1
+204058fa
+70007c08
+20203f9b
+6800804b
+793ffe02
+6000804b
+20405618
+20405903
+20203f9b
+58000004
+6000c718
+58003030
+e0a10000
+e0a10000
+20600000
+20758000
+70472f00
+20405234
+20406577
+58005a1c
+60014294
+58005a1c
+60014292
+58005a22
+60014296
+58005a1c
+60014290
+58005a18
+6001428a
+58005b60
+6001429c
+58005ba2
+6001429e
+58005cf9
+60014607
+58005d81
+6001429a
+79200025
+44afc02b
+204059fa
+20405a13
+20403d48
+20406441
+20205d0e
+6802473e
+60120054
+68024742
+6012005a
+68108081
+1fe1fe04
+60108081
+70027cff
+70806200
+6801473e
+60110058
+68014742
+6011005e
+60110060
+68120078
+79207e07
+60120078
+20403ee4
+6800c75a
+2feffe00
+68188062
+79208404
+60188062
+20600000
+204059fa
+6808c72b
+204064e8
+20405a76
+6808c729
+202064df
+6808c729
+204064f5
+2420be37
+20203e35
+79200025
+44b0402c
+20405dc5
+2040480e
+247a0000
+20205a7b
+1a627e00
+c000da67
+c0015a3e
+c0025a69
+c002da5b
+c0045a44
+c004da4b
+c0055a5e
+c005da4f
+c0065a5a
+c009da69
+c00a5a63
+c00ada5c
+c011da5f
+c0125a62
+c0185d49
+c018dd4b
+c0195d59
+c019dd57
+c01a5d43
+c01add39
+c01b5d41
+c01bdd4d
+c01c5d4f
+1fe1040f
+1fe17ef0
+c0285da3
+20600000
+6800c6ed
+245a5d4d
+20405a69
+6801470b
+c4020000
+20205a4b
+6801470b
+79207e04
+6001470b
+6800c73b
+6000c212
+20405a76
+20205ce4
+6801470b
+793ffe04
+6001470b
+20205ce8
+68014042
+1fe37e00
+68094284
+98467c00
+2422da55
+20203e7f
+6800c72f
+c3800000
+68110112
+245a5dbd
+20203e77
+20203e81
+20205a6d
+20405a69
+20205cea
+20203e45
+6800c72f
+c3003e79
+20205dc1
+20205dc1
+20405a6d
+6800c73c
+6000c212
+20205ce6
+7046e900
+20600000
+20405adf
+20205a6b
+6808c72b
+202064ff
+20405a6f
+20205a76
+6800c72e
+2feffe00
+2040be59
+6800c72e
+2feffe01
+2040be61
+20600000
+6808c72b
+202064fd
+6800c603
+c1000000
+20206838
+79200025
+44b0c02c
+6810810c
+c281da78
+20407f6e
+e8608000
+c080da93
+68110112
+1fe67c02
+20610000
+e8608000
+60008416
+e8688000
+18622200
+60088417
+18408403
+68110112
+98460400
+24610000
+70041801
+20405aaa
+68008418
+c1000000
+20205aa5
+20405d3f
+20407f6b
+20205a96
+79200025
+44b1402c
+68110112
+207a0000
+20407f6e
+e8608000
+1fe67c01
+2442daa9
+2422da96
+e8608000
+c1028000
+c1148000
+186087ff
+20405aa9
+20205a96
+20407f6e
+18608602
+e8608000
+98608600
+20206322
+79200025
+44b1c02c
+68008416
+c0005acc
+c000dad1
+c0015ad6
+c001daec
+c0025af5
+c002daff
+c004db23
+c005dbd3
+c0065bd4
+c006dbe8
+c0075bf0
+c007dbf6
+c0085c02
+c008dc0a
+c0095c0e
+c0135c12
+c0145c19
+c014dc29
+c0155c32
+c015dc67
+c0165c6d
+c0185c74
+c018dc7a
+c0195c8b
+c019dc93
+c01a5cb1
+c01adcb9
+c01b5cc1
+c01c5ccb
+c0245cd3
+20205cde
+68008417
+c0835cde
+e8630000
+60034140
+20205ce1
+68008417
+c0835cde
+e8630000
+6003453e
+20205ce1
+68008417
+c080dcde
+1a220600
+20405ce1
+e8688000
+6008c73d
+6801470b
+c3848000
+c3800000
+6800c72e
+2feffe00
+2420dae5
+6808c73d
+18417e03
+6000c133
+6800c72e
+2feffe01
+24608000
+6808c73d
+284ffe02
+2020be63
+20203e61
+68008417
+1fe67c20
+24215cde
+6000c5ae
+1fe27200
+1a220600
+d8a045af
+20406341
+20205ce1
+68008417
+1fe67c13
+24215cde
+6000c440
+1fe27200
+1a220600
+d8a04441
+20406341
+20405234
+20205ce1
+6800c70b
+c3025cde
+20403e1d
+2020db0f
+70041800
+6800c600
+207a0000
+6801460b
+c0805b0d
+68008417
+6001460b
+1a220600
+18627e00
+60014609
+20405b11
+2020685f
+70041800
+20205d9f
+20405b17
+6801460b
+6809472c
+98467e00
+6001460b
+20600000
+6801460b
+d840006e
+20407faf
+68094604
+20407faf
+680945f6
+20407faf
+6001472c
+20600000
+70041801
+70041605
+20205ce1
+6801470b
+c4048000
+70041800
+6800c569
+247a0000
+68014760
+203a5b4a
+6809475e
+98467c00
+24628000
+79200025
+44b2402c
+70041800
+68014764
+68094760
+98462400
+24213b31
+2422db38
+20405b47
+70041801
+20205b8e
+6800c75a
+c3810000
+68110058
+98000600
+68014760
+98608600
+18622200
+58000901
+e0610000
+1a40fe02
+e0608000
+68014762
+e0610000
+1a227e00
+60110058
+58000000
+60014760
+20600000
+1a220600
+e8610000
+60014762
+68008417
+1fe0fffe
+24215cde
+203a5cde
+60014764
+6800c75a
+c2815b5e
+6809454e
+68014764
+20407faf
+60014760
+18627e00
+6001475c
+58000000
+6001475e
+7009bd1b
+20204bd6
+d8400014
+20205b55
+6800c75b
+70475b00
+243a5bbe
+68014760
+203a3b31
+1fe08403
+60094467
+d8400014
+20407faf
+1fe27200
+6001475e
+68094760
+98460400
+6800c75a
+c2815b71
+2442db9a
+7003da01
+79200025
+44b2c02c
+d8200002
+68014762
+6001446c
+6801475c
+1fe20600
+20406341
+6800c75a
+c3015bb9
+58004467
+98a67e00
+1fe60400
+6008c466
+68014764
+68094760
+20405b94
+68088379
+68008419
+203a5b8c
+7d3a0404
+60088379
+7009bd1b
+20404bd6
+70475b01
+68088379
+20204f92
+20405b8e
+20204f90
+6800c75a
+79207e03
+20205d9a
+6800c75a
+793ffe03
+20205d9a
+70041900
+98467c00
+20628000
+24610000
+70041901
+20600000
+6801c544
+243a5b9e
+7045461f
+20600000
+20404bd4
+243a3b31
+7045451f
+20600000
+79200025
+44b3402c
+68014760
+203a3b31
+6809475e
+203a3b31
+98467e00
+d840001b
+20407faf
+1fe27200
+6801475c
+1fe20600
+6801475e
+98608600
+9f20fe00
+6001475e
+68094760
+98460400
+2442db9a
+7003da01
+d8a04467
+20406341
+d8200001
+58004467
+98a67e00
+1fe60400
+6008c466
+20204f90
+68014764
+68094760
+98467e00
+d8400014
+20407faf
+1fe27200
+1fe08403
+60094467
+68094760
+9840fe00
+60014760
+6801475c
+1fe20600
+6801475e
+98608600
+9f20fe00
+6001475e
+d8200002
+68014762
+6001446c
+20205b78
+20205d12
+1a220600
+e8608000
+c0005bdb
+c000dbde
+c0015be4
+c001dbe6
+20205cde
+20405737
+7046e200
+20205ce1
+58040003
+6001c6e3
+6000c6ea
+2040572f
+7046e201
+20205ce1
+58040002
+20205bdf
+58040001
+20205bdf
+68008417
+1fe67c10
+24215cde
+6000c718
+1fe27200
+d8a04719
+20406354
+20205ce1
+1a220600
+e8608000
+68188062
+7d3a0404
+60188062
+20205ce1
+68008417
+1fe27200
+1a220600
+20407f25
+5adc6c00
+9846fc00
+20407f53
+1807fe00
+600142d3
+20405ce1
+20407f6b
+20206325
+da200002
+da4042a6
+d8400000
+20205cec
+600109e1
+da4009e1
+d8400000
+20205cec
+6801470b
+c3005cde
+20405ce1
+20203e52
+6801470b
+c304dcde
+20405ce1
+20203e6b
+68008417
+1fe27200
+1a220600
+680142bc
+1fe20a00
+20406341
+20205ce1
+6800c70b
+c3005cde
+e8608000
+6808c6e9
+793a0400
+79200407
+6008c6e9
+20405ce1
+6800c6e9
+c2835c27
+20600000
+7046e900
+7009bd21
+20207d90
+c28055ac
+20205c24
+6800c70b
+c4020000
+6800c603
+c1000000
+e8608000
+6808c601
+98408400
+6008c601
+20600000
+df200040
+d8a04400
+20407e9f
+58000000
+600089d6
+1a220600
+18627e00
+600109da
+20405c62
+680089d6
+680889c6
+18408401
+9840fe00
+600089d6
+1fe67c20
+24215c4c
+6808c400
+58004401
+9840fe00
+600109df
+680889c6
+18408401
+6800c400
+9840fe00
+6000c400
+20205c55
+6808c420
+58004421
+9840fe00
+600109df
+680889c6
+18408401
+6800c420
+9840fe00
+6000c420
+680109df
+1fe20a00
+680109da
+1fe20600
+18427200
+20406341
+68008417
+680889d6
+98467c00
+2422dc38
+7044001f
+7044201f
+20205ce1
+e8608000
+600089c6
+e8608000
+600089d2
+20600000
+d8400000
+da200002
+68014748
+600109e1
+da4009e1
+20205cec
+68008417
+c080dcde
+e8608000
+6000c746
+58000000
+60014748
+20205ce1
+e8620000
+60024719
+70471804
+7046eb00
+20405ce1
+20205548
+68008417
+c081dcde
+e8608000
+c0005c80
+c000dc85
+20205cde
+e8688000
+e8608000
+7d3a0407
+204064df
+20205ce1
+e8688000
+204064ea
+e8608000
+2feffe00
+20406500
+20205ce1
+68008417
+c080dcde
+e8688000
+204064f5
+58000000
+7d20fe00
+da200001
+20205c06
+1a220600
+e8608000
+6000c56c
+d8400000
+2feffe07
+79208400
+6008c563
+c0005ca9
+c000dcac
+c0015cae
+c040dca2
+c0415ca4
+c041dca7
+70456300
+20205cde
+7044df0d
+20205caa
+7044df0d
+7044dd01
+20205ce1
+7044df0d
+20205caf
+7044df00
+7044dd03
+20205ce1
+7044df05
+20205caa
+7044df05
+7044dd00
+20205ce1
+68008417
+1fe67c1f
+24215cde
+1fe27200
+1a220600
+d8a04401
+20406341
+20205ce1
+68008417
+1fe67c1f
+24215cde
+1fe27200
+1a220600
+d8a04421
+20406341
+20205ce1
+6801470b
+c304dcde
+68008417
+c0845cde
+1a220600
+e8640000
+6004458d
+7009bd12
+20407d90
+20205ce1
+6800c56c
+203a5cde
+6800c56a
+c0805cde
+6800c56b
+c0805cde
+20407e29
+20205ce1
+e8608000
+c000dcdc
+6800c566
+c001dcda
+c0035cda
+c003dcda
+20205cde
+70456701
+20205ce1
+204050a6
+20205ce1
+d8400001
+da200000
+20205cec
+d8400000
+da200000
+20205cec
+70041600
+20205d0f
+70041602
+20205d0f
+70041603
+20205d0f
+70041605
+20205d0f
+68008416
+1fe22600
+70041606
+58000002
+9a20fe00
+20405d66
+1a627e00
+e1408000
+e1488000
+1a227200
+1a420c00
+2040633b
+2020631f
+70041607
+6800842e
+207a0000
+20405d66
+6800842e
+1fe27200
+68010430
+1fe20c00
+20406328
+2020631f
+70041608
+6800c751
+1fe27200
+1fe0fe02
+20405d66
+68014754
+e1410000
+68014752
+1fe20c00
+20406328
+2020631f
+70041609
+58000000
+20405d66
+2020631f
+7004160a
+58000001
+20405d66
+20405d23
+6801470b
+d8e00002
+afefffff
+79208403
+d8e00009
+afefffff
+79208405
+6800c70b
+d8e00004
+afefffff
+79208404
+e1488000
+2020631f
+d8400000
+6800c133
+d8e00000
+afefffff
+79208400
+d8e00001
+afefffff
+79208401
+6800c3ff
+d8e00000
+afefffff
+79208402
+20600000
+7004160d
+6800c2be
+1feffe22
+1fe27200
+20405d66
+680142bc
+1fe20c00
+20406328
+2020631f
+7004160e
+58000004
+20405d66
+680208de
+e1420000
+2020631f
+7004160f
+20205d0f
+70041610
+20205d0f
+70041611
+58000004
+20405d66
+6802456d
+e1420000
+2020631f
+da200180
+20205d50
+da200080
+20205d50
+da200101
+20205d50
+da200001
+7046e900
+70041614
+58000002
+20405d66
+1a227e00
+e1410000
+2020631f
+da600000
+20205d5a
+da600001
+70041615
+58000001
+20405d66
+1a627e00
+e1408000
+2020631f
+7004161d
+58000004
+20405d66
+680208de
+e1420000
+2020631f
+70041502
+60008417
+600c09c6
+79200025
+44b3c02c
+20405d71
+680c09c6
+2040631c
+68018415
+e1418000
+20600000
+20405d7a
+20608000
+20405d78
+68024737
+1feb7e00
+207a0000
+20205d7e
+6808c736
+202064ff
+6808c736
+202064f3
+6808c736
+202064fd
+1fe0ffff
+243a5d7e
+20600000
+1a227e00
+60014752
+1a427e00
+6000c751
+6801039b
+68094756
+98467c00
+2022dd8c
+68094758
+98467c00
+24628000
+60014754
+20205d98
+6800c75a
+c281dd94
+6800c75a
+c4008000
+20405d03
+20205d9c
+70041609
+20405ce1
+20405b91
+20205d90
+6800c75a
+79207e01
+6000c75a
+20600000
+6800c75a
+793ffe01
+20205d9a
+6800c72f
+c3800000
+20405dbd
+20203e77
+6008824e
+6800824e
+207a0000
+1fe0ffff
+6000824e
+79200025
+44b4402d
+20405dac
+20205da4
+6800c746
+207a0000
+6800c747
+207a0000
+1fe0ffff
+6000c747
+247a0000
+7047470a
+204065c0
+204065de
+1fe6fc64
+20407f53
+1807fe00
+18070400
+6000c748
+6008c749
+20600000
+6800c72f
+79207e00
+6000c72f
+20600000
+6800c72f
+793ffe00
+6000c72f
+20600000
+79200025
+44b4c02d
+20407f84
+20213e41
+20203e43
+79200025
+44b5402d
+58005fc3
+60014290
+58005ee2
+60014292
+58005e27
+6001428e
+58005fd4
+60014296
+58005def
+60014294
+58005efd
+6001429c
+7008d400
+7008d500
+79200025
+44b5c02d
+20405e0a
+20758000
+20405de5
+20405ded
+58005e24
+6001428c
+6801470b
+c2866074
+20206070
+20403e28
+2022ddea
+20406472
+20406098
+20203e20
+20406441
+20406476
+2020609e
+70474701
+20205e01
+20407e3f
+20405df2
+20205e3e
+6808c752
+204064f5
+2420ddf9
+6800c747
+c1000000
+70474700
+20600000
+6800c747
+c1008000
+70474701
+6800c746
+1fe0fe01
+1fe17e03
+6000c746
+20205e01
+58000006
+204060ec
+1fe104fc
+6800c746
+9840fe00
+1fed7e00
+1fe0fe06
+204060eb
+20206098
+20405f8e
+20405e10
+68110050
+793ffe0b
+60110050
+20600000
+20758000
+20403d3e
+6808c763
+204064df
+6808c764
+204064df
+6808c74d
+204064df
+6808c74e
+204064df
+6808c74f
+204064df
+6808c750
+204064df
+6808c751
+204064df
+6808c753
+204064df
+6808c752
+202064df
+5800bc05
+204060eb
+70009f01
+20405e3e
+d8400019
+204064e8
+70808100
+6808c763
+204064c2
+6808c764
+204064c2
+6808c74d
+204064c2
+6808c74e
+204064c2
+6808c74f
+204064c2
+6808c750
+204064c2
+6808c751
+204064c2
+6808c753
+204064c7
+6800809f
+247a0000
+202064d2
+79200025
+44b6402d
+20405e4d
+20405e94
+6800c75e
+6808c75d
+6000c75d
+98467c00
+2422be39
+6800c766
+6808c765
+6000c765
+98467c00
+2422be39
+20600000
+da200000
+6808c75b
+204064f5
+7920a200
+6808c75c
+204064f5
+7920a201
+1a227e00
+6000c75e
+c000de5b
+c0015e5f
+6800c75f
+c283de6b
+20600000
+6800c75d
+c0005e63
+c001de65
+20600000
+6800c75d
+c0005e67
+c001de69
+20600000
+70475f82
+20600000
+70475f81
+20600000
+70475f80
+20600000
+70475f83
+20600000
+6800c75f
+793ffe07
+6000c75f
+6800c75f
+c0005e74
+c000de77
+c0015e7a
+c001de7d
+20600000
+6800c75e
+c001de80
+20600000
+6800c75e
+c0005e80
+20600000
+6800c75e
+c001de8a
+20600000
+6800c75e
+c0005e8a
+20600000
+6800c762
+1fe0fe01
+6000c762
+1fe67c01
+20610000
+70476200
+6800c760
+1fe0fe01
+6000c760
+20600000
+6800c761
+1fe0fe01
+6000c761
+1fe67c01
+20610000
+70476100
+6800c760
+1fe0ffff
+6000c760
+20600000
+da200000
+6808c763
+204064f5
+7920a200
+6808c764
+204064f5
+7920a201
+1a227e00
+6000c766
+c000dea2
+c0015ea6
+6800c767
+c283deb2
+20600000
+6800c765
+c0005eaa
+c001deac
+20600000
+6800c765
+c0005eae
+c001deb0
+20600000
+70476782
+20600000
+70476781
+20600000
+70476780
+20600000
+70476783
+20600000
+6800c767
+793ffe07
+6000c767
+6800c767
+c0005ebb
+c000debe
+c0015ec1
+c001dec4
+20600000
+6800c766
+c001dec7
+20600000
+6800c766
+c0005ec7
+20600000
+6800c766
+c001ded1
+20600000
+6800c766
+c0005ed1
+20600000
+6800c76a
+1fe0fe01
+6000c76a
+1fe67c01
+20610000
+70476a00
+6800c768
+1fe0fe01
+6000c768
+20600000
+6800c769
+1fe0fe01
+6000c769
+1fe67c01
+20610000
+70476900
+6800c768
+1fe0ffff
+6000c768
+20600000
+20403e7b
+70474b02
+20403e7f
+20203e6d
+58000002
+6000c709
+20600000
+6800c283
+207a0000
+20404812
+247a0000
+20405f14
+24740000
+20405efa
+da200009
+20404005
+680142de
+e0a10000
+580002a1
+e0a10000
+6803c729
+e0a38000
+20600000
+58000000
+6003472a
+6000c72f
+20205ee9
+58000000
+6003472a
+6000c72f
+20205f0c
+68014739
+60014741
+20600000
+680944f8
+204051f5
+e8c08000
+600083be
+d8a0446b
+18a08a01
+680944f8
+e0a90000
+204051f5
+e8c08000
+1fe27200
+20407ecd
+680883be
+18408407
+20204f89
+79200025
+44b6c02d
+680944f8
+204051f5
+18c08a01
+6803c729
+e0a38000
+20600000
+79200025
+44b7402d
+78547c00
+58000000
+6003472a
+20405f1e
+20405f87
+20405f61
+20405f67
+20205f7f
+6800c735
+205a5f5a
+70473501
+78547c00
+6808c753
+204064f5
+24608000
+58000000
+204060ec
+58000002
+204060ec
+c4038000
+58000003
+204060ec
+20405fbb
+6001472a
+58000004
+204060ec
+20405fbb
+1fe67e00
+6001472c
+6802472a
+78347c00
+20600000
+204060e7
+20405f5a
+dfe00005
+204060ec
+6000c730
+dfe00007
+204060ec
+6000c731
+dfe00008
+204060ec
+6000c732
+202060e9
+6800c731
+c1800000
+6800c732
+1fe67c2d
+20610000
+70473300
+5800ba41
+204060db
+58000032
+204060db
+5800b541
+202060db
+6800c731
+c1800000
+6800c732
+1fe67c2d
+24610000
+70473301
+5800ba41
+204060db
+58008032
+204060db
+5800b541
+202060db
+dfe00003
+204060ec
+6001472a
+dfe00004
+204060ec
+6001472c
+20600000
+6800c768
+207a0000
+6000c72e
+70476800
+78347c00
+20600000
+6800c760
+207a0000
+6000c72f
+70476000
+78347c00
+20600000
+da200000
+6808c74d
+204064f5
+7920a200
+6808c74e
+204064f5
+7920a201
+6808c74f
+204064f5
+7920a202
+6808c750
+204064f5
+7920a203
+6808c751
+204064f5
+7920a204
+1a227e00
+20600000
+20405f6d
+6808c729
+6000c729
+9842fe00
+1fe67c00
+20628000
+78347c00
+20600000
+d840001a
+204064f5
+20608000
+5800000a
+204060ec
+200003e8
+20205f87
+204061ac
+20758000
+58000000
+204060ec
+6000824b
+c0185f98
+c018df98
+204060c0
+200003e8
+20205f90
+58008006
+204060eb
+200003e8
+20600000
+6808c756
+204064ff
+20407e89
+6808c756
+204064fd
+20207e89
+5800ba41
+204060db
+58000d11
+204060db
+5800041b
+204060db
+5800041c
+204060db
+58000f1d
+204060db
+58000032
+204060db
+5800b541
+202060db
+5800ba41
+204060db
+20000fa0
+5800ff7f
+204060db
+1a227e00
+204060db
+5800007f
+204060db
+5800b541
+202060db
+c4038000
+d840ff00
+9841fe00
+20600000
+c4018000
+d84000f0
+9841fe00
+20600000
+20404bd4
+247a0000
+6800c74c
+6000c4f8
+680944f8
+20404f6a
+c4000000
+6800c595
+c4000000
+20405f14
+24740000
+20405efa
+6800c74c
+6000c4f8
+7009bd1b
+20404bd6
+20205f0c
+1a627e00
+c00a5fe7
+c000e084
+c00adff6
+c0015ff6
+c002dff5
+c0086048
+c0096068
+c0035ff3
+c0145edb
+c014dede
+c0025ff0
+c009dff0
+c0055fee
+c0173e32
+1fe1040f
+1fe17ef0
+c0286014
+20600000
+680142af
+793ffe00
+600142af
+58000000
+6001473f
+20405efa
+20206084
+204059d7
+20203e45
+6801470b
+c2866074
+20203e0a
+20405edf
+20600000
+20600000
+79200025
+44b7c02d
+20406000
+680142ad
+c283e010
+c2803e0c
+c280e00a
+c281600d
+c281e00d
+20206074
+58000000
+6004475b
+e0a40000
+70474500
+70473500
+70428300
+7044b200
+70474b00
+70473600
+20600000
+c282e00d
+c281e00d
+20206074
+6801470b
+c2866074
+20203e0a
+204052a0
+680142ad
+c2803e0c
+20203e0a
+79200025
+44b8402e
+6008824e
+6800824e
+207a0000
+1fe0ffff
+6000824e
+20406027
+2040602d
+20406034
+20406042
+20406021
+20206017
+6800c76c
+207a0000
+1fe0ffff
+6000c76c
+247a0000
+202060aa
+6800c709
+207a0000
+1fe0ffff
+6000c709
+247a0000
+20206068
+6801473d
+207a0000
+1fe0ffff
+6001473d
+247a0000
+20406084
+20203e75
+6801473f
+207a0000
+1fe0ffff
+6001473f
+247a0000
+20403e5f
+20203e75
+68014743
+207a0000
+1fe0ffff
+60014743
+247a0000
+70474500
+20600000
+68014741
+207a0000
+1fe0ffff
+60014741
+247a0000
+2020608f
+79200025
+44b8c02e
+70474500
+70473601
+58000000
+6001473f
+2040608f
+6800c132
+2feffe01
+2040e066
+6800c132
+2feffe00
+2040e062
+20403e81
+20206074
+68034273
+203a3e54
+20203e49
+68034273
+203a6060
+68014737
+6001473f
+20403e7f
+20203e5d
+20403e6f
+20203e63
+6801470b
+2feffe07
+2040be50
+20600000
+204052a0
+20600000
+70428301
+20403e7f
+20403e7d
+70474b01
+58000000
+60014707
+6000c709
+20203e79
+6800c2b5
+c019e057
+c01a605a
+20206074
+79200025
+44b9402e
+6801470b
+c285e07a
+180a7e00
+6000c53f
+20403e81
+68014716
+6001473d
+6800c132
+2feffe01
+2040be63
+6800c132
+2feffe00
+2040be57
+20203e6f
+79200025
+44b9c02e
+58000000
+6001473d
+6800c132
+2feffe01
+2040be61
+6800c132
+2feffe00
+2040be59
+20203e73
+79200025
+44ba402e
+58000000
+60014741
+6801470b
+c284be6b
+6801470b
+c2803e52
+20600000
+79200025
+44bac02e
+d8400001
+da204746
+da4000c6
+2020626f
+79200025
+44bb402e
+d8400001
+da204746
+da4000c6
+20206245
+79200025
+44bbc02e
+6800c734
+204060d1
+c00060b0
+20600000
+6808c757
+204064fd
+6808c758
+204064fd
+6808c759
+202064fd
+6800c76b
+207a0000
+70476b00
+70476c3c
+204060aa
+6800c76d
+c000e0ba
+c00160bc
+c001e0be
+20600000
+6808c757
+202064ff
+6808c758
+202064ff
+6808c759
+202064ff
+79200025
+44bc402f
+68108073
+d8400006
+9841fe00
+60108073
+68108077
+9841fe00
+60108077
+70808100
+68108077
+793ffe01
+793ffe02
+60108077
+2000001e
+70808101
+20600000
+1fe22400
+204060e7
+20000064
+1a427e00
+204060ec
+1fe22400
+204060e9
+20000064
+1a427e00
+20600000
+1fe22400
+204060e7
+20000064
+1a427e00
+204060eb
+204060e9
+20000064
+20600000
+6800c2bb
+c17f8000
+6808c2bb
+202064e8
+6808c2bb
+202064ff
+6808c2bb
+202064fd
+202061c1
+202061c9
+243460f1
+68108085
+1fe1fe20
+60108085
+18427c00
+2022e0f4
+1a627a00
+2fcc0000
+2020618e
+18000404
+da200221
+68108085
+1fe17edf
+60108085
+204060f1
+da2055aa
+68010221
+e8c90000
+9a267c00
+20600000
+d8400002
+da200227
+204060f1
+68010227
+6001021a
+20546108
+20600000
+d8400010
+da200229
+68108085
+1fe17edf
+60108085
+204060f1
+d8c00229
+df200010
+204071a1
+20407150
+204071ba
+2020714a
+7856fc00
+204060f6
+24628000
+7836fc00
+70802380
+70802200
+70802400
+da208025
+204060ed
+70802300
+204060f6
+24628000
+18007e00
+60110288
+da20828a
+204060ed
+d8400006
+204060f7
+24628000
+e8c10000
+98002200
+204060f1
+20206124
+79200025
+44bcc02f
+20407f66
+58001000
+6001021a
+da60624c
+df200002
+204060f6
+24628000
+6801021a
+1ff0fe00
+9840fe00
+1ff0fe00
+6001021a
+c2006132
+20206124
+70805025
+70828005
+20407f66
+79200025
+44bd402f
+78547c00
+204062c4
+58000000
+da200216
+d8400002
+2040630d
+68010216
+c303e150
+580007f0
+da200229
+d8400010
+2040630d
+70800608
+d8c00229
+204071ad
+78347c00
+79200025
+44bdc02f
+68010216
+1ff0fe00
+d84007ff
+98417e00
+2022e15e
+204062c9
+da606312
+20546108
+20406114
+68008215
+2fe00603
+2420e150
+79200025
+44be402f
+204062c7
+68008216
+c282e16d
+58000000
+60018219
+204061d9
+da6061fb
+20406101
+20406114
+2436e16d
+68008215
+2fe00603
+2420e15e
+79200025
+44bec02f
+20406236
+68008216
+c2836180
+20406188
+2436e178
+68008215
+2fe00603
+2420e16d
+20206180
+20406233
+68008216
+c2836180
+20406188
+2436e180
+68008215
+2fe00603
+2420e178
+18007004
+204071bb
+70805021
+68008216
+c4020000
+20403ecd
+20403ef4
+20206186
+58000000
+6001021a
+da60624c
+2040621d
+20406101
+20206114
+68008215
+1fe3fe00
+7920fe00
+2a2c000f
+20608000
+60008215
+20600000
+68108085
+c4028000
+2020619b
+6810812c
+afefffff
+20608000
+68108108
+c300e198
+2040714a
+20206198
+68014239
+207a0000
+70802380
+70802200
+70802400
+6809423b
+184bf200
+98000c00
+e8c08000
+60108025
+c20061a7
+70802300
+20600000
+79200025
+44bf402f
+6800c2b9
+60108086
+6800c2ba
+60108087
+58000218
+6011008a
+5800021d
+6011008c
+68108081
+79207e00
+793ffe01
+60108081
+20600000
+68108086
+79207e07
+60108086
+793ffe07
+60108086
+20600000
+79207e07
+60010218
+79200025
+44bfc02f
+70808802
+70808e00
+70800602
+202061d3
+18000401
+60008218
+79200025
+44c04030
+70808801
+6019008e
+70800602
+204061d3
+6800821d
+20600000
+68014176
+1fe0fe01
+60014176
+6810812c
+c301e1d3
+20600000
+70808640
+70808700
+68108081
+793ffe00
+79207e01
+60108081
+58000000
+60020218
+20600000
+58000000
+6011008e
+58000001
+60108088
+58000218
+6011008a
+70021806
+70800602
+202061d3
+18408404
+60190088
+1a20a3fc
+d8400002
+e2288000
+1ff10400
+e0a88000
+1fec8400
+e0a88000
+e0a08000
+1a227e00
+6011008a
+58000000
+6011008e
+70800602
+202061d3
+6019008e
+58000004
+60110088
+70021803
+58000218
+6011008a
+1a227e00
+6011008c
+68108086
+2a2c000f
+7920fe06
+60108086
+70800602
+6810812c
+c283e208
+d8e00003
+20406195
+204061d3
+2feffe02
+2040618e
+68008219
+1ff02400
+6800821a
+1fed7e00
+9a41a400
+6800821b
+9a41fe00
+9840fe00
+6000821b
+1fecfe00
+6000821a
+1fecfe00
+60008219
+20600000
+70809105
+70809207
+70809307
+70809407
+70809507
+70809605
+20600000
+6810812c
+c302e224
+20600000
+60110098
+1a227e00
+6011009a
+1a427e00
+6011009c
+18427e00
+6011009e
+d8400001
+7d3a0401
+60108090
+70800604
+20206224
+7920002a
+7042b608
+20600000
+793f802a
+7042b620
+20600000
+6800c2a8
+9a40fe00
+6000821a
+20206240
+6801021a
+1ff0fe00
+6000821a
+58000003
+60110098
+700219a0
+70021ba1
+20206254
+79200025
+44c0c030
+c5156239
+680142a8
+9a40fe00
+1ff0fe00
+6001021a
+79200025
+44c14030
+c515623d
+20007530
+58000004
+60110098
+700219a0
+70021ca1
+58000219
+6011009a
+6019009e
+1a227e00
+6011009c
+58000002
+2a2c000f
+7920fe00
+60108090
+70800604
+d8e00005
+20406195
+20406224
+2feffe04
+2040618e
+c515626a
+6801021a
+1ff0fe00
+9840fe00
+1ff0fe00
+6001021a
+20600000
+6800821a
+9840fe00
+1ff0fe00
+6001021a
+20600000
+680142a8
+9a40fe00
+600109be
+79200025
+44c1c030
+600909c6
+1a227e00
+600109dd
+20406287
+680909d6
+680109dd
+1fe22200
+680109be
+204062a8
+680109d6
+680909dd
+98408400
+600909dd
+680909be
+98408400
+600909be
+680109c6
+243a6277
+20600000
+79200025
+44c24030
+680142b6
+1fe0ffff
+680909be
+9841fe00
+1fe0fe01
+600189da
+680109c6
+9840fe00
+680989da
+98467e00
+2421629a
+600109c6
+680189da
+680909be
+98467e00
+600109d6
+20600000
+680109c6
+600109d6
+58000000
+600109c6
+20600000
+18408402
+60190098
+1a20a3fe
+ea298000
+18422400
+d84000a0
+e2288000
+e0a08000
+202062b7
+1fe22400
+79200025
+44c2c030
+20007530
+c515629f
+1a427e00
+18408403
+60190098
+1a20a3fd
+ea298000
+18422400
+d84000a0
+e2288000
+1ff0fe00
+e0a10000
+1a227e00
+6011009a
+58000000
+6011009e
+70809001
+70800604
+20406224
+1a427e00
+e2218000
+20002710
+20002710
+20002710
+20600000
+70897370
+20000bb8
+20600000
+70897330
+20600000
+1fe9fe00
+60110045
+70804b00
+20600000
+204062c9
+204062fa
+ea288000
+1a20a201
+18000e00
+a84c0000
+2020e2f1
+68108046
+79207e06
+79207e07
+60108046
+70804702
+70804782
+793ffe07
+60108046
+7080478a
+2000000b
+708047ca
+20000021
+7080474a
+2000002c
+708047ca
+20000016
+7080478a
+20000021
+70804782
+20000001
+70804792
+2000000a
+708047b2
+68108007
+70804792
+20000001
+70804782
+afec0000
+2020e2d2
+68110045
+1fe0fe01
+60110045
+18e08e01
+28e01e08
+2420e2d2
+c20062cf
+70804783
+20600000
+70804782
+2000000c
+70804780
+70804782
+20000096
+20600000
+204062fa
+708047a2
+1a227e00
+60110048
+7920040b
+2fec000f
+7920840f
+6019004a
+70800601
+20600000
+6810812c
+c300e30a
+20600000
+204062c9
+20406300
+2040630a
+70804783
+20600000
+68110124
+60110045
+20406300
+d8e00001
+20406195
+2040630a
+2feffe00
+2040618e
+70804783
+20600000
+6811005e
+98001400
+20600000
+19427e00
+6011005e
+20600000
+18627e00
+60110058
+20600000
+680142d3
+60110052
+20600000
+1f227e00
+207a0000
+1f20f3f8
+20416335
+20628000
+2021632a
+1f20f208
+1f20f3fc
+20416338
+20628000
+2021632f
+1f20f204
+2020633b
+e8c40000
+e1440000
+20600000
+e8c20000
+e1420000
+20600000
+1f227e00
+207a0000
+e8c08000
+e1408000
+c200633d
+20600000
+1f227e00
+207a0000
+1f20f3f8
+2041634e
+20628000
+20216343
+1f20f208
+1f20f3fc
+20416351
+20628000
+20216348
+1f20f204
+20206354
+e8640000
+e0a40000
+20600000
+e8620000
+e0a20000
+20600000
+1f227e00
+207a0000
+e8608000
+e0a08000
+c2006356
+20600000
+79200025
+44c34030
+6800c2be
+207a0000
+204063f3
+2042e3f9
+2040638e
+6800c2be
+1fe22600
+680942bc
+600901af
+1a627e00
+203a5d30
+1a60a7ff
+18422200
+ea208000
+680881a7
+98467c00
+2042e375
+20216371
+ea208000
+1fe0fe01
+e2208000
+680901af
+18408422
+600901af
+20206365
+58000000
+e2208000
+680081a8
+e0a08000
+c099e383
+da404261
+e8c30000
+e0a40000
+58000000
+e0a40000
+1a420c00
+20407e87
+18007c01
+20600000
+c01b6387
+c01be38b
+da4044a2
+2020637b
+d8c0457b
+20407e87
+d8c044a2
+20206380
+d8c04573
+20407e87
+20206389
+204031d4
+6800c2be
+207a0000
+6801470b
+c28063a3
+6800c52b
+c000639c
+68008377
+2fe180c0
+2020e39c
+2fe18040
+2020e3a1
+2fe18000
+2020e39f
+7001a835
+68030372
+202063a7
+7001a837
+202063a7
+7001a836
+202063a7
+79200025
+44c3c030
+7001a833
+68030040
+600301a9
+680142bc
+efe88000
+1fe0fe01
+600101af
+600881a7
+6800c2be
+1fe22600
+680101af
+1fe22200
+204063bf
+20740000
+680901af
+18408422
+600901af
+184085ff
+e8408000
+600081a7
+1a60a7ff
+2422e3af
+6800c2be
+1fe0ffff
+600081a7
+20600000
+680081a8
+c099e3c6
+da4001a8
+df200007
+20407f55
+2022e4c0
+20600000
+c01b63c9
+c01be3e4
+202063c1
+ea288000
+98467c00
+24628000
+d8a009e1
+df200010
+20407e9f
+68018375
+600189e1
+204063db
+680109fe
+1ff0fe00
+1fed0400
+e8c08000
+9840fe00
+68098372
+98467c00
+2022e4c0
+20600000
+d8c009e1
+204071af
+ea208000
+204071b0
+18006c38
+18006c00
+20407145
+d8a009f1
+202071c0
+ea288000
+98467c00
+24628000
+18c22200
+18c0a608
+da404573
+df200008
+20407f55
+2022e4c0
+1a622200
+da40457b
+df200008
+20407f55
+2022e4c0
+20600000
+680142bc
+efe88000
+1fe0fe22
+efe08000
+98467c00
+20600000
+6800c2be
+1fe27200
+680942bc
+58000000
+e0408000
+18408422
+1fe0fe01
+c20063fd
+20600000
+79200025
+44c44031
+2040638e
+2434640a
+1a208c0a
+d8a04261
+20407e87
+202064b1
+70425d00
+20600000
+6804c571
+203a642c
+2040638e
+2434642c
+680101af
+1fe08c01
+d8a0457b
+20407e87
+d8a044a2
+20407e87
+7044b201
+20600000
+68014571
+243a641c
+68034573
+203a642b
+7048c603
+58112233
+6001c4a2
+58445566
+e0a18000
+58778899
+e0a18000
+58001122
+e0a18000
+58334455
+e0a18000
+58000066
+e0a08000
+7044b201
+20600000
+7048c601
+7044b200
+20600000
+68030372
+600301a9
+7001a834
+20206435
+68030040
+600301a9
+7001a833
+79200025
+44c4c031
+6800c132
+c005635a
+20406463
+2040645f
+680081a8
+c01a643f
+c019e48b
+20600000
+20406489
+20206472
+79200025
+44c54031
+2040644d
+680081a7
+c17f8000
+680301a9
+60034273
+680081a8
+6000c2b5
+c019e451
+c01a6453
+20600000
+2040645b
+680081a7
+c17f8000
+2020647a
+20406492
+202064b1
+20406490
+202064b7
+79200025
+44c64031
+58000000
+60018040
+e0a18000
+20206463
+d8400001
+da2001a7
+da40001c
+20206245
+d8400001
+da2001a7
+da40001c
+2020626f
+79200025
+44c6c031
+20406497
+78547c00
+2040649b
+20740000
+7001a700
+680301a9
+60030184
+680081a8
+60008183
+d840001c
+da200183
+da400000
+2020626f
+d8400006
+da20453e
+da40001d
+2020626f
+d8400006
+da20453e
+da40001d
+20206245
+79200025
+44c74031
+d8400007
+da2001a8
+da400000
+680081a7
+1feffe07
+9a40a400
+20206245
+d8400010
+da400023
+680081a7
+1ff27e00
+9a40a400
+20600000
+da2044a2
+2020648c
+da204261
+79200025
+44c7c031
+20406483
+2020626f
+da2044a2
+20206493
+da204261
+79200025
+44c84032
+20406483
+20206245
+d840001c
+da20018a
+da400000
+20206245
+79200025
+44c8c032
+5800018a
+600101af
+7001a700
+df200004
+1f227e00
+600089be
+680101af
+1fe22200
+204064bb
+20740000
+680101af
+1fe0fe07
+600101af
+680081a7
+1fe0fe01
+600081a7
+680089be
+1fe27200
+c20064a1
+20600000
+68044261
+680c4269
+9841fe00
+207a0000
+70425d01
+20600000
+68034273
+207a0000
+7044b201
+20600000
+da4001a8
+df200007
+20407f55
+2022e4c0
+20600000
+78347c00
+20600000
+79200025
+44c94032
+79200407
+204064f5
+7d208407
+79200025
+44c9c032
+284c0007
+18410e1f
+680200a0
+f920fe00
+600200a0
+680200a4
+fd20fe00
+600200a4
+20600000
+79200025
+44ca4032
+284c0007
+18410e1f
+680200a0
+f93ffe00
+600200a0
+680200a4
+f93ffe00
+600200a4
+20600000
+204064d2
+202064e0
+2455e4c7
+d8a0807c
+20406504
+79400407
+d8a08078
+20406504
+793f8407
+d8a08070
+20206504
+79400407
+20406503
+79200407
+d8a08070
+20206504
+18410e07
+18497e00
+1fe17e03
+98a08a00
+e8a08000
+20600000
+d8a08074
+202064f6
+d8a0811c
+204064ed
+284ffe07
+2020e4fb
+afec0000
+20600000
+afefffff
+20600000
+2fcffe07
+20206500
+2fcc0007
+58000000
+7d20fe07
+98428400
+d8a08074
+204064ed
+284ffe07
+f920fe00
+e0a08000
+20600000
+da3fffff
+68108081
+2feffe01
+2040e54d
+1fe12403
+1a467c01
+2042e54f
+2feffe02
+2040e549
+2feffe03
+2040e54b
+2feffe05
+2040e551
+2feffe06
+d8e00004
+2040e555
+7d20a204
+2feffe07
+d8e00005
+2040e555
+68108082
+2feffe00
+d8e00003
+2040e555
+68188080
+284ffe00
+d8e00005
+2040e555
+9841fe00
+2feffe01
+d8e00006
+2040e555
+2feffe02
+d8e00007
+2040e555
+2feffe03
+d8e00012
+2040e555
+2feffe04
+d8e00013
+2040e555
+2feffe05
+d8e00014
+2040e555
+2feffe06
+d8e00015
+2040e555
+2feffe07
+d8e00016
+2040e555
+68108062
+2feffe04
+2040e553
+79200025
+44cac032
+68120078
+681a007c
+9841fe00
+1fe47e00
+9a217e00
+681a007c
+9841fe00
+6012007c
+20600000
+d8e00006
+20206559
+d8e00009
+20206557
+d8e00017
+20206557
+d8e00019
+20206559
+d8e0001b
+20206559
+d8e00002
+20206559
+df200001
+2020655a
+df200004
+2020655a
+df200002
+f93fa200
+18e08e01
+c200655a
+20600000
+2040656a
+d8400006
+202064e8
+2040655e
+d8400006
+202064fd
+2040656a
+68108078
+79207e07
+60108078
+d8400007
+202064df
+68108081
+1fe17efb
+60108081
+20600000
+68108081
+2feffe02
+20600000
+204062c4
+580007e0
+da2041f0
+d8400002
+2040630d
+202062c7
+79200025
+44cb4032
+204062c4
+580007e2
+da2042bf
+d840000e
+2040630d
+204062c7
+6800c2cf
+c2806584
+c280e598
+c28165ac
+20600000
+680942cb
+5800aa55
+98467c00
+2022e58d
+58004dfa
+600142c9
+58004894
+600142c3
+20206595
+680142c9
+243a6591
+58004dfa
+600142c9
+680142c3
+243a6595
+58004894
+600142c3
+58000064
+600142cd
+20600000
+680942cb
+5800aa55
+98467c00
+2022e5a1
+58005932
+600142c7
+58004323
+600142c1
+202065a9
+680142c7
+243a65a5
+58005932
+600142c7
+680142c1
+243a65a9
+58004323
+600142c1
+58000190
+600142cd
+20600000
+680942cb
+5800aa55
+98467c00
+2022e5b5
+58006946
+600142c5
+58005377
+600142bf
+202065bd
+680142c5
+243a65b9
+58006946
+600142c5
+680142bf
+243a65bd
+58005377
+600142bf
+58000032
+600142cd
+20600000
+6800c2cf
+c28065c5
+c280e5c7
+c28165c9
+20600000
+708971bf
+202065cd
+708971af
+202065cd
+7089718f
+6800c2d0
+60108973
+202065cd
+79200025
+44cbc032
+68108053
+79207e07
+60108053
+68108973
+1fe1fe30
+60108973
+7089067c
+708972aa
+20001388
+68190150
+68108053
+793ffe07
+60108053
+600942d1
+20600000
+79200025
+44cc4033
+6800c2cf
+c28065e5
+c280e5e9
+c28165ed
+20600000
+680142c9
+680942c3
+da6000c8
+202065f1
+680142c7
+680942c1
+da600064
+202065f1
+680142c5
+680942bf
+da600032
+202065f1
+98462200
+680142d1
+98467e00
+242165fe
+680942cd
+984fa400
+1a627e00
+9a2ffe00
+9a40fe00
+9a26fc00
+20407f53
+1807fe00
+20600000
+18427e00
+680942d1
+98467e00
+680942cd
+984fa400
+1a627e00
+9a2ffe00
+9a467e00
+202065fa
+20758000
+7045ff00
+70041c03
+70041d03
+70042111
+70042213
+58000000
+6001841e
+6000c2e4
+70470a00
+79200025
+44ccc033
+58000000
+6000c2e4
+6000c5fc
+6000c5f5
+6800c603
+c000e61b
+70460150
+20600000
+70460100
+20600000
+18418402
+20600000
+18427e00
+1fedfe00
+6000c5fa
+18007e3f
+1fedfe00
+6000c5f9
+18007e01
+1fedfe00
+6000c5f8
+20406655
+18427e00
+20600000
+1fedfe00
+6000c5fa
+18007e73
+1fedfe00
+6000c5f9
+18007e01
+1fedfe00
+6000c5f8
+20206655
+6800c5fb
+203a6638
+58000070
+20600000
+580000aa
+20600000
+1fedfe00
+6000c5fa
+18007eef
+20406649
+68090426
+18420a00
+e0a08000
+18a20400
+60090426
+18007eff
+20406649
+68090426
+18420a00
+e0a08000
+20600000
+1fedfe00
+6000c5f9
+680145f9
+1fed7e00
+60018423
+da200107
+da40000f
+20406662
+1fe2fed7
+1fe47e00
+1fedfe00
+20600000
+6801c5f8
+60018423
+da200107
+da40000f
+20406662
+1fed7e00
+da400007
+20406662
+1fe2fe2b
+1fe47e00
+1fedfe00
+1fe20400
+20600000
+da600000
+1a427200
+20407e43
+1fe20400
+18427e00
+1a63a600
+c304666b
+9a228400
+1a60a601
+18438400
+68018423
+1a40a5ff
+2a41feff
+2020e675
+1a427200
+20407e43
+2feffe00
+79208400
+20206666
+18437e00
+20600000
+6808c5f5
+184b8400
+79200400
+6800c5fb
+245a661d
+6008843c
+20600000
+18438400
+6800c5fb
+793a0400
+20600000
+6808842b
+70042dd7
+204067c1
+6800c2e1
+79207e06
+79207e07
+6000c2e1
+7045fb00
+202067a1
+6800c2e1
+79207e07
+6000c2e1
+202067a1
+79200025
+44cd4033
+6800c70a
+c0006694
+20206755
+6801028d
+1fe20c00
+204066bf
+6800842b
+c000669a
+20206720
+79200025
+44cdc033
+6800842c
+c01fe682
+c039e68b
+c077e6a2
+c029e74d
+20600000
+68010430
+1fe20c00
+204066ca
+68008432
+c020e6ac
+c02066b4
+c038e6ed
+c03866f9
+c024e704
+202067a1
+204066b6
+202066ae
+6800c2e4
+79207e00
+79207e01
+6000c2e4
+204067ed
+202067a1
+204066b6
+202067a1
+204066d2
+202066de
+204066d2
+e8c08000
+1fe97e00
+6000c602
+e8c08000
+60008437
+20600000
+e8c08000
+6000842a
+1fe97e00
+6000842b
+e8c08000
+6000842c
+204066d5
+6009042e
+18c27e00
+60010430
+20600000
+e8c08000
+1fe37e00
+60008432
+204066d5
+60090433
+18c27e00
+60010435
+20600000
+68010435
+1fe20c00
+20600000
+e8c08000
+1fe20400
+18430400
+c3800000
+e8c08000
+1fe9fe00
+1ff27e00
+98408400
+20600000
+e8c08000
+6000c5f5
+e8c08000
+60008438
+e8c08000
+60008439
+e8c08000
+6000843a
+e8c10000
+600145f6
+e8c08000
+6000843b
+e8c08000
+6000c600
+20600000
+204066b8
+202066ef
+6800c2e4
+79207e05
+79207e06
+6000c2e4
+6808c5f5
+184b8400
+18418403
+20406820
+7045ff03
+202067a1
+7009bd08
+20407d86
+204066b8
+6800c602
+1fe67c01
+2022e700
+20203b31
+6800c2e4
+79207e07
+6000c2e4
+202067a1
+204066d2
+e8c08000
+600089e1
+2040487a
+20404889
+5800000e
+e0a10000
+680142da
+e0a10000
+6800c5fb
+1fe3fe00
+79207e00
+e0a08000
+79200025
+44ce4033
+580015ef
+e0a10000
+58001191
+e0a10000
+680089e1
+e0a08000
+58000007
+e0a28000
+58000001
+e0a10000
+20406634
+e0a08000
+20600000
+20206721
+79200025
+44cec033
+6800842c
+c039e72a
+c01fe72e
+c077e748
+c07fe740
+c029e74f
+20600000
+6800c2e4
+79207e03
+6000c2e4
+202067a1
+6800c2e4
+79207e03
+79207e02
+6000c2e4
+6800842a
+2040662b
+6000842d
+204067c1
+6800842a
+1feb7e00
+6000c5f5
+1febfe00
+793ffe01
+79207e00
+d84045fd
+60090426
+2040663a
+202067a1
+68010430
+1fe20c00
+1fe0fe01
+60010430
+e8c08000
+6808c600
+9840fe00
+6000c600
+20406853
+20406677
+20406838
+2040685d
+202067a1
+7009bd09
+20407d86
+20406611
+6800842a
+2040662b
+6000842d
+204067c1
+202067a1
+6801028d
+1fe20c00
+204066bf
+6800842b
+c000675b
+20206790
+79200025
+44cf4033
+6800842c
+c01fe682
+c039e68b
+c077e762
+202067a1
+68010430
+1fe20c00
+204066ca
+68008432
+c020e76b
+c020676b
+c038e776
+c0386786
+202067a1
+204066b6
+6800c5f5
+1fe37e00
+6808c5fc
+98467c00
+2022e772
+20203b31
+6800c2e4
+79207e01
+6000c2e4
+202067a1
+204066b8
+6800c602
+6808c5fc
+98467c00
+2022e77d
+20203b31
+202067a1
+6800c2e4
+79207e05
+79207e06
+6000c2e4
+6808c5f5
+184b8400
+18418403
+20406820
+202067a1
+204066b8
+6800c602
+6808c5fc
+98467c00
+2022e78c
+20203b31
+6800c2e4
+79207e07
+6000c2e4
+202067a1
+6800842b
+6808c5fc
+98467c00
+2022e796
+20203b31
+202067a1
+6800842c
+c039e79b
+c077e748
+c07fe740
+c029e7a0
+6800c2e4
+79207e03
+6000c2e4
+202067a1
+2020679f
+2020674f
+20600000
+6800c5ff
+207a0000
+c001e7a6
+20203b31
+7045ff00
+2040487a
+d8400001
+6808c5f5
+184b8400
+18418403
+da2000aa
+2040680a
+20404889
+18a20c00
+e8c10000
+203a3b31
+20600000
+20404889
+58000004
+e0a10000
+680142da
+e0a10000
+6800842a
+e0a08000
+79200025
+44cfc033
+5800013f
+e0a10000
+6800842d
+e0a08000
+20600000
+2040487a
+20404889
+58000004
+e0a10000
+680142da
+e0a10000
+6800842a
+e0a08000
+79200025
+44d04034
+58000173
+e0a10000
+6800842d
+e0a08000
+20600000
+20404889
+5800000e
+e0a10000
+680142da
+e0a10000
+6800c5fb
+1fe3fe00
+79207e00
+e0a08000
+79200025
+44d0c034
+580015ef
+e0a10000
+58001183
+e0a10000
+18427e00
+e0a08000
+580000f0
+e0a18000
+5800007f
+e0a10000
+58000000
+e0a08000
+58000001
+e0a08000
+20406634
+e0a08000
+70460110
+20600000
+2040487a
+20404889
+5800000e
+e0a10000
+680142da
+e0a10000
+6800c5fb
+1fe3fe00
+79207e00
+e0a08000
+79200025
+44d14034
+580015ef
+e0a10000
+58001181
+e0a10000
+6800c5f5
+e0a08000
+580000e0
+e0a18000
+68014604
+e0a10000
+58000000
+e0a08000
+6800c606
+e0a08000
+20406634
+e0a08000
+20600000
+20404889
+58000008
+e0a10000
+680142da
+e0a10000
+6800c5fb
+1fe3fe00
+79207e00
+e0a08000
+79200025
+44d1c034
+580009ef
+e0a10000
+580005e3
+e0a10000
+18427e00
+e0a08000
+5800008d
+e0a08000
+20406634
+e0a08000
+20600000
+2040487a
+20404889
+58000008
+e0a10000
+680142da
+e0a10000
+18421600
+6800c5fb
+1fe3fe00
+79207e00
+e0a08000
+79200025
+44d24034
+580009ef
+e0a10000
+580005e1
+e0a10000
+19627e00
+e0a08000
+5800008d
+e0a08000
+20406634
+e0a08000
+20600000
+79200025
+44d2c034
+6800c601
+207a0000
+68110112
+247a0000
+1a227e00
+600089bf
+600889be
+2040480e
+247a0000
+2040487a
+20404889
+58000005
+e0a10000
+680142da
+e0a10000
+6800843c
+e0a08000
+580001ff
+e0a10000
+6800c601
+e0a08000
+6800c5fe
+e0a08000
+70460100
+20600000
+79200025
+44d34034
+6800c603
+c1008000
+6801042e
+207a0000
+6800c601
+1fe0fe01
+6000c601
+20600000
+68014607
+20207f69
+79200025
+44d3c034
+6800c600
+207a0000
+1fe0ffff
+6000c600
+680145f6
+6809472c
+98467c00
+2021686a
+6001472c
+6800c601
+203a6872
+70043f01
+6800c5fe
+6000843e
+580000ff
+6000843d
+20206877
+70043f00
+6800c5fd
+6000843e
+580000ef
+6000843d
+79200025
+44d44035
+6801472c
+1fe67c7f
+2021687f
+6800843f
+1fe0fe01
+6000843f
+20406677
+6801472c
+1fe0fe08
+6808843f
+9840a200
+204047dc
+600102a0
+1fe0fe04
+600102a2
+1fe20a00
+6800843c
+e0a08000
+6800843d
+e0a08000
+204068aa
+204068bc
+79200025
+44d4c035
+68014609
+1fe20600
+6801472c
+1fe27200
+20406341
+18a20400
+18627e00
+60014609
+18420a00
+6800843e
+e0a08000
+680102a0
+1fe20a00
+6801472c
+6808843f
+9840fe00
+1fe0fe04
+e0a10000
+680142da
+e0a10000
+70460100
+6801460b
+c0005b20
+70041800
+20600000
+79200025
+44d54035
+6801472c
+1fe67c7f
+242168b3
+1fe3fe00
+79207e00
+e0a08000
+20600000
+6801472c
+1fe97e00
+1ff18400
+1fe17e7f
+1fe3fe00
+793ffe00
+e0a08000
+e0a88000
+20600000
+6800c601
+207a0000
+e0a08000
+20600000
+79200025
+44d5c035
+20407d9e
+20403d69
+20405926
+79200025
+44d64035
+204076f7
+204076ce
+204076e0
+2040480e
+247a0000
+2040432d
+2040480e
+247a0000
+79200025
+44d6c035
+20406913
+204044f2
+204067a2
+204068d8
+79200025
+44d74035
+20203d65
+680082a8
+c2804619
+c283c623
+20600000
+79200025
+44d7c035
+20404816
+207a0000
+6800804b
+c3830000
+204047f5
+6001016e
+1fe20c00
+e8c10000
+1fe0fe04
+6001427e
+70427d06
+79200025
+44d84036
+680142d6
+203a68f9
+6800804b
+c4038000
+793ffe07
+6000804b
+70427d05
+680942d6
+6801016e
+9840fe00
+6001016e
+6801427e
+98467e00
+6001427e
+79200025
+44d8c036
+6801427e
+203a3b31
+d8400104
+98467e00
+24216907
+79200025
+44d94036
+6009427e
+680142d6
+9840fe00
+600142d6
+20206909
+58000000
+600142d6
+6800804b
+79207e06
+6000804b
+20600000
+6800c70d
+c2806911
+7002b001
+20600000
+7002b00f
+20600000
+6800c70a
+243a6919
+680082af
+207a0000
+7002af00
+20600000
+79200025
+44d9c036
+680082b0
+207a0000
+c000e93a
+c0016993
+c001e940
+c0026997
+c01de94a
+c01e699a
+c006e94f
+c007699f
+c007e952
+c00869a5
+c008e958
+c00969a9
+c009e95e
+c00a69ad
+c00ae964
+c00b69b1
+c00be96a
+c00c69b6
+c00ce970
+c00d69ba
+c00de976
+c00e69be
+c00ee97c
+c00f69c3
+c00fe982
+c01069c7
+c010e98d
+c01169cb
+20600000
+204069d6
+7002b002
+6800c2e0
+79207e00
+6000c2e0
+20600000
+7002b004
+6800c2e0
+c3810000
+7002b003
+204069de
+7002b004
+6800c2e0
+79207e02
+6000c2e0
+20600000
+20404816
+247a0000
+204069ef
+7002b03c
+20600000
+204069e4
+7002b00e
+20600000
+20406a02
+7002b010
+6800c2e2
+79207e00
+6000c2e2
+20600000
+20406a0a
+7002b012
+6800c2e2
+79207e02
+6000c2e2
+20600000
+20406a10
+7002b014
+6800c2e3
+79207e00
+6000c2e3
+20600000
+20406a18
+7002b016
+6800c2e3
+79207e02
+6000c2e3
+20600000
+204069f4
+7002b018
+6800c2e1
+79207e00
+6000c2e1
+20600000
+204069fc
+7002b01a
+6800c2e1
+79207e02
+6000c2e1
+20600000
+20406a1e
+7002b01c
+6800c2e1
+79207e06
+6000c2e1
+20600000
+20406a26
+6800c2e4
+79207e00
+6000c2e4
+7002b01e
+20600000
+20406a2d
+6800c2e4
+79207e02
+6000c2e4
+7002b020
+6800c5fc
+1fe9fe00
+1fe1fe03
+d84045fd
+60090426
+2020663a
+20406a38
+6800c2e4
+79207e04
+6000c2e4
+7002b022
+20600000
+6800c2e0
+c4008000
+7002b003
+20206919
+6800c2e0
+c19f8000
+7002b03b
+680082ae
+c18b8000
+7002ae00
+7002b00d
+20206919
+6800c2e0
+247a0000
+6800c70d
+c28069ce
+c28369d0
+202069d4
+6800c2e2
+c4008000
+7002b011
+20206919
+6800c2e2
+c19f8000
+7002b013
+20206919
+6800c2e3
+c4008000
+7002b015
+20206919
+6800c2e3
+c19f8000
+6800c70d
+c28369d0
+202069d4
+6800c2e1
+c4008000
+7002b019
+20206919
+6800c2e1
+c19f8000
+7002b01b
+20206919
+6800c2e1
+c1ff8000
+6800c70d
+c28369d2
+202069d4
+6800c2e4
+c4008000
+7002b01f
+20206919
+6800c2e4
+c4018000
+7002b021
+20206919
+6800c2e4
+c1ff8000
+202069d4
+7002b00f
+20206919
+7002b017
+20206919
+7002b01d
+20206919
+7002b000
+20600000
+79200025
+44da4036
+2040485e
+58000001
+1fe20400
+58000050
+1fe21600
+2020463a
+79200025
+44dac036
+2040485e
+680142d8
+1fe20400
+2020464a
+79200025
+44db4036
+2040485e
+680142d8
+1fe20400
+d9600050
+20404660
+6800c2e0
+793ffe05
+6000c2e0
+20600000
+79200025
+44dbc036
+2040486c
+20406d01
+2020467c
+79200025
+44dc4037
+2040485e
+58000003
+1fe20400
+58000051
+1fe21600
+2020463a
+79200025
+44dcc037
+2040485e
+680142da
+1fe20400
+2020464a
+79200025
+44dd4037
+2040485e
+58000011
+1fe20400
+58000052
+1fe21600
+2020463a
+79200025
+44ddc037
+2040485e
+680142dc
+1fe20400
+2020464a
+79200025
+44de4037
+2040485e
+58000013
+1fe20400
+58000053
+1fe21600
+2020463a
+79200025
+44dec037
+2040485e
+680142de
+1fe20400
+2020464a
+79200025
+44df4037
+2040487a
+70042a03
+70042d1c
+204067b3
+7045fb01
+20600000
+79200025
+44dfc037
+2040487a
+6808c5fc
+2040667e
+6008c5f5
+202067d0
+79200025
+44e04038
+2040487a
+6808c5f5
+20406678
+2040661f
+6000842d
+6808c5f5
+20406678
+6008842a
+202067b3
+79200025
+44e0c038
+2040487a
+6808c5f5
+20406678
+2020680a
+79200025
+44e14038
+6801028d
+98000c00
+e8c08000
+1fe22400
+60008446
+e8c10000
+60010447
+e8c08000
+1fed1600
+e8c08000
+99609600
+79200025
+44e1c038
+1a427e00
+c0016a53
+c0026a7c
+c0036b5d
+c003ed18
+20206d40
+20406d4f
+2841fe01
+2020edbd
+2841feff
+2020ed43
+e8c10000
+6001044b
+196097fe
+196097ff
+2422ed3d
+d9600440
+e9610000
+207a0000
+19609602
+20406e09
+20404878
+18007e03
+e0a08000
+68010447
+e0a10000
+18ebfe00
+1fe0fe05
+1fe0a605
+1ff0fe00
+e0a10000
+18e27e00
+1ff0fe00
+e0a10000
+e0a10000
+d8c0045c
+18e27200
+2022ea76
+e8c20000
+e0a20000
+c2006a73
+18007e00
+e0a08000
+1a627e00
+6000829e
+203a3b31
+20600000
+e8c20000
+60020455
+196097fc
+98000400
+e8c10000
+1ff0fe00
+1fe0ffee
+60010449
+196097fe
+20406da6
+2022ed43
+2a21fe05
+2020ea8c
+d8a00428
+18000e00
+20206a9c
+e8c08000
+c0856d43
+e8c10000
+243a6a9a
+e8c08000
+c0ffea98
+e8c08000
+c0ffea96
+18c08dfb
+20206af2
+18c08dfb
+20206a89
+18c08dfc
+20206a89
+18c08dfd
+20206a89
+e8c08000
+c004eab1
+c0056a9f
+e8c10000
+e0a10000
+18e08e01
+1ff0a400
+e8c10000
+1ff0fe00
+1a40a401
+9a467c00
+24216aae
+1fe22600
+1a50fe00
+e0a10000
+18e08e01
+1a627e00
+20206aa5
+196097fb
+1a20a3fb
+20206ab6
+e8c10000
+e0a10000
+18e08e01
+196097fd
+1a20a3fd
+24216d43
+2422ea9c
+196097ff
+2422ed43
+20404878
+18a08a0a
+da200428
+79200025
+44e24038
+18e27e00
+203a6ad2
+ea210000
+203a6ad2
+98002400
+68020455
+98000400
+20406e52
+203a6acf
+18c08dfd
+e8c18000
+e0a18000
+20406cea
+203a6acf
+98007200
+20407ecd
+1a20a202
+18e08fff
+20206abd
+79200025
+44e2c038
+18007e00
+e0a08000
+18a08bff
+6809029c
+1840fe0a
+98a67e00
+1fe62200
+1a30fe00
+1840a408
+e2410000
+1a20a203
+1a30fe00
+1840a405
+e2410000
+1a20a203
+1a30fe00
+1840a403
+e2410000
+1a20a205
+1a227e00
+6001029e
+58000036
+1840a407
+e2408000
+58000005
+e0408000
+68010447
+1840a401
+e2410000
+20600000
+e8c08000
+c0856d43
+e8c10000
+243a6d43
+e8c08000
+c0ffed43
+e8c08000
+c0ffed43
+196097fb
+e8c08000
+c0006aff
+c000eb02
+c0016b06
+60010444
+196097ff
+20206b0a
+e8c08000
+60010444
+196097fe
+20206b0a
+e8c10000
+1ff0fe00
+60010444
+196097fd
+2422ed3d
+79200025
+44e34038
+20406e20
+2422ed3a
+18c22200
+20404878
+1a220c00
+18a08a03
+18c21600
+20406dea
+1fe22200
+68010444
+1fe22400
+1a227e00
+9a462400
+68010449
+9a467c00
+24216b38
+78547c00
+68010444
+203a6b2b
+99608c00
+1a40a403
+1a427200
+1f227e00
+1fe0fe03
+1ff0fe00
+e0a10000
+1f227e00
+1ff0fe00
+e0a10000
+20206b46
+1a20f206
+20346b2f
+1f30fe00
+20206b32
+1f227e00
+1fe0fe02
+1ff0fe00
+e0a10000
+1f20f3fd
+1f30fe00
+e0a10000
+19620c00
+20206b46
+78347c00
+68010449
+1fe22200
+1fe27200
+68010444
+203a6b2b
+99608c00
+1a227e00
+1fe0fe05
+1ff0fe00
+e0a10000
+1a227e00
+1ff0fe00
+e0a10000
+e8c08000
+e0a08000
+c2006b46
+24346b51
+18007e02
+e0a08000
+18c27e00
+99667e00
+1ff0fe00
+e0a10000
+20206b53
+18007e00
+e0a08000
+6801029c
+98a67e00
+1fe67e00
+6001029e
+20404878
+58000005
+e0a08000
+68010447
+e0a10000
+20600000
+20406d4f
+2841feff
+2020eb88
+e8c10000
+1ff0fe00
+1fe0ffee
+60010449
+196097fe
+20406da6
+d8a00428
+18000e00
+e8c18000
+c084eb88
+1fecfe00
+e0a10000
+18e08e01
+196097fd
+1a20a3fd
+24216d43
+2422eb68
+196097ff
+2422ed43
+20404878
+18a08a0d
+68010440
+98002600
+da200428
+ea220000
+203a6bae
+ea210000
+98002400
+20406e2e
+203a6b86
+18c08dfd
+e8c18000
+e0a18000
+20406cea
+98007200
+e8c08000
+e0a08000
+c2006b83
+1a20a202
+20206b78
+79200025
+44e3c038
+e8c08000
+e8c08000
+196097fb
+1a20a3fb
+24216d43
+e8c08000
+196097ff
+70044400
+70044500
+243a6b9f
+d9600440
+e9610000
+19609602
+20406e09
+18e27e00
+60008474
+203a6dc0
+d8e00000
+20404878
+18a08a0a
+20206c05
+e8c10000
+196097fe
+1ff0fe00
+60010444
+d9600440
+e9610000
+19609602
+20406e09
+18e27e00
+60008474
+203a6dc0
+d8e00000
+20404878
+18a08a07
+20206c14
+18007e00
+e0a08000
+18a08bff
+6809029c
+1840fe0d
+98a67e00
+2022ebd2
+1fe67e00
+1840a40c
+e2408000
+1fe0fe03
+1840a409
+e2408000
+1fe0fe03
+1ff0fe00
+1840a405
+e2410000
+1fecfe00
+1fe0fe03
+1ff0fe00
+1840a403
+e2410000
+1fecfe00
+1fe0fe05
+6000829e
+68010447
+1840a401
+e2410000
+58000007
+e0408000
+58000036
+1840a407
+e2410000
+1840a40a
+e2410000
+20600000
+70029e0a
+20404878
+58000007
+e0a08000
+68010447
+e0a10000
+58000500
+e0a10000
+58000200
+e0a10000
+58000035
+e0a18000
+20600000
+e8c08000
+e0a08000
+1a40a401
+1a20a3ff
+2022ebe5
+c2006bdf
+18a21600
+1a427e00
+60010444
+1a227e00
+60010449
+203a6c26
+20346c85
+19620a00
+18e08e01
+68008474
+98e67c00
+2422ec05
+20206ca4
+e8c08000
+e0a08000
+1a40a401
+1a20a3ff
+2022ebf8
+c2006bf2
+18a21600
+1a427e00
+60010444
+1a227e00
+60010449
+203a6c61
+20346c85
+19620a00
+18e08e01
+68008474
+98e67c00
+2422ec14
+20206ccc
+d8c0045c
+18ebfe00
+98c08c00
+e8c20000
+98000400
+20406e20
+18c21600
+20406dea
+1fe0f203
+68010449
+1fe22200
+68010444
+1fe22400
+19620c00
+20206bdf
+d8c0045c
+18ebfe00
+98c08c00
+e8c20000
+98000400
+20406e20
+18c21600
+20406dea
+1fe0fe03
+68090444
+98467200
+68010449
+1fe22200
+68010444
+1fe22400
+19620c00
+98c08c00
+20206bf2
+d8e00000
+da400000
+d8c0045c
+18ebfe00
+98c08c00
+e8c20000
+98000400
+20406e20
+20406dea
+1fe0fe03
+9a40a400
+18e08e01
+68008474
+98e67c00
+2422ec28
+19620a00
+18007e02
+e0a08000
+68010444
+1ff0fe00
+e0a10000
+18a08bfd
+6809029c
+1840fe0a
+98a67e00
+1fe67e00
+98002200
+1a427e00
+1840a409
+e2408000
+1fecfe00
+1840a408
+e2408000
+1a20a203
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a205
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+6001029e
+58000007
+e0408000
+58000036
+1840a407
+e2408000
+1840a401
+68010447
+e2410000
+20600000
+d8e00000
+da400000
+19620a00
+18007e02
+e0a08000
+68010444
+1ff0fe00
+e0a10000
+18a08bfd
+6809029c
+1840fe07
+98a67e00
+1fe67e00
+98002200
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a205
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+6001029e
+58000007
+e0408000
+1840a401
+68010447
+e2410000
+20600000
+19620a00
+18007e00
+e0a08000
+18a08bff
+6809029c
+1840fe07
+98a67e00
+1fe67e00
+98002200
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a203
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+6001029e
+58000007
+e0408000
+68010447
+1840a401
+e2410000
+20600000
+18007e00
+e0a08000
+18a08bff
+6809029c
+1840fe0a
+98a67e00
+1fe67e00
+98002200
+1a227e00
+1840a409
+e2408000
+1fecfe00
+1840a408
+e2408000
+1a20a203
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a203
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+6001029e
+58000036
+1840a407
+e2408000
+58000007
+e0408000
+68010447
+1840a401
+e2410000
+20600000
+18007e00
+e0a08000
+18a08bff
+6809029c
+1840fe07
+98a67e00
+1fe67e00
+98002200
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a203
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+6001029e
+58000007
+e0408000
+68010447
+1840a401
+e2410000
+20600000
+18c21600
+e8c08000
+1fe17207
+1fe97e00
+c0036cf3
+c000ede2
+c0026de7
+c002ede5
+20206de0
+20406cf5
+20206de0
+1f227e00
+c002ecfa
+c0036cfd
+18007203
+20206df1
+e8c08000
+1fe0fe02
+20600000
+e8c10000
+1ff0fe00
+1fe0fe03
+20600000
+20404878
+1fe20a00
+58000006
+e0a08000
+5800006e
+e0a10000
+58000f00
+e0a10000
+581a0535
+e0a18000
+58000111
+1ff07e00
+e0a20000
+58002600
+e0a10000
+58000335
+e0a10000
+58000009
+e0a10000
+58000004
+e0a10000
+70029e14
+20600000
+18c20400
+68010447
+c0376d1c
+20206d25
+18420c00
+196097fd
+19627e00
+c0016d25
+20406d26
+20740000
+6000c5fc
+7002ae17
+20600000
+20600000
+78347c00
+1fe27200
+d8400400
+e8c10000
+98467c00
+2022ed2f
+18c08dff
+c2006d29
+20600000
+d8400300
+e8c10000
+98467c00
+2022ed36
+18c08dff
+c2006d30
+20600000
+e8c08000
+e8c08000
+78547c00
+20600000
+58000200
+6001044d
+20206d45
+58000400
+6001044d
+20206d45
+58000600
+6001044d
+20206d45
+58000300
+6001044d
+20404878
+e0a08000
+68010447
+e0a10000
+58000200
+e0a10000
+6801044d
+e0a10000
+70029e07
+20600000
+79200025
+44e44039
+18000400
+d8a00440
+20406da6
+2022eda4
+e8c08000
+1a20a3ff
+196097ff
+2fe1f018
+2420eda4
+2fe00e04
+2420ed72
+18000401
+e8c08000
+1a20a3ff
+196097ff
+c0806d66
+e8c08000
+1a20a3ff
+196097ff
+c0006d77
+20206d69
+18c08c01
+1a20a3ff
+196097ff
+18c08c02
+1a20a3fe
+196097fe
+2841fe00
+2020ed9f
+18c08c0c
+1a20a3f4
+196097f4
+20206d9f
+2fe00e02
+2420ed75
+20206d5d
+2fe00e01
+2420eda4
+e8c10000
+1a20a3fe
+196097fe
+e0a10000
+2841fe00
+2020ed9f
+18c20400
+79200025
+44e4c039
+e8c08000
+c0806d98
+e8c08000
+c0806d98
+e8c08000
+c0886d98
+e8c08000
+c0806d98
+e8c08000
+c0c06d98
+e8c08000
+c0806d98
+e8c08000
+c0806d98
+e8c08000
+c0c06d98
+e8c08000
+c0afed98
+e8c08000
+c0cded98
+e8c08000
+c09a6d98
+e8c08000
+c07ded9d
+18420c00
+18c08c0c
+18000e00
+18000400
+20206d9d
+196097f4
+1a20a3f4
+2a21fe00
+2420ed55
+18007e00
+e0a10000
+20600000
+d84000ff
+20600000
+e8c08000
+196097ff
+2fe1f030
+2420edbb
+2fe00e07
+2020edb4
+2fe00e06
+2020edb6
+2fe00e05
+2420edbb
+e8c08000
+1fe22200
+196097ff
+20206db9
+18c08c02
+196097fe
+e8c10000
+1ff0a200
+196097fe
+18007e01
+20600000
+18007e00
+20600000
+58000003
+60008446
+20206dc2
+58000007
+60008446
+20404878
+68008446
+e0a08000
+1fe22400
+68010447
+e0a10000
+58000500
+e0a10000
+2a41fe05
+2020edd2
+2a41fe07
+2020edd2
+58000000
+e0a18000
+e0a10000
+20206dd6
+58350200
+e0a18000
+58000000
+e0a10000
+70029e0a
+20600000
+18c21600
+e8c08000
+1fe17207
+1fe97e00
+c0036de7
+c000ede2
+c0026de7
+c002ede5
+19620c00
+20600000
+20406e03
+1fe0fe01
+20206de0
+18007e02
+20206de0
+20406df9
+1fe0fe02
+20206de0
+e8c08000
+1fe17207
+1fe97e00
+c0036df9
+c000edf1
+c002edfe
+20600000
+20406e03
+98007200
+18000400
+184d0400
+e8c08000
+98418400
+c2006df4
+20600000
+1f227e00
+c002edfe
+c0036e00
+18007203
+20206df1
+e8c08000
+20600000
+e8c10000
+1ff0fe00
+20600000
+18007e01
+1f227c00
+20628000
+1fe3fe00
+c2006e06
+20600000
+98002600
+79200025
+44e54039
+18000e00
+6801460d
+98000c00
+d8a0045c
+78547c00
+e8c08000
+207a0000
+98007200
+e8c10000
+9a667c00
+2422ee18
+78347c00
+c2006e14
+e8c20000
+24346e1d
+e0a20000
+18e08e01
+20406dea
+98c08c00
+20206e10
+79200025
+44e5c039
+6801460d
+98000c00
+e8c08000
+207a0000
+1fe3fe00
+98c08c00
+e8c20000
+98467c00
+20628000
+20406dea
+98c08c00
+20206e24
+79200025
+44e64039
+6801460d
+98000c00
+e8c08000
+203a6e4f
+98007200
+e8c10000
+9a667c00
+2022ee3d
+c2006e35
+18c08c04
+20406dea
+98c08c00
+20206e32
+1f20f3ff
+1f23fe00
+98c08c00
+18c08c04
+20406dea
+98c08400
+18c08c01
+e8c10000
+9a461600
+7922fe00
+19621600
+20628000
+20406dd8
+98c08c00
+18427e00
+98c67c00
+2022ee4f
+20206e43
+18000c00
+18007e00
+20600000
+79200025
+44e6c039
+6801460d
+98000c00
+e8c08000
+203a6e6c
+1fe3fe00
+98c08c00
+e8c20000
+98467c00
+2022ee60
+20406dea
+98c08c00
+20206e56
+20406dea
+98c08400
+18c08c01
+e8c10000
+9a467c00
+20628000
+20406dd8
+98c08c00
+18427e00
+98c67c00
+2022ee6c
+20206e62
+18000c00
+20600000
+79200025
+44e74039
+70050950
+d8a0050a
+d8c044c3
+20407e87
+d8c0465a
+20407e85
+d8c008e2
+20407e85
+20406f2d
+d8c00352
+20406f28
+20406ef2
+d8a00a11
+20406f24
+580f4240
+1fe22200
+68020a11
+9a26fc00
+20407f53
+18077e00
+600208de
+20600000
+70050941
+d8a0050a
+20406ed7
+20406ed2
+6801c4dd
+e0a18000
+20406e96
+d8c00352
+20407e87
+d8c044c3
+20407e87
+20406f2d
+d8c00a31
+d8a009e1
+20407e87
+20206ef2
+6802456d
+e0a20000
+20407e98
+20207e95
+79200025
+44e7c039
+70050941
+d8a0050a
+20406ed2
+20406ed7
+6801c4d6
+e0a18000
+20406e96
+d8c044c3
+20407e87
+d8c00352
+20407e87
+20406f2d
+d8c00a31
+d8a009e1
+20407e87
+20406ef2
+d8a00a11
+20206f24
+70050920
+d8c00922
+d8a0050a
+20407e85
+20406f2d
+d8c008c2
+20406f28
+20406ef2
+d8a009e1
+204071c0
+d8400001
+20406ec0
+d8a044a2
+20406f24
+d8400000
+20406ec0
+d8a00a31
+202071c0
+79200025
+44e8403a
+70050935
+58000100
+6001050a
+20406ed2
+20406ed7
+d8c044c3
+20407e87
+d8c00352
+20407e87
+58006c65
+e0a10000
+58006274
+e0a10000
+e0a88000
+20406f2d
+20206ef2
+6803453e
+e0a30000
+6800c532
+e0a08000
+20600000
+68030372
+e0a30000
+6800c52b
+e0a08000
+20600000
+70050941
+6800c6ec
+6000850a
+d8c0465a
+20407e85
+d8c008e2
+20407e85
+20406f2d
+d8c00352
+20406f28
+20206ef2
+70050941
+6800c6ec
+6000850a
+d8c008e2
+20407e85
+d8c0465a
+20407e85
+20406f2d
+d8c044c3
+20406f28
+20206ef2
+79200025
+44e8c03a
+20406f42
+68008509
+1fe20400
+1fe0fe0f
+1ff1fe00
+1fe22400
+203a6f05
+18417e0f
+243a6f08
+da6009f1
+dfe0050a
+1fe0fff0
+9840a200
+d8a00a21
+df200004
+20407ea8
+20206f13
+da400001
+da200000
+20206f09
+1841220f
+dfe0050a
+9840fe00
+9a260c00
+d8a00a11
+20406f69
+da600a01
+da200a11
+d8a00a21
+df200004
+20407ea8
+204071ba
+20407150
+d8c0050a
+1a40a5ff
+1a427e00
+203a6f1c
+204071af
+2040714a
+20206f16
+d8a00a11
+204071c0
+d8c00a21
+204071af
+20407150
+d8c00a11
+204071af
+2020714a
+18a22200
+204071c0
+df200010
+20207eb0
+d8a009e1
+20407e87
+df200010
+da2009e1
+20207eb0
+68008509
+1fe27200
+da20050a
+20207eb0
+ea208000
+1fe3fe00
+2a6ffe00
+7920fe00
+2feffe08
+7920a600
+e2208000
+1a20a3ff
+c2006f31
+20600000
+da2009f1
+1a20a20f
+18007210
+18002600
+20206f31
+da200a01
+20206f3c
+d8c009e1
+204071ad
+18007008
+204071bb
+204071ba
+20407147
+d8a009f1
+204071c0
+79200025
+44e9403a
+680089f1
+2feffe07
+2420ef54
+20406f3b
+da6009f1
+d8a009f1
+20406f5e
+20206f55
+20406f3b
+d8c009f1
+d8a00a01
+20407e87
+68008a01
+2feffe07
+2420ef40
+20406f40
+da600a01
+d8a00a01
+df200003
+d8400000
+20406f65
+1a60a604
+c2006f5f
+d8408700
+18500400
+ea620000
+9842fe00
+e0a20000
+20600000
+79200025
+44e9c03a
+df200010
+dfe00000
+9a267c00
+2022ef75
+20216f78
+e8c88000
+e0a88000
+1fe0fe01
+c2006f6d
+20600000
+d8400080
+e0a88000
+20206f72
+d8400000
+20206f76
+20406f8d
+d8c004b6
+d8a004a6
+20207e87
+78547c00
+20407084
+d8c00486
+d8a004c6
+1800720f
+20407ecd
+e8c08000
+1fe2fe06
+e0a08000
+580004d6
+600104fa
+580004c6
+600104f8
+79200012
+20206fcd
+6808c718
+18002410
+1840a606
+1a667c10
+20216f93
+18002610
+d8a004c6
+d8c04719
+18427200
+78547c00
+e8c08000
+e0a08000
+1a40a5ff
+2022efa1
+c2006f97
+20346f94
+78347c00
+18007206
+1a220c00
+20206f97
+d8c00486
+d8a004d6
+20407e87
+680084e5
+9a62fe00
+600084e5
+580004d6
+600104fa
+580004c6
+600104f8
+79200012
+20206fcd
+78547c00
+20407084
+20206fb7
+da200056
+78347c00
+20407084
+20406fb7
+d8c004b6
+d8a00062
+20207e87
+58000486
+600104fa
+58004261
+600104f8
+793f8012
+20406fcd
+da2004b6
+da400486
+d8a004c6
+20407077
+da2004c6
+da4004d6
+1a420a00
+78347c00
+20407075
+2040708f
+580004d6
+600104fa
+580004c6
+600104f8
+79200012
+20206fcd
+7004fc00
+680104f8
+98000c00
+d8a004e6
+20407e87
+680104fa
+98000c00
+d8a004b6
+20407e87
+20406ff4
+78547c00
+c5896fde
+680084fc
+c0826fde
+680104fa
+98002400
+20407026
+20407025
+20407038
+680084fc
+1fe0fe01
+600084fc
+20406ff4
+78347c00
+20407025
+20407047
+20407056
+20407047
+20407056
+20407047
+20407056
+20407047
+680084fc
+1fe0fe01
+600084fc
+c0886fd6
+20406ff4
+78547c00
+20207025
+680084fc
+d8c004e6
+203a701b
+98002400
+18007211
+18c20a00
+e8c08000
+1fe98400
+1feb7e00
+1fe97e00
+9841fe00
+e0a08000
+c2006ffa
+580004e6
+9a408c00
+18007210
+d8a00496
+e8c08000
+e0a08000
+28c1fef7
+2420f00a
+18c08def
+c2007005
+18002200
+1a40a7ff
+1a6ba600
+1a6ba600
+204071e2
+58008400
+9a60a600
+d8a00496
+18007210
+ea688000
+e8a08000
+9840fe00
+e0a08000
+1a60a601
+c2007014
+202071e6
+18007210
+18000400
+e8c08000
+98428400
+c200701d
+18427e00
+e0c08000
+d8c004e6
+d8a00496
+20207e87
+da400496
+18007210
+da2004b6
+1a220a00
+ea288000
+ea408000
+9842e000
+1f212603
+2434702f
+1a62a603
+1a662601
+20217032
+9840e000
+1e027e00
+e0a08000
+1a20a201
+1a40a401
+c2007029
+20600000
+204071e2
+18007210
+da2004b6
+ea208000
+d8c08500
+1f212603
+1a667c01
+20217041
+d8c08600
+98c08c00
+e8c08000
+e2208000
+1a20a201
+c200703b
+202071e6
+18007208
+d8c004b6
+18c20a00
+e8c08000
+98002200
+e8c08000
+98002400
+1a23fe00
+9a40fe00
+e0a08000
+1a227e00
+9a40fe00
+e0a08000
+c200704a
+20600000
+588ae42c
+98000400
+18007207
+20407065
+580d751b
+98000400
+18007205
+20407065
+680084c5
+98002200
+680084b9
+600084c5
+1a227e00
+600084b9
+20600000
+1841240f
+18417e0f
+d8a004b6
+98a08a00
+e8a08000
+98002600
+1a227e00
+e0a08000
+1a622200
+18518400
+c2007066
+580004b6
+9a408a00
+1a227e00
+e0a08000
+20600000
+78347c00
+20207078
+78547c00
+18007210
+ea288000
+ea408000
+2034707e
+9842fe00
+2020707f
+9840fe00
+e0a08000
+1a20a201
+1a40a401
+c2007079
+20600000
+d8a004d6
+ea230000
+e0a30000
+2034708a
+ea230000
+2020708b
+e8c30000
+e0a30000
+ea220000
+e0a20000
+20600000
+d8c04261
+d8a004c6
+d8400000
+588395a7
+204070b0
+58b3c1df
+204070b0
+5800e5e9
+204070b1
+18422800
+78547c00
+2040709e
+1a820400
+78347c00
+2020709e
+18007208
+e8c08000
+2f200201
+203470a5
+2020f0a6
+9840fe00
+202070a7
+2020f0a3
+9842fe00
+e0a08000
+184c8400
+c200709f
+20600000
+680304ba
+60030056
+e8c30000
+e0a30000
+20600000
+184d0400
+18500400
+98418400
+20600000
+202070b4
+79200025
+44ea403a
+20407153
+d8a044a2
+202071c0
+d8a044c3
+2034f0bd
+d8a00352
+18c22200
+20407e87
+20407168
+d8c044b3
+202071d9
+da200352
+2034f0c5
+da2044c3
+1a220a00
+20405917
+20207168
+d8c04551
+204071af
+d8c044a2
+204071b0
+18006c38
+18006c00
+20407145
+d8a003a0
+202071c0
+18007e49
+202070d4
+18007e01
+18007000
+184d5e00
+9de1de00
+1f00f001
+184cde00
+1df15e00
+6801449a
+1ff07e00
+9de1de00
+1f00f001
+e8c20000
+98005e00
+1f00f001
+e8c10000
+1a30de00
+1df05e00
+9de1de00
+1f00f001
+20600000
+1a608c01
+e8c08000
+98002200
+204070d1
+20407147
+18007000
+ea608000
+1fe17e03
+1ff05e00
+79205e08
+204071b8
+2040714a
+1a227200
+1a608c02
+20407197
+204071a1
+2040714a
+1f227e00
+203a70fb
+202070f6
+1800700c
+1de27e00
+6002033a
+20600000
+1a20a201
+204070d3
+1a620c00
+204071ab
+2040714d
+204071c7
+1a60a610
+1a40a5f0
+202170ff
+20600000
+79200025
+44eac03a
+da604465
+680ac48c
+204070e7
+18007008
+98005e00
+18002200
+204070d3
+2040714d
+da604467
+6800c466
+1fe0a5ff
+9a608a00
+1800700c
+1de27e00
+e0a20000
+204070ff
+6800c466
+1fe0fe04
+6000c466
+680ac48c
+18408401
+600ac48c
+20600000
+79200025
+44eb403a
+68008303
+1fe67c14
+20217127
+da600304
+1fe0a5ff
+1fe0fffc
+60008303
+9a608c00
+e8c20000
+18007008
+98005e00
+18002200
+680ac491
+204070d3
+2040714d
+1800700c
+1de27e00
+6002033e
+204070ff
+da600302
+204070e7
+680a033e
+98467e00
+247a0000
+68024496
+98467e00
+207a0000
+600a4496
+6802c491
+1fe0fe01
+6002c491
+18007e00
+20600000
+243bf145
+20600000
+18006c30
+18006c00
+20207145
+18006c32
+18006c02
+20207145
+18006c34
+18006c04
+20207145
+18006c01
+18006c00
+20600000
+18007000
+68020352
+98005e00
+1f00f001
+e8c20000
+98005e00
+1f00f001
+680244c3
+98005e00
+1f00f001
+e8c20000
+98005e00
+1f00f001
+204071bb
+1f00f1fc
+6802456d
+1fe25e00
+1f00f004
+18006c38
+18006c08
+20207145
+79200025
+44ebc03a
+6803453e
+680b0372
+2034f16f
+68030372
+680b453e
+18007008
+18425e00
+1f00f001
+184f5e00
+1ff07e00
+9de1de00
+1f00f001
+1fef5e00
+1f00f001
+18005e00
+18007e00
+6800c52b
+6808c521
+2434f17f
+6800c532
+6808c52b
+6000c4d3
+6008c4d4
+18007000
+da4044d3
+18007204
+ea220000
+ea4a0000
+9842de00
+1f00f001
+1a20a204
+1a40a404
+c2007184
+204071bb
+1f00f1fc
+6802456d
+1fe25e00
+1f00f004
+18006c38
+18006c0c
+20407145
+204071ba
+18006c3a
+18006c08
+20207145
+2f200600
+20608000
+18c27e00
+9f208a00
+18007e00
+e0a08000
+1f20f201
+2f200600
+20608000
+2020719c
+18007000
+1f227e00
+203a71a6
+e8c20000
+1f20f3fc
+98005e00
+1f00f001
+2f001e04
+20608000
+202071a2
+18007008
+202071b0
+18007004
+202071b0
+18007000
+18007204
+e8c20000
+98005e00
+1f00f001
+c20071b1
+20600000
+d8c003a0
+202071ad
+18007204
+202071bd
+18007000
+18007204
+18005e00
+1f00f001
+c20071bc
+20600000
+1800700c
+18007204
+1de27e00
+e0a20000
+1f00f001
+c20071c2
+20600000
+1800700c
+1a620a00
+1a40f201
+1f267c0f
+202171cd
+18007210
+1de27e00
+1f267c03
+202171d5
+e0a20000
+1f20f3fc
+20628000
+1f00f001
+202071cd
+e0a08000
+1fecfe00
+c20071d5
+20600000
+1800700c
+18007204
+e8c20000
+9de67c00
+24628000
+1f00f001
+c20071db
+18007c00
+20600000
+68108050
+793ffe00
+60108050
+20600000
+68108050
+79207e00
+60108050
+20600000
+d8a007aa
+3803ffff
+3807ffff
+380bffff
+380ffbff
+e0a48000
+3803ffff
+3807ffff
+380bffff
+380fffff
+e0a48000
+3803ffff
+3807ffff
+380bcfff
+380fffff
+e0a48000
+3803ffff
+3807ffff
+380bffef
+380fffff
+e0a48000
+3803ffff
+3807ffff
+380bffff
+380fffff
+e0a48000
+3803ffff
+38066c7f
+3808146b
+380f7bb3
+e0a48000
+3801feb8
+38050c12
+380ab722
+380e9fa6
+e0a48000
+3800e70f
+38056720
+3808519e
+380d9084
+e0a48000
+38031012
+380760bf
+380bf0af
+380c03d3
+e0a48000
+3803a188
+38043ad0
+380bcbf2
+380e43d9
+e0a48000
+3802b030
+38076a03
+38091188
+380de520
+e0a48000
+3803a11e
+3804fe5d
+3808dd57
+380dac93
+e0a48000
+380011ed
+380618c4
+38088da7
+380e57ff
+e0a48000
+3803192b
+38074641
+3809be0c
+380f66ad
+e0a48000
+38001f83
+38055a23
+380bf9b0
+380c3949
+e0a48000
+38013a51
+380553fd
+380b372a
+380cf1bb
+e0a48000
+3803ae85
+3805eed9
+38089e66
+380c01a8
+e0a40000
+20600000
+d8a00842
+3803ffff
+3807ffff
+380bffff
+380fffff
+e0a48000
+3803ffff
+3804003f
+38080000
+380c0000
+e0a48000
+38000000
+38040000
+38081000
+380c0000
+e0a48000
+3803ff00
+3807ffff
+380bffcf
+380fffff
+e0a48000
+3803ffff
+3807ffff
+380bffff
+380c03ff
+e0a48000
+38000000
+38040000
+38080000
+380c0000
+e0a48000
+38010000
+38040000
+380bf000
+380fffff
+e0a48000
+380296ff
+38062630
+380b945d
+380fd284
+e0a48000
+380333a0
+38044b7a
+380837d8
+380fc9dc
+e0a48000
+3803a440
+3805b958
+380b8bce
+380d091f
+e0a48000
+3802e12c
+3805f47c
+380b56b1
+380efd47
+e0a48000
+38006837
+3806ed90
+3809ecec
+380dacc5
+e0a48000
+38023357
+38058af3
+3808f9e1
+380d29f0
+e0a48000
+3802e7eb
+3807e6e3
+380be1a7
+380d0b8b
+e0a48000
+38024fe3
+380420ef
+3809b5a6
+380cdc2f
+e0a48000
+38013860
+3806bd69
+3808391a
+380db222
+e0a48000
+20600000
+20758000
+204074fd
+204075c9
+70808100
+204073a5
+5800737c
+6001428c
+5800748c
+6001428e
+58007365
+60014298
+5800737a
+60014294
+58007371
+60014290
+580072f4
+60014296
+580072ef
+6001428a
+580074e5
+6001429c
+580074f4
+6001429a
+20407496
+70421200
+7048c700
+79200025
+44ec403b
+6800c755
+c00072b8
+20407382
+20407cf6
+20407d02
+70475600
+6801470b
+c3860000
+20203e75
+70475601
+70475b01
+20407382
+58004771
+2040738e
+20407d44
+6800c713
+243a72bd
+7043ff01
+58000000
+60024729
+20407382
+68014748
+6001474a
+204072e5
+70474600
+20405234
+6803453e
+204072d6
+204072d2
+20600000
+600141f4
+1fe0fffc
+6001451c
+6001451e
+20600000
+68094741
+207a0000
+e0430000
+20600000
+60030100
+68008100
+6000810b
+e8c08000
+6000810a
+e8c08000
+60008109
+e8c08000
+60008108
+e8c08000
+60008107
+e8c08000
+60008106
+68030106
+20600000
+7048bb00
+6801474e
+243a72ec
+58004763
+2040738e
+580000a0
+204072cd
+6801474c
+6001474e
+20600000
+6800c740
+c000be35
+6800c877
+243a3e35
+20203e37
+1a627e00
+c016f475
+c008747a
+c00a7334
+c00af34c
+1fe1040f
+1fe17ef0
+c02872fd
+20600000
+6008824e
+6800824e
+207a0000
+1fe0ffff
+6000824e
+79200025
+44ecc03b
+20407d1f
+2040731f
+2040732c
+2040746c
+20407464
+20407313
+2040730c
+202072fe
+6800c8c7
+207a0000
+1fe0ffff
+6000c8c7
+247a0000
+70421205
+20600000
+6800c8c2
+207a0000
+1fe0ffff
+6000c8c2
+247a0000
+68008362
+c302731c
+7048c201
+20600000
+20403e7f
+7009bd12
+20207d90
+6800c756
+c1808000
+6801474e
+207a0000
+1fe0ffff
+6001474e
+247a0000
+6801470b
+c284f32a
+5800476a
+2040738e
+58000140
+202072cd
+6801474a
+207a0000
+1fe0ffff
+6001474a
+247a0000
+70475602
+20407487
+20600000
+70413100
+68014748
+6001474a
+70474600
+20403e61
+58112233
+6001c4a2
+58445566
+e0a18000
+58778899
+e0a18000
+58001122
+e0a18000
+58334455
+e0a18000
+58000066
+e0a08000
+20403e61
+20403e7f
+70474e00
+5800477f
+2040738e
+70470e00
+20600000
+70421200
+7048c700
+7044b200
+7048c600
+7048c000
+2040749b
+68014748
+6001474a
+6800c743
+c0807369
+204072e5
+70474600
+58000000
+60010286
+58000000
+60010288
+20407363
+20403e63
+20600000
+70474001
+20600000
+6800c740
+20600000
+70474000
+20600000
+20203e75
+70474301
+6801470b
+c284be6b
+2040736d
+20407f6b
+70474300
+20203e0a
+58000000
+60010286
+60010288
+20207363
+6800c747
+245a7375
+204074ca
+202073c5
+70474700
+7009bd03
+20204bd6
+70474701
+20600000
+204074ca
+202073c5
+204073af
+680147b6
+203a7380
+20203e75
+20406509
+2020748c
+6800c75e
+1fe27200
+5800475f
+1fe22200
+1a220c00
+e8c08000
+c07ff38c
+1fe20400
+6000c70e
+20407d2a
+c2007386
+20600000
+1fe20c00
+18007207
+d8a047a2
+20407ecd
+79200025
+44ed403b
+6800c7a2
+c17f8000
+680947a4
+60094711
+680947a6
+6009470f
+6808c7a8
+6008c713
+20407d2f
+6808c7a3
+6008c70e
+6800c7a2
+c00073a3
+c000fd38
+c0017d3f
+20600000
+20207d2f
+6800c7a9
+207a0000
+1fe27200
+580047aa
+1fe22200
+ea288000
+204064df
+1a20a202
+c20073aa
+20600000
+da2047aa
+18002400
+7047b600
+ea288000
+204064f5
+79200025
+44edc03b
+680147b6
+1a420e00
+f920fe00
+600147b6
+1a20a202
+1a40a401
+6800c7a9
+9a42fc00
+2422f3b2
+680147b6
+680947b8
+9842fc00
+20628000
+78347c00
+20600000
+d8e0000c
+20407ee2
+247a0000
+204074c7
+6800c75b
+207a0000
+78547c00
+2040748c
+79200025
+44ee403b
+6800c7a9
+207a0000
+204073af
+24347d28
+20407d26
+78547c00
+68014748
+6001474a
+6801470b
+c304f2e5
+204074de
+202173f5
+680147b6
+600147c0
+7047c200
+18000e00
+79200025
+44eec03b
+680147b8
+1fe30400
+600947b8
+1fe17e01
+680947c0
+18412201
+18430400
+600947c0
+9a22fc00
+2442f3f9
+6800c7a9
+6808c7c2
+18408401
+6008c7c2
+18420e00
+98e2fc00
+2422f3df
+680147b6
+600147b8
+20600000
+58000000
+600147b6
+600147b8
+20600000
+1a227e00
+203a7419
+79200025
+44ef403b
+18e27e00
+c0007423
+c000f427
+c001742b
+c001f42f
+c0027433
+c002f437
+6800c56b
+c1818000
+6800c8bb
+247a0000
+e8408000
+207a0000
+6000c7ba
+18408401
+600947bb
+680147bb
+efe88000
+18427200
+98408400
+600947bb
+1fe20400
+2040749c
+6800c7ba
+1fe0ffff
+6000c7ba
+2422f40d
+202074ca
+79200025
+44efc03b
+18e27e00
+c000743b
+c000f43f
+c0017443
+c001f447
+c002744b
+c002f44f
+20207404
+6800c7ab
+20407457
+d84047c3
+20207404
+6800c7ad
+20407457
+d84047eb
+20207404
+6800c7af
+20407457
+d8404807
+20207404
+6800c7b1
+20407457
+d8404823
+20207404
+6800c7b3
+20407457
+d840483f
+20207404
+6800c7b5
+20407457
+d840485b
+20207404
+6800c7ab
+20407453
+d84047d7
+20207404
+6800c7ad
+20407453
+d84047f9
+20207404
+6800c7af
+20407453
+d8404815
+20207404
+6800c7b1
+20407453
+d8404831
+20207404
+6800c7b3
+20407453
+d840484d
+20207404
+6800c7b5
+20407453
+d8404869
+20207404
+2fe1fe01
+20608000
+18007e03
+20207457
+c000745c
+c000f45e
+c0017460
+c001f462
+2020738e
+58004786
+2020738e
+5800478d
+2020738e
+58004794
+2020738e
+5800479b
+2020738e
+6800c75a
+207a0000
+1fe0ffff
+6000c75a
+247a0000
+6800c756
+c000f2c0
+2020748a
+6800c758
+207a0000
+1fe0ffff
+6000c758
+247a0000
+20203e73
+6800c757
+6000c758
+20203e71
+6800c756
+c000f478
+20203e75
+70475b01
+20600000
+6800c756
+c000f481
+70475601
+58004771
+6808c759
+6008c75a
+2020738e
+70475602
+70475b00
+7043ff00
+6801470b
+c304f487
+20403e6b
+7043ff00
+58004778
+2020747e
+20407382
+20203e75
+6800c7a9
+207a0000
+1fe27200
+580047aa
+1fe22200
+ea288000
+204064c2
+1a20a202
+c2007491
+20600000
+70487700
+5800487c
+60014878
+6001487a
+20600000
+20207496
+78547c00
+6800c877
+2fe1fe06
+20608000
+78347c00
+6801487a
+1fe20a00
+18420c00
+20407ecd
+6800c877
+1fe0fe01
+6000c877
+5800487a
+204074ab
+20600000
+1fe22200
+d84048b8
+ea210000
+1fe0fe0a
+98467c00
+242174b2
+5800487c
+e2210000
+20600000
+78547c00
+6800c877
+207a0000
+78347c00
+6800c877
+1fe0ffff
+6000c877
+68014878
+600148b8
+58004878
+204074ab
+680148b8
+20600000
+78547c00
+6800c877
+207a0000
+78347c00
+68014878
+20600000
+6801475c
+d8e0000c
+20207ed4
+204074c1
+24740000
+78547c00
+18000413
+600944f8
+202074d0
+df200002
+680944f8
+d8c04729
+204074d7
+20600000
+7009bd1d
+202074dc
+20404bd0
+247a0000
+6800c8ba
+247a0000
+7009bd1b
+20404bd6
+2020735f
+680a472f
+1c427e00
+6002472f
+98467e00
+24610000
+1fe67e14
+20600000
+204074b4
+24740000
+78547c00
+1fe20c00
+e8c88000
+184085fd
+18427200
+e8c90000
+1f20fe07
+6000c73f
+d8a0446c
+e0a90000
+20407ecd
+6808c73f
+20204f89
+6800839a
+c00974f8
+c02974fb
+20600000
+6801039b
+c00c74fb
+20600000
+7048ba00
+20600000
+d8a048cc
+38020001
+38060000
+38081022
+380c0860
+e0a48000
+38030200
+38044a00
+38083200
+380c0800
+e0a48000
+38012a05
+38050000
+38082000
+380ca408
+e0a48000
+38000002
+38040140
+38080020
+380c08a0
+e0a48000
+38021800
+38048001
+380a8030
+380c0804
+e0a48000
+38020007
+38068000
+38083132
+380da5a1
+e0a48000
+38017370
+38075859
+3808c422
+380c8115
+e0a48000
+38002020
+38040808
+380a0202
+380c0020
+e0a48000
+38000302
+3804804a
+38080090
+380c0408
+e0a48000
+3800022a
+38068032
+38082000
+380ca00c
+e0a48000
+38030201
+38048002
+380aa040
+380c1820
+e0a48000
+38000600
+38041900
+380812c0
+380c0030
+e0a48000
+38000002
+3806808a
+3808d180
+380c0800
+e0a48000
+38012803
+38078080
+38082000
+380ca940
+e0a48000
+38020207
+38058922
+38081826
+380c3c00
+e0a48000
+38000200
+38048a00
+38098120
+380c0040
+e0a48000
+38000302
+3805804a
+38080110
+380d3808
+e0a48000
+5801012a
+e0a18000
+38020012
+380600c0
+38092012
+380c004c
+e0a48000
+38024d02
+3804008a
+38094280
+380c0800
+e0a48000
+38022902
+38040000
+38080150
+380c2008
+e0a48000
+38020229
+38058040
+38082001
+380ca00c
+e0a48000
+38031201
+38048005
+380aa4d0
+380c0008
+e0a48000
+38001828
+38048080
+38082290
+380c0000
+e0a48000
+38020019
+38064200
+38083022
+380c6804
+e0a48000
+38030200
+38044a00
+3809b020
+380c0800
+e0a48000
+38002a4b
+38070151
+38081090
+380c0684
+e0a48000
+38010285
+38067a42
+38089ea0
+380c2788
+e0a48000
+38011530
+38070940
+38090750
+380c0654
+e0a48000
+38000081
+38044170
+38086090
+380c0684
+e0a48000
+38010385
+380641c1
+380a9e01
+380c579c
+e0a48000
+38012500
+38045d40
+38088950
+380c0a04
+e0a48000
+38010875
+38054065
+380a5001
+380c17d0
+e0a48000
+38001907
+38050a40
+3808081f
+380c0300
+e0a40000
+3802001c
+380600c0
+38082012
+380c0074
+e0a48000
+38024a02
+3804410a
+38080011
+380c7804
+e0a48000
+38030200
+38044a00
+3809f040
+380c0800
+e0a48000
+38012a4c
+38040000
+38082002
+380ca000
+e0a48000
+38000f02
+38040846
+38083020
+380c04a0
+e0a48000
+38002212
+38064080
+380812a1
+380c8c00
+e0a48000
+38020200
+38048a40
+38080000
+380c0000
+e0a48000
+20600000
+7044df01
+7045a801
+70456c01
+5800001b
+6001458b
+70452201
+7048c803
+70459650
+70454c17
+70454e17
+d8a044dc
+38000302
+38040040
+38081021
+380c0000
+e0a38000
+d8a0458d
+38000008
+38040004
+380ac000
+380c0004
+e0a40000
+20600000
+6800c6e2
+243a75f4
+20207a96
+79200025
+44f0403c
+6800c6e2
+207a0000
+6800c639
+c1808000
+6800c563
+207a0000
+6800c568
+c1018000
+6801470b
+c28075f2
+6800c565
+c0007a96
+20600000
+70456500
+20600000
+79200025
+44f0c03c
+6800c6e2
+203a5737
+2040572f
+204075fb
+20207684
+58000000
+600408d2
+600208da
+6003c6e6
+20600000
+7008d401
+20207605
+6800c639
+c000f6a2
+20203b31
+6800c639
+c000f608
+20207684
+204076a2
+680088d3
+247a0000
+7008d203
+20600000
+680088d6
+c080762b
+20407628
+d8a009a2
+58000952
+e0a10000
+580046ca
+e0a10000
+58000902
+e0a10000
+2020761f
+d8a009a2
+58000962
+e0a10000
+58000902
+e0a10000
+580046ca
+e0a10000
+204079bd
+680088d3
+c0027625
+7008d401
+7008d205
+20600000
+7008d314
+20407602
+202076f3
+d8a00942
+18000e08
+202076bb
+7008d401
+20600000
+79200025
+44f1403c
+d8a0064b
+68034140
+e0a30000
+68030040
+e0a30000
+6801c6e6
+e0a18000
+20407a2b
+da200972
+da400982
+18000e04
+204076c0
+2420f648
+2040763f
+70007d41
+20205903
+680088d3
+c004f645
+7008d20a
+7008d401
+70007c03
+20600000
+70007c03
+7008d315
+202076f3
+680088d3
+c004f64e
+7008d200
+70007c04
+70007e05
+20600000
+70007c04
+7008d300
+20600000
+680088d7
+c000f655
+7008d30a
+202076f3
+d8a0064b
+68030040
+e0a30000
+68034140
+e0a30000
+6801c6e3
+e0a18000
+20407a43
+680088d3
+c0057662
+7008d20b
+7008d401
+20600000
+7008d30b
+7008d501
+20600000
+d8a009a2
+68030040
+e0a30000
+68034140
+e0a30000
+58000952
+e0a10000
+58000962
+e0a10000
+20207679
+7008d20f
+d8a009a2
+68034140
+e0a30000
+68030040
+e0a30000
+58000962
+e0a10000
+58000952
+e0a10000
+d8a0064b
+680309a2
+e0a30000
+680309a8
+e0a30000
+204079f5
+70425d01
+d8a04261
+d8c00972
+20407e87
+202031ee
+79200025
+44f1c03c
+6800c639
+c1800000
+680088d6
+c1800000
+d8a0469a
+18000e0b
+204076bb
+180a7e00
+1fe37e00
+e0a10000
+d8a005e2
+d8c0469a
+20407e86
+d8a0050a
+d8c007f2
+20407e84
+d8a0053a
+20407e90
+70053a01
+20407a7c
+7008d601
+20600000
+d8a046b2
+d8c00552
+20407e84
+70463901
+7008d600
+20600000
+79200025
+44f2403c
+680088dd
+c1800000
+680088d6
+c1800000
+d8a005e2
+d8c0469a
+20407e86
+d8a0050a
+d8c008ea
+20407e84
+d8a0053a
+20407e90
+70053a01
+20407a7c
+7008d602
+20600000
+7008d701
+d8a0092a
+d8c00552
+20407e86
+7008dd01
+7008d600
+20600000
+18e08fff
+24610000
+180a7e00
+e0a10000
+202076bb
+18e08fff
+242176cc
+ea220000
+1fe20400
+ea420000
+9842fe00
+2422f6ca
+1a20a204
+1a40a404
+202076c0
+7840fc00
+20600000
+7820fc00
+20600000
+79200025
+44f2c03c
+680088d4
+207a0000
+204058c5
+247a0000
+7008d400
+680088d2
+c001d806
+c002d823
+c003d82e
+c005d843
+c0017600
+c002760d
+c004f62d
+c0057651
+c006766f
+20600000
+79200025
+44f3403c
+680088d5
+207a0000
+204058c5
+247a0000
+7008d500
+680088d3
+c00957e9
+c009d7ee
+c001d7f2
+c0027618
+c00a57f6
+c003d804
+c0057651
+c005d842
+c004f62d
+c00ad83c
+20600000
+7008d501
+20600000
+7008d500
+20600000
+79200025
+44f3c03c
+6800c6e2
+207a0000
+680088d6
+207a0000
+1fe0fe80
+600088d6
+c3838000
+68008507
+203a7703
+20207a87
+204078ef
+680088d6
+c000f69c
+c00176b4
+20600000
+1fe10e07
+1fe97e00
+98c08c00
+e8c08000
+afec0000
+20600000
+20407e86
+20407e86
+20207e86
+e8c40000
+247a0000
+e8c40000
+247a0000
+e8c40000
+20600000
+ea220000
+98000400
+ea420000
+98467c00
+24628000
+1a20a204
+1a40a404
+c2007717
+20600000
+18007206
+1a20a214
+1a40a414
+ea420000
+98000400
+ea220000
+98467e00
+24610000
+247a0000
+1a20a3fc
+1a40a5fc
+c2007723
+20600000
+18007206
+18002600
+ea220000
+98000400
+ea420000
+9840fe00
+9a60fe00
+e0a20000
+2feffe20
+7920a600
+1a20a204
+1a40a404
+c200772f
+20600000
+18007206
+18002600
+ea420000
+98000400
+ea220000
+98467e00
+9a667e00
+e0a20000
+2feffe20
+7920a600
+1a20a204
+1a40a404
+c200773d
+20600000
+18007206
+1a20a214
+18002600
+ea220000
+2feffe00
+7920a601
+1fe37e00
+2a6ffe00
+7920fe1f
+e2220000
+1a20a3fc
+1a632600
+c200774c
+20600000
+18007206
+18002600
+ea220000
+2feffe1f
+7920a601
+1fe3fe00
+2a6ffe00
+7920fe00
+e2220000
+1a20a204
+1a632600
+c2007759
+20600000
+20407757
+2a6ffe00
+2020f76d
+da4007aa
+1a222600
+1a20a3e8
+20407720
+24610000
+1a622200
+1a20a3e8
+da4007aa
+1a220a00
+2020773b
+2040772d
+18a22200
+20207765
+2040773b
+2a6c0000
+20608000
+da4007aa
+18a0a3e8
+1a220a00
+2020772d
+18a21600
+1a226000
+da40063a
+1a420a00
+1a208c18
+e8c40000
+e0a40000
+e0a40000
+18007e00
+e0a40000
+19620a00
+20407771
+da40063a
+1a420a00
+18007e00
+e0a40000
+1e008c20
+e8c40000
+e0a40000
+e0a40000
+19622200
+1a220a00
+20407771
+da40063a
+1a420a00
+1e008c28
+e8c40000
+e0a40000
+e0a40000
+e0a40000
+19622200
+1a220a00
+20207771
+18007206
+e8c20000
+98005e00
+1f00f001
+c200779d
+20600000
+18a21600
+d8a0060a
+20407e90
+d8a0060a
+1a220c00
+18007000
+2040779c
+1a420c00
+2040779c
+18002400
+18000400
+18002606
+e8a20000
+98002200
+1a427000
+1de27e00
+1a627000
+9deffe00
+9a20fe00
+9840fe00
+e0a20000
+1fef0400
+1a60a601
+2a61fe0c
+2420f7ae
+18427e00
+e0a20000
+18a08be8
+1a40a401
+2a41fe06
+2420f7ac
+da20060a
+19620a00
+2020777b
+1a222400
+202077a2
+1a226000
+1e022200
+ea208000
+2feffe00
+20608000
+20407749
+ea408000
+2fec0000
+2020f7d6
+da2007aa
+1a420a00
+2040772d
+ea408000
+9a60fe00
+e2408000
+1a40a5e8
+1a40a218
+18007207
+2040774b
+202077c7
+18a21600
+d8a0066a
+20407e90
+18007e00
+60020622
+60020682
+70066a01
+d8a0060a
+20407e90
+d8c007aa
+d8a0063a
+20407e86
+1a220c00
+d8a00652
+20407e86
+d8c00652
+20407711
+203a7812
+da200652
+da40066a
+204077c6
+da20063a
+da40060a
+204077c6
+da200652
+da40063a
+20407720
+20217804
+da20063a
+da400652
+1a220a00
+2040773b
+da20066a
+da40060a
+1a420a00
+2040772d
+ea208000
+9a60a600
+ea408000
+9a60fe00
+e2408000
+202077e9
+da200652
+da40063a
+1a220a00
+2040773b
+da20060a
+da40066a
+1a420a00
+2040772d
+ea208000
+9a60a600
+ea408000
+9a60fe00
+e2408000
+202077e9
+d8a0066a
+20407e90
+68008622
+6000866a
+60008672
+da20066a
+da40060a
+1a420a00
+20407771
+da2007aa
+da40060a
+19620a00
+20207774
+da2005ca
+d8a00682
+204077c4
+da200682
+d8a0069a
+204077c4
+da2007c2
+da40069a
+d8a0069a
+204077a2
+da20059a
+d8a00682
+204077c4
+d8c00682
+d8a00652
+20407e86
+da200652
+20407764
+da200682
+da400652
+d8a00682
+20407771
+da200682
+da40069a
+d8a00682
+20407771
+d8c0059a
+d8a00652
+20407e86
+da2005b2
+d8a0069a
+204077c4
+da200652
+20407764
+da200652
+20407764
+da200652
+da40069a
+d8a00652
+204077a2
+da20069a
+d8a0066a
+204077c4
+da20066a
+20407764
+da20066a
+20407764
+da20066a
+20407764
+d8c005b2
+d8a0069a
+20407e86
+da20069a
+20407764
+da20069a
+da4005ca
+d8a005ca
+204077a2
+da200682
+d8a0069a
+204077c4
+da20069a
+da400652
+d8a0069a
+20407774
+da20069a
+da400652
+d8a0059a
+20407774
+da200652
+da40059a
+d8a0069a
+20407774
+da20069a
+da400682
+d8a0069a
+204077a2
+da20069a
+da40066a
+d8a005b2
+20207774
+da20053a
+d8a006b2
+204077c4
+da20059a
+da4006b2
+d8a0066a
+204077a2
+da20053a
+da4006b2
+d8a006b2
+204077a2
+da2005b2
+da4006b2
+d8a00652
+204077a2
+da2005ca
+d8a006b2
+204077c4
+da20050a
+da4006b2
+d8a00682
+204077a2
+da2005ca
+da4006b2
+d8a006b2
+204077a2
+da200522
+da4006b2
+d8a0069a
+204077a2
+da20066a
+da400682
+d8a006b2
+20407774
+da20066a
+da400682
+d8a0066a
+20407771
+da200652
+da40069a
+d8a00682
+20407774
+da200652
+da40069a
+d8a00652
+20407771
+da200652
+da4006b2
+d8a00652
+204077a2
+da2005ca
+da40053a
+d8a0069a
+204077a2
+da20069a
+da4006b2
+d8a005ca
+204077a2
+da2006b2
+d8a006b2
+204077c4
+da2006b2
+da40066a
+d8a0069a
+204077a2
+da2006b2
+da400652
+d8a00652
+204077a2
+da200682
+d8a0059a
+204077c4
+da20059a
+da40069a
+d8a0059a
+20407774
+d8c0059a
+d8a006b2
+20407e86
+da2006b2
+20407764
+da20069a
+da4006b2
+d8a0069a
+20407774
+da20069a
+da400682
+d8a00682
+204077a2
+da200682
+da400652
+d8a005b2
+20407774
+da2005b2
+da4007aa
+d8a005b2
+18002600
+680085b2
+2feffe00
+2040f72d
+1a626000
+da2005b2
+20407749
+680085c9
+2e0ffe00
+7920fe07
+600085c9
+20600000
+68008507
+1fe0ffff
+24610000
+60008507
+68008506
+205a781f
+68008507
+d8c005e2
+20407708
+2020f8dc
+68008506
+243a78ea
+20407870
+202078dc
+70050600
+d8c0050a
+d8a0059a
+2040770e
+202078dc
+da2005ca
+d8a0069a
+204077da
+da20069a
+d8a00652
+204077c4
+da20059a
+da400652
+d8a00552
+204077a2
+da20069a
+da400652
+d8a00682
+204077a2
+da2005b2
+da400682
+d8a0056a
+202077a2
+e8c20000
+18002204
+18a08a03
+e0a08000
+1fecfe00
+18a08bfe
+1a20a3ff
+2422f904
+18a08a05
+c2007901
+20600000
+18ebfe00
+99608c00
+e8c20000
+20600000
+18006010
+d960050a
+1e008ff9
+2040790c
+98000400
+1e008ff0
+2040790c
+98408400
+1e008ffe
+2040790c
+1fee7e01
+98408400
+1e008ff1
+2040790c
+1fee7e00
+98408400
+1e0bfe00
+99608a00
+e0aa0000
+1e00e001
+2e01fe40
+2420f912
+20600000
+d8c00822
+18007007
+e8c20000
+98005e00
+1f00f1ff
+20217929
+20600000
+79200025
+44f4403d
+20407910
+d8a0060a
+18007000
+1de27e00
+e0a20000
+1f00f001
+2f01fe08
+2420f933
+204071e2
+d9608700
+de00050a
+18007240
+ee0a0000
+e9620000
+19609604
+1e00e004
+9840fe00
+18007007
+9de08400
+18007004
+1dee7e03
+98408400
+18007005
+1de27e00
+18007006
+9de2fe00
+18007004
+9de17e00
+18007006
+9de2fe00
+98408400
+18007007
+18425e00
+18007003
+1de27e00
+9840de00
+18007000
+1de27e00
+18007001
+9de10400
+9de1fe00
+18007002
+9de17e00
+98418400
+18007000
+1dee7e02
+9840fe00
+18007007
+9de0de00
+980efc00
+c200793c
+d8c0060a
+18007000
+e8c20000
+9de0de00
+1f00f001
+2f01fe08
+2420f965
+202071e6
+d8a00962
+18007007
+1de27e00
+e0a20000
+1f00f1ff
+2021796d
+20600000
+d8a0050a
+18c08dfc
+1f262210
+e8c20000
+9842fe00
+e0a20000
+18c08df8
+c2007975
+1a227200
+18427e00
+e0a20000
+c200797c
+20600000
+20407984
+2040796b
+202079aa
+20407984
+202079aa
+d8c00902
+d8a0050a
+18007206
+20407a90
+d8c046ca
+18007206
+20407a90
+d8c00962
+20407a8f
+20407927
+2040792e
+d8c00952
+d8a0050a
+202079a1
+d8c046ca
+d8a0050a
+18007206
+20407a90
+d8c00902
+18007206
+20407a90
+d8c00952
+20407a8f
+20407927
+2040792e
+d8c00962
+d8a0050a
+204079a1
+202079aa
+20407a8f
+58800000
+1fed7e00
+e0a20000
+18007205
+20407e91
+58000280
+e0a20000
+2020792e
+68020962
+da2003e8
+9a26fc00
+20407f53
+18077e00
+600208de
+1807fe00
+da2003e8
+9a26fc00
+20407f53
+18077e00
+da2003e8
+9a2ffe00
+680a08de
+9840fe00
+600208de
+20600000
+7046ec00
+202079bf
+6800c6ea
+c08179bb
+79200025
+44f4c03d
+58363636
+1fed0400
+18418436
+680109a2
+1fe20c00
+18007204
+20407972
+20407927
+2040792e
+680109a4
+1fe20c00
+d8a0050a
+18007206
+20407a90
+680109a6
+1fe20c00
+18007206
+20407a90
+58800000
+e0a18000
+6800c6ec
+e0a08000
+18007e00
+e0a40000
+58000388
+e0a20000
+2040792e
+2040796b
+d8c00962
+d8a0062a
+20407e85
+585c5c5c
+1fed0400
+1841845c
+680109a2
+1fe20c00
+18007204
+20407972
+20407927
+2040792e
+d8c0064a
+d8a0050a
+18007208
+20407a90
+58800000
+1fed7e00
+e0a20000
+20407e90
+58000300
+e0a20000
+2040792e
+2020796b
+58363636
+1fed0400
+18418436
+d8c00942
+18007206
+20407972
+20407927
+2040792e
+680109ae
+1fe20c00
+d8a0050a
+20407a8f
+680109b0
+1fe20c00
+20407a8f
+5862746c
+1fed7e00
+1fe1fe6b
+e0a20000
+d8c00657
+18007203
+20407a90
+58800000
+1fed7e00
+e0a20000
+18007e00
+e0a40000
+58000380
+e0a20000
+2040792e
+2040796b
+d8c00962
+d8a0062a
+20407e85
+585c5c5c
+1fed0400
+1841845c
+d8c00942
+18007206
+20407972
+20407927
+2040792e
+d8c0064a
+d8a0050a
+18007208
+20407a90
+58800000
+1fed7e00
+e0a20000
+20407e90
+58000300
+e0a20000
+2040792e
+2020796b
+6800c6ea
+c0817a3d
+79200025
+44f5403d
+58363636
+1fed0400
+18418436
+d8c00942
+18007206
+20407972
+20407927
+2040792e
+d8c00962
+d8a0050a
+20407a8f
+d8c00952
+20407a8f
+20207a52
+58000000
+60024719
+20207a2d
+58000000
+60024719
+20207a45
+6800c6ea
+c0817a40
+58363636
+1fed0400
+18418436
+d8c00942
+18007206
+20407972
+20407927
+2040792e
+d8c00952
+d8a0050a
+20407a8f
+d8c00962
+20407a8f
+58000000
+e0a40000
+e0a20000
+68024719
+e0a20000
+18a20400
+70064a80
+18420a00
+d8c0065a
+20407a8f
+2040792e
+d8a0050a
+18007207
+20407e91
+e0a20000
+580003f8
+e0a20000
+2040792e
+2040796b
+d8c00962
+d8a0062a
+20407e85
+585c5c5c
+1fed0400
+1841845c
+d8c00942
+18007206
+20407972
+20407927
+2040792e
+d8c0064a
+d8a0050a
+18007208
+20407a90
+58800000
+1fed7e00
+e0a20000
+20407e90
+58000300
+e0a20000
+2040792e
+2020796b
+700507c0
+68008507
+207a0000
+1fe0ffff
+60008507
+d8c005e2
+20407708
+2020fa7d
+d8c0050a
+d8a0059a
+2020770e
+2040781f
+68008507
+1fe0ffff
+60008507
+d8c005e2
+20407708
+20608000
+20207870
+18007204
+18c08dfc
+e8c20000
+e0a20000
+18c08df8
+c2007a91
+20600000
+79200025
+44f5c03d
+6800c563
+203a48de
+204048da
+204075fb
+20207a9d
+6800c568
+c1800000
+6800c565
+c1800000
+d8a0463a
+18000e0f
+204076bb
+180a7e00
+1fe37e00
+e0a10000
+d8a0068a
+d8c0463a
+20407e85
+d8a0056a
+d8c00882
+20407e7b
+d8a005aa
+20407e9b
+7005aa01
+20407ae8
+70456503
+20600000
+d8a0465a
+d8c005ca
+20407e7b
+70456803
+70456500
+20600000
+680088dd
+c1800000
+6800c565
+c1800000
+d8a0068a
+d8c0463a
+20407e85
+d8a0056a
+d8c008e2
+20407e7b
+d8a005aa
+20407e9b
+7005aa01
+20407ae8
+70456504
+20600000
+d8a00922
+d8c005ca
+20407e85
+7008dd03
+70456500
+20600000
+6800c563
+207a0000
+6800c565
+207a0000
+1fe0fe80
+6000c565
+c3838000
+68010507
+203a7ad9
+20207ae0
+79200025
+44f6403d
+20407af6
+6800c565
+c001fab3
+c0027ac9
+20600000
+20407b08
+68010507
+1fe0ffff
+60010507
+d8c0068a
+20407708
+20608000
+20207b59
+79200025
+44f6c03d
+58000100
+60010507
+68010507
+207a0000
+1fe0ffff
+60010507
+d8c0068a
+20407708
+2020faec
+d8c0056a
+d8a0062a
+20207e7a
+da20066a
+d8a0076a
+20407bc5
+da20076a
+d8a0070a
+20407c9c
+da20062a
+da40070a
+d8a005ca
+20407c03
+da20076a
+da40070a
+d8a0074a
+20407c03
+da20064a
+da40074a
+d8a005ea
+20207c03
+da20066a
+d8a0074a
+20407c9c
+da20074a
+d8a0076a
+20407c9c
+da200862
+da40076a
+d8a0076a
+20407c03
+da20062a
+d8a0074a
+20407c9c
+d8c0074a
+d8a0070a
+20407e85
+da20070a
+20407ca3
+da20074a
+da40070a
+d8a0074a
+20407ca0
+da20074a
+da40076a
+d8a0074a
+20407ca0
+d8c0062a
+d8a0070a
+20407e85
+da20064a
+d8a0076a
+20407c9c
+da20070a
+20407ca3
+da20070a
+20407ca3
+da20070a
+da40076a
+d8a0070a
+20407c03
+da20076a
+d8a0072a
+20407c9c
+da20072a
+20407ca3
+da20072a
+20407ca3
+da20072a
+20407ca3
+d8c0064a
+d8a0076a
+20407e85
+da20076a
+20407ca3
+da20076a
+da40066a
+d8a0066a
+20407c03
+da20074a
+d8a0076a
+20407c9c
+da20076a
+da40070a
+d8a0076a
+20407cb9
+da20076a
+da40070a
+d8a0062a
+20407cb9
+da20070a
+da40062a
+d8a0076a
+20407cb9
+da20076a
+da40074a
+d8a0076a
+20407c03
+da20076a
+da40072a
+d8a0064a
+20207cb9
+da2005aa
+d8a0078a
+20407c9c
+da20062a
+da40078a
+d8a0072a
+20407c03
+da2005aa
+da40078a
+d8a0078a
+20407c03
+da20064a
+da40078a
+d8a0070a
+20407c03
+da20066a
+d8a0078a
+20407c9c
+da20056a
+da40078a
+d8a0074a
+20407c03
+da20066a
+da40078a
+d8a0078a
+20407c03
+da20058a
+da40078a
+d8a0076a
+20407c03
+da40072a
+da20074a
+d8a0078a
+20407cb9
+da20072a
+da40074a
+d8a0072a
+20407ca0
+da40070a
+da20076a
+d8a0074a
+20407cb9
+da20070a
+da40076a
+d8a0070a
+20407ca0
+da20070a
+da40078a
+d8a0070a
+20407c03
+da20066a
+da4005aa
+d8a0076a
+20407c03
+da20076a
+da40078a
+d8a0066a
+20407c03
+da20078a
+d8a0078a
+20407c9c
+da20078a
+da40072a
+d8a0076a
+20407c03
+da20078a
+da40070a
+d8a0070a
+20407c03
+da20074a
+d8a0062a
+20407c9c
+da20062a
+da40076a
+d8a0062a
+20407cb9
+d8c0062a
+d8a0078a
+20407e85
+da20078a
+20407ca3
+da20076a
+da40078a
+d8a0076a
+20407cb9
+da20076a
+da40074a
+d8a0074a
+20407c03
+da20074a
+da40070a
+d8a0064a
+20407cb9
+da20064a
+da400842
+d8a0064a
+18002600
+6800864a
+2feffe00
+2040fc9e
+1a626000
+da20064a
+20407cce
+68008669
+2e0ffe00
+7920fe07
+60008669
+20600000
+18a21600
+d8a0072a
+20407e9b
+18007e00
+6002074a
+70072a01
+d8a006aa
+20407e9d
+d8c00842
+d8a006ea
+20407e85
+1a220c00
+d8a0070a
+20407e85
+d8c0070a
+20407cd8
+203a7bfc
+da20070a
+da40072a
+20407cdb
+da2006ea
+da4006aa
+20407cdb
+da20070a
+da4006ea
+20407cd4
+20217bee
+da2006ea
+da40070a
+1a220a00
+20407ccc
+da20072a
+da4006aa
+1a420a00
+20407c9e
+ea208000
+9a60a600
+ea408000
+9a60fe00
+e2408000
+20207bd3
+da20070a
+da4006ea
+1a220a00
+20407ccc
+da2006aa
+da40072a
+1a420a00
+20407c9e
+ea208000
+9a60a600
+ea408000
+9a60fe00
+e2408000
+20207bd3
+da2006aa
+19620a00
+20407c2c
+da200842
+19622400
+19620a00
+20207cb9
+18a21600
+18007000
+d8a006aa
+20407e9d
+d8a009f1
+20407e9d
+1a220c00
+7009f100
+58000000
+20407c96
+1a420c00
+20407c9a
+18000e00
+d8a006aa
+d84009f1
+18e22400
+1a4bfe00
+9840a400
+18000400
+18002600
+e8a20000
+98002200
+ea420000
+1a627000
+9deffe00
+9a20fe00
+9840fe00
+e0a20000
+1fef0400
+1a60a601
+2a61fe08
+2420fc17
+18427e00
+e0a20000
+18a08be0
+18e08e01
+28e1fe08
+2420fc11
+da2006aa
+19620a00
+20207c2c
+79200025
+44f7403d
+18a21600
+1a226000
+da4006ea
+1a420a00
+20407e98
+e0a40000
+1a208c2c
+20407e81
+20407e7d
+1a422200
+20407ca3
+da4006ea
+1e022200
+19620a00
+20407ca0
+da4006ea
+1a420a00
+20407e98
+e0a40000
+1e008c30
+20407e87
+20407e98
+1a422200
+20407ca3
+da4006ea
+19622200
+1a220a00
+20407ca0
+da4006ea
+1a420a00
+1e008c20
+20407e7d
+20407e98
+e0a40000
+1e008c38
+20407e81
+19622200
+1a220a00
+20407ca0
+da4006ea
+1a420a00
+1e008c24
+20407e7d
+1e008c34
+20407e7d
+1e008c34
+20407e7e
+1e008c20
+20407e7e
+19622200
+1a220a00
+20407ca0
+da4006ea
+1a420a00
+1e008c2c
+20407e7d
+20407e98
+e0a40000
+1e008c20
+20407e7e
+1e008c28
+20407e7e
+19622200
+1a220a00
+20407cb9
+da4006ea
+1a420a00
+1e008c30
+20407e81
+20407e81
+18007e00
+e0a40000
+1e008c24
+20407e7e
+1e008c2c
+20407e7e
+19622200
+1a220a00
+20407cb9
+da4006ea
+1a420a00
+1e008c34
+20407e7d
+1e008c20
+20407e7d
+20407e98
+1e008c30
+20407e7e
+19622200
+1a220a00
+20407cb9
+da4006ea
+1a420a00
+1e008c38
+20407e81
+20407e98
+1e008c24
+20407e7d
+20407e98
+1e008c34
+20407e7e
+19622200
+1a220a00
+20207cb9
+18007220
+d8a009f1
+98a08a00
+20207ecd
+18007208
+2020779d
+1a222400
+20207c03
+18007208
+2020772e
+20407c9e
+18a22200
+20207ca4
+20407cd1
+2a6ffe00
+2020fcad
+da400842
+1a222600
+1a20a3e0
+20407cd4
+24610000
+1a622200
+20207cb5
+20407cb5
+1a222600
+1a20a3e0
+da400842
+20407cd4
+24610000
+1a622200
+20207cb5
+1a20a3e0
+da400842
+1a220a00
+20207ccc
+20407ccc
+2020fcc3
+18a0a3e0
+da400842
+20407cd4
+24610000
+da400842
+18a0a3e0
+1a220a00
+20207ccc
+18a0a3e0
+da400842
+1a220a00
+20407c9e
+20608000
+18a0a3e0
+da400842
+1a220a00
+20207c9e
+18007208
+2020773c
+18007208
+1a20a21c
+2020774b
+18007208
+18002600
+20207759
+18007208
+1a20a21c
+1a40a41c
+20207723
+e8c40000
+247a0000
+20207711
+1a226000
+1e022200
+ea208000
+2feffe00
+20608000
+20407cce
+ea408000
+2fec0000
+2020fceb
+da200842
+1a420a00
+20407c9e
+ea408000
+9a60fe00
+e2408000
+1a40a5e0
+1a40a220
+18007209
+2040774b
+20207cdc
+20403d3e
+20758000
+20407cf6
+20407d72
+20207d2a
+20407d44
+20207d60
+79200025
+44f7c03d
+6800c715
+c17f8000
+98000400
+204064e8
+6808c715
+204064fd
+20000064
+6808c715
+204064df
+20207d02
+79200025
+44f8403e
+6800c715
+c17f8000
+1fe20400
+204064f5
+2420fd15
+20407d1f
+6801470b
+79207e0c
+6001470b
+6800c702
+c1000000
+70470200
+6800c714
+6000c701
+20407d26
+7009bd2c
+20207d86
+6801470b
+793ffe0c
+6001470b
+6800c702
+c1008000
+70470201
+70470100
+20407d28
+7009bd2d
+20207d86
+6800c701
+207a0000
+1fe0ffff
+6000c701
+247a0000
+7009bd10
+20207d86
+d8e00007
+20203d06
+d8e00007
+20203d0a
+6800c70e
+c17f8000
+98000400
+204064e8
+20207d33
+6801470b
+793ffe0d
+6001470b
+70470000
+6801470b
+793ffe0e
+6001470b
+6808c70e
+202064fd
+6801470b
+79207e0e
+6001470b
+70470000
+6808c70e
+202064ff
+704713ff
+6801470b
+79207e0d
+6001470b
+70470001
+20600000
+79200025
+44f8c03e
+6800c713
+207a0000
+6800c700
+c1000000
+d8e00009
+20407ee2
+247a0000
+6800c700
+c0017d53
+20407d38
+70470002
+68014711
+20207d5a
+20407d33
+6800c713
+c07ffd58
+1fe0ffff
+6000c713
+70470003
+6801470f
+d8e00009
+20207ed4
+58001000
+1ff07e00
+9a40a400
+20600000
+79200025
+44f9403e
+da200000
+680a4703
+1c422400
+1a427e00
+98467c00
+24417d5c
+1a427e00
+184084a0
+184084a0
+98467c00
+24217d75
+1a20a201
+1a217e0f
+243a7d68
+da200000
+20407d7d
+1c427e00
+60024703
+20600000
+79200025
+44f9c03e
+1a227e00
+207a0000
+18408560
+18408560
+793f841c
+600a4703
+1fe0fe50
+600089bd
+20207d86
+7046ee01
+6800c6ef
+243a7d81
+20600000
+7046ee00
+20600000
+79200025
+44fa403e
+20407d80
+1a227e00
+600209b5
+da2046f0
+20407f88
+680209b5
+1fe22200
+20207d84
+79200025
+44fac03e
+20407d80
+1a227e00
+600209b5
+da2046f8
+20407f88
+680209b5
+1fe22200
+20207d84
+58000000
+600446f8
+600446f0
+20600000
+79200025
+44fb403e
+6800c271
+247a0000
+da2046f8
+20407fa2
+207a0000
+7009b400
+20407daa
+680089b4
+203a7d9e
+20600000
+79200025
+44fbc03e
+20407d80
+da2046f8
+20407f95
+1fe20400
+20407d84
+18427e00
+207a0000
+c000fdf0
+c0017df5
+c001fdfb
+c003fe00
+c0047e01
+c004fe02
+c005fe05
+c0067e06
+c006fe07
+c0077e0d
+c007fe12
+c0087e18
+c00afd3e
+c00a7d38
+c009fd2f
+c00b7e21
+c00bfe24
+c00c7e26
+c00cfe2b
+c00dfe29
+c00e7e3b
+c00f7e3d
+600089bd
+79200025
+44fc403f
+204058c5
+243a7de5
+680089bd
+c584fde0
+c002bfae
+c0033fbd
+c0057e03
+c0027dfd
+c008fe1d
+c00efde7
+c00fe42e
+c0106432
+c0097dde
+c010fddb
+20600000
+20405903
+70007d41
+202055b4
+7009bd2f
+20204bd6
+600089bd
+20403292
+2022fde5
+2040329a
+24628000
+7009b401
+20207d90
+70007c34
+79200003
+24748000
+7045f400
+70007c13
+6800816c
+793ffe02
+6000816c
+20600000
+6801470b
+79207e06
+6001470b
+70413303
+20600000
+70470900
+70413300
+6801470b
+793ffe06
+6001470b
+20600000
+70427105
+20600000
+70007c07
+7003f013
+20600000
+20600000
+20600000
+20600000
+7003fa02
+20203fa1
+20600000
+20600000
+7043ff01
+70452000
+6801470b
+79207e0b
+6001470b
+20600000
+6801470b
+793ffe0b
+6001470b
+7043ff00
+20600000
+7043ff01
+70452001
+6801470b
+79207e0b
+6001470b
+20600000
+6801470b
+793ffe0b
+6001470b
+7043ff00
+20600000
+5800000a
+60010390
+7009bd22
+20204bd6
+7043f901
+7042711b
+20600000
+7043f901
+20600000
+7043f900
+70427100
+20600000
+7009bd4b
+20204bd6
+79200025
+44fcc03f
+6801428c
+20407f69
+78347c00
+68120138
+79347e1a
+6012004c
+20403cf4
+6800c715
+c07ffe38
+1fe20400
+204064df
+20407d33
+20407d9a
+20203c04
+70459501
+20600000
+18000e04
+20207ed3
+6800c70b
+c4060000
+c4038000
+20207e3d
+1f267c00
+20628000
+1fe37e00
+c2007e45
+20600000
+18a27e00
+600109df
+600c09c6
+19627e00
+600209ce
+1a227e00
+600209d2
+1a427e00
+600209d6
+1a627e00
+600189da
+18c27e00
+600109dd
+20600000
+680c09c6
+680209ce
+98001600
+680209d2
+98002200
+680209d6
+98002400
+680189da
+98002600
+680109df
+98000a00
+680109dd
+98000c00
+20600000
+680109df
+1fe20a00
+20600000
+680109dd
+1fe20c00
+20600000
+18a27e00
+600109df
+20600000
+18c27e00
+600109dd
+20600000
+18a27e00
+600109bb
+18c27e00
+600109b9
+20600000
+680109bb
+1fe20a00
+680109b9
+1fe20c00
+20600000
+20407e85
+20407e85
+20207e85
+20407e81
+e8c20000
+e0a20000
+20600000
+e8c40000
+e0a40000
+20600000
+20407e87
+20407e81
+20407e81
+20407e81
+20207e81
+1c427e00
+1fe0fe10
+1fe0fe10
+1c420400
+98467c00
+20217e8c
+20600000
+18007203
+18007e00
+e0a40000
+c2007e92
+20600000
+18007e00
+e0a40000
+20600000
+18007e00
+e0a20000
+20600000
+18007204
+20207e91
+18007208
+20207e91
+1f227e00
+207a0000
+58000000
+e0a08000
+c2007ea2
+20600000
+df200020
+d8a009e1
+20207e9f
+ea620000
+ea2a0000
+9842fe00
+e0a20000
+1a20a204
+1a60a604
+c2007ea8
+20600000
+79200025
+44fd403f
+1f227e00
+1fe67c01
+20610000
+9a20a400
+1a40a5ff
+1f237200
+ea288000
+ea408000
+e2208000
+e2488000
+1a40a5ff
+1a20a201
+c2007eb8
+20600000
+1f227e00
+207a0000
+1f20f3f8
+20417e81
+20628000
+20217ec2
+1f20f208
+1f20f3fc
+20417e7e
+20628000
+20217ec7
+1f20f204
+20207ecd
+1f227e00
+207a0000
+e8c08000
+e0a08000
+c2007ecf
+20600000
+58000000
+1c430400
+600a4134
+d8a0423d
+98000400
+18e3fe00
+98a08a00
+e0a90000
+79200025
+44fdc03f
+20600000
+d9600800
+19701600
+9960fe00
+20600000
+79200025
+44fe403f
+680a4134
+1c437e00
+60024134
+98467c00
+24417ede
+98461600
+19620400
+d8c0423d
+18c20a00
+df200010
+e8c10000
+98467e00
+20217ef2
+18007e00
+e0a10000
+c2007eee
+d8c0423d
+18e3fe00
+98c08c00
+e8c10000
+20600000
+98408400
+18427200
+58000ea6
+9f267e00
+20610000
+1fe67e00
+18510400
+18408401
+18500400
+98418400
+20600000
+20407f06
+20207f10
+78547c00
+98467e00
+20217f0b
+78347c00
+1fe67e00
+c4078000
+d85f0ea6
+9840fe00
+793ffe40
+20600000
+98000c00
+1ff17e00
+d8400ea6
+984ffe00
+98c0fe00
+20600000
+1fed7e00
+1ff27e00
+6809c20f
+9846fc00
+20407f53
+18078400
+20600000
+d8400ea6
+9846fc00
+20407f53
+1807fe00
+1ff07e00
+18070400
+98418400
+20600000
+d8400000
+18422600
+e8608000
+20407f31
+1a620400
+20407f62
+da40000a
+9a4ffe00
+9840fe00
+1fe20400
+c2007f26
+20600000
+d840003a
+98467c00
+24217f3a
+d8400061
+98467c00
+20217f3d
+d8400037
+98467e00
+20600000
+d8400030
+98467e00
+20600000
+d8400057
+98467e00
+20600000
+18426000
+580001ff
+18002400
+1fe92200
+1a232200
+9a22a200
+2a2ffe00
+7920fe09
+18430400
+2feffe00
+79208407
+1fe37e00
+1a40a401
+2a400e00
+2420ff43
+e0a88000
+c2007f43
+1e020400
+20600000
+207a8000
+20207f53
+ea208000
+ea488000
+98467c00
+24628000
+1a20a201
+1a40a401
+c2007f55
+18007c00
+20600000
+98467c00
+24610000
+18427e00
+20600000
+9840fe00
+98460400
+98467e00
+20600000
+df200200
+d8a04000
+20207e91
+207a0000
+1fe27a00
+6811010e
+243a7f6b
+20600000
+68110058
+1fe20600
+20600000
+70820301
+20600000
+60110205
+68108203
+79207e04
+60108203
+20600000
+60110207
+68108203
+79207e06
+60108203
+20600000
+60110205
+70820330
+20600000
+68108043
+793ffe04
+60108043
+20600000
+6811010e
+d8400200
+98467c00
+20600000
+79200025
+44fec03f
+ea2c0000
+18417eff
+243a7f8f
+184cfe00
+e2240000
+1a20a207
+ea208000
+243a3b31
+680089bd
+e2208000
+20600000
+79200025
+44ff403f
+df200008
+ea240000
+207a0000
+ea208000
+243a7f9f
+1a20a201
+c2007f9a
+20203b31
+d8400000
+e2288000
+20600000
+ea240000
+20600000
+ea208000
+20600000
+ea210000
+20600000
+d8400000
+68008006
+c2007fa9
+18408401
+c2007fa9
+18427e00
+20600000
+98467c00
+24610000
+18427e00
+20600000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00003852
Index: Receive_Code/output/sched.rom
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/sched.rom	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/output/sched.rom	(working copy)
@@ -0,0 +1,275 @@
+mem_patch00:08
+mem_patch10:40
+mem_patch11:0c
+mem_patch16:10
+mem_patch20:08
+mem_patch23:02
+mem_patch25:48
+mem_patch26:0c
+
+mem_patch27:50
+
+mem_patch32:20
+mem_patch3b:13
+mem_patch3e:80
+
+mem_device_option:09
+mem_le_adv_channel_map:07 
+mem_le_scan_enable:01
+
+mem_spi_ncs_gpio:ff
+mem_led_gpio:1b
+mem_ui_button_gpio:ff
+mem_ui_button_timeout:10
+mem_ui_button_last_state:01
+
+mem_le_fast_adv_timeout:32
+mem_led_fast_dark_time:96 00
+mem_led_fast_light_time:96 00
+mem_le_sleep_timeout:08 07
+
+#mem_le_pres:02 03 00 01 10 02 01
+mem_le_pres_auth:01
+
+mem_le_adv_interval_max:60 01 
+mem_module_le_lpm_mult:05
+
+
+
+mem_le_lap:02 31 00 98 07 2a
+mem_le_name_len:
+'AB Shutter3
+
+mem_le_adv_data_len:1b
+mem_le_adv_data:
+13 09 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02 01 05 03 02 12 18 00 00 00 00
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+1e 09 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
+
+
+mem_shutter_att_list_patch:
+47
+
+05 0c	#USAGE_PAGE 
+09 01	#USAGE (Consumer Control)
+a1 01	#COLLECTION (Application (mouse, keyboard))
+85 02	#REPORT_ID 
+0a ae 01
+09 e9
+09 ea
+09 e2
+09 30
+15 01
+25 0c
+75 10
+95 01
+81 00
+c0 		#END_COLLECTION
+05 01 	#USAGE_PAGE 
+09 06 	#USAGE
+a1 01 	#COLLECTION (Application (mouse, keyboard))
+85 03 
+05 07 
+19 e0 
+29 e7 
+15 00 
+25 01 
+75 01 
+95 08 
+81 02 
+75 08 
+95 01 
+15 00 
+25 f4 
+05 07 
+19 00 
+29 f4 
+81 00 
+c0		#END_COLLECTION
+
+
+#Characteristic:Hid information
+1c 00 02 03 28 01 02
+1d 00 02 4a 2a 04 11 01 00 01        
+#Characteristic:
+1e 00 02 03 28 01 04
+1f 00 02 4c 2a 01 00
+
+#Primary Service: BAS
+20 00 02 00 28 02 0f 18 
+#Characteristic: Battery Level
+21 00 02 03 28 01 12 
+22 00 02 19 2a 01 00 
+#Client Characteristic Configuration
+23 00 02 02 29 02 00 00 
+
+#End of Attribute list
+00 00
+
+
+mem_adv_lap_ptr:mem_le_adv_data+2
+
+
+
+mem_ui_le_uuid_table:mem_shutter_le_att_list
+
+mem_lpm_mode:00
+mem_lpm_overhead:06
+mem_lpm_mult_timeout:02
+mem_hard_soft_switch_case:00
+mem_shutter_powerup_flag:00
+mem_shutter_button_timeout:0a
+mem_power_timeout:0c
+mem_packet_interval_set:20 00
+mem_le_conn_interval_min:06 00
+mem_le_conn_interval_max:20 00
+
+mem_le_scan_type:01
+mem_le_scan_own_addr_type:00
+mem_le_scan_filter_policy:00
+mem_le_scan_interval:30 00
+mem_le_scan_window:0c 00
+
+
+mem_shutter_led_num:01
+mem_led_map:
+1b
+ff
+ff
+ff
+
+mem_fast_adv_led_style:
+02
+1b
+96 00
+96 00
+ff
+
+mem_slow_adv_led_style:
+02
+1b
+96 00
+3a 07
+ff
+ 
+mem_power_on_led_style:
+02
+1b
+96 00
+3a 00
+01
+
+mem_powe_off_led_style:
+00
+1b
+48 00
+96 00
+02
+
+mem_connected_led_style:
+01
+1b
+00 00
+00 00
+00
+
+mem_key_led_style:
+01
+1b
+00 00
+00 00
+00
+#
+02
+1b
+96 00
+96 00
+01
+#
+ff
+1b
+00 00
+00 00
+00
+#
+00
+1b
+00 00
+00 00
+00
+
+
+mem_key0_press:
+03 05 17 00 00 28 05 13 00 02 00 05 13 00 01 00
+mem_key0_release:
+02 05 17 00 00 00 05 13 00 00 00
+mem_key1_press:
+02 05 13 00 01 00 05 13 00 02 00 
+mem_key1_release:
+01 05 13 00 00 00
+
+mem_le_car_write_cmd_data:
+01 0b 14 00 5a 6b 02 00 02 00 00 00
+
+mem_shutter_key_num:04
+mem_key_conf0:
+#0
+04 00  
+#1
+05 00
+#2
+06 00 
+#3
+03 00 
+#4
+ff 00 
+#5
+ff 00 
+
+mem_le_app_peer_addr:0e 10 26
+mem_le_slave_peer_addr:ff ff ff ff ff ff
+
+mem_le_sleep_conn_timeout:b8 0b
+
+mem_tx_power:02
+
+mem_le_send_write_request_count:02
+
+#mem_uart_mouse_data_buff:02 00 09 00 00 00 00 00 00 00 00
+#mem_uart_test_count:04
+
+mem_lpm_config:8f 1e ca
+mem_lpm_buckcnt:0a 0b ef 07
+mem_lpm_hibernate_switch:00
+mem_gpio_wakeup_low:00 00 00 00 00 00 00 00
+
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 04
+mem_rx_window_sniff:00 08
+
+
+#mem_lpm_xtalcnt:00 0a 1b ef 07
+
+mem_lmp_version:08 0e 05 03 00
+
+mem_eeprom_base:30 ff
+mem_eeprom_block_size:80
+
+mem_context_number:01
+
+mem_rf_init_data:
+ff
+mem_rf_init_ptr:mem_rf_init_data
+
+
+
Index: Receive_Code/program/24g.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/24g.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/24g.prog	(working copy)
@@ -0,0 +1,692 @@
+
+ifdef COMPILE_24G
+g24_process:
+	rtnmark0 mark_24g
+	set1 mark_24g_conext,mark
+	fetch 4,mem_24g_tx_btclk	
+	fetcht 1,mem_24g_interval
+	iadd temp,temp	
+	copy clkn_bt,pdata	
+	isub temp,null
+	nbranch g24_exit_dispatch,positive
+	store 4,mem_24g_tx_btclk
+	call g24_user_prepare_data
+	branch g24_lpm_long_sleep,user
+	call g24_tx_data
+g24_exit_dispatch:
+g24_exit_context:
+	set0 mark_24g_conext,mark
+	rtn
+
+g24_send_pairing_mode:
+	fetch 1,mem_24g_pairing_sm
+	rtneq P24G_SM_PAIRING_WAIT_ADDR
+	beq P24G_SM_PAIRING_WAIT_SUCC,g24_pairing_complete
+	beq P24G_SM_PAIRING_REQUEST,g24_send_pairing_request
+	beq P24G_SM_PAIRING_COMPLETE,g24_send_pairing_complete
+	branch assert
+	
+g24_send_pairing_request:
+	jam P24G_PAIRING_REQ_HEAD,mem_24g_txdata
+	jam P24G_SM_PAIRING_WAIT_ADDR,mem_24g_pairing_sm
+	branch g24_user_enable_tx_retry
+g24_send_pairing_complete:
+	jam P24G_SM_PAIRING_WAIT_SUCC,mem_24g_pairing_sm
+	jam P24G_PAIRING_COMPLETE_HEAD,mem_24g_txdata
+	branch g24_user_enable_tx_retry
+
+g24_lpm_long_sleep:
+	fetch 1,mem_24g_enter_lpm_timer
+	nrtn blank
+ 	// do some thing before 24g long sleep
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+ 	fetch 8,mem_24g_enter_hibernate
+	call clk2lpo
+	storet 4,mem_sleep_counter
+  	branch lpm_sleep
+
+
+
+g24_user_prepare_data:
+	fetch 1,mem_24g_ensure
+	beq	ENSURE_ON_24G,disable_usr
+	fetch 1,mem_24g_pairing_sm
+	bne P24G_SM_PAIRING_SUCC,g24_send_pairing_mode
+	//send data
+	//
+	//
+g24_user_enable_tx_retry:
+	jam ENSURE_ON_24G,mem_24g_ensure
+	rtn
+
+
+g24_tx_data:
+	jam 10,mem_24g_enter_lpm_timer
+	jam 0,mem_24g_retry
+	jam dlen_24g,mem_24g_datalen
+	call g24_prepare_tx
+	call crc_tx
+g24_tx_data_loop:
+	call g24_set_freq_tx
+	arg plen_24g,loopcnt
+	call g24_tx
+	enable swfine
+	arg 10000,stop_watch					// sync time:4537
+	arg 12,loopcnt							//change rx count
+	call g24_rx
+	call shutdown_radio
+	nbranch g24_tx_data_retry,sync
+	call crc_rx_ack
+	branch g24_tx_data_success,blank		//transmit success
+g24_tx_data_retry:
+	setarg 2000
+	call sleep
+	//branch g24_tx_data_loop
+	fetch 1,mem_24g_retry
+	increase 1,pdata
+	store 1,mem_24g_retry
+	bne retry_24g,g24_tx_data_loop
+	fetch 1,mem_24g_txfail_cnt
+	increase 1,pdata
+	store 1,mem_24g_txfail_cnt
+	beq 0x20,g24_tx_data_abandon
+	fetch 2,mem_24g_rxfail_cnt
+	increase 1,pdata
+	store 2,mem_24g_rxfail_cnt
+	beq 0xff,g24_tx_attempt_fail
+	call g24_updata_ch
+	branch g24_min_interval
+g24_tx_data_success:
+	setarg 0
+	store 2,mem_24g_rxfail_cnt
+	fetch 1,mem_24g_pairing_sm
+	bne P24G_SM_PAIRING_SUCC,g24_rx_pairing_mode
+	fetch 1,mem_24g_pid
+	increase 1,pdata
+	store 1,mem_24g_pid
+g24_tx_data_abandon:
+	setarg 0
+	store 1,mem_24g_txfail_cnt
+	jam ENSURE_OFF_24G,mem_24g_ensure
+	branch g24_max_interval
+g24_tx_attempt_fail:
+	setarg 0
+	store 2,mem_24g_rxfail_cnt
+	jam BT_EVT_24G_ATTEMPT_FAIL,mem_fifo_temp
+	branch ui_ipc_send_event
+
+g24_rx_pairing_mode:
+	fetch 1,mem_24g_pairing_sm
+	beq P24G_SM_PAIRING_COMPLETE,g24_pairing_complete
+	bne P24G_SM_PAIRING_WAIT_ADDR,assert
+	jam P24G_SM_PAIRING_COMPLETE,mem_24g_pairing_sm
+	call g24_rx_parse_dongle_addr
+	jam BT_EVT_24G_PAIRING_COMPLETE,mem_fifo_temp
+	call ui_ipc_send_event
+	branch g24_tx_data_abandon
+g24_pairing_complete:
+	jam P24G_SM_PAIRING_SUCC,mem_24g_pairing_sm
+	fetch 4,mem_24g_addr_copy
+	store 4,mem_24g_addr
+	rtn
+	
+g24_rx_parse_dongle_addr:
+	fetch 5,mem_24g_rxbuf+5
+	rshift2 pdata,pdata
+	store 4,mem_temp
+	copy pdata,temp
+	arg 3,rega
+	arg 4,loopcnt
+g24_rx_parse_dongle_addr_loop:
+	copy temp,pdata
+	reverse pdata,pdata
+	copy pdata,regb
+	setarg mem_timeup
+	iadd rega,contw
+	copy regb,pdata
+	istore 1,contw
+	increase -1,rega
+	copy temp,pdata
+	rshift8 pdata,pdata
+	copy pdata,temp
+	loop g24_rx_parse_dongle_addr_loop
+	fetch 4,mem_timeup	//update mouse 24g address
+	store 4,mem_24g_addr_copy
+	rtn
+
+	
+g24_max_interval:
+	fetch 1,mem_24g_interval_max
+	branch g24_updata_interval
+g24_min_interval:
+	fetch 1,mem_24g_interval_min
+g24_updata_interval:
+	store 1,mem_24g_interval
+	rtn
+
+g24_updata_ch:
+	fetch 1,mem_24g_pairing_sm
+	bne P24G_SM_PAIRING_SUCC,g24_pairing_ch
+	fetcht 1,mem_24g_current_ch_number
+	call g24_uch_calc
+	increase 1,temp
+	and_into 3,temp //map size =4
+	storet 1,mem_24g_current_ch_number
+	rtn
+g24_pairing_ch:
+	jam 78,mem_24g_ch
+	rtn
+g24_uch_calc:
+	fetch 1,mem_24g_addr+3
+	reverse pdata,pdata
+	and_into 0x03,pdata
+	mul32 pdata,4,rega			//24addr low bit0 bit1 ,00-map1,01-map2,10-map3,11-map4
+	setarg mem_24g_ch_map1
+	iadd rega,pdata
+	iadd temp,contr
+	ifetch 1,contr
+	store 1,mem_24g_ch
+	rtn
+
+g24_set_freq_tx:
+	call set_sync_on
+	fetcht 1,mem_24g_ch
+	branch set_freq_tx
+
+	// loopcnt is total packet length include address and crc
+g24_tx:
+	set1 TXGFSK,radio_ctrl
+	disable decode_fec0
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	disable enable_white
+	call le_enable
+	deposit clkn
+	set1 56,pdata
+	//call savelist
+	setarg acc_24g
+	inject mod,24
+	arg mem_24g_addr,rega
+	arg mem_24g_scremble,regb
+g24_tx_loop:
+	ifetch 1,rega
+	ifetcht 1,regb
+	ixor temp,pdata
+	inject mod,8
+	increase 1,rega
+	increase 1,regb
+	loop g24_tx_loop
+	until null,tx_clear
+	nop 100         
+	rtn
+
+	
+	// loopcnt is total packet length include crc
+g24_rx:
+	force 0,radio_ctrl
+	fetcht 1,mem_24g_ch
+	call set_freq_rx
+	call rf_rx_enable
+	disable encode_fec0
+	enable decode_fec0
+	enable is_rx
+	disable is_tx
+	disable enable_white
+	call le_enable
+	fetcht 1,mem_24g_addr
+	storet 1,mem_24g_rxbuf
+	xor_into 0xc7,temp
+	lshift16 temp,temp
+	lshift8 temp,temp
+	setarg acc_24g
+	ior temp,access
+	correlate null,timeout
+	deposit stop_watch
+	setflag sync,63,pdata
+//	call savelist
+	increase -1,loopcnt
+//	nbranch p_tst,sync
+	arg mem_24g_scremble+1,contr
+	arg mem_24g_rxbuf+1,contw
+g24_rx_loop:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	ifetcht 1,contr
+	ixor temp,pdata
+	istore 1,contw
+	loop g24_rx_loop
+	rtn
+
+crc_rx_ack:
+	fetch 1,mem_24g_pairing_sm
+	beq P24G_SM_PAIRING_SUCC,crc_rx_ack_nodata
+crc_rx_ack_4byte:
+	arg mem_24g_rxbuf,contr
+	setarg crc_ack_4byte
+	arg 90,loopcnt
+	branch gencrc
+crc_rx_ack_nodata:
+	arg mem_24g_rxbuf,contr
+	setarg crc_ack
+	arg blen_rxack_24g,loopcnt
+	branch gencrc
+
+crc_tx_ack:
+	fetch 1,mem_24g_pairing_sm_dongle	
+	branch crc_tx_ack_nodata,blank
+crc_tx_ack_4byte:
+	arg mem_24g_addr,contr
+	setarg crc_ack_4byte
+	arg 74,loopcnt
+	call gencrc
+	branch g24_store_crc
+crc_tx_ack_nodata:	
+	arg mem_24g_addr,contr
+	setarg crc_ack
+	arg blen_txack_24g,loopcnt
+	call gencrc
+	branch g24_store_crc
+
+crc_tx:
+	arg mem_24g_addr,contr
+	setarg crc_data_6byte
+	arg blen_tx_24g,loopcnt
+	call gencrc
+	branch g24_store_crc
+	
+crc_rx:
+	arg mem_24g_rxbuf,contr
+	setarg crc_data_6byte
+	arg blen_rx_24g,loopcnt
+gencrc:
+	arg 0x1021,contw
+	arg 0,rega
+crc_loop:
+	and rega,7,null
+	nbranch crc_nofetch,zero
+	ifetcht 1,contr
+crc_nofetch:
+	bbit1 15,crc_b15
+	isolate0 0,temp
+crc_shift:
+	lshift pdata,pdata
+	branch crc_noxor,true
+	ixor contw,pdata
+crc_noxor:
+	rshift temp,temp
+	increase 1,rega
+	loop crc_loop
+	reverse pdata,temp
+	lshift8 temp,temp
+	rshift8 pdata,pdata
+	reverse pdata,pdata
+	ior temp,pdata
+	store 2,mem_24g_crc
+	rtn
+crc_b15:
+	isolate1 0,temp
+	branch crc_shift
+
+g24_prepare_tx:
+	fetch 1,mem_24g_pid
+	and_into 3,pdata
+	reverse pdata,pdata
+	lshift pdata,pdata
+	fetcht 1,mem_24g_datalen
+	add temp,1,loopcnt
+	reverse temp,temp
+	rshift temp,temp
+	ior temp,pdata
+	store 1,mem_24g_len
+	arg mem_24g_txdata,contr
+g24_ptx_loop:
+	rshift8 pdata,temp
+	ifetch 1,contr
+	lshift2 pdata,pdata
+	ior temp,pdata
+	istore 1,contw
+	loop g24_ptx_loop
+	rtn
+
+
+	// pdata:crc
+g24_store_crc:
+	lshift2 pdata,temp
+	fetch 1,mem_24g_datalen
+	arg mem_24g_len+1,contw
+	iadd contw,contw
+	ifetch 1,contw
+	and_into 3,pdata
+	ior temp,pdata
+	istore 3,contw
+	rtn
+
+g24_init:
+	set1 mark_24g,mark
+	setsect 0,0x28dc7
+	setsect 1,0x55f4
+	setsect 2,0x273da
+	setsect 3,0x2c19a
+	store 9,mem_24g_scremble
+	setsect 0,0x13175
+	setsect 1,0x19204
+	setsect 2,0x38779
+	setsect 3,0x3
+	istore 7,contw
+	setarg 0
+	store 8,mem_24g_txfail_cnt
+	store 6,mem_24g_txdata
+	jam 0,mem_24g_current_ch_number
+	branch g24_uch_calc
+
+g24_uninit:
+	set0 mark_24g,mark
+	branch  le_disable
+
+
+
+/************************2.4G dongle for YiCHiP start****************************/
+
+/*
+//2.4g dongle define
+mem_24g_ch_map1:00 11 23 3c 
+mem_24g_ch_map2:04 1a 27 39 
+mem_24g_ch_map3:08 22 35 4b 
+mem_24g_ch_map4:0f 2d 32 4e
+mem_24g_interval_dongle:19	#0.3125ms, time to update channel	
+mem_24g_addr_private_dongle:3a b3 53 0f	#4 bytes address
+*/
+
+
+/*
+Brief: g24_sys_init_dongle
+Input: None
+Output: None
+Return: None
+Brief: spi and dongle init, choose 2.4G search channel based on the the most significant byte of the  dongle's private address
+*/
+g24_sys_init_dongle:
+	call spi_simulate_init_slave
+	call g24_init_dongle
+	call g24_search_pair_ch_update
+	call g24_search_pair_rx_ch_update
+g24_rx_loop_dongle:
+	call g24_normal_rcv_process		//normal rcv
+	call g24_search_device_process		//search device and pair
+	fetch 1,mem_24g_spi_enable_flag
+	ncall g24_data_rf_to_spi,blank		//time to send data to spi from rf 	
+	branch g24_rx_loop_dongle			//loop
+
+g24_data_rf_to_spi:
+	jam 0,mem_24g_spi_enable_flag
+	arg mem_24g_rxbuf_dongle,contr
+	arg mem_spi_simulate_write_byte_slave,contw
+	arg 6,loopcnt
+	call memcpy
+	call spi_simulate_motion_enable
+	arg 6,rega
+	call spi_simulate_write_byte_slave
+	branch spi_simulate_motion_disable
+	
+g24_init_dongle:
+	set1 mark_24g_search_pair,mark
+	set0 mark_24g_normal_rcv,mark	
+	setsect 0,0x28dc7
+	setsect 1,0x55f4
+	setsect 2,0x273da
+	setsect 3,0x2c19a
+	store 9,mem_24g_scremble
+	setsect 0,0x13175
+	setsect 1,0x19204
+	setsect 2,0x38779
+	setsect 3,0x3
+	istore 7,contw
+	setarg 0
+	store 8,mem_24g_txfail_cnt
+	store 6,mem_24g_rxbuf_temp_dongle
+	store 6,mem_24g_rxbuf_dongle
+	store 1,mem_24g_ch_update_dongle
+	store 1,mem_24g_ch_cnt_dongle
+	jam 1,mem_24g_pairing_sm_dongle
+	branch g24_rf_txbuf_rxbuf_release
+
+//24g dongle search device and pair mode
+g24_search_device_process:	//main_loop
+	rtnmark0 mark_24g_search_pair
+	rtnmark1 mark_24g_normal_rcv
+	fetch 4,mem_24g_tx_btclk_dongle	
+	fetcht 1,mem_24g_interval_dongle
+	iadd temp,temp	
+	copy clkn_bt,pdata	
+	isub temp,null
+	nbranch g24_search_device_exit_dispatch,positive
+	store 4,mem_24g_tx_btclk_dongle
+	jam 1,mem_24g_ch_update_dongle	//change mem_24g_ch
+g24_search_device_exit_dispatch:	//read rx data
+	call g24_rf_txbuf_rxbuf_release
+	fetch 1,mem_24g_ch_update_dongle
+	ncall g24_search_pair_rx_ch_update,blank
+	call g24_rx_data
+	fetch 1,mem_24g_rx_sync_dongle
+	rtn blank
+	jam 0,mem_24g_rx_sync_dongle
+	branch g24_search_device_parse_rxbuff0
+
+g24_search_device_parse_rxbuff0:
+	fetch 7,mem_24g_rxbuf+5
+	rshift2 pdata,pdata
+	store 6,mem_temp
+	fetch 1,mem_temp
+	rtnne 0x01
+g24_search_device_completed:
+	set0 mark_24g_search_pair,mark		//pair completed
+	set1 mark_24g_normal_rcv,mark		//start normal rcv
+	jam 0,mem_24g_pairing_sm_dongle	//clear dongle pair flag
+	call g24_get_id_private
+	jam 0,mem_24g_ch_cnt_dongle
+	jam 0x32,mem_24g_interval_dongle
+	call g24_normal_rcv_ch_update
+	branch g24_rf_txbuf_rxbuf_release
+	
+g24_search_pair_ch_update:
+	fetch 1,mem_24g_addr_private_dongle+3	//last address byte decides which map to use
+	reverse pdata,pdata
+	and_into 0x03,pdata
+	beq 0x00,g24_search_ch_map1
+	beq 0x01,g24_search_ch_map2
+	beq 0x02,g24_search_ch_map3
+	beq 0x03,g24_search_ch_map4
+	rtn
+g24_search_ch_map1:
+	fetch 1,mem_24g_ch_map1
+g24_search_ch_map:
+	store 1,mem_24g_map_buff0_dongle
+	rtn
+g24_search_ch_map2:
+	fetch 1, mem_24g_ch_map2
+	branch g24_search_ch_map
+g24_search_ch_map3:
+	fetch 1, mem_24g_ch_map3
+	branch g24_search_ch_map
+g24_search_ch_map4:
+	fetch 1,mem_24g_ch_map4
+	branch g24_search_ch_map
+
+g24_search_pair_rx_ch_update:
+	jam 0,mem_24g_ch_update_dongle
+	fetch 1,mem_24g_ch
+	bne 78,g24_search_pair_ch
+	fetch 1,mem_24g_map_buff0_dongle
+	store 1,mem_24g_ch
+	branch g24_get_id_private	
+
+g24_search_pair_ch:
+	jam 78,mem_24g_ch
+	setarg -1
+	store 4,mem_24g_addr	//initial address is 0xffffffff
+	rtn
+
+g24_get_id_private:
+	fetch 4,mem_24g_addr_private_dongle	//private address
+	store 4,mem_24g_addr
+	rtn
+
+	
+//24g dongle normal receive mode
+g24_normal_rcv_process:
+	rtnmark1 mark_24g_search_pair
+	rtnmark0 mark_24g_normal_rcv
+	fetch 4,mem_24g_tx_btclk_dongle	
+	fetcht 1,mem_24g_interval_dongle
+	iadd temp,temp	
+	copy clkn_bt,pdata	
+	isub temp,null
+	nbranch g24_normal_rcv_exit_dispatch,positive
+	store 4,mem_24g_tx_btclk_dongle
+	jam 1,mem_24g_ch_update_dongle
+g24_normal_rcv_exit_dispatch:
+	call g24_rf_txbuf_rxbuf_release
+	call g24_rx_data	
+	fetch 1,mem_24g_rx_sync_dongle
+	branch g24_normal_rcv_judge_ch_update,blank
+	jam 0,mem_24g_rx_sync_dongle
+	jam 1,mem_24g_spi_enable_flag
+	branch g24_normal_rcv_parse_data
+
+g24_normal_rcv_judge_ch_update:
+	fetch 1,mem_24g_ch_update_dongle
+	ncall g24_normal_rcv_ch_update,blank
+	rtn
+
+g24_normal_rcv_parse_data:
+	fetch 7,mem_24g_rxbuf+5
+	rshift2 pdata,pdata
+	store 6,mem_temp		//6 bytes mouse data
+	copy pdata,temp
+	arg 0,rega
+	arg 6,loopcnt
+g24_normal_rcv_parse_data_loop:
+	copy temp,pdata
+	copy pdata,regb
+	setarg mem_24g_rxbuf_temp_dongle
+	iadd rega,contw
+	copy regb,pdata
+	istore 1,contw
+	increase 1,rega
+	copy temp,pdata
+	rshift8 pdata,pdata
+	copy pdata,temp
+	loop g24_normal_rcv_parse_data_loop
+	fetch 6,mem_24g_rxbuf_temp_dongle
+	store 6,mem_24g_rxbuf_dongle
+	rtn	
+	
+g24_rf_txbuf_rxbuf_release:
+	arg mem_24g_txdata,contw
+	arg 6,loopcnt
+	call buffer_release
+	arg mem_24g_rxbuf,contw
+	arg 64,loopcnt
+	branch buffer_release
+
+g24_normal_rcv_ch_update:
+	jam 0,mem_24g_ch_update_dongle
+	fetch 1,mem_24g_addr_private_dongle+3	//last address byte decides which map to use
+	reverse pdata,pdata
+	and_into 0x03,pdata
+	beq 0x00,g24_normal_rcv_ch_map1
+	beq 0x01,g24_normal_rcv_ch_map2
+	beq 0x02,g24_normal_rcv_ch_map3
+	beq 0x03,g24_normal_rcv_ch_map4
+	rtn
+g24_normal_rcv_ch_map1:
+	setarg mem_24g_ch_map1	
+g24_normal_rcv_ch_map:
+	fetcht 1,mem_24g_ch_cnt_dongle
+	iadd temp,contr
+	ifetch 1,contr
+	store 1,mem_24g_ch
+	increase 1,temp
+	and_into 0x03,temp
+	storet 1,mem_24g_ch_cnt_dongle
+	rtn
+g24_normal_rcv_ch_map2:
+	setarg mem_24g_ch_map2
+	branch g24_normal_rcv_ch_map
+g24_normal_rcv_ch_map3:
+	setarg mem_24g_ch_map3
+	branch g24_normal_rcv_ch_map
+g24_normal_rcv_ch_map4:
+	setarg mem_24g_ch_map4
+	branch g24_normal_rcv_ch_map
+
+g24_rx_data:	
+	disable swfine
+	arg 0x100,stop_watch
+	arg plen_24g,loopcnt
+	call g24_rx
+	deposit clkn
+	enable swfine
+	fetch 1,mem_24g_sifs
+	mul32 pdata,100,stop_watch
+	nbranch g24_rx_unsync,sync
+	call g24_set_freq_tx
+	fetch 3,mem_24g_rxcnt
+	increase 1,pdata
+	store 3,mem_24g_rxcnt
+	call crc_rx
+	nbranch g24_rx_fail,blank
+g24_tx_ack:
+	jam 1,mem_24g_rx_sync_dongle
+	jam 0,mem_24g_datalen
+	fetch 1,mem_24g_pairing_sm_dongle	//initial value is 1
+	ncall g24_tx_ack_with_payload,blank
+	call g24_prepare_tx
+	call crc_tx_ack
+	arg 12,loopcnt
+	until null,timeout
+	call g24_tx
+	call shutdown_radio
+	branch g24_search_device_rx_crc_pass
+
+g24_tx_ack_with_payload:
+	jam 4,mem_24g_datalen
+	arg mem_24g_txdata,contw
+	arg 4,loopcnt
+	arg 3,rega
+g24_tx_ack_with_payload_loop:
+	setarg mem_24g_addr_private_dongle
+	iadd rega,contr
+	ifetch 1,contr
+	reverse pdata,pdata
+	istore 1,contw
+	increase -1,rega
+	loop g24_tx_ack_with_payload_loop
+	rtn
+
+g24_search_device_rx_crc_pass:
+	fetch 1,mem_24g_pairing_sm_dongle
+	rtn blank
+g24_search_device_rx_crc_pass_extra:
+	fetch 1,mem_24g_ch
+	bne 78,g24_search_device_completed
+	rtn
+
+g24_rx_unsync:
+	jam 0,mem_24g_rx_sync_dongle
+	branch shutdown_radio	
+
+g24_rx_fail:
+	fetch 3,mem_24g_rxfail_cnt
+	increase 1,pdata
+	store 3,mem_24g_rxfail_cnt
+	branch shutdown_radio	
+
+/************************2.4G dongle for YiCHiP end****************************/	
+
+endif
+
+
Index: Receive_Code/program/app.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/app.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/app.prog	(working copy)
@@ -0,0 +1,488 @@
+app_init:
+	set0 mark_ext_patch,mark
+	bpatch patch16_4,mem_patch16
+	fetch 1,mem_device_option
+	branch app_init,blank				/* wait ram to be initialized */
+//	beq dvc_op_ukey,le_ukey_init
+//	beq dvc_op_ir,le_ir_init
+//	beq dvc_op_dongle,le_dongle_init
+	beq dvc_op_kb,kb_init
+	beq dvc_op_shutter,shutter_init
+	beq dvc_op_module,module_init
+//	beq dvc_op_test,test_init
+	bbit1 dvc_op_mouse,mouse_init
+	bbit1 dvc_op_keyboard,kb_init
+	rtn
+	
+app_lpm_init:
+	set0 mark_ext_patch,mark
+	bpatch patch16_5,mem_patch16
+	jam 0,mem_tester_emulate
+	jam 0,mem_debug_config
+	jam 0, mem_lch_code
+	setarg 0
+	store 5,mem_sp_state_start
+	fetch 1,mem_device_option
+	branch app_lpm_init,blank				/* wait ram to be initialized */
+	beq dvc_op_module,module_lpm_init
+app_lpm_init0:
+	rtn
+
+	
+app_process_idle:
+	call ui_dispatch
+	call check_51cmd
+	call app_process_bb_event
+	fetch 2,mem_cb_idle_process
+	branch callback_func
+	
+app_process_bt:
+	fetch 2,mem_cb_bt_process
+	branch callback_func
+	
+app_process_ble:
+	fetch 2,mem_cb_le_process
+	branch callback_func
+
+app_process_bb_event:
+	set0 mark_ext_patch,mark
+	bpatch patch16_6,mem_patch16
+	//return if c51 need to process bb event
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_out
+	rtn blank
+	//reaching here mains c51 cannot get bb event.
+	copy pdata,regc
+	call app_event_normal_process
+	branch app_process_bb_event_priority
+	
+app_discard_event:
+	arg 0,regc
+	rtn
+
+//************************************************//
+//*APP BB EVENT NORMAL PROCESS**//
+//************************************************//
+app_event_normal_process:
+	beq BT_EVT_BB_CONNECTED,app_evt_bt_conn
+	beq BT_EVT_BUTTON_LONG_PRESSED,app_evt_button_long_pressed
+	beq BT_EVT_SETUP_COMPLETE,app_evt_setup_complete
+	beq BT_EVT_HID_HANDSHAKE,app_evt_hid_handshake
+	beq BT_EVT_HID_CONNECTED,app_bb_event_hid_connected
+	beq BT_EVT_RECONN_FAILED,app_bb_event_reconn_failed
+	beq BT_EVT_BB_DISCONNECTED,app_bb_event_bb_disconn
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,app_bb_event_reconn_failed	
+	beq BT_EVT_LE_CONNECTED,app_le_event_bb_connected
+	beq BT_EVT_LE_DISCONNECTED,app_le_event_bb_disconn
+	beq BT_EVT_RECONN_STARTED,app_event_reconn_start
+	beq BT_EVT_ENTER_SNIFF,app_event_enter_sniff
+	beq BT_EVT_EXIT_SNIFF,app_event_exit_sniff
+	
+	beq BT_EVT_ML2CAP_CONN_REFUSED,app_event_ml2cap_conn_refused
+	beq BT_EVT_LINKKEY_GENERATE,app_event_linkkey_generate
+	beq BT_EVT_SWITCH_FAIL_MASTER,app_event_switch_fail_master
+	beq BT_EVT_SWITCH_SUCCESS_MASTER,app_event_switch_success
+	
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,app_evt_timer
+	rtn
+
+app_evt_bt_conn:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set0 APP_DISC_BY_BUTTON ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+app_event_switch_success:
+	jam 0,mem_switch_fail_master_count
+	rtn	
+
+app_event_switch_fail_master:
+	fetch 1,mem_switch_fail_master_count
+	increase 1,pdata
+	store 1,mem_switch_fail_master_count
+	sub pdata,1,null
+	branch app_bt_role_switch,positive
+	jam 0,mem_switch_fail_master_count
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_SWITCH_FAIL,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch app_bt_disconnect
+	
+app_process_bb_event_priority:
+	fetch 2,mem_cb_bb_event_process
+	branch callback_func
+
+app_check_wake_lock:
+	fetch 2,mem_cb_check_wakelock
+	branch callback_func
+	
+app_will_enter_lpm:
+	fetch 2,mem_cb_before_lpm
+	branch callback_func
+
+app_event_linkkey_generate:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_PAIRING ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch app_bt_store_reconn_info
+	
+app_event_reconn_start:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_RECONNECT,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_RECONN,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+app_evt_setup_complete:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SETUP_COMPLETE,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_SETUP_DONE,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+app_evt_hid_handshake:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_HID_HANDSHAKE,pdata
+	store 2,mem_ui_state_map
+	rtn
+	
+app_event_enter_sniff:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SNIFF,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_SNIFF,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_event_exit_sniff:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_SNIFF,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_le_event_bb_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	rtn
+	
+app_le_event_bb_disconn:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	jam 0,mem_le_switch_send_data
+	branch app_lpm_mult_disable
+	
+app_bb_event_hid_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_HID_CONN,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_evt_button_long_pressed:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BY_BUTTON,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_event_ml2cap_conn_refused:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_L2CAP_REFUSED,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch  app_bt_disconnect
+
+
+app_evt_timer:
+	set0 mark_ext_patch,mark
+	bpatch patch16_7,mem_patch16
+	storet 1,mem_app_evt_timer_count
+app_evt_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call ui_button_polling
+	call app_lpm_wake_auto_lock_timer
+	call app_unsniff_delay_timer
+	call app_discovery_timer
+	fetch 2,mem_cb_event_timer
+	call callback_func
+	branch app_evt_100ms_loop
+	
+app_unsniff_delay_timer:
+	fetch 1,mem_unsniff2sniff_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_unsniff2sniff_timer_count
+	nrtn blank
+	call context_check_idle
+	branch app_bt_enter_sniff,zero
+	rtn
+app_discovery_timer:
+	fetch 2,mem_discovery_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_discovery_timeout_timer_count
+	nrtn blank
+	call app_bt_stop_discovery
+	call app_led_off
+	fetch 2,mem_cb_discovry_timeout
+	branch callback_func 
+	
+app_bb_event_reconn_failed:
+	call app_disconn_reason_flag_clear
+app_clear_reconnect_flag:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_RECONNECT,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_bb_event_bb_disconn:
+	jam 0,mem_unsniff2sniff_timer_count
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_RECONNECT,app_bb_event_bb_reconn_disconn
+	isolate0 UI_STATE_BT_SETUP_COMPLETE,pdata
+ 	call app_discard_event,true
+app_bb_event_bb_reconn_disconn:
+	set0 mark_ext_patch,mark
+	bpatch patch17_0,mem_patch17
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_CONNECTED,pdata
+	set0 UI_STATE_BT_SETUP_COMPLETE,pdata
+	set0 UI_STATE_BT_HID_CONN,pdata
+	set0 UI_STATE_BT_HID_HANDSHAKE,pdata
+	set0 UI_STATE_BT_RECONNECT,pdata
+	store 2,mem_ui_state_map
+	branch app_lpm_mult_disable
+	
+app_bb_hibernate:
+	call app_disconn_reason_clear
+	branch app_enter_hibernate
+
+	
+app_disconn_reason_clear:
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	rtn
+app_disconn_reason_flag_clear:
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+	
+app_disconn_reason_collect_bt:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_disconn_reason_collect_ble:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BLE,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+	
+//************************************************//
+//********APP SHARED FUNCSIONS*******//
+//************************************************//
+
+
+app_check_sniff:
+	fetch 1,mem_ui_state_map
+	isolate1 UI_STATE_BT_SNIFF,pdata
+	rtn
+
+//*****************************************//
+//*****************API********************//
+//*****************************************//
+//app_clearflag_store:
+//	setarg 0
+//	branch app_flag_store
+app_initflag_store:
+	setarg EEPROM_INIT_FLAG
+app_flag_store:
+	store 2,mem_timeup
+	set0 mark_ext_patch,mark
+	bpatch patch17_1,mem_patch17
+	arg 2,temp
+	arg mem_timeup,rega
+	arg eeprom_module_init_flag,regb
+	branch iicd_write_eep_data
+
+//initflag is in eeprom to sure is eeprom nead to init
+app_initflag_check:
+	set0 mark_ext_patch,mark
+	bpatch patch17_2,mem_patch17
+	arg 2,temp
+	arg mem_pdatatemp,rega
+	arg eeprom_module_init_flag,regb
+	call iicd_read_eep_data
+	fetch 2,mem_pdatatemp
+	arg EEPROM_INIT_FLAG,temp
+	isub  temp,null
+	rtn
+
+
+app_start_auto_sniff:
+	fetch 1,mem_unsniff2sniff_timer
+	store 1,mem_unsniff2sniff_timer_count
+	rtn	
+	
+app_get_lpm_wake_lock:
+	arg wake_lock_app,queue
+	branch lpm_get_wake_lock
+
+app_put_lpm_wake_lock:
+	arg wake_lock_app,queue
+	branch lpm_put_wake_lock
+	
+app_lpm_wake_auto_lock:
+	jam  LPM_WAKE_UP_DELAY_TIMER,mem_wake_up_delay_timer
+	branch app_get_lpm_wake_lock
+app_lpm_wake_auto_lock_timer:
+	fetch 1,mem_wake_up_delay_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_wake_up_delay_timer
+	nrtn blank
+	branch app_put_lpm_wake_lock
+
+app_l2cap_flow_control_enable:
+	jam L2CAP_FLOW_CTRL_ENABLE,mem_l2cap_flow_ctrl_flag
+	rtn
+
+app_l2cap_flow_control_disable:
+	jam L2CAP_FLOW_CTRL_DISABLE,mem_l2cap_flow_ctrl_flag
+	rtn
+	
+app_bt_set_pincode:
+	jam BT_CMD_SET_PIN_CODE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_role_switch:
+	jam BT_CMD_ROLE_SWITCH,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_bt_start_reconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch17_3,mem_patch17
+	fetch 1,mem_app_connection_options
+	store 1,mem_connection_options
+	jam APP_FLAG_RECONNECT,mem_reconnect_flag
+	jam BT_CMD_RECONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd	
+	
+app_bt_reconnect_cancel:
+	jam BT_CMD_BB_RECONN_CANCEL,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_bt_disconnect:
+	jam BT_CMD_DISCONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd	
+
+app_bt_start_discovery_short:
+	fetch 2,mem_discovery_timeout
+	store 2,mem_discovery_timeout_timer_count
+app_bt_start_discovery_led_blink:
+	call app_led_start_blink
+app_bt_start_discovery:
+	jam BT_CMD_START_DISCOVERY,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_stop_discovery:
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	jam BT_CMD_STOP_DISCOVERY,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_direct_adv:
+	jam BT_CMD_START_DIRECT_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_stop_direct_adv:
+	jam BT_CMD_STOP_DIRECT_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_stop_adv:
+	jam BT_CMD_STOP_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_adv:	
+	jam BT_CMD_START_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_scan:
+	jam BT_CMD_LE_START_SCAN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_stop_scan:
+	jam BT_CMD_LE_STOP_SCAN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_conn:
+	jam BT_CMD_LE_START_CONN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_disconnect:
+	jam BT_CMD_LE_DISCONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_start_write:
+	jam BT_CMD_LE_START_WRITE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_led_start_blink:	
+	jam BT_CMD_LED_BLINK,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_led_on:
+	jam BT_CMD_LED_ON,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_led_stop_blink:
+app_led_off:
+	jam BT_CMD_LED_OFF,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_enter_hibernate:
+	jam BT_CMD_ENTER_HIBERNATE,mem_fifo_temp 
+	branch ui_ipc_send_cmd
+	
+app_bt_sniff_exit:
+	jam BT_CMD_EXIT_SNIFF,mem_fifo_temp
+	branch  ui_ipc_send_cmd
+	
+app_bt_enter_sniff:
+	jam BT_CMD_ENTER_SNIFF,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_store_reconn_info:
+	jam BT_CMD_STORE_RECONN_INFO_LE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_store_reconn_info:
+	jam BT_CMD_STORE_RECONN_INFO_BT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_lpm_mult_enable:
+	set1 mark_lpm_mult_enable,mark
+	rtn
+
+app_lpm_mult_disable:
+	set0 mark_lpm_mult_enable,mark
+	rtn
+	
Index: Receive_Code/program/bt.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/bt.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/bt.prog	(working copy)
@@ -0,0 +1,4557 @@
+define REVD
+//define FPGA
+define ROMCODE
+define PATCH
+define ADC
+//define RAM_VERSION
+//define CLK6M
+//define DEBUG_MALLOC
+//define DEBUG_H4LOG_ENABLE
+//define DEBUG_LIGHT_STATE
+//define E2_LOG
+//define LMP_DBG
+//define ACL_DEBUG
+//define DCDC
+define NVRAM
+define RELEASE
+define SECURE_CONNECTION
+define DEBUG_RF_INIT
+//define SPI_SIMULATE
+//define ROM_RESPIN_OPTIONAL
+
+define SIMPLE_PAIRING
+define COMPILE_RFCOMM
+define COMPILE_SHUTTER
+//define COMPILE_IR
+define COMPILE_KEYBOARD
+define COMPILE_MOUSE
+define COMPILE_MODULE
+//define COMPILE_AT
+//define COMPILE_PRCP
+//define COMPILE_USB
+//define COMPILE_DONGLE
+define COMPILE_LE
+//define COMPILE_24G
+
+INCLUDE "bt_format"
+
+org 0x0000		// start from patch ram address start
+ifdef ROMCODE
+ifdef SIM
+include sim.prog
+else
+include patch.prog
+endif
+
+/******************************************/
+/***********   ROM Start   ***************/
+/******************************************/
+
+ifdef RAM_VERSION
+org 0x4000
+else
+org 0x3000		// start from rom address start
+endif
+start:
+	call lpmstate
+else
+
+/******************************************/
+/***********   RAM Start   ***************/
+/******************************************/
+
+start:
+	setarg 0xef21
+	hstore 2,core_clkoff
+	hfetch 8,core_gpio_wakeup_low
+	store 8,mem_gpio_wakeup_low
+	hfetch 1,core_misc_status
+	bbit1 2,soft_reset				// skip wake process if loaded by e
+	fetch 4,mem_sleep_counter
+	arg -1,rega
+	isub rega,null
+	nbranch soft_reset,zero
+	deposit auxcnt
+	branch lpm_hibernate,blank	// continue to hibernate
+	disable wake
+endif
+
+
+soft_reset:
+	hjam lock_otp,core_misc_ctrl	// disable further read/write of key
+	set0 mark_ext_patch,mark
+	bpatch patch00_0,mem_patch00
+	hfetch 1,0x813b
+	store 1,mem_wakup_from_power_flag //bit2  1:wake from hibnate 0:wake from power
+	call spi_ncs_gpio_init  // 0xff disable spi ncs gpio init
+	clear_stack
+	ncall wait_uarttx,wake	
+	call initialize_radio
+	call iicd_init_12m
+	call init_param
+	call l2cap_init
+	set0 mark_ext_patch,mark
+	bpatch patch00_1,mem_patch00
+	call rfcomm_init
+	call init_lmp
+	call ui_init
+	call app_init
+	ncall load_chip_option,wake
+	set0 mark_ext_patch,mark
+	bpatch patch00_2,mem_patch00
+	call app_lpm_init,wake
+ifdef SIMPLE_PAIRING
+	call publickey_init
+else
+	call ssp_disable
+ifdef SECURE_CONNECTION
+	call publickey_init
+
+endif
+endif
+	call lpm_recover_clk,wake
+main_loop:	
+	set0 mark_ext_patch,mark
+	bpatch patch00_3,mem_patch00
+ifdef SIMPLE_PAIRING
+	call sp_calc_sequence
+endif
+ifdef SECURE_CONNECTION
+	call sp_calc_sequence_256
+endif
+ifdef SIMPLE_PAIRING
+ifdef SECURE_CONNECTION
+	call publickey_calc
+endif
+endif
+	call le_dispatch
+	set0 mark_ext_patch,mark
+	bpatch patch00_4,mem_patch00
+	call idle_dispatch
+	call app_process_idle
+	call inquiry_dispatch
+	call inquiry_scan_dispatch
+	call page_scan_dispatch
+	call connection_dispatch
+	call lpm_dispatch
+	branch main_loop
+
+connection_dispatch:
+	call connection_incontext
+	rtnmark0 mark_context
+	set0 mark_context,mark
+	call context_save
+	branch le_disable
+	
+connection_incontext:
+	set0 mark_ext_patch,mark
+	bpatch patch00_5,mem_patch00
+	call context_search_insniff
+	nbranch connection_nosniff,zero
+	call context_load
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,le_conn_dispatch
+	bbit1 mode_master, master_dispatch
+	branch slave_dispatch
+connection_nosniff:
+	set0 mark_ext_patch,mark
+	bpatch patch00_6,mem_patch00
+	call context_get_next
+	copy loopcnt,null
+	rtn zero
+	call context_load
+	fetch 1,mem_state
+	bbit1 state_inpage,master_page
+	fetch 1,mem_mode
+	bbit1 mode_master, master_dispatch
+	branch slave_dispatch
+
+
+
+/**************************************/
+/**************idle dispatch*********/
+/**************************************/
+	
+idle_dispatch:
+	fetch 1,mem_hci_cmd
+	rtn blank
+	beq hci_cmd_inquiry,idle_inquiry
+	beq hci_cmd_inquiry_cancel,idle_inquiry_cancel
+	beq hci_cmd_remote_name_req,idle_remote_name_req
+	beq hci_cmd_create_conn,idle_create_conn
+	beq hci_cmd_le_create_conn,idle_le_create_conn
+	call context_search_conn_handle
+	rtn zero
+	call context_search_plap
+	rtn zero
+idle_exit:
+	jam 0,mem_hci_cmd
+	rtn
+
+idle_le_create_conn:
+	jam hci_cmd_le_create_conn,mem_cmd_le_create_conn
+	jam 0,mem_hci_cmd
+	rtn
+	
+idle_inquiry:
+	set1 mark_inquiry_on,mark
+	set0 mark_inquiry_trainb,mark
+	jam param_ninquiry,mem_ninqy_index
+	jam 31,mem_nfreq_index_inq
+	branch idle_exit
+
+idle_inquiry_cancel:
+	set0 mark_inquiry_on,mark
+	force 0,stop_watch
+	branch idle_exit
+
+idle_remote_name_req:
+	call context_search_plap
+	rtn zero
+	force LMP_NAME_REQ,temp
+	jam 5,mem_nameres_cnt
+	branch idle_start_page
+
+idle_create_conn:
+	set0 mark_ext_patch,mark
+	bpatch patch00_7,mem_patch00
+idle_create_conn_device:
+	fetch 6,mem_hci_plap
+	branch idle_exit,blank
+	jam RECONNECT_HID,memui_reconnect_mode
+	//jam HS_INIT_CALL,mem_hs_mode //init as master
+	jam CONN_SM_WAIT_FEATURES_RES,mem_conn_sm
+	branch idle_create_conn_cont
+	
+idle_create_conn_cont:
+	force LMP_VERSION_REQ,temp
+idle_start_page:
+	set0 mark_ext_patch,mark
+	bpatch patch01_0,mem_patch01
+	fetch 1,mem_page_mode
+	branch idle_page_mode_r0,blank
+	lshift3 pdata,pdata
+	lshift4 pdata,pdata
+	increase -1,pdata
+idle_page_mode_r0:
+	store 1,mem_npage
+	store 1,mem_npage_index
+	jam 31,mem_nfreq_index_page
+	set0 mark_page_trainb,mark
+	call context_new
+	nbranch idle_page_fail,zero
+	call get_free_amaddr
+	store 1,mem_amaddr
+	storet 1,mem_lmo_opcode2
+	fetch 6,mem_hci_plap
+	store 6,mem_plap
+	set0 mark_ext_patch,mark
+	bpatch patch01_1,mem_patch01
+	call timer_check
+	force 0,pdata
+	compare LMP_NAME_REQ,temp,0xff
+	nsetflag true,state_init_seq,pdata
+	set1 state_inpage,pdata
+	store 1,mem_state
+	jam BT_EVT_RECONN_STARTED,mem_fifo_temp
+	call ui_ipc_send_event
+	force 0,pdata
+	setflag true,smap_name_req,pdata
+	store 1,mem_state_map
+	setarg 0
+	set1 mode_master,pdata
+	store 1,mem_mode
+	enable master
+	call context_save
+	disable master
+	force page_length_timer,queue
+	fetch 2,mem_page_to
+	call timer_init
+	branch idle_exit
+idle_page_fail:
+	set0 mark_ext_patch,mark
+	bpatch patch01_2,mem_patch01
+	fetch 6,mem_hci_plap
+	store 6,mem_plap
+	compare LMP_NAME_REQ,temp,0xff
+	branch idle_name_fail,true
+	branch idle_exit
+idle_name_fail:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+	jam BT_EVT_RECONN_FAILED,mem_fifo_temp
+	call ui_ipc_send_event
+	branch idle_exit
+	
+
+/******************************************/
+/**************  Inquiry  *****************/
+/******************************************/
+
+inquiry_dispatch:
+	rtnmark0 mark_inquiry_on
+	force inquiry_length_timer,queue
+	call timer_check
+	nsetflag blank,mark_inquiry_on,mark
+	nbranch inquiry_start,blank
+	rtn
+	
+
+
+inquiry_start:
+	set0 mark_ext_patch,mark
+	bpatch patch01_3,mem_patch01
+	fetcht 2,mem_inq_window
+	force 4,queue
+	call sniff_check_window
+	rtn user
+	call afh_clear
+	force 0,freq_mode
+inquiry_restart:
+	rtn timeout
+	set0 mark_fhs_already_good,mark
+	set0 mark_fhs_eir,mark
+inquiry_rx_restart:
+	add clkn_bt,1,bt_clk
+	isolate1 mark_inquiry_trainb,mark
+	setflag true,2,freq_mode
+	compare 0x00,bt_clk,0x02      /* see if this is even slot */
+	nbranch inquiry_receive,true
+
+inquiry_transmit:
+	set0 mark_ext_patch,mark
+	bpatch patch01_4,mem_patch01
+	fetch 1,mem_inquiry_transmit
+	increase 1,pdata
+	store 1,mem_inquiry_transmit
+	call fetch_giac
+	call tx_radio_freq
+	call fetch_diac
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	call end_of_packet
+	call inquiry_check_train
+	branch inquiry_restart
+
+inquiry_check_train:
+	set0 mark_ext_patch,mark
+	bpatch patch01_5,mem_patch01
+	fetch 1,mem_nfreq_index_inq
+	increase -1,pdata
+	store 1,mem_nfreq_index_inq
+	rtn positive  /* if it's time to incremnt N */
+	jam 31,mem_nfreq_index_inq
+	fetch 1,mem_ninqy_index
+	increase -1,pdata
+	store 1,mem_ninqy_index
+	rtn positive      /* if it's time to change train */
+	setflip mark_inquiry_trainb,mark
+	jam param_ninquiry,mem_ninqy_index
+	rtn
+
+inquiry_receive:
+	set0 mark_ext_patch,mark
+	bpatch patch01_6,mem_patch01
+	call fetch_giac
+	call rx_radio_freq
+	call fetch_diac
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt
+	branch inquiry_sync,sync   /* try look for id packet again if not found */
+	call inquiry_check_train
+	branch inquiry_rx_restart
+inquiry_sync:
+	set0 mark_ext_patch,mark
+	bpatch patch01_7,mem_patch01
+	call save_rssi
+	call scan_mode_whiten
+	call receive_packet_whitened
+	set0 mark_rxbuf_inuse,mark
+	rtnmark0 mark_fhs_already_good
+inquiry_receive_rtn:
+	set0 mark_ext_patch,mark
+	bpatch patch02_0,mem_patch02
+inquiry_receive_eir_rtn:
+	fetch 1,mem_inquiry_rcv
+	increase 1,pdata
+	store 1,mem_inquiry_rcv
+	rtn
+		
+/******************************************/
+/**************  Master Dispatch  *************/
+/******************************************/
+
+
+
+master_page:
+	set0 mark_ext_patch,mark
+	bpatch patch02_1,mem_patch02
+	enable master
+	enable clknt
+	fetch 2,mem_page_interval
+	branch master_page_no_interval,blank
+	force page_interval_timer,queue
+	call timer_check               
+	nrtn blank
+master_page_no_interval:
+	set0 mark_ext_patch,mark
+	bpatch patch02_2,mem_patch02
+	fetcht 2,mem_page_window
+	force 40,queue
+	call sniff_check_window
+	branch page_exit,user
+	force page_length_timer,queue
+	call timer_check
+	nbranch page_start,blank
+	fetch 1,mem_state_map
+	bbit1 smap_name_req,master_npage_timeout
+	branch master_page_timeout
+master_npage_timeout:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+master_page_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch02_3,mem_patch02
+	jam 0,mem_state
+	call init_lmp_work
+	jam 0,memui_reconnect_mode
+	jam BT_EVT_RECONN_PAGE_TIMEOUT,mem_fifo_temp
+	call ui_ipc_send_event	
+	branch page_exit
+
+page_start:
+	set0 mark_ext_patch,mark
+	bpatch patch02_4,mem_patch02
+	force 0,timeup
+	until clkn_rt,meet
+	fetch 1,mem_page_clk
+	increase -1,pdata
+	ixor clkn_bt,pdata
+	compare 0,pdata,3
+	nbranch page_start,true
+	deposit am_addr
+	store 1,mem_fhs_am_addr
+	force 0,N_tx_slot
+	force 0,freq_mode
+
+page_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch02_5,mem_patch02
+	branch page_exit,timeout
+	call fetch_page_bt_adr
+	arg param_rf_setup, timeup
+	until clkn_rt,meet         /* wait for the start_receiver time against native real clk  */
+page_rx_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch02_6,mem_patch02
+	fetch 4,mem_page_clk    /* deposit clk_estimate */
+	iforce bt_clk
+	increase 1,pdata
+	store 4,mem_page_clk
+	isolate1 mark_page_trainb,mark
+	setflag true,2,freq_mode
+	compare 0x00,bt_clk,0x02      /* see if this is even slot */
+	nbranch page_receive,true
+	fetch 1, mem_page_transmit
+	increase 1,pdata
+	store 1, mem_page_transmit
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	call end_of_packet
+	call page_check_train
+	branch page_restart	
+page_exit:
+	set0 mark_ext_patch,mark
+	bpatch patch02_7,mem_patch02
+	disable master
+	fetch 2,mem_page_interval      
+	rtn blank
+	force page_interval_timer,queue
+	branch timer_init              
+
+page_check_train:
+	set0 mark_ext_patch,mark
+	bpatch patch03_0,mem_patch03
+	fetch 1,mem_nfreq_index_page
+	increase -1,pdata
+	store 1,mem_nfreq_index_page
+	rtn positive
+	jam 31,mem_nfreq_index_page
+	fetch 1,mem_npage_index
+	increase -1,pdata                 /* increment N */
+	store 1,mem_npage_index
+	rtn positive      			/* if it's time to change train */
+	setflip mark_page_trainb,mark             /* change train */
+	fetch 1,mem_npage
+	store 1,mem_npage_index
+	rtn
+	
+page_receive:
+	set0 mark_ext_patch,mark
+	bpatch patch03_1,mem_patch03
+	call rx_radio_freq
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt	/* try id look for id packet again */
+	branch page_sync,sync         /* restart if didn't receive anything */
+	call page_check_train
+	branch page_rx_restart
+page_sync:
+	call end_of_packet
+	fetch 1, mem_page_rcv
+	increase 1,pdata
+	store 1, mem_page_rcv
+	force 0,stop_watch
+	fetch 4,mem_page_clk
+page_send_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch03_2,mem_patch03
+	call rf_setup_time_master_slot
+	call fetch_page_bt_adr
+	increase 1,N_tx_slot
+page_send_fhs_continue:
+	and_into 0x1fd,bt_clk
+	and_into 0x1fc,freq_mode               /* master response = x00, even_train settin must remain the same */
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	force 0,am_addr
+	force type_fhs,type
+	call scan_mode_whiten
+	call transmit_packet_whitened
+page_wait_fhs_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch03_3,mem_patch03
+	call rf_setup_time_slave_slot
+	or_into 0x02,bt_clk
+	and_into 0x1fc,freq_mode               /* master response sequence = x00, even train setting must be preserved */
+	call rx_radio_freq
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt	/* look for that reply */
+	call end_of_packet,sync              /* id reply is enough */
+	branch page_wait_fhs_reply_ok,sync           /* no reply then send fhs again */
+	fetch 1,mem_fhs_wait_counter
+	branch page_restart,blank
+	increase -1,pdata
+	store 1,mem_fhs_wait_counter
+	branch page_send_fhs
+	
+page_wait_fhs_reply_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch03_4,mem_patch03
+	fetch 1, mem_page_rcv_fhs
+	increase 1,pdata
+	store 1, mem_page_rcv_fhs
+	call prepare_newconn
+master_newconn_loop:
+	call master_newconn_once
+	branch newconn_poll_responded,sync
+	call new_conn_timeout
+	nbranch master_newconn_loop,blank
+	branch page_restart
+
+newconn_poll_responded:
+	set0 mark_ext_patch,mark
+	bpatch patch03_5,mem_patch03
+	fetch 1,mem_state
+	set0 state_inpage,pdata
+	store 1,mem_state
+	call newconn_init
+	disable master
+	rtn
+	
+
+master_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch03_6,mem_patch03
+	enable master
+	enable clknt
+	call role_switch_master
+	rtn user
+	call check_bt_disabled
+	call rf_setup_time_master_slot
+	add clkn_bt,1,bt_clk
+	call fetch_self_bt_adr
+	force 0x03,freq_mode
+	call scheduler_tx_l2cap_pkt
+	call prepare_tx
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_native
+	call send_access_word
+	call transmit_packet
+master_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch03_7,mem_patch03
+	call parse_lmp
+	call master_conn_recv_packet
+	nbranch master_notmatch,match
+	call supervision_flush
+	call parse_l2cap
+	fetch 1,mem_master_rcvcnt
+	increase 1,pdata
+	store 1,mem_master_rcvcnt
+master_notmatch:
+	set0 mark_ext_patch,mark
+	bpatch patch04_0,mem_patch04
+	call scheduler_process
+	call check_master_disconnect
+	nrtn master					/* disconnected */
+	call check_attempt
+	nbranch master_attempt,blank
+master_exit:
+	disable master
+	rtn
+
+master_attempt:
+	call prepare_tx
+	call master_conn_send_packet
+	branch master_loop
+
+
+check_master_disconnect:
+	branch check_master_match,match
+	call supervision_update
+	branch master_disconnect,positive
+check_master_match:
+	call check_disconnect_timeout
+	nbranch master_disconnect,user
+	fetch 1,mem_state_map
+	rtnbit0 smap_name_req
+	rtnbit1 smap_name_res
+	fetch 1,mem_op
+	rtnbit1 op_disconn
+	call conn_timer_expired
+	nrtn blank
+	fetch 1,mem_nameres_cnt
+	increase -1,pdata
+	store 1,mem_nameres_cnt
+	nrtn blank
+	branch lmp_disconnect
+
+master_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch04_1,mem_patch04
+	call quit_connection
+	disable master
+	fetch 1,mem_state_map
+	bbit1 smap_name_req,master_name_disconnect
+	rtn
+	
+master_name_disconnect:
+	fetch 1,mem_state_map
+	rtnbit1 smap_name_res
+master_name_error:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	branch memset0
+	
+check_disconnect_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch04_2,mem_patch04
+	enable user
+	fetch 1,mem_op
+	rtnbit0 op_disconn
+	call conn_timer_expired
+	nrtn blank
+disable_usr:
+	disable user
+	rtn
+
+conn_timer_expired:
+	fetch 1,mem_conn_timer
+	increase -1,pdata
+	store 1,mem_conn_timer
+	rtn
+
+linkkey_ready:
+	set0 mark_ext_patch,mark
+	bpatch patch04_3,mem_patch04
+	fetch 1,mem_state
+	bbit1 state_linkkey,linkkey_set
+	fetch 1,mem_pairing_auth
+	branch linkkey_set,blank
+	jam DEFALT_PAIRING_AUTH,mem_pairing_auth
+	jam BT_EVT_LINKKEY_GENERATE,mem_fifo_temp
+	call ui_ipc_send_event
+	branch linkkey_set
+linkkey_set:
+	set0 mark_ext_patch,mark
+	bpatch patch04_4,mem_patch04
+	call context_traverse_linkkey
+	fetch 1,mem_state
+	set1 state_linkkey,pdata
+	store 1,mem_state
+	jam 1,mem_link_key_exists
+	fetch 1,mem_conn_sm
+	bne CONN_SM_PAIRING,linkkey_set_continue
+linkkey_set_continue:
+	rtn
+
+generate_linkkey_continue:
+	jam PAIRING_AUTH,mem_pairing_auth
+clear_linkstate:
+	fetch 1,mem_state
+	set0 state_linkkey,pdata
+	store 1,mem_state
+	rtn
+	
+
+	/* rtn user if switch */
+role_switch_check:
+	set0 mark_ext_patch,mark
+	bpatch patch04_5,mem_patch04
+	disable user
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	fetch 2,mem_tsniff
+	nrtn blank
+	fetch 4,mem_sniff_anchor
+	branch role_switch_clkn,clknt
+	isub clke_bt,pdata
+	branch role_switch_clke
+role_switch_clkn:
+	isub clkn_bt,pdata
+role_switch_clke:
+	sub pdata,4,null
+	nrtn positive
+	fetch 1,mem_state
+	set0 state_insniff,pdata
+	store 1,mem_state
+	enable user
+	rtn
+
+	/* pdata: switch instant, set tsniff=0 for special sniff */	
+role_switch_prepare:
+	copy pdata,temp
+	set0 mark_ext_patch,mark
+	bpatch patch04_6,mem_patch04
+	store 4,mem_sniff_anchor
+role_switch_prepare0:
+	jam SWITCH_FLAG_ACCEPT,mem_switch_flag
+	fetch 1,mem_state
+	set1 state_insniff,pdata
+	store 1,mem_state
+	force 0,pdata
+	store 2,mem_tsniff
+	jam 1,mem_sniff_attempt
+	jam 0x0,mem_sniff_timeout  
+	jam 0x0,mem_current_sniff_timeout  
+	fetch 4,mem_sniff_anchor  
+	copy clkn_bt,temp  
+	isub temp,pdata  
+	rshift2 pdata,pdata  
+	increase  -8,pdata  
+	store 1,mem_current_sniff_attempt  
+	rtn
+
+
+role_switch_master:
+	set0 mark_ext_patch,mark
+	bpatch patch04_7,mem_patch04
+	call role_switch_check
+	nrtn user
+	disable user
+	jam param_newconnto,mem_newconnto_counter
+	set0 mark_fhs_already_good,mark
+roles_waitfhs_loop:
+	call rf_setup_time_master_slot
+	call master_recv_packet
+	bmark1 mark_fhs_already_good,roles_replyto_fhs
+	call new_conn_timeout
+	nbranch roles_waitfhs_loop,blank
+role_switch_fail_master:
+	set0 mark_ext_patch,mark
+	bpatch patch05_0,mem_patch05
+	disable user
+	deposit clkn_bt
+	store 4,mem_next_btclk
+	enable clknt
+	enable master
+	jam BT_EVT_SWITCH_FAIL_MASTER,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+roles_replyto_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch05_1,mem_patch05
+	call rf_setup_time_slave_slot
+	call master_send_packet
+	disable clknt
+	disable master
+	call apply_switch_clke
+	call prepare_newconn
+roles_newconns_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch05_2,mem_patch05
+	call slave_newconn_once
+	branch roles_newconns_responded,match
+	call new_conn_timeout
+	nbranch roles_newconns_loop,blank
+	branch role_switch_fail_master
+roles_newconns_responded:
+	fetch 1,mem_mode
+	set0 mode_master,pdata
+	store 1,mem_mode
+	call supervision_flush
+	call calc_clke_offset
+	enable user
+	jam BT_EVT_SWITCH_SUCCESS_MASTER,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+
+
+context_load:
+	set0 mark_ext_patch,mark
+	bpatch patch05_3,mem_patch05
+	set1 mark_context,mark
+	deposit rega
+	store 2,mem_context_ptr
+	force context_size,loopcnt
+	arg mem_le_state,contw
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	copy rega,contr
+	bbit1 mode_le,memcpy
+	arg mem_state,contw
+	call memcpy
+	disable attempt
+	fetch 1,mem_amaddr
+	iforce am_addr
+	jam 1,mem_current_sniff_attempt
+	branch context_load_master,master
+	jam 1,mem_current_sniff_attempt
+context_load_master:
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	fetch 1,mem_sniff_attempt
+	store 1,mem_current_sniff_attempt
+	fetch 1,mem_sniff_timeout
+	store 1,mem_current_sniff_timeout
+	rtn
+	
+context_save:
+	set0 mark_ext_patch,mark
+	bpatch patch05_4,mem_patch05
+	fetch 2,mem_context_ptr
+	iforce contw
+	force context_size,loopcnt
+	arg mem_le_state,contr
+	branch memcpy,le
+	arg mem_state,contr
+	branch memcpy
+
+	
+
+context_get_next:
+	fetch 1,mem_context_number
+	copy pdata,loopcnt
+	fetcht 1,mem_current_context
+context_get_next_loop:
+	increase 1,temp
+	compare context_num,temp,0xff
+	nbranch context_get_next_cont,true
+	arg 0,temp
+context_get_next_cont:
+	storet 1,mem_current_context
+	mul32 temp,context_size,pdata
+	arg mem_context,rega
+	iadd rega,rega
+	ifetch 1,rega
+	bbit1 state_insniff,context_get_next_sniff
+	rtnbit1 state_inconn
+	rtnbit1 state_inpage
+context_get_next_sniff:
+	loop context_get_next_loop
+	rtn
+	
+context_new:
+	set0 mark_ext_patch,mark
+	bpatch patch05_5,mem_patch05
+	arg context_search_empty,regc
+	call context_search
+	nrtn zero					// all occupied
+	deposit rega
+	store 2,mem_context_ptr
+	force 0,null
+	rtn
+	
+	//return zero if anyone's wack is 1.
+	//return nzero if all wack is 0
+context_check_all_wack:
+	call check_esco_amaddr
+	branch context_check_esco_wack,true
+	fetch 2,mem_context_ptr
+	add pdata,coffset_arq,contw
+	fetch 1,mem_arq
+	istore 1,contw
+	arg context_check_a_wack,regc
+	branch context_search
+
+context_check_esco_wack:
+	fetch 1,mem_arq
+	isolate1 wack,pdata
+	branch context_esco_wack,true
+	force 1,null
+	rtn
+context_esco_wack:
+	force 0,null
+	rtn
+	
+	//rtn nzero if idle(no conn)
+context_check_idle:
+	arg context_check_inconn,regc
+	branch context_search
+	
+context_traverse_linkkey:
+	fetcht 2,mem_context_ptr
+	arg context_traverse_clearkey,regc
+	branch context_search
+	
+	
+	/* return zero if conn handle is found */
+context_search_conn_handle:
+	fetcht 1,mem_hci_conn_handle
+context_search_conn_handle2:
+	arg context_search_handle,regc
+	branch context_search
+	/* return zero if plap is found */
+context_search_plap:
+	set0 mark_ext_patch,mark
+	bpatch patch05_6,mem_patch05
+	fetcht 6,mem_hci_plap
+context_search_plap2:
+	arg context_search_lap,regc
+	branch context_search
+	/* return zero if sniff anchor is meet and rega pointers to context */
+context_search_insniff:
+	arg context_search_sniff,regc
+	branch context_search
+	/* return zero if sniff window is in content with current transaction */
+context_search_sniff_window:
+	arg context_search_window,regc
+context_search:
+	set0 mark_ext_patch,mark
+	bpatch patch05_7,mem_patch05
+	arg mem_context,rega
+	fetch 1,mem_context_number
+	copy pdata,loopcnt
+context_search_loop:
+	ifetch 1,rega
+	copy regc,pc
+context_search_next:
+	increase context_size,rega
+	loop context_search_loop
+	force 1,null
+	rtn
+
+context_search_empty:
+	bbit1 state_inconn,context_search_next
+	bbit1 state_inpage,context_search_next
+	force 0,null
+	rtn
+	
+context_search_lap:
+	bbit1 state_inpage,context_search_lap_cont
+	bbit0 state_inconn,context_search_next
+context_search_lap_cont:
+	add rega,coffset_plap,contr
+	ifetch 6,contr
+	isub temp,null
+	rtn zero
+	branch context_search_next
+
+context_search_handle:
+	bbit0 state_inconn,context_search_next
+	add rega,coffset_conn_handle,contr
+	ifetch 1,contr
+	isub temp,null
+	rtn zero
+	branch context_search_next
+
+context_search_sniff:
+	bbit0 state_insniff,context_search_next
+context_search_sniff_loop:
+	call context_get_anchor
+	call sign_pdata_temp
+	isub temp,pdata
+	increase 1,pdata
+	branch context_search_sniff_miss,positive
+	copy contr,regb
+	store 9,mem_temp
+	fetch 1,mem_le_sc_calc
+	nbranch context_search_sniff_sc,blank
+	fetch 9,mem_temp
+	copy regb,contr
+	increase 5,pdata  
+	branch context_search_meet1
+context_search_sniff_sc:
+	fetch 9,mem_temp
+	copy regb,contr	
+	increase 20,pdata  
+context_search_meet1:
+	nbranch context_search_next,positive
+context_search_meet:
+	copy temp,bt_clk
+	call context_next_anchor
+	force 0,null
+	rtn
+	
+	
+context_search_sniff_miss:
+	iforce regb
+	add rega,coffset_tsniff,contr
+	ifetch 2,contr
+	branch context_search_meet,blank
+	call context_next_anchor
+	branch context_search_sniff_loop
+
+sign_pdata_temp:
+	rshift16 pdata,timeup    
+	rshift8 timeup,timeup    
+	branch sign_pdata_temp_p0,zero    
+	compare 0xf,timeup,0xf    
+	nrtn true    
+	rshift16 temp,timeup    
+	rshift8 timeup,timeup    
+	nrtn zero    
+	set1 28,temp    
+	rtn
+sign_pdata_temp_p0:    
+	rshift16 temp,timeup    
+	rshift8 timeup,timeup    
+	compare 0xf,timeup,0xf    
+	nrtn true    
+	set1 28,pdata    
+	rtn
+
+context_check_inconn:
+	bbit0 state_inconn,context_search_next
+	force 0,null 				// found
+	rtn
+	
+context_check_a_wack:
+	bbit0 state_inconn,context_search_next
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,context_search_next
+	add rega,coffset_arq,contr
+	ifetch 1,contr
+	bbit0 wack,context_search_next
+	force 0,null 				// found
+	rtn
+
+context_get_anchor:
+	add rega,coffset_mode,contr
+	ifetcht 1,contr
+	deposit clkn_bt
+	isolate1 mode_master,temp
+	add rega,coffset_sniff_anchor,contr
+	ifetcht 4,contr
+	rtn true
+	add rega,coffset_clk_offset,contr
+	ifetch 6,contr
+	call calc_clke2
+	deposit clke_bt
+	rtn
+
+context_next_anchor:
+	add rega,coffset_tsniff,contr
+	add rega,coffset_sniff_anchor,contw
+	ifetch 2,contr
+	iadd temp,timeup			/* wrap to 28 bits */
+	deposit timeup
+	istore 4,contw
+	branch le_context_nexthop
+	
+
+context_search_window:
+	bbit0 state_insniff,context_search_next
+	call context_get_anchor
+	iadd stop_watch,pdata
+	iadd stop_watch,pdata
+	iadd queue,pdata
+	isub temp,null
+	nbranch context_search_next,positive
+	force 0,null
+	rtn
+
+context_traverse_clearkey:
+	bbit0 state_inconn,context_search_next
+	deposit temp
+	isub rega,null
+	branch context_search_next,null
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,context_search_next
+	ifetch 1,rega
+	set0 state_linkkey,pdata
+	istore 1,rega
+	branch context_search_next
+
+	
+master_conn_send_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch06_0,mem_patch06
+	call rf_setup_time_master_slot
+master_send_packet:
+	add clkn_bt,1,bt_clk          /* master start to use native clock */
+	call fetch_self_bt_adr
+	force 0x03,freq_mode          /* we are in connection!! */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_native
+	call send_access_word
+	branch transmit_packet
+
+master_conn_recv_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch06_1,mem_patch06
+	call rf_setup_time_slave_slot
+master_recv_packet:
+	add clkn_bt,1,bt_clk          /* master start to use native clock */
+	call fetch_self_bt_adr
+	force 0x03,freq_mode          /* we are in connection!! */
+	call rx_radio_freq
+	call init_rx_packet_flags
+	call prep_crypt
+	call start_rx_native	/* start listening at start_rx time */
+	call start_receiver
+master_rx_conn_finish_packet:
+	call wait_access_clkn_rt	/* master use native clock */
+	nrtn sync
+	call save_rssi
+	branch receive_packet
+	
+	
+
+master_newconn_once:
+	set0 mark_ext_patch,mark
+	bpatch patch06_2,mem_patch06
+	fetch 1,mem_fhs_am_addr
+	iforce am_addr			//review
+	force type_poll,type
+	call master_conn_send_packet
+	branch master_conn_recv_packet
+
+
+
+
+
+
+/******************************************/
+/************* Inquiry Scan ***************/
+/******************************************/
+
+inquiry_scan_dispatch:
+	fetch 1,mem_scan_mode
+	rtnbit0 inq_scan_mode
+	force iscan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetcht 2,mem_iscan_window
+	force 4,queue
+	call sniff_check_window
+	rtn user
+	call inquiry_scan_start
+	force iscan_interval_timer,queue
+	fetch 2,mem_iscan_interval
+	nbranch timer_init,sync
+	random pdata				/* inquiry scan backoff */
+	iand mask3ff,pdata
+	branch timer_init
+	
+
+inquiry_scan_start:
+	set0 mark_ext_patch,mark
+	bpatch patch06_3,mem_patch06
+	jam 0,mem_fhs_am_addr
+	disable clknt
+	disable attempt
+	call afh_clear
+	and clkn_bt,0x1fc,bt_clk      /* freeze the clock, set bit[1] 0, this is version 1.1 */
+	force 0x01,freq_mode     /* slave in inquiry scan, kind of same as inquriy_response, this is version 1.1 */
+	call fetch_giac
+	call rx_radio_freq
+	setflip mark_inquiry_state,mark
+	fetch 1,mem_inquiryscan_waitcnt
+	increase 1,pdata
+	store 1,mem_inquiryscan_waitcnt
+	call fetch_diac
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_forever	/* until there is timeout, or matched (true) */
+	nrtn sync
+	set0 mark_ext_patch,mark
+	bpatch patch06_4,mem_patch06
+	force 0,stop_watch
+	call shutdown_radio	/* must have heard */
+	fetch 1,mem_inquiryscan_rcvcnt
+	increase 1,pdata
+	store 1,mem_inquiryscan_rcvcnt
+	call fetch_giac
+	call rf_setup_time_slave_slot
+	or_into 0x002,bt_clk               /* put clk(1) to 1 */
+	force 0x01,freq_mode               /* slave in inquriy and page, response only */
+	call tx_radio_freq
+	call fetch_diac
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_external
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	call send_access_word
+	force type_fhs,type
+	force 0,am_addr                       /* put 0 into am_addr field for fhs */
+	call scan_mode_whiten
+	call transmit_packet_whitened
+	call send_eir
+	and_into 0x1fd,bt_clk                 /* put clk(1) back to 0 */
+	increase 1,N_tx_slot
+	rtn
+
+send_eir:
+	set0 mark_ext_patch,mark
+	bpatch patch06_5,mem_patch06
+	fetch 1,mem_eir_enable
+	rtn blank
+	arg mem_eir,contw
+	fetch 1,mem_local_name_length
+	copy pdata,loopcnt
+	increase 1,pdata
+	istore 1,contw	
+	copy contw,temp
+	increase 1,pdata
+	store 2,mem_tx_len	
+	copy temp,contw
+	setarg 0x09  //type:name
+	istore 1,contw		
+	arg  mem_local_name,contr
+	call memcpy       //name
+
+	arg mem_all_uuid_128bits,regc
+	arg 4,loopcnt
+	call get_all_uuid
+	arg mem_all_uuid_16bits,regc
+	arg 1,loopcnt
+	call get_all_uuid
+
+	force type_dm3,type		/* DM3 */
+	jam 2,mem_tx_lch
+	setarg mem_eir
+	store 2,mem_txptr
+	call rf_setup_time_slave_slot
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_external
+	call send_access_word
+	call scan_mode_whiten
+	call transmit_packet_whitened
+	rtn
+
+
+get_all_uuid:
+	copy contw,temp
+	copy regc,contr
+	ifetch 1,contr
+	rtn blank
+lshift_loop:
+	lshift pdata,pdata
+	loop lshift_loop
+	copy pdata,rega
+	increase 2,pdata
+	copy pdata,queue
+	fetch 2,mem_tx_len
+	iadd queue,pdata
+	store 2,mem_tx_len
+	copy temp,contw
+	copy rega,pdata
+	increase 1,pdata
+	istore 1,contw
+	copy regc,contr
+	ifetch 1,contr
+	ifetch 1,contr	//fetch type
+	istore 1,contw
+	copy rega,loopcnt
+	branch memcpy  //copy uuid
+	
+/******************************************/
+/******** Slave dispatch ***********/
+/******************************************/
+
+page_scan_dispatch:	
+	fetch 1,mem_scan_mode
+	rtnbit0 page_scan_mode
+	force pscan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetcht 2,mem_pscan_window
+	force 40,queue
+	call sniff_check_window
+	rtn user
+	force 0,am_addr
+	jam param_pagerespto,mem_fhs_wait_counter
+	set0 mark_fhs_already_good,mark
+	call page_scan_start
+	force pscan_interval_timer,queue
+	fetch 2,mem_pscan_interval
+	branch timer_init
+	
+
+page_scan_start:
+	set0 mark_ext_patch,mark
+	bpatch patch06_6,mem_patch06
+	disable clknt
+	call afh_clear
+	fetch 1,mem_pagescan_waitcnt
+	increase 1,pdata
+	store 1,mem_pagescan_waitcnt
+	force 0,N_tx_slot
+	call fetch_self_bt_adr
+	add clkn_bt,1,bt_clk      /* freeze the clock on native clock until scan window is up */
+	force 0x02, freq_mode     /* slave in inquiry and page, not response */
+	set0 mark_ext_patch,mark
+	bpatch patch06_7,mem_patch06
+	call rx_radio_freq
+	call start_receiver	/* wait for that id packet from master */
+	call wait_access_forever
+	nrtn sync                          /* pscan window timeout occured, back to dispatch */
+	call shutdown_radio	/* got the id packet */
+	fetch 1,mem_pagescan_rcvcnt
+	increase 1,pdata
+	store 1,mem_pagescan_rcvcnt
+	force 0,stop_watch
+	call rf_setup_time_slave_slot
+	or_into 0x002,bt_clk               /* put clk(1) to 1 */
+	force 0x01,freq_mode               /* slave in inquriy and page, response only */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	call send_access_word
+	call end_of_packet
+	force 0,am_addr
+	arg param_rf_setup, timeup
+	until clke_rt,meet
+	or_into 0x03,clke_bt
+	and_into 0x1fd,bt_clk
+page_scan_wait_fhs_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch07_0,mem_patch07
+	increase 1,N_tx_slot
+	call rx_radio_freq
+	call start_receiver
+	call wait_access_mhalfbnd
+	nbranch page_scan_wait_fhs_again,sync	/* go back if didn't find access code */
+	call scan_mode_whiten
+	call receive_packet_whitened
+	bmark1 mark_fhs_already_good,page_scan_reply_to_fhs
+page_scan_wait_fhs_again:
+	set0 mark_ext_patch,mark
+	bpatch patch07_1,mem_patch07
+	fetch 1,mem_fhs_wait_counter
+	rtn blank
+	increase -1,pdata
+	store 1,mem_fhs_wait_counter
+	call rf_setup_time_master_slot	/* set up expiration time */
+	branch page_scan_wait_fhs_restart
+
+
+page_scan_reply_to_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch07_2,mem_patch07
+	set0 1,clke_bt
+	set1 0,clke_bt
+	fetch 1,mem_pagescan_rcvfhscnt
+	increase 1,pdata
+	store 1,mem_pagescan_rcvfhscnt
+	call rf_setup_time_slave_slot
+	or_into 0x02,bt_clk
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	call send_access_word
+	call end_of_packet
+slave_apply_clke_bt:
+	compare 0x03,clke_bt,0x03
+	branch slave_apply_clke_bt_now,true
+	until null,mhalfbnd
+	branch slave_apply_clke_bt
+slave_apply_clke_bt_now:
+	fetch 4,mem_clke_bt
+	or_into 0x03,pdata
+	icopy clke_bt
+
+start_slave_connection:
+	set0 mark_ext_patch,mark
+	bpatch patch07_3,mem_patch07
+	fetch 6,extm_lap
+	store 6,mem_plap
+	call prepare_newconn
+slave_newconn_loop:
+	call slave_newconn_once
+	branch sconn_successful,match     /* we were talked to */
+	call new_conn_timeout
+	nbranch slave_newconn_loop,blank
+	rtn
+
+	
+sconn_successful:
+	set0 mark_ext_patch,mark
+	bpatch patch07_4,mem_patch07
+	call newconn_init
+	call context_new
+	nrtn zero
+	jam 0,mem_mode
+	call calc_clke_offset
+	branch context_save
+
+
+slave_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch07_5,mem_patch07
+	call calc_clke
+	call role_switch_slave
+	rtn user
+slave_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch07_6,mem_patch07
+	call check_bt_disabled
+	call scheduler_process
+	call slave_conn_recv_packet	/* go listen for a packet */
+	nbranch slave_notmatch,match
+	call supervision_flush
+	call scheduler_tx_l2cap_pkt
+	call prepare_tx
+	call slave_conn_send_packet
+	call parse_l2cap
+	call parse_lmp
+	fetch 1,mem_slave_rcvcnt
+	increase 1,pdata
+	store 1,mem_slave_rcvcnt
+	call calc_clke_offset
+slave_notmatch:
+	set0 mark_ext_patch,mark
+	bpatch patch07_7,mem_patch07
+	call lpm_set_mult
+	call supervision_update
+	branch slave_disconnect,positive
+	call check_disconnect_timeout
+	nbranch slave_disconnect,user
+	call check_attempt
+	nbranch slave_loop,blank
+	rtn
+
+slave_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch08_0,mem_patch08
+	jam 0,mem_tester_emulate
+	jam 0,mem_debug_config
+	call quit_connection
+	set0 mark_testmode,mark
+	call test_enable_white
+	fetch 1,mem_state
+	rtn
+
+
+role_switch_slave:
+	set0 mark_ext_patch,mark
+	bpatch patch08_1,mem_patch08
+	call role_switch_check
+	nrtn user
+	copy am_addr,temp
+	call get_free_amaddr
+	store 1,mem_fhs_am_addr
+	copy temp,am_addr
+	jam param_newconnto,mem_newconnto_counter
+roles_sendfhs_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch08_2,mem_patch08
+	call rf_setup_time_master_slot
+	force type_fhs,type
+	call slave_send_access
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	call transmit_packet
+	call rf_setup_time_slave_slot
+	enable user3
+	call slave_receive_access
+	branch roles_got_fhs_reply,sync
+	call shutdown_radio
+	call new_conn_timeout
+	nbranch roles_sendfhs_loop,blank
+	rtnmark0 mark_accept_switch
+	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	rtn
+roles_got_fhs_reply:
+	enable clknt
+	call prepare_newconn
+	call afh_clear
+roles_newconn_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch08_3,mem_patch08
+	call master_newconn_once
+	branch roles_newconn_responded,sync
+	call new_conn_timeout
+	nbranch roles_newconn_loop,blank
+	disable clknt
+	deposit clke_bt
+	store 4,mem_next_btclk
+	rtn
+roles_newconn_responded:
+	enable master
+	bmark0 mark_accept_switch,roles_newconn_nolmp
+	set0 mark_accept_switch,mark
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_HOST_CONNECTION_REQ,mem_lmi_opcode2
+	call tid_set_reply
+roles_newconn_nolmp:
+	deposit am_addr
+	store 1,mem_amaddr
+	force 0,pdata
+	store 6,mem_clk_offset
+	fetch 1,mem_mode
+	set1 mode_master,pdata
+	store 1,mem_mode
+	call supervision_flush
+	disable master
+	enable user
+	rtn
+
+	
+
+init_rx_packet_flags:
+	set0 mark_ext_patch,mark
+	bpatch patch08_4,mem_patch08
+	disable match
+	set0 mark_loopback,mark
+	set0 mark_am_addr_broadcast,mark          /* initialize slave flags */
+	set0 mark_longpacket,mark
+	set0 mark_old_packet,mark
+	fetch 1,mem_arq    /* mem_arq + am_addr */
+	set0 arqnx,pdata
+	set1 flowx,pdata
+	store 1,mem_arq
+	rtn
+
+prepare_newconn:
+	set0 mark_ext_patch,mark
+	bpatch patch08_5,mem_patch08
+	jam param_newconnto,mem_newconnto_counter
+	jam param_newconn_arq,mem_arq
+	fetch 2,mem_rx_window_init
+	store 2,mem_rx_window
+	deposit clkn_bt
+	store 4,mem_next_btclk
+	rtn clknt
+	deposit clke_bt
+	store 4,mem_next_btclk
+	rtn
+
+newconn_init:
+	set0 mark_ext_patch,mark
+	bpatch patch08_6,mem_patch08
+	call init_lmp_reinit
+	call new_conn_handle
+	store 1,mem_conn_handle
+	setarg 0
+	store 2,mem_l2cap_rxbuff1_len
+	setarg param_supervision_to
+	store 2,mem_supervision_to
+	fetch 1,mem_state
+	set1 state_inconn,pdata
+	store 1,mem_state
+	jam 0,mem_op
+	jam 0,mem_state_map
+	jam 0,mem_lpm_current_mult
+	branch supervision_flush
+	
+
+clear_linkkey:
+	set0 mark_ext_patch,mark
+	bpatch patch08_7,mem_patch08
+	force 0,pdata
+	store 8,mem_link_key
+	istore 8,contw
+	call clear_linkstate
+	branch context_traverse_linkkey
+	
+new_conn_timeout:
+	fetch 1,mem_newconnto_counter
+	increase -1,pdata
+	store 1,mem_newconnto_counter
+	rtn
+
+new_conn_handle:
+	fetch 1,mem_handle_num
+	increase 1,pdata
+	store 1,mem_handle_num
+	rtn
+
+
+quit_connection:
+	set0 mark_ext_patch,mark
+	bpatch patch09_0,mem_patch09
+	fetch 1,mem_hci_cmd
+	beq hci_cmd_remote_name_req,quit_connection_name
+	fetch 1,mem_lmp_to_send
+	bne LMP_NAME_REQ,quit_connection_cont
+quit_connection_name:
+	call cmd_check_plap
+	nbranch quit_connection_cont,zero
+	call master_name_error
+	jam 0,mem_hci_cmd
+quit_connection_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch09_1,mem_patch09
+	call app_disconn_reason_collect_bt
+	call sniff_exit
+	jam BT_EVT_BB_DISCONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	call init_lmp_work
+	call l2cap_init_work
+ifdef SIMPLE_PAIRING
+	call sp_initialize
+endif
+	fetch 1,mem_state
+	set0 state_inconn
+	store 1,mem_state
+	jam 0,memui_reconnect_mode
+
+	fetch 1,mem_state_map
+	compare 0x0,pdata,0xc0
+	branch quit_connection_not_clear_mark,true
+	set0 mark_rxbuf_inuse,mark
+quit_connection_not_clear_mark:
+	fetch 1,mem_arq
+	bbit0 wack,quit_connection_not_clear_tx
+quit_connection_not_clear_tx:
+	fetch 1,mem_op
+	rtnbit0 op_txl2cap
+	set0 mark_tx_l2cap,mark
+	rtn
+
+slave_newconn_once:
+	set0 mark_ext_patch,mark
+	bpatch patch09_2,mem_patch09
+	fetch 1,extm_newconn_am_addr
+	rtn blank     
+	icopy am_addr
+	call slave_conn_recv_packet
+	nrtn match
+	force type_null,type
+	call slave_conn_send_packet
+	deposit am_addr
+	store 1,mem_amaddr                 /* now the new am_addr is official */
+	force 0,pdata
+	store 1,extm_newconn_am_addr
+	rtn
+
+
+/******************************************/
+/********  Time consuming task  ***********/
+/******************************************/
+prepare_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch09_3,mem_patch09
+	fetch 1,mem_state
+	bbit0 state_insco,prepare_tx_not_sco
+	force type_hv3,type
+	bmark0 mark_esco,prepare_tx_not_esco
+	call check_esco_amaddr
+	nbranch prepare_tx_not_sco,true
+	branch prepare_tx_not_sco,attempt	
+	call set_wait_ack					/* send esco only at the first attempt */
+	setarg 2		/* esco only has 1 retry */
+	store 2,mem_retransmission_cnt
+	rtn
+prepare_tx_not_esco:
+	nrtn attempt						/* send sco only at the first attempt */
+prepare_tx_not_sco:
+	set0 mark_ext_patch,mark
+	bpatch patch09_4,mem_patch09
+	call context_check_all_wack			 //abandon mark_retransmit, use context_check_all_wack instead.
+	nbranch prepare_tx_no_retransmit,zero
+	fetch 1,mem_arq
+	bbit0 wack,prepare_tx_pollnull		/* other wack, tx buffer in use, but not me */
+prepare_tx_retransmit:
+	bmark1 mark_loopback,prepare_tx_loopback
+	fetch 1,mem_debug_config
+	bbit1 debug_tx_pattern,prepare_tx_txpat
+	fetch 2,mem_retransmission_cnt
+	increase -1,pdata
+	store 2,mem_retransmission_cnt
+	branch prepare_tx_nomore_retransmit,blank
+	fetch 1,mem_last_type
+	iforce type
+	rtn
+
+prepare_tx_nomore_retransmit:
+	set0 mark_ext_patch,mark
+	bpatch patch09_5,mem_patch09
+	call clear_got_tx
+prepare_tx_no_retransmit:
+	call check_esco_amaddr
+	branch prepare_tx_pollnull,true
+	call send_lmp
+	branch prepare_tx_sendlmp,user
+	fetch 1,mem_op
+	bbit1 op_txl2cap,prepare_tx_sendl2cap
+	bmark1 mark_loopback,prepare_tx_loopback
+	fetch 1,mem_debug_config
+	bbit1 debug_tx_pattern,prepare_tx_txpat
+prepare_tx_pollnull:
+	force type_poll,type				/* POLL for master */
+	rtn master
+	force type_null,type				/* default is NULL */
+	rtn
+prepare_tx_loopback:
+	set0 mark_ext_patch,mark
+	bpatch patch09_6,mem_patch09
+	fetch 1,mem_rx_type
+	iforce type
+	rtnne 1
+	force type_null,type
+	rtn
+prepare_tx_txpat:
+	fetch 1,test_mode_packet_type
+	and pdata,0xf,type
+	set1 mark_loopback,mark
+	rtn
+prepare_tx_sendlmp:
+	force type_lmp,type
+	branch set_wait_ack
+prepare_tx_sendl2cap:
+	call tx_l2cap_type
+
+set_wait_ack:
+	set0 mark_ext_patch,mark
+	bpatch patch09_7,mem_patch09
+	fetcht 1,mem_arq
+	set1 wack,temp
+	storet 1,mem_arq
+	deposit type
+	store 1,mem_last_type
+	setarg 0xffff
+	store 2,mem_retransmission_cnt
+	rtn
+
+tx_l2cap_type:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_0,mem_patch0a
+	fetch 1,mem_state_map
+	isolate1 smap_edr,pdata
+	fetch 2,mem_tx_len
+	branch tx_l2cap_type_edr,true
+	force type_dm1,type		/* DM1 */
+	sub pdata,17,null			
+	rtn positive
+	force type_dh1,type		/* DH1 */
+	sub pdata,27,null				
+	rtn positive
+	force type_dm3,type		/* DM3 */
+	sub pdata,121,null
+	rtn positive
+	force type_dh3,type		/* DH3 */
+	sub pdata,183,null
+	rtn positive	
+	force type_dm5,type		/* DM5 */
+	sub pdata,224,null
+	rtn positive
+	force type_dh5,type		/* DH5 */
+	rtn
+tx_l2cap_type_edr:
+	force type_dm1,type
+	sub pdata,17,null
+	rtn positive
+	force type_dh1,type		/*2-DH1*/
+	sub pdata,54,null
+	rtn positive
+	force type_dm3,type		/*2-DH3*/
+	arg 367,temp
+	isub temp,null
+	nrtn positive
+	force type_dm5,type		/*2-DH5*/
+	arg 679,temp
+	isub temp,null
+	nrtn positive
+	force type_dh5,type		/*3-DH5*/
+	rtn
+
+
+/******************************************/
+/***********  Receive Packet  *************/
+/******************************************/
+
+
+
+slave_receive_master_slot:
+	fetch 1,mem_state
+	bbit0 state_insniff,slave_receive_notsniff
+	fetch 2,mem_tsniff
+	branch slave_receive_notsniff,blank		/* role switch */
+	nbranch slave_receive_sniff,attempt
+slave_receive_notsniff:
+	call rf_setup_time_master_slot
+slave_receive_access:
+	add clke_bt,1,bt_clk
+slave_receive_sniff:
+	enable swfine
+	fetch 2,mem_rx_window
+	rshift pdata,pdata
+	arg param_pll_setup,temp
+	iadd temp,pdata
+	call ahead_window
+	call fetch_extm_bt_adr
+	force 0x03,freq_mode          /* connection hop */
+	call rx_radio_freq
+	call init_rx_packet_flags
+	call prep_crypt
+	set0 mark_ext_patch,mark
+	bpatch patch0a_1,mem_patch0a
+	fetch 2,mem_rx_window
+	rshift pdata,pdata
+	call ahead_window
+	call start_receiver
+	enable decode_fec0
+	fetch 2,mem_rx_window
+	arg param_clke_cal,temp
+	iadd temp,stop_watch
+	correlate null,timeout
+	copy clke,temp
+	storet 6,mem_sync_clke
+	disable decode_fec0
+	nrtn sync
+	arg param_clke_cal,clke_rt
+	copy bt_clk,clke_bt
+	branch lpm_adjust_clk,wake
+	rtn
+	
+
+slave_conn_recv_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_2,mem_patch0a
+	call slave_receive_master_slot
+	nbranch shutdown_radio,sync
+	call save_rssi
+	bmark0 mark_testmode,receive_packet
+	fetch 2,mem_tst_pktcnt_sync
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_sync
+receive_packet:
+	rshift bt_clk,temp
+	or temp,0x40,white_init
+receive_packet_whitened:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_3,mem_patch0a
+	enable enable_white
+	enable enable_hec
+	enable decode_fec1
+	parse demod,bucket,3  /* get am_addr */
+	rshift8 pwindow,pdata
+	store 1,mem_temp_am_addr
+	parse demod,bucket,4  /* get type */
+	inject bucket,7       /* align up to pwindow */
+	copy pwindow,pdata
+	store 1,mem_rx_type
+	parse demod,bucket,3  /* get arq */
+	rshift8 pwindow,pdata
+	store 1,mem_temp_arq
+	fetch 1,mem_rx_type
+	sub pdata,3,null
+	branch receive_packet_noedr,positive
+	beq 7,receive_packet_noedr		/* esco packet */
+	fetch 1,mem_state_map
+	isolate1 smap_edr,pdata
+	setflag true,PSK,radio_ctrl
+receive_packet_noedr:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_4,mem_patch0a
+	parse demod,bucket,8   /* cycle thru hec */
+	disable decode_fec1
+	disable enable_hec   /* at this moment, 1 seqn + 8 hec is in shift */
+	branch error_header,crc_failed  /* if hec error, nothing is valid */
+	bmark0 mark_testmode,receive_packet_amchk
+	fetch 2,mem_tst_pktcnt_hec
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_hec
+receive_packet_amchk:	
+	set0 mark_ext_patch,mark
+	bpatch patch0a_5,mem_patch0a
+	fetch 1,mem_temp_am_addr
+	compare 0,pdata,0x07           /* check for broadcast */
+	setflag true,mark_am_addr_broadcast,mark   /* received a broadcast message, can fire ar_addr if during unpark_req */
+	branch am_addr_ok,true
+	icompare 0x07,am_addr
+	branch am_addr_match,true
+	bmark0 mark_esco,end_of_packet
+	fetcht 1,mem_saved_amaddr
+	icompare 0x7,temp
+	nbranch end_of_packet,true
+	fetch 1,mem_arq    /* mem_arq + am_addr */
+	set0 arqnx,pdata
+	set1 flowx,pdata
+	store 1,mem_arq
+am_addr_match:
+	enable match
+am_addr_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_6,mem_patch0a
+	fetch 1,mem_rx_type
+	icopy type
+	bmark1 mark_am_addr_broadcast,arqn_bypass        /* arqn doesn't make sense */
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	set0 flow,pdata
+	isolate1 flow,temp
+	setflag true,flow,pdata
+	isolate1 arqn,temp
+	setflag true,arqn,pdata
+	store 1,mem_arq
+	isolate0 arqn,temp
+	branch arqn_bypass,true
+	call clear_got_tx
+arqn_bypass:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_7,mem_patch0a
+	arg 0,temp
+	call reserve_slot
+	and type,0xf,pdata
+	beq type_poll,process_poll
+	beq type_null,end_of_packet	/* null */
+	beq type_fhs,process_fhs
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	icompare 0x04,temp    /* bit 2 is seqn */
+	nbranch rx_type_dispatch,true   /* different then it's new */
+	bmark0 mark_am_addr_broadcast,failed_seqn         /* seqn failed, and not broadcast */
+	bbit0 bcast1,rx_type_dispatch           /* first broadcast never fail seqn */
+failed_seqn:
+	set1 mark_old_packet,mark
+rx_type_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_0,mem_patch0b
+	deposit type
+	beq type_dm1, process_dm1
+	beq type_dh1, process_dh1
+	beq type_hv3, process_hev
+	beq type_3dh1, process_3dh1
+	arg 4,temp
+	call reserve_slot
+	beq type_dm3, process_dm3
+	beq type_dh3, process_dh3
+	arg 8,temp
+	call reserve_slot
+	beq type_dm5, process_dm5
+	beq type_dh5, process_dh5
+	rtn
+
+
+process_hev:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_1,mem_patch0b
+	enable decode_fec0
+	enable enable_crc
+	enable encrypt
+	arg mem_sco_ibuf,contw
+	force 30,loopcnt
+process_hev_loop:	
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop process_hev_loop
+	bmark0 mark_esco,end_of_packet
+	parse demod,bucket,16  /* cycle through the crc */
+	nsetflag crc_failed,mark_esco_rxok,mark
+	branch error_payload,crc_failed
+	branch ack_payload
+
+
+process_poll:
+	branch end_of_packet
+
+process_dm3:
+process_dm5:
+	set1 mark_longpacket,mark
+process_dm1:
+	enable decode_fec2
+	branch process_dmh
+	
+process_dh3:
+process_dh5:
+	set1 mark_longpacket,mark
+process_3dh1:
+	set1 PSK3M,radio_ctrl
+process_dh1:
+	enable decode_fec0
+process_dmh:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_2,mem_patch0b
+	bmark1 mark_rxbuf_inuse,end_of_packet			/* buffer in use, nack */
+	isolate0 PSK,radio_ctrl
+	branch process_dmh_noedr,true
+	disable enable_white
+	enable decode_fec0
+	disable decode_fec2
+	add clkn_bt,2,timeup
+	correlate clkn_bt,meet
+	nbranch error_payload,sync
+	set1 mark_longpacket,mark
+	enable enable_white
+process_dmh_noedr:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_3,mem_patch0b
+	enable encrypt
+	enable enable_crc
+	parse demod,bucket,3  /* parse in lch+l2cap flow */
+	rshift8 pwindow,pdata
+	store 1,mem_lch_code		/* for loopback */
+	parse demod,bucket,5  /* parse in 5 bit packetlength */
+	bmark1 mark_longpacket,process_dmh_long
+	rshift3 pwindow,loopcnt
+	rshift3 loopcnt,loopcnt
+	branch process_dmh_common
+process_dmh_long:
+	parse demod,bucket,5		/* multi slot packet length of dh3 dh5 dm3 dm5 */
+	rshift pwindow,loopcnt
+	parse demod,bucket,3  /* undefined+bit 9 of length */
+process_dmh_common:	
+	set0 mark_ext_patch,mark
+	bpatch patch0b_4,mem_patch0b
+	deposit loopcnt
+	store 2,mem_len
+	branch process_dmh_data_end,blank
+	isub mask3ff,null
+	branch error_payload,positive	/* packet too large, discard */
+	set0 mark_ext_patch,mark
+	bpatch patch0b_5,mem_patch0b
+	set0 mark_fhs_eir,mark
+	fetch 1,mem_lch_code
+	and_into 0x03,pdata
+	arg mem_rxbuf,contw //lmp_data or test packet
+	beq LLID_LMP,process_lmp
+	bmark1 mark_testmode,process_dmh_data
+	//non-HCI mode
+	fetch 1,mem_lch_code
+	and_into 0x03,pdata
+	beq LLID_L2CAP_START,process_dmh_data_l2cap_start_pkt
+	beq LLID_L2CAP_CONT,process_dmh_data_l2cap_continue_pkt
+	branch error_payload
+
+process_lmp:
+	fetch 2,mem_len
+	sub pdata,0x70,null		//lmp buffer size
+	nbranch error_payload,positive
+	bmark1 mark_old_packet,ack_payload
+	branch process_dmh_data
+
+	
+process_dmh_data_l2cap_start_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_6,mem_patch0b
+	bmark1 mark_old_packet,ack_payload
+	fetch 2,mem_len
+	arg 0x2e0,temp //l2cap buffer size
+	isub temp,null
+	branch error_payload,positive
+	fetch 1,mem_l2cap_rxbuff_inuse
+	bbit0 L2CAP_INUSE_BUFF1,process_dmh_data_into_buff1
+	bbit0 L2CAP_INUSE_BUFF2,process_dmh_data_into_buff2
+	branch end_of_packet
+process_dmh_data_into_buff1:
+	jam 1,mem_l2cap_rxbuff_new //new data in buff 1
+	fetch 2,mem_l2cap_rxbuff1_len
+	bne 0,end_of_packet			//baseband head error
+	arg mem_l2cap_rxbuff1,contw
+	branch process_dmh_data
+process_dmh_data_into_buff2:
+	jam 2,mem_l2cap_rxbuff_new //new data in buff 2
+	fetch 2,mem_l2cap_rxbuff2_len
+	bne 0,end_of_packet
+	arg mem_l2cap_rxbuff2,contw
+	branch process_dmh_data
+	
+process_dmh_data_l2cap_continue_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_7,mem_patch0b
+	bmark1 mark_old_packet,ack_payload
+	fetch 2,mem_len
+	arg 0x2e0,temp //l2cap buffer size
+	isub temp,null
+	branch error_payload,positive
+	fetch 1,mem_l2cap_rxbuff_new
+	beq 1,process_dmh_data_l2cap_continue_pkt1
+	beq 2,process_dmh_data_l2cap_continue_pkt2
+	branch end_of_packet
+process_dmh_data_l2cap_continue_pkt1:
+	arg mem_l2cap_rxbuff1,contw
+	fetch 2,mem_l2cap_rxbuff1_len
+	iadd contw,contw
+	branch process_dmh_data
+process_dmh_data_l2cap_continue_pkt2:
+	arg mem_l2cap_rxbuff2,contw
+	fetch 2,mem_l2cap_rxbuff2_len
+	iadd contw,contw
+process_dmh_data:	
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop process_dmh_data
+process_dmh_data_end:	
+	set0 mark_ext_patch,mark
+	bpatch patch0c_0,mem_patch0c
+	parse demod,bucket,16  /* cycle through the crc */
+	branch error_payload_crc,crc_failed
+	fetch 1,mem_l2cap_flow_ctrl_flag
+	beq L2CAP_FLOW_CTRL_ENABLE,end_of_packet
+	bmark1 mark_testmode,process_dmh_cont
+	bmark1 mark_old_packet,redundant_payload
+	fetch 1,mem_lch_code
+	compare 3,pdata,3
+	branch process_dmh_cont,true
+	fetch 2,mem_len
+	branch process_dmh_cont,blank
+	set0 mark_ext_patch,mark
+	bpatch patch0c_1,mem_patch0c
+	fetch 1,mem_l2cap_rxbuff_new
+	beq 1,process_l2cap_pass_crc_buff1
+	beq 2,process_l2cap_pass_crc_buff2
+	branch assert
+process_l2cap_pass_crc_buff1:
+	fetch 2,mem_l2cap_rxbuff1_len
+	fetcht 2,mem_len
+	iadd temp,pdata
+	store 2,mem_l2cap_rxbuff1_len
+	beq 0,assert
+	fetcht 2,mem_l2cap_rxbuff1// l2cap payload length
+	increase 4,temp
+	isub temp,null
+	call l2cap_buff1_inuse,zero //l2cap pkts not ended
+	branch process_dmh_cont
+process_l2cap_pass_crc_buff2:
+	fetch 2,mem_l2cap_rxbuff2_len
+	fetcht 2,mem_len
+	iadd temp,pdata
+	store 2,mem_l2cap_rxbuff2_len
+	beq 0,assert
+	fetcht 2,mem_l2cap_rxbuff2// l2cap payload length 
+	add temp,4,temp
+	isub temp,null
+	call l2cap_buff2_inuse,zero //l2cap pkts not ended
+	branch process_dmh_cont
+process_dmh_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_2,mem_patch0c
+	fetcht 1,mem_state_map
+	fetch 1,mem_lch_code
+	compare 3,pdata,0x03
+	setflag true,smap_rxlmp,temp
+	nsetflag true,smap_rxl2cap,temp
+	storet 1,mem_state_map
+	nbranch process_dmh_cont_rxbuf_not_use,true
+	set1 mark_rxbuf_inuse,mark
+process_dmh_cont_rxbuf_not_use:
+	bmark0 mark_testmode,ack_payload
+	isolate1 smap_rxlmp,temp
+	branch ack_payload,true
+	fetch 2,mem_tst_pktcnt_crc
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_crc
+	set1 mark_loopback,mark
+	set0 smap_rxl2cap,temp
+	set0 mark_rxbuf_inuse,mark
+	storet 1,mem_state_map
+ack_payload:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_3,mem_patch0c
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	set1 arqnx,pdata
+	isolate1 seqn,temp            /* if accept, seqn always copies from the header */
+	setflag true,seqn,pdata
+	isolate1 mark_am_addr_broadcast,mark
+	setflag true,bcast1,pdata
+	store 1,mem_arq
+	fetch 2,mem_len
+	nbranch end_of_packet,blank
+	fetch 1,mem_state_map
+	set0 smap_rxl2cap,pdata//better to do this in l2cap_flow_ctrl_stop
+	store 1,mem_state_map
+	fetch 1,mem_lch_code
+	compare 0x01,pdata,0x07
+	//call l2cap_flow_ctrl_stop,true
+	branch end_of_packet
+	
+error_header:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_4,mem_patch0c
+	disable match
+	fetch 2,mem_rx_hec_err
+	increase 1,pdata
+	store 2,mem_rx_hec_err
+	branch end_of_packet
+error_payload_crc:
+	fetch 2,mem_rx_crc_err
+	increase 1,pdata
+	store 2,mem_rx_crc_err
+	call discard_pkt
+	bmark0 mark_testmode,error_payload
+	set1 mark_loopback,mark
+error_payload:
+	branch end_of_packet
+	
+discard_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_5,mem_patch0c
+	fetch 1,mem_lch_code
+	compare 3,pdata,0x03
+	nbranch discard_pkt_l2cap,true
+discard_pkt_lmp:	
+	fetcht 1,mem_state_map
+	set0 smap_rxlmp,temp
+	storet 1,mem_state_map
+	rtn
+discard_pkt_l2cap:
+//	isolate1 mark_testmode,mark
+//	setflag true,mark_loopback,mark
+	fetcht 1,mem_state_map
+	set0 smap_rxl2cap,temp
+	storet 1,mem_state_map
+	branch  h4_send_acl_trigger_clear
+
+redundant_payload:
+	fetch 1,mem_arq
+	set1 arqnx,pdata
+	store 1,mem_arq
+end_of_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_6,mem_patch0c
+	disable encode_fec0
+	disable encode_fec2
+	disable decode_fec0
+	disable decode_fec2
+	disable enable_crc
+	disable encrypt
+	disable enable_white
+	branch shutdown_radio,is_rx
+	until null,tx_clear
+	nop 100          /* flush out the last bit */
+	branch shutdown_radio
+	
+process_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_7,mem_patch0c
+	enable enable_crc
+	enable decode_fec2
+	parse demod,bucket,72
+	isolate1 58,pdata
+	setflag true,mark_fhs_eir,mark
+	copy bt_adr,temp             /* save current address to aside */
+	ialigned bt_adr            /* send it to access gen */
+	ialigned fhs0			/* get fhs_misc */
+	pulse recalc                /* calc the lap just received from the other guy */
+	setsect 2,0xfffff             /* preset ms of shift reg as big mask */
+	setsect 3,0x0ffff             /* preset ms of shift reg as big mask */
+	nop 32                       /* 30 cycles after recalc */
+	iverify fhs_parity             /* check fhs_parity against ls 34 bits at shift reg, with msb 36 bits as mask */
+	deposit lap
+	store 3,extm_lap
+	deposit uap
+	store 1,extm_uap
+	copy temp,bt_adr             /* put the address back */
+	branch fhs_parity_ok,true     /* fhs parity failed */
+	branch error_payload
+fhs_parity_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_0,mem_patch0d
+	parse demod,bucket,72
+	ialigned fhs1                   /* give host the information on class and fhs_misc */
+	ialigned am_addr                /* store the am_addr the master assigned us */
+	ialigned nap
+	ialigned regb                   /* store external clock in regb according to clock format */
+	force 0,pdata
+	parse demod,bucket,16  /* cycle through the crc */
+	branch error_payload,crc_failed
+	setarg 0x0ffffffc
+	iand regb,pdata
+	store 4,mem_clke_bt
+	deposit fhs_class
+	store 3,extm_class
+	deposit fhs_misc
+	store 1,extm_fhs_misc
+	deposit am_addr
+	store 1,extm_newconn_am_addr
+	deposit nap
+	store 2,extm_nap
+	deposit bt_clk
+	inject rxf,32
+	compare type_fhs,type,0x0f         /* see if this was fhs packet */
+	setflag true,mark_fhs_already_good,mark
+	branch end_of_packet
+
+clear_got_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_1,mem_patch0d
+	fetch 1,mem_arq
+	rtnbit0 wack
+	set0 wack,pdata
+	setflip seqnx,pdata
+	store 1,mem_arq
+	fetch 1,mem_last_type
+	beq type_lmp,clear_got_txlmp
+	rtneq type_hv3
+	fetch 1,mem_op
+	rtnbit0 op_txl2cap,pdata
+	set0 op_txl2cap,pdata
+	set1 op_pkt_comp,pdata
+	store 1,mem_op
+	set0 mark_tx_l2cap,mark
+	fetch 2,mem_l2cap_tx_multi_offset
+	nrtn blank
+	fetch 1,mem_op
+	set0 op_pkt_comp,pdata
+	store 1,mem_op
+	branch l2cap_malloc_free
+
+clear_got_txlmp:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_2,mem_patch0d
+	fetch 1,mem_lmo_header_opcode
+	rshift pdata,pdata
+	beq LMP_START_ENCRYPTION_REQ,start_encryption
+	beq LMP_STOP_ENCRYPTION_REQ,stop_encryption
+	beq LMP_UNSNIFF_REQ, sniff_exit
+	beq LMP_ESCAPE,clear_lmp_escape
+	rtnne LMP_ACCEPTED
+	fetch 1,mem_lmo_payload
+	beq LMP_SCO_LINK_REQ,sco_link_req_by_slave
+	beq LMP_START_ENCRYPTION_REQ,clear_send_setup_complete
+	rtn
+
+clear_lmp_escape:
+	fetch 1,mem_lmo_payload
+	set1 7,pdata
+	rtn
+clear_send_setup_complete:
+	rtn master
+	fetch 1,mem_state
+	rtnbit1 state_conn_comp
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn
+	
+// nokia BH-105  CALLING when reconnection
+sco_link_req_by_slave:
+	rtn master
+	fetch 1,mem_mode
+	isolate1 send_sco_when_slave,pdata
+	branch clean_mem_mode,true
+	//jam LMP_REMOVE_SCO_LINK_REQ,mem_lmo_opcode2
+	rtn
+clean_mem_mode:
+	set0 send_sco_when_slave,pdata
+	store 1,mem_mode
+	rtn
+	
+start_encryption:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_3,mem_patch0d
+	fetch 1,mem_state_map
+	set1 smap_encryption,pdata
+	store 1,mem_state_map
+	hjam 1,core_encrypt
+	fetch 1,mem_state
+	isolate1 state_conn_comp,pdata
+	rtn
+
+stop_encryption:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_4,mem_patch0d
+	fetch 1,mem_state_map
+	set0 smap_encryption,pdata
+	store 1,mem_state_map
+	hjam 0,core_encrypt
+	rtn
+
+
+sniff_init:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_5,mem_patch0d
+	copy clkn_bt,pdata
+	store 4,mem_lpm_delay_after_sniff
+	add clkn_bt,3,rega
+	branch sniff_init_master,master
+	add clke_bt,3,rega
+sniff_init_master:
+	fetcht 2,mem_tsniff
+	deposit rega
+	set0 27,pdata
+	idiv temp
+	fetch 2,mem_dsniff
+	call wait_div_end
+	remainder regc
+	isub regc,pdata
+	branch sniff_init_nowrap,positive
+	iadd temp,pdata
+sniff_init_nowrap:
+	iadd rega,pdata
+	store 4,mem_sniff_anchor
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	fetch 1,mem_state
+	set1 state_insniff,pdata
+	store 1,mem_state
+	fetch 1,mem_sniff_attempt
+	store 1,mem_current_sniff_attempt
+	setarg 0
+	store 3,mem_sniff_rcv
+	store 3,mem_sniff_lost
+	store 1,mem_sniff_unint_lost
+	jam BT_EVT_ENTER_SNIFF,mem_fifo_temp
+	call ui_ipc_send_event
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_rx_window
+	nrtn master
+	add am_addr,-1,queue
+	rtn
+
+sniff_exit:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_6,mem_patch0d
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	set0 state_insniff,pdata
+	store 1,mem_state
+	fetch 2,mem_rx_window_init
+	store 2,mem_rx_window
+	disable wake
+	jam BT_EVT_EXIT_SNIFF,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+check_attempt:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_7,mem_patch0d
+	enable attempt
+	fetch 1,mem_state
+	bbit1 state_insniff,check_attempt_sniff
+	rtnmark1 mark_testmode						/* pdata won't be blank now, try attempt */
+	fetch 1,mem_arq
+	rtnbit1 wack
+	fetch 1,mem_lmp_to_send
+	nrtn blank
+	fetch 1,mem_op
+	rtnbit1 op_txl2cap
+check_attempt_nomore:
+	force 0,pdata
+	rtn
+
+check_attempt_sniff:
+	bbit0 state_insco,check_attempt_not_sco
+	fetch 1,mem_current_sniff_attempt
+	beq 2,check_attempt_sniff_restore_sco
+	fetch 1,mem_arq
+	bbit1 wack,check_attempt_notimeout
+	bmark0 mark_esco_rxok,check_attempt_notimeout
+check_attempt_sniff_restore_sco:
+	nbranch check_attempt_notimeout,master
+	fetch 1,mem_lmp_to_send
+	nbranch check_attempt_notimeout,blank
+check_attempt_sco_master:
+	fetch 1,mem_sco_poll
+	increase -1,pdata
+	store 1,mem_sco_poll
+	nbranch check_attempt_nomore,blank
+	jam param_sco_poll,mem_sco_poll
+	branch check_attempt_notimeout
+	
+check_attempt_not_sco:
+	fetch 1,mem_current_sniff_attempt
+	bne 1,check_attempt_notimeout
+	fetch 1,mem_current_sniff_timeout
+	branch check_attempt_notimeout,blank
+	increase -1,pdata
+	store 1,mem_current_sniff_timeout
+	fetch 1,mem_arq
+	rtnbit1 wack						// waiting for next ack
+	nrtn match						// waiting for next poll
+check_attempt_notimeout:
+	fetch 1,mem_current_sniff_attempt
+	increase -1,pdata
+	store 1,mem_current_sniff_attempt
+	rtn
+
+	/* enable user if sniff window vialation, queue is extra overhead */
+sniff_check_window:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_0,mem_patch0e
+	disable swfine
+	copy temp,stop_watch
+	call context_search_sniff_window
+	disable user
+	nrtn zero
+	force 0,stop_watch
+	enable user
+	rtn
+
+	//return true if it is esco context
+check_esco_amaddr:
+	fetch 1,mem_esco_addr
+	icompare 0xff,am_addr
+	rtn
+	
+
+parse_l2cap:	
+	set0 mark_ext_patch,mark
+	bpatch patch0e_1,mem_patch0e
+	set0 mark_rxbuf_inuse,mark 
+parse_l2cap_cont:
+	jam L2CAP_RX_CLEAR,mem_l2cap_rx_done
+	fetch 1,mem_l2cap_rxbuff_inuse
+	rtn blank
+	isolate1 L2CAP_INUSE_BUFF1,pdata
+	arg mem_l2cap_rxbuff1,contr
+	call process_rx_l2cap_pkt,true
+	set0 mark_ext_patch,mark
+	bpatch patch0e_2,mem_patch0e
+	fetch 1,mem_l2cap_rx_done
+	beq L2CAP_RX_DONE,parse_l2cap_release_buff1
+	
+	jam L2CAP_RX_CLEAR,mem_l2cap_rx_done
+	fetch 1,mem_l2cap_rxbuff_inuse
+	rtnbit0 L2CAP_INUSE_BUFF2
+	arg mem_l2cap_rxbuff2,contr	
+	call process_rx_l2cap_pkt
+	fetch 1,mem_l2cap_rx_done
+	beq L2CAP_RX_DONE,parse_l2cap_release_buff2
+	rtn
+		
+parse_l2cap_release_buff1:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set0 L2CAP_INUSE_BUFF1,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	setarg 0
+	store 2,mem_l2cap_rxbuff1_len
+	rtn
+parse_l2cap_release_buff2:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set0 L2CAP_INUSE_BUFF2,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	setarg 0
+	store 2,mem_l2cap_rxbuff2_len
+	rtn
+
+l2cap_buff1_inuse:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set1 L2CAP_INUSE_BUFF1,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	rtn
+
+l2cap_buff2_inuse:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set1 L2CAP_INUSE_BUFF2,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	rtn
+
+/******************************************/
+/**********  Transmit Packet  *************/
+/******************************************/
+
+slave_send_access:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_3,mem_patch0e
+	add clke_bt,1,bt_clk          /* slave start to use native clock */
+	call fetch_extm_bt_adr
+	force 0x03,freq_mode          /* connection frequency */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	branch send_access_word
+	
+
+slave_conn_send_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_4,mem_patch0e
+	call rf_setup_time_slave_slot
+	deposit clke_bt
+	fetcht 4,mem_next_btclk
+	isub temp,pdata
+	rtnne 1					/* missed slave slot */
+	compare type_null,type,0x1f
+	nbranch slave_conn_send_access,true
+	fetch 1,mem_rx_type
+	rtn blank					/* null packet, do nothing */
+slave_conn_send_access:
+	call slave_send_access
+	compare type_id,type,0x1f        /* is this id only ? */
+	branch end_of_packet,true
+transmit_packet:
+	rshift bt_clk,temp
+	or temp,0x40,white_init
+transmit_packet_whitened:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_5,mem_patch0e
+	enable enable_white
+	enable enable_hec
+	enable encode_fec1
+	set0 mark_longpacket,mark
+	deposit am_addr
+	inject mod,3             /* am_addr, temp is disabled */
+	deposit type
+	inject mod,4
+	fetch 1,mem_arq   /* aka mem_arq */
+	inject bucket,4  /* align up to flowx, arqnx, seqnx */
+	inject mod,3
+	enable enable_parity
+	inject mod,8   /* transmit parity */
+	disable encode_fec1
+	disable enable_parity
+	disable enable_hec
+	set0 PSK3M,radio_ctrl
+	arg 0,temp
+	call reserve_slot
+	set0 mark_ext_patch,mark
+	bpatch patch0e_6,mem_patch0e
+	and type,0x1f,pdata
+	beq type_lmp, transmit_lmp
+	beq type_null, end_of_packet
+	beq type_poll, end_of_packet
+	beq type_fhs, transmit_fhs  /* master mode fhs need got_tx and ack */
+	beq type_dm1, transmit_dm1
+	beq type_dh1, transmit_dh1
+	beq type_hv3, transmit_hev
+	beq type_3dh1, transmit_3dh1
+	arg 4,temp
+	call reserve_slot
+	beq type_dm3, transmit_dm3
+	beq type_dh3, transmit_dh3
+	arg 8,temp
+	call reserve_slot
+	beq type_dh5, transmit_dh5
+	branch transmit_dm5	/* must be 14, dm5 */
+
+
+transmit_hev:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_7,mem_patch0e
+	enable encode_fec0
+	enable enable_crc
+	enable encrypt
+	force 30,loopcnt
+	arg mem_sco_obuf,contr
+transmit_ev_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop transmit_ev_loop
+	bmark1 mark_esco,transmit_end
+	branch end_of_packet
+	
+transmit_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_0,mem_patch0f
+	fetch 1,mem_fhs_am_addr            /* this is the am_addr to assign to slave */
+	icopy am_addr
+	fetch 1,mem_fhs_misc
+	icopy fhs_misc    /* [7:6]SR [5:4]SP [3:1]PS [0]undef  */
+	fetch 3,mem_class   /* store away class */
+	icopy fhs_class
+	fetch 2,mem_nap
+	icopy nap
+	enable enable_crc
+	enable encode_fec2
+	copy bt_adr,rega
+	call fetch_self_bt_adr
+	pulse recalc
+	nop 32                    /* 30 cycles after recalc for sync word generation */
+	copy bt_clk,timeup
+	fetch 4,mem_clkn_bt
+	icopy bt_clk
+	preload fhs0
+	set1 58,pdata		/* eir */
+	inject mod,72
+	preload fhs1
+	inject mod,72
+	copy timeup,bt_clk
+	copy rega,bt_adr
+	enable enable_parity
+	inject mod,16   /* generate CRC */
+	disable enable_parity
+	branch end_of_packet
+
+transmit_lmp:    /* expect the payload ready as in bb spec */
+	set0 mark_ext_patch,mark
+	bpatch patch0f_1,mem_patch0f
+	enable encrypt
+	enable enable_crc
+	enable encode_fec2
+	fetch 1,mem_lmo_header_length   /* this is the payload header */
+	and pdata,0x1f8,temp       /* temp is number of bits, check payload header format */
+	arg mem_lmo_header_length,contr
+	increase 8,temp   /* temp is in bits */
+transmit_lmp_loop:
+	add temp,-72,regc   /* regc is remainder */
+	nbranch transmit_lmp_finish,positive
+	ifetch 9,contr
+	inject mod,72
+	copy regc,temp
+	branch transmit_lmp_loop
+transmit_lmp_finish:
+	ifetch 9,contr
+	iinject mod,temp
+	branch transmit_end
+
+transmit_dm1:
+	enable encode_fec2
+	branch transmit_dmh
+transmit_dm3:
+transmit_dm5:
+	enable encode_fec2
+	set1 mark_longpacket,mark
+	branch transmit_dmh
+
+transmit_3dh1:
+	set1 PSK3M,radio_ctrl
+transmit_dh1:
+	enable encode_fec0
+	branch transmit_dmh
+	
+transmit_dh3:
+transmit_dh5:
+	set1 PSK3M,radio_ctrl
+	enable encode_fec0
+	set1 mark_longpacket,mark
+
+transmit_dmh:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_2,mem_patch0f
+	fetch 1,mem_state_map
+	bbit0 smap_edr,transmit_noedr
+	sub type,3,null
+	branch transmit_noedr,positive
+	disable encrypt
+	disable encode_fec2
+	enable encode_fec0
+	disable enable_white
+	set1 PSK,radio_ctrl
+	isolate1 PSK3M,radio_ctrl
+	branch transmit_edr3m,true
+	setarg 0xabeee
+	inject mod,20
+	branch transmit_edr_sync_end
+transmit_edr3m:
+	setarg 0x5faeba
+	inject mod,24
+	setarg 0x12
+	inject mod,6
+transmit_edr_sync_end:	
+	enable enable_white
+	set1 mark_longpacket,mark
+transmit_noedr:
+	enable encrypt
+	enable enable_crc
+	bmark1 mark_loopback,transmit_loopback
+	fetch 1,mem_tx_lch
+	inject mod,3
+	fetch 2,mem_tx_len
+	iforce loopcnt
+	bmark1 mark_longpacket,transmit_long
+	inject mod,5
+	branch transmit_stuff
+transmit_long:	
+	inject mod,13
+transmit_stuff:
+	deposit loopcnt
+	branch transmit_end,blank
+	fetch 2,mem_txptr
+	iforce contr
+transmit_stuff_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop transmit_stuff_loop
+//	branch transmit_end
+
+transmit_end:
+	enable enable_parity
+	inject mod,16
+	disable enable_parity
+	call set_wait_ack
+	fetch 1,mem_state_map
+	bbit0 smap_edr,end_of_packet
+	force 0,pdata
+	inject mod,6				/* edr trailer */
+	branch end_of_packet
+
+
+transmit_loopback:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_3,mem_patch0f
+	bmark1 mark_longpacket,transmit_loopback_long
+transmit_loopback_short:
+	fetch 1,mem_lch_code
+	inject mod,3						/* LLID and FLOW */
+	fetch 1,mem_len	/* take packet length */
+	iforce regc
+	inject mod,5
+	branch transmit_loopback_cont
+transmit_loopback_long:
+	fetch 1,mem_lch_code
+	inject mod,3						/* LLID and FLOW */
+	fetch 2,mem_len	/* take packet length */
+	iforce regc
+	inject mod,13
+transmit_loopback_cont:
+	arg mem_rxbuf,contr
+transmit_loopback_loop:	
+	copy regc,null
+	branch transmit_loopback_end,zero
+	ifetch 1,contr
+	inject mod,8
+	increase -1,regc
+	branch transmit_loopback_loop
+transmit_loopback_end:
+	fetch 2,mem_tst_pktcnt_dmh
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_dmh
+	branch transmit_end
+	
+
+apply_switch_clke:
+	fetch 4,mem_clke_bt
+	add pdata,7,rega
+	fetch 2,mem_slot_offset
+	nbranch apply_switch_nozero,blank
+	increase -3,rega
+	branch apply_switch_wait_loop
+apply_switch_nozero:
+	mul32 pdata,12,pdata
+	hfetcht 2,core_halfslot
+	increase 1,temp
+apply_switch_loop:
+	isub temp,pdata
+	nbranch apply_switch_bt,positive
+	increase -1,rega
+	branch apply_switch_loop
+apply_switch_bt:
+	sub pdata,0,pdata
+apply_switch_wait_loop:
+	until null,oneslot
+	compare 0,clkn_bt,3
+	nbranch apply_switch_wait_loop,true
+	iforce clke_rt
+	copy rega,clke_bt
+	iforce clke_rt
+	rtn
+	
+
+calc_slot_offset:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_4,mem_patch0f
+	until null,halfslot
+	deposit clke
+	iforce contr
+	rshift16,pdata,pdata
+	isub clkn_bt,loopcnt
+	and_into 3,loopcnt			/* bt portion */
+	nbranch calc_bt_portion,zero
+	force 0,pdata
+	branch calc_skip_bt
+calc_bt_portion:
+	arg 3750,temp
+	force 0,pdata
+calc_slot_offset_loop:
+	iadd temp,pdata
+	loop calc_slot_offset_loop
+calc_skip_bt:
+	iadd contr,pdata			/* add rt portion */
+	div pdata,12
+	call wait_div_end
+	quotient pdata
+	store 2,mem_slot_offset
+	rtn
+
+calc_clke_offset:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_5,mem_patch0f
+	deposit clke
+	copy clkn,temp
+	isub temp,null
+	nsetflag positive,44,pdata
+	isub temp,temp
+	setarg 3750
+	isolate0 15,temp
+	branch calc_clke_pos,true
+	setarg -61786
+	iadd temp,temp
+calc_clke_pos:
+	storet 6,mem_le_clk_offset
+	rtn le
+	storet 6,mem_clk_offset
+	rtn
+
+calc_clke:
+	disable clknt
+	fetch 6,mem_le_clk_offset
+	branch calc_clke2,le
+	fetch 6,mem_clk_offset
+calc_clke2:
+	iadd clkn,alarm
+	increase 10,alarm
+	setarg 3750
+	isub alarm,pdata
+	isolate0 15,pdata
+	branch calc_clke_pos_adj,true
+	setarg 0xf15a
+	iadd alarm,alarm
+calc_clke_pos2:
+	copy alarm,clke
+	rtn
+calc_clke_pos_adj:		/* add 2 clock */
+	force 0,null
+	branch calc_clke_pos2
+	
+/******************************************/
+/********* RF related functions ***********/
+/******************************************/
+
+
+calc_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_6,mem_patch0f
+	call set_sync_on
+	copy bt_clk,pdata
+	and_into 0x180,pdata
+	compare 3,freq_mode,0x07
+	nbranch freq_not_connection,true    /* don't do the hack if not in connection */
+	rshift3 pdata,pdata
+	iadd freq_index,pdata
+	branch do_hop_mod_now
+freq_not_connection:	
+	copy freq_index,pdata
+do_hop_mod_now:
+	div pdata,79
+	pulse recalc         /* now is good time to recalc id */
+	call wait_div_end
+	remainder rega
+	add rega,-40,temp
+	branch odd_half,positive
+	lshift rega,temp
+	branch freq_result
+odd_half:
+	lshift temp,temp
+	increase 1,temp
+freq_result:	
+	set0 mark_ext_patch,mark
+	bpatch patch0f_7,mem_patch0f
+	fetch 1,mem_mode
+	bbit0 afh_change,afh_process_con
+afh_process_0:	
+	fetch 4, mem_afh_instant   
+	isub bt_clk, null
+	branch afh_process_con,positive
+	call afh_clear
+	fetch 1,mem_afh_new_mod
+	rtn blank
+	fetch 1,mem_mode
+	set1 afh_enable,pdata
+	store 1,mem_mode
+	fetch 5,mem_afh_map_new
+	store 5,mem_afh_map_lo
+	ifetch 5,contr
+	store 5,mem_afh_map_hi
+	call afh_process_freq_map
+afh_process_con:
+	fetch 1,mem_mode
+	rtnbit0 afh_enable
+	isolate1 1,bt_clk
+	branch afh_same_channel,true	/* at odd slot, use the same as last even */
+	rshift3 temp,rega
+	and temp,7,queue
+	setarg mem_afh_map_lo  
+	iadd rega, rega
+	ifetch 1, rega
+	qisolate0 pdata
+	branch afh_process_1,true		/* not in map, do afh */
+	deposit temp
+	branch afh_process_end
+afh_process_1:
+	fetch 1, mem_afh_used
+	iforce regb                     
+	deposit bt_clk
+	and_into 0x180, pdata
+	rshift3 pdata,pdata
+	iadd freq_index,pdata
+	idiv regb
+	setarg mem_afh_map     
+	call wait_div_end
+	remainder rega
+	iadd rega,contr
+	ifetch 1,contr
+afh_process_end:	
+	store 1,mem_afh_index
+	iforce temp  
+  	rtn
+
+afh_same_channel:
+	fetch 1, mem_afh_index           /* last afh index  */
+	iforce temp
+	rtn
+
+afh_clear:
+	fetch 1,mem_mode
+	set0 afh_enable,pdata
+	set0 afh_change,pdata
+	store 1,mem_mode
+	rtn
+/*
+fixed_frequency:
+	fetcht 1,mem_fixed_freq
+	rtn
+*/
+afh_process_freq_map:
+	set0 mark_ext_patch,mark
+	bpatch patch10_0,mem_patch10
+	arg mem_afh_map,contw
+	force 10,loopcnt
+	call memset0
+	arg mem_afh_map,contw
+	force 0,regC
+	force 2,queue
+process_freq_3:	
+	fetch 5,mem_afh_map_lo
+	iforce temp
+	compare 2,queue,0xff
+	branch process_freq_1,true
+	rshift temp,temp
+process_freq_1:	
+	isolate0 0,temp
+	branch process_freq_0,true
+	deposit regC
+	istore 1,contw
+process_freq_0:
+	rshift2 temp,temp
+	increase 2,regC
+	compare 40,regC,0xfe
+	nbranch process_freq_2,true
+	fetch 5,mem_afh_map_hi
+	iforce temp
+	compare 2,queue,0xff
+	branch process_freq_2,true
+	rshift temp,temp
+process_freq_2:	
+	sub regC,78,null
+	branch process_freq_1,positive
+	force 1,regC
+	increase -1,queue
+	nbranch process_freq_3,zero
+	arg mem_afh_map,rega
+	deposit contw
+	isub rega,pdata
+	store 1,mem_afh_used
+	rtn
+
+rx_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch10_1,mem_patch10
+	call calc_radio_freq
+	fetch 1,mem_debug_config
+	bbit0 debug_rx_fixed_freq,rx_radio_freq_now
+	fetcht 1,mem_rx_fixed_freq
+rx_radio_freq_now:
+	branch set_freq_rx
+	
+
+tx_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch10_2,mem_patch10
+	call calc_radio_freq
+	fetch 1,mem_debug_config
+	bbit0 debug_tx_fixed_freq,tx_radio_freq_now
+	fetcht 1,mem_tx_fixed_freq
+tx_radio_freq_now:
+	branch set_freq_tx
+	
+
+fetch_giac:
+	force 0,uap
+	fetch 3,mem_glap
+	iforce lap
+	rtn
+
+fetch_page_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch10_3,mem_patch10
+	fetch 1,mem_hci_puap
+	icopy uap
+	fetch 3,mem_hci_plap
+	icopy lap
+	rtn
+
+fetch_self_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch10_4,mem_patch10
+	fetch 2,mem_nap
+	icopy nap
+	fetch 1,mem_uap
+	icopy uap
+	fetch 3,mem_lap
+	icopy lap                 /* copy self_adr,bt_adr */      /* use own address */
+	rtn
+
+fetch_extm_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch10_5,mem_patch10
+	fetch 2,mem_pnap
+	icopy nap
+	fetch 1,mem_puap
+	icopy uap
+	fetch 3,mem_plap
+	icopy lap         
+	rtn
+
+
+fetch_diac:
+	bmark1 mark_all_diac,fetch_diac_do
+	rtnmark0 mark_inquiry_state
+	rtnmark0 mark_periodical_diac
+fetch_diac_do:
+	and_into -256,lap
+	pulse recalc
+	nop 32
+	rtn
+
+
+shutdown_radio:
+	set0 mark_ext_patch,mark
+	bpatch patch10_6,mem_patch10
+	branch shutdown_radio0,is_rx
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4	
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,shutdown_radio_0db
+	bbit1 TX_POWER_3DB,shutdown_radio_3db
+	bbit1 TX_POWER_5DB,shutdown_radio_5db
+	bbit1 TX_POWER_f3DB,shutdown_radio_f3db
+	bbit1 TX_POWER_f5DB,shutdown_radio_f5db
+shutdown_radio_5db:	
+shutdown_radio_0db:
+	hjam 0xd0, 0x955
+	hjam 0xe0, 0x956
+shutdown_radio0:
+ifdef FPGA
+ifndef ROMCODE
+	setarg 0x003f
+	call fpga_write_radio
+	setarg 0x017f
+	call fpga_write_radio
+endif
+endif
+	force 0,radio_ctrl
+	disable is_rx
+	disable is_tx
+	pulse packet_end
+	hjam 0x0,rfen_mdm
+	hjam 0x0,rfen_tx
+	hjam 0x0,rfen_rx
+	hjam 0,rfen_sn
+	hjam 0x70,rfen_msc
+	hjam 0x0,rfen_adc
+	rtn	
+
+shutdown_radio_f5db:
+shutdown_radio_f3db:
+shutdown_radio_3db:
+	hjam 0xd0,0x955
+	hjam 0xc0,0x956
+	branch shutdown_radio0
+
+set_sync_on:
+	set0 mark_ext_patch,mark
+	bpatch patch10_7,mem_patch10
+ifdef FPGA
+ifndef ROMCODE
+	setarg 0x000f
+	call fpga_write_radio
+	setarg 0x016f
+	call fpga_write_radio
+endif
+endif
+	hjam 0x0,rfen_mdm					/* if called from tx or rx */
+	hjam 0x0,rfen_tx
+	hjam 0x18,rfen_rx
+	hjam 0xa7,rfen_sn
+	hjam 0x7f,rfen_msc
+	rtn
+
+set_freq_rx:
+	set0 mark_ext_patch,mark
+	bpatch patch11_0,mem_patch11
+		/* IF is +2MHz */
+	storet 1,mem_last_freq
+	add temp,rx_freq_offset,rega			/* index to frequency */
+	hjam 0x07,0x96d                                         /*Max added, for best sensitivity*/
+	branch rf_write_freq
+rf_rx_enable:
+	set0 mark_ext_patch,mark
+	bpatch patch11_1,mem_patch11
+ifdef FPGA
+ifndef ROMCODE
+	setarg 0x0004
+	call fpga_write_radio
+	setarg 0x016f
+	call fpga_write_radio
+endif
+endif
+	hjam 0xcf,rfen_tx
+	nop 10					/* wait adc clk48 ready */
+	hjam 0xff,rfen_rx
+	hjam 0xaf,rfen_sn
+	hjam 0xff,rfen_msc
+	nop 10
+	hjam 0xa0,rfen_mdm
+	rtn
+
+
+set_freq_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch11_2,mem_patch11
+	storet 1,mem_last_freq
+	add temp,0,rega			// bt 2M Medium Frequency
+	call rf_write_freq
+	setarg param_pll_setup
+	call sleep
+txon:	
+ifdef FPGA
+ifndef ROMCODE
+	setarg 0x000f
+	call fpga_write_radio
+	setarg 0x01e1
+	call fpga_write_radio
+	hjam 0x0, 0x901
+endif
+endif
+	hjam 0x1,rfen_adc
+	hjam 0x3c,rfen_rx
+	hjam 0xe0,rfen_tx
+	hjam 0x12,0x96d
+	nop 10
+	hjam 0x01,rfen_mdm
+	hjam 0x3d,rfen_mdm
+	nop 10
+	hjam 0xb7,rfen_sn
+	nop 10
+	hjam 0x7f, rfen_mdm
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,set_tx_power_0db
+	bbit1 TX_POWER_3DB,set_tx_power_3db	
+	bbit1 TX_POWER_5DB,set_tx_power_5db
+	bbit1 TX_POWER_f3DB,set_tx_power_f3db	
+	bbit1 TX_POWER_f5DB,set_tx_power_f5db
+set_tx_power_0db:	
+	hjam 0xf0,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+set_tx_power_3db:
+	hjam 0xdf,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+
+set_tx_power_5db:
+	hjam 0xff,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+set_tx_power_f3db:
+	hjam 0xce,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+set_tx_power_f5db:
+	hjam 0xcb,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+
+txon_common:
+	nop 4
+	hjam 0xd1,0x955
+	nop 4
+	hjam 0xd2,0x955
+	nop 4
+	hjam 0xd4,0x955
+	rtn
+
+
+initialize_radio:
+ifdef FPGA
+ifndef ROMCODE
+	branch fpga_init
+endif
+endif
+	hjam clksel_rc,core_clksel
+	call init_rf_param
+initialize_radio_wait:
+	fetch 2,mem_rf_init_ptr
+	bbit0 14,initialize_radio_wait
+	iforce contr
+	arg 0x8900,temp
+initialize_radio_loop:
+	ifetch 1,contr
+	beq 0xff,initialize_radio_cont
+	ior temp,contw
+	ifetch 1,contr
+	istore 1,contw
+	branch initialize_radio_loop
+initialize_radio_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch11_3,mem_patch11
+	call lpm_cal_xtal_startup
+	call switchto_dpllclk
+//	ncall check_dpll,wake
+	setarg param_dpll_start_delay
+	iadd clkn_bt,pdata
+	store 4,mem_dpll_clkn
+	set1 RESET,radio_ctrl
+	force 0,radio_ctrl
+	ncall do_rccal,wake
+	branch set_rccal
+
+	/* rega is frequency, 00=2400Mhz */
+rf_write_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch11_4,mem_patch11
+ifdef FPGA
+ifndef ROMCODE
+	copy rega,regc
+	setarg 0x1a6c	
+	call fpga_write_radio
+	copy regc,rega
+	add rega,0x18,pdata
+	arg 0x1a80,temp
+	ior temp,pdata
+	branch fpga_write_radio
+endif
+endif
+	setarg 2400
+	iadd rega,temp
+	fetch 1,mem_fcomp_mul
+	hjam 0x04,rf_pll_rstn
+	imul32 temp,pdata
+	fetcht 1,mem_fcomp_div
+	idiv temp
+	call wait_div_end
+	quotient rega			/* rega is FLOOR(FVCO/fcomp) */
+	remainder pdata		
+	lshift16 pdata,pdata
+	lshift4 pdata,pdata		/* pdata is frac * 2^20 */
+	idiv temp
+	call wait_div_end
+	quotient pdata		/* pdata is frac *2^20/fcomp */
+	lshift8 pdata,pdata
+	lshift pdata,pdata
+	ior rega,pdata
+	hstore 4,rf_pll_intg
+	hjam 0x44,rf_pll_rstn
+	hjam 0xc4,rf_pll_rstn
+	rtn
+
+	
+do_rccal:
+	set0 mark_ext_patch,mark
+	bpatch patch11_5,mem_patch11
+	hjam 0x02,rfen_adc
+	setarg 250000
+	call sleep					/* wait clkpll&xtal stable */
+	hjam 0x7f,rfen_rx
+	nop 130
+	hjam 0x30,rf_rccal_ctrl
+	hjam 0xd0,rfen_tx
+	hjam 0x70,rf_rccal_ctrl
+	hjam 0xf0,rf_rccal_ctrl
+	force 50,loopcnt
+do_rccal_loop:
+	hfetch 1,rf_rccal_result
+	bbit1 5,do_rccal_end
+	loop do_rccal_loop
+do_rccal_end:
+	store 1,mem_rf_rccal
+	hjam 0,rfen_tx
+	hjam 0,rfen_rx
+	hjam 0x00,rfen_adc
+ifndef ROMCODE
+	jam 0x30,mem_rf_rccal
+endif
+	rtn
+
+set_rccal:
+	set0 mark_ext_patch,mark
+	bpatch patch11_6,mem_patch11
+	fetch 1,mem_rf_rccal
+	set1 5,pdata
+	hstore 1,rf_rccal_ctrl
+	hfetcht 1,rf_bpf_ctrim
+	and_into 7,temp
+	lshift3 pdata,pdata
+	ior temp,pdata
+	hstore 1,rf_bpf_ctrim
+	hfetch 1,rf_bpf_ib
+	set0 bpf_rccal,pdata
+	hstore 1,rf_bpf_ib
+	hfetch 1,rf_adc_rccal
+	set0 adc_rccal,pdata
+	hstore 1,rf_adc_rccal
+	rtn
+
+save_rssi:
+	set0 mark_ext_patch,mark
+	bpatch patch11_7,mem_patch11
+	hfetch 2,rf_afc_d2a
+	rshift4 pdata,pdata
+	rshift3 pdata,pdata
+	sub pdata,0,pdata
+	and_into 0xff,pdata
+	div pdata,10
+	call wait_div_end
+	quotient pdata
+	lshift4 pdata,pdata
+	remainder temp
+	ior temp,pdata
+	store 1,mem_rssi			/* bcd value */
+	rtn
+
+	
+switchto_dpllclk:
+	hjam clksel_rc,core_clksel
+	hfetch 1,rf_clkpll_frac+2
+	set0 4,pdata
+	set0 5,pdata
+	hstore 1,rf_clkpll_frac+2
+	hjam 0x00,rfen_ck
+	hjam 0x00,rfen_msc
+	hjam 0x70,rfen_msc
+	hjam 0xff,rfen_ck
+	hfetch 1,rf_clkpll_frac+2
+	set1 4,pdata
+	set1 5,pdata
+	hstore 1,rf_clkpll_frac+2
+	call init_lpm_ctrl
+	hfetch 1,rf_clkpll_int
+	set1 7,pdata
+	hstore 1,rf_clkpll_int
+	set0 7,pdata
+	hstore 1,rf_clkpll_int
+	set1 7,pdata
+	hstore 1,rf_clkpll_int
+//	hjam clksel_dpll,core_clksel
+	hjam clksel_xtal,core_clksel
+	hfetch 1,rf_clkpll_frac+2
+	and_into 0xcf,pdata
+	hstore 1,rf_clkpll_frac+2
+	or_into 0x30,pdata
+	hstore 1,rf_clkpll_frac+2
+	rtn
+
+	
+xtal_fast_wake:
+	setarg 0xf0f
+	branch lpm_write_config
+
+init_lpm_ctrl:
+	setarg 0x80f
+	branch lpm_write_config
+
+
+
+start_receiver:
+	set0 mark_ext_patch,mark
+	bpatch patch12_0,mem_patch12
+	call rf_rx_enable
+	disable is_tx
+	enable is_rx
+	pulse init_encrypt
+	rtn
+
+prep_crypt:
+	set0 mark_ext_patch,mark
+	bpatch patch12_1,mem_patch12
+	fetch 1,mem_state_map
+	isolate1 smap_encryption,pdata
+	setflag true,0,pdata
+	hstore 1,core_encrypt
+	arg mem_kc,contr
+	ifetch 9,contr
+	iforce kc_ls
+	ifetch 7,contr
+	iforce kc_ms
+	fetch 1,mem_key_size
+	add pdata,-1,g1l
+	pulse kc_p_activate               /* immediately start calculating primary Key */
+	rtn
+	
+wait_access_end:
+	deposit clke
+	store 6,mem_sync_clke
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	arg param_clke_cal,clke_rt
+	increase 1,clke_bt
+	and_into 0x1fc,clke_bt
+	rtn
+
+
+
+wait_access_mhalfbnd:
+	enable decode_fec0
+wait_access_mhalfbnd_correlate:
+	correlate null,mhalfbnd    /* keep correlating until sync is found, or clke half */
+	branch wait_access_end,sync
+	compare 0x02,clke_bt,0x02
+	nbranch wait_access_mhalfbnd_correlate,true
+	branch wait_access_end
+
+wait_access_clkn_rt:
+	set0 mark_ext_patch,mark
+	bpatch patch12_2,mem_patch12
+	arg param_conn_access,timeup	/* found sync must occur within this time */
+	enable decode_fec0
+	correlate clkn_rt,meet    /* keep correlating until sync is found, or until clkn_rt timeup */
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	rtn
+
+wait_access_forever:
+	set0 mark_ext_patch,mark
+	bpatch patch12_3,mem_patch12
+	enable decode_fec0
+	correlate null,timeout    /* keep correlating until sync is found, or timeout */
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	arg param_clke_cal,clke_rt
+	and_into 0x1fc,clke_bt
+	rtn
+
+	/* reserve slots for mult-slot packet */
+reserve_slot:
+	set0 mark_ext_patch,mark
+	bpatch patch12_4,mem_patch12
+	iforce rega
+	deposit bt_clk
+	iadd temp,timeup
+	copy timeup,pdata
+	store 4,mem_next_btclk
+	deposit rega
+	rtn
+
+	/* pdata = clks ahead of bt_clk */
+ahead_window:
+	copy pdata,temp
+	set0 mark_ext_patch,mark
+	bpatch patch12_5,mem_patch12
+	copy temp,pdata
+	call clk2bt
+	lshift16 bt_clk,pdata
+	set1 44,pdata
+	call clk_diff
+	set0 44,pdata
+	call get_clk
+	call clk_diff
+	rtn user
+	call clk2rt
+	iforce stop_watch
+	until null,timeout
+	rtn
+
+
+setup_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch12_6,mem_patch12
+	branch setup_clkn,clknt
+	until clke_rt,meet
+skip_setup_clke:
+	copy clke_bt,temp
+	branch setup_clknbt
+setup_clkn:
+	branch skip_setup_clkn,attempt
+	until clkn_rt,meet
+skip_setup_clkn:
+	copy clkn_bt,temp
+setup_clknbt:
+	branch setup_clk11,user
+	compare 1,temp,3
+	nbranch setup_clk,true
+setup_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch12_7,mem_patch12
+	fetch 1,mem_state
+	rtnbit0 state_inconn
+	fetch 4,mem_next_btclk
+	isub temp,pdata
+	nrtn positive
+	sub pdata,0xff,null
+	branch setup_clk,positive
+	rtn
+setup_clk11:
+	compare 3,temp,3
+	nbranch setup_clk,true
+	branch setup_complete
+
+rf_setup_time:
+	set0 mark_ext_patch,mark
+	bpatch patch13_0,mem_patch13
+	arg param_rf_setup,timeup
+	branch setup_clk
+	
+rf_setup_time_slave_slot:
+	disable user
+	branch rf_setup_time
+
+rf_setup_time_master_slot:
+	enable user
+	branch rf_setup_time
+	
+start_transmitter:
+	set0 mark_ext_patch,mark
+	bpatch patch13_1,mem_patch13
+	call prep_crypt
+	disable is_rx
+	enable is_tx
+	rtn
+
+
+
+start_tx_native:
+	set0 mark_ext_patch,mark
+	bpatch patch13_2,mem_patch13
+	arg param_tx_setup,timeup
+	until clkn_rt,meet         /* wait until start_tx time */
+	pulse init_encrypt
+	rtn
+
+start_rx_native:
+	set0 mark_ext_patch,mark
+	bpatch patch13_3,mem_patch13
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	rtn
+
+
+start_tx_external:
+	set0 mark_ext_patch,mark
+	bpatch patch13_4,mem_patch13
+	arg param_tx_setup,timeup
+	until clke_rt,meet         /* wait until start_tx time */
+	pulse init_encrypt
+	rtn
+
+send_access_word:
+	set0 mark_ext_patch,mark
+	bpatch patch13_5,mem_patch13
+	preload access          /* load in access word ready to be sent */
+	enable encode_fec0
+	set1 TXGFSK,radio_ctrl
+	inject mod,72
+	disable encode_fec0
+	rtn
+
+
+scan_mode_whiten:
+	copy xin,temp
+	or_into 0x60,temp                /* extend xin with 5->1, 6->1 */
+	copy temp,white_init
+	rtn
+
+
+
+	/* return blank if free amaddr is found */
+get_free_amaddr:
+	set0 mark_ext_patch,mark
+	bpatch patch13_6,mem_patch13
+	fetch 1,mem_current_amaddr
+	increase 1,pdata
+	bne param_esco_addr,get_free_amaddr_cont
+	force 1,pdata
+get_free_amaddr_cont:
+	store 1,mem_current_amaddr
+	iforce am_addr
+	rtn
+
+get_clk:
+	copy clkn,temp
+	rtn master
+	copy clke,temp
+	rtn
+
+get_clkbt:
+	deposit clkn_bt
+	rtn master
+	deposit clke_bt
+	rtn
+
+
+supervision_update:
+	set0 mark_ext_patch,mark
+	bpatch patch13_7,mem_patch13
+	fetcht 4,mem_supervision_timer
+	call get_clkbt
+	isub temp,timeup					/* and to 28 bits */
+	deposit timeup
+	fetcht 2,mem_supervision_to
+	lshift temp,temp
+	isub temp,pdata
+	rtn
+	
+supervision_flush:
+	set0 mark_ext_patch,mark
+	bpatch patch14_0,mem_patch14
+	call get_clkbt
+	store 4,mem_supervision_timer
+	rtn
+
+assert:
+	set0 mark_ext_patch,mark
+	bpatch patch14_1,mem_patch14
+	rtn
+	
+loop:
+	branch loop
+
+sleep:	
+	rtn blank
+	/* sleep pdata clocks, only even clocks are accurate */
+	rshift pdata,pdata
+	increase -3,pdata
+sleep_loop:	
+	increase -1,pdata
+	nbranch sleep_loop,zero
+	force 0,pdata
+	rtn
+
+
+
+init_param:
+	/* clear specified sched ram */
+	arg 0x10,loopcnt
+	arg 0,contw
+	call memset0
+	arg mem_le_state,contw
+	arg 10,loopcnt
+	call memset0
+	jam 0,mem_sp_calc
+	jam 0,mem_fifo_temp
+	jam 0,mem_le_testtype
+	jam 0,mem_debug_config
+	jam 0,mem_lmp_conn_state
+	set0 mark_ext_patch,mark
+	bpatch patch14_2,mem_patch14
+	jam 0,mem_connection_options
+	jam 0,mem_tester_emulate
+	jam 0,mem_tester_cnt
+	setarg param_glap
+	store 3,mem_glap
+	setarg param_acl_pktlen
+	store 2,mem_acl_pktlen
+	jam param_sco_pktlen,mem_sco_pktlen
+	jam param_acl_pktcnt,mem_acl_pktcnt
+	jam param_sco_pktcnt,mem_sco_pktcnt
+	setarg param_hci_version
+	store 3,mem_hci_version
+//	setarg param_lmp_version
+//	store 3,mem_lmp_version
+//	setarg param_lmp_subversion
+//	store 2,mem_lmp_subversion
+	jam 0x60,mem_fhs_misc		/* R1 for 1.28s ps interval,P2 */
+	jam param_max_slot,mem_max_slot
+	jam 0x02,mem_fw_ver		/* set firmware version */
+ifdef SIMPLE_PAIRING
+	fetch 1,mem_ssp_enable
+	ncall init_memp,blank
+endif
+ifdef SECURE_CONNECTION
+	fetch 1,mem_le_secure_connect_enable
+	ncall init_memp_256,blank
+endif
+	set0 mark_ext_patch,mark
+	bpatch patch14_3,mem_patch14
+	rtn wake
+	setarg 0
+	store 2,mem_tx_len
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn
+	rtn
+
+init_rf_param:
+	hjam 0x1f,0x909
+	hjam 0x45,0x912		/* invert demod */
+	hjam 0x00,0x953			/* rccal */
+	hjam 0x88,0x96f
+	hjam 0x30,0x973			/* turn off charge pump */
+	hjam 0xc9,0x956
+
+	hjam 0xff,0x907
+	hjam 0x01,0x908
+	hjam 0xf8,0x90a
+	hjam 0xff,0x90b
+	hjam 0xfb,0x91a
+	hjam 0xfb,0x91b
+	hjam 0xfb,0x91c
+	hjam 0xf6,0x91d
+	hjam 0xf2,0x91e
+	hjam 0xee,0x91f
+	hjam 0xea,0x920
+	hjam 0xe6,0x921
+	hjam 0xe2,0x922
+	hjam 0xde,0x923
+	hjam 0xda,0x924
+	hjam 0xd6,0x925
+	hjam 0xd2,0x926
+	hjam 0xce,0x927
+	hjam 0xca,0x928
+	hjam 0xc6,0x929
+	hjam 0xc2,0x92a
+	hjam 0xbd,0x92b
+	hjam 0xb9,0x92c
+	hjam 0xb5,0x92d
+	hjam 0xb1,0x92e
+	hjam 0xad,0x92f
+	hjam 0xa9,0x930
+	hjam 0x80,0x931
+	hjam 0x80,0x932
+	hjam 0x80,0x933
+	hjam 0xc0,0x934
+	hjam 0xc1,0x935
+	hjam 0xc2,0x936
+	hjam 0xc3,0x937
+	hjam 0xc4,0x938
+	hjam 0xc5,0x939
+	hjam 0xc6,0x93a
+	hjam 0xc7,0x93b
+	hjam 0x06,0x93c
+	hjam 0x07,0x93d
+	hjam 0x46,0x93e
+	hjam 0x85,0x93f
+	hjam 0x86,0x940
+	hjam 0x87,0x941
+	hjam 0xc6,0x942
+	hjam 0xc7,0x943
+	hjam 0xd6,0x944
+	hjam 0xd7,0x945
+	hjam 0xe6,0x946
+	hjam 0xf5,0x947
+	hjam 0x00,0x948
+	hjam 0xf8,0x949
+	hjam 0x7f,0x94a
+	hjam 0xfb,0x94c
+	hjam 0xef,0x94d	
+	hjam 0xec,0x94e
+	hjam 0x5e,0x94f
+	hjam 0x4c,0x957
+	hjam 0x6c,0x958
+	hjam 0x50,0x959
+	hjam 0xe4,0x968
+	hjam 0x00,0x969
+	hjam 0x00,0x96a
+	hjam 0x30,0x96b
+	rtn
+
+
+
+ifdef FPGA
+ifndef ROMCODE
+fpga_init:
+	hjam 5,core_clksel
+	hjam 1,core_config			// uart use 48M
+	hjam 1,rf_rx_lna_ctrim
+	hjam 0x2,0x908
+	hjam 0xb1,0x90e
+	hjam 0,0x912
+
+	hjam 0xF7,0x91A
+	hjam 0xF4,0x91B
+	hjam 0xF0,0x91C
+	hjam 0xEB,0x91D
+	hjam 0xE7,0x91E
+	hjam 0xE4,0x91F
+	hjam 0xE0,0x920
+	hjam 0xDB,0x921
+	hjam 0xD7,0x922
+	hjam 0xD5,0x923
+	hjam 0xD1,0x924
+	hjam 0xCC,0x925
+	hjam 0xC8,0x926
+	hjam 0xC2,0x927
+	hjam 0xBE,0x928
+	hjam 0xBA,0x929
+	hjam 0xBA,0x92A
+	hjam 0xB3,0x92B
+	hjam 0xB3,0x92C
+	hjam 0xAB,0x92D
+	hjam 0xAB,0x92E
+	hjam 0xA2,0x92F
+	hjam 0x9F,0x930
+
+	hjam 0x30,0x931
+	hjam 0x20,0x932
+	hjam 0x10,0x933
+	hjam 0x50,0x934
+	hjam 0x64,0x935
+	hjam 0x54,0x936
+	hjam 0x68,0x937
+	hjam 0xa8,0x938
+	hjam 0xe8,0x939
+	hjam 0xfC,0x93A
+	hjam 0xeC,0x93B
+	hjam 0xd9,0x93C
+	hjam 0x19,0x93D
+	hjam 0x8D,0x93E
+	hjam 0xcD,0x93F
+	hjam 0x1E,0x940
+	hjam 0x9E,0x941
+	hjam 0x9E,0x942
+	hjam 0x9E,0x943
+	hjam 0x9F,0x944
+	hjam 0x9F,0x945
+	hjam 0x8F,0x946
+	hjam 0xcF,0x947
+
+	hjam 0x00,0x948
+	hjam 0x90,0x949
+	hjam 0x7f,0x94a
+
+	rtn wake
+	call fpga_init_jtag
+	setarg 0x1c38	
+	call fpga_write_radio
+	setarg 0x1c28	
+	call fpga_write_radio
+	setarg 0x185e	
+	call fpga_write_radio
+	setarg 0x24ff	
+	call fpga_write_radio
+	setarg 0x2894
+	call fpga_write_radio
+	setarg 0x2922	
+	call fpga_write_radio
+	setarg 0x2a1c	
+	call fpga_write_radio
+	setarg 0x2c00
+	call fpga_write_radio
+
+	setarg 0x2050
+	call fpga_write_radio
+	setarg 0x1580
+	call fpga_write_radio
+	hjam 0x70,core_bist_ctrl
+	hjam ccnt_start,core_misc_ctrl
+
+	hjam 1,rf_rx_lna_ctrim+1
+	force 0,clkn
+	force 0,clke
+	hjam 0,rf_rx_lna_ctrim+1
+	rtn
+
+fpga_init_jtag:
+	hjam 0,rf_rx_vctrl_reg2
+	hjam 0x9,core_clksel 
+	nop 100
+	hjam 2,rf_rx_lna_ctrim
+	hjam 0,rf_rx_lna_ctrim
+	arg 0x800c,rega
+	arg 2,regb
+	call fpga_write_reg
+	nop 0x5000
+	hjam 1,rf_rx_lna_ctrim
+	nop 0x5000
+	hjam 5,core_clksel
+	rtn
+
+fpga_write:
+	hstore 1,rf_rx_vctrl_reg1
+	hjam 1,rf_rx_vctrl_reg2
+	hjam 0,rf_rx_vctrl_reg2
+	rtn
+
+
+fpga_read:
+	hfetch 1,rf_rccal_result
+	hjam 2,rf_rx_vctrl_reg2
+	hjam 0,rf_rx_vctrl_reg2
+	rtn
+
+	
+fpga_write_reg:
+	setarg 0xb
+	call fpga_write
+	rshift8 rega,pdata
+	call fpga_write
+	setarg 0x3
+	call fpga_write
+	and rega,0xff,pdata
+	call fpga_write
+	setarg 5
+	call fpga_write
+	deposit regb
+	branch fpga_write
+	
+
+fpga_read_reg:
+	setarg 0xb
+	call fpga_write
+	rshift8 rega,pdata
+	call fpga_write
+	setarg 0x3
+	call fpga_write
+	and rega,0xff,pdata
+	call fpga_write
+	setarg 6
+	call fpga_write
+	branch fpga_read
+	
+
+fpga_write_radio:
+	and pdata,0xff,regb
+	rshift8 pdata,rega
+	setarg 0x8900
+	ior rega,rega
+	branch fpga_write_reg
+
+endif
+endif
+
+
+
+/*****************************************LPO************************************************/
+
+lpmstate:
+	setarg 0xee21
+	hstore 2,core_clkoff			// disable unused peripherals
+	hfetch 1,core_lpm_ldocnt
+	bbit0 gpio_latch,loadcode		// power up boot
+	enable wake
+	bbit0 cold_wake,lpmwake		
+	disable wake
+	deposit auxcnt
+	nbranch lpmwake,blank		// sleep interrupted, wakeup
+	arg param_hibernate_clks,temp
+	branch lpm_enter_sleep
+lpmwake:
+	hfetch 3,core_lpm_xtalcnt
+	hstore 3,core_lpm_reg
+	ifetch 1,contr
+	or_into isogate_mask,pdata		// open all isolation gate&power switch
+	istore 1,contw
+	call lpm_write_ctrl2
+	hfetch 1,core_lpm_isogate
+	set1 enable_retmem,pdata
+	hstore 1,core_lpm_isogate
+	call lpm_write_ctrl2
+	call lpm_load_context,wake
+	hfetch 1,core_lpm_reg+2
+	set0 gpio_latch,pdata			// enable gpio fuction
+	hstore 1,core_lpm_reg+2
+	call lpm_write_ctrl2
+	rtn wake
+	branch loadcode				// wakeup from hibernate
+
+lpm_load_context:
+	fetch 1,mem_saved_spidctrl
+	hstore 1,core_spid_ctrl
+	fetch 3,mem_saved_gsel
+	hstore 3,core_gpio_sel
+	fetch 4,mem_saved_gpio+4
+	hstore 4,core_gpio_out0
+	fetch 4,mem_saved_gpio
+	hstore 4,core_gpio_oe0
+	fetch 8,mem_saved_gpio+8
+	hstore 8,core_gpio_pu0	
+	fetch 8,mem_saved_mark
+	iforce mark
+	hfetch 8,core_gpio_wakeup_low
+	store 8,mem_gpio_wakeup_low
+	call load_ucode
+	rtn
+
+lpm_save_context:
+	deposit mark
+	store 8,mem_saved_mark
+	hfetch 8,core_gpio_oe0
+	store 8,mem_saved_gpio
+	ifetch 8,contr
+	istore 8,contw
+	hfetch 3,core_gpio_sel
+	store 3,mem_saved_gsel
+	hfetch 1,core_spid_ctrl
+	store 1,mem_saved_spidctrl
+	branch lpm_write_gpio_wakeup
+
+lpo_calibration:
+	hfetch 1,core_bist_ctrl
+	nbranch lpo_cal_inited,blank
+	fetch 3,mem_clks_per_lpo
+	nrtn blank
+	hjam 0xc0,core_bist_ctrl
+	hjam ccnt_start,core_misc_ctrl
+lpo_cal_inited:
+	hfetch 1,core_perf_status
+	rtnbit0 1
+	hfetch 3,core_clk_counter
+	store 3,mem_clks_per_lpo
+	rtn
+
+
+	/* temp is synced clke */
+lpm_adjust_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch14_4,mem_patch14
+	deposit clke
+	call clk_diff_rt
+	fetcht 4,mem_sleep_counter_all
+	sub temp,0xff,null
+	rtn positive				// interval too small
+	lshift8 pdata,pdata
+	lshift4 pdata,pdata
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	arg param_lpm_adjmax,temp
+	call ceiling
+	store 1,mem_lpm_adjust
+	nbranch lpm_adjust_positive,user
+	sub pdata,0,pdata
+lpm_adjust_positive:
+	fetcht 3,mem_clks_per_lpo
+	iadd temp,pdata
+	store 3,mem_clks_per_lpo
+lpm_clear_counter:
+	setarg 0
+	store 4,mem_sleep_counter_all
+	rtn
+
+	/* no retention memory at all */
+lpm_hibernate:
+	set0 mark_ext_patch,mark
+	bpatch patch14_5,mem_patch14
+	call lpm_write_gpio_wakeup
+	hfetch 4,core_lpm_ctrl
+	set0 15,pdata						/* lowest lpo */
+	hstore 4,core_lpm_reg
+	call lpm_write_ctrl
+lpm_hibernate_normal:
+	arg param_hibernate_clks,temp
+	fetch 1,mem_lpm_hibernate_switch
+	store 1,mem_lpm_xtalcnt + 4
+ifdef ROMCODE
+	fetch 1,mem_lpm_xtalcnt + 2
+	set1 cold_wake,pdata
+	store 1,mem_lpm_xtalcnt + 2
+else
+	branch rom_lpm_sleep
+endif
+
+	/* temp is lpo clocks to sleep */
+lpm_sleep:
+	set0 mark_ext_patch,mark
+	bpatch patch14_6,mem_patch14
+	call xtal_fast_wake
+	fetch 4,mem_sleep_counter_all
+	iadd temp,pdata
+	store 4,mem_sleep_counter_all
+	call lpm_save_context
+	fetch 5,mem_lpm_xtalcnt
+	hstore 4,core_lpm_reg
+	rshift32 pdata,rega
+	until null,lpo_edge
+	deposit clkn
+	store 6,mem_sleep_clkn
+	hjam lpmreg_sel_ctrl2,core_lpm_wr
+	until null,lpo_edge
+	until null,lpo_edge
+	deposit rega
+	hstore 1,core_lpm_isogate
+	hjam lpmreg_sel_ctrl2,core_lpm_wr
+lpm_enter_sleep:
+	until null,lpo_edge
+	until null,lpo_edge
+	hstoret 4,core_lpm_reg
+	hjam lpmreg_sel_counter,core_lpm_wr
+	until null,never
+
+
+
+
+lpm_recover_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch14_7,mem_patch14
+	setarg 0
+	copy auxcnt,null
+	branch lpm_recover_timeout,zero
+	hfetch 1,core_lpm_xtalcnt
+	hfetcht 1,core_lpm_buckcnt
+	isub temp,null
+	branch lpm_recover_xtal,positive
+	deposit temp
+lpm_recover_xtal:
+	isub auxcnt,pdata
+	increase 1,pdata
+lpm_recover_timeout:
+	increase 8,pdata
+	until null,lpo_edge
+	iadd lpo_time,pdata
+	fetcht 4,mem_sleep_counter
+	iadd temp,pdata
+	fetcht 3,mem_clks_per_lpo
+	imul32 temp,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	increase param_lpm_fix,pdata
+	arg 3750,temp
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	lshift16 pdata,pdata
+	remainder temp
+	ior temp,pdata
+	fetcht 6,mem_sleep_clkn
+	call clk_add
+	copy temp,clkn
+	fetch 6,mem_context + coffset_clk_offset
+	call calc_clke2
+	deposit clke
+	store 6,mem_pdatatemp
+	deposit auxcnt
+	istore 1,contw
+	hfetch 1,core_gpio_in1
+	or_into 0xf0,pdata
+	istore 1,contw
+	rtn
+	
+lpm_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch15_0,mem_patch15
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+	fetch 1,mem_ssp_enable
+	branch lpm_dispatch_next,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+lpm_dispatch_next:
+	fetch 1,mem_le_sc_calc
+	nrtn blank	
+	call lpm_check_wake_lock
+	nrtn blank
+	fetch 1,mem_context
+	compare 3,pdata,0x7							/* sco won't sleep */
+	nbranch lpm_dispatch_unconn,true
+	fetch 2,mem_context + coffset_tsniff
+	rtn blank										/* role switch */
+	rtn wake
+lpm_dispatch_next0:
+	set0 mark_ext_patch,mark
+	bpatch patch15_1,mem_patch15
+	fetcht 1,mem_lpm_current_mult
+	fetch 2,mem_context + coffset_tsniff
+	imul32 temp,pdata
+	rshift4 temp,temp
+	rshift2 temp,temp
+	isub temp,pdata
+	fetcht 4,mem_context + coffset_sniff_anchor
+	iadd temp,pdata
+	fetcht 1,mem_lpm_overhead
+	isub temp,pdata
+	lshift16 pdata,alarm
+lpm_dispatch_next1:	
+	set0 mark_ext_patch,mark
+	bpatch patch15_2,mem_patch15
+	fetch 2,mem_context + coffset_rx_window
+	rshift pdata,pdata
+	call clk2bt
+	deposit alarm
+	call clk_diff
+	copy clke,temp
+	call clk_diff_rt
+	rtn user
+lpm_dispatch_sleep:
+	call clk2lpo
+lpm_dispatch_lpo:
+	set0 mark_ext_patch,mark
+	bpatch patch15_3,mem_patch15
+	fetch 1,mem_lpm_xtalcnt
+	isub temp,null
+	branch lpm_clear_counter,positive
+	storet 4,mem_sleep_counter
+	call app_will_enter_lpm
+	call l2cap_lpm_save_txbuf
+	fetcht 4,mem_sleep_counter
+ifdef ROMCODE
+	branch lpm_sleep
+else
+	call lpm_write_gpio_wakeup
+	jam 1,mem_patch00
+	branch rom_lpm_sleep
+endif
+	
+lpm_dispatch_unconn:
+	set0 mark_ext_patch,mark
+	bpatch patch15_4,mem_patch15
+	fetch 1,mem_context
+	rtnbit1 state_inconn					// wont sleep in connection
+	rtnbit1 state_inpage					// wont sleep when paging
+	fetch 1,mem_ssp_enable
+	branch lpm_unconn_nossp,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+lpm_unconn_nossp:
+	set0 mark_ext_patch,mark
+	bpatch patch15_5,mem_patch15
+	fetch 1,mem_le_adv_enable
+	nbranch lpm_unconn_cont,blank
+	fetch 1,mem_scan_mode
+	rtn blank
+lpm_unconn_cont:
+	fetch 2,mem_lpm_interval
+	rtn blank
+lpm_sleep_btclk:
+	fetcht 1,mem_lpm_overhead
+	isub temp,pdata
+	arg 7500,temp				/* 1.25ms */
+	imul32 temp,pdata
+	branch lpm_dispatch_sleep
+
+lpm_set_mult:
+	set0 mark_ext_patch,mark
+	bpatch patch15_6,mem_patch15
+	disable wake
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	nbranch lpm_not_match,match
+	call lpm_match
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_rx_window
+	fetch 1,mem_arq
+	bbit1 wack,lpm_mult_short
+	bmark0 mark_lpm_mult_enable,lpm_mult_short
+	call l2cap_malloc_is_fifo_empty
+	nbranch lpm_mult_short,blank
+	fetch 2,mem_cb_bt_set_mult
+	call callback_func
+lpm_mult_wait_timeout:
+	jam 0,mem_lpm_current_mult
+	bmark0 mark_lpm_mult_enable,lpm_mult_short
+	fetch 1,mem_lpm_mult_cnt
+	branch lpm_mult_long,blank
+	increase -1,pdata
+	store 1,mem_lpm_mult_cnt
+	rtn
+
+lpm_match:
+	jam 0,mem_sniff_unint_lost
+	fetch 3,mem_sniff_rcv
+	increase 1,pdata
+	store 3,mem_sniff_rcv
+	rtn
+
+lpm_not_match:
+	set0 mark_ext_patch,mark
+	bpatch patch15_7,mem_patch15
+	fetcht 2,mem_rx_window_sniff
+	rshift temp,temp
+	fetch 2,mem_rx_window
+	iadd temp,pdata
+	store 2,mem_rx_window
+lpm_lost:
+	jam 0,mem_lpm_current_mult
+	fetch 3,mem_sniff_lost
+	increase 1,pdata
+	store 3,mem_sniff_lost
+	fetch 1,mem_sniff_unint_lost
+	increase 1,pdata
+	store 1,mem_sniff_unint_lost
+	rtn
+
+lpm_mult_short:
+	jam 0,mem_lpm_current_mult
+	fetch 1,mem_lpm_mult_timeout
+	store 1,mem_lpm_mult_cnt
+	rtn
+
+lpm_mult_long:
+	fetcht 1,mem_lpm_mult
+	storet 1,mem_lpm_current_mult
+	rtn
+
+lpm_cal_xtal_startup:
+	set0 mark_ext_patch,mark
+	bpatch patch16_0,mem_patch16
+	fetch 1,mem_lpm_xtalcnt
+	nrtn blank
+	hjam clksel_rc,core_clksel
+	setarg 0xf0c
+	call lpm_write_config
+	setarg 200000
+	call sleep
+	until null,lpo_edge
+	copy lpo_time,alarm
+	call xtal_fast_wake
+	hjam clksel_xtal,core_clksel
+	nop 10
+	until null,lpo_edge
+	deposit lpo_time
+	isub alarm,pdata
+	increase 0x30,pdata
+	arg 0xff,temp
+	call ceiling
+	store 1,mem_lpm_xtalcnt
+	nop 30000
+	nop 30000
+	nop 30000	
+	rtn
+
+
+
+	/* pdata is lpm_reg[11:0] */
+lpm_write_config:
+	arg 0xfff,contw
+	iand contw,contw
+	fetch 1,mem_lpm_config
+	and_into 0xf0,pdata
+	lshift8 pdata,pdata
+	ior contw,pdata
+	hstore 2,core_lpm_reg
+	ifetch 2,contr
+	istore 2,contw
+
+lpm_write_ctrl:
+	setarg lpmreg_sel_ctrl
+	branch lpm_write
+
+lpm_write_ctrl2:
+	setarg lpmreg_sel_ctrl2
+lpm_write:
+	until null,lpo_edge
+	hstore 1,core_lpm_wr
+	until null,lpo_edge
+	until null,lpo_edge
+	rtn
+
+
+lpm_write_gpio_wakeup:
+	set0 mark_ext_patch,mark
+	bpatch patch16_1,mem_patch16
+	fetch 4,mem_gpio_wakeup_low
+	hstore 4,core_lpm_reg
+	setarg lpmreg_sel_gpiolow
+	call lpm_write
+	fetch 4,mem_gpio_wakeup_high
+	hstore 4,core_lpm_reg
+	setarg lpmreg_sel_gpiohigh
+	branch lpm_write
+
+lpm_get_wake_lock:
+	fetch 2,mem_lpm_wake_lock
+	qset1 pdata
+	store 2,mem_lpm_wake_lock
+	rtn
+
+lpm_put_wake_lock:
+	fetch 2,mem_lpm_wake_lock
+	qset0 pdata
+	store 2,mem_lpm_wake_lock
+	rtn
+
+
+
+lpm_check_wake_lock:
+	set0 mark_ext_patch,mark
+	bpatch patch16_2,mem_patch16
+	call app_check_wake_lock
+	fetch 2,mem_lpm_wake_lock
+	copy pdata,rega
+	fetch 1,mem_state_map
+	isolate1 smap_rxlmp,pdata
+	setflag true,wake_lock_lmp_rx,rega
+	fetch 1,mem_lmo_opcode1
+	fetcht 1,mem_lmo_opcode2
+	iadd temp,pdata
+	fetcht 1,mem_lmp_to_send
+	iadd temp,pdata
+	nsetflag blank,wake_lock_lmp_tx,rega
+lpm_check_wake_lock0:
+	set0 mark_ext_patch,mark
+	bpatch patch16_3,mem_patch16
+	fetch 2,mem_l2cap_rxbuff1_len
+	fetcht 2,mem_l2cap_rxbuff2_len
+	iadd temp,pdata
+	nsetflag blank,wake_lock_l2cap_rx,rega
+	fetch 5,mem_ipc_fifo_bt2c51
+	nsetflag blank,wake_lock_ipc_bt2c51,rega
+	fetch 5,mem_ipc_fifo_c512bt
+	nsetflag blank,wake_lock_ipc_c512bt,rega
+	fetch 1,mem_hci_cmd
+	nsetflag blank,wake_lock_cmd,rega
+	fetch 1,mem_device_option
+	compare dvc_op_module,pdata,0xff
+	call lpm_uart_wake_lock,true
+	branch  lpm_check_wake_lock_nothci
+
+lpm_uart_wake_lock:
+	hfetch 2,core_uart_rxitems
+	nsetflag blank,wake_lock_uart_rx ,rega
+	hfetch 2,core_uart_txitems
+	nsetflag blank,wake_lock_uart_tx ,rega
+	rtn
+
+lpm_check_wake_lock_nothci:
+	setarg -8
+	iand rega,rega
+lpm_check_wake_lock_end:
+	copy rega,pdata
+	store 2,mem_lpm_wake_lock
+	rtn blank
+	rtn match
+	enable wake
+	rtn
+
+lpm_shut_down:
+	hfetch 4,core_lpm_ctrl
+	set0 27,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+	branch assert
+	
+lpm_disable_exen_output:
+	hfetch 4,core_lpm_xtalcnt
+	set0 20,pdata
+	hstore 4,core_lpm_reg
+	branch lpm_write_ctrl2
+
+check_bt_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 bt_disabled,assert
+	rtn
+check_ble_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 ble_disabled,assert
+	rtn
+check_module_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 module_disable,assert
+	rtn
+	
+
+
Index: Receive_Code/program/hci_h4.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/hci_h4.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/hci_h4.prog	(working copy)
@@ -0,0 +1,142 @@
+
+ifdef DEBUG_H4LOG_ENABLE
+hci_log:
+	copy regc,pdata
+	rtneq 0x11
+	fetch 1,mem_hci_log
+	increase 1,pdata
+	sub pdata,hci_log_cnt,null
+	branch hci_log_calc_ptr,positive
+	setarg 0
+hci_log_calc_ptr:
+	store 1,mem_hci_log
+	arg hci_log_size,temp
+	imul32 temp,pdata
+	arg mem_hci_log+hci_log_size,contw
+	iadd contw,contw
+hci_log_write_content:
+	fetch 1,mem_hci_log
+	istore 1,contw//counter
+	copy regb,pdata
+	istore 1,contw
+	fetch 2,mem_le_event_count
+	istore 1,contw
+	copy clke_bt,pdata
+	istore 3,contw
+	fetch 1,mem_last_freq
+	istore 1,contw
+	fetch 1,mem_le_rxbuf
+	istore 1,contw
+	rtn
+else
+
+endif
+
+hci_rx_h4:
+	set0 mark_ext_patch,mark
+	bpatch patch17_4,mem_patch17
+	fetch 1,mem_hci_cmd
+	nrtn blank
+hci_rx_h4_1:
+	call hci_h4_parse_packet
+	ncall h4_rx_discard_packet,user
+	rtn
+	
+hci_h4_parse_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch17_5,mem_patch17
+	copy contru,rega
+	arg 4,temp
+	ifetch 1,contru //type
+	beq HCI_H4_TYPE_CMD,hci_h4_parse_packet_wait_len
+	increase 1,temp //acl packet has 2 bytes for length
+	beq HCI_H4_TYPE_ACL,hci_h4_parse_packet_wait_len
+	copy contru,pdata
+	hstore 2,core_uart_rrptr
+	rtn
+hci_h4_parse_packet_wait_len:
+	hfetch 2,core_uart_rxitems
+	isub temp,null
+	nbranch hci_h4_parse_packet_wait_len,positive // while(rxitems >= 4 or 5);
+	//Make sure length has been recieved.
+	disable user
+	copy rega,contru
+	call h4_get_rx_payload_len
+	iadd temp,temp
+hci_h4_parse_packet_wait:
+	hfetch 2,core_uart_rxitems
+	isub temp,null
+	nbranch hci_h4_parse_packet_wait,positive//wait for rcv a complete packet
+	copy rega,contru
+	ifetch 1,contru //HCI packet type
+	beq  HCI_H4_TYPE_CMD,process_hci_cmd
+	branch assert
+	
+h4_rx_discard_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch17_6,mem_patch17
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	call h4_get_rx_payload_len
+	iadd contru,contru
+	deposit contru
+	hstore 2,core_uart_rrptr
+	rtn
+
+
+//contru = pointer to packet start
+//return len via pdata
+h4_get_rx_payload_len:
+	ifetch 1,contru
+	increase 2,contru
+	beq HCI_H4_TYPE_ACL,h4_get_rx_payload_len_acl
+	ifetch 1,contru
+	rtn
+h4_get_rx_payload_len_acl:
+	ifetch 2,contru
+	rtn
+
+h4_get_tx_ptr:
+	hfetch 2,core_uart_twptr
+	increase -5,contwu
+	iadd contwu,contwu
+	rtn
+
+h4_send_packet_event:
+	arg HCI_H4_TYPE_EVENT,temp //type
+	branch h4_send_packet
+h4_send_packet_acl: //upgoing ACL
+	arg HCI_H4_TYPE_ACL,temp //type
+h4_send_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch17_7,mem_patch17
+	increase 1,loopcnt
+	hfetch 2,core_uart_twptr
+	copy pdata,contwu
+	copy loopcnt,pdata //length
+	istoret 1,contwu //packet type in temp
+	increase -1,pdata
+	iadd contwu,contwu
+	copy contwu,pdata
+	store 2,mem_hci_acl_tx_trigger_wptr
+	copy temp,pdata
+ifdef ACL_DEBUG
+	beq HCI_H4_TYPE_EVENT,h4_send_packet0
+	hfetch 1,core_uart_txitems
+	ncall ice_break,blank
+	
+h4_send_packet0:	
+	copy temp,pdata
+endif
+	rtneq HCI_H4_TYPE_ACL //not send acl packet immediately
+	fetch 2,mem_hci_acl_tx_trigger_wptr
+	hstore 2,core_uart_twptr
+	branch h4_send_acl_trigger_clear
+	
+	
+h4_send_acl_trigger_clear:
+	setarg 0
+	store 2,mem_hci_acl_tx_trigger_wptr
+	rtn
+
+	
Index: Receive_Code/program/hci_main.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/hci_main.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/hci_main.prog	(working copy)
@@ -0,0 +1,345 @@
+/*********************************/
+/**********   HCI  *****************/
+/*********************************/
+
+hci_init:
+	set0 mark_ext_patch,mark
+	bpatch patch18_0,mem_patch18
+	rtn wake
+	setarg hci_idle_dispatch
+	store 2,mem_cb_idle_process
+
+	setarg uart_baud_115200
+	store uart_baud_len,mem_baud
+hci_lpm_init:
+	set0 mark_ext_patch,mark
+	bpatch patch18_1,mem_patch18
+	setarg mem_h5rx_buf
+	hstore 2,core_uart_rsaddr
+	setarg mem_h5rx_buf_end
+	hstore 2,core_uart_readdr
+	setarg mem_h5tx_buf
+	hstore 2,core_uart_tsaddr
+	call hci_sel_init
+hci_reinit:
+	hjam 0x0,core_uart_ctrl
+ 	setarg mem_h5tx_buf
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+	setarg mem_h5rx_buf
+	hstore 2,core_uart_rrptr
+	store 2,mem_h5rx_rptr
+hci_init_common:
+	set0 mark_ext_patch,mark
+	bpatch patch18_2,mem_patch18
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_UART,pdata
+	hstore 2,core_clkoff
+	call uart_set_baud_by_mem
+	hjam uartclk_dpll,core_uart_clksel
+	hjam uart_ctrl_h4,core_uart_ctrl
+	rtn
+
+hci_sel_init:
+	setarg mem_h5tx_buf_end
+	hstore 2,core_uart_teaddr
+	hfetch 1,core_gpio_sel1
+	or_into 0x07,pdata
+	hstore 1,core_gpio_sel1
+	jam 0xff,mem_ucode_id_local
+	rtn
+	
+	
+hci_rx_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch18_3,mem_patch18
+	hfetch 1,core_uart_status
+	iforce regb
+	bbit0 uart_status_rx_fifo_empty,hci_rx_packet_cont
+	hfetch 2,core_uart_rxitems
+	iforce regc
+	arg 0x44f,temp
+	isub temp,null
+	nrtn zero
+hci_rx_packet_cont:
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	branch hci_rx_h4
+	
+uart_send_byte:
+	hfetcht 1,core_uart_status
+	isolate1 6,temp
+	branch uart_send_byte,true
+	hstore 1,core_uart_txd
+	rtn
+	
+process_hci_cmd:
+	set0 mark_ext_patch,mark
+	bpatch patch18_4,mem_patch18
+	fetch 1,mem_hci_cmd
+	branch process_hci_cmd_cont,blank
+	enable user					/* last command still there */
+	rtn
+process_hci_cmd_cont:
+	ifetch 2,contru
+	iforce alarm				/* alarm is used for sending */
+	iforce queue				/* queue is OCF */
+	ifetch 1,contru		/* skip hci length */
+	iforce temp			/* temp has the length */
+	rshift2 alarm,pdata
+	rshift8 pdata,pdata
+	beq HCI_OGF_VENDOR_SPECIFIC,phci_grp_vendor_specific
+	rtn
+
+
+phci_grp_vendor_specific:
+	set0 mark_ext_patch,mark
+	bpatch patch18_5,mem_patch18
+	deposit queue
+	beq HCI_VENDOR_CMD_RESET,hci_normal_reply
+	beq HCI_VENDOR_CMD_CHIPID,phci_grp_vendor_chipid
+	beq HCI_VENDOR_CMD_BAUD,phci_grp_vendor_baud
+	beq HCI_VENDOR_CMD_PATCH,phci_grp_vendor_patch
+	beq HCI_VENDOR_CMD_PATCH_DONE,phci_grp_vendor_done
+	beq HCI_VENDOR_CMD_ECHO,hci_normal_reply
+	beq HCI_VENDOR_CMD_BDADDR,phci_grp_vendor_bdaddr
+	beq HCI_VENDOR_CMD_ENTER_LPM,phci_grp_vendor_enter_lpm
+	
+	beq HCI_VENDOR_CMD_MEM,phci_grp_vendor_mem
+	beq HCI_VENDOR_CMD_EEP,phci_grp_vendor_eep
+	branch hci_normal_reply
+
+phci_grp_vendor_enter_lpm:
+	call hci_normal_reply
+	call wait_uarttx
+	call gpio_pu_uart_tx
+hci_enter_lpm:
+	call app_put_lpm_wake_lock
+	call app_l2cap_flow_control_enable
+	branch gpio_rx_config_input_with_pu
+
+hci_exit_lpm:
+	jam HCI_RX_READY,mem_hci_lt_rx_state
+	call app_get_lpm_wake_lock
+	call hci_lpm_init
+	branch app_l2cap_flow_control_disable
+	
+phci_grp_vendor_chipid:
+	call hci_get_cmd_complete_ptr
+	hfetch 2,core_chipid
+	istore 2,contwu
+	force 6,loopcnt
+	branch hci_command_complete
+	
+phci_grp_vendor_baud:
+	ifetch 2,contru
+	store 2,mem_baud
+	hstore 2,core_uart_baud
+	rtn
+	
+phci_grp_vendor_patch:
+	//hjam 0x80,core_ucode_ctrl
+	ifetch 1,contru
+	copy pdata,temp //check sum via temp
+	hstore 1,core_ucode_low
+	ifetch 1,contru
+	iadd temp,temp
+	set1 7,pdata
+	hstore 1,core_ucode_ctrl
+	ifetch 1,contru
+	iadd temp,temp
+	copy pdata,loopcnt
+phci_grp_vendor_patch_loop:
+	ifetch 1,contru
+	hstore 1,core_ucode_data
+	iadd temp,temp
+	loop phci_grp_vendor_patch_loop
+	and temp,0xff,temp
+	ifetch 1,contru
+	isub temp,null
+	nbranch phci_grp_vendor_patch_bad,zero
+	branch hci_normal_reply
+
+phci_grp_vendor_done:
+	arg 0x20,loopcnt    //patch switch length
+	arg mem_patch00,contw
+	arg 0,temp //checksum
+phci_grp_vendor_done_loop:
+	ifetch 1,contru
+	istore 1,contw
+	iadd temp,temp
+	loop phci_grp_vendor_done_loop
+	and temp,0xff,temp
+	ifetch 1,contru
+	isub temp,null
+	nbranch phci_grp_vendor_patch_bad,zero
+	hjam 0,core_ucode_ctrl
+	call hci_normal_reply
+	call h4_rx_discard_packet
+	branch soft_reset
+
+phci_grp_vendor_patch_bad:
+	hjam 0,core_ucode_ctrl
+	branch start
+	
+phci_grp_vendor_bdaddr:
+	ifetch 6,contru
+	store 6,mem_lap
+	branch hci_normal_reply
+
+
+phci_grp_vendor_mem:
+	ifetch 1,contru
+	store 1,mem_hci_curr_len
+	copy pdata,loopcnt
+	ifetch 2,contru
+	store 2,mem_hci_curr_target
+	copy pdata,contw
+	call uart_copy_rx_bytes
+	branch hci_normal_reply
+
+
+phci_grp_vendor_eep:
+	ifetch 1,contru
+	store 1,mem_hci_curr_len
+	copy pdata,loopcnt
+	ifetch 2,contru
+	store 2,mem_hci_curr_target
+	arg mem_l2cap_rxbuff1,contw
+	call uart_copy_rx_bytes
+	fetcht 1,mem_hci_curr_len
+	arg mem_l2cap_rxbuff1,rega
+	fetch 2,mem_hci_curr_target
+	branch iicd_write_ota_data
+	
+	
+
+	
+hci_normal_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch18_6,mem_patch18
+	force 4,loopcnt
+hci_command_complete:	/* loopcnt is hci length */
+	call hci_get_payload_ptr
+	force 0x1,pdata
+	istore 1,contwu
+	deposit alarm
+	istore 3,contwu
+	force HCI_EVENT_COMMAND_COMPLETE,queue
+hci_send_event:		/* queue:event code, loopcnt: length */
+	set0 mark_ext_patch,mark
+	bpatch patch18_7,mem_patch18
+	call hci_get_packet_ptr
+	deposit queue
+	istore 1,contwu
+	deposit loopcnt
+	istore 1,contwu
+hci_send_event_raw:
+	force 5,queue
+	increase 2,loopcnt
+hci_send_packet:
+	branch h4_send_packet_event
+
+hci_send_commu_ready_event:
+	force HCI_EVENT_VENDOR_SPECIFIC,queue
+	call hci_get_payload_ptr
+	setarg HCI_VENDOR_EVENT_COMMU_READY
+	istore 1,contwu
+	force 1,loopcnt
+	branch hci_send_event
+
+hci_get_cmd_complete_ptr:
+	force 12,contwu
+	branch hci_get_tx_ptr
+
+hci_get_payload_ptr:
+	force 8,contwu
+	branch hci_get_tx_ptr
+
+hci_get_packet_ptr:
+	force 6,contwu
+hci_get_tx_ptr:
+	branch h4_get_tx_ptr
+
+	
+
+calc_tx_crc16:
+	pulse crc16
+	enable enable_crc
+crcloop:
+	ifetch 1,contwu
+	inject bucket,8
+	loop crcloop
+	enable enable_parity
+	inject bucket,16
+	disable enable_parity
+	disable enable_crc
+	disable crc16
+	byteswap pdata,pdata
+	rtn
+
+
+
+cmd_exit:
+	jam 0,mem_hci_cmd
+	rtn
+cmd_check_plap:
+	fetch 6,mem_hci_plap
+	fetcht 6,mem_plap
+	isub temp,null
+	rtn
+
+	
+	
+//enable ssp master sm
+cmd_pair:
+	fetch 1,mem_op
+	bbit1 op_inrand_req,cmd_pair_passive
+	call tid_initiate
+	jam LMP_IN_RAND,mem_lmo_opcode2
+	branch cmd_exit
+cmd_pair_passive:
+	set0 op_inrand_req,pdata
+	store 1,mem_op
+	call lmp_accept_inrand
+	setarg 0
+	setflag master,smap_lmptid,pdata		
+	store 1,mem_lmo_tid2
+	branch cmd_exit
+	rtn
+cmd_in_sniff:
+	jam LMP_SNIFF_REQ,mem_lmo_opcode2
+	arg mem_sniff_payload,contw
+	setarg 0
+	isolate1 27,clke_bt
+	setflag true,1,pdata		/* use init 2 if bit27 of clke is 1 */
+	istore 1,contw	
+	setarg 0	/* dsniff */
+	istore 2,contw
+	fetch 2,mem_sniff_param_interval	/* tsniff */
+	istore 2,contw
+	fetch 1,mem_sniff_param_attempt	/* attempt */
+	istore 2,contw
+	fetch 1,mem_sniff_param_timeout	/* timeout */
+	istore 2,contw
+	branch cmd_exit
+	
+cmd_exit_sniff:
+	jam LMP_UNSNIFF_REQ,mem_lmo_opcode2
+	branch cmd_exit
+
+hci_idle_dispatch:
+	call gpio_check_uart_state
+	rtn true
+	arg UART_WAKEUP_RX,temp
+	call gpio_get_bit
+	nbranch uart_wake_up,true
+	jam HCI_RX_WAKE,mem_hci_lt_rx_state
+	rtn
+uart_wake_up:
+	fetch 1,mem_hci_lt_rx_state
+	rtnne HCI_RX_WAKE
+	call hci_exit_lpm
+	branch hci_send_commu_ready_event
+	
+	
Index: Receive_Code/program/hid.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/hid.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/hid.prog	(working copy)
@@ -0,0 +1,94 @@
+/**
+* the following API is to send the HID data
+* 
+*/
+
+/**
+* the following API is to process the hid  rx data
+* 
+*/
+//handle the hid data
+
+hid_rx_process:
+	set0 mark_ext_patch,mark
+	bpatch patch19_0,mem_patch19
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	ifetch 1,contr
+	and pdata,0x0f,temp
+	rshift4 pdata,pdata //hidtype
+	beq hid_type_set_idle,hid_rx_process_handshake
+	beq hid_type_set_protocol,hid_rx_process_handshake
+	beq hid_type_data,hid_rx_process_data
+	beq HID_TYPE_SET_REPORT,hid_rx_process_set_report
+	beq HID_TYPE_CONTROL,hid_rx_process_hid_control
+	rtn
+
+hid_rx_process_hid_control:
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,hid_rx_process_virtual_cable_unplug
+	beq HID_CONTROL_P_SUSPEND,hid_rx_process_suspend
+	rtn
+	
+hid_rx_process_virtual_cable_unplug:
+	jam BT_EVT_VIRTUAL_CABLE_UNPLUG,mem_fifo_temp
+	call ui_ipc_send_event
+	fetch 1,mem_device_option
+	rtnne dvc_op_mouse,pdata
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,eeprom_erase_reconn_info
+	rtn
+hid_rx_process_suspend:
+	rtn
+
+hid_rx_process_set_report:
+	call hid_rx_process_data
+	arg 0x01,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_ctrl_remote_cid
+	istore 2,contw
+	setarg 0x00
+	istore 1,contw
+	rtn
+
+hid_rx_process_handshake:
+	arg 1,regA//payload length
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_ctrl_remote_cid
+	istore 2,contw
+	setarg 0
+	istore 1,contw
+	jam 1,mem_ui_data_txbuff_length
+	fetch 1,mem_hid_control_state
+	set1 l2cap_channel_hid_handshake_done
+	store 1,mem_hid_control_state
+	jam BT_EVT_HID_HANDSHAKE,mem_fifo_temp
+	branch ui_ipc_send_event
+
+hid_rx_process_data:
+	ifetch 1,contr
+	beq HID_REPORT_ID_KB,hid_rx_process_data_hid_kb
+	rtn
+
+hid_rx_process_data_hid_kb:
+	copy contr,rega
+	fetch 1,mem_device_option
+	rtnne dvc_op_kb,pdata
+	copy rega,contr
+	ifetch 1,contr
+	store 1,mem_kb_caps_led_status
+	store 1,mem_hid_rx_data
+	fetch 1,mem_kb_led_on_timer
+	nrtn blank
+	jam 2,mem_led_cap_delay_timer
+	rtn
+	
+hid_malloc_tx_buff:
+	call l2cap_malloc
+	copy rega,temp
+	storet 1,mem_ui_data_txbuff_length
+	copy pdata,contw
+	copy rega,pdata
+	istore 2,contw //hid payload length
+	rtn
+
Index: Receive_Code/program/keyboard.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/keyboard.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/keyboard.prog	(working copy)
@@ -0,0 +1,1249 @@
+
+ifdef COMPILE_KEYBOARD
+kb_init:	
+	call kb_clear_keys
+	rtn wake
+	//call module_hci_pairing_just_work_mode
+	call kb_init_common
+	call kb_led_int
+	setarg kb_process_idle
+	store 2,mem_cb_idle_process
+	setarg kb_send_process
+	store 2,mem_cb_bt_process
+	setarg kb_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg kb_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg kb_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+    	setarg kb_before_hibernate
+	store 2,mem_cb_before_hibernate
+	jam 0,mem_sp_flag
+	jam 0,mem_master_sp_flag
+	call kb_init_environment
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,app_bt_start_discovery_short
+kb_check_reconn_target:
+	fetch 1,mem_xrecord_mode
+	beq REC_3_MODE,kb_3_check_reconn_target
+	branch kb_start_discovery
+kb_3_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch app_bt_start_discovery_short,blank
+	branch app_bt_start_reconnect
+
+kb_init_environment:
+	call app_initflag_check
+	branch kb_load_eeprom_param,zero
+	setarg KB_MAP2_STATUS_WIN
+	store 1,mem_kb_current_status
+	call store_current_status
+	fetch 6,mem_master_addr
+	store 6,mem_plap
+	store 6,mem_hci_plap
+	call eeprom_store_bd_reconn_info
+	jam REC_3_MODE,mem_xrecord_mode
+	branch app_initflag_store
+
+kb_load_eeprom_param:
+	call read_current_status
+	branch eeprom_load_reconn_info
+
+
+kb_init_common:
+	set0 mark_ext_patch,mark
+	bpatch patch19_1,mem_patch19
+	hjam 0,core_gpio_oe0
+	hjam 0xff,core_gpio_pu0
+	hjam 0xff,core_gpio_oe1
+	hjam 0xff,core_gpio_oe2
+	hfetch 1,core_gpio_oe3
+	or_into 0x07,pdata
+	hstore 1,core_gpio_oe3
+	hjam 0x00,core_gpio_sel
+	hjam 0x00,core_gpio_sel1
+	hjam 0x00,core_kscn_rowmask
+	setarg KB_KSCAN_COL_1
+	lshift3 pdata,pdata
+	add pdata,KB_KSCAN_ROW_1,pdata
+	hstore 1,core_kscn_rctc
+	hjam 0xff,core_gpio_key0
+	hjam 0xFf,core_gpio_key1
+	hfetch 1,core_gpio_key2
+	or_into 0x01,pdata
+	hstore 1,core_gpio_key2
+	
+	hfetch 1,core_config
+	set1 2,pdata //set keyscan clk source
+	hstore 1,core_config
+	hjam 0x0c,core_kscn_ksctrl
+	hjam 0x30,core_kscn_scancycle_timer_h
+	hfetch 1, core_clkoff+1
+	set0 1,pdata
+	hstore 1,core_clkoff+1
+	hfetch 1, core_kscn_ksctrl
+	set1 0,pdata
+	hstore 1,core_kscn_ksctrl	
+	rtn
+kb_led_int:
+	call kb_led_cap_init
+	call kb_led_num_init
+	branch kb_led_scl_init
+kb_led_cap_init:
+	fetch 1,mem_led_cap_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_cap_gpio
+ 	branch gpio_config_output
+kb_led_num_init:
+	fetch 1,mem_led_num_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_num_gpio
+ 	branch gpio_config_output
+kb_led_scl_init:
+	fetch 1,mem_led_scl_gpio
+	rtneq 0xff
+	fetcht 1,mem_led_scl_gpio
+ 	branch gpio_config_output
+
+kb_led_cap_delay_timer:	
+	fetch 1,mem_led_cap_delay_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_led_cap_delay_timer
+	nrtn blank
+kb_led_capslock:
+	set0 mark_ext_patch,mark
+	bpatch patch19_2,mem_patch19
+	fetch 1,mem_hid_rx_data
+	copy pdata,rega
+	fetcht 1,mem_led_num_gpio
+	isolate1 KB_NUM_LOCK_SELECTED,rega
+	call gpio_out_flag
+	fetcht 1,mem_led_cap_gpio
+	isolate1 KB_CAPS_LOCK_SELECTED,rega
+	call gpio_out_flag
+	fetcht 1,mem_led_scl_gpio
+	isolate1 KB_SCROLL_LOCK_SELECTED ,rega
+	call gpio_out_flag
+	branch kb_auto_disable_mult
+kb_enble_mult_timer:
+	fetch 1,mem_auto_enable_mult_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_auto_enable_mult_timer
+	nrtn blank
+	branch app_lpm_mult_enable
+kb_auto_disable_mult:
+	fetch 1,mem_auto_enable_mult_timer_init
+	store 1,mem_auto_enable_mult_timer
+	branch app_lpm_mult_disable
+	
+kb_led_cap_status:
+	jam 1,mem_led_cap_flag
+	branch bt_send_kb_data_by_report0+8
+
+
+kb_send_process:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	fetch 6,mem_master_addr
+	fetcht 6,mem_plap
+	isub temp,null
+	branch kb_debug_send_keydata,zero
+	fetch 1,mem_pincode_state
+	beq pincode_state_wait_pincode,kb_pincode
+	fetch 1,mem_hid_interrupt_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	fetcht 8,mem_table_last_repory_data0
+	fetch 8,mem_map2_out_report0
+	store 8,mem_table_last_repory_data0
+	isub temp,null
+	ncall bt_send_kb_data_by_report0,zero
+	
+	fetcht 8,mem_table_last_repory_data1
+	fetch 8,mem_map2_out_report1
+	store 8,mem_table_last_repory_data1
+	isub temp,null
+	ncall bt_send_kb_data_by_report1,zero
+	rtn
+
+kb_debug_send_keydata:
+	fetch 1,mem_kb_down
+	beq 0x7f,fn_test
+	fetcht 8,mem_table_last_repory_data0
+	fetch 8,mem_map2_out_report0
+	store 8,mem_table_last_repory_data0
+	isub temp,null
+	rtn zero
+	arg mem_map2_out_report0,contr
+	arg mem_table_temp,rega
+	call fill_kb_send_data
+	arg 10,regA
+	call hid_malloc_tx_buff
+	setarg L2CAP_HID_Interrupt_channel
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	fetch 8,mem_table_temp
+	istore 8,contw
+	rtn
+fn_test:
+	store 8,mem_map2_out_report0
+	branch kb_debug_send_keydata+2
+
+
+bt_send_kb_data_by_report0:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	fetch 1,mem_kb_temp_flag
+	rtnbit1 KEY_SEARCH_M_KEY_FLAG
+	call init_kb_no_data_timer
+	fetch 1,mem_map2_out_report0
+	beq CAPS_LOCK_DATA,kb_led_cap_status
+	jam 0,mem_led_cap_flag
+	arg mem_map2_out_report0,contr
+	arg mem_table_temp,rega
+	call fill_kb_send_data
+	call bt_send_kb_data_by_report0_ptr
+	fetch 8,mem_table_temp
+	istore 8,contw
+	rtn
+
+fill_kb_send_data:
+	arg 0,temp
+	add rega,2,contw
+	arg KB_MAP2_REPORT_LENGTH,loopcnt
+store_key:
+	ifetch 1,contr
+	bbit0 7,not_key_status
+	and pdata,7,queue
+	qset1 temp
+	branch store_key_next
+not_key_status:
+	istore 1,contw
+store_key_next:
+	loop store_key
+	istoret 2,rega
+	rtn
+	
+bt_send_kb_data_by_report1:
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	call init_kb_no_data_timer
+	fetch 1,mem_map2_out_report1
+	beq SFK_ANDROID_MAP,android_search_m_key
+	beq SFK_IOS_SCREENSHOT,ios_screenshot
+	setarg 0
+	store 8,mem_table_temp
+	call fill_kb_send_report1_data
+	
+	fetch 1,mem_kb_temp_flag
+	bbit1 KEY_SEARCH_M_KEY_FLAG,android_search_m_key_releas
+	call bt_send_kb_data_by_report1_ptr
+	fetch 4,mem_table_temp
+	istore 4,contw
+	rtn
+
+fill_kb_send_report1_data:
+	fetch 1,mem_map2_out_report1
+	rtn blank
+	enable true
+	fetch 1,mem_map2_out_report1
+	copy pdata,queue
+	fetch 8,mem_table_temp
+	qsetflag true,pdata
+	store 8,mem_table_temp
+	disable true
+	rtn
+
+init_kb_no_data_timer:
+	fetch 2,mem_kb_no_data_timeout
+	store 2,mem_kb_no_data_timer
+	rtn
+kb_check_no_data_timer:
+	fetch 2,mem_kb_no_data_timer
+	rtn blank
+	fetch 2,mem_kb_no_data_timer
+	increase -1,pdata
+	store 2,mem_kb_no_data_timer
+	nrtn blank
+	branch kb_disconnect
+kb_disconnect:
+	setarg 0
+	store 2,mem_kb_no_data_timer
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,app_bt_disconnect
+	rtn
+
+bt_send_kb_data_by_report0_ptr:
+	arg 10,regA
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	rtn
+bt_send_kb_data_by_report1_ptr:
+	arg 6,regA
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	rtn
+
+android_search_m_key_releas:
+	call bt_send_kb_data_by_report0_ptr
+	setarg 0
+	istore 8,contw
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0
+	istore 4,contw
+	fetch 1,mem_kb_temp_flag
+	set0 KEY_SEARCH_M_KEY_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	rtn
+ios_screenshot:
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0x2002	//Home key,Lock
+	istore 4,contw
+	rtn
+
+android_search_m_key:
+	call bt_send_kb_data_by_report1_ptr
+	setarg 0x40     // search key
+	istore 4,contw
+	call bt_send_kb_data_by_report0_ptr
+	setarg 0
+	istore 2,contw
+	setarg 0x10  	// M key
+	istore 7,contw
+	fetch 1,mem_kb_temp_flag
+	set1 KEY_SEARCH_M_KEY_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	rtn
+
+
+kb_pincode:
+	set0 mark_ext_patch,mark
+	bpatch patch19_3,mem_patch19
+	fetch 1,mem_kb_temp_flag
+	rtnbit0 KEY_EVENT_FLAG
+	set0 KEY_EVENT_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	fetcht 1,mem_pin_length
+	setarg mem_pin
+	iadd temp,contw
+	fetch 1,mem_kb_down
+	branch kb_pincode_rtn,blank
+	beq KB_KCODE_BKSP,kb_pincode_bksp
+	bne KB_KCODE_ENTER,kb_pincode_data
+	storet 1,mem_pin_length
+	branch app_bt_set_pincode
+	
+kb_pincode_rtn:
+	storet 1,mem_pin_length
+	rtn
+kb_pincode_bksp:
+	fetch 1,mem_pin_length
+	rtn blank
+	increase -1,pdata
+	store 1,mem_pin_length
+	arg mem_pin,contw
+	iadd contw,contw
+	setarg 0
+	istore 1,contw
+	enable user2
+	branch kb_send_pin
+kb_pincode_data:
+	sub pdata,KB_KCODE_1_M1,null
+	rtn positive
+	arg 0x30,temp
+	sub pdata,KB_KCODE_0,null
+	nrtn positive
+	branch kb_pincode_0,zero
+	arg KB_KCODE_1_M1,temp
+	isub temp,temp
+	or_into 0x30,temp
+kb_pincode_0:
+	istoret 1,contw
+	fetch 1,mem_pin_length
+	increase 1,pdata
+	store 1,mem_pin_length
+	disable user2
+	branch kb_send_pin
+
+kb_send_pin:
+	fetch 2,mem_hid_int_remote_cid
+	rtn blank
+	arg 3,regA
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0xffa1
+	istore 2,contw
+	setarg 0
+	setflag user2,0,pdata
+	istore 1,contw
+	rtn
+
+
+	
+kb_kscan_check_if_empty:
+	disable user
+	disable user2
+	hfetch 1,core_kscn_kstat
+	rtnbit1 KB_KSCAN_STAT_EMPTY
+
+kb_kscan_check_ghost:
+	hfetch 1,core_kscn_event_num
+	bbit1 KB_KSCAN_KEY_EVENT_STAT,kb_kscan_process_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_GHOST,kb_kscan_process_event
+	hfetch 1,core_kscn_event
+	branch kb_kscan_check_if_empty
+		
+kb_kscan_process_event:
+	enable user
+	enable user2
+	hfetch 1,core_kscn_event_num
+	isolate0 kb_KSCAN_KEY_EVENT_STAT,pdata
+	hfetch 1,core_kscn_event
+	arg mem_kb_map,contr
+	iadd contr,contr
+	ifetch 1,contr
+	bbit1 7,kb_kscan_read_statekey
+	nbranch kb_kscan_release_a_key_data,true	
+	disable user2
+	iforce temp
+	fetch 1,mem_kb_keys
+	sub pdata,4,null
+	nrtn positive
+	copy pdata,rega
+	arg 3,loopcnt
+	arg mem_kb_report_data,contr
+kb_kscan_check_report_data:
+	ifetch 1,contr
+	isub temp,null
+	branch kb_kscan_check_if_empty,zero
+	loop kb_kscan_check_report_data
+kb_kscan_store_a_key_data:
+	copy rega,pdata
+	arg mem_kb_report_data,contw
+	iadd contw,contw
+	istoret 1,contw
+	increase 1,pdata
+	store 1,mem_kb_keys
+ 	hfetch 1,core_kscn_event_num
+	rshift3 pdata,pdata
+	nbranch kb_kscan_check_nextevent, blank
+	branch kb_kscan_prepare_send
+
+kb_kscan_check_nextevent:
+	increase -1,pdata
+	branch kb_kscan_prepare_send,zero
+	hfetch 1,core_kscn_event_num
+	and_into 0x01,pdata
+	beq KB_KSCAN_KEY_PRESS,kb_kscan_check_if_empty                 // key pressed
+	beq KB_KSCAN_KEY_RELEASE,kb_kscan_prepare_send              // key release
+	rtn
+kb_kscan_prepare_send:	
+	enable user2
+	rtn
+	
+kb_kscan_release_a_key_data:
+	and pdata,0xff,temp
+	fetch 1,mem_kb_keys
+	rtn blank
+	iforce loopcnt
+	arg mem_kb_report_data,contr
+kb_kscan_find_same_key_data:
+	ifetch 1,contr
+	isub temp,null
+	branch kb_kscan_release_foundkey,zero
+	loop kb_kscan_find_same_key_data
+	rtn
+
+
+kb_kscan_check_nextevent2:
+ 	hfetch 1,core_kscn_event_num
+	and_into 0x01,pdata
+	beq KB_KSCAN_KEY_PRESS,kb_kscan_prepare_send
+	beq KB_KSCAN_KEY_RELEASE,kb_kscan_check_if_empty
+	rtn
+	
+kb_kscan_read_statekey:
+	and pdata,7,queue
+	fetch 1,mem_kb_state
+	qsetflag true,pdata
+	store 1,mem_kb_state
+	rtn
+
+kb_clear_keys:
+	setarg 0
+	store 8,mem_kb_down
+	store 1,mem_kb_keys
+	rtn
+	
+kb_clean_kscan_fifo:
+	hfetch 1,core_kscn_event_num
+	hfetch 1,core_kscn_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_EMPTY,kb_clean_kscan_fifo
+	setarg 0xff
+	enable user
+	rtn
+
+kb_process_idle:
+	call kb_ui_check_paring_button
+	rtn wake
+kb_process:
+	fetch 1,mem_kb_get_fn_flag
+	call kb_recover_kb_down_data,blank
+	call kb_kscan_fn
+ifdef ROM_RESPIN_OPTIONAL
+	call kb_map2_main
+endif 
+	fetch 1,mem_kb_keys
+	rtn blank
+	call kb_read_gpio
+	fetch 4,mem_kb_gpio_val
+	store 4,mem_kb_gpio_last_val
+	rtn
+
+kb_ui_check_paring_button:
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_RECONNECT
+	fetch 1,mem_kb_temp_flag
+	rtnbit1 CACEL_RECONN_FLAG,pdata
+	fetch 2,mem_kb_down
+	fetcht 2,mem_kb_fn_c
+	isub temp,null
+	branch check_bb_reconn_cancel, zero
+	fetch 2,mem_kb_down
+	fetcht 2,mem_kb_c_fn
+	isub temp,null
+	branch check_bb_reconn_cancel, zero
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,check_bb_reconn_cancel
+	rtn
+
+check_bb_reconn_cancel:
+	fetch 1,mem_kb_temp_flag
+	set1 CACEL_RECONN_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	branch check_51cmd_bb_reconn_cancel
+
+
+kb_read_gpio:
+	hfetch 3,core_gpio_key0
+	iforce regb
+	hfetch 4,core_gpio_pu0
+	iforce rega
+	hfetcht 8,core_gpio_oe0	
+	setarg 0
+	hstore 3,core_gpio_key0
+	nop 100
+	hfetch 1,core_gpio_in
+	store 1,mem_kb_gpio_val
+	hjam 0,core_gpio_pu0
+	hfetch 1,core_gpio_oe3
+	and_into 0xf0,pdata
+	hstore 1,core_gpio_oe3
+	xor_into 0xff,pdata
+	hstore 1,core_gpio_pu3
+	setarg 0xff
+	hstore 3,core_gpio_oe0
+	setarg 0xffff
+	hstore 2,core_gpio_pu1
+	nop 100
+	hfetch 3,core_gpio_in1
+	iand regb,pdata
+	store 3,mem_kb_gpio_val + 1
+	deposit rega
+	hstore 4,core_gpio_pu0
+	hstoret 8,core_gpio_oe0
+	deposit regb
+	hstore 3,core_gpio_key0
+	rtn	
+
+kb_pairing_button_check:
+	fetch 1,mem_scan_mode// rtn when scan_mode =03 
+	nrtn blank
+	fetch 1,mem_app_handshake_flag//rtn when handshake success 
+	nrtn blank
+	fetch 1,mem_ui_button_timer// rtn when timer >3s
+	rtn blank
+	fetch 1,mem_ui_button_last_state//rtn when pairing button press
+	nrtn blank
+	branch app_enter_hibernate
+	
+kb_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_HID_CONNECTED,kb_hid_connected
+	beq BT_EVT_PINCODE_REQ,kb_process_pincode
+	beq BT_EVT_HID_HANDSHAKE,kb_bt_hid_handshake
+	beq BT_EVT_BUTTON_LONG_PRESSED,kb_bb_event_discovery_btn
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	beq BT_EVT_BB_CONNECTED,kb_stop_discovery
+	beq BT_EVT_BB_DISCONNECTED,kb_bb_disconnected
+	beq BT_EVT_RECONN_FAILED,kb_bb_event_reconn_failed
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,kb_bb_event_reconn_failed
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,kb_bb_event_timer
+	rtn
+
+
+kb_bb_event_timer:
+	set0 mark_ext_patch,mark
+	bpatch patch19_4,mem_patch19
+	storet 1,mem_app_evt_timer_count
+kb_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call kb_led_cap_delay_timer
+	call kb_check_hid_handshake_timer	
+	call kb_enble_mult_timer
+	call kb_check_no_data_timer
+	call select_system_led_timer
+	branch kb_bb_event_100ms_loop
+
+kb_bb_event_reconn_failed:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,kb_start_discovery
+	fetch 1,mem_kb_temp_flag
+	bbit0,CACEL_RECONN_FLAG,app_bb_hibernate
+	fetch 1,mem_kb_temp_flag
+	set0 CACEL_RECONN_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_RECONNECT,pdata
+	store 2, mem_ui_state_map
+	rtn
+
+kb_bb_disconnected:
+	set0 mark_ext_patch,mark
+	bpatch patch19_5,mem_patch19
+	call kb_bb_discon_clear_stack
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+ifdef DEBUG_LIGHT_STATE
+	store 1,0x4800
+endif
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	bbit1 APP_DISC_AFTER_PAIRING,kb_event_light_state_pairing
+	bbit1 APP_DISC_AFTER_RECONN,kb_event_light_state_reconn
+	branch kb_start_discovery
+kb_event_light_state_pairing:
+	bbit1 APP_DISC_AFTER_HANDSHAKE,kb_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,kb_event_light_state_hibernate
+	branch kb_start_discovery
+kb_event_light_state_reconn:
+kb_event_light_state_hibernate:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,kb_start_discovery
+	branch app_bb_hibernate
+	
+kb_bb_discon_clear_stack:
+	jam APP_HANDSHAKE_NULL,mem_app_handshake_flag	
+	jam 0,mem_kb_debug_sm
+	rtn
+
+	
+kb_check_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+	branch kb_bt_hid_handshake
+
+
+kb_bb_event_discovery_btn:
+	setarg 0
+	store 2,mem_kb_direct_timer
+	store 1,mem_pin_length
+	call led_cap_darking
+	call kb_3_0_bb_event_discovery_btn
+	call app_lpm_mult_disable
+	branch kb_start_discovery
+
+led_cap_darking:
+	jam 1,mem_led_cap_gpio_status
+	fetcht 1,mem_led_cap_gpio
+	branch gpio_out_inactive
+
+kb_3_0_bb_event_discovery_btn:
+	set0 mark_ext_patch,mark
+	bpatch patch19_6,mem_patch19
+	fetch 2,mem_ui_state_map
+	isolate1 UI_STATE_BT_RECONNECT,pdata
+	call app_bt_reconnect_cancel,true
+	fetch 2,mem_discovery_timeout
+	store 2,mem_discovery_timeout_timer_count	
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BY_BUTTON,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,app_bt_disconnect
+	rtn
+
+	
+kb_stop_discovery:
+	call app_led_stop_blink
+	setarg 0
+	store 2,mem_kb_discovery_timer
+	branch app_bt_stop_discovery
+
+kb_start_discovery:
+	call app_lpm_mult_disable
+	fetch 2,mem_discovery_timeout
+	store 2,mem_kb_discovery_timer
+	call app_bt_start_discovery
+	jam 0,mem_kb_led_on_timer
+	//jam 5,mem_led_device_blink_count
+	call app_led_start_blink
+	call kb_clean_kscan_fifo
+	branch kb_clear_keys
+	
+kb_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+	
+kb_process_pincode:
+	jam 0,mem_hid_handshake_timer_count
+	jam 0,mem_pin_length
+	call kb_clear_keys
+	branch kb_clean_kscan_fifo
+
+
+kb_before_hibernate:
+	fetch 1,mem_kb_led_on_timer
+	branch kb_before_hibernate_cont,blank
+	arg 320,temp
+	imul32 temp,temp
+	copy clkn_bt,pdata
+	iadd temp,temp
+kb_before_hibernate_wait:
+	copy clkn_bt,pdata
+	isub temp,null
+	nbranch kb_before_hibernate_wait,positive
+kb_before_hibernate_cont:
+	fetcht 1,mem_led_power_gpio
+ 	call gpio_out_inactive
+ 	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+kb_wake_common:
+	hjam 0x00,core_gpio_key0
+	hjam 0x00,core_gpio_key1
+	hfetch 1,core_gpio_key2
+	and_into 0xf0,pdata
+	hstore 1,core_gpio_key2
+	setarg 0x00
+	store 4,mem_gpio_wakeup_high
+	setarg 0xff
+	fetcht 1,mem_ui_button_gpio
+	copy temp,queue
+	qset1 pdata
+	store 4,mem_gpio_wakeup_low
+	rtn
+kb_process_lpm_before:
+	call kb_wake_common
+	fetch 1,mem_lpm_current_mult
+	nrtn blank
+	jam 0,mem_gpio_wakeup_low		// no key wakeup when key is down
+	rtn
+
+kb_hid_connected:
+ 	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	call kb_clean_kscan_fifo
+	branch kb_clear_keys
+
+	
+kb_bt_hid_handshake:
+	set0 mark_ext_patch,mark
+	bpatch patch19_7,mem_patch19
+  	call ui_led_off
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call kb_clean_kscan_fifo
+	call kb_clear_keys
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	store 1,mem_hid_handshake_timer_count
+	branch app_bt_enter_sniff
+
+
+store_current_status:
+	fetch 1,mem_kb_current_status
+	and_into 0x7,pdata
+	store 1,mem_store_current_status
+	arg 1,temp
+	arg mem_store_current_status,rega
+	setarg EEPROM_SYSTEM_FALG
+	branch  iicd_write_eep
+
+
+read_current_status:
+	arg 1,temp
+	arg mem_store_current_status,rega
+	setarg EEPROM_SYSTEM_FALG
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	call  iicd_read_eep
+	fetch 1,mem_store_current_status
+	copy pdata,regb
+	and_into 0x0f,pdata
+	beq 0x0f,kb_current_status_regroup
+	copy regb,pdata
+	store 1,mem_kb_current_status
+	rtn
+
+
+kb_kscan_release_foundkey:
+	add contr,-1,contw
+	call memcpy
+	fetch 1,mem_kb_keys
+	increase -1,pdata
+	store 1,mem_kb_keys
+	fetch 1,mem_kb_release_fn_data
+	beq 0x7f,kb_clear_fn_lock_flag
+	branch kb_kscan_check
+
+kb_recover_kb_down_data:
+	fetch 8,mem_kb_down
+	store 8,mem_kb_down_test
+	branch kb_kscan_check
+
+kb_kscan_fn:
+	fetch 1,mem_kb_keys
+	branch kb_kscan_no_data,blank
+	copy pdata,regb
+	fetch 5,mem_kb_down
+	copy pdata,temp
+kb_kscan_fn_loop:
+	copy temp,pdata
+	compare 0x7f,pdata,0xff
+	branch kb_get_fn,true
+	increase -1,regb
+	setarg mem_kb_down_regroup
+	iadd regb,contw
+	copy temp,pdata
+	istore 1,contw
+	copy temp,pdata
+	rshift8 pdata,pdata
+	copy pdata,temp
+	nbranch kb_kscan_fn_loop,blank
+	fetch 5,mem_kb_down_regroup
+	call kb_down_data,blank
+	branch kb_kscan_check
+kb_get_fn:
+	setarg 1
+	store 1,mem_kb_get_fn_flag
+	branch kb_kscan_fn_loop+8
+
+select_system_led_timer:
+	fetch 1,mem_select_system_led_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_select_system_led_timer
+	nrtn blank
+	branch ui_led_blink_stop
+
+
+kb_current_status_regroup:
+	copy regb,pdata
+	and_into KB_MAP2_STATUS_WIN,pdata
+	store 1,mem_kb_current_status
+	rtn
+kb_clear_fn_lock_flag:
+	jam 0,mem_kb_get_fn_flag
+	call kb_down_data
+	branch kb_kscan_check
+
+
+kb_kscan_check:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_1,mem_patch1a
+	hfetch 1,core_kscn_kstat
+	rtnbit1 KB_KSCAN_STAT_EMPTY
+	hfetch 1,core_kscn_event_num
+	bbit1 KB_KSCAN_KEY_EVENT_STAT,kb_kscan_read_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_GHOST,kb_kscan_read_event
+	hfetch 1,core_kscn_event
+	branch kb_kscan_check	
+
+kb_kscan_no_data:
+	call kb_clear_data
+	branch kb_kscan_check
+	
+kb_down_data:
+	fetch 8,mem_kb_down
+	store 8,mem_kb_down_test
+	rtn
+
+kb_clear_data:
+	setarg 0
+	store 1,mem_kb_get_fn_flag
+	store 5,mem_kb_down_regroup
+	store 8,mem_kb_down
+	rtn
+	
+kb_kscan_read_event:
+	fetch 1,mem_kb_temp_flag
+	set1 KEY_EVENT_FLAG,pdata
+	store 1,mem_kb_temp_flag
+	//call p_hci_log
+	hfetch 1,core_kscn_event_num
+	isolate1 kb_KSCAN_KEY_EVENT_STAT,pdata
+	store 1,mem_kscan_event_num_last
+	hfetch 1,core_kscn_event
+	store 1,mem_kscn_event_last
+	arg mem_kb_map,contr
+	iadd contr,contr
+	ifetch 1,contr
+	fetcht 1,mem_kb_keys
+	sub temp,4,null
+	nbranch kb_kscan_check,positive
+	iforce contr
+	setarg mem_kb_down
+	iadd temp,contw
+	deposit contr
+	istore 1,contw
+	increase 1,temp
+	storet 1,mem_kb_keys
+	branch kb_kscan_fn
+
+
+
+/*
+****************************************************************************************************
+* map2_main
+*
+****************************************************************************************************
+*/
+
+ifdef ROM_RESPIN_OPTIONAL
+	//input: mem_kb_down
+	//output:mem_map2_out_report0,  mem_map2_out_report1,.....
+kb_map2_main:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_0,mem_patch1a
+	setarg 0
+	store 8,mem_map2_out_report0
+	store 8,mem_map2_out_report1
+
+	//call p_hci_log
+	call kb_down_data_regroup	//regroup mem_kb_down
+	
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,kb_map2_main_conn
+	//bbit1 UI_STATE_BLE_CONNECTED,p_kb_map2_main_conn
+kb_map2_main_unconn:
+	fetch 1,mem_kb_current_status
+	set0 KB_MAP2_STATUS_BIT_CONN,pdata
+	set1 KB_MAP2_STATUS_BIT_UNCONN,pdata
+	store 1,mem_kb_current_status
+	branch kb_map2_main_start
+kb_map2_main_conn:
+	fetch 1,mem_kb_current_status
+	set1 KB_MAP2_STATUS_BIT_CONN,pdata
+	set0 KB_MAP2_STATUS_BIT_UNCONN,pdata
+	store 1,mem_kb_current_status
+	
+//	call p_kb_down_data_regroup	//regroup mem_kb_down
+kb_map2_main_start:
+	setarg mem_kb_map2_temp_end
+	arg mem_kb_map2_temp_start,contw
+	isub contw,loopcnt
+	call clear_mem
+kb_map2_main_loop:
+	//1. get VK
+	fetch 1,mem_kb_vk_offset
+	arg mem_kb_down_test,temp
+	iadd temp,contr
+	ifetch 2,contr
+	branch kb_map2_main_end,blank  // end of vk array
+	store 2,mem_kb_current_vk	
+
+	//2. compare VK with map2
+	setarg mem_kb_map2
+	store 2,mem_kb_map2_current_cell_ptr
+	disable user
+kb_map2_compare_loop:
+	//2.2 get map ptr in rega
+	call kb_map2_get_ptr
+	ifetch 3,rega
+	branch kb_map2_main_next_vk,blank   /// end of map2
+	store 3,mem_kb_map2_vk
+	fetch 1,mem_kb_map2_vk+2
+	branch kb_map2_compare_2bytes,blank
+	jam 3,mem_kb_vk_processed_cnt // 3 vks matched
+	fetcht 3,mem_kb_map2_vk
+	fetch 3,mem_kb_current_vk
+	isub temp,null
+	branch kb_map2_compare_vk_match,zero
+	branch kb_map2_compare_next
+kb_map2_compare_2bytes:
+	fetch 1,mem_kb_map2_vk+1
+	branch kb_map2_compare_1byte,blank
+	jam 2,mem_kb_vk_processed_cnt // 2 vks matched
+	fetcht 2,mem_kb_map2_vk
+	fetch 2,mem_kb_current_vk
+	isub temp,null
+	branch kb_map2_compare_vk_match,zero
+	branch kb_map2_compare_next
+kb_map2_compare_1byte:
+	jam 1,mem_kb_vk_processed_cnt // 1 vks matched
+	fetcht 1,mem_kb_map2_vk
+	fetch 1,mem_kb_current_vk
+	isub temp,null
+	branch kb_map2_compare_vk_match,zero
+	// 2.4 not matched ,compare next one
+kb_map2_compare_next:	
+	disable user
+	call kb_map2_get_ptr
+	add rega,5,contr
+	ifetch 1,contr    // length
+	iadd contr,pdata
+	store 2,mem_kb_map2_current_cell_ptr// next map cell
+	branch kb_map2_compare_loop
+	
+kb_map2_main_next_vk:
+	//3. process vk offset
+	fetch 1,mem_kb_vk_offset
+	fetcht 1,mem_kb_vk_processed_cnt
+	iadd temp,pdata
+	store 1,mem_kb_vk_offset
+
+	//4.process next vk if vk matched with map2
+	branch kb_map2_main_loop,user // vk matched map2,then next vk
+
+	//5.put this vk into report if vk not matched with map2
+	arg mem_kb_current_vk,rega
+	arg mem_map2_out_report0,contr
+	arg 1,regb
+	call kb_map2_put_vk_into_report
+	branch kb_map2_main_loop// vk not matched map2,then next vk
+
+kb_map2_main_end:
+	fetcht 1,mem_kb_device_button_last
+	fetch 1,mem_kb_device_button
+	store 1,mem_kb_device_button_last
+	isub temp,regb
+	rtn zero
+	beq KB_DEVICE_BUTTON_UP,kb_map2_device_button_up
+	copy temp,pdata  //last
+	beq KB_DEVICE_BUTTON_UP,kb_map2_device_button_down
+	rtnne KB_DEVICE_BUTTON_ALREADY_LONG
+	jam KB_DEVICE_BUTTON_ALREADY_LONG,mem_kb_device_button_last
+	rtn
+	
+
+kb_map2_compare_vk_match:
+	//2.3 Compare status
+	increase 3,rega
+	ifetch 1,rega   //status
+	fetcht 1,mem_kb_current_status
+	iand temp,temp
+	and  temp,0x0f,null
+	branch kb_map2_compare_next,zero // status not match
+	and  temp,0xf0,null
+	branch kb_map2_compare_next,zero // status not match
+	//2.4 already matched with map2, check the fuction
+	enable user // key map2 matched.
+	call kb_map2_compare_fuction
+	branch kb_map2_main_next_vk,user
+	branch kb_map2_compare_next
+	
+kb_map2_compare_fuction:
+	add rega,1,contr
+	ifetch 1,contr
+	beq KB_MAP2_FUNC_REPORT0,kb_map2_report0
+	beq KB_MAP2_FUNC_REPORT1,kb_map2_report1
+	beq KB_MAP2_FUNC_WIN,kb_map2_win
+	beq KB_MAP2_FUNC_ANDROID,kb_map2_android
+	beq KB_MAP2_FUNC_IOS,kb_map2_ios
+	beq KB_MAP2_FUNC_DEV1,kb_map2_dev1
+	beq KB_MAP2_FUNC_DEV2,kb_map2_dev2
+	beq KB_MAP2_FUNC_DEV3,kb_map2_dev3
+	rtneq KB_MAP2_FUNC_IGNORE
+	disable user
+	rtn
+
+	
+kb_map2_report0:
+	arg mem_map2_out_report0,regc
+	branch kb_map2_report_in
+	
+kb_map2_report1:
+	arg mem_map2_out_report1,regc
+	//fall through
+kb_map2_report_in:
+	ifetch 1,contr
+	copy pdata,regb
+	copy contr,rega
+	copy regc,contr
+	branch kb_map2_put_vk_into_report
+	
+kb_map2_win:
+	arg KB_MAP2_STATUS_BIT_WIN,queue
+	branch kb_map2_set_system
+	
+kb_map2_android:
+	arg KB_MAP2_STATUS_BIT_ANDROID,queue
+	branch kb_map2_set_system
+	
+kb_map2_ios:
+	arg KB_MAP2_STATUS_BIT_IOS,queue
+	//branch kb_map2_set_system
+	//fail through
+kb_map2_set_system:
+	call ui_led_blink_start
+	jam 5,mem_select_system_led_timer
+	fetch 1,mem_kb_current_status
+	and_into 0xf8,pdata
+	qset1 pdata
+	store 1,mem_kb_current_status
+	call store_current_status
+	rtn
+
+
+
+kb_map2_dev1:
+	jam KB_DEVICE_BUTTON_DEVICE1,mem_kb_device_button
+	//jam 1,mem_device_flag
+	rtn
+kb_map2_dev2:
+	jam KB_DEVICE_BUTTON_DEVICE2,mem_kb_device_button
+	//jam 2,mem_device_flag
+	rtn
+kb_map2_dev3:
+	jam KB_DEVICE_BUTTON_DEVICE3,mem_kb_device_button
+	//jam 3,mem_device_flag
+	rtn
+
+
+kb_map2_device_button_up:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BTN_DOWN,pdata
+	store 2,mem_ui_state_map
+	
+	copy temp,pdata
+	rtneq KB_DEVICE_BUTTON_ALREADY_LONG
+	fetch 1,mem_kb_temp_flag
+	set0 CACEL_RECONN_FLAG,pdata
+	store 1,mem_kb_temp_flag
+
+
+	
+	branch kb_map2_device_button_timer_stop
+	copy temp,pdata
+
+	//beq KB_DEVICE_BUTTON_DEVICE1,p_kb_map2_reconn_device1
+	//beq KB_DEVICE_BUTTON_DEVICE2,p_kb_map2_reconn_device2
+	//beq KB_DEVICE_BUTTON_DEVICE3,p_kb_map2_reconn_device3
+	rtn
+kb_map2_device_button_down:
+	call app_bt_sniff_exit
+	jam 40,mem_kb_device_button_timer // 40 x 100ms
+ 	rtn
+kb_map2_device_button_timer_stop:
+	jam 0,mem_kb_device_button_timer
+	rtn
+
+kb_map2_reconn_device1:
+	//jam 1,mem_device_flag
+
+	branch kb_map2_device_button_timer_stop
+kb_map2_reconn_device2:
+	//jam 2,mem_device_flag
+
+	branch kb_map2_device_button_timer_stop
+kb_map2_reconn_device3:
+	//jam 3,mem_device_flag
+
+	branch kb_map2_device_button_timer_stop
+	
+kb_map2_get_ptr:
+	fetch 2,mem_kb_map2_current_cell_ptr
+	copy pdata,rega
+	rtn
+	
+	//input:   report prt via contr
+	//input:  report data ptr via rega
+	//input:  report data len via regb
+kb_map2_put_vk_into_report:
+	arg KB_MAP2_REPORT_LENGTH,loopcnt
+kb_map2_put_vk_into_report_loop:
+	ifetch 1,contr
+	branch kb_map2_put_vk_into_report_do,blank
+	loop kb_map2_put_vk_into_report_loop
+	rtn //report full?
+kb_map2_put_vk_into_report_do:
+	add contr,-1,contw
+	copy rega,contr
+	copy regb,loopcnt
+	branch memcpy
+
+
+
+kb_down_data_regroup:
+	fetch 1,mem_kb_get_fn_flag
+	branch kb_down_data, blank
+	fetch 5,mem_kb_down_regroup
+	copy pdata,temp
+	arg 0,regb
+	arg 4,loopcnt
+kb_down_data_regroup_loop:	
+	copy temp,pdata
+	rshift8 pdata,pdata
+	lshift8 pdata,pdata
+	or_into 0x7f,pdata 
+	copy pdata,temp
+	setarg mem_kb_down_test
+	iadd regb,contw
+	copy temp,pdata
+	istore 2,contw
+	increase 2,regb
+	copy temp,pdata
+	rshift8  pdata,pdata
+	copy pdata,temp
+	loop kb_down_data_regroup_loop
+	setarg 0
+	store 5,mem_kb_down_regroup
+	rtn
+
+
+
+
+kb_kscan_release_key_data:
+	and pdata,0xff,temp
+	store 1,mem_kb_release_fn_data
+	fetch 1,mem_kb_keys
+	branch kb_kscan_check,blank
+	iforce loopcnt
+	arg mem_kb_down,contr
+kb_kscan_find_same_key:
+	ifetch 1,contr
+	isub temp,null
+	branch kb_kscan_release_foundkey,zero
+	loop kb_kscan_find_same_key
+	branch kb_kscan_check
+
+endif
+
+	
+else
+kb_init:
+	branch assert
+endif
Index: Receive_Code/program/l2cap.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/l2cap.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/l2cap.prog	(working copy)
@@ -0,0 +1,1973 @@
+/************************************/
+/*initialize L2CAP related variables*/
+/************************************/
+l2cap_init:
+	branch l2cap_init_wake,wake
+l2cap_init_work:
+	setarg mem_l2cap_xmem_end
+	arg mem_l2cap_xmem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+l2cap_init_wake:	
+	set0 mark_ext_patch,mark
+	bpatch patch1a_2,mem_patch1a
+	setarg mem_sdp_mem_end
+	arg mem_sdp_mem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+	setarg mem_l2cap_mem_end
+	arg mem_l2cap_mem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+	branch l2cap_lpm_load_txbuf
+	
+process_rx_l2cap_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_3,mem_patch1a
+	copy contr,temp
+	//call l2cap_malloc_is_fifo_full
+	//nrtn blank
+	copy temp,contr
+	ifetch 2,contr
+	store 2,mem_l2cap_rx_pkt_length
+	ifetch 2,contr
+	store 2,mem_l2cap_rx_cid
+	deposit contr
+	store 2,mem_l2cap_payload_ptr
+	fetch 1,memui_reconnect_mode
+	beq NO_RECONNECTION,l2cap_rx_multiplexing
+	branch ml2cap_rx_multiplexing
+
+l2cap_rx_multiplexing:
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	set0 mark_ext_patch,mark
+	bpatch patch1a_4,mem_patch1a
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,l2cap_call_proc_signal
+l2cap_rx_multiplexing0:
+	beq L2CAP_SDP_channel,l2cap_call_proc_sdp
+	beq L2CAP_RFCOMM_channel,l2cap_call_proc_rfcomm
+	beq L2CAP_HID_Control_channel,l2cap_call_proc_hid
+	beq L2CAP_HID_Interrupt_channel,l2cap_call_proc_hid
+	branch l2cap_rx_reset_state
+
+l2cap_check_map:
+//	call l2cap_malloc_is_fifo_full
+//	nrtn blank
+	set0 mark_ext_patch,mark
+	bpatch patch1a_5,mem_patch1a
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	beq 0,set_pdata_0
+	beq 1,set_pdata_0
+	beq 2,set_pdata_0
+	beq 3,set_pdata_0
+	beq 0x81,set_pdata_0
+	beq 0xc0,set_pdata_0
+	beq 0x80,set_pdata_0
+	beq 0x40,set_pdata_0
+	rtn
+
+set_pdata_0:
+	setarg 0
+	rtn
+
+
+l2cap_call_proc_signal:
+	call l2cap_check_map
+	nrtn blank
+l2cap_call_proc_signal0:
+	call l2cap_malloc_signal_channel
+	call l2cap_process_signal_pkt
+	fetcht 2,mem_l2cap_signal_tx_length
+	branch l2cap_call_proc_no_reply,blank
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	branch l2cap_rx_reset_state
+	
+l2cap_call_proc_sigal_pending:
+	fetch 1,mem_l2cap_pending_item
+	rtn blank
+	copy pdata,rega
+	set0 mark_ext_patch,mark
+	bpatch patch1a_6,mem_patch1a
+	fetch 4,mem_l2cap_sdpres_delay_time
+	arg 0x100,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nrtn positive
+	jam 0,mem_l2cap_pending_item
+	copy rega,pdata
+	beq L2CAP_SDP_channel,l2cap_sdp_conn_succ
+	branch assert
+l2cap_sdp_conn_succ:
+	arg 0,debug
+	call l2cap_malloc_signal_channel
+	call restore_l2cap_req_param
+	call l2cap_get_signal_tx_payload
+	call save_cont_pointers
+	call send_connection_sdp_res
+	call l2cap_get_signal_tx_buff
+	//fetch 2,mem_l2cap_signal_tx_length
+	setarg 0x000c
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	branch l2cap_rx_reset_state
+
+
+
+l2cap_reset_sdp_map:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_7,mem_patch1a
+	fetch 2,mem_sdp_tx_pkt_length
+	increase 4,pdata
+	rshift4 pdata,pdata
+	rshift3 pdata,pdata
+	add pdata,1,temp ///temp: how many128
+	arg mem_tx_fifo3,contr
+	ifetch 3,contr
+	rtn blank
+	store 3,mem_tx_fifo_map_temp
+	fetch 1,mem_tx_fifo_map_temp
+	copy pdata,rega
+	call check_l2cap_map
+	copy regb,pdata
+	store 1,mem_tx_fifo3
+	rtn
+
+check_l2cap_map:
+	arg 0,queue
+	arg 0,regb
+
+check_l2cap_map_loop:
+	sub queue,7,null
+	nrtn positive
+	qisolate1 rega
+	branch check_l2cap_map_used,true
+	branch check_l2cap_map_used2
+
+check_l2cap_map_used:
+	copy temp,pdata
+	branch check_l2cap_map_used2,blank
+	qset1 regb
+	increase -1,temp
+
+check_l2cap_map_used2:
+	increase 1,queue
+	branch check_l2cap_map_loop
+
+l2cap_call_proc_sdp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank// not process this packet until fifo empty
+	call l2cap_check_map
+	nrtn blank
+	call l2cap_malloc_sdp_channel
+	call sdp_process
+	call l2cap_reset_sdp_map
+	branch l2cap_call_proc_sdp_common
+
+	
+ml2cap_call_proc_sdp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank// not process this packet until fifo empty
+	call l2cap_malloc_sdp_channel
+	call sdp_process
+l2cap_call_proc_sdp_common:
+	call l2cap_get_sdp_tx_buff
+	fetch 2,mem_sdp_tx_pkt_length
+	branch l2cap_call_proc_no_reply,blank
+	istore 2,contw
+	fetch 2,mem_sdp_remote_cid
+	istore 2,contw
+	branch l2cap_rx_reset_state
+
+l2cap_call_proc_hid:
+	call hid_rx_process
+	branch l2cap_rx_reset_state
+
+l2cap_call_proc_rfcomm:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_0,mem_patch1b
+	jam RFCOMM_MALLOC_SUCCEED,mem_rfcomm_malloc_fail_flag
+	call rfcomm_rx_process
+	fetch 1,mem_rfcomm_malloc_fail_flag
+	rtneq RFCOMM_MALLOC_FAIL
+	branch l2cap_rx_reset_state
+l2cap_call_proc_no_reply:
+	call l2cap_malloc_discard
+	//fall through
+l2cap_rx_reset_state:
+	setarg 0
+	store 2,mem_l2cap_rx_pkt_length
+	store 2,mem_l2cap_rx_cid
+	jam L2CAP_RX_DONE,mem_l2cap_rx_done
+	rtn
+/* To process one L2CAP signalling pkt consisting of 1 or more signalling commands.	*/
+l2cap_process_signal_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_1,mem_patch1b
+	call l2cap_get_signal_tx_payload
+	force 0,regB
+	fetch 2,mem_l2cap_rx_pkt_length
+	copy pdata,regC
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+l2cap_process_signal_pkt_loop:
+	call l2cap_process_one_signal
+	deposit regC
+	increase -4,regC
+	increase -4,pdata
+	nbranch l2cap_process_signal_pkt_loop,blank
+	copy regB,pdata
+	store 2,mem_l2cap_signal_tx_length
+	rtn
+
+l2cap_process_one_signal:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_2,mem_patch1b
+	ifetch 1,contr
+	beq signal_cmd_reject,l2cap_proc_signal_cmd_reject
+	beq signal_connect_req,l2cap_proc_signal_connect_req
+	beq signal_connect_rsp,l2cap_proc_signal_connect_rsp
+	beq signal_config_req,l2cap_proc_signal_config_req
+	beq signal_config_rsp,l2cap_proc_signal_config_rsp
+	beq signal_disconnect_req,l2cap_proc_signal_disconnect_req
+	beq signal_disconnect_rsp,l2cap_proc_signal_disconnect_rsp
+	beq signal_echo_req,l2cap_proc_signal_echo_req
+	beq signal_echo_rsp,l2cap_proc_signal_echo_rsp
+	beq signal_info_req,l2cap_proc_signal_info_req
+	beq signal_info_rsp,l2cap_proc_signal_info_rsp
+	call l2cap_reject_command
+l2cap_process_one_signal_rtn:
+	rtn
+
+l2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	setarg signal_info_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1, contw
+	ifetch 2,contr 
+l2cap_proc_signal_info_req_reply:
+	beq L2CAP_SIG_EXT_FEATRUE,l2cap_proc_signal_info_req_ext
+	beq L2CAP_SIG_FIX_FEATRUE,l2cap_proc_signal_info_req_fix
+	rtn
+l2cap_proc_signal_info_req_ext:
+	setarg 0x020008
+	istore 6, contw
+	setarg 0x0280
+	istore 4, contw
+	force 12,pdata
+	branch l2cap_proc_signal_info_req_common
+l2cap_proc_signal_info_req_fix:
+	setarg 0x3000c
+	istore 6, contw
+	setarg 0x0006
+	istore 8, contw
+	force 16,pdata
+l2cap_proc_signal_info_req_common:
+	iadd regb,regb
+	branch l2cap_process_one_signal_rtn
+	
+ml2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	ifetch 2,contr
+	store 2,mem_temp
+	copy regc,pdata
+	isub rega,regc 
+	call l2cap_get_signal_tx_payload
+	setarg signal_info_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw 
+	fetch 2,mem_temp
+	branch l2cap_proc_signal_info_req_reply
+
+
+/*  Respond to the command reject signal sent from the remote BD.   */
+l2cap_proc_signal_cmd_reject:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	iadd contr,contr
+	copy regC,pdata
+	isub regA,regC
+l2cap_proc_signal_cmd_reject_rtn:
+	branch l2cap_process_one_signal_rtn
+/* Respond to an L2CAP connection request from remote BD. (generate a connection_rsp)	*/
+l2cap_proc_signal_connect_req:
+	call save_cont_pointers
+	//fetch 6,mem_inquiry_bd_addr
+  	//store 6,mem_master_paged_bd_addr
+  	call load_cont_pointers
+	arg 0,debug
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	ifetch 2,contr
+	copy pdata,temp //PSM
+	ifetch 2,contr
+	copy pdata,timeup
+	set0 mark_ext_patch,mark
+	bpatch patch1b_3,mem_patch1b
+	copy temp,pdata
+	beq PSM_SDP,l2cap_proc_signal_connect_req_sdp
+	beq PSM_RFCOMM,l2cap_proc_signal_connect_req_rfcomm
+	beq PSM_HID_control,l2cap_proc_signal_connect_req_hid_ctrl
+	beq PSM_HID_interrupt,l2cap_proc_signal_connect_req_hid_int
+	call l2cap_reject_command
+	branch l2cap_proc_signal_connect_req_rtn
+
+l2cap_proc_signal_connect_req_sdp:
+	call save_cont_pointers
+	arg L2CAP_SDP_channel,temp
+	fetch 2,mem_sdp_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	copy clkn_bt,pdata
+	store 4,mem_l2cap_sdpres_delay_time
+	call store_l2cap_req_param
+	branch  send_connection_pending
+
+store_l2cap_req_param:
+	storet 2,mem_psm
+	deposit timeup
+	store 2,mem_scid
+	deposit rega
+	store 2,mem_cmd_length
+	deposit regb
+	store 2,mem_tt2
+	deposit regc
+	store 2,mem_tt3
+	deposit queue
+	store 2,mem_id
+	rtn
+
+restore_l2cap_req_param:
+	fetcht 2,mem_psm
+	fetch 2,mem_scid
+	copy pdata,timeup
+	fetch 2,mem_cmd_length
+	copy pdata,rega
+	fetch 2,mem_tt2
+	copy pdata,regb
+	fetch 2,mem_tt3
+	copy pdata,regc
+	fetch 2,mem_id
+	copy pdata,queue
+	rtn
+
+l2cap_proc_signal_connect_req_rfcomm:
+	call save_cont_pointers
+	setarg L2CAP_RFCOMM_channel
+	arg L2CAP_RFCOMM_channel,temp
+	fetch 2,mem_RFCOMM_remote_CID
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_RFCOMM_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_rfcomm_state
+	branch send_connection_res
+l2cap_proc_signal_connect_req_hid_ctrl:
+	call save_cont_pointers
+	arg L2CAP_HID_Control_channel,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_control_state
+	branch send_connection_res
+l2cap_proc_signal_connect_req_hid_int:
+	call save_cont_pointers
+	deposit clke
+	arg L2CAP_HID_Interrupt_channel,temp
+	fetch 2,mem_hid_int_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_interrupt_state
+	branch send_connection_res
+
+send_connection_pending:
+	setarg L2CAP_connect_pending
+	store 2,memL2CAP_T1
+	jam L2CAP_SDP_channel,mem_l2cap_pending_item
+	branch send_connection_res0
+send_connection_sdp_res:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_sdp_state
+send_connection_res:
+	setarg L2CAP_connect_successful
+	store 2,memL2CAP_T1
+send_connection_res0:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_4,mem_patch1b
+	call load_cont_pointers
+	setarg signal_connect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	fetch 2,memL2CAP_T1
+	beq L2CAP_connect_pending,connect_pending
+	isolate0 0,debug
+	branch connect_suc,true
+	setarg L2CAP_connect_refused_no_resources
+connect_suc:
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	setarg 12
+	branch connect_req_update_byte_counts
+connect_pending:
+	istore 2,contw
+	force 0x0002,pdata
+	istore 2,contw
+	setarg 12
+	branch connect_req_update_byte_counts
+	
+already_connected:
+	set1 0,debug
+	branch send_connection_res
+connect_req_update_byte_counts:
+	iadd regB,regB
+	copy regC,pdata
+	isub regA,regC
+	branch l2cap_proc_signal_connect_req_rtn
+l2cap_proc_signal_connect_req_rtn:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_connect_rsp:
+	ifetch 1,contr //identifier
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr //remote cid
+	copy pdata,timeup
+	ifetch 2,contr //local cid
+	copy pdata,temp
+	set0 mark_ext_patch,mark
+	bpatch patch1b_5,mem_patch1b
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_hid_int,zero
+	rtn
+
+l2cap_proc_signal_connect_rsp_sdp:
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_sdp_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_connect_rsp_rfcomm:
+	copy timeup,pdata
+	store 2,mem_rfcomm_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_rfcomm_state
+	rtn
+l2cap_proc_signal_connect_rsp_hid_int:
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+l2cap_proc_signal_connect_rsp_hid_ctrl:
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_control_state
+	rtn
+
+l2cap_proc_signal_config_req:
+	ifetch 1,contr//identifier
+	copy pdata,queue
+	ifetch 2,contr//length
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr//dest cid
+	copy pdata,temp
+	copy temp,regA
+	set0 mark_ext_patch,mark
+	bpatch patch1b_6,mem_patch1b
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_hid_int,zero
+	branch l2cap_reject_command
+	//branch L2CAP_proc_signal_config_req_rtn
+l2cap_proc_signal_config_req_sdp:
+	copy contw, timeup
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+	copy timeup,contw
+	arg L2CAP_SDP_channel,timeup
+	fetch 2,mem_sdp_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_hid_ctrl:
+	copy contw, timeup
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_control_state
+	copy timeup,contw
+	arg L2CAP_HID_Control_channel,timeup
+	fetch 2,mem_hid_ctrl_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_hid_int:
+	copy contw, timeup
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	copy timeup,contw
+	arg L2CAP_HID_Interrupt_channel,timeup
+	fetch 2,mem_hid_int_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_rfcomm:
+	copy contw, timeup
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_rfcomm_state
+//	jam UPPERSM_RP_SDP_CONN,mem_upper_sm_remote_page
+	copy timeup,contw
+	arg L2CAP_RFCOMM_channel,timeup
+	fetch 2,mem_RFCOMM_remote_CID
+	copy pdata,temp
+l2cap_send_config_rsp:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_7,mem_patch1b
+	setarg  signal_config_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0006
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	force 0x00,pdata
+	istore 2,contw
+	force L2CAP_config_success,pdata
+	istore 2,contw
+	force 10,pdata
+	iadd regB,regB
+	//copy temp,pdata
+	storet 2,mem_config_req_dest_CID
+	copy queue,pdata
+	store 1,mem_config_identifier
+	force L2CAP_SDP_channel,pdata
+	icompare 0xff,timeup
+	branch l2cap_send_config_rsp_is_sdp,true
+	increase 1,pdata
+l2cap_send_config_rsp_is_sdp:
+	//store 1,mem_send_config_req
+	rtn
+l2cap_check_channel_state:
+	disable user
+	rtnbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	copy contr,contw
+	increase -1,contw
+	istore 1,contw
+	enable user
+	rtn
+l2cap_send_config_req:
+l2cap_send_config_req_sdp:
+	fetch 1,mem_sdp_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_rfcomm,user
+	jam L2CAP_SDP_channel,mem_send_config_req
+	fetch 2,mem_sdp_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_rfcomm:
+	fetch 1,mem_rfcomm_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_hid_ctrl,user
+	jam L2CAP_RFCOMM_channel,mem_send_config_req
+	fetch 2,mem_RFCOMM_remote_CID
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_hid_int,user
+	jam L2CAP_HID_Control_channel,mem_send_config_req
+	fetch 2,mem_hid_ctrl_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	call l2cap_check_channel_state
+	nrtn user//End of sending config req
+	jam L2CAP_HID_Interrupt_channel,mem_send_config_req
+	fetch 2,mem_hid_int_remote_cid
+	store 2,mem_config_req_dest_CID
+	//branch L2CAP_generate_config_req
+
+l2cap_generate_config_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_0,mem_patch1c
+	call l2cap_get_req_id
+	call l2cap_malloc_signal_channel
+	force 0,regB
+	call l2cap_get_signal_tx_payload
+	force signal_config_req,pdata
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	fetch 2,mem_config_req_dest_CID
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	force 1,pdata
+	istore 1,contw
+	force 2,pdata
+	istore 1,contw
+	fetch 1,mem_send_config_req
+	beq L2CAP_RFCOMM_channel,l2cap_generate_config_req_rfcomm
+	setarg L2CAP_config_MTU_SDP
+	istore 2,contw
+	branch l2cap_generate_config_req_done
+l2cap_generate_config_req_rfcomm:
+	setarg L2CAP_config_MTU_RFCOMM
+	istore 2,contw
+l2cap_generate_config_req_done:
+	arg 0x0c,temp
+	storet 2,mem_l2cap_signal_tx_length
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	jam 0,mem_send_config_req
+l2cap_proc_signal_config_req_rtn:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_config_rsp:
+	increase 1,contr
+	ifetch 2,contr
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr //source cid
+	copy pdata,regA
+	set0 mark_ext_patch,mark
+	bpatch patch1c_1,mem_patch1c
+	setarg L2CAP_SDP_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_hid_int,zero
+	increase 2,contr
+	ifetch 2,contr
+	iforce null
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_sdp_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_rfcomm_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_hid_control_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_hid_interrupt_state
+	jam BT_EVT_HID_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+
+
+l2cap_proc_signal_disconnect_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr
+	copy pdata,regA
+	ifetch 2,contr
+	copy pdata,timeup
+	copy regA,temp
+	call save_cont_pointers
+	set0 mark_ext_patch,mark
+	bpatch patch1c_2,mem_patch1c
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_hid_int,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_proc_signal_disconnect_req_hid_ctrl:
+	copy timeup,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_hid_control_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_proc_signal_disconnect_req_hid_int:
+	copy timeup,temp
+	fetch 2,mem_hid_int_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_hid_interrupt_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+
+l2cap_proc_signal_disconnect_req_sdp:
+	copy timeup,temp
+	fetch 2,mem_sdp_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_sdp_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_disconnect_hid_control_now:
+	call l2cap_reset_hid_ctrl_state
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_disconnect_hid_interrupt_now:
+	call l2cap_reset_hid_int_state
+	fetch 2, mem_hid_ctrl_remote_cid
+	branch l2cap_send_disconnect_rsp_pkt, blank
+	//set the flag,hid channel close
+	//should we set here?
+	//call HID_mem_lock
+	//fetch 1, mem_hid_cb1
+	//set1 HID_CB_APP_HID_DISCONNECTED,pdata
+	//store 1, mem_hid_cb1
+	//call HID_mem_unlock
+	branch l2cap_send_disconnect_rsp_pkt
+
+l2cap_disconnect_sdp_now:
+	call l2cap_reset_sdp_channel_state
+	fetch 1,mem_upper_sm_ss
+	nbranch l2cap_send_disconnect_rsp_pkt,blank
+	//jam LMP_ENCRYPTION_MODE_REQ,mem_lmo_opcode2
+	//jam UPPERSM_RP_SDP_CONN,mem_upper_sm_remote_page
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_proc_signal_disconnect_req_rfcomm:
+	copy timeup,temp
+	fetch 2, mem_RFCOMM_remote_CID
+	isub temp,null
+	branch l2cap_disconnect_rfcomm_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_disconnect_rfcomm_now:
+	call l2cap_reset_rfcomm_channel_state
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_send_disconnect_rsp_pkt:
+	call load_cont_pointers
+	setarg signal_disconnect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy regA,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	force 8,pdata
+	branch l2cap_proc_signal_disconnect_req_rtn
+l2cap_proc_signal_disconnect_req_err_rtn:
+	call load_cont_pointers
+	branch l2cap_proc_signal_disconnect_req_rtn
+l2cap_proc_signal_disconnect_req_rtn:
+	iadd regB,regB
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_disconnect_rsp:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr
+	copy pdata,timeup
+	ifetch 2,contr
+	copy pdata,temp
+	call save_cont_pointers
+	set0 mark_ext_patch,mark
+	bpatch patch1c_3,mem_patch1c
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_hid_int,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_rsp_err_rtn
+l2cap_proc_signal_disconnect_rsp_sdp:
+	copy temp,regA
+	copy timeup,temp
+	fetch 2,mem_sdp_remote_cid
+	isub temp,null
+	call l2cap_reset_sdp_channel_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_rfcomm:
+	copy temp,regA
+	copy timeup,temp
+	fetch 2,mem_rfcomm_remote_CID
+	isub temp,null
+	call l2cap_reset_rfcomm_channel_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+	copy temp,regA
+	copy timeup,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	isub temp,null
+	call  l2cap_reset_hid_ctrl_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_hid_int:
+	copy temp,regA
+	copy timeup,temp
+	fetch 2,mem_hid_int_remote_cid
+	isub temp,null
+	call l2cap_reset_hid_int_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_rtn:
+	call load_cont_pointers
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_disconnect_rsp_err_rtn:
+	branch l2cap_process_one_signal_rtn
+
+/* received an echo request from remote BD.  Will echo the 1st 1 byte back,		*/
+l2cap_proc_signal_echo_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	iadd contr,contr
+	setarg 9
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 4,pdata
+	iadd regB,regB
+	copy regC,pdata
+	isub regA,regC
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_echo_rsp:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_info_rsp:
+	branch l2cap_process_one_signal_rtn
+l2cap_reject_command:
+	force 0,regB
+	call l2cap_get_signal_tx_payload
+	setarg signal_cmd_reject
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 2
+	istore 2,contw
+	setarg cmd_not_understood
+	istore 2,contw
+	increase 6,regB
+	arg 4,regC
+	branch l2cap_process_one_signal_rtn
+
+
+
+l2cap_reset_rfcomm_channel_state:
+	setarg 0
+	store 2,mem_RFCOMM_Tx_pkt_length
+	store 2,mem_RFCOMM_remote_CID
+	jam 0,mem_rfcomm_state
+	rtn
+l2cap_reset_sdp_channel_state:
+	setarg 0
+	store 2,mem_sdp_tx_pkt_length
+	store 2,mem_sdp_remote_cid
+	jam 0,mem_sdp_state
+	rtn
+l2cap_reset_hid_ctrl_state:
+	setarg 0
+	store 2,mem_hid_ctrl_remote_cid
+	jam 0,mem_hid_control_state
+	fetch 1,mem_hid_interrupt_state
+	beq 0,l2cap_reset_hid_disconnected
+	rtn
+
+l2cap_reset_hid_int_state:
+	setarg 0
+	store 2,mem_hid_int_remote_cid
+	jam 0,mem_hid_interrupt_state
+	fetch 1,mem_hid_control_state
+	beq 0,l2cap_reset_hid_disconnected
+	rtn
+	
+l2cap_reset_hid_disconnected:
+	jam BT_EVT_HID_DISCONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event	
+
+l2cap_disconnect_interrupt_req:
+	fetch 1,mem_CONTROL_tasks
+	set0  L2CAP_DISCONNECT_INTERRUPT, pdata
+	store 1,mem_CONTROL_tasks
+	fetch 2, mem_hid_int_remote_cid
+	rtn blank
+	call l2cap_malloc_signal_channel
+	fetch 2, mem_hid_int_remote_cid
+	copy pdata,regA
+	force L2CAP_HID_Interrupt_channel,regB
+	branch l2cap_generate_disconnect_req
+l2cap_disconnect_control_req:
+	fetch 1,mem_CONTROL_tasks
+	set0  L2CAP_DISCONNECT_CONTROL, pdata
+	store 1,mem_CONTROL_tasks
+	fetch 2, mem_hid_ctrl_remote_cid
+	rtn blank
+	call l2cap_malloc_signal_channel
+	fetch 2, mem_hid_ctrl_remote_cid
+	copy pdata,regA
+	force L2CAP_HID_Control_channel,regB
+l2cap_generate_disconnect_req:
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	force signal_disconnect_req,pdata
+	istore 1,contw
+	fetch  1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy regA,pdata
+	istore 2,contw
+	copy regB,pdata
+	istore 2,contw
+	force 0x08,temp //signal tx length in temp
+	branch ml2cap_send_signal
+
+ml2cap_send_signal_connect_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_4,mem_patch1c
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_connect_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy temp,pdata	 //PSM
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	arg 8,temp
+	branch ml2cap_send_signal
+ml2cap_send_signal_config_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_5,mem_patch1c
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_config_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	/****modigy for nokia*****/
+	copy temp,pdata
+	/*setarg 0x0040*/
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	setarg 0x01
+	istore 1,contw
+	setarg 0x02
+	istore 1,contw
+	setarg L2CAP_config_MTU_RFCOMM
+	istore 2,contw
+	arg 0xc,temp
+	branch ml2cap_send_signal
+ml2cap_send_signal_disconn_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_6,mem_patch1c
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_disconnect_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	increase 1,pdata
+	copy contw,regA
+	store 1,mem_ML2CAP_comm_id
+	copy regA,contw
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	arg 0x8,temp
+	//branch ml2cap_send_signal
+	//Fall through
+ml2cap_send_signal:
+	storet 2,mem_l2cap_signal_tx_length
+	copy temp,pdata
+	branch l2cap_malloc_discard,blank
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw //make sure that length is still in temp!
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	rtn
+
+msdp_send_req_done:
+	fetch 2,mem_sdp_tx_pkt_length
+	branch assert,blank
+	call l2cap_get_sdp_tx_buff
+	fetch 2,mem_sdp_tx_pkt_length
+	istore 2,contw
+	fetch 2,mem_sdp_remote_cid
+	istore 2,contw
+	rtn
+ml2cap_rx_multiplexing:
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	set0 mark_ext_patch,mark
+	bpatch patch1c_7,mem_patch1c
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,ml2cap_call_proc_signal
+	beq L2CAP_SDP_channel,ml2cap_call_proc_sdp
+	beq L2CAP_RFCOMM_channel,l2cap_call_proc_rfcomm
+	beq L2CAP_HID_Control_channel,l2cap_call_proc_hid
+	beq L2CAP_HID_Interrupt_channel,l2cap_call_proc_hid
+	branch l2cap_rx_reset_state
+
+ml2cap_call_proc_signal:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_0,mem_patch1d
+	call l2cap_malloc_signal_channel
+	force 0,regB
+	call l2cap_get_signal_tx_payload
+	copy pdata,contw
+	fetch 2,mem_l2cap_rx_pkt_length
+	copy pdata,regC
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+ml2cap_proc_one_comm_loop:
+	call ml2cap_proc_one_comm
+	increase -4,regC
+	nbranch ml2cap_proc_one_comm_loop,zero
+	copy regB,temp
+	call ml2cap_send_signal
+	branch l2cap_rx_reset_state
+	
+ml2cap_proc_one_comm:
+	ifetch 1,contr
+	beq signal_connect_req,ml2cap_proc_signal_connect_req
+	beq signal_cmd_reject,ml2cap_proc_signal_cmd_reject
+	beq signal_connect_rsp,ml2cap_proc_signal_connect_rsp
+	beq signal_config_rsp,ml2cap_proc_signal_config_rsp
+	beq signal_config_req,ml2cap_proc_signal_config_req
+	beq signal_disconnect_rsp,ml2cap_proc_signal_disconn_rsp
+	beq signal_disconnect_req,ml2cap_proc_signal_disconn_req
+	beq signal_echo_req,l2cap_proc_signal_echo_req
+	beq signal_info_req,ml2cap_proc_signal_info_req
+	branch ml2cap_proc_send_reject
+
+ml2cap_proc_signal_connect_req:
+	call save_cont_pointers
+	//jam NO_RECONNECTION,memui_reconnect_mode
+	call load_cont_pointers
+	branch l2cap_proc_signal_connect_req
+ml2cap_proc_signal_cmd_reject:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+mvptr:
+	ifetch 1,contr
+	increase -1,regA
+	nbranch mvptr,zero
+	rtn
+ml2cap_proc_signal_connect_rsp:
+	ifetch 1,contr //id
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA	//length
+	ifetch 2,contr
+	copy pdata,timeup	//destination	cid
+	ifetch 2,contr
+	copy pdata,temp	//source	cid
+	ifetch 2,contr 		// result
+	sub pdata,0,null
+	branch ml2cap_proc_signal_connect_rsp_sucessful,zero
+	beq L2CAP_connect_refused_PSM_unsupported,ml2cap_proc_signal_connect_refused_result
+	beq L2CAP_connect_refused_no_resources,ml2cap_proc_signal_connect_refused_result
+	branch ml2cap_proc_signal_connect_rsp_mnosucc
+ml2cap_proc_signal_connect_refused_result:
+	jam BT_EVT_ML2CAP_CONN_REFUSED,mem_fifo_temp
+	call ui_ipc_send_event
+ml2cap_proc_signal_connect_rsp_mnosucc:
+	ifetch 2,contr //reason
+	branch mnosucc
+ml2cap_proc_signal_connect_rsp_sucessful:
+	call save_cont_pointers
+	//fetch 1,mem_ML2CAP_comm_id
+	//icompare 0xff,queue
+	//nbranch mnosucc1,true
+	set0 mark_ext_patch,mark
+	bpatch patch1d_1,mem_patch1d
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_hid_int,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_hid_ctrl,zero
+	branch mnosucc
+ml2cap_proc_signal_connect_rsp_sdp:
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_sdp_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_rfcomm:
+	copy timeup,pdata
+	store 2,mem_RFCOMM_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_rfcomm_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_hid_ctrl:
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_hid_control_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_hid_int:
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_hid_interrupt_state
+	//branch mnosucc1
+
+mnosucc1:
+	call load_cont_pointers
+mnosucc:
+	copy regC,pdata
+	isub regA,regC
+	rtn
+
+ml2cap_proc_signal_config_rsp:
+	ifetch 1,contr		//	Ident
+	copy pdata,queue
+	ifetch 2,contr		//	SigLen
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr		//	DestnCID
+	copy pdata,timeup
+	ifetch 2,contr
+	ifetch 2,contr		//	Get the result value, check success
+	nbranch mcrsdone1,blank
+	call save_cont_pointers
+	//fetch 1,mem_ML2CAP_comm_id
+	//icompare 0xff,queue
+	//nbranch mcfrsdone,true
+	copy timeup,temp
+	set0 mark_ext_patch,mark
+	bpatch patch1d_2,mem_patch1d
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_hid_int,zero
+ml2cap_proc_signal_config_rsp_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_sdp_state
+	rtn
+ml2cap_proc_signal_config_rsp_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_rfcomm_state
+	rtn
+ml2cap_proc_signal_config_rsp_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_hid_control_state
+	rtn
+ml2cap_proc_signal_config_rsp_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_hid_interrupt_state
+	jam BT_EVT_HID_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+mcfrsdone:
+	call load_cont_pointers
+mcrsdone1:
+	increase -6,regA
+mloop2:
+	branch mcrsdone,zero
+	increase 1,contr
+	increase -1,regA
+	branch mloop2
+mcrsdone:
+	rtn
+ml2cap_proc_signal_config_req:
+	ifetch 1,contr		//	Ident
+	copy pdata,queue
+	ifetch 2,contr		//	SigLen
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+	ifetch 2,contr		//	DestnCID
+	increase 2,contr
+	copy pdata,temp
+	setarg  signal_config_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	increase 2,regA
+	copy regA,pdata
+	istore 2,contw
+	call save_cont_pointers
+	set0 mark_ext_patch,mark
+	bpatch patch1d_3,mem_patch1d
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_hid_int,zero
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_sdp_state
+	bbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,ml2cap_proc_signal_config_req_sdp_nsndreq
+	fetcht 1,mem_CONTROL_tasks
+	set1 L2CAP_init_Config_Req,temp
+	storet 1,mem_CONTROL_tasks
+	copy queue,pdata
+	increase 1,pdata
+	store 1,mem_config_identifier
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+ml2cap_proc_signal_config_req_sdp_nsndreq:
+	fetch 2,mem_sdp_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_rfcomm_state
+	fetch 2,mem_RFCOMM_remote_CID
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_hid_control_state
+	fetch 2,mem_hid_ctrl_remote_cid
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_hid_interrupt_state
+	fetch 2,mem_hid_int_remote_cid
+	//branch mcfgrq_done
+
+mcfgrq_done:
+	copy pdata,timeup
+	call load_cont_pointers
+/*******for Nokia**************/
+	copy timeup,pdata
+	/*setarg 0x0040*/
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 10,pdata
+	iadd regB,regB
+	increase -6,regA
+mloop1:
+	branch mcrqdone,zero
+	ifetch 1,contr
+	istore 1,contw
+	increase 1,regB
+	increase -1,regA
+	branch mloop1
+mcrqdone:
+	rtn
+ml2cap_proc_signal_disconn_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	copy regC,pdata
+	isub regA,regC
+
+	ifetch 2,contr
+	copy pdata,regA
+	ifetch 2,contr
+	copy pdata,timeup
+	call save_cont_pointers
+	set0 mark_ext_patch,mark
+	bpatch patch1d_4,mem_patch1d
+	setarg L2CAP_SDP_channel
+	copy regA,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_sdp,zero
+	setarg L2CAP_HID_Control_channel
+	copy regA,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	copy regA,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_hid_int,zero
+	branch mclsrfc
+ml2cap_proc_signal_disconn_sdp:
+	setarg 0x0000
+	store 2,mem_sdp_tx_pkt_length
+	store 2,mem_sdp_remote_cid
+	store 1,mem_sdp_state
+	branch mclssdp
+ml2cap_proc_signal_disconn_hid_ctrl:
+	call l2cap_reset_hid_ctrl_state
+	branch mclssdp
+ml2cap_proc_signal_disconn_hid_int:
+	call l2cap_reset_hid_int_state
+	//call HID_mem_lock
+	//fetch 1, mem_hid_cb1
+	//set1 HID_CB_APP_HID_DISCONNECTED,pdata
+	//store 1, mem_hid_cb1
+	//call HID_mem_unlock
+	branch mclssdp
+mclsrfc:
+	setarg 0x0000
+	store 2,mem_RFCOMM_Tx_pkt_length
+mclssdp:
+	call load_cont_pointers
+	setarg signal_disconnect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy regA,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	force 8,pdata
+	iadd regB,regB
+	rtn
+
+ml2cap_proc_signal_disconn_rsp:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,regA
+	ifetch 2,contr
+	copy pdata,timeup
+	ifetch 2,contr
+	copy pdata,temp
+	call save_cont_pointers
+	set0 mark_ext_patch,mark
+	bpatch patch1d_5,mem_patch1d
+	fetch 1,mem_ML2CAP_comm_id
+	icompare 0xff,queue
+	nbranch mdisdone,true
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_rsp_rfcomm,zero
+	branch mdisdone
+ml2cap_proc_signal_disconn_rsp_sdp:
+	jam 0,mem_sdp_remote_cid
+	jam 0,mem_sdp_state
+	branch mdisdone
+ml2cap_proc_signal_disconn_rsp_rfcomm:
+	//
+	//
+mdisdone:
+	call load_cont_pointers
+	copy regC,pdata
+	isub regA,regC
+	rtn
+
+ml2cap_proc_send_reject:
+	setarg signal_cmd_reject
+	istore 1,contw
+	ifetch 1,contr
+	istore 1,contw
+	setarg 0x0002
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	setarg 0x0006
+	iadd regB,regB
+	force 4,regC
+	rtn
+	
+//l2cap command id, 0 is not allowed
+l2cap_get_req_id:
+	fetch 1,mem_ML2CAP_comm_id
+	increase 1,pdata
+	bne 0,l2cap_get_req_id_ok
+	increase 1,pdata
+l2cap_get_req_id_ok:
+	store 1,mem_ML2CAP_comm_id
+	rtn
+
+
+/*********************************************************/
+//char* malloc(short len)
+//input: regA -> len
+//rtn: regB -> pbuff;return from pdata
+//val: queue -> i
+//val: timeup -> buff_cnt
+/*********************************************************/
+l2cap_malloc:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_6,mem_patch1d
+	arg 0,regb
+	call l2cap_malloc_is_fifo_full
+	nbranch assert,blank//assert when fifo full
+	call l2cap_malloc_get_full_map
+ifdef DEBUG_MALLOC
+	call l2cap_malloc_log_get_ptr
+	copy regA,pdata
+	istore 2,contw
+	sub pdata,1024,null
+	branch assert,positive
+	branch assert,blank
+endif
+	arg mem_tx_buff0,regB//pbuff = buff0;
+	arg 0,queue // i = 0;
+l2cap_malloc_loop:
+	fetcht 1,mem_used_map
+	qisolate1 temp
+	branch l2cap_malloc_next,true//if(1 == (used_map & (1 << i)))goto next;
+	call l2cap_malloc_enough
+	sub timeup,0,null// (0 - timeup)
+	branch l2cap_malloc_next,positive//if(buff_cnt <= 0)goto next;
+	call l2cap_malloc_into_fifo
+	branch l2cap_malloc_rtn//return (pbuff);
+l2cap_malloc_next:
+	increase 128,regB//pbuff += BUFF_SIZE;//point to next buff
+	increase 1,queue
+	setarg 8//BUFF_MAX_COUNT
+	isub queue,null //BUFF_MAX_COUNT - i
+	branch l2cap_malloc_loop,positive//while(i < buff_max_count)
+	arg 0,regB//return NULL
+l2cap_malloc_rtn:
+ifdef DEBUG_MALLOC
+	call l2cap_malloc_log_get_ptr
+	copy regB,pdata
+	istore 2,contw
+endif
+	copy regB,pdata
+	branch assert,blank
+	rtn//return pointer via pdata
+	
+/*********************************************************/
+//void* l2cap_malloc_fifo_out(void)
+//output:len -> temp
+//output:ptr ->pdata
+//only get ptr,not free
+/*********************************************************/
+l2cap_malloc_fifo_out:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_7,mem_patch1d
+	call l2cap_malloc_fifo_get_first_ptr
+	increase 1,contr
+	ifetch 2,contr //ptr ->pdata
+	rtn 
+
+/*********************************************************/
+//void free_first_buff_in_fifo(void)
+//only free the first one
+/*********************************************************/
+l2cap_malloc_free:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_0,mem_patch1e
+	call l2cap_malloc_fifo_get_first_ptr
+	copy contr,contw
+	copy contr,temp
+	setarg 0
+	istore 3,contw
+ifdef DEBUG_MALLOC
+	call l2cap_malloc_log_get_ptr
+	setarg 0xaa
+	istore 1,contw
+	istoret 1,contw
+endif
+	rtn
+/*********************************************************/
+//void l2cap_malloc_discard(void)
+//discard the latest malloc
+/*********************************************************/
+l2cap_malloc_discard:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_1,mem_patch1e
+	call l2cap_malloc_is_fifo_empty
+	branch assert,blank
+	fetch 3,mem_tx_fifo2
+	store 3,mem_tx_fifo3
+	fetch 3,mem_tx_fifo1
+	store 3,mem_tx_fifo2
+	fetch 3,mem_tx_fifo0
+	store 3,mem_tx_fifo1
+	rtn
+/*********************************************************/
+//bool fifo_is_full(void)
+//blank == 1: not full
+//blank == 0: full
+/*********************************************************/
+l2cap_malloc_is_fifo_full:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_2,mem_patch1e
+	fetch 3,mem_tx_fifo0
+	rtn
+/*********************************************************/
+//bool fifo_nearly_full(void)
+//blank == 1: nearly full
+//blank == 0: not nearly full
+/*********************************************************/
+l2cap_malloc_is_fifo_nearly_full:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_3,mem_patch1e
+	fetch 3,mem_tx_fifo1
+	rtn
+/*********************************************************/
+//bool fifo_is_empty(void)
+//blank == 1: empty
+//blank == 0: not empty
+/*********************************************************/
+l2cap_malloc_is_fifo_empty:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_4,mem_patch1e
+	fetch 3,mem_tx_fifo3
+	rtn
+/*********************************************************/
+//char* l2cap_malloc_fifo_get_first_ptr(void)
+//output:contr  -->ptr
+/*********************************************************/	
+l2cap_malloc_fifo_get_first_ptr:
+	call l2cap_malloc_is_fifo_empty
+	branch assert,blank // fifo is empty
+	arg mem_tx_fifo0,contr
+ifdef DEBUG_MALLOC
+	arg 5,loopcnt
+l2cap_malloc_free_loop:
+	increase -1,loopcnt
+	copy loopcnt,pdata
+	branch assert,blank
+else
+l2cap_malloc_free_loop:
+endif
+	ifetch 3,contr
+	branch l2cap_malloc_free_loop,blank
+	increase -3,contr
+	rtn
+
+/*********************************************************/
+//char* l2cap_malloc_get_full_map(void)
+//output:mem_used_map  -->full_map
+//add all maps into one
+/*********************************************************/	
+l2cap_malloc_get_full_map:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_5,mem_patch1e
+	arg 4,loopcnt
+	arg mem_tx_fifo0_map,contr
+	arg 0,temp
+l2cap_malloc_get_full_map_loop:	
+	ifetch 3,contr
+	and pdata,0xff,pdata
+	ior temp,temp
+	loop l2cap_malloc_get_full_map_loop
+	storet 1,mem_used_map
+	rtn
+/*********************************************************/
+//void buff_into_fifo(char buff_index, char buff_cnt, short len)
+//input: regA -> len
+//input: regC -> buff_index
+//input: timeup -> buff_cnt
+//val:temp ->   (fifo->map)
+/*********************************************************/
+l2cap_malloc_into_fifo:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_6,mem_patch1e
+	call l2cap_malloc_is_fifo_full
+	nbranch assert,blank //fifo full
+	call l2cap_malloc_is_fifo_empty
+	branch l2cap_malloc_into_fifo_no_push,blank//fifo empty, no need to push
+	fetch 3,mem_tx_fifo1
+	store 3,mem_tx_fifo0
+	ifetch 3,contr//mem_tx_fifo2
+	istore 3,contw//mem_tx_fifo1
+	ifetch 3,contr//mem_tx_fifo3
+	istore 3,contw//mem_tx_fifo2
+	setarg 0
+	istore 3,contw//mem_tx_fifo3
+l2cap_malloc_into_fifo_no_push:
+	arg 0,temp
+	copy timeup,pdata
+	iadd queue,pdata
+l2cap_malloc_into_fifo_loop:
+	qset1 temp//fifo->map |= 1 << i;
+	increase 1,queue
+	isub queue,null
+	nbranch l2cap_malloc_into_fifo_loop,zero
+	//map in temp
+	lshift8 regB,pdata
+	ior temp,pdata
+	store 3,mem_tx_fifo3
+	rtn
+
+/*********************************************************/
+//char is_size_enough(char buff_index, short len)
+//input: regA -> len
+//input: queue -> buff_index
+//rtn: timeup -> buff_cnt
+//val: max_size_fom_buff_index -> temp
+//val: i -> loopcnt
+/*********************************************************/
+l2cap_malloc_enough:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_7,mem_patch1e
+	call l2cap_malloc_get_full_map
+	copy queue,regC//restore buff_index to regC
+	arg 0,temp
+	arg 0,timeup//default return val
+	//increase 1,queue
+l2cap_malloc_enough_loop:
+	copy queue,pdata
+	beq 8,l2cap_malloc_enough_end
+	fetch 1,mem_used_map
+	qisolate1 pdata
+	branch l2cap_malloc_enough_end,true
+	increase 128,temp
+	increase 1,queue
+	copy regA,pdata
+	isub temp,null
+	branch l2cap_malloc_enough_end,zero//(max_size_fom_buff_index ==  len)
+	branch l2cap_malloc_enough_loop,positive//(max_size_fom_buff_index <  len)
+l2cap_malloc_enough_end:
+	copy temp,pdata
+	isub regA,null
+	nbranch l2cap_malloc_enough_rtn,positive// max_size_fom_buff_index - len > 0
+	copy queue,pdata//i
+	copy regC,temp//buff_index
+	isub temp,timeup//return (i - buff_index)
+l2cap_malloc_enough_rtn:
+	copy regC,queue//restore buff_index to queue
+	rtn
+	
+ifdef DEBUG_MALLOC
+l2cap_malloc_log_get_ptr:
+	fetch 2,mem_tx_malloc_log
+	increase 2,pdata
+	store 2,mem_tx_malloc_log
+	sub pdata,62,null
+	nbranch l2cap_malloc_log_clean,positive
+	increase -2,pdata
+	iadd contw,contw
+	rtn
+l2cap_malloc_log_clean:
+	jam 0x00,mem_tx_malloc_log
+	branch l2cap_malloc_log_get_ptr	
+endif
+
+l2cap_malloc_signal_channel:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_0,mem_patch1f
+	arg L2CAP_SIGNAL_MALLOC_SIZE,regA
+	call l2cap_malloc
+	store 2,mem_l2cap_signal_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_l2cap_signal_tx_payload_ptr
+	setarg 0
+	store 2,mem_l2cap_signal_tx_length
+	rtn
+
+l2cap_get_signal_tx_buff:
+	fetch 2,mem_l2cap_signal_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+
+l2cap_get_signal_tx_payload:
+	fetch 2,mem_l2cap_signal_tx_payload_ptr
+	branch l2cap_util_pdata_to_contw
+
+
+l2cap_malloc_sdp_channel:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_1,mem_patch1f
+	arg SDP_MALLOC_SIZE,regA
+	call l2cap_malloc
+	store 2,mem_sdp_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_sdp_tx_payload_ptr
+	setarg 0
+	store 2,mem_sdp_tx_pkt_length
+	rtn
+
+l2cap_get_sdp_tx_buff:
+	fetch 2,mem_sdp_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+
+l2cap_get_sdp_tx_payload:
+	fetch 2,mem_sdp_tx_payload_ptr
+	branch l2cap_util_pdata_to_contw
+
+
+l2cap_malloc_rfcomm_channel:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_2,mem_patch1f
+	call push_stack
+	jam RFCOMM_MALLOC_FAIL,mem_rfcomm_malloc_fail_flag
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	arg RFCOMM_MALLOC_SIZE,regA
+	call l2cap_malloc
+	store 2,mem_rfcomm_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_rfcomm_tx_payload_ptr
+	setarg 0
+	store 2,mem_rfcomm_tx_pkt_length
+	jam RFCOMM_MALLOC_SUCCEED,mem_rfcomm_malloc_fail_flag
+	branch pop_stack
+
+l2cap_get_rfcomm_tx_buff:
+	fetch 2,mem_rfcomm_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+	
+l2cap_util_pdata_to_contw:
+	branch assert,blank
+	copy pdata,contw
+	rtn
+	
+
+l2cap_lpm_save_calc_len:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_3,mem_patch1f
+	arg 0,regb
+	arg mem_tx_fifo0_map,rega
+	increase -2,rega
+l2cap_lpm_save_calc_len_loop:
+	increase 2,rega
+	setarg mem_tx_fifo_end
+	isub rega,null
+	branch l2cap_lpm_save_calc_len_end,zero //end of 2lcap tx fifo
+	ifetch 1,rega
+	increase 1,rega
+	branch l2cap_lpm_save_calc_len_loop,blank
+	ifetcht 2,rega
+	ifetch 2,temp
+	iadd regb,regb
+	increase 4,regb //l2cap header len
+	branch l2cap_lpm_save_calc_len_loop
+l2cap_lpm_save_calc_len_end:
+	copy regb,pdata
+	rtn
+
+
+l2cap_lpm_get_wake_lock:
+	arg wake_lock_l2cap_tx,queue
+	branch lpm_get_wake_lock
+
+l2cap_lpm_put_wake_lock:
+	arg wake_lock_l2cap_tx,queue
+	branch lpm_put_wake_lock
+	
+l2cap_lpm_save_txbuf:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_4,mem_patch1f
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	rtn blank
+	call l2cap_lpm_save_calc_len
+	arg l2cap_lpm_txbuf_len,temp
+	isub temp,null
+	branch l2cap_lpm_get_wake_lock,positive //no enougth space to save l2cap tx data
+	call l2cap_lpm_put_wake_lock
+	arg mem_l2cap_lpm_txbuf,contw
+	arg mem_tx_fifo0,rega
+l2cap_lpm_save_txbuf_loop:
+	setarg mem_tx_fifo_end
+	isub rega,null
+	rtn zero //end of 2lcap tx fifo
+	ifetch 1,rega  //mem_tx_fifoX_map
+	increase 1,rega
+	nbranch l2cap_lpm_save_txbuf_nempty,blank
+	istore 2,contw // length = 0
+	increase 2,rega
+	branch l2cap_lpm_save_txbuf_loop
+l2cap_lpm_save_txbuf_nempty:
+	ifetch 2,rega //ptr
+	increase 2,rega
+	copy pdata,contr
+	ifetch 2,contr  //l2cap len
+	istore 2,contw
+	copy pdata,loopcnt
+	increase 2,loopcnt //add CID len
+	call memcpy
+	branch l2cap_lpm_save_txbuf_loop
+	
+l2cap_lpm_load_txbuf:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_5,mem_patch1f
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	rtn blank
+	arg mem_tx_fifo0_ptr,rega
+	increase -3,rega //mem_tx_fifo0_ptr -3
+	arg mem_l2cap_lpm_txbuf,contr
+l2cap_lpm_load_txbuf_loop:
+	increase 3,rega //mem_tx_fifoX_ptr
+	setarg mem_tx_fifo_end+1
+	isub rega,null
+	rtn zero //end of 2lcap tx fifo
+	ifetch 2,contr
+	branch l2cap_lpm_load_txbuf_loop,blank
+	increase 4,pdata //l2cap header len
+	copy pdata,loopcnt
+	copy contr,regb
+	ifetch 2,rega //ptr
+	copy pdata,contw
+	copy regb,contr
+	increase -2,contr
+	call memcpy
+	branch l2cap_lpm_load_txbuf_loop
+	
+
+
+	
Index: Receive_Code/program/le.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/le.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/le.prog	(working copy)
@@ -0,0 +1,3503 @@
+ifdef COMPILE_LE
+//******************************************//
+//*************LE INIT ****************//
+//******************************************//
+
+	
+le_secure_connection_enable:
+	fetch 1,mem_le_pres_auth
+	set1 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT,pdata
+	store 1,mem_le_pres_auth
+	rtn
+le_secure_connection_disable:
+	fetch 1,mem_le_pres_auth
+	set0 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT,pdata
+	store 1,mem_le_pres_auth
+	rtn
+
+
+le_init_conn:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_6,mem_patch1f
+	disable wake
+	jam 1,mem_le_conn_handle
+	jam 3,mem_le_state
+	jam 1,mem_le_arq
+	setarg -1
+	store 2,mem_le_event_count
+	force 0,pdata
+	store 1,mem_le_ch
+	store 1,mem_le_op
+	store 3,mem_sniff_rcv
+	store 3,mem_sniff_lost
+	store 5,mem_le_pcnt_tx
+	set1 39,pdata
+	store 5,mem_le_pcnt_rx
+	jam 1,mem_le_txheader
+	jam 0,mem_le_txlen
+	branch le_supervision_flush
+
+le_init_master:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_7,mem_patch1f
+	enable master
+	jam lemode_master,mem_le_mode
+	jam 1,mem_le_att_handle
+	jam 1,mem_le_search_handle_start
+	setarg 0xffff
+	store 2,mem_le_search_handle_end
+	force 0,pdata
+	store 5,mem_le_pcnt_rx
+	set1 39,pdata
+	store 5,mem_le_pcnt_tx	
+	branch le_init_conn
+
+
+le_init_slave:
+	set1 mark_ext_patch,mark
+	bpatch patch20_0,mem_patch20
+	disable master
+	jam lemode_slave,mem_le_mode
+	jam 0,mem_le_adv_enable
+	jam 0,mem_lpm_current_mult
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	fetch 2,mem_le_superto
+	store 2,mem_le_init_superto
+	fetch 2,mem_le_tsniff
+	mul32 pdata,5,pdata
+	rshift4 pdata,pdata
+	store 2,mem_le_superto			// vol.6 part B 4.5.2 only 6*conninterval before establish
+	branch le_init_conn
+	
+
+//******************************************//
+//*************LE main process*********//
+//******************************************//
+le_dispatch:
+	call le_enable
+	call le_scan
+	call le_adv
+	branch le_disable
+
+le_conn_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch20_1,mem_patch20
+	call le_enable
+	call app_process_ble
+	fetch 1,mem_le_mode
+	beq lemode_master,le_master_dispatch
+	branch le_slave_dispatch
+	
+//******************************************//
+//***********LE master process*********//
+//******************************************//
+	
+le_master_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch20_2,mem_patch20
+	enable master
+	call le_supervision_update
+	branch le_master_disconn,positive
+	call check_ble_disabled
+	call le_setup
+	call le_prepare_tx
+	disable match
+	call le_transmit_receive_sifs
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch20_3,mem_patch20
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	call le_acknowledge
+	disable master
+	rtn
+	
+le_master_disconn:
+	call le_disconnect
+	disable master
+	rtn
+	
+//******************************************//
+//***********LE slave process***********//
+//******************************************//
+le_slave_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch20_4,mem_patch20
+ifdef SECURE_CONNECTION
+	call sp_calc_sequence_256
+	call le_secure_connect_sm
+endif
+	disable attempt
+	call le_supervision_update
+	branch le_slave_disconn,positive
+	call check_ble_disabled
+	call le_setup
+	call le_receive_slave
+	nbranch le_slave_unsync,sync	// vol.6 part B 4.5.1 respond even crc error
+	call le_got_first_packet
+	branch le_slave_match,match
+	branch le_slave_transmit_last
+	
+
+le_slave_match:
+	set1 mark_ext_patch,mark
+	bpatch patch20_5,mem_patch20
+	call le_got_first_packet
+	call le_acknowledge
+	call le_prepare_tx
+	fetch 1,mem_le_rxbuf
+	bbit1 md,le_slave_more_data //more data to rx
+	call le_xtype_fifo_is_empty
+	nbranch le_slave_more_data,blank// more data to tx
+le_slave_transmit_last:
+	set1 mark_ext_patch,mark
+	bpatch patch20_6,mem_patch20
+	call le_transmit_norx
+le_slave_cont:
+	call check_51cmd
+	fetch 1,mem_le_op
+	bbit1 op_disconn,le_slave_disconn
+le_slave_unsync:
+	set1 mark_ext_patch,mark
+	bpatch patch20_7,mem_patch20
+	call le_lpm_set_mult
+	call le_update_channel_map
+	call le_update_param
+	branch calc_clke_offset
+
+le_slave_more_data:
+	set1 mark_ext_patch,mark
+	bpatch patch21_0,mem_patch21
+	enable attempt
+	call le_transmit_receive_sifs
+	branch le_slave_match,match
+	branch le_slave_cont
+
+le_slave_disconn:
+
+	//fall through
+le_disconnect:
+	set1 mark_ext_patch,mark
+	bpatch patch21_1,mem_patch21
+le_disconnect0:
+	call le_clear_connection_info
+	call app_disconn_reason_collect_ble
+ifdef SECURE_CONNECTION
+	call sp_initialize_256
+endif
+	jam BT_EVT_LE_DISCONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+le_clear_connection_info:
+	jam 0,mem_le_conn_handle
+	jam lemode_idle,mem_le_mode
+	jam 0,mem_le_state
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	rtn
+	
+le_got_first_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch21_2,mem_patch21
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	fetch 1,mem_le_state
+	rtnbit1 lestate_got_first_packet
+	set1 lestate_got_first_packet
+	store 1,mem_le_state
+	fetch 2,mem_le_init_superto
+	store 2,mem_le_superto
+	setarg 0
+	store 4,mem_le_transmit_window
+	rtn
+
+
+
+
+le_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch21_3,mem_patch21
+	hjam 0x36,0x90f        /*For BLE, tune AGC_gain_offset, Max added*/
+	hjam 0x5f,0x90b        //for BLE
+	enable le
+	hjam 7,rfen_ulp			/* enable ulp */
+	branch check_ble_disabled
+
+le_disable:
+	set1 mark_ext_patch,mark
+	bpatch patch21_4,mem_patch21
+	hjam 0x2e,0x90f        /*For BR/EDR, tune AGC_gain_offset, Max added*/
+	hjam 0xff,0x90b         //for EDR&BR
+	disable le
+	hjam 3,rfen_ulp
+	arg 0,stop_watch
+	rtn
+	
+le_prep:
+	disable enable_crc
+	disable enable_white
+	fetch 3,mem_le_crcinit
+	iforce crc24_init
+	fetch 1,mem_le_ch_mapped
+	reverse pdata,temp
+	set1 1,temp
+	rshift temp,white_init
+	rtn
+	
+
+lerx_setfreq:
+	call le_setfreq
+	call set_freq_rx
+	setarg param_pll_setup
+	call sleep
+	branch rf_rx_enable
+
+letx_setfreq:
+	branch txon,match
+letx_setfreq0:
+	call le_setfreq
+	branch set_freq_tx
+le_setfreq:
+	set1 mark_ext_patch,mark
+	bpatch patch21_5,mem_patch21
+	call set_sync_on
+	fetch 1, mem_le_testtype
+	nbranch le_ctf_test,blank
+	fetch 1,mem_le_ch_mapped
+	sub pdata,36,null
+	branch le_ctf_normal,positive
+	force 0,temp
+	rtneq 37
+	force 24,temp
+	rtneq 38
+	force 78,temp
+	rtn
+	
+le_ctf_normal:
+	sub pdata,10,null
+	branch le_ctf_low,positive
+	increase 1,pdata
+	
+le_ctf_low:	
+	lshift pdata,pdata
+	add pdata,2,temp
+	rtn
+	
+le_ctf_test:
+	fetch 1,mem_le_ch_mapped
+	lshift pdata,temp
+	rtn
+
+le_sca_map:
+	arg 500,temp
+	rtn blank
+	arg 250,temp
+	rtneq 1
+	arg 150,temp
+	rtneq 2
+	arg 100,temp
+	rtneq 3
+	arg 75,temp
+	rtneq 4
+	arg 50,temp
+	rtneq 5
+	arg 40,temp
+	rtneq 6
+	arg 20,temp
+	rtn
+
+
+	
+le_adv_access:
+	setarg 0x8e89be
+	lshift8 pdata,pdata
+	or_into 0xd6,pdata
+	iforce access
+	setarg 0x555555
+	store 3,mem_le_crcinit
+	rtn
+
+le_setup:
+	set1 mark_ext_patch,mark
+	bpatch patch21_6,mem_patch21
+	enable swfine
+	fetch 4,mem_le_access
+	iforce access
+	call le_map_channel
+	setarg 0x200
+	branch le_setup_master,master
+	fetch 2,mem_le_receive_window
+	rshift pdata,pdata
+le_setup_master:
+	arg param_pll_setup,temp
+	iadd temp,pdata
+	call ahead_window
+	deposit clke
+	store 6,mem_le_rxon_ts
+	rtn
+
+le_next_adv_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch21_7,mem_patch21
+	fetch 1,mem_le_ch_mapped
+	increase 1,pdata
+	store 1,mem_le_ch_mapped
+	rtnne 40
+	jam 37,mem_le_ch_mapped
+	rtn	
+
+le_context_nexthop:
+	set1 mark_ext_patch,mark
+	bpatch patch22_0,mem_patch22
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	rtnbit0 mode_le
+	add rega,coffset_le_event_cnt,contw
+	ifetch 2,contw
+	increase 1,pdata
+	istore 2,contw
+	add rega,coffset_le_hop,contr
+	ifetch 1,contr
+	add rega,coffset_le_ch,contw
+	ifetcht 1,contw
+	iadd temp,pdata
+	sub pdata,36,null
+	branch le_nexthop_nowrap,positive
+	increase -37,pdata
+le_nexthop_nowrap:
+	istore 1,contw
+	rtn
+
+
+le_calc_channel_map:
+	set1 mark_ext_patch,mark
+	bpatch patch22_1,mem_patch22
+	fetch 5,mem_le_channel_map
+	force 0,temp
+	force 37,loopcnt
+le_count_channels_loop:
+	bbit0 0,le_count_channels_notused
+	increase 1,temp
+le_count_channels_notused:
+	rshift pdata,pdata
+	loop le_count_channels_loop
+	add temp,-1,pdata
+	store 1,mem_le_channels
+	rtn
+
+le_map_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch22_2,mem_patch22
+	fetch 1,mem_le_ch
+	iforce queue
+	fetcht 5,mem_le_channel_map
+	qisolate1 temp
+	branch le_map_channel_end,true
+le_map_channel_next:
+	set1 mark_ext_patch,mark
+	bpatch patch22_3,mem_patch22
+	fetch 1,mem_le_channels
+	isub queue,pdata
+	branch le_map_channel_cont,positive
+	sub pdata,-1,queue
+	branch le_map_channel_next
+le_map_channel_cont:
+	copy queue,loopcnt
+	force 0,queue
+le_map_channel_loop:
+	qisolate1 temp
+	branch le_map_channel_skip,true
+	increase 1,loopcnt
+le_map_channel_skip:
+	deposit loopcnt
+	branch le_map_channel_end,blank
+	increase 1,queue
+	increase -1,loopcnt
+	branch le_map_channel_loop
+le_map_channel_end:
+	deposit queue
+	store 1,mem_le_ch_mapped
+	rtn
+
+
+le_wait_tx:
+	branch le_wait_master,master
+	until null,timeout
+	rtn
+	
+le_wait_master:
+	arg 0xea0,timeup
+	until clkn_rt,meet
+	rtn
+
+le_receive_adv:
+	disable swfine
+	fetch 2,mem_le_scan_window
+	copy pdata,timeup
+	branch le_receive_packet
+
+
+le_receive_slave:
+	set1 mark_ext_patch,mark
+	bpatch patch22_4,mem_patch22
+	enable swfine
+	fetch 2,mem_le_receive_window
+	fetcht 4,mem_le_transmit_window
+	iadd temp,timeup
+le_receive_packet:
+	call lerx_setfreq
+le_receive_rxon:
+	set1 mark_ext_patch,mark
+	bpatch patch22_5,mem_patch22
+	call le_prep
+	disable match
+	enable decode_fec0
+	enable is_rx
+	disable is_tx
+	copy timeup,stop_watch
+	correlate null,timeout
+	branch le_receive_on_attempt,attempt
+	copy clke,temp
+	storet 6,mem_sync_clke
+le_receive_on_attempt:
+	nbranch end_of_packet,sync
+	branch le_receive_skip,attempt
+	arg param_clke_cal_le,clke_rt
+	copy bt_clk,clke_bt
+	fetch 1,mem_le_state
+	bbit0 lestate_got_first_packet,le_receive_skip
+	call lpm_adjust_clk,wake
+le_receive_skip:
+	set1 mark_ext_patch,mark
+	bpatch patch22_6,mem_patch22
+	call save_rssi
+	enable enable_white
+	enable enable_crc
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_le_rxbuf
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	and pdata,0x3f,loopcnt
+	branch lerx_nopayload,zero
+	
+lerx_loop:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop lerx_loop
+	
+lerx_nopayload:
+	set1 mark_ext_patch,mark
+	bpatch patch22_7,mem_patch22
+	parse demod,bucket,24	
+	enable swfine
+	arg param_sifs,stop_watch		// start SIFS timer after last bit of crc
+	rshift32 pdata,pdata
+	rshift16 pdata,pdata
+	istore 3,contw
+	branch end_of_packet,crc_failed
+	enable match
+	fetch 1,mem_last_freq
+	add pdata,0,rega				// ble 2M Medium Frequency
+	call rf_write_freq				/* set frequency to tx mode freq */
+	disable decode_fec0
+	branch set_sync_on
+
+le_transmit_receive_sifs:
+	set1 mark_ext_patch,mark
+	bpatch patch23_0,mem_patch23
+	call le_transmit
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	enable swfine
+	arg 5500,timeup 
+	branch le_receive_rxon
+
+le_transmit_norx:
+	call le_transmit
+	branch end_of_packet
+	
+le_transmit:
+	set1 mark_ext_patch,mark
+	bpatch patch23_1,mem_patch23
+	call le_prep
+	call letx_setfreq
+	call le_transmit0
+	fetch 1,mem_device_option
+	beq dvc_op_module,module_le_transmit
+	rtn
+le_transmit0:
+	set1 TXGFSK,radio_ctrl
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	call le_wait_tx
+	rshift16 access,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	inject mod,40
+	enable enable_white
+	enable enable_crc
+	set1 mark_ext_patch,mark
+	bpatch patch23_2,mem_patch23
+	fetch 1,mem_le_txheader
+	inject mod,8
+	ifetch 1,contr
+	and pdata,0x3f,loopcnt
+	inject mod,8
+	branch letr_nopayload,zero
+letr_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop letr_loop
+	
+letr_nopayload:
+	enable enable_parity
+	inject mod,24
+	disable enable_parity
+	until null,tx_clear
+	nop 100          /* flush out the last bit */
+	disable encode_fec0
+	rtn
+	
+le_send_adv_ind:
+	set1 mark_ext_patch,mark
+	bpatch patch23_3,mem_patch23
+	fetch 1,mem_le_adv_type
+	beq ADV_DIRECT_IND,le_send_adv_direct_ind
+	fetch 1,mem_le_adv_own_addr_type
+	lshift4 pdata,pdata
+	lshift2 pdata,pdata
+	store 1,mem_le_txheader
+	fetcht 1,mem_le_adv_data_len
+	add temp,6,pdata
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	copy temp,loopcnt
+	arg mem_le_adv_data,contr
+	call memcpy_fast
+	branch le_send_adv_transmit
+le_send_adv_direct_ind:
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	copy rega,contw
+	setarg 1
+	istore 1,contw
+	fetch 1,mem_le_adv_direct_addr_type
+	lshift4 pdata,pdata
+	lshift2 pdata,pdata
+	increase 1,pdata
+	store 1,mem_le_txheader
+	setarg 12
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	fetch 6,mem_hci_plap
+	istore 6,contw
+le_send_adv_transmit:
+	set1 mark_ext_patch,mark
+	bpatch patch23_4,mem_patch23
+	fetch 1,mem_le_adv_transmit
+	increase 1,pdata
+	store 1,mem_le_adv_transmit
+	arg 1800,stop_watch
+	disable match
+	branch le_transmit_receive_sifs
+	
+le_send_scan_request:
+	set1 mark_ext_patch,mark
+	bpatch patch23_5,mem_patch23
+	fetch 1,mem_le_scan_type
+	rtnne LE_SCAN_TYPE_ACTIVE,pdata
+	fetch 1,mem_le_adv_transmit
+	increase 1,pdata
+	store 1,mem_le_adv_transmit
+	arg 0x0c03,temp// length + SCAN_REQ PDU
+	fetch 1,mem_le_scan_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,temp
+	copy regA,pdata
+	nsetflag blank,LE_RECEIVER_ADDR_BIT,temp	
+	storet 2,mem_le_txheader
+	fetch 6,mem_le_lap
+	istore 6,contw
+	fetch 6,mem_le_plap
+	istore 6,contw
+	branch le_transmit_receive_sifs
+
+
+le_send_scan_response:
+	set1 mark_ext_patch,mark
+	bpatch patch23_6,mem_patch23
+	arg SCAN_RSP,temp
+	fetch 1,mem_le_adv_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,temp
+	storet 1,mem_le_txheader
+	fetcht 1,mem_le_scan_data_len
+	add temp,6,pdata
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	arg mem_le_scan_data,contr
+	copy temp,loopcnt
+	call memcpy_fast
+	branch le_transmit_norx
+
+
+le_connect_request:
+	set1 mark_ext_patch,mark
+	bpatch patch23_7,mem_patch23
+	force -1,pdata
+	setsect 2,1
+	store 5,mem_le_channel_map
+	call le_calc_channel_map	
+	force 4,loopcnt
+	arg mem_le_access,contw
+	call generate_random_loop	
+	fetch 2,mem_le_conn_superto
+	store 2,mem_le_superto
+le_con_req_hop_retry:
+	random pdata
+	and_into 0xf,pdata
+	sub pdata,4,null
+	branch le_con_req_hop_retry,positive
+	store 1,mem_le_hop
+	store 1,mem_tmp1
+	set1 mark_ext_patch,mark
+	bpatch patch24_0,mem_patch24
+	fetcht 2,mem_le_conn_interval
+	storet 2,mem_le_tsniff	
+	copy temp,regc			// tsniff in regc
+	add clkn_bt,7,pdata			// leave space for offset
+	idiv regc
+	call wait_div_end
+	remainder rega
+	isub rega,pdata
+	iadd regc,pdata
+	fetcht 2,mem_le_dsniff
+	iadd temp,pdata
+	store 4,mem_le_anchor
+	isub clkn_bt,rega
+	increase -6,rega			// window offset
+	arg 0x2205,regb			// length & CONN_REQ PDU
+	fetch 1,mem_le_conn_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,regb
+	fetch 1,mem_le_conn_peer_addr_type
+	nsetflag blank,LE_RECEIVER_ADDR_BIT,regb
+	copy regb,pdata
+	store 2,mem_le_txheader
+	fetch 6,mem_le_lap
+	istore 6,contw//own addr
+	fetch 6,mem_le_plap
+	istore 6,contw// peer addr
+	fetch 4,mem_le_access
+	istore 4,contw
+	random pdata
+	istore 2,contw				/* crc init */
+	random pdata
+	istore 1,contw
+	force 2,pdata				/* window size */	
+	istore 1,contw
+	rshift2 rega,pdata
+	istore 2,contw				/* window offset */
+	rshift2 regc,pdata			
+	istore 2,contw				/* conn Interval */
+	set1 mark_ext_patch,mark
+	bpatch patch24_1,mem_patch24
+	fetch 2,mem_le_conn_latency			/* slave latency */
+	istore 2,contw
+	fetch 2,mem_le_conn_superto
+	istore 2,contw
+	fetch 5,mem_le_channel_map
+	istore 5,contw				/* channel map */
+	fetch 1,mem_le_hop
+	arg param_le_sca,temp
+	ior temp,pdata
+	istore 1,contw
+	call le_transmit_norx
+	setarg mem_le_txheader
+	add pdata,18,contr
+	ifetch 3,contr
+	store 3,mem_le_crcinit
+	rtn
+		
+le_init_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch24_2,mem_patch24
+	disable master
+	branch le_adv_access
+	
+
+
+le_update_param:
+	fetch 1,mem_le_state
+	rtnbit0 lestate_update_param
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	nrtn positive
+	set1 mark_ext_patch,mark
+	bpatch patch24_3,mem_patch24
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,le_update_param_common
+ 	jam 1,mem_lpm_mode		
+le_update_param_common:
+	fetch 1,mem_le_state
+	set0 lestate_update_param,pdata
+	set0 lestate_got_first_packet,pdata
+	store 1,mem_le_state
+	fetch 4,mem_le_anchor
+	fetcht 2,mem_le_tsniff
+	isub temp,rega
+	set1 mark_ext_patch,mark
+	bpatch patch24_4,mem_patch24
+	fetch 1,mem_le_new_param
+	store 1,mem_le_window_size
+	ifetcht 2,contr
+	ifetch 2,contr
+	lshift2 pdata,pdata
+	store 2,mem_le_tsniff
+	lshift2 temp,temp
+	iadd temp,pdata
+	ifetcht 4,contr
+	storet 4,mem_le_slave_latency	// and superTO
+	iadd rega,pdata
+	store 4,mem_le_anchor
+	branch le_receive_window_size
+
+le_update_channel_map:
+	set1 mark_ext_patch,mark
+	bpatch patch24_5,mem_patch24
+	fetch 1,mem_le_state
+	rtnbit0 lestate_update_map
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	nrtn positive
+	fetch 1,mem_le_state
+	set0 lestate_update_map,pdata
+	store 1,mem_le_state
+ 	fetch 5,mem_le_new_map
+	store 5,mem_le_channel_map
+	branch le_calc_channel_map	
+	
+	
+le_acknowledge:
+	set1 mark_ext_patch,mark
+	bpatch patch24_6,mem_patch24
+	call le_supervision_flush
+	call le_check_wak
+	fetch 1,mem_le_rxbuf
+	rshift pdata,pdata
+	ixor temp,pdata
+	isolate1 nesn,pdata
+	setflag true,mark_old_packet,mark	/* retransmit */
+	fetch 1,mem_le_rxbuf+1			
+	branch le_ack_unenc,blank		/* empty packet, no decryption */
+	fetch 1,mem_le_state
+	bbit0 lestate_encryption,le_ack_unenc
+	call load_sk
+	call le_decrypt
+	nrtn blank
+le_ack_unenc:
+	rtnmark1 mark_old_packet
+	fetcht 1,mem_le_arq
+	setflip nesn,temp
+	storet 1,mem_le_arq
+	branch le_parse
+	
+le_check_wak:
+	set1 mark_ext_patch,mark
+	bpatch patch24_7,mem_patch24
+	fetcht 1,mem_le_arq
+	isolate0 wak,temp
+	rtn true
+	fetch 1,mem_le_rxbuf
+	lshift pdata,pdata
+	ixor temp,pdata
+	rtnbit0 sn			/* received NESN is same as SN, NAK */
+	set0 wak,temp
+	setflip sn,temp
+	storet 1,mem_le_arq
+	compare 3,temp,3
+	nrtn true
+	fetch 1,mem_le_txpayload
+	beq LL_START_ENC_REQ,le_set_enc
+	fetch 1,mem_le_enc_state
+	beq FLAG_LE_ENC_PAUSE,le_clear_enc
+	rtn
+	
+
+le_set_enc:
+	fetch 1,mem_le_state
+	set1 lestate_encryption,pdata
+	store 1,mem_le_state
+	rtn	
+	
+le_clear_enc:
+	set1 mark_ext_patch,mark
+	bpatch patch25_0,mem_patch25
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	arg 0,pdata
+	store 4,mem_le_last_mic
+	store 5,mem_le_pcnt_tx
+	set1 39,pdata
+	store 5,mem_le_pcnt_rx
+	fetch 1,mem_le_state
+	set0 lestate_encryption,pdata
+	store 1,mem_le_state
+	rtn
+
+
+
+le_wait_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch25_1,mem_patch25
+	call le_next_adv_channel
+	call le_receive_adv
+	fetch 1,mem_le_adv_waitcnt
+	increase 1,pdata
+	store 1,mem_le_adv_waitcnt
+	rtn
+
+le_scan:
+	set1 mark_ext_patch,mark
+	bpatch patch25_2,mem_patch25
+	fetch 1,mem_le_scan_enable
+	rtnne LE_SCAN_ENABLE
+	arg le_scan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetch 2,mem_le_scan_interval
+	fetcht 2,mem_le_scan_window
+	isub temp,pdata
+	arg le_scan_interval_timer,queue
+	call timer_init
+	disable master
+	call le_init_adv
+	call le_wait_adv
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch25_3,mem_patch25
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+//	call le_scan_dongle
+
+	fetch 1,mem_le_adv_rcv
+	increase 1,pdata
+	store 1,mem_le_adv_rcv
+	call le_create_conn
+	rtn master
+	call le_send_scan_request
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch25_4,mem_patch25
+	fetch 1,mem_le_scanrsp_rcv
+	increase 1,pdata
+	store 1,mem_le_scanrsp_rcv
+	fetch 9,mem_le_rxbuf+8
+	store 9,mem_tmp_buffer
+	rtn
+	
+le_create_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch25_5,mem_patch25
+	fetch 1,mem_cmd_le_create_conn
+	rtnne hci_cmd_le_create_conn,pdata
+	fetch 6,mem_le_plap
+	fetcht 6,mem_le_conn_peer_addr
+	isub temp,null
+	nrtn zero
+	call context_new
+	nrtn zero
+	call le_connect_request
+	call le_init_master
+	set1 mark_ext_patch,mark
+	bpatch patch25_6,mem_patch25
+	jam 0,mem_hci_cmd
+	jam 0,mem_le_peer_sca
+	jam 0,mem_le_scan_enable
+	jam 0,mem_cmd_le_create_conn
+	jam XT_LL_VERSION_IND,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch context_save
+	
+le_scan_check_sender_addr_type:
+	arg 1,regA// sender_addr_type
+	fetch 1,mem_le_rxbuf
+	rtnbit1 LE_SENDER_ADDR_BIT
+	arg 0,regA
+	rtn
+
+le_xtype_fifo_count:
+	arg mem_le_xtype_fifo,contr
+	branch fifo_content_count
+	
+le_xtype_fifo_is_empty:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_empty
+	
+le_xtype_fifo_is_full:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_full
+	
+le_xtype_fifo_is_near_full:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_near_full
+	
+le_xtype_fifo_in:
+	arg mem_le_xtype_fifo,rega	
+	branch fifo_in
+	
+le_prepare_tx:
+	set1 mark_ext_patch,mark
+	bpatch patch25_7,mem_patch25
+	fetch 1,mem_le_arq
+	rtnbit1 wak
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_prepare_tx_shutter
+le_prepare_tx_1:
+	arg mem_le_xtype_fifo,rega
+	call fifo_out
+	nbranch le_prepare_tx_cmd,blank
+	branch le_send_empty
+
+le_prepare_tx_shutter:
+	fetch 1,mem_empty_count
+	nbranch le_send_empty_shutter,blank
+	fetch 1,mem_le_state  
+	bbit0 lestate_encryption,le_tx_4  
+	fetch 1,mem_le_rxbuf + 1  
+	branch le_tx_4,blank  
+	branch le_send_empty      // send empty data when got non empty packet
+le_send_empty_shutter:
+	fetch 1,mem_empty_count
+	increase -1,pdata
+	store 1,mem_empty_count
+	branch le_send_empty
+le_tx_4:	
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,in_le_tx_4
+	jam 3,mem_empty_count
+in_le_tx_4:	
+	branch le_prepare_tx_1
+	
+le_prepare_tx_cmd:
+	copy pdata,temp
+	set1 mark_ext_patch,mark
+	bpatch patch26_0,mem_patch26
+	copy temp,pdata
+	bbit0 5,le_prepare_l2cap
+	force 3,type
+	set0 5,pdata
+	store 1,mem_le_txpayload
+	set1 mark_ext_patch,mark
+	bpatch patch26_1,mem_patch26
+le_prepare_tx_ll:
+	fetch 1,mem_le_txpayload
+	beq LL_CONNECTION_UPDATE_REQ,le_send_connection_update_req
+	beq LL_CHANNEL_MAP_REQ,le_send_channel_map_req
+	beq LL_TERMINATE_IND,le_send_terminate_ind
+	beq LL_ENC_REQ,le_send_enc_req
+	beq LL_ENC_RSP,le_send_enc_rsp
+	beq LL_START_ENC_REQ,le_send_start_enc_req
+	beq LL_START_ENC_RSP,le_send_start_enc_rsp
+	beq LL_UNKNOWN_RSP,le_send_unknown_rsp
+	beq LL_FEATURE_REQ,le_send_feature
+	beq LL_FEATURE_RSP,le_send_feature
+	beq LL_PAUSE_ENC_REQ,le_send_pause_enc_req
+	beq LL_PAUSE_ENC_RSP,le_send_pause_enc_rsp
+	beq LL_VERSION_IND,le_send_version_ind
+	beq LL_REJECT_IND,le_send_reject_ind
+	beq LL_CONNECTION_PARAM_REQ,le_send_conn_param_req  //ACL PACKET
+	beq LL_PING_RSP ,le_send_ping_response
+	branch assert
+	
+le_prepare_l2cap:
+	jam 0,mem_le_txcid+1
+	force 2,type
+	bbit0 6,le_prepare_att
+	beq ATTOP_WRITE_COMMAND,le_prepare_att
+	beq ATTOP_SIGNED_WRITE_COMMAND,le_prepare_att
+	jam LE_L2CAP_CID_SMP,mem_le_txcid
+	set0 6,pdata
+	store 1,mem_le_l2cap
+	set1 mark_ext_patch,mark
+	bpatch patch26_2,mem_patch26
+	fetch 1,mem_le_l2cap
+le_prepare_smp0:
+	beq SMP_PAIRING_REQUEST,le_send_smp_pairing_request             
+	beq SMP_PAIRING_RESPONSE,le_send_smp_pairing_response            
+	beq SMP_PAIRING_CONFIRM,le_send_smp_pairing_confirm             
+	beq SMP_PAIRING_RANDOM,le_send_smp_pairing_random              
+	beq SMP_PAIRING_FAILED,le_send_smp_pairing_failed              
+	beq SMP_ENCRYPTION_INFORMATION,le_send_smp_encryption_information      
+	beq SMP_MASTER_IDENTIFICATION,le_send_smp_master_identification       
+	beq SMP_IDENTITY_INFORMATION,le_send_smp_identity_information        
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_send_smp_identity_address_information
+	beq SMP_SIGNING_INFORMATION,le_send_smp_signing_information         
+	beq SMP_SECURITY_REQUEST,le_send_smp_security_request            
+ifdef SECURE_CONNECTION
+	beq SMP_PAIRING_PUBLIC_KEY,le_send_smp_pairing_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_send_smp_pairing_dhkey_check
+endif
+	branch assert
+	
+le_prepare_att:
+	jam LE_L2CAP_CID_ATT,mem_le_txcid
+	store 1,mem_le_l2cap
+	set1 mark_ext_patch,mark
+	bpatch patch26_3,mem_patch26
+	fetch 1,mem_le_l2cap
+	beq ATTOP_ERROR_RESPONSE,le_send_att_error_response
+	beq ATTOP_EXCHANGE_MTU_REQUEST,le_send_att_exchange_mtu_req
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,le_send_att_exchange_mtu_rsp
+	beq ATTOP_FIND_INFORMATION_REQUEST,le_send_att_find_information_request
+	beq ATTOP_FIND_INFORMATION_RESPONSE,le_send_att_find_information_response
+	beq ATTOP_FIND_BY_TYPE_VALUE_REQUEST,le_send_att_find_by_type_value_request
+	beq ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,le_send_att_find_by_type_value_response
+	beq ATTOP_READ_BY_TYPE_REQUEST,le_send_att_read_by_type_request
+	beq ATTOP_READ_BY_TYPE_RESPONSE,le_send_att_read_by_type_response
+	beq ATTOP_READ_REQUEST,le_send_att_read_request
+	beq ATTOP_READ_RESPONSE,le_send_att_read_response
+	beq ATTOP_READ_BLOB_REQUEST,le_send_att_read_blob_request
+	beq ATTOP_READ_BLOB_RESPONSE,le_send_att_read_blob_response
+	beq ATTOP_READ_MULTIPLE_REQUEST,le_send_att_read_multiple_request
+	beq ATTOP_READ_MULTIPLE_RESPONSE,le_send_att_read_multiple_response
+	beq ATTOP_READ_BY_GROUP_TYPE_REQUEST,le_send_att_read_by_group_type_request
+	beq ATTOP_READ_BY_GROUP_TYPE_RESPONSE,le_send_att_read_by_group_type_response
+	beq ATTOP_WRITE_REQUEST,le_send_att_write_request
+	beq ATTOP_WRITE_RESPONSE,le_send_att_write_response
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_send_att_prepare_write_request
+	beq ATTOP_PREPARE_WRITE_RESPONSE,le_send_att_prepare_write_response
+	beq ATTOP_EXECUTE_WRITE_REQUEST,le_send_att_execute_write_request
+	beq ATTOP_EXECUTE_WRITE_RESPONSE,le_send_att_execute_write_response
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,le_send_att_handle_value_notification
+	beq ATTOP_HANDLE_VALUE_INDICATION,le_send_att_handle_value_indication
+	beq ATTOP_HANDLE_VALUE_CONFIRMATION,le_send_att_handle_value_confirmation
+	beq ATTOP_WRITE_COMMAND,le_send_att_write_command
+	beq ATTOP_SIGNED_WRITE_COMMAND,le_send_att_signed_write_command
+	beq EMPTY_LE_DATA_PRE,le_send_empty_le_data_pre
+	beq EMPTY_LE_DATA,le_send_empty_le_data
+	beq ATTOP_CONTINUE,le_send_att_continue
+	branch assert
+	
+le_send_empty_le_data_pre:
+	jam ATTOP_READ_BY_GROUP_TYPE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	
+le_send_empty_le_data:
+	setarg 0x0011
+	store 2,mem_le_txheader
+	fetch 1,mem_le_arq
+	set1 wak,pdata
+	store 1,mem_le_arq
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_send_connection_update_req:
+	force 12,temp
+	branch le_send_packet
+	
+le_send_channel_map_req:
+	force 8,temp
+	branch le_send_packet
+	
+le_send_terminate_ind:
+	force 2,temp
+	branch le_send_packet
+	
+le_send_enc_req:
+	force 0,pdata
+	istore 8,contw					/* RAND=0 */
+	istore 2,contw					/* EDIV=0 */
+	copy contw,temp
+	arg mem_le_skdm,contw
+	force 8,loopcnt
+	call generate_random_loop
+	fetch 8,mem_le_skdm
+	istore 8,temp					/* SKDm */
+	copy contw,temp
+	arg mem_le_ivm,contw
+	force 4,loopcnt
+	call generate_random_loop
+	fetch 4,mem_le_ivm
+	istore 4,temp					/* IVm */
+	force 23,temp
+	branch le_send_packet
+	
+le_send_enc_rsp:
+	copy contw,temp
+	arg mem_le_skds,contw
+	force 8,loopcnt
+	call generate_random_loop
+	fetch 8,mem_le_skds
+	istore 8,temp					/* SKDs */
+	copy contw,temp
+	arg mem_le_ivs,contw
+	force 4,loopcnt
+	call generate_random_loop
+	fetch 4,mem_le_ivs
+	istore 4,temp					/* IVs */
+	call generate_sk
+	fetch 1,mem_ltk_exists
+	beq 0,le_ltk_lost	
+	jam XT_LL_START_ENC_REQ,mem_fifo_temp
+	call le_xtype_fifo_in
+	force 13,temp
+	branch le_send_packet
+
+le_ltk_lost:
+	jam FLAG_LE_ENC_NULL,mem_le_enc_state
+	jam XT_LL_REJECT_IND,mem_fifo_temp
+	call le_xtype_fifo_in
+	call check_51cmd_le_smp_sec_req	
+	force 13,temp
+	branch le_send_packet
+
+	
+le_send_start_enc_req:
+	force 1,temp
+	branch le_send_packet
+	
+le_send_start_enc_rsp:
+	force 1,temp
+	branch le_send_packet,master
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_send_start_enc_rsp_shutter
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,le_send_start_enc_rsp_end
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch le_send_start_enc_rsp_common
+le_send_start_enc_rsp_end:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+le_send_start_enc_rsp_common:
+	force 1,temp
+	branch le_send_packet
+le_send_start_enc_rsp_shutter:
+	jam 1,mem_lpm_mode
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_AFTER_AUTH,le_send_start_enc_rsp0
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+le_send_start_enc_rsp0:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	force 1,temp
+	call le_send_packet
+	jam 1,mem_send_updata_le_param_timer
+	rtn
+le_send_unknown_rsp:
+	fetch 1,mem_le_ll_cur_opcode
+	istore 1,contw
+	force 2,temp
+	branch le_send_packet
+	
+le_send_feature:
+	setarg param_le_features
+	istore 8,contw
+	force 9,temp
+	branch le_send_packet
+	
+le_send_pause_enc_req:
+//	force 1,temp
+//	branch le_send_packet		
+le_send_pause_enc_rsp:
+le_send_ping_response:
+	force 1,temp
+	branch le_send_packet	
+	
+le_send_version_ind:
+	fetch 5,mem_lmp_version
+	istore 5,contw
+//	setarg param_le_version
+//	istore 3,contw
+//	setarg param_le_subversion
+//	istore 2,contw
+	force 6,temp
+	branch le_send_packet
+	
+le_send_reject_ind:
+	setarg LE_ERR_PIN_OR_KEY_MISSING
+	istore 1,contw
+	force 2,temp
+	branch le_send_packet
+
+le_send_conn_param_req:
+	increase -1,contw
+	setarg 0x000c
+	istore 2,contw //Length
+	setarg 0x0005
+	istore 2,contw	//CID
+	setarg 0xb412
+	istore 2,contw		
+	setarg 0x0008
+	istore 2,contw
+	fetch 8,mem_le_interal_min
+	istore 8,contw
+	force 2,type
+	branch le_send_autolen
+
+le_send_smp_pairing_request:
+	setarg 0x1000401
+	store 4,mem_le_preq
+	setarg 0x070710
+	istore 3,contw
+	fetch 6,mem_le_preq_iocap
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+	
+le_send_smp_pairing_response:
+	fetch 1,mem_device_option
+	sub pdata,dvc_op_module,null
+	call  le_parse_smp_pairing_request_check_irk,zero
+
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,le_send_smp_pairing_response_common
+ 	jam PAIR_ING, mem_pair_state
+	fetch 1,mem_le_preq_init_key_distribution
+	bbit1 INITATOR_IRK,le_send_smp_pairing_response_common
+	setarg param_smp_key_dist2
+	istore 3,contw	
+le_send_smp_pairing_response_common:
+	fetch 6,mem_le_pres_iocap
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+
+le_parse_smp_pairing_request_check_irk:
+	fetcht 1,mem_le_pres_init_key_distribution
+	fetch 1,mem_le_preq_init_key_distribution
+	isolate1 LE_INITATOR_IRK_BIT,pdata
+	setflag true,LE_INITATOR_IRK_BIT,temp
+	storet 1,mem_le_pres_init_key_distribution
+	fetcht 1,mem_le_pres_resp_key_distribution
+	setflag true,LE_INITATOR_IRK_BIT,temp
+	storet 1,mem_le_pres_resp_key_distribution
+	rtn
+	
+	
+le_send_smp_pairing_confirm:
+ifdef SECURE_CONNECTION
+	fetch 1,mem_le_secure_connect_enable
+	beq 1,le_send_smp_pairing_confirm_sc
+endif
+	call generate_confirm
+	arg mem_le_l2cap_response,contw
+	call store_aes_result
+	force 21,temp
+	branch le_send_packet
+ifdef SECURE_CONNECTION
+le_send_smp_pairing_confirm_sc:
+	arg mem_le_srand,contw	
+	call generate_random
+	call function_f4_cb
+	arg mem_le_l2cap_response,contw
+	call load_inverse_result
+	force 21,temp
+	branch le_send_packet
+endif
+
+le_send_smp_pairing_random:
+	fetch 8,mem_le_mrand
+	branch le_send_smp_mrandom,master
+	fetch 8,mem_le_srand
+	
+le_send_smp_mrandom:
+	call le_send_smp_128
+	branch le_send_packet
+	
+le_send_smp_pairing_failed:
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	arg PAIRING_FAILED_UNSPECIFIED_REASON,pdata
+	istore 1,contw
+	force 6,temp
+	branch le_send_packet
+	
+le_send_smp_encryption_information:
+	jam BT_EVT_LE_ENC_INFO,mem_fifo_temp
+	call ui_ipc_send_event
+	jam XT_SMP_MASTER_IDENTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 1,mem_device_option
+	beq dvc_op_shutter, le_send_smp_encryption_information_shutter
+	fetch 8,mem_le_ltk
+	call le_send_smp_128
+	call le_send_packet
+	fetch 1,mem_le_conn_peer_addr_type
+	beq MASTER_PUBLIC_ADDR,app_ble_store_reconn_info
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	branch app_ble_store_reconn_info,true
+	rtn
+	
+le_send_smp_encryption_information_shutter:
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	
+	fetch 8,mem_le_ltk
+	call le_send_smp_128
+	branch le_send_packet
+	
+	
+le_send_smp_master_identification:
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_send_smp_master_identification_shutter
+
+	fetch 1,mem_le_preq_init_key_distribution
+	bbit0 LE_INITATOR_IRK_BIT,le_send_smp_master_identification_only
+	jam XT_SMP_IDENTITY_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch le_send_smp_master_identification_common
+	
+le_send_smp_master_identification_only:	
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	jam FLAG_LE_PAIRING_END,mem_le_pairing_state
+le_send_smp_master_identification_common:	
+	arg mem_le_ediv,contw
+	force 10,loopcnt
+	call generate_random_loop
+	fetch 2,mem_le_ediv
+	store 2,mem_le_l2cap_response
+	fetch 8,mem_le_rand
+	istore 8,contw
+	force 15,temp
+	branch le_send_packet
+
+le_send_smp_master_identification_shutter:
+	arg mem_le_l2cap_response,contw
+	force 8,loopcnt
+	call generate_random_loop
+	force 15,temp
+	branch le_send_packet
+	
+le_send_smp_identity_information:
+	jam XT_SMP_IDENTITY_ADDRESS_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	setarg 0
+	store 8,mem_le_l2cap_response
+	istore 8,contw	//irk is zero. a device does not have a valid resolvable private address.
+	branch le_send_autolen
+	
+le_send_smp_identity_address_information:
+//	jam XT_SMP_SIGNING_INFORMATION,mem_fifo_temp
+//	call le_xtype_fifo_in
+	fetch 1,mem_le_conn_own_addr_type					 
+	store 1,mem_le_l2cap_response
+	fetch 6,mem_le_lap
+	istore 6,contw
+	branch le_send_autolen
+	
+le_send_smp_signing_information:
+	arg mem_le_l2cap_response,contw
+	call generate_random
+	branch le_send_autolen
+	
+le_send_smp_security_request:
+	fetch 1,mem_le_pres_auth
+	store 1,mem_le_l2cap_response
+	force 6,temp
+	branch le_send_packet
+
+ifdef SECURE_CONNECTION
+le_send_smp_pairing_public_key:
+//p_le_send_continue:
+	fetch 1,mem_le_continue_type
+	beq LE_CONTINUE_TYPE_PUBLIC_KEY,le_send_public_key_continue
+//	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+
+	arg 65,temp
+	storet 2,mem_le_txpayload // L2CAP length
+	set1 mark_ext_patch,mark
+	bpatch patch26_4,mem_patch26
+	arg 0x02,type  //LLIC:start
+	setarg LE_L2CAP_CID_SMP
+	store 2,mem_le_txcid //contw
+
+	arg mem_le_l2cap_response,contw
+	arg 22,loopcnt
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy_fast
+	jam 22,mem_le_public_length
+	
+	jam  27,mem_le_txlen
+
+	fetcht 1,mem_le_arq
+	set1 md,temp
+	storet 1,mem_le_arq
+//	jam 0,mem_le_md_flag
+//	jam LE_MD_NOTIFICATION,mem_le_continue_type
+//	jam ATTOP_CONTINUE,mem_fifo_temp
+//	call le_xtype_fifo_in
+	jam LE_CONTINUE_TYPE_PUBLIC_KEY,mem_le_continue_type
+	fetcht 1,mem_le_arq
+	branch le_send_non_l2cap2	
+
+
+le_send_public_key_continue:
+	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+
+	fetch 1,mem_le_public_length
+	beq 22,le_send_public_key_continue2
+
+	arg  15,loopcnt
+	jam 15,mem_le_txlen
+	call le_send_smp_publickey_continue_common
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_SEND_PUBLIC_KEY,mem_le_secure_connect_state
+	jam 0,mem_le_public_length
+	rtn
+le_send_smp_publickey_continue_common:
+	arg mem_le_pubkey_local_x_256 ,contr
+	iadd contr,contr	
+	arg mem_le_txpayload,contw
+	call memcpy_fast
+	arg 1,type   // LLID : continue
+	branch le_send_non_l2cap	
+
+
+le_send_public_key_continue2:	
+	jam 49,mem_le_public_length
+	arg  27,loopcnt
+	jam 27,mem_le_txlen
+	call le_send_smp_publickey_continue_common
+
+	jam LE_CONTINUE_TYPE_PUBLIC_KEY,mem_le_continue_type
+
+//	jam ATTOP_CONTINUE,mem_fifo_temp
+//	branch le_xtype_fifo_in
+	rtn
+	
+le_send_smp_pairing_dhkey_check:
+	call function_f6_eb
+	arg mem_le_l2cap_response,contw
+	call load_inverse_result
+	force 21,temp
+	branch le_send_packet
+endif
+	
+le_send_smp_128:
+	store 8,mem_le_l2cap_response
+	ifetch 8,contr
+	istore 8,contw
+	force 21,temp
+	rtn
+
+le_send_att_error_response_notfound:	
+	jam ATT_ERR_ATTRIBUTE_NOT_FOUND,mem_le_err_code
+le_send_att_error_response:	
+	jam ATTOP_ERROR_RESPONSE,mem_le_l2cap
+	fetch 3,mem_le_att_opcode
+	store 3,mem_le_l2cap_response
+	fetch 1,mem_le_err_code
+	istore 1,contw
+	branch le_send_autolen
+	
+le_send_att_exchange_mtu_rsp:
+le_send_att_exchange_mtu_req:
+	fetch 2,mem_le_local_mtu
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_find_information_request:
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_le_l2cap_response
+	fetch 2,mem_le_search_handle_end
+	istore 2,contw
+	branch le_send_autolen
+	
+	
+
+le_send_att_find_information_response:
+	arg 2,timeup
+	force 1,pdata
+	store 1,mem_le_l2cap_response
+	call le_init_attlist_search
+le_send_att_find_information_res_loop:
+	call le_att_handle_inrange
+	branch le_send_att_find_information_res_end,blank
+	nbranch le_send_att_find_information_res_next,positive
+	disable user
+	istore 2,contw
+	ifetch 1,contr
+	copy pdata,loopcnt
+	call memcpy_fast
+	increase -1,timeup
+	branch le_send_att_find_information_res_end,zero
+le_send_att_find_information_res_cont:
+	ifetch 1,contr
+	iadd contr,contr
+	branch le_send_att_find_information_res_loop
+le_send_att_find_information_res_next:
+	ifetch 1,contr
+	iadd contr,contr
+	branch le_send_att_find_information_res_cont
+le_send_att_find_information_res_end:
+	branch le_send_att_error_response_notfound,user
+	branch le_send_autolen
+	
+	
+le_send_att_find_by_type_value_request:
+	fetch 2,mem_le_search_handle_start
+	branch le_send_empty_le_data,blank
+	store 2,mem_le_l2cap_response
+	fetch 2,mem_le_search_handle_end
+	//setarg 0xffff
+	istore 2,contw
+	fetch 2,mem_le_search_uuid
+	//setarg 0x2800
+	istore 2,contw
+	fetch 2,mem_le_search_att_type
+	//setarg 0x1801
+	istore 2,contw
+	branch le_send_autolen
+
+
+le_start_end_handle_check_1:
+	disable user
+	fetcht 2,mem_le_search_handle_start
+	fetch 2,mem_le_search_handle_end
+	isub temp,null
+	nbranch le_start_end_handle_check_1_fail,positive
+	deposit temp
+	rtnne 0
+le_start_end_handle_check_1_fail:
+	enable user
+	jam ATT_ERR_INVALID_HANDLE,mem_le_err_code
+	branch le_send_att_error_response
+	
+le_send_att_find_by_type_value_response:
+	call le_start_end_handle_check_1
+	rtn user
+	fetcht 2,mem_le_search_uuid
+	setarg UUID_GATT_PRIMARY_SERVICE
+	isub temp,null
+	branch le_send_att_find_by_type_value_res_primary,zero
+	setarg UUID_GATT_SECONDARY_SERVICE
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	setarg UUID_GATT_INCLUDE
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	branch le_send_att_error_response_notfound
+	
+le_send_att_find_by_type_value_res_primary:
+	jam LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND,mem_le_search_res
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+	call le_att_get_handle_info
+	nbranch le_send_att_error_response_notfound,blank
+le_send_att_find_primary_search_loop:
+	fetcht 2,mem_temp
+	call le_att_get_handle_info
+	nbranch le_send_att_error_response_notfound2,blank	
+	copy contr,rega
+	fetch 1,mem_le_search_len
+	copy pdata,loopcnt
+	fetcht 1,mem_le_search_att_type_length
+	isub temp,null
+	nbranch le_send_att_find_primary_search_loop1,zero
+	arg mem_le_search_att_type,regb
+	call string_compare
+
+	branch le_send_att_find_primary_search_end_start_handle_found,zero
+
+	fetch 2,mem_le_cur_uuid
+	fetcht 2,mem_le_search_uuid
+	isub temp,null
+	branch le_send_att_find_primary_search_end_ending_handle_found,zero
+le_send_att_find_primary_search_loop1:
+	fetch 2,mem_temp
+	increase 1,pdata
+	store 2,mem_temp
+	branch le_send_att_find_primary_search_loop
+
+le_send_att_error_response_notfound2:
+	fetch 1,mem_le_search_res
+	beq LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE,le_send_att_find_primary_search_end_ending_handle_found
+	branch le_send_att_error_response_notfound
+
+	
+le_send_att_find_primary_search_end_start_handle_found:
+	fetch 2,mem_le_cur_uuid
+	fetcht 2,mem_le_search_uuid
+	isub temp,null
+	nbranch  le_send_att_find_primary_search_loop1,zero
+	jam LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE,mem_le_search_res
+//	copy rega,temp
+	fetcht 2,mem_temp
+	storet 2,mem_le_cur_handle_start
+	branch le_send_att_find_primary_search_loop1
+
+le_send_att_find_primary_search_end_ending_handle_found:
+	fetch 1,mem_le_search_res
+	beq LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND,le_send_att_find_primary_search_loop1
+	jam LE_FIND_BY_TYPE_VAL_RES_FOUND_ENDING_HANDLE,mem_le_search_res
+	fetcht 2,mem_temp
+	increase -1,temp
+	storet 2,mem_le_cur_handle_end
+le_send_att_find_primary_search_end:
+	fetch 2,mem_le_cur_handle_start
+	icopy rega//handle start
+	fetch 2,mem_le_cur_handle_end
+	icopy regb//handle end
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_le_l2cap
+	deposit rega
+	store 2,mem_le_l2cap_response
+	deposit regb
+	istore 2,contw
+	force 9,temp
+	branch le_send_packet
+
+	
+le_send_att_read_by_type_request:
+	fetch 2,mem_le_search_handle_start
+//	setarg 0x0001
+	istore 2,contw
+	fetch 2,mem_le_search_handle_end
+//	setarg 0x0018
+	istore 2,contw
+	fetch 2,mem_le_search_att_type
+	istore 2,contw
+	force 11,temp
+	branch le_send_packet
+
+	
+
+le_send_att_read_by_type_response:
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+	call le_init_attlist_search
+	call le_att_get_handle_ptr2
+	increase -2,contr
+	copy contr,pdata
+	store 2,mem_le_cur_attlist_start_ptr
+
+	fetcht 2,mem_le_search_uuid
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	nbranch le_send_att_read_by_type_res_not_characteristic,zero
+	arg 2,timeup
+	set1 mark_ext_patch,mark
+	bpatch patch26_5,mem_patch26
+le_send_att_read_by_type_response_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_read_by_type_response_end,positive
+	fetcht 2,mem_temp
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_read_by_type_response_end
+	call le_att_same_uuid
+	nbranch le_send_att_read_by_type_response_next_handle,zero
+	nbranch le_send_att_read_by_type_res_found_next,user
+	disable user
+	
+	call le_send_att_read_by_type_write_properties
+	call le_att_next_handle
+	call le_att_get_handle_info_from_ptr
+	call le_send_att_read_by_type_write_uuid
+	increase -1,timeup
+	branch le_send_att_read_by_type_response_end,zero
+le_send_att_read_by_type_response_next_handle:
+	call le_att_next_handle
+	branch le_send_att_read_by_type_response_loop
+le_send_att_read_by_type_response_end:
+	branch le_send_att_error_response_notfound,user
+	branch le_send_auto_len_by_mem
+
+le_send_att_read_by_type_res_found_next:
+	call le_store_att_record
+	call le_att_next_handle
+	call le_att_get_handle_info_from_ptr
+	fetch 1,mem_le_l2cap_response
+	beq 21,le_send_att_read_by_type_response_end
+	fetch 1,mem_le_cur_uuid_lenth
+	increase 5,pdata
+	fetcht 1,mem_le_l2cap_response
+	isub temp,null
+	nbranch le_send_att_read_by_type_response_end,zero
+	
+	call get_contw
+	fetch 2,mem_temp
+	increase -1,pdata
+	istore 2,contw
+	call le_write_att_record_common
+	call le_send_att_read_by_type_write_uuid
+	increase -1,timeup
+	branch le_send_att_read_by_type_response_end,zero
+	branch le_send_att_read_by_type_response_next_handle
+le_send_att_read_by_type_write_properties:
+	fetch 2,mem_temp
+	store 2,mem_le_l2cap_response+1
+	
+	fetch 1,mem_le_search_len
+	copy pdata,loopcnt
+	call get_contr
+	call memcpy_fast
+	branch store_contw
+le_send_att_read_by_type_write_uuid:
+	call get_contw
+	fetch 2,mem_temp
+	istore 2,contw
+	call store_contw
+	fetch 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	increase 5,pdata
+	store 1,mem_le_l2cap_response
+	call get_contw	
+	call get_contr
+	isub loopcnt,contr
+	increase -1,contr
+	call memcpy_fast
+	branch store_contw
+
+
+
+le_send_att_read_by_type_res_not_characteristic:
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+le_send_att_read_by_type_res_not_char_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_error_response_notfound,positive
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_error_response_notfound
+	call le_att_same_uuid
+	nbranch le_send_att_read_by_type_res_not_char_next,zero
+le_check_if_name_uuid:
+	fetch 1,mem_le_search_uuid_length
+	bne 2,le_send_att_read_by_type_res_not_name
+	fetch 2,mem_le_search_uuid
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	isub temp,null
+	nbranch le_send_att_read_by_type_res_not_name,zero
+	fetch 1,mem_le_name_len
+	branch le_send_att_read_by_type_res_not_char_common
+le_send_att_read_by_type_res_not_name:	
+	fetch 1,mem_le_search_len
+le_send_att_read_by_type_res_not_char_common:
+	copy pdata,loopcnt
+	increase 2,pdata
+	store 1,mem_le_l2cap_response
+	fetch 2,mem_temp
+	istore 2,contw
+	call get_contr
+	call memcpy_fast
+	branch le_send_autolen
+le_send_att_read_by_type_res_not_char_next:
+ 	call le_att_next_handle
+	branch le_send_att_read_by_type_res_not_char_loop
+	
+	
+le_send_att_read_request:
+	fetch 1,mem_le_temp
+	//branch le_send_att_read_req_end,blank
+         increase -1,pdata
+         store 1,mem_le_temp
+         lshift pdata,pdata
+         //increase -2,pdata
+         iadd contr,contr
+         ifetcht 2,contr
+         storet 2,mem_le_l2cap_response
+	branch le_send_autolen
+	
+le_send_att_read_response:
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_INSUFFICIENT_AUTHENTICATION,le_send_att_read_response_common
+	fetch 2,mem_le_att_handle
+	fetcht 2,mem_le_pairing_handle
+	isub temp,null
+	branch le_send_att_read_response_error_insufficient_authentication,zero
+le_send_att_read_response_common:
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch le_send_att_error_response_notfound,blank
+	ifetch 1,contr
+	branch le_send_autolen,blank
+	sub pdata,22,null
+	branch le_send_att_read_response_less,positive
+	force 22,pdata
+le_send_att_read_response_less:
+	icopy loopcnt
+	call memcpy_fast
+	branch le_send_autolen
+
+le_send_att_read_response_error_insufficient_authentication:
+	fetch 1,mem_le_pairing_mode
+	branch le_send_att_read_response_common,blank
+	fetch 1,mem_le_state
+	bbit1 lestate_encryption,le_send_att_read_response_common
+	jam ATT_ERR_INSUFFICIENT_AUTHENTICATION,mem_le_err_code
+	branch le_send_att_error_response
+	
+le_send_att_read_blob_request:
+	setarg 0x0003
+	store 2,mem_le_l2cap_response
+	setarg 0x0008
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_read_blob_response:
+	fetch 2,mem_le_att_offset
+	iforce rega
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr 
+	branch le_send_att_error_response_notfound,blank
+	ifetch 1,contr
+	isub rega,loopcnt
+	nbranch le_send_att_error_response_notfound,positive
+	sub loopcnt,22,null
+	branch le_send_att_read_blob_response_less,positive
+	force 22,loopcnt
+le_send_att_read_blob_response_less:
+	deposit rega
+	iadd contr,contr
+	call memcpy_fast	
+	branch le_send_autolen
+	
+le_send_att_read_multiple_request:
+	setarg 0x0003
+	istore 2,contw
+	setarg 0x0007
+	istore 2,contw
+	setarg 0x0009
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_read_multiple_response:
+	fetch 1,mem_le_temp
+	icopy regc//handle number
+	//store 1,0x1ff0
+	arg mem_le_rxbuf+7,rega
+	arg mem_le_l2cap_response,regb
+	arg 0,timeup
+	disable user7
+
+le_send_att_read_multiple_response_loop:
+	copy rega,contr
+	ifetcht 2,contr
+	copy contr,rega
+	call le_att_get_handle_ptr 
+	branch le_send_att_read_multiple_response_end,blank
+	ifetch 1,contr
+	icopy loopcnt
+	iadd timeup,timeup
+	//deposit timeup
+	//store 1,0x1ff3
+	//branch loop	
+	sub timeup,24,null
+	nbranch le_send_att_read_multiple_response_end_1,positive
+	copy regb,contw
+	
+le_copy_att_value_loop_3:
+	ifetch 1,contr
+	istore 1,contw
+	loop le_copy_att_value_loop_3
+	copy contw,regb
+	enable user7
+	increase -1,regc
+	branch le_send_att_read_multiple_response_end,zero
+	branch le_send_att_read_multiple_response_loop
+
+le_send_att_read_multiple_response_end:
+	nbranch le_send_att_read_multiple_response_fail,user7
+	disable user7
+	copy timeup,temp
+	increase 5,temp
+	branch le_send_packet
+	
+le_send_att_read_multiple_response_end_1:
+	nbranch le_send_att_read_multiple_response_fail,user7
+	disable user7
+	deposit timeup
+	isub loopcnt,temp
+	increase 5,temp
+	branch le_send_packet
+	
+le_send_att_read_multiple_response_fail:
+	jam ATT_ERR_UNSUPPORTED_GROUP_TYPE,mem_le_err_code
+	branch le_send_att_error_response
+
+	
+le_send_att_read_by_group_type_request:
+	fetch 2,mem_le_att_handle
+	branch le_send_empty_le_data,blank
+	istore 2,contw
+	setarg 0xffff
+	istore 2,contw
+	setarg 0x2800
+	istore 2,contw
+	branch le_send_autolen
+
+
+//mem_le_search_att_type
+//mem_le_search_handle_start
+//mem_le_search_handle_end
+le_send_att_read_by_group_type_response:
+	arg 2,timeup
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_temp
+	jam 0,mem_le_search_res
+//	enable user
+	fetcht 2,mem_le_search_handle_start
+	storet 2,mem_temp
+	call le_init_attlist_search
+	call le_att_get_handle_ptr2
+	increase -2,contr
+	copy contr,pdata
+	store 2,mem_le_cur_attlist_start_ptr
+	set1 mark_ext_patch,mark
+	bpatch patch26_6,mem_patch26
+le_send_att_read_by_group_type_response_loop:
+	call le_att_check_handle_end
+	nbranch le_send_att_read_by_group_type_end0,positive
+	fetcht 2,mem_temp
+	call le_att_get_handle_info_from_ptr
+	beq 1,le_send_att_read_by_group_type_end1
+
+	call le_att_same_type
+	nbranch le_send_att_read_by_group_type_next_handle,zero
+	fetch 1,mem_le_search_res
+	beq 1,le_send_att_read_by_group_type_end1
+	nbranch le_send_att_read_by_group_type_store_write_record,user		//un first
+	disable user
+	fetch 1,mem_le_search_len
+	increase 4,pdata
+	store 1,mem_le_l2cap_response
+	call store_contw
+	branch le_send_att_read_by_group_type_store_record
+le_send_att_read_by_group_type_store_write_record:
+	fetch 1,mem_le_l2cap_response
+	beq 20,le_send_att_read_by_group_type_end1
+	fetch 1,mem_le_search_len
+	increase 4,pdata
+	fetcht 1,mem_le_l2cap_response
+	isub temp,null
+	nbranch le_send_att_read_by_group_type_end1,zero
+//	fetch 1,mem_le_l2cap_response
+//	sub pdata,0x10,null
+//	branch le_send_att_read_by_group_type_end1,zero
+	fetch 2,mem_temp
+	increase -1,pdata
+	store 2,mem_le_cur_handle_end
+	call le_write_att_record
+le_send_att_read_by_group_type_store_record:
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_start
+	call le_store_att_record
+	increase -1,timeup
+	branch le_send_att_read_by_group_type_last_find,zero		
+le_send_att_read_by_group_type_next_handle:
+	call le_att_next_handle
+	branch le_send_att_read_by_group_type_response_loop
+le_send_att_read_by_group_type_last_find:
+	jam 1,mem_le_search_res
+	branch le_send_att_read_by_group_type_next_handle
+le_send_att_read_by_group_type_end0:	//> att handle end
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_end
+	branch le_send_att_read_by_group_type_end_common
+le_send_att_read_by_group_type_end1:	//>att max list handle or diff len 
+	fetch 2,mem_temp
+	increase -1,pdata
+	store 2,mem_le_cur_handle_end
+	branch le_send_att_read_by_group_type_end_common
+le_send_att_read_by_group_type_end_common:
+	branch le_send_att_error_response_notfound,user
+	call le_write_att_record
+	branch le_send_auto_len_by_mem
+
+	
+le_att_next_handle:
+	fetcht 2,mem_temp
+	increase 1,temp
+	storet 2,mem_temp
+	rtn
+
+le_att_check_handle_end:
+	fetcht 2,mem_temp
+	fetch 2,mem_le_search_handle_end
+	isub temp,null
+	rtn
+
+le_att_same_type:
+	fetcht 1,mem_le_search_att_type_length
+	arg mem_le_search_att_type,rega
+le_att_check_same_common:
+	fetch 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	isub temp,null
+	nrtn zero
+	arg mem_le_cur_uuid ,regb
+	branch string_compare
+
+le_att_same_uuid:
+	fetcht 1,mem_le_search_uuid_length
+	arg mem_le_search_uuid,rega
+	branch le_att_check_same_common
+	
+	
+le_store_att_record:
+	fetch 1,mem_le_search_len
+	store 1, mem_tmp_buffer
+	copy pdata,loopcnt
+	call get_contr
+	branch memcpy_fast
+
+le_send_auto_len_by_mem:
+	call get_contw
+	branch le_send_autolen
+	
+le_write_att_record:
+	call get_contw
+	fetch 2,mem_le_cur_handle_start
+	istore 2,contw
+	fetch 2,mem_le_cur_handle_end
+	istore 2,contw
+le_write_att_record_common:
+	fetch 1,mem_tmp_buffer
+	copy pdata,loopcnt
+	call memcpy_fast
+	branch store_contw
+	
+le_send_att_write_request:
+	fetch 2,mem_le_notify_handle
+	store 2,mem_le_l2cap_response
+	fetch 1,mem_le_handle_data_len
+	copy pdata,loopcnt
+	arg mem_le_handle_data,contr
+	call memcpy_fast
+	branch le_send_autolen
+	
+	
+le_send_att_write_response:
+	force 5,temp
+	branch le_send_packet
+
+le_send_att_prepare_write_request:
+	force 6,temp
+	branch le_send_packet
+
+le_send_att_continue:
+	fetch 1,mem_le_continue_type
+	beq LE_CONTINUE_TYPE_NOTIFICATION,le_send_att_notify_continue
+	beq LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,le_send_att_prepare_write_response_continue
+	jam LE_CONTINUE_TYPE_NULL,mem_le_continue_type
+	rtn
+
+le_send_att_notify_continue:
+	fetch 2,mem_cb_update_notify_continue
+	branch callback_func
+
+le_send_att_prepare_write_response_continue:
+	fetch 2,mem_prepare_write_len
+	branch assert,blank
+	fetcht 2,mem_prepare_write_offest
+	branch assert,blank
+	isub temp,pdata // current len
+	arg 27,temp
+	call not_greater_than
+	copy pdata,loopcnt
+//	fetch 2,mem_module_hci_notify_start
+//	copy pdata,contru
+//	fetch 2,mem_prepare_write_offest
+//	iadd contru,contru //start + offset
+	arg mem_temp_prepare_write_request,rega
+	fetch 2,mem_prepare_write_offest
+	iadd rega,rega
+	iadd loopcnt,pdata
+	store 2,mem_prepare_write_offest //offset += len;
+	fetcht 2,mem_prepare_write_len
+	isub temp,temp // if(0 == offset - len){goto no_more_continue;}
+	ncall le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,mem_le_continue_type
+	arg mem_le_txpayload,contw
+	copy rega,contr
+	call memcpy_fast
+	arg 1,type   // LLID : continue
+	branch le_send_not_fill_l2cap_len
+	
+	
+le_send_att_prepare_write_response:
+	fetch 2,mem_prepare_write_len
+	branch assert,blank
+	add pdata,5,temp   //1byte opcode,2byte handle,2byte offset
+	storet 2,mem_le_txpayload // L2CAP length
+	arg 18,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	store 2,mem_prepare_write_offest
+	//increase 7,pdata
+	//store 1,mem_le_txlen   //start packet baseband length
+	fetcht 2,mem_prepare_write_len
+	isub temp,temp
+	ncall le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_PREPARE_WRITE_RESPONSE,mem_le_continue_type
+	arg 0x02,type  //LLIC:start
+	//setarg 4
+	//store 2,mem_le_txcid // l2cap cid
+	//jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_le_l2cap // att op-code
+	fetch 2,mem_prepare_handle //att handle
+	store 2,mem_le_l2cap+1 //contw
+	fetch 2,mem_le_prepare_write_req_offset 
+	istore 2,contw //offset
+//	fetch 2,mem_temp_prepare_write_request
+//	copy pdata,contru
+	//fetch 2,mem_module_hci_notify_offset // = 0
+	//iadd contru,contru
+	arg mem_temp_prepare_write_request,contr
+	call memcpy_fast
+le_send_not_fill_l2cap_len:
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	branch le_send_non_l2cap
+
+
+le_send_att_insert_continue:
+	fetch 3,mem_le_xtype_fifo
+	nbranch le_send_att_insert_cont_next,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+2
+	rtn
+le_send_att_insert_cont_next:
+	call le_xtype_fifo_is_near_full
+	nbranch assert,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+1
+	rtn
+
+
+	
+le_send_att_execute_write_request:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_execute_write_response:
+	force 5,temp
+	branch le_send_packet
+
+le_att_check_notification_enable: // temp ->handle,output-> pdata,output :contr->rega
+	set1 mark_ext_patch,mark
+	bpatch patch26_7,mem_patch26
+	increase 1,temp
+	call le_att_get_handle_ptr
+	increase -2,contr
+	ifetch 2,contr
+	arg CLIENT_CHARACTERTIC_CONFIGURATION,temp
+	isub temp,null
+	nrtn zero
+	increase 1,contr
+	copy contr,rega
+	ifetch 1,contr
+	rtn
+	
+le_send_att_handle_value_notification:
+	fetch 2,mem_cb_update_notify_value
+	branch callback_func
+
+le_send_att_handle_value_indication:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_handle_value_confirmation:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_write_command:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_signed_write_command:
+	force 6,temp
+	branch le_send_packet
+
+
+le_send_autolen:
+	set1 mark_ext_patch,mark
+	bpatch patch27_0,mem_patch27
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	branch le_send_packet
+
+
+le_send_empty:
+	force 0,temp
+	force 1,type
+	
+le_send_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch27_1,mem_patch27
+	storet 1,mem_le_txlen
+	compare 2,type,3
+	nbranch le_send_non_l2cap,true
+	add temp,-4,pdata
+	store 2,mem_le_txpayload
+	
+le_send_non_l2cap:
+	fetcht 1,mem_le_arq
+	call le_xtype_fifo_is_empty
+le_send_non_l2cap1:
+	nsetflag blank,md,temp
+le_send_non_l2cap2:
+	set1 wak,temp
+	and temp,0xfc,pdata
+	ior type,pdata
+	store 1,mem_le_arq
+	and_into 0x1f,pdata
+	store 1,mem_le_txheader
+	set1 mark_ext_patch,mark
+	bpatch patch27_2,mem_patch27
+	fetch 1,mem_le_txheader
+	compare 1,type,3
+	nbranch le_send_no_txlen,true
+	fetch 1,mem_le_txlen
+	rtn blank
+le_send_no_txlen:	
+	fetch 7,mem_le_txheader+1
+	fetch 1,mem_le_state
+	rtnbit0 lestate_encryption
+	call load_sk
+	branch le_encrypt
+	
+le_parse:
+	set1 mark_ext_patch,mark
+	bpatch patch27_3,mem_patch27
+	call le_xtype_fifo_is_full
+	nbranch assert,blank
+	nrtn blank // xtype fifo full
+	fetch 1,mem_le_rxbuf+1
+	rtn blank
+	fetch 1,mem_le_rxbuf
+	compare 1,pdata,3
+	branch le_parse_continue,true //ACL-U continue or empty packet
+	fetch 7,mem_le_rxbuf+1
+	fetch 1,mem_le_rxbuf
+	compare 2,pdata,3
+	branch le_parse_l2cap,true
+le_parse0:
+	fetch 1,mem_le_rxbuf+2
+	store 1,mem_le_rx_ll_opcode
+	copy pdata,regc
+	set1 mark_ext_patch,mark
+	bpatch patch27_4,mem_patch27
+	copy regc,pdata
+	beq LL_CONNECTION_UPDATE_REQ,le_parse_connection_update_req
+	beq LL_CHANNEL_MAP_REQ,le_parse_channel_map_req
+	beq LL_TERMINATE_IND,le_parse_terminate_ind
+	beq LL_ENC_REQ,le_parse_enc_req
+	beq LL_ENC_RSP,le_parse_enc_rsp
+	beq LL_START_ENC_REQ,le_parse_start_enc_req
+	beq LL_START_ENC_RSP,le_parse_start_enc_rsp
+	beq LL_UNKNOWN_RSP,le_parse_unknown_rsp
+	beq LL_FEATURE_REQ,le_parse_feature_req
+	beq LL_FEATURE_RSP,le_parse_feature_rsp
+	beq LL_PAUSE_ENC_REQ,le_parse_pause_enc_req
+	beq LL_PAUSE_ENC_RSP,le_parse_pause_enc_rsp
+	beq LL_VERSION_IND,le_parse_version_ind
+	beq LL_REJECT_IND,le_parse_reject_ind
+	beq LL_PING_REQ,le_parse_ping_req
+	store 1,mem_le_ll_cur_opcode
+	jam XT_LL_UNKNOWN_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_l2cap:
+	fetch 1,mem_le_rxbuf+1
+	and pdata,0x1f,pdata //get length
+	rtn blank//empty packet
+	fetch 2,mem_le_rxbuf+2
+	store 2,mem_le_l2cap_pdu_length
+	fetch 2,mem_le_rxbuf+4//CID
+	beq LE_L2CAP_CID_ATT,le_parse_att
+	beq LE_L2CAP_CID_SMP,le_parse_smp
+	rtn
+
+le_parse_continue_att:
+	jam LE_CONTINUE_FLAG_RX,mem_le_continue_flag
+	fetch 1,mem_le_att_opcode
+	beq ATTOP_WRITE_REQUEST,le_parse_l2cap_continue_write_request
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_parse_l2cap_continue_prepare_write_request
+	beq ATTOP_WRITE_COMMAND,le_parse_l2cap_continue_write_command
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	rtn
+
+
+le_parse_l2cap_continue_common:
+	fetch 1,mem_le_rxbuf+1
+	icopy regb
+	arg mem_le_rxbuf+2,rega
+	call le_writeatt_cb
+
+	fetch 1,mem_le_rxbuf+1
+	fetcht 2, mem_le_buff_len
+	iadd temp,pdata
+
+	store 2,mem_le_buff_len
+	fetcht 2,mem_le_buff_len_all
+	isub temp,null
+	rtn
+
+le_parse_l2cap_continue_write_command:
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	rtn
+
+le_parse_l2cap_continue_write_request:
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	branch le_parse_att_write_request_end
+
+le_parse_l2cap_continue_prepare_write_request:
+	fetcht 2,mem_prepare_write_len	
+	fetch 1,mem_le_rxbuf+1
+	icopy loopcnt
+	iadd temp,pdata
+	store 2,mem_prepare_write_len
+	
+	arg mem_temp_prepare_write_request,pdata
+	iadd temp,contw
+	arg mem_le_rxbuf+2,contr
+	call  memcpy_fast
+
+	call le_parse_l2cap_continue_common
+	nrtn zero
+	jam LE_CONTINUE_FLAG_NULL,mem_le_continue_flag
+	branch le_parse_att_prepare_write_request_end
+
+
+
+
+	
+le_parse_smp:
+	set1 mark_ext_patch,mark
+	bpatch patch27_5,mem_patch27
+	ifetch 1,contr
+	beq SMP_PAIRING_REQUEST,le_parse_smp_pairing_request
+	beq SMP_PAIRING_RESPONSE,le_parse_smp_pairing_response
+	beq SMP_PAIRING_CONFIRM,le_parse_smp_pairing_confirm
+	beq SMP_PAIRING_RANDOM,le_parse_smp_pairing_random
+	beq SMP_PAIRING_FAILED,le_parse_smp_pairing_failed
+	beq SMP_ENCRYPTION_INFORMATION,le_parse_smp_encryption_information
+	beq SMP_MASTER_IDENTIFICATION,le_parse_smp_master_identification
+	beq SMP_IDENTITY_INFORMATION,le_parse_smp_identity_information
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_parse_smp_identity_address_information
+	beq SMP_SIGNING_INFORMATION,le_parse_smp_signing_information
+	beq SMP_SECURITY_REQUEST,le_parse_smp_security_request
+ifdef SECURE_CONNECTION
+	beq SMP_PAIRING_PUBLIC_KEY,le_parse_smp_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_parse_smp_dhkey_check
+endif
+	jam XT_SMP_PAIRING_FAILED,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att:
+	set1 mark_ext_patch,mark
+	bpatch patch27_6,mem_patch27
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+//	beq ATTOP_ERROR_RESPONSE,le_parse_att_error_response
+	beq ATTOP_EXCHANGE_MTU_REQUEST,le_parse_att_exchange_mtu_request
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,le_parse_att_exchange_mtu_response
+	beq ATTOP_FIND_INFORMATION_REQUEST,le_parse_att_find_information_request
+//	beq ATTOP_FIND_INFORMATION_RESPONSE,le_parse_att_find_information_response
+	beq ATTOP_FIND_BY_TYPE_VALUE_REQUEST,le_parse_att_find_by_type_value_request
+//	beq ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,le_parse_att_find_by_type_value_response
+	beq ATTOP_READ_BY_TYPE_REQUEST,le_parse_att_read_by_type_request
+//	beq ATTOP_READ_BY_TYPE_RESPONSE,le_parse_att_read_by_type_response
+	beq ATTOP_READ_REQUEST,le_parse_att_read_request
+//	beq ATTOP_READ_RESPONSE,le_parse_att_read_response
+	beq ATTOP_READ_BLOB_REQUEST,le_parse_att_read_blob_request
+//	beq ATTOP_READ_BLOB_RESPONSE,le_parse_att_read_blob_response
+	beq ATTOP_READ_MULTIPLE_REQUEST,le_parse_att_read_multiple_request
+//	beq ATTOP_READ_MULTIPLE_RESPONSE,le_parse_att_read_multiple_response
+	beq ATTOP_READ_BY_GROUP_TYPE_REQUEST,le_parse_att_read_by_group_type_request
+//	beq ATTOP_READ_BY_GROUP_TYPE_RESPONSE,le_parse_att_read_by_group_type_response
+	beq ATTOP_WRITE_REQUEST,le_parse_att_write_request
+//	beq ATTOP_WRITE_RESPONSE,le_parse_att_write_response
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_parse_att_prepare_write_request
+//	beq ATTOP_PREPARE_WRITE_RESPONSE,le_parse_att_prepare_write_response
+	beq ATTOP_EXECUTE_WRITE_REQUEST,le_parse_att_execute_write_request
+//	beq ATTOP_EXECUTE_WRITE_RESPONSE,le_parse_att_execute_write_response
+//	beq ATTOP_HANDLE_VALUE_NOTIFICATION,le_parse_att_handle_value_notification
+//	beq ATTOP_HANDLE_VALUE_INDICATION,le_parse_att_handle_value_indication
+//	beq ATTOP_HANDLE_VALUE_CONFIRMATION,le_parse_att_handle_value_confirmation
+	beq ATTOP_WRITE_COMMAND,le_parse_att_write_command
+//	beq ATTOP_SIGNED_WRITE_COMMAND,le_parse_att_signed_write_command
+	rtn
+
+
+le_parse_connection_update_req:
+	ifetch 9,contr
+	store 9,mem_le_new_param
+	ifetch 2,contr
+	store 2,mem_le_instant
+	fetch 1,mem_le_state
+	set1 lestate_update_param,pdata
+	store 1,mem_le_state
+	fetch 1,mem_device_option
+	rtnne dvc_op_shutter
+ 	jam 0,mem_lpm_mode  
+	jam 30,mem_shutter_conn_update_timer		
+	rtn
+
+le_parse_channel_map_req:
+	ifetch 5,contr
+	store 5,mem_le_new_map
+	ifetch 2,contr
+	store 2,mem_le_instant
+	fetch 1,mem_le_state
+	set1 lestate_update_map,pdata
+	store 1,mem_le_state
+	rtn
+	
+le_parse_terminate_ind:
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,le_parse_terminate_ind_common
+	jam 1,mem_shutter_key_data_flag_1
+le_parse_terminate_ind_common:
+	setarg 20 // 200ms
+	store 2,mem_le_superto
+	rtn
+	
+le_parse_enc_req:
+	ifetch 8,contr
+	store 8,mem_le_rand
+	ifetch 2,contr
+	store 2,mem_le_ediv
+	ifetch 8,contr
+	store 8,mem_le_skdm
+	ifetch 4,contr
+	store 4,mem_le_ivm
+	jam XT_LL_ENC_RSP,mem_fifo_temp
+	call  le_xtype_fifo_in
+	jam FLAG_LE_ENC_START,mem_le_enc_state
+	fetch 1,mem_le_pairing_state
+	rtneq FLAG_LE_PAIRING_AFTER_AUTH
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,load_device_list_mode_4_shutter
+	rtnne dvc_op_module
+	branch load_device_list_mode_4
+	
+le_parse_enc_rsp:
+	ifetch 8,contr
+	store 8,mem_le_skds
+	ifetch 4,contr
+	store 4,mem_le_ivs
+	branch generate_sk
+	
+le_parse_start_enc_req:
+	fetch 1,mem_le_state
+	set1 lestate_encryption,pdata
+	store 1,mem_le_state
+	jam XT_LL_START_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_start_enc_rsp:
+	rtn master
+	jam XT_LL_START_ENC_RSP,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam BT_EVT_LE_START_ENC,mem_fifo_temp
+	branch ui_ipc_send_event	
+	
+le_parse_unknown_rsp:
+	rtn
+	
+le_parse_feature_req:
+	jam XT_LL_FEATURE_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_feature_rsp:
+	rtn
+	
+le_parse_pause_enc_req:
+	jam FLAG_LE_ENC_PAUSE,mem_le_enc_state
+	jam XT_LL_PAUSE_ENC_RSP,mem_fifo_temp
+	call le_xtype_fifo_in	
+	jam BT_EVT_LE_PAUSE_ENC,mem_fifo_temp
+	branch ui_ipc_send_event	
+	
+	
+le_parse_pause_enc_rsp:
+	rtn
+
+le_parse_ping_req:
+	jam XT_LL_PING_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_version_ind:
+	rtn master
+	jam XT_LL_VERSION_IND,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_reject_ind:
+	rtn
+
+
+le_parse_smp_pairing_request:
+	store 1,mem_le_preq
+	ifetch 6,contr
+	istore 6,contw
+	jam XT_SMP_PAIRING_RESPONSE,mem_fifo_temp
+	call le_xtype_fifo_in	
+	fetch 1,mem_device_option
+	beq dvc_op_shutter,le_parse_smp_pairing_request_shutter
+	call le_check_master_support_secure_connect
+	jam FLAG_LE_PAIRING_START,mem_le_pairing_state
+	fetch 1,mem_le_preq_iocap
+	beq  FLAG_IOCAP_DISPlAYONLY,le_set_tk_0
+	beq  FLAG_IOCAP_DISPLAYYESNO,le_set_tk_0
+	beq  FLAG_IOCAP_NOINPUTNOOUTPUT,le_set_tk_0
+	fetch 1,mem_le_pairing_mode	
+	beq LE_PAIRING_MODE_LAGACY_PASSKEY,le_genernate_tk
+le_set_tk_0:
+	arg 0,pdata
+	store 4,mem_le_tk
+	rtn
+le_parse_smp_pairing_request_shutter:
+	jam 1,mem_shutter_key_data_flag
+	rtn
+	
+le_genernate_tk:
+	arg mem_le_tk,rega
+	copy rega,contw
+	arg 3,loopcnt
+	call generate_random_loop
+	fetch 2,mem_le_tk + 2
+	and_into 0x7,pdata
+	store 2,mem_le_tk + 2
+	jam BT_EVT_LE_TK_GENERATE,mem_fifo_temp
+	branch ui_ipc_send_event
+
+le_check_master_support_secure_connect:
+	fetch 1,mem_le_preq_auth
+	rtnbit1  LE_AUTH_SECURE_CONNECTION_PAIRING_BIT
+	fetch 1,mem_le_pairing_mode
+	rtnbit0 LE_PAIRING_MODE_SECURE_CONNECT_BIT
+	branch app_ble_disconnect	
+	
+	
+le_parse_smp_pairing_response:
+	store 1,mem_le_pres
+	ifetch 6,contr
+	istore 6,contw
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_confirm:
+ifdef SECURE_CONNECTION
+	copy contr,rega
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_parse_smp_pairing_confirm_secure_passkey
+	copy rega,contr
+endif
+	arg mem_le_rconfirm,contw
+	call memcpy16
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch  le_xtype_fifo_in,master
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+ifdef SECURE_CONNECTION
+le_parse_smp_pairing_confirm_secure_passkey:
+	copy rega,contr
+	arg mem_le_rconfirm,contw
+	call memcpy16
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_PASSKEY_WAIT_CONFIRM,mem_le_secure_connect_state	
+	rtn
+endif	
+
+le_parse_smp_pairing_random:	
+ifdef SECURE_CONNECTION
+	copy contr,rega
+	fetch 1,mem_le_secure_connect_enable
+	beq 1,le_parse_smp_pairing_random_sc
+	copy rega,contr
+endif
+	call authenticate_rconfirm
+	branch le_parse_smp_pairing_random_success,zero
+le_pairing_failed:
+	jam XT_SMP_PAIRING_FAILED,mem_fifo_temp
+	call le_xtype_fifo_in
+le_parse_smp_pairing_failed:
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	jam BT_EVT_LE_PAIRING_FAIL,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+ifdef SECURE_CONNECTION	
+le_parse_smp_pairing_random_sc:
+	arg mem_le_mrand,contw
+	copy rega,contr
+	call memcpy16	
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_parse_smp_pairing_random_sc_passkey
+	call function_g2
+//	jam LE_SC_STAT_RECEIVE_RANDOM,mem_le_secure_connect_state
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC,module_hci_event_le_gkey
+	rtn
+	
+le_parse_smp_pairing_random_sc_passkey:
+	call function_f4_ca
+	arg mem_AES_CMAC_temp,contw
+	call load_inverse_result	
+	arg mem_AES_CMAC_temp,rega
+	arg mem_le_rconfirm ,regb
+	arg 16,loopcnt
+	call string_compare
+	nbranch le_dhkey_check_fail,zero
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch le_xtype_fifo_in
+endif
+	
+le_parse_smp_pairing_random_success:
+	call generate_stk
+	jam BT_EVT_LE_PAIRING_SUCCESS,mem_fifo_temp
+	call ui_ipc_send_event
+	jam 1,mem_ltk_exists
+	jam FLAG_LE_PAIRING_AFTER_AUTH,mem_le_pairing_state
+	jam XT_LL_ENC_REQ,mem_fifo_temp
+	branch le_xtype_fifo_in,master
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+
+ifdef SECURE_CONNECTION
+le_parse_smp_public_key:
+	fetch 1,mem_le_rxbuf+1
+	increase -5,pdata
+	store 1,mem_le_public_length
+	copy pdata,loopcnt
+	arg mem_le_pubkey_remote_x_256,contw
+	increase 5,contr
+	branch memcpy_fast
+
+le_parse_smp_dhkey_check:
+	arg mem_sp_confirm_remote,contw
+	call memcpy16	
+	jam LE_SC_STAT_RECEIVE_DHKEY,mem_le_secure_connect_state
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn	
+endif	
+le_parse_smp_encryption_information:
+	arg mem_le_peer_ltk,contw
+	branch memcpy16
+	
+le_parse_smp_master_identification:
+	rtn
+	
+le_parse_smp_identity_information:
+	arg mem_le_irk,contw
+	call memcpy16
+	fetch 1,mem_le_conn_peer_addr_type
+	rtneq MASTER_PUBLIC_ADDR
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	rtn true
+	branch app_ble_store_reconn_info
+	
+le_parse_smp_identity_address_information:
+	jam FLAG_LE_ENC_END,mem_le_enc_state
+	jam FLAG_LE_PAIRING_END,mem_le_pairing_state
+	rtn
+	
+le_parse_smp_signing_information:
+	rtn
+	
+le_parse_smp_security_request:
+	rtn
+
+	
+le_parse_att_exchange_mtu_response:
+	fetch 2,mem_le_rxbuf+7
+	store 2,mem_le_remote_mtu
+	rtn
+	
+le_parse_att_exchange_mtu_request:
+	call le_parse_att_exchange_mtu_response
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_find_information_request:
+	call le_get_search_handle_start_end_common
+	jam ATTOP_FIND_INFORMATION_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+	
+le_parse_att_find_by_type_value_request:
+	call le_get_search_handle_start_end_common
+	ifetch 2,contr
+	store 2,mem_le_search_uuid
+	call store_contr
+	arg mem_le_search_att_type_length,contw
+	fetch 2,mem_le_l2cap_pdu_length
+	increase -7,pdata
+	call le_get_search_common2
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	
+
+le_parse_att_read_by_type_request:
+	call le_get_search_handle_start_end_common
+	call le_get_search_att_uuid
+	jam ATTOP_READ_BY_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+
+le_get_search_handle_start_end_common:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	rtn
+
+le_get_search_att_type:
+	call store_contr
+	arg mem_le_search_att_type_length,contw
+le_get_search_common:	
+	fetch 2,mem_le_l2cap_pdu_length
+	increase -5,pdata
+le_get_search_common2:		
+	istore 1,contw
+	copy pdata,loopcnt
+	call get_contr
+	branch memcpy_fast	
+	
+le_get_search_att_uuid:
+	call store_contr
+	arg mem_le_search_uuid_length,contw
+	branch le_get_search_common
+
+
+
+	
+le_parse_att_read_request:
+	fetch 2,mem_le_rxbuf+7
+	store 2,mem_le_att_handle
+	jam ATTOP_READ_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+
+	
+le_parse_att_read_blob_request:
+	ifetch 2,contr
+	store 2,mem_le_att_offset
+	jam ATTOP_READ_BLOB_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+le_parse_att_read_multiple_request:
+	fetch 1,mem_le_rxbuf+1
+	increase -5,pdata
+	rshift pdata,pdata
+	store 1,mem_le_temp
+	jam ATTOP_READ_MULTIPLE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+le_parse_att_read_by_group_type_request:
+	call le_get_search_handle_start_end_common
+ 	call le_get_search_att_type
+
+	jam ATTOP_READ_BY_GROUP_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_write_command:
+	call le_parse_att_write_common
+	branch le_check_long_packet_patch
+	
+le_parse_att_write_request:
+	call le_parse_att_write_common
+	call le_check_long_packet_patch
+	nrtn zero
+le_parse_att_write_request_end:
+	jam ATTOP_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in	
+
+le_check_long_packet_patch:
+	fetch 1,mem_le_rxbuf+1
+	increase -4,pdata
+	store 2,mem_le_buff_len
+	increase -3,pdata
+
+	ifetcht 2,contr
+	storet 2,mem_le_buff_len_all
+	storet 2,mem_le_buff_data_len_all
+	increase -3,temp
+	isub temp,null
+	rtn
+
+le_parse_att_write_common:
+	fetch 1,mem_le_rxbuf+1
+	increase -7,pdata
+	icopy loopcnt
+	copy loopcnt,regb
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST,le_parse_att_write_common1
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	rtn blank
+	ifetch 1,contr
+	isub loopcnt,null
+	branch le_parse_att_write_common0,positive
+	copy pdata,loopcnt
+le_parse_att_write_common0:
+	copy contr,contw
+	copy loopcnt,regb
+	arg mem_le_rxbuf+9,contr
+	call memcpy_fast
+le_parse_att_write_common1:
+	arg mem_le_rxbuf+9,rega
+	branch le_writeatt_cb
+	
+
+le_parse_att_prepare_write_request:
+	fetch 1,mem_le_rxbuf+1
+	increase -4,pdata
+	store 2,mem_le_buff_len
+	ifetcht 2,contr
+	storet 2,mem_le_buff_len_all
+	increase -2,temp
+	storet 2,mem_le_buff_data_len_all
+
+	fetch 1,mem_le_rxbuf+1
+	increase -9,pdata
+	store 2,mem_prepare_write_len
+	
+	icopy loopcnt
+	copy loopcnt,regb
+	fetch 1,mem_le_flag
+	bbit0 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST,le_parse_att_prepare_write_request1
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch  le_parse_att_prepare_write_request_end,blank
+	ifetch 1,contr
+	isub loopcnt,null
+	branch le_parse_att_prepare_write_request0,positive
+	copy pdata,loopcnt
+le_parse_att_prepare_write_request0:
+	copy contr,contw
+	copy loopcnt,regb
+	arg mem_le_rxbuf+11,contr
+	call memcpy_fast
+
+le_parse_att_prepare_write_request1:
+	copy regb,loopcnt
+	arg mem_temp_prepare_write_request,contw
+	arg mem_le_rxbuf+11,contr
+	call memcpy_fast
+
+	arg mem_le_rxbuf+11,rega
+	fetch 2,mem_le_rxbuf+9
+	store 2,mem_le_prepare_write_req_offset
+	fetcht 2,mem_le_att_handle
+	storet 2,mem_prepare_handle
+
+	call le_writeatt_cb
+
+	fetch 2,mem_le_buff_len
+	fetcht 2,mem_le_buff_len_all
+	isub temp,null
+	nrtn zero
+le_parse_att_prepare_write_request_end:
+	jam ATTOP_PREPARE_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	
+
+le_parse_att_execute_write_request:
+	jam ATTOP_EXECUTE_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	/* rega pointers to data, regb is length */
+le_writeatt_cb:
+	fetch 2,mem_cb_att_write
+	rtn blank
+	iforce pc
+
+le_supervision_update:
+	fetcht 4,mem_le_supervision_timer
+	call get_clkbt
+	isub temp,timeup					/* and to 28 bits */
+	deposit timeup
+	fetcht 2,mem_le_superto
+	lshift4 temp,temp
+	lshift temp,temp
+	isub temp,pdata
+	rtn
+	
+le_supervision_flush:
+	call get_clkbt
+	store 4,mem_le_supervision_timer
+	rtn
+	
+	
+	
+le_adv:
+	jam 36,mem_le_ch_mapped
+le_adv_loop:
+	set1 mark_ext_patch,mark
+	bpatch patch27_7,mem_patch27
+	fetch 1,mem_le_adv_enable
+	rtn blank
+	arg le_adv_interval_timer,queue
+	call timer_check
+	nrtn blank
+	disable master
+	enable swfine
+	call le_init_adv
+	call le_next_adv_channel
+	call le_send_adv_ind
+	nbranch le_adv_not_match,match
+	fetch 1,mem_le_req_rcv
+	increase 1,pdata
+	store 1,mem_le_req_rcv
+	set1 mark_ext_patch,mark
+	bpatch patch28_0,mem_patch28
+	fetch 1,mem_le_rxbuf
+	and pdata,0x0f,pdata
+	beq SCAN_REQ,le_send_scan_response
+	beq CONNECT_REQ,le_parse_connect_req
+le_adv_not_match:
+	nop 10000
+	fetch 1,mem_le_ch_mapped
+	bne 39,le_adv_loop
+	arg le_adv_interval_timer,queue
+	fetch 2,mem_le_adv_interval_max
+	branch timer_init
+	
+
+le_receive_window_size:
+	set1 mark_ext_patch,mark
+	bpatch patch28_1,mem_patch28
+	fetch 1,mem_le_peer_sca
+	call le_sca_map
+	fetch 2,mem_le_tsniff
+	imul32 temp,pdata
+	arg 375,temp
+	imul32 temp,pdata
+	arg 100000,temp
+	idiv temp
+	fetch 1,mem_le_window_size
+	arg 20000,temp
+	imul32 temp,pdata
+	store 4,mem_le_transmit_window
+	set1 mark_ext_patch,mark
+	bpatch patch28_2,mem_patch28
+	fetch 2,mem_rx_window_sniff
+	call wait_div_end
+	quotient temp
+	iadd temp,pdata
+	store 2,mem_le_receive_window
+	rtn
+
+le_parse_connect_req:
+	set1 mark_ext_patch,mark
+	bpatch patch28_3,mem_patch28
+	fetch 6,mem_le_rxbuf+8
+	fetcht 6,mem_le_lap
+	isub temp,null
+	nrtn zero
+	call le_scan_check_sender_addr_type
+	copy regA,pdata
+	store 1,mem_le_conn_peer_addr_type
+	fetch 7,mem_le_rxbuf+21
+	store 7,mem_tmp_buffer
+	ifetch 8,contr
+	istore 8,contw
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+	set1 mark_ext_patch,mark
+	bpatch patch28_4,mem_patch28
+	increase 6,contr
+	ifetch 8,contr
+	store 8,mem_le_access 	// and crcinit & window size
+	ifetcht 2,contr				// transmit offset
+	lshift2 temp,temp			
+	ifetch 2,contr				// connInterval
+	lshift2 pdata,pdata
+	store 2,mem_le_tsniff
+	store 4,mem_le_anchor
+	isub temp,pdata
+	add pdata,-2,clke_bt
+	ifetch 9,contr
+	store 9,mem_le_slave_latency// and super to & channel map
+	set1 mark_ext_patch,mark
+	bpatch patch28_5,mem_patch28
+	ifetch 1,contr
+	rshift4 pdata,temp
+	rshift temp,temp
+	storet 1,mem_le_peer_sca
+	and_into 0x1f,pdata
+	store 1,mem_le_hop
+	call le_receive_window_size
+	call le_calc_channel_map
+	call le_init_slave
+	call context_new
+	nrtn zero
+	set1 mark_ext_patch,mark
+	bpatch patch28_6,mem_patch28
+	call calc_clke_offset
+	jam BT_EVT_LE_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+//	call app_get_lpm_wake_lock
+	branch context_save
+	
+
+le_init_attlist_search:
+	set1 mark_ext_patch,mark
+	bpatch patch28_7,mem_patch28
+	fetch 2,mem_le_search_handle_start
+	iforce regb
+	fetch 2,mem_le_search_handle_end
+	iforce regc
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+	enable user
+	rtn
+
+	/* return handle in pdata, blank:end of list, positive:in range */
+le_att_handle_inrange:
+	ifetch 2,contr
+	rtn blank
+	isub regb,null			/* less than start ? */
+	nrtn positive
+	isub regc,null			/* greater than end ? */
+	rtn zero
+	branch le_att_handle_blank,positive
+	force 1,null
+	rtn
+le_att_handle_blank:
+	force 0,pdata
+	rtn
+
+
+	/* handle in temp, return pointer in contr to length, blank not found */
+le_att_get_handle_ptr:
+	call le_att_get_handle_ptr2
+	branch le_att_get_handle_ptr_found,zero
+	rtn
+	
+le_att_get_handle_ptr2:
+	set1 mark_ext_patch,mark
+	bpatch patch29_0,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+le_att_get_handle_loop1:
+	ifetch 2,contr
+	rtn blank
+	isub temp,null
+	rtn zero
+	ifetch 1,contr
+	iadd contr,contr	
+	ifetch 1,contr			// length  
+	iadd contr,contr
+	branch le_att_get_handle_loop1
+le_att_get_handle_ptr_found:
+	ifetch 1,contr
+	iadd contr,contr	
+	rtn	
+
+
+
+le_att_get_short_uuid_ptr:
+	set1 mark_ext_patch,mark
+	bpatch patch29_1,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+le_att_get_short_uuid_loop:
+	ifetch 2,contr
+	rtn blank
+	ifetch 1,contr
+	iadd contr,contr
+	increase -2,contr
+	ifetch 2,contr
+	isub temp,null
+	rtn zero
+	ifetch 1,contr			 
+	iadd contr,contr
+	branch le_att_get_short_uuid_loop	
+
+
+
+le_att_get_handle_info_from_ptr:
+	fetch 2, mem_le_cur_attlist_start_ptr
+	copy pdata,contr
+	branch le_att_get_handle_info+1
+
+le_att_get_handle_info:
+	set1 mark_ext_patch,mark
+	bpatch patch29_2,mem_patch29
+	fetch 2,mem_ui_le_uuid_table
+	iforce contr
+	copy temp,rega
+le_att_get_handle_loop:
+	ifetch 2,contr
+	branch le_att_unfind_handle,blank
+	isub rega,null
+	branch le_att_finded_handle, zero
+	ifetch 1,contr			// length  
+	iadd contr,contr	
+	ifetch 1,contr			//length 
+	iadd contr,contr
+	branch le_att_get_handle_loop
+le_att_unfind_handle:
+	setarg 1
+	rtn
+le_att_finded_handle:
+	ifetch 1,contr
+	store 1,mem_le_cur_uuid_lenth
+	copy pdata,loopcnt
+	arg mem_le_cur_uuid,contw
+	call memcpy_fast
+	ifetch 1,contr
+	store 1,mem_le_search_len
+	call store_contr
+	setarg 0
+	rtn
+
+
+	
+le_modified_name:
+	set1 mark_ext_patch,mark
+	bpatch patch29_3,mem_patch29
+	call le_modified_name_att_list
+	branch le_modified_name_adv
+
+le_modified_name_att_list:
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	call le_att_get_short_uuid_ptr
+	rtn blank
+	ifetch 1,contr						// attribute length
+	copy contr,contw
+	fetcht 1,mem_le_name_len
+	copy temp,loopcnt
+	isub temp,null
+	nbranch le_name_length_longer_than_att,positive
+	isub temp,temp
+	arg mem_le_name,contr
+	call memcpy
+	copy temp,loopcnt
+	ncall memcpy_empty,zero
+	rtn
+le_name_length_longer_than_att:
+	copy pdata,loopcnt
+	arg mem_le_name,contr
+	branch memcpy_fast
+
+
+le_modified_name_adv:
+	arg mem_le_adv_data_len+32,regc
+	arg mem_le_adv_data,rega
+	call le_modified_name_adv_and_scan
+	setarg 0
+	setflag user,0,pdata
+	store 1,mem_pdatatemp
+	arg mem_le_scan_data_len+32,regc
+	arg mem_le_scan_data,rega
+	call le_modified_name_adv_and_scan
+	rtn user
+	fetch 1,mem_pdatatemp
+	branch assert,blank
+	rtn
+
+
+le_modified_name_adv_and_scan:
+	set1 mark_ext_patch,mark
+	bpatch patch29_4,mem_patch29
+	call enable_usr
+	call clear_temp_block
+	arg 0,regb	//current length
+	arg mem_le_data_temp,contw
+	call le_modified_name_adv_loop
+	fetch 1,mem_le_name_len
+	add pdata,1,temp
+	iadd regb,rega	
+	increase 2,rega
+	sub rega,0x1f,null
+	nbranch le_modified_name_adv_and_scan_name_overflow,positive
+	istoret 1,contw		//store ble name length
+	arg 0x09,temp
+	istoret 1,contw		//store ble name type
+	iforce loopcnt
+	call memcpy_fast
+	copy rega,regb
+le_modified_name_adv_and_scan_store_data:
+	deposit regb
+	store 1,mem_le_data_len_temp
+	arg mem_le_data_len_temp,contr
+	setarg -32
+	iadd regc,contw
+	branch memcpy32
+
+le_modified_name_adv_and_scan_name_overflow:
+	call disable_usr
+	branch le_modified_name_adv_and_scan_store_data
+	
+le_modified_name_adv_loop:
+	ifetch 1,rega		//pdata:length
+	rtn blank			//length is zero,ending find
+	pincrease 1		//length += 1
+	ifetcht 1,contr		//pdata:type
+	sub temp,0x09,null
+	branch le_modified_name_adv_found_name,zero
+	iadd regb,regb	
+	copy rega,contr
+	iforce loopcnt
+	call memcpy_fast
+	copy contr,rega
+le_modified_name_adv_loop2:
+	deposit rega
+	isub regc,null
+	rtn positive
+	branch le_modified_name_adv_loop
+
+le_modified_name_adv_found_name:
+	iadd rega,rega
+	branch le_modified_name_adv_loop2
+
+
+memcpy_empty:
+	setarg SPACE
+	istore 1,contw
+	loop memcpy_empty
+	rtn
+
+	
+le_lpm_set_mult:
+	set1 mark_ext_patch,mark
+	bpatch patch29_5,mem_patch29
+	disable wake
+	branch le_lpm_set_mult_attempt,attempt
+	nbranch le_lpm_lost,match
+le_lpm_set_mult_attempt:
+	call lpm_match
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_le_receive_window
+	fetch 1,mem_le_rxbuf
+	compare 1,pdata,3
+	nbranch lpm_mult_short,true		// rx not empty, short interval
+	fetch 1,mem_le_txheader
+	compare 1,pdata,3
+	nbranch lpm_mult_short,true		// tx not empty, short interval
+	fetch 2,mem_cb_le_set_mult
+	call callback_func
+	fetch 1,mem_le_state
+	bbit1 lestate_update_param,lpm_mult_short
+	branch lpm_mult_wait_timeout
+	
+le_lpm_lost:
+	fetcht 2,mem_rx_window_sniff
+	rshift temp,temp
+	fetch 2,mem_le_receive_window
+	iadd temp,pdata
+	store 2,mem_le_receive_window
+	branch lpm_lost
+
+le_clean_att_list_handle_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch29_6,mem_patch29
+	jam 0,mem_le_switch_send_data
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	copy rega,contw
+	setarg 0
+	istore 1,contw
+	rtn
+	
+
+
+ifdef SECURE_CONNECTION
+
+le_secure_connect_sm:
+	fetch 1,mem_le_secure_connect_enable
+	rtneq 0
+	fetch 1,mem_le_secure_connect_flag
+	rtnne LE_SP_FLAG_COMMIT_256
+	set1 mark_ext_patch,mark
+	bpatch patch2a_0,mem_patch2a
+	jam SP_FLAG_STANDBY,mem_le_secure_connect_flag
+	fetch    1,mem_le_secure_connect_state
+	beq  LE_SC_STAT_RECEIVE_PUBLIC_KEY,le_sc_receive_public_key
+	beq LE_SC_STAT_WAIT_SEND_PUBLIC_KEY,le_sc_wait_send_public_key
+	beq LE_SC_STAT_SEND_PUBLIC_KEY,le_sc_send_public_key
+	beq LE_SC_STAT_RECEIVE_DHKEY,le_sc_receive_dhkey
+	beq LE_SC_STAT_WAIT_CONFIRM_GKEY,le_sc_wait_confirm_gkey
+	beq  LE_SC_STAT_PASSKEY_WAIT_CONFIRM,le_sc_passkey_wait_confirm
+	rtn	
+
+
+le_sc_passkey_wait_confirm:
+	fetch 1,mem_authentication_passkey_times
+	copy pdata,queue
+	increase 1,pdata
+	store 1,mem_authentication_passkey_times
+	fetch 4,mem_le_tk
+	qisolate1 pdata
+	setarg 0x80
+	setflag true,0,pdata
+	store 1,mem_passkey_1bit
+	branch le_sc_ready_send_pairing_confirm
+	
+le_sc_wait_confirm_gkey:
+	fetch 1,mem_le_sc_confirm_gkey_flag
+	jam FLAG_LE_SC_CONFRIM_NULL,mem_le_sc_confirm_gkey_flag
+	beq FLAG_LE_SC_CONFRIM_GKEY_OK,le_sc_confirm_gkey_ok
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+	
+le_sc_confirm_gkey_ok:
+	jam FLAG_LE_PAIRING_AFTER_AUTH,mem_le_pairing_state
+	jam XT_SMP_PAIRING_DHKEY_CHECK,mem_fifo_temp
+	branch le_xtype_fifo_in		
+
+le_sc_receive_dhkey:
+	fetch 1,mem_sp_dhkey_invalid
+	beq SP_KEY_VALID_256,le_dhkey_ready
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+
+le_dhkey_ready:
+	call function_f5
+//	arg mem_le_r,contw
+//	force 2,loopcnt
+//	call memset0
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY ,le_sc_confirm_gkey_ok_passkey
+	call le_set_tk_0 
+le_dhkey_ready_common:
+	call function_f6_ea
+	arg mem_AES_CMAC_temp,rega
+	arg mem_sp_confirm_remote ,regb
+	arg 16,loopcnt
+	call string_compare
+	branch le_dhkey_check_ok,zero
+le_dhkey_check_fail:	
+	branch le_pairing_failed
+le_sc_confirm_gkey_ok_passkey:
+//	fetch 4,mem_le_tk
+//	store 4,mem_le_r
+	branch le_dhkey_ready_common
+	
+le_dhkey_check_ok:
+	jam 1,mem_ltk_exists
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK,le_sc_confirm_gkey_ok
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY ,le_sc_confirm_gkey_ok	
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_WAIT_CONFIRM_GKEY,mem_le_secure_connect_state	
+	rtn	
+
+le_sc_send_public_key:
+	fetch 1,mem_le_pairing_mode
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,le_sc_send_public_key_passkey
+	jam 0,mem_passkey_1bit
+le_sc_ready_send_pairing_confirm:
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+le_sc_send_public_key_passkey:
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+//	jam LE_SC_STAT_PASSKEY_WAIT_CONFIRM,mem_le_secure_connect_state	
+//	branch p_ng_event_le_get_passkey
+	jam 0,mem_authentication_passkey_times
+//	rtn
+	branch le_genernate_tk
+	
+le_sc_receive_public_key:
+//call ice_break
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	fetch 1,mem_le_sc_local_key_invalid
+	beq SP_KEY_VALID_256,le_public_key_ready
+//	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	rtn
+	
+le_public_key_ready:
+	jam SP_KEY_INVALID,mem_sp_dhkey_invalid
+	call sp_dhkey_calc_256	
+	jam LE_SC_STAT_WAIT_SEND_PUBLIC_KEY,mem_le_secure_connect_state	
+	rtn 
+//	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+//	branch le_xtype_fifo_in
+
+le_sc_wait_send_public_key:
+	call le_xtype_fifo_is_empty
+	branch le_public_key_ready_send,blank
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag	
+	rtn
+le_public_key_ready_send:
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam XT_SMP_PAIRING_PUBLIC_KEY,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+
+
+
+
+le_pairing_public_key_continue:
+	arg mem_le_pubkey_remote_x_256,pdata
+	fetcht 1,mem_le_public_length
+	iadd temp,contw
+//copy contw,rega
+	fetch 1,mem_le_rxbuf+1
+	copy pdata,loopcnt
+	iadd temp,temp
+	call memcpy_fast
+	storet 1,mem_le_public_length
+	copy temp,pdata
+//call ice_break
+	rtnne 64
+	jam LE_SP_FLAG_COMMIT_256,mem_le_secure_connect_flag
+	jam LE_SC_STAT_RECEIVE_PUBLIC_KEY,mem_le_secure_connect_state
+	rtn
+le_parse_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_1,mem_patch2a
+	fetch 1,mem_le_public_length
+	bne 0,le_pairing_public_key_continue
+	branch le_parse_continue_att
+else	
+le_parse_continue:
+	branch le_parse_continue_att
+endif
+
+else
+le_disable:
+le_dispatch:
+le_xtype_fifo_in:
+le_context_nexthop:
+le_acl_downgoing:
+le_clear_connection_info:
+le_scan_check_sender_addr_type:
+le_conn_dispatch:
+le_ukey_init:
+	rtn
+endif
Index: Receive_Code/program/lmp.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/lmp.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/lmp.prog	(working copy)
@@ -0,0 +1,2504 @@
+	
+/******************************************/
+/*************   LMP Parse   **************/
+/******************************************/
+init_lmp:
+	rtn wake
+init_lmp_work:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_2,mem_patch2a
+	setarg 0
+	store 1,mem_lmp_to_send
+	store 1,mem_conn_sm
+	store 1,mem_lmo_opcode1
+	store 1,mem_lmo_opcode2
+	store 1,mem_esco_addr
+	store 1,mem_auth_enable
+	store 1,mem_connection_options
+	store 1,mem_pairing_auth
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	jam 0,mem_switch_fail_master_count
+	jam NULL_ENCRYP,mem_wait_encryption
+init_lmp_reinit:	
+	jam 0,mem_pairing_auth
+	jam 0,mem_sp_localsm
+	jam 0,mem_lmp_conn_state
+	//fall through
+parse_rx_done:
+	rtn
+
+parse_lmp:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_3,mem_patch2a
+	call setlocalsm_master,master	//use this flag in hci
+	ncall setlocalsm_slave,master
+	call lmo_fifo_check
+	nrtn blank
+	fetch 1,mem_state_map
+	rtnbit0 smap_rxlmp
+	set0 smap_rxlmp,pdata
+	set0 mark_rxbuf_inuse,mark
+	store 1,mem_state_map
+	fetch 1,mem_rxbuf
+	fetcht 1,mem_state_map
+	isolate1 smap_lmptidinit,pdata
+	setflag true,smap_lmptid,temp
+	storet 1,mem_state_map
+	and_into 0x2,temp //smap_lmptid only
+	storet 1,mem_lmo_tid2
+	fetcht 1,mem_state_map
+	rshift pdata,pdata			/* align lmp_opcode */
+  	store 1,mem_lmi_opcode2
+	set1 mark_ext_patch,mark
+	bpatch patch2a_4,mem_patch2a
+  	fetch 1,mem_lmi_opcode2
+  	beq LMP_ESCAPE,parse_lmp_escape//multi
+  	beq LMP_ACCEPTED,parse_lmp_accepted//multi
+	beq LMP_NOT_ACCEPTED,parse_lmp_not_accepted//multi
+  	beq LMP_SET_AFH, parse_lmp_set_afh
+  	beq LMP_CLKOFFSET_REQ, parse_lmp_clkoffset_req
+ 	beq LMP_ENCRYPTION_MODE_REQ, parse_lmp_encryption_mode_req
+ 	beq LMP_ENCRYPTION_KEY_SIZE_REQ,parse_lmp_crypt_key
+	beq LMP_AUTO_RATE,parse_lmp_auto_rate
+	beq LMP_TEST_CONTROL,parse_lmp_test_control//multi
+	beq LMP_TEST_ACTIVATE,parse_lmp_test_activate
+	beq LMP_SETUP_COMPLETE,parse_lmp_setup_complete
+	beq LMP_SUPERVISION_TIMEOUT,parse_lmp_supervision_timeout
+	beq LMP_FEATURES_REQ,parse_lmp_features_req
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_conn_req
+	beq LMP_VERSION_REQ,parse_lmp_version_req
+	beq LMP_VERSION_RES,parse_lmp_version_res
+	beq LMP_DETACH,parse_lmp_detach
+	beq LMP_MAX_SLOT,parse_lmp_max_slot
+	beq LMP_MAX_SLOT_REQ,parse_lmp_max_slot_req
+	beq LMP_NAME_REQ,parse_lmp_name_req
+	beq LMP_NAME_RES,parse_lmp_name_res
+	beq LMP_FEATURES_RES,parse_lmp_features_res
+	beq LMP_COMB_KEY,parse_lmp_comb_key
+	beq LMP_AU_RAND, parse_lmp_au_rand
+	beq LMP_IN_RAND,parse_lmp_in_rand
+	beq LMP_SRES,parse_lmp_sres
+	beq LMP_INCR_POWER_REQ,parse_lmp_incr_power
+	beq LMP_DECR_POWER_REQ,parse_lmp_decr_power
+	beq LMP_MAX_POWER, parse_lmp_max_power
+	beq LMP_MIN_POWER, parse_lmp_min_power
+	beq LMP_PAGE_MODE_REQ, parse_lmp_page_mode_req
+	beq LMP_PAGE_SCAN_MODE_REQ, parse_lmp_page_scan_mode_req
+	beq LMP_PREFERRED_RATE, parse_lmp_preferred_rate
+	beq LMP_SLOT_OFFSET, parse_lmp_slot_offset
+	beq LMP_SNIFF_REQ, parse_lmp_sniff_req
+	beq LMP_START_ENCRYPTION_REQ, parse_lmp_start_encryption_req
+	beq LMP_STOP_ENCRYPTION_REQ, parse_lmp_stop_encryption_req
+	beq LMP_SWITCH_REQ, parse_lmp_switch_req
+	beq LMP_TEMP_RAND, parse_lmp_temp_rand
+	beq LMP_TEMP_KEY, parse_lmp_temp_key
+	beq LMP_TIMING_ACCURACY_REQ, parse_lmp_timing_accuracy_req
+	beq LMP_TIMING_ACCURACY_RES, parse_lmp_timing_accuracy_res
+	beq LMP_UNIT_KEY, parse_lmp_unit_key
+	beq LMP_UNSNIFF_REQ, parse_lmp_unsniff_req
+	beq LMP_USE_SEMI_PERMANENT_KEY, parse_lmp_use_semi_permanend_key
+	beq  LMP_ENCAPSULATED_HEADER,parse_lmp_encapsulated_header
+	beq  LMP_ENCAPSULATED_PAYLOAD,parse_lmp_encapsulated_payload
+	beq	LMP_SIMPLE_PAIRING_CONFIRM,parse_simple_pairing_confirm
+	beq  LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_simple_pairing_number
+	beq  LMP_DHKEY_CHECK,parse_dhkey_check
+	beq LMP_CLKOFFSET_RES, parse_lmp_clkoffset_res
+	beq LMP_ENC_KEY_SIZE_MASK_REQ,parse_enc_key_size_mask_req
+/* lmp is not recognized, check to see if we respond to all messages */ 
+/* rejecting the unrecognized message with PDU not recognized */
+reject_unknown_packet:
+	jam UNKNOWN_LMP_PDU,mem_lmo_reason2
+reject_lmp_packet:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	rtn
+
+parse_lmp_clkoffset_req:
+	jam LMP_CLKOFFSET_RES,mem_lmo_opcode2
+	rtn	
+
+parse_enc_key_size_mask_req:
+	jam LMP_ENC_KEY_SIZE_MASK_RES,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_set_afh:
+	fetch 4,mem_rxbuf+1
+	lshift pdata,pdata
+	store 4,mem_afh_instant
+	fetch 1,mem_rxbuf+5
+	store 1,mem_afh_new_mod
+	fetch 5,mem_rxbuf+6
+	store 5,mem_afh_map_new
+	fetch 5,mem_rxbuf+11
+	istore 5,contw
+	fetch 1,mem_mode
+	set1 afh_change,pdata
+	store 1,mem_mode
+	rtn
+parse_lmp_escape:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_5,mem_patch2a
+	fetch 1,mem_rxbuf+1
+	set1 7,pdata
+	store 1,mem_lmi_opcode2
+	beq LMP_EXT_ACCEPTED,parse_lmpext_accepted
+	beq LMP_NOT_ACCEPTED_EXT,parse_lmpext_not_accepted
+	beq LMP_SNIFF_SUBRATING_REQ, parse_lmp_sniff_subrating_req
+	beq LMP_SNIFF_SUBRATING_RES, parse_lmp_sniff_subrating_res
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_packet_type_table_req
+	beq LMP_EXT_FEATURES_REQ,parse_lmpext_features_req
+	beq LMP_EXT_FEATURES_RES,parse_lmpext_features_res
+	beq LMP_EXT_CHN_CLASSIFICATION_REQ,parse_lmpext_chn_classification_req
+	beq LMP_PAUSE_ENCRYPTION_REQ,parse_lmpext_pause_encrypt
+	beq LMP_RESUME_ENCRYPTION_REQ,parse_lmpext_resume_encrypt
+	beq LMP_IO_CAP_REQ,parse_lmpext_iocap_req
+	beq LMP_IO_CAP_RES,parse_lmpext_iocap_res
+	rtneq LMP_EXT_FEATURES_RES
+
+
+reject_unknown_ext_packet:
+	jam LMP_NOT_ACCEPTED_EXT,mem_lmo_opcode2
+	jam UNKNOWN_LMP_PDU,mem_lmo_reason2
+	
+	rtn
+parse_lmpext_chn_classification_req:
+	jam LMP_NOT_ACCEPTED_EXT,mem_lmo_opcode2
+	jam NOT_SUPPORT_CHN_CLASSIFICATION,mem_lmo_reason2
+	rtn
+	
+parse_lmpext_iocap_req:
+	call iocap_lmpext_load
+	jam LMP_IO_CAP_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_iocap_res:
+	call iocap_lmpext_load
+	branch iocap_lmpext_common
+	
+iocap_lmpext_load:
+	arg      mem_sp_iocap_remote,contw
+	fetch 3, mem_rxbuf+2
+	istore    3,contw
+	rtn
+	
+iocap_lmpext_common:
+ifdef SIMPLE_PAIRING
+	branch master_set_mem_master_sp_flag,true//is un very ok to use master flag,but we have to add many codes if wo don't
+endif
+	rtn
+parse_lmpext_accepted:
+	fetch 1,mem_rxbuf+3
+	set1 7,pdata
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_accepted_ptt
+	rtn
+
+	
+parse_lmpext_not_accepted:
+	fetch 1,mem_rxbuf+3
+	set1 7,pdata
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_not_accepted_ptt
+	rtn
+
+parse_lmpext_accepted_ptt:
+	fetch 1,mem_ptt
+	fetcht 1,mem_state_map
+	nsetflag blank,smap_edr,temp
+	storet 1,mem_state_map
+parse_lmpext_not_accepted_ptt:
+	fetch 1,mem_state
+	rtnbit0 state_init_seq
+	set0 state_init_seq,pdata
+	store 1,mem_state
+	fetch 1,mem_auth_enable
+	nrtn blank
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_pause_encrypt:
+	nbranch parse_lmpext_pause_encrypt_slave, master
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	branch tid_reply
+
+parse_lmpext_pause_encrypt_slave:	
+	jam LMP_PAUSE_ENCRYPTION_REQ, mem_lmo_opcode2
+	rtn
+
+parse_lmpext_resume_encrypt:
+//trans file to pc may cause pause/resume encrypt
+//if ms is conn_sm_wait_end the controllor won't send ack after recieved start_encypt_accept
+	call tid_reply
+	branch lmp_start_encryption
+
+parse_lmpext_features_req:
+	jam LMP_EXT_FEATURES_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_features_res:
+	fetcht 1,mem_rxbuf+4
+	and temp,0x1,temp
+	storet 1,mem_remote_sppcap
+	fetch 1,mem_hci_cmd
+	bne hci_cmd_wait_remote_ext_feature,parse_lmpext_features_res_not_hci
+	jam 0,mem_hci_cmd
+parse_lmpext_features_res_not_hci:
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_WAIT_FEATURES_EXT
+	jam CONN_SM_SEND_CONN_REQ,mem_conn_sm
+	branch process_conn_sm
+
+parse_lmp_accepted:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_6,mem_patch2a
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_accepted_hostconn//ok
+	beq LMP_IN_RAND,parse_lmp_accepted_inrand//ok
+	beq LMP_ENCRYPTION_MODE_REQ,parse_lmp_accepted_enc_mode//ok
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,parse_lmp_accepted_enc_keysize//ok
+	beq LMP_START_ENCRYPTION_REQ,parse_lmp_accepted_start_enc//ok
+	beq LMP_STOP_ENCRYPTION_REQ,parse_lmp_accepted_stop_enc//ok
+	beq LMP_UNSNIFF_REQ,parse_lmp_accepted_unsniff_req//ok
+	beq LMP_SNIFF_REQ,parse_lmp_accepted_sniff_req//ok
+	beq LMP_SWITCH_REQ,parse_lmp_accepted_switch
+	// simple pairing 
+	beq LMP_ENCAPSULATED_HEADER,parse_lmp_accepted_encapsulated_header//ok
+	beq LMP_ENCAPSULATED_PAYLOAD,parse_lmp_accepted_encapsulated_payload//ok
+	beq LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_accepted_simple_pairing_number//ok
+	beq LMP_DHKEY_CHECK,parse_lmp_accepted_dhkey_check//ok
+	rtn
+	
+parse_lmp_not_accepted:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_7,mem_patch2a
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_NAME_REQ,parse_lmp_not_accepted_name_req//ok
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_not_accepted_hostconn//ok
+	beq LMP_AU_RAND,parse_lmp_not_accepted_aurand//ok
+	beq LMP_IN_RAND,parse_lmp_not_accepted_inrand//ok
+	beq LMP_SWITCH_REQ,parse_lmp_not_accepted_switch//ok
+	/* simple pairing support */
+	beq  LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_not_accepted_simple_pairing_number//ok
+	beq  LMP_DHKEY_CHECK,parse_lmp_not_accepted_dhkey_check//ok
+	beq LMP_UNSNIFF_REQ,parse_lmp_not_accepted_unsniff_req
+	beq LMP_SNIFF_REQ,parse_lmp_not_acdcept_sniff_req
+	rtn
+
+parse_lmp_accepted_switch:
+	jam BT_EVT_SWITCH_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	branch role_switch_prepare0
+parse_lmp_not_accepted_switch:
+	jam BT_EVT_SWITCH_NOT_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	jam SWITCH_FLAG_NOT_ACCEPT,mem_switch_flag
+	setarg TIMER_SWITCH_WAITE
+	arg switch_wait_timer,queue
+	branch timer_init
+
+
+parse_lmp_accepted_hostconn:
+	//fetch 1,mem_state
+	//rtnbit0 state_init_seq
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_CONN_REQ,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_BB_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	jam LMP_PACKET_TYPE_TABLE_REQ,mem_lmo_opcode2
+	//nbranch parse_lmp_accepted_hostconn_ctn,master
+parse_lmp_accepted_hostconn_ctn:
+	/* checking to see if we requested host connection */
+	fetch 1,mem_conn_sm
+	bne CONN_SM_WAIT_CONN_ACCEPT, parse_rx_done
+	//branch parse_lmp_accepted_hostconn_master,master
+	/* continuing on with host connection state machine */
+	jam CONN_SM_AUTH_PAIR,mem_conn_sm
+	rtn
+	//branch host_create_conn_auth_pair
+
+	/* we need to move fast and send au_rand...jumping to next part of state machine for conn */
+//parse_lmp_accepted_hostconn_master:
+	//jam CONN_SM_AUTH_PAIR ,mem_conn_sm
+//	rtn
+
+parse_lmp_not_accepted_hostconn:
+	jam ACL_CONNECTION_ALREADY_EXISTS,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	/* clearing connection state machine */
+	jam CONN_SM_STANDBY,mem_conn_sm
+	/* sending error message to host */
+	branch parse_rx_done,true
+	rtn
+
+parse_lmp_accepted_inrand:
+	fetch 1,mem_link_key_exists
+	nrtn blank
+	call clear_linkkey
+	call  lmp_generate_key
+	rtn master
+	set1 mark_slave_in_rand_accepted,mark
+	rtn
+
+parse_lmp_accepted_enc_mode:
+	nrtn master
+	jam LMP_ENCRYPTION_KEY_SIZE_REQ,mem_lmo_opcode2
+	fetch 1,mem_state_map
+	rtnbit0 smap_encryption
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	rtn
+
+parse_lmp_accepted_enc_keysize:
+	branch lmp_start_encryption
+	
+parse_lmp_accepted_start_enc:
+	call send_create_conn_start_l2cap_timer_sm
+	fetch 1,mem_state
+	rtnbit1 state_conn_comp
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_ENCRYPT_WAIT
+	jam CONN_SM_ENCRYPT_WAIT_CLEAR,mem_conn_sm
+	rtn
+	
+parse_lmp_accepted_stop_enc:
+	/* again this won't work with multipoint. keep track of anyone else encrypting */
+	//jam HOST_STOP_ENCRYPTION,message_queue_B0
+	//jam 1,message_queue_B1
+	//jam HOST_RETURN_SUCCESS,message_queue_B2
+	//fetch 1,mem_lmp_state2
+	//set1 MESSAGE_QUEUE,pdata
+	//store 1,mem_lmp_state2
+	rtn
+
+parse_lmp_not_accepted_aurand:	
+parse_lmp_not_accepted_aurand_send_detach:	
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam OTHER_END_TERMINATED,mem_disconn_reason_send
+	rtn
+/*in pair remote cancel the pair*/
+parse_lmp_not_accepted_inrand:
+	fetch 1,mem_rxbuf+2
+	beq KEY_MISSING,parse_lmp_inrand_key_missing
+	rtnne PAIRING_NOT_ALLOWED
+	jam PAIRING_NOT_ALLOWED,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	rtn	
+parse_lmp_inrand_key_missing:
+	jam KEY_MISSING,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_not_accepted_name_req:
+	rtn
+	
+parse_lmp_not_accepted_simple_pairing_number:
+	jam      SP_STAT_NULL,mem_sp_state
+	jam LMP_DETACH,mem_lmo_opcode2
+	branch   parse_rx_done
+	
+parse_lmp_not_accepted_dhkey_check:
+ifdef LMP_DBG
+	call ice_break
+endif
+	jam      SP_STAT_NULL,mem_sp_state
+	jam LMP_DETACH,mem_lmo_opcode2
+	branch   parse_rx_done
+parse_lmp_not_accepted_unsniff_req:
+	jam BT_EVT_UNSNIFF_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+parse_lmp_accepted_unsniff_req:
+	jam BT_EVT_UNSNIFF_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	branch sniff_exit
+	
+parse_lmp_accepted_sniff_req:
+	jam BT_EVT_SNIFF_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	setarg 0
+	store 2,mem_dsniff
+	fetch 2,mem_sniff_param_interval
+	lshift pdata,pdata
+	store 2,mem_tsniff
+	fetch 1,mem_sniff_param_attempt
+	store 1,mem_sniff_attempt
+	fetch 1,mem_sniff_param_timeout
+	store 1,mem_sniff_timeout
+	branch sniff_init
+	
+parse_lmp_not_acdcept_sniff_req:
+	jam BT_EVT_SNIFF_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+parse_lmp_crypt_key:
+	fetcht 1,mem_rxbuf+1
+	storet 1,mem_key_size
+	branch accept_lmp_msg
+	
+parse_lmp_setup_complete:
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_SETUP_COMPLETE,pdata
+	store 1,mem_lmp_conn_state
+	rtnbit1 SENT_SETUP_COMPLETE
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	branch parse_rx_done
+	
+parse_lmp_max_slot:
+	//jam LMP_MAX_SLOT,mem_lmi_opcode2
+	//branch accept_lmp_msg
+	rtn
+	
+parse_lmp_max_slot_req:
+	fetch 1,mem_max_slot
+	fetcht 1,mem_rxbuf+1
+	isub temp,null
+	//jam LMP_MAX_SLOT_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg,positive
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam UNSPECIFIED_ERROR,mem_lmo_reason2
+	jam LMP_MAX_SLOT_REQ,mem_lmi_opcode2
+	rtn
+	
+parse_lmp_detach:
+	call prepare_disconnect
+	branch accept_lmp_msg
+	
+accept_lmp_msg:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	rtn
+
+parse_lmp_incr_power:
+	jam LMP_MAX_POWER,mem_lmo_opcode2
+	rtn
+
+parse_lmp_decr_power:
+	jam LMP_MIN_POWER,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_version_res:
+	fetch 1,mem_conn_sm
+	rtneq CONN_SM_WAIT_VERSION
+	/* continuing on with host connection state machine */
+	jam CONN_SM_SEND_FEATURES ,mem_conn_sm
+	/* we need to move fast and send au_rand...jumping to next part of state machine for conn */
+	rtn
+
+
+parse_lmp_auto_rate:
+	rtn	
+
+parse_lmp_in_rand:
+	call lmp_copy_rand
+	jam pincode_state_wait_pincode,mem_pincode_state
+	jam BT_EVT_PINCODE_REQ,mem_fifo_temp
+	call ui_ipc_send_event
+
+	call tid_check
+	nbranch lmp_accept_inrand,true
+	//fetch 1,mem_auth_enable
+	nbranch parse_lmp_inrand_res,master // ignore this because of not ssp temporary
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_IN_RAND,mem_lmi_opcode2
+	jam TRANSACTION_COLLISION,mem_lmo_reason2
+	rtn
+parse_lmp_inrand_res:
+	fetch 1,mem_op
+	set1 op_inrand_req,pdata
+	store 1,mem_op
+	rtn
+
+//store current tid
+pop_tid_follow:
+	fetcht 1,mem_state_map
+	nsetflag blank,smap_lmptid,temp
+	storet 1,mem_state_map
+	rtn
+	
+//restore current tid
+push_tid_follow:
+	fetch 1,mem_lmo_tid2
+	rshift pdata,pdata
+	and_into 1,pdata
+	rtn
+
+parse_lmp_au_rand_moudle:
+	fetch 1,mem_device_option
+	rtnne dvc_op_module
+	fetch 1,mem_pairing_auth
+	call load_device_list,blank
+	rtn	
+
+parse_lmp_au_rand:
+	call parse_lmp_au_rand_moudle
+	call push_tid_follow
+	store 1,mem_sres_tid
+	call lmp_copy_rand
+	jam LMP_SRES,mem_lmo_opcode2
+	fetch 1,mem_link_key_exists
+	nrtn blank
+	fetch 1,mem_state
+	rtnbit1 state_combkey		/* we have comb key, but not verified */
+	jam KEY_MISSING,mem_lmo_reason2
+	branch reject_lmp_packet
+
+parse_lmp_sres:	
+	arg mem_plap,rega
+	call function_e1
+	fetch 4,mem_rxbuf+1
+	fetcht 4,mem_input_store
+	isub temp,null
+	branch authentication_ok,zero
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam AUTHENTICATION_FAILURE_ERROR,mem_disconn_reason_send	
+	rtn
+authentication_ok:
+	call authentication_ok_common
+	fetch 1,mem_ssp_enable
+	branch  pairing_success,blank
+	rtn
+
+	
+authentication_ok_common:
+	call copy_aco
+	call linkkey_ready///save link key
+	fetch 1,mem_op
+	isolate1 op_auth_req,pdata
+	set0 op_auth_req,pdata
+	store 1,mem_op
+	fetch 1,mem_conn_sm
+	beq CONN_SM_AUTH_WAIT,authentication_ok_conn_sm
+	beq CONN_SM_PAIRING_WAIT,authentication_ok_conn_sm
+	rtn
+authentication_ok_conn_sm:
+	fetch 1,mem_pairing_auth
+	rtnne DEFALT_PAIRING_AUTH
+	fetch 1,mem_state_map
+	rtnbit1 smap_encryption
+	branch host_create_conn_encrypt
+
+parse_lmp_comb_key:
+	arg mem_rxbuf+1,rega
+	arg mem_kinit,regb
+	arg mem_random_number,contw
+	call xor16
+	arg mem_plap,rega
+	call generate_linkkey
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	fetch 1,mem_state
+	bbit0 state_combkey,lmp_generate_key
+	rtn
+	
+parse_lmp_name_res:
+	fetch 2,mem_len
+	add pdata,-3,loopcnt	//for remote name length error
+	fetcht 1,mem_rxbuf+1
+	setarg mem_tmp_buffer
+	iadd temp,contw
+	arg mem_rxbuf+3,contr
+	call memcpy
+	fetcht 1,mem_name_offset
+	fetch 1,mem_rxbuf+2
+	isub temp,pdata
+	sub pdata,14,null
+	branch parse_lmp_name_res_end,positive
+	add temp,14,pdata
+	store 1,mem_name_offset
+	jam LMP_NAME_REQ,mem_lmo_opcode2
+	rtn
+parse_lmp_name_res_end:
+	fetch 1,mem_state_map
+	set1 smap_name_res,pdata
+	store 1,mem_state_map
+	bbit1 smap_name_req,lmp_disconnect
+	rtn
+parse_lmp_name_req:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_opcode2 //offset 
+	jam LMP_NAME_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_conn_req:
+	branch accept_lmp_msg
+
+parse_lmp_timing_accuracy_req:
+	jam LMP_TIMING_ACCURACY_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_features_req:
+	jam LMP_FEATURES_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_version_req:
+	jam LMP_VERSION_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_supervision_timeout:
+//	fetch 2,mem_rxbuf+1
+//	store 2,mem_supervision_to
+	rtn
+	
+
+
+parse_lmp_sniff_subrating_req:
+	fetch 2,mem_tsniff
+	iforce temp
+	fetch 1,mem_rxbuf+2
+	store 1,mem_subsniff_rate
+	imul32 temp,temp
+	fetch 2,mem_rxbuf+3
+	lshift pdata,pdata
+	store 2,mem_subsniff_tcmax
+	fetch 4,mem_rxbuf+5
+	lshift pdata,pdata
+ 	store 4,mem_subsniff_instant
+	//product pdata
+	deposit temp
+	store 2,mem_subsniff_tsniff
+	rtn
+parse_lmpext_packet_type_table_req:
+	fetcht 1,mem_ptt
+	fetch 1,mem_rxbuf+2
+	ixor temp,null
+	nbranch reject_unknown_ext_packet,zero
+	isolate1 0,pdata
+	fetch 1,mem_state_map
+	setflag true,smap_edr,pdata
+	store 1,mem_state_map
+	jam LMP_EXT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_PACKET_TYPE_TABLE_REQ,mem_lmi_opcode2
+	rtn
+
+	
+parse_lmp_sniff_subrating_res:
+parse_lmp_preferred_rate:
+parse_lmp_max_power:
+parse_lmp_min_power:
+	rtn
+parse_lmp_page_mode_req:
+	//jam LMP_PAGE_MODE_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg
+parse_lmp_page_scan_mode_req:
+	//this can influence connection. need accepted
+	//jam LMP_PAGE_SCAN_MODE_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg
+
+
+	
+parse_lmp_slot_offset:
+	fetch 2,mem_rxbuf+1
+	store 2,mem_slot_offset
+	rtn
+
+parse_lmp_sniff_req_check_sniff_para:
+	fetch 2,mem_rxbuf+4 /* tsniff */
+	fetcht 1,mem_lpm_mult
+	imul32 temp,pdata
+	arg 0x640,temp
+	isub temp,null
+//	branch lmp_reject_sniff,positive
+	rtn
+	
+parse_lmp_sniff_req:
+	call parse_lmp_sniff_req_check_sniff_para
+	branch lmp_reject_sniff,positive
+	fetch 1,mem_state
+	bbit1 state_insniff,lmp_reject_sniff
+	fetch 2,mem_rxbuf+2 /* dsniff */
+	lshift pdata,pdata
+	store 2,mem_dsniff	
+	fetch 2,mem_rxbuf+4 /* tsniff */
+	lshift pdata,pdata
+	store 2,mem_tsniff
+	fetch 2,mem_rxbuf+6 /* sniff attempt */
+	store 1,mem_sniff_attempt
+	iforce temp
+	fetch 2,mem_rxbuf+8 /* sniff timeout */
+	store 1,mem_sniff_timeout
+	isub temp,null
+	nbranch set_big_value_to_attempt,positive
+	store 1,mem_sniff_attempt
+set_big_value_to_attempt:	
+	//call sniff_init
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SNIFF_REQ,mem_lmi_opcode2
+	rtn
+
+lmp_reject_sniff:
+	jam PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+
+parse_lmp_start_encryption_req:
+	call accept_lmp_msg
+	call lmp_copy_rand
+	call function_e3
+	branch start_encryption
+	
+parse_lmp_stop_encryption_req:
+	call accept_lmp_msg
+	branch stop_encryption
+	
+
+parse_lmp_switch_req:
+	fetch 4,mem_rxbuf+1
+	lshift pdata,pdata
+	//branch parse_lmp_switch_req_not_accept
+	branch parse_lmp_switch_accept,master
+	fetcht 1,mem_link_key_exists
+	nbranch parse_lmp_switch_req_clear_mark,blank
+parse_lmp_switch_req_not_accept:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SWITCH_REQ,mem_lmi_opcode2
+	jam PDU_NOT_ALLOWED,mem_lmo_reason2
+	rtn
+parse_lmp_switch_req_clear_mark:
+	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	jam 0,mem_conn_sm
+	branch role_switch_prepare
+
+parse_lmp_switch_accept:
+	call role_switch_prepare
+	set1 mark_reconn_recieve_switch,mark
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	branch accept_lmp_msg
+
+	
+
+parse_lmp_temp_rand:
+parse_lmp_temp_key:
+parse_lmp_timing_accuracy_res:	
+parse_lmp_unit_key:	
+parse_lmp_use_semi_permanend_key:
+	rtn
+
+	
+parse_lmp_unsniff_req:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_UNSNIFF_REQ,mem_lmi_opcode2
+	jam BT_EVT_REMOTE_UNSNIFF,mem_fifo_temp
+	call ui_ipc_send_event
+	branch sniff_exit
+	
+parse_lmp_encapsulated_header:
+	fetch 1,mem_rxbuf+1
+	bne ENCAPSULATED_MAJOR_TYPE_P192,parse_lmp_encapsulated_header_reject
+	fetch 1,mem_rxbuf+2
+	bne ENCAPSULATED_MINOR_TYPE_P192,parse_lmp_encapsulated_header_reject
+	fetch 1,mem_rxbuf+3
+	bne ENCAPSULATED_LEN_P192,parse_lmp_encapsulated_header_reject
+	call check_localsm
+	branch parse_lmp_encapsulated_header_master,true
+	jam SP_STAT_KEY_RECV,mem_sp_state
+parse_lmp_encapsulated_header_master:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_ENCAPSULATED_HEADER,mem_lmi_opcode2
+	branch parse_rx_done
+	
+parse_lmp_encapsulated_header_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch   reject_lmp_packet
+	
+parse_lmp_accepted_encapsulated_header:
+	//jam LMP_ENCAPSULATED_PAYLOAD,mem_lmi_opcode2
+	//branch   accept_lmp_msg  	
+	jam LMP_ENCAPSULATED_PAYLOAD,mem_lmo_opcode2
+      //   branch   accept_lmp_msg  	
+         rtn
+parse_lmp_accepted_simple_pairing_number:
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_SSP_PIN_FLAG,parse_lmp_accepted_simple_pairing_number_ssp_pin
+	beq SSP_MODE_PASSKEY_ENTRY_FLAG,parse_lmp_accepted_simple_pairing_number_passkey
+parse_lmp_accepted_simple_pairing_number_common:
+	call check_localsm
+	rtn true
+	jam SP_STAT_CONFIRM_RECV,mem_sp_state
+	rtn
+
+parse_lmp_accepted_simple_pairing_number_ssp_pin:
+	call g_noninit_number_confirm
+	jam BT_EVT_BT_GKEY_GENERATE,mem_fifo_temp
+	call ui_ipc_send_event
+	branch parse_lmp_accepted_simple_pairing_number_common
+
+
+parse_lmp_accepted_simple_pairing_number_passkey:
+	call check_localsm
+	rtn true
+	fetch 1,mem_authentication_passkey_times
+	beq 19,authentication_passkey_end
+	increase 1,pdata
+	store 1,mem_authentication_passkey_times
+//	branch p_authentication_passkey
+
+authentication_passkey:
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	jam      SP_STAT_COMMIT_CALC,mem_sp_state 
+	fetch 1,mem_authentication_passkey_times
+	copy pdata,queue
+	fetch 6,mem_pin
+	qisolate1 pdata
+	setarg 0x80
+	setflag true,0,pdata
+	store 1,mem_passkey_1bit
+	rtn
+
+authentication_passkey_end:	
+	jam SP_STAT_CONFIRM_RECV,mem_sp_state
+	rtn
+
+parse_lmp_accepted_dhkey_check:
+	call parse_lmp_accepted_dhkey_check_common
+pairing_success:
+	fetch 1,mem_flag_pairing_state
+	rtn blank
+	jam FLAG_PAIRING_STATE_NOT_PAIRING,mem_flag_pairing_state
+	jam BT_EVT_BT_PAIRING_SUCCESS,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+parse_lmp_accepted_dhkey_check_common:
+	//here must be change***  shyd
+	call check_localsm
+ifdef SIMPLE_PAIRING
+	ncall g_noninit,true	//when be master  call g_init
+	call g_init,true
+endif
+	call check_localsm
+	rtn true
+	jam SP_STAT_LINK_KEY_CALC,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+
+parse_simple_pairing_confirm:
+	arg mem_sp_confirm_remote,contw
+	arg mem_rxbuf+1,contr
+	call memcpy16
+	fetch 1,mem_ssp_mode_flag
+	rtneq  SSP_MODE_PASSKEY_ENTRY_FLAG
+ifdef SIMPLE_PAIRING
+	branch master_set_mem_master_sp_flag
+endif
+	
+parse_lmp_encapsulated_payload:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_RANDOM_SEND,parse_encapsulated_payload_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_KEY_RECV,parse_lmp_encapsulated_payload_reject
+parse_encapsulated_payload_master:
+	fetch    1,mem_sp_remote_key_recv_count
+	sub      pdata,0x20,contw
+	nbranch  parse_lmp_encapsulated_payload_reject,positive
+	arg      mem_sp_pubkey_remote,contw
+	iadd     contw,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	fetch    1,mem_sp_remote_key_recv_count
+	increase 16,pdata
+	store    1,mem_sp_remote_key_recv_count
+	bne ENCAPSULATED_LEN_P192,accept_lmp_msg
+parse_lmp_encapsulated_payload_completed:
+	call check_localsm
+	branch accept_lmp_msg,true
+	jam      SP_KEY_VALID,mem_sp_remote_key_invalid
+	jam      SP_STAT_KEY_GENERATE,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag  
+	branch   accept_lmp_msg
+parse_lmp_encapsulated_payload_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch   reject_lmp_packet	
+parse_lmp_accepted_encapsulated_payload: 
+	fetch 1,mem_sp_local_key_send_count
+	beq	ENCAPSULATED_LEN_P192,parse_lmp_encapsulated_payload_all_accepted
+	jam LMP_ENCAPSULATED_PAYLOAD,mem_lmo_opcode2
+	branch   parse_rx_done 
+	
+parse_lmp_encapsulated_payload_all_accepted:   
+	call check_localsm
+	branch parse_lmp_encapsulated_payload_all_accepted_master,true
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_PASSKEY_ENTRY_FLAG,parse_lmp_encapsulated_payload_all_accepted_get_passkey
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	jam      SP_STAT_COMMIT_CALC,mem_sp_state 
+	branch   parse_rx_done
+
+parse_lmp_encapsulated_payload_all_accepted_get_passkey:
+	jam BT_EVT_BT_GET_PASSKEY,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+parse_lmp_encapsulated_payload_all_accepted_master:
+	//call sp_master_generate_local_key
+	branch   parse_rx_done   
+
+parse_lmp_simple_pairing_number:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_RANDOM_SEND,parse_lmp_simple_pairing_number_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_RANDOM_RECV,parse_lmp_simple_pairing_number_reject
+parse_lmp_simple_pairing_number_master:
+	arg      mem_sp_random_remote,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	call check_localsm
+	branch parse_lmp_simple_pairing_number_master0,true
+	jam      SP_STAT_RANDOM_SEND,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	branch accept_lmp_msg  
+parse_lmp_simple_pairing_number_master0:
+	jam SP_STAT_COMMIT_CALC,mem_master_sp_state
+ifdef SIMPLE_PAIRING
+	branch master_set_mem_master_sp_flag
+endif
+	//jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2
+	//branch accept_lmp_msg  
+parse_lmp_simple_pairing_number_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+	
+parse_dhkey_check:
+	fetch    1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_SEND,parse_dhkey_check_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_CONFIRM_RECV,parse_lmp_dhkey_check_reject
+parse_dhkey_check_master:
+	arg      mem_sp_check_result,contw
+	arg mem_rxbuf+1,contr
+	call memcpy16
+	call check_localsm
+	branch parse_dhkey_check_master0,true
+	fetch 1,mem_ssp_mode_flag
+	beq SSP_MODE_SSP_PIN_FLAG,number_comparison_mode
+number_comparison_successed:
+	jam 0,mem_flag_mode_ssp_pin
+	jam SP_STAT_CONFIRM_CHECK,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	branch   parse_rx_done
+	
+parse_dhkey_check_master0:
+	jam      SP_STAT_CONFIRM_CHECK,mem_master_sp_state
+	jam      SP_FLAG_COMMIT,mem_master_sp_flag
+	branch   parse_rx_done
+parse_lmp_dhkey_check_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+
+number_comparison_mode:
+	fetch 1,mem_flag_mode_ssp_pin
+	bbit1 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT ,comparison_result
+	set1 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT,pdata
+	store 1,mem_flag_mode_ssp_pin
+	rtn
+	
+comparison_result:
+	bbit1 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,number_comparison_successed
+	jam 0,mem_flag_mode_ssp_pin
+	branch parse_lmp_dhkey_check_reject
+
+	
+parse_lmp_clkoffset_res:
+	branch parse_rx_done
+		
+parse_lmp_encryption_mode_req:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_ENCRYPT
+	store 1,mem_connection_options
+	call accept_lmp_msg
+	nrtn master					/* do sth only if we're master */
+	fetch 1,mem_rxbuf+1
+	fetcht 1,mem_op
+	setflag blank,op_stop_enc,temp
+	nsetflag blank,op_start_enc,temp
+	storet 1,mem_op
+	rtn 
+	
+parse_lmp_features_res:
+	fetcht 8,mem_rxbuf+1		/*fix bcp(baoshijie) err*/
+parse_lmp_features_res_not_hci:	
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_WAIT_FEATURES_RES
+
+	fetch 1,mem_connection_options
+	bbit0 CONNECTION_FEATURE_EXT,parse_lmp_send_conn
+
+	jam CONN_SM_SEND_FEATURES_EXT,mem_conn_sm
+	rtn
+parse_lmp_send_conn:
+	jam CONN_SM_SEND_CONN_REQ,mem_conn_sm
+	rtn
+parse_lmp_test_activate:
+	fetch 1,mem_debug_config
+	store 1,mem_test_mode_old_debug_config
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_TEST_ACTIVATE,mem_lmi_opcode2
+	rtn
+parse_lmp_test_control:
+	/* the 9 test control parameters are XORed with 0x55 */
+	/* doing the XOR here and storing in mem_temp_payload */
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_TEST_CONTROL,mem_lmi_opcode2
+	force 9,loopcnt
+	arg mem_rxbuf+1,contr
+	arg mem_temp_payload,contw
+parse_lmp_test_xor:
+	ifetch 1,contr
+	xor_into 0x55,pdata
+	istore 1,contw
+	loop parse_lmp_test_xor
+	fetch 1,test_mode_scenario
+	fetcht 1,mem_tester_emulate
+	set0 tester_no_whitening,temp
+	set0 tester_pattern_test,temp
+	beq EXIT_TEST_MODE,	 parse_lmp_test_control_exit
+	beq PAUSE_TEST_MODE,	 parse_lmp_test_control_pause
+	beq CLOSED_LOOP_BACK_ACL,	 parse_lmp_test_control_loopback
+	beq ACL_WITHOUT_WHITENING,	 parse_lmp_test_control_loopback_nowhite
+	beq CLOSED_LOOP_BACK_SCO,	 parse_lmp_test_control_loopback
+	beq SCO_WITHOUT_WHITENING,	 parse_lmp_test_control_loopback_nowhite
+	beq ZERO_PATTERN,	 parse_lmp_test_control_pattern
+	beq ONE_PATTERN,	 parse_lmp_test_control_pattern
+	beq ALT_PATTERN,	 parse_lmp_test_control_pattern
+	beq ALT2_PATTERN,	 parse_lmp_test_control_pattern
+	beq PSEUDORANDOM,	 parse_lmp_test_control_pattern
+	rtn
+parse_lmp_test_control_exit:
+	/* restoring old parameters */
+	fetch 1,mem_tester_emulate
+	set1 tester_exit,pdata
+	set1 tester_change,pdata
+	store 1,mem_tester_emulate
+	rtn
+parse_lmp_test_control_pattern:
+	set1 tester_pattern_test,temp
+	jam 5,mem_lch_code
+	fetch 2,test_mode_data_length
+	iforce loopcnt
+	store 2,mem_len
+	arg mem_rxbuf,contw
+	call pn9
+parse_lmp_test_control_loopback_nowhite:
+	set1 tester_no_whitening,temp
+parse_lmp_test_control_loopback:
+	set1 tester_change,temp
+	force 0,pdata
+	store 1,mem_slave_rcvcnt
+	store 2,mem_tst_pktcnt_crc
+	store 2,mem_tst_pktcnt_dmh
+	store 2,mem_tst_pktcnt_hec
+	store 2,mem_tst_pktcnt_sync
+	fetch 1,test_mode_hopping_mode
+	compare FIXED_FREQ,pdata,0xff
+	setflag true,tester_fixed_freq,temp
+	storet 1,mem_tester_emulate
+	rtn
+
+parse_lmp_test_control_pause:
+	set0 mark_testmode,mark
+	jam 0,mem_tester_emulate
+	fetch 1,mem_debug_config
+	set0 debug_tx_pattern,pdata
+	store 1,mem_debug_config
+	rtn
+
+
+	
+	
+
+lmp_copy_rand:	
+	arg mem_rxbuf+1,contr
+	arg mem_random_number,contw
+	branch memcpy16
+
+lmp_generate_key:
+	jam LMP_COMB_KEY,mem_lmo_opcode2
+	rtn
+
+lmp_start_encryption:
+	nrtn master
+	jam LMP_START_ENCRYPTION_REQ,mem_lmo_opcode2
+	rtn
+	
+lmp_accept_inrand:
+	arg mem_lap,rega
+	call generate_kinit
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_IN_RAND,mem_lmi_opcode2
+	rtn
+
+lmp_disconnect:
+	jam 10,mem_conn_timer
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam LOCAL_HOST,mem_disconn_reason_send	
+	rtn
+
+/*********************************/
+/*********lmp send*************/
+/********************************/
+	/* enable user if a lmp packet is to send */
+send_lmp:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_0,mem_patch2b
+	disable user
+	call lmo_fifo_process
+	fetch 1,mem_lmp_to_send
+	rtn blank
+/* lmp message to be processed. this will either be because host??? */
+/* wants to send a lmp message or because one resulted from the LMP */
+/* processing section */
+/********* outgoing lmp lookup table *************/
+	bbit1 7,send_lmp_escape
+send_lmp0:
+	beq LMP_NAME_REQ,	 send_lmp_name_req
+	beq LMP_NAME_RES,	 send_lmp_name_res
+	beq LMP_ACCEPTED,	 send_lmp_accepted
+	beq LMP_NOT_ACCEPTED,	 send_lmp_not_accepted
+	beq LMP_FEATURES_REQ,	 send_lmp_features_req
+	beq LMP_FEATURES_RES,	 send_lmp_features_res
+	beq LMP_TIMING_ACCURACY_RES,	 send_lmp_timing_accuracy_res
+	beq LMP_VERSION_REQ,	 send_lmp_version_req
+	beq LMP_VERSION_RES,	 send_lmp_version_res
+	beq LMP_SETUP_COMPLETE,	 send_lmp_setup_complete
+	beq LMP_SUPERVISION_TIMEOUT,	 send_lmp_superto
+	beq LMP_HOST_CONNECTION_REQ,send_lmp_no_payload
+	beq LMP_IN_RAND,send_lmp_inrand
+	beq LMP_COMB_KEY,send_lmp_comb_key
+	beq LMP_AU_RAND,send_lmp_aurand
+	beq LMP_SRES,send_lmp_sres
+	beq LMP_ENCRYPTION_MODE_REQ,send_lmp_encryption_mode_req
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,send_lmp_encryption_key_size_req
+	beq LMP_START_ENCRYPTION_REQ,send_lmp_start_encryption
+	beq LMP_DETACH,send_lmp_detach
+	beq LMP_QUALITY_OF_SERVICE_REQ, send_lmp_quality_of_service_req
+	beq LMP_UNIT_KEY,send_lmp_unit_key
+	//Optional (O)
+	beq LMP_INCR_POWER_REQ,send_lmp_inc_power	
+	beq LMP_CLKOFFSET_RES, send_lmp_clkoffset_res	
+	beq LMP_MAX_POWER,send_lmp_nopayload_reply
+	beq LMP_MAX_SLOT, send_lmp_max_slot
+	beq LMP_MAX_SLOT_REQ, send_lmp_max_slot_req
+	beq LMP_MIN_POWER,send_lmp_nopayload_reply
+	beq LMP_SLOT_OFFSET, send_lmp_slot_offset
+	beq LMP_SWITCH_REQ, send_lmp_switch_req
+	beq LMP_SNIFF_REQ, send_lmp_sniff_req
+	beq LMP_STOP_ENCRYPTION_REQ, send_lmp_stop_encryption_req	
+	beq LMP_TIMING_ACCURACY_REQ, send_lmp_timing_accuracy_req
+	beq LMP_UNSNIFF_REQ, send_lmp_unsniff_req
+	beq LMP_ENCAPSULATED_HEADER,send_lmp_encapsulated_header
+	beq LMP_ENCAPSULATED_PAYLOAD,send_lmp_encapsulated_payload
+	beq LMP_SIMPLE_PAIRING_CONFIRM,send_lmp_simple_pairing_comfirm
+	beq LMP_SIMPLE_PAIRING_NUMBER,send_lmp_simple_pairing_number
+	beq LMP_DHKEY_CHECK,send_lmp_dhkey_check
+	beq LMP_AUTO_RATE,send_lmp_auto_rate
+	beq LMP_ENC_KEY_SIZE_MASK_RES,send_lmp_enc_key_size_mask_res
+	//master only must(M)
+	beq LMP_CLKOFFSET_REQ, send_lmp_clkoffset_req
+	beq LMP_QUALITY_OF_SERVICE, send_lmp_quality_of_service
+	beq LMP_TEST_ACTIVATE, send_lmp_test_activate
+	beq LMP_TEST_CONTROL, send_lmp_test_control
+send_lmp_error:
+	branch assert
+	rtn
+send_lmp_escape:
+	beq LMP_EXT_ACCEPTED,send_lmpext_accepted
+	beq LMP_EXT_FEATURES_RES,send_lmpext_features_res
+	beq LMP_NOT_ACCEPTED_EXT,send_lmpext_not_accepted
+	beq LMP_EXT_FEATURES_REQ,send_lmpext_features_req
+	beq LMP_PACKET_TYPE_TABLE_REQ,send_lmpext_packet_type_table_req
+	beq LMP_PAUSE_ENCRYPTION_REQ,send_lmpext_pause_encryption_req
+	beq LMP_IO_CAP_REQ,send_lmp_io_cap_req
+         beq LMP_IO_CAP_RES,send_lmpext_io_cap_res
+         beq LMP_SNIFF_SUBRATING_REQ,send_lmpext_sniff_subrating_req
+         beq LMP_SNIFF_SUBRATING_RES,send_lmpext_sniff_subrating_res
+	branch assert
+
+
+/******** LMP follow messages **********/
+/****** TID follow received packet  *******/
+
+send_lmp_accepted:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode
+	istore 1,contw
+	call send_lmp_follow
+	set1 mark_ext_patch,mark
+	bpatch patch2b_1,mem_patch2b
+	fetch 1,mem_lmi_opcode
+	beq LMP_IN_RAND,send_lmp_accepted_inrand
+	beq LMP_ENCRYPTION_MODE_REQ,send_lmp_accepted_enc_mode
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,send_lmp_accepted_enc_key
+	beq LMP_SNIFF_REQ,send_lmp_accept_sniff_req
+	beq LMP_HOST_CONNECTION_REQ,send_lmp_accepted_connection
+	beq LMP_DHKEY_CHECK,send_lmp_accept_dhkey_check
+	beq LMP_START_ENCRYPTION_REQ,send_create_conn_start_l2cap_timer_sm  
+	rtn	
+	
+send_create_conn_start_l2cap_timer_sm:
+	fetch 1,mem_conn_sm
+	rtn blank
+	jam CONN_SM_WAIT_DONE,mem_conn_sm
+	setarg TIMER_ENPT_WAITE
+	arg enpt_delay_timer,queue
+	branch timer_init
+	
+send_lmp_accept_sniff_req:
+	branch sniff_init
+send_lmp_not_accepted:
+	force 3,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode
+	beq LMP_AU_RAND,send_not_accept_aurand
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	branch send_lmp_follow
+
+send_not_accept_aurand:
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	arg mem_sres_tid,temp
+	branch special_tid_store
+
+send_lmpext_accepted:	
+	force 4,queue
+	call send_lmpext
+	setarg LMP_ESCAPE
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	set0 7,pdata
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	branch send_lmp_follow
+
+send_lmpext_not_accepted:
+	force 5,queue
+	call send_lmpext
+	setarg LMP_ESCAPE
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	set0 7,pdata
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	branch send_lmp_follow
+	
+
+send_lmp_accepted_inrand:
+	call clear_linkkey
+	call tid_check	
+	rtn true
+	branch lmp_generate_key
+
+send_lmp_accepted_enc_mode:
+	fetch 1,mem_op
+	bbit1 op_start_enc,send_lmp_accepted_enc_start
+	rtnbit0 op_stop_enc
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	set0 op_stop_enc,pdata
+	call tid_reply
+	branch send_lmp_accepted_enc_exit
+send_lmp_accepted_enc_start:
+	jam LMP_ENCRYPTION_KEY_SIZE_REQ,mem_lmo_opcode2
+	set0 op_start_enc,pdata
+send_lmp_accepted_enc_exit:
+	store 1,mem_op
+	rtn
+
+send_lmp_accepted_enc_key:
+	call check_localsm
+	branch lmp_start_encryption,true
+	rtn
+
+send_lmp_accepted_connection:
+	jam LMP_PACKET_TYPE_TABLE_REQ,mem_lmo_opcode2
+	//jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_CONN_REQ,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_BB_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+send_lmp_accept_dhkey_check:
+	rtn
+/******** LMP reply messages **********/
+/****** TID always set to remote  *******/
+
+send_lmpext_features_res:
+	force 12,queue
+	call send_lmpext
+	setarg 0x01
+	istore 1,contw
+	fetch 2,mem_lmpext_ssp_enable
+	istore 2,contw
+	setarg 0
+	istore 3,contw
+	setarg 0x00
+	istore 4,contw
+	branch send_lmp_reply
+send_lmpext_io_cap_res:     
+	force 5,queue
+         call send_lmpext
+       	fetch 3,mem_sp_iocap_local
+         istore 3,contw
+	call send_lmp_reply
+	jam FLAG_PAIRING_STATE_PAIRING,mem_flag_pairing_state
+	fetch 1,mem_sp_iocap_local
+	beq DISPLAY_YESNO,responder_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_no_input_no_output
+	rtn
+
+responder_iocap_keyboard_only:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_keyboard_only_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_keyboard_only_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_keyboard_only_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_keyboard_only_initiator_iocap_no_input_no_output
+	rtn
+
+
+responder_iocap_display_yesno:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_display_yesno_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_display_yesno_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_display_yesno_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_display_yesno_initiator_iocap_no_input_no_output
+	rtn
+
+	
+responder_iocap_no_input_no_output:
+	fetch 1,mem_sp_iocap_remote
+	beq DISPLAY_ONLY,responder_iocap_no_input_no_output_initiator_iocap_display_only
+	beq DISPLAY_YESNO,responder_iocap_no_input_no_output_initiator_iocap_display_yesno
+	beq KEYBOARD_ONLY,responder_iocap_no_input_no_output_initiator_iocap_keyboard_only
+	beq NO_INPUT_NO_OUTPUT,responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output
+	rtn
+
+responder_iocap_keyboard_only_initiator_iocap_no_input_no_output:
+responder_iocap_display_yesno_initiator_iocap_no_input_no_output:
+responder_iocap_display_yesno_initiator_iocap_display_only:
+responder_iocap_no_input_no_output_initiator_iocap_display_only:
+responder_iocap_no_input_no_output_initiator_iocap_display_yesno:
+responder_iocap_no_input_no_output_initiator_iocap_keyboard_only:
+responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output:
+set_ssp_mode_justwork: 
+	jam SSP_MODE_JUST_WORK_FLAG,mem_ssp_mode_flag
+	rtn
+
+responder_iocap_display_yesno_initiator_iocap_display_yesno:
+set_ssp_mode_numeric_comparison: 
+	jam SSP_MODE_SSP_PIN_FLAG,mem_ssp_mode_flag
+	rtn
+
+responder_iocap_keyboard_only_initiator_iocap_display_yesno:
+responder_iocap_keyboard_only_initiator_iocap_keyboard_only:	
+responder_iocap_keyboard_only_initiator_iocap_display_only:	
+responder_iocap_display_yesno_initiator_iocap_keyboard_only:
+set_ssp_mode_passkey: 
+	jam SSP_MODE_PASSKEY_ENTRY_FLAG,mem_ssp_mode_flag
+	rtn
+
+
+
+         
+send_lmp_io_cap_req:
+	force 5,queue
+	call send_lmpext
+	fetch 3,mem_sp_iocap_local
+	istore 3,contw
+	branch send_lmp_request
+	
+
+send_lmpext_sniff_subrating_req: 
+
+	rtn
+send_lmpext_sniff_subrating_res: 
+         force 9,queue
+         call send_lmpext
+         fetch 1,mem_subsniff_rate
+         istore 1,contw
+         fetch 2,mem_subsniff_tcmax
+         istore 2,contw
+         fetch 4,mem_subsniff_instant
+         istore 4,contw
+	branch send_lmp_reply
+
+send_lmp_name_res:
+	force 17,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode  /* loading name offset */
+	copy pdata,temp
+	beq 0x00,send_lmp_name_res_offset_ok
+	beq 0x0e,send_lmp_name_res_offset_ok
+	beq 0x1c,send_lmp_name_res_offset_ok
+	rtn
+send_lmp_name_res_offset_ok:
+	istore 1,contw	/* writing name offset */
+	fetch 1,mem_local_name_length
+	istore 1,contw	/* writing name length */
+	arg 14,loopcnt
+	setarg mem_local_name
+	iadd temp,contr	/* setting read location */
+	call memcpy
+	branch send_lmp_reply
+
+
+send_lmp_timing_accuracy_res:
+	force 3,pdata
+	call msg_send_lmp
+	setarg 0x0114
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_clkoffset_res:
+	// dopod s505 must wait for this res
+	force 3,pdata
+	call msg_send_lmp
+	fetch 4,mem_clke_bt
+	isub clkn_bt,pdata
+	branch send_lmp_clkoffset_res_master,master
+	sub pdata,0,pdata		/* our role is slave */
+send_lmp_clkoffset_res_master:	
+	// bit 16-2 of clkslave-clkmaster
+	rshift2 pdata,pdata
+	set0 15,pdata
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_version_res:
+	force 6,pdata
+	call msg_send_lmp
+	fetch 5,mem_lmp_version
+	istore 5,contw
+	branch send_lmp_reply
+
+send_lmp_features_res:
+	force 9,pdata
+	call msg_send_lmp
+	fetch 8,mem_features
+	istore 8,contw
+	branch send_lmp_reply  
+
+
+/******** LMP request messages **********/
+/****** TID always set to local initiated *******/
+	
+
+send_lmpext_features_req:
+	force 12,queue
+	call send_lmpext
+	setarg 0x01
+	istore 1,contw
+	fetch 2,mem_lmpext_ssp_enable
+	istore 2,contw
+	setarg 0
+	istore 3,contw
+	setarg 0x00
+	istore 4,contw
+	branch send_lmp_request
+
+send_lmpext_packet_type_table_req:
+	force 3,queue
+	call send_lmpext
+	fetch 1,mem_ptt
+	istore 1,contw
+	disable user
+	call send_lmp_request
+	nrtn user
+	nrtn master
+	fetch 1,mem_afh_cfg
+	rtnbit0 AFH_CFG_ON
+	call afh_init
+	branch afh_open_all_channels
+	
+//default:featrue is enable,extfeature is disable
+ssp_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_2,mem_patch2b
+	fetch 1,mem_features+6
+	set1 param_featrue_ssp,pdata
+	store 1,mem_features+6
+	setarg param_lmpext_ssp_enable
+	store 2,mem_lmpext_ssp_enable
+	rtn
+
+ssp_disable:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_3,mem_patch2b
+	fetch 1,mem_features+6
+	set0 param_featrue_ssp,pdata
+	store 1,mem_features+6
+	setarg 0
+	store 2,mem_lmpext_ssp_enable
+	rtn
+	
+afh_init:
+	jam 0x3,mem_afh_cfg
+	setarg 0
+	store 4,mem_afh_timer
+	arg mem_afh_map_lo,contw
+	call afh_reset_map
+	arg mem_afh_map_new,contw
+	call afh_reset_map
+	arg mem_afh_classify_channel_map,contw
+	call afh_reset_map
+	branch afh_clear_error_counter
+afh_open_all_channels:
+	arg mem_afh_map_new,contw
+	call afh_reset_map
+	call afh_clear_error_counter
+	branch afh_set_send_flag
+
+
+afh_reset_map:
+	setarg 0xffffff
+	istore 3,contw
+	istore 3,contw
+	istore 3,contw
+	setarg 0x7f
+	istore 1,contw
+	rtn
+afh_clear_error_counter:
+	setarg 0
+	store 2,mem_afh_error_total
+	rtn
+afh_set_send_flag:
+	fetch 1,mem_afh_cfg
+	set1 send_lmp_set_afh,pdata
+	store 1,mem_afh_cfg
+	rtn
+
+
+send_lmpext_pause_encryption_req:
+	force 2,queue
+	call send_lmpext
+	nbranch send_lmp_reply,master
+	// assume slave will not send pause req firstly???
+	branch send_lmp_request
+
+
+	
+send_lmp_detach:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_disconn_reason_send
+	istore 1,contw
+	call send_lmp_request
+prepare_disconnect:
+	fetch 1,mem_op
+	set1 op_disconn,pdata
+	store 1,mem_op
+	jam 50,mem_conn_timer
+	rtn
+	
+
+send_lmp_no_payload:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_request
+send_lmp_nopayload_reply:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_reply
+	
+	
+send_lmp_encryption_mode_req:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_state_map
+	isolate0 smap_encryption,pdata
+	setflag true,0,pdata
+	and_into 1,pdata
+	istore 1,contw
+	branch send_lmp_request
+
+
+send_lmp_superto:
+	force 3,pdata
+	call msg_send_lmp
+	fetch 2,mem_supervision_to
+	istore 2,contw
+	branch send_lmp_request
+
+send_lmp_name_req:
+	jam 250,mem_conn_timer
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_name_offset
+	istore 1,contw
+	branch send_lmp_request
+
+send_lmp_test_control:
+	force 10,pdata
+	call msg_send_lmp
+	arg mem_temp_payload,contr
+	force 9,loopcnt
+send_lmp_test_control_loop:	
+	ifetch 1,contr
+	xor_into 0x55,pdata
+	istore 1,contw
+	loop send_lmp_test_control_loop
+	branch send_lmp_request  
+
+send_lmp_quality_of_service_req:
+	branch send_lmp_request
+send_lmp_unit_key:
+	branch send_lmp_request
+
+send_lmp_slot_offset:
+	rtn master
+	call calc_slot_offset
+	force 9,pdata
+	call msg_send_lmp
+	fetch 2,mem_slot_offset
+	istore 2,contw
+	fetch 3,mem_lap
+	istore 3,contw
+	fetch 1,mem_uap
+	istore 1,contw
+	fetch 2,mem_nap
+	istore 2,contw
+	bmark0 mark_switch_initiated,send_lmp_slot_offset_reply
+	set0 mark_switch_initiated,mark
+	call send_lmp_request
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	rtn
+send_lmp_slot_offset_reply:
+	call send_lmp_reply
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SWITCH_REQ,mem_lmi_opcode2
+	rtn
+	
+send_lmp_switch_req:
+	arg 0x200,temp
+	branch switch_on_native,master
+	deposit clke_bt
+	branch switch_slack
+switch_on_native:
+	deposit clkn_bt
+switch_slack:
+	deposit bt_clk
+	iadd temp,pdata
+	and_into 0x1fc,pdata
+	store 4,mem_sniff_anchor
+	force 5,pdata
+	call msg_send_lmp
+	fetch 4,mem_sniff_anchor		/* reused as switch instant */
+	rshift pdata,pdata
+	istore 4,contw
+	branch send_lmp_request
+	
+send_lmp_sniff_req:
+	force 10,pdata
+	call msg_send_lmp
+	arg mem_sniff_payload,contr
+	ifetch 9,contr
+	istore 9,contw
+	branch send_lmp_request
+
+	
+send_lmp_timing_accuracy_req:
+/* default to TID_NORM_SEND */
+	force 3,pdata
+	call msg_send_lmp
+	setarg 0x0114
+	istore 2,contw
+	branch send_lmp_request
+	
+send_lmp_unsniff_req:
+//--------------------need to completa
+	force 1,pdata
+	call msg_send_lmp
+	//fetch 1,mem_unsniff_pending
+	//nbranch send_msg_done,blank
+	//jam 1,mem_unsniff_pending
+	//fetch 2,mem_sniff_attempt
+	//fetch 2,mem_nsniff_attempt
+	//lshift3 pdata,pdata
+	//lshift pdata,pdata
+	//store 1,mem_unsniff_cnt
+	branch send_lmp_request
+
+	
+send_lmp_max_slot:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_max_slot
+	istore 1,contw
+	branch send_lmp_request
+	
+	
+send_lmp_max_slot_req:
+	force 2,pdata
+	call msg_send_lmp
+	setarg 0x05		/*5 slot*/
+	istore 1,contw
+	branch send_lmp_request
+
+
+send_lmp_inc_power:
+	force 2,pdata
+	call msg_send_lmp
+	setarg 0x00		/*5 slot*/
+	istore 1,contw
+	branch send_lmp_request
+
+
+
+send_lmp_setup_complete:
+	jam LMP_MAX_SLOT_REQ,mem_lmo_opcode2
+	fetch 1,mem_state
+	set1 state_conn_comp,pdata
+	store 1,mem_state
+	copy clkn_bt,pdata
+	store 4,mem_aurand_send_delay_time
+	fetch 1,mem_lmp_conn_state
+	bbit1 SENT_SETUP_COMPLETE,send_lmp_setup_complete_has_sent
+	set1 SENT_SETUP_COMPLETE,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_SETUP_COMPLETE,mem_fifo_temp
+	call ui_ipc_send_event
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_request
+send_lmp_setup_complete_has_sent:
+	jam 0,mem_lmp_to_send
+	rtn
+	
+send_lmp_version_req:
+	force 6,pdata
+	call msg_send_lmp
+	fetch 5,mem_lmp_version
+	istore 5,contw
+	branch send_lmp_request
+
+send_lmp_features_req:
+	force 9,pdata
+	call msg_send_lmp
+	fetch 8,mem_features
+	istore 8,contw
+	branch send_lmp_request  
+
+sp_master_send_io_cap_get:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	fetch 1,mem_sp_local_key_invalid
+	rtnne SP_KEY_VALID
+	jam SP_MASTER_STAT_START_DONE,mem_master_sp_state
+	rtn
+
+sp_master_send_io_cap_send:
+	call tid_initiate
+	jam LMP_IO_CAP_REQ,mem_lmo_opcode2
+	jam SP_STAT_KEY_SEND,mem_master_sp_state
+	rtn
+	
+	
+sp_master_send_LMP_ENCAPSULATED_HEADER:
+	call tid_initiate
+	jam      LMP_ENCAPSULATED_HEADER,mem_lmo_opcode2
+	jam SP_STAT_RANDOM_SEND,mem_master_sp_state
+	rtn
+	
+sp_master_commitment_compare:
+	arg mem_sp_calc_result_high,rega
+	arg mem_sp_confirm_remote,regb
+	arg 16,loopcnt
+	call string_compare
+	branch sp_master_commitment_compare_success,zero
+	jam SP_STAT_NULL,mem_master_sp_state
+ifdef SIMPLE_PAIRING
+	call master_clear_mem_master_sp_flag
+endif
+	jam   PDU_NOT_ALLOWED,mem_lmo_reason2
+	jam 	LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2 
+ifdef LMP_DBG
+	call ice_break
+endif
+	branch reject_lmp_packet
+sp_master_commitment_compare_success:
+	jam 	SP_STAT_CONFIRM_CALC,mem_master_sp_state
+ifdef SIMPLE_PAIRING
+	call master_set_mem_master_sp_flag
+endif
+	jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2
+	branch accept_lmp_msg  
+	
+
+	
+sp_master_send_lmp_simple_pairing_number:
+	jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmo_opcode2
+	rtn
+	
+
+
+sp_send_lmp_encapsulated_header:
+	// calculate the private & public key here
+	//jam      LMP_ENCAPSULATED_HEADER,mem_lmp_to_send
+	jam      LMP_ENCAPSULATED_HEADER,mem_lmo_opcode2
+	//jam      TID_PAIRING,mem_lmp_tid
+	rtn
+	//fetch 1,mem_tid_table
+	//set1 TID_PAIRING,pdata
+	//store 1,mem_tid_table
+     
+    
+send_lmp_encapsulated_header: 
+	jam 0,mem_sp_local_key_send_count
+	force 4,pdata
+	call msg_send_lmp
+	force ENCAPSULATED_MAJOR_TYPE_P192,pdata
+	istore 1,contw
+	force ENCAPSULATED_MINOR_TYPE_P192,pdata
+	istore 1,contw  
+	force ENCAPSULATED_LEN_P192,pdata
+	istore 1,contw 
+	call check_localsm
+	branch send_lmp_request,true
+	branch send_lmp_reply
+
+send_lmp_encapsulated_payload:
+	//jam      TID_PAIRING,mem_lmp_tid
+	 force 17,pdata
+	call msg_send_lmp
+	fetch 1,mem_sp_local_key_send_count
+	arg mem_sp_pubkey_local,contr
+	iadd contr,contr    
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw
+	fetch    1,mem_sp_local_key_send_count
+	increase 16,pdata
+	store    1,mem_sp_local_key_send_count
+	call check_localsm
+	branch send_lmp_request,true
+	branch send_lmp_reply
+	//branch send_lmp_request
+	
+sp_send_lmp_simple_pairing_comfirm:
+        jam      SP_STAT_RANDOM_RECV,mem_sp_state
+        jam      LMP_SIMPLE_PAIRING_CONFIRM,mem_lmo_opcode2
+        rtn
+send_lmp_simple_pairing_comfirm:
+        //jam      SP_STAT_RANDOM_RECV,mem_sp_state
+        //jam      TID_PAIRING,mem_lmp_tid
+        force    17,pdata
+        call msg_send_lmp   
+        arg      mem_sp_calc_result_high,contr
+        ifetch   8,contr
+        istore   8,contw
+        ifetch   8,contr
+        istore   8,contw 
+        branch send_lmp_reply
+
+sp_send_lmp_simple_pairing_number:
+	jam      LMP_SIMPLE_PAIRING_NUMBER,mem_lmo_opcode2
+	rtn
+
+send_lmp_simple_pairing_number:
+	//jam      TID_PAIRING,mem_lmp_tid
+	call check_localsm
+ifdef SIMPLE_PAIRING
+	call sp_local_random_key_generator,true
+endif
+	force    17,pdata
+	call msg_send_lmp
+	arg      mem_sp_random_local,contr
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw
+	call check_localsm
+	nbranch send_lmp_reply,true
+	branch send_lmp_request,true
+
+master_sp_sm_end:
+	//jam DEFAULT_STATEMACHINE,mem_sp_localsm
+	jam SP_STAT_DONE,mem_master_sp_state
+sp_aurand_send:
+	call tid_initiate
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	call check_localsm_master
+ifdef SIMPLE_PAIRING
+	branch sp_master_key_prarm_push,true
+	branch sp_link_key_prarm_push
+endif
+master_sp_send_lmp_dhkey_check:
+	call tid_reply
+sp_send_lmp_dhkey_check: 
+	jam      LMP_DHKEY_CHECK,mem_lmo_opcode2
+	rtn
+send_lmp_dhkey_check: 
+	//jam      TID_PAIRING,mem_lmp_tid
+	force    17,pdata
+	call     msg_send_lmp
+	arg      mem_sp_calc_result_high,contr
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw 
+	call check_localsm
+	nbranch send_lmp_reply,true
+	branch send_lmp_request,true
+
+send_lmp_enc_key_size_mask_res:
+	force 3,pdata
+	call msg_send_lmp   
+	setarg 0xfffe //enc key size mask
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_auto_rate:
+	branch send_lmp_request
+send_lmp_clkoffset_req:
+	branch send_lmp_request
+send_lmp_quality_of_service:
+	branch send_lmp_request
+send_lmp_test_activate:
+	branch send_lmp_request
+
+/******** LMP request/reply messages **********/
+/****** TID transaction specific *******/
+
+send_lmp_comb_key:
+	call generate_random_number
+	arg mem_lap,rega
+	call generate_linkkey
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_kinit,rega
+	arg mem_random_number,regb
+	call xor16
+	nbranch send_lmp_follow,master
+	branch send_lmp_tid
+
+send_lmp_inrand:
+	call generate_random_number
+	arg mem_plap,rega
+	call generate_kinit
+send_lmp_rand:	/* used by in_rand,au_rand,start_encrypt */
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_random_number,contr
+	call memcpy16
+	fetch 1,mem_conn_sm 
+	beq CONN_SM_AUTH_WAIT,send_lmp_request
+	beq CONN_SM_PAIRING_WAIT,send_lmp_request
+	branch send_lmp_tid
+
+send_lmp_aurand:
+	fetch 1,mem_pairing_auth
+	branch send_lmp_aurand_notpairing,blank
+	call check_localsm
+	call tid_initiate,true
+	ncall tid_reply,true
+	branch send_lmp_aurand_common
+send_lmp_aurand_notpairing:
+	call tid_initiate
+send_lmp_aurand_common:
+	call generate_random_number
+	branch send_lmp_rand
+
+send_lmp_sres:
+	arg mem_lap,rega
+	call function_e1
+	force 5,pdata
+	call msg_send_lmp
+	fetch 4,mem_input_store
+	istore 4,contw
+	arg mem_sres_tid,temp
+	call special_tid_store
+	call copy_aco
+	call check_localsm
+	branch send_lmp_sres_master,true
+	jam DONE_ENCRYP,mem_wait_encryption
+	fetch 1,mem_pairing_auth
+	rtn blank
+	jam LMP_AU_RAND,mem_lmo_opcode2
+send_lmp_sres_master:
+	fetch 1,mem_link_key_exists
+	rtn blank
+send_lmp_sres_startenc:
+	call check_localsm
+	nbranch send_lmp_sres_startenc_slave,true
+	fetch 1,mem_auth_enable
+	rtn blank
+	jam LMP_ENCRYPTION_MODE_REQ, mem_lmo_opcode2
+	rtn
+send_lmp_sres_startenc_slave:
+	rtnmark0 mark_slave_in_rand_accepted
+	set0 mark_slave_in_rand_accepted,mark
+	jam LMP_ENCRYPTION_MODE_REQ, mem_lmo_opcode2
+	rtn
+	
+
+	
+send_lmp_start_encryption:
+	call generate_random_number
+	call function_e3
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_random_number,contr
+	call memcpy16
+	branch send_lmp_tid
+
+send_lmp_stop_encryption_req:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_tid
+
+send_lmp_encryption_key_size_req:
+	force 2,pdata
+	call msg_send_lmp
+	force 16,pdata
+	istore 1,contw
+	store 1,mem_key_size
+	branch send_lmp_tid
+
+msg_send_lmp:
+/* FLOW is set high and LMP is indicated */
+	lshift3 pdata,pdata
+	or_into 0x07,pdata
+	store 1,mem_lmo_header_length
+	arg 17,loopcnt
+	arg mem_lmo_payload,contw
+	call clear_mem
+	arg mem_lmo_payload,contw
+	rtn
+
+send_lmpext:
+	and pdata,0x7f,rega
+	jam LMP_ESCAPE,mem_lmp_to_send
+	deposit queue
+	call msg_send_lmp
+	deposit rega
+	istore 1,contw
+	rtn
+
+send_lmp_follow:
+	fetch 1,mem_lmp_to_send
+	lshift pdata,pdata
+	fetcht 1,mem_state_map
+	isolate1 smap_lmptid,temp
+	setflag true,0,pdata
+	branch send_lmp_exit
+
+
+send_lmp_tid:
+	fetcht 1,mem_state_map
+	and_into 1,temp
+	branch send_lmp_end
+
+send_lmp_reply:
+	force 0,temp
+	branch send_lmp_end
+	
+send_lmp_request:
+	force 1,temp
+send_lmp_end:
+	fetch 1,mem_lmp_to_send
+	lshift pdata,pdata
+	setflag master,0,pdata
+	ixor temp,pdata
+send_lmp_exit:
+	store 1,mem_lmo_header_opcode
+	jam 0,mem_lmp_to_send
+	call lmo_fifo_process_lmo0empty
+	enable user
+	rtn
+
+//blank : not full 
+lmo_fifo_check:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	rtn
+
+lmo_fifo_process:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_4,mem_patch2b
+	fetch 1,mem_lmp_to_send
+	branch lmo_fifo_process_lmo0empty,blank
+	fetch 1,mem_lmo_opcode1
+	nrtn blank
+	branch lmo_fifo_process_lmo2to1
+lmo_fifo_process_lmo0empty:
+	fetch 1,mem_lmo_opcode1
+	branch lmo_fifo_process_lmo1_empty,blank
+	fetch 3,mem_lmo_opcode1
+	store 3,mem_lmp_to_send//1=>0
+	fetcht 1,mem_lmo_tid1
+	fetch 1,mem_state_map
+	set0 smap_lmptid,pdata
+	ior temp,pdata
+	store 1,mem_state_map
+	jam 0,mem_lmo_opcode1
+lmo_fifo_process_lmo2to1:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	fetch 4,mem_lmo_opcode2
+	store 4,mem_lmo_opcode1//2=>1
+	jam 0,mem_lmo_opcode2
+	rtn
+lmo_fifo_process_lmo1_empty:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	fetch 3,mem_lmo_opcode2
+	store 3,mem_lmp_to_send//2=>0	
+	fetcht 1,mem_lmo_tid2
+	fetch 1,mem_state_map
+	set0 smap_lmptid,pdata
+	ior temp,pdata
+	store 1,mem_state_map
+	jam 0,mem_lmo_opcode2
+	rtn
+	
+//input:temp
+special_tid_store:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_5,mem_patch2b
+	fetch 1,mem_state_map
+	copy pdata,regc
+	ifetch 1,temp
+	call pop_tid_follow
+	call send_lmp_follow
+	copy regc,pdata
+	store 1,mem_state_map
+	rtn
+	
+tid_reply:
+	fetcht 1,mem_state_map
+	set0 smap_lmptidinit,temp
+	storet 1,mem_state_map
+	rtn
+	
+tid_initiate:
+	fetcht 1,mem_state_map
+	set1 smap_lmptidinit,temp
+	storet 1,mem_state_map
+	rtn
+	
+	/* true if transaction from remote */
+tid_check:
+	nsetflag master,smap_lmptid,pdata //it is ok
+	fetcht 1,mem_state_map
+	ixor temp,pdata
+	isolate1 smap_lmptid,pdata
+	rtn	
+
+	/* set to remote */
+tid_set_reply:
+	fetch 1,mem_state_map
+	setflag master,smap_lmptid,pdata //it is ok
+	store 1,mem_state_map
+	rtn
+
+	/*rtn true when we lead lmp*/
+check_localsm:
+	fetch 1,mem_sp_localsm
+	compare 	LOCAL_STATEMACHINE,pdata,0x7f
+	rtn
+setlocalsm_master:
+	fetch 1,mem_sp_localsm
+	set1 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+setlocalsm_slave:
+	fetch 1,mem_sp_localsm
+	set0 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+check_localsm_master:
+	fetch 1,mem_sp_localsm
+	isolate1 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+	
+generate_random_number:
+	/* generating a 16 byte random number,storing in ape_random_number */
+	arg mem_random_number,contw
+generate_random:
+	force 16,loopcnt
+generate_random_another:
+generate_random_loop:
+	random pdata
+	istore 1,contw
+	loop generate_random_another
+	rtn
+
+generate_linkkey:
+	call function_e21
+	arg mem_link_key,rega
+	arg mem_input_store,regb
+	ifetch 8,rega					/* check if already got comb key */
+	fetcht 1,mem_state
+	nsetflag blank,state_combkey,temp
+	storet 1,mem_state
+	copy rega,contw
+	call  xor16
+	branch generate_linkkey_continue
+
+/*********************************/
+/*********lmp send*************/
+/********************************/
+
+process_conn_sm:
+	//nrtn master
+	set1 mark_ext_patch,mark
+	bpatch patch2b_6,mem_patch2b
+
+	call lmo_fifo_check
+	nrtn blank
+process_conn_sm_continue:
+	fetch 1,mem_conn_sm
+	rtn blank
+	/* state machine begins in standby */
+	//beq CONN_SM_STANDBY, host_create_conn_begin
+	//beq CONN_SM_WAIT_PAGE, host_create_conn_wait_page
+	beq CONN_SM_SEND_CONN_REQ, host_create_conn_send_conn_req
+	beq CONN_SM_WAIT_CONN_ACCEPT, host_create_conn_wait_accept
+	beq CONN_SM_SEND_FEATURES, host_create_conn_send_features
+	beq CONN_SM_WAIT_FEATURES_RES, host_create_conn_waiting
+	beq CONN_SM_SEND_SWITCH,host_create_conn_send_switch
+	beq CONN_SM_AUTH_PAIR, host_create_conn_auth_pair
+	beq CONN_SM_AUTH_PAIR_WAIT, host_create_conn_auth_pair_wait
+	beq CONN_SM_ENCRYPT, host_create_conn_encrypt
+	beq CONN_SM_ENCRYPT_WAIT, host_create_conn_encrypt_wait
+	beq CONN_SM_ENCRYPT_WAIT_CLEAR, host_create_conn_encrypt_wait_clear
+	beq CONN_SM_SEND_SETUP_COMPLETE, host_create_conn_send_setup_complete
+	beq CONN_SM_WAIT_SETUP_COMPLETE, host_create_conn_wait_setup_complete
+	beq CONN_SM_DETACH_DELAY,host_create_conn_master_detach
+	beq CONN_SM_SEND_VERSION, host_create_conn_send_version
+	beq CONN_SM_WAIT_VERSION, host_create_conn_waiting
+	beq CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION, host_creat_conn_wait_switch
+	beq CONN_SM_SEND_FEATURES_EXT,host_creat_conn_send_feat_ext
+	beq CONN_SM_WAIT_FEATURES_EXT,host_create_conn_waiting
+	beq CONN_SM_PAIRING,host_create_conn_pairing
+	beq CONN_SM_PAIRING_WAIT,host_create_conn_pairing_wait
+	beq CONN_SM_AUTH,host_create_conn_auth
+	beq CONN_SM_AUTH_WAIT,host_create_conn_auth_wait
+	beq CONN_SM_DONE,host_create_conn_done
+	beq CONN_SM_WAIT_DONE,host_create_conn_done_wait
+	jam CONN_SM_STANDBY,mem_conn_sm
+	/* sending error message to host */
+	rtn
+host_create_conn_done:
+	fetch 1,mem_lmp_conn_state		
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	rtnbit0 SENT_SETUP_COMPLETE
+	jam CONN_SM_STANDBY,mem_conn_sm
+	call host_conn_judge_encrypt
+	branch scheduler_start_upper_sm
+	
+host_conn_judge_encrypt:
+	fetch 1,mem_connection_options
+	rtnbit0 CONNECTION_ENCRYPT
+	jam CONN_SM_ENCRYPT_WAIT,mem_conn_sm
+	rtn
+
+host_create_conn_done_wait:
+	arg enpt_delay_timer,queue
+	call timer_check
+	nrtn blank
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn
+	
+host_create_conn_auth:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_AUTH,pdata
+	store 1,mem_connection_options
+	jam CONN_SM_AUTH_WAIT,mem_conn_sm
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	rtn 
+host_create_conn_auth_wait:
+	rtn
+host_create_conn_pairing:
+	fetch 1,mem_pincode_state
+	rtnne pincode_state_pincode_ready //wait for pincode
+	call host_auth
+	jam CONN_SM_PAIRING_WAIT,mem_conn_sm
+	rtn
+
+host_create_conn_pairing_wait:
+	rtn
+host_creat_conn_send_feat_ext:
+	jam CONN_SM_WAIT_FEATURES_EXT,mem_conn_sm
+	jam LMP_EXT_FEATURES_REQ,mem_lmo_opcode2
+	rtn
+host_create_conn_send_version:
+	jam CONN_SM_WAIT_VERSION,mem_conn_sm
+	jam LMP_VERSION_REQ,mem_lmo_opcode2
+	rtn 
+	
+host_creat_conn_wait_switch:
+	fetch 1,mem_switch_flag
+	rtneq SWITCH_FLAG_INIT
+	beq SWITCH_FLAG_ACCEPT,host_create_conn_switch_accept
+	arg switch_wait_timer,queue
+	call timer_check
+	nrtn blank
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	branch host_create_conn_switch
+host_create_conn_switch_accept:
+	rtn master
+	branch host_create_conn_auth_pair
+
+host_create_conn_send_features:
+	jam CONN_SM_WAIT_FEATURES_RES,mem_conn_sm
+	jam LMP_FEATURES_REQ,mem_lmo_opcode2
+	rtn 
+host_create_conn_send_switch:
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	jam CONN_SM_WAIT_CONN_ACCEPT,mem_conn_sm
+	setarg 0x1ff
+	store 2, mem_soft_timer
+	rtn
+host_create_conn_send_conn_req:
+	jam CONN_SM_WAIT_CONN_ACCEPT,mem_conn_sm
+	jam 0xff,mem_soft_timer
+	set0 mark_reconn_recieve_switch,mark
+	jam LMP_HOST_CONNECTION_REQ,mem_lmo_opcode2
+	branch init_lmp_reinit
+host_create_conn_wait_accept:
+	rtnmark1 mark_reconn_recieve_switch
+	fetch 2,mem_soft_timer
+	sub pdata,1,pdata
+	branch host_create_conn_resend,zero
+	store 2, mem_soft_timer
+	rtn
+host_create_conn_resend:
+	jam CONN_SM_SEND_SWITCH,mem_conn_sm
+	rtn
+host_create_conn_waiting:
+	/* we will exit waiting for connection request accepted, features res, or other commands to finish */
+	rtn 
+
+host_create_conn_switch:
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 SENT_SETUP_COMPLETE
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	jam CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION,mem_conn_sm
+	rtn 
+
+host_create_conn_send_setup_complete:
+	jam CONN_SM_WAIT_SETUP_COMPLETE,mem_conn_sm	
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn 
+
+host_create_conn_wait_setup_complete:
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	jam CONN_SM_STANDBY,mem_conn_sm	
+
+	rtn
+host_create_conn_wait_setup_complete_rtn:	
+	jam CONN_SM_AUTH_PAIR ,mem_conn_sm
+	rtn
+
+host_create_conn_master_detach:
+	fetch 1, mem_soft_timer
+	increase -1,pdata
+	branch host_create_conn_send_detach,blank//detach
+	store 1, mem_soft_timer
+	rtn 
+host_create_conn_send_detach:
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam LOCAL_HOST,mem_disconn_reason_send
+	jam 0,mem_conn_sm
+	rtn
+host_create_conn_auth_pair:
+	/* checking whether or not to do m/s switch */
+	fetch 1,mem_connection_options
+	bbit1 CONNECTION_SWITCH,host_create_conn_switch
+	bbit1 CONNECTION_AUTH,host_create_conn_auth_pair_true
+host_create_conn_sm_done:
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn
+host_create_conn_auth_pair_true:
+	fetch 1,mem_link_key_exists
+	branch host_create_conn_auth_pair_nokey,blank
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 SENT_SETUP_COMPLETE
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	fetch 4,mem_aurand_send_delay_time
+	arg 100,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nrtn positive
+	branch host_create_conn_auth
+
+
+
+host_create_conn_auth_pair_nokey:
+	jam CONN_SM_PAIRING,mem_conn_sm
+	jam 4,mem_pin_length
+	setarg 0x3030
+	store 2,mem_pin
+	istore 2,contw
+	jam pincode_state_pincode_ready,mem_pincode_state
+	branch host_create_conn_pairing
+
+host_create_conn_auth_pair_wait:
+	rtn
+host_create_conn_encrypt:
+	fetch 1,mem_connection_options
+	bbit1 CONNECTION_ENCRYPT,host_create_conn_encrypt_start
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn 
+
+host_create_conn_encrypt_start:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_ENCRYPT,pdata
+	store 1,mem_connection_options
+	jam LMP_ENCRYPTION_MODE_REQ,mem_lmo_opcode2  
+	rtn
+
+host_create_conn_encrypt_wait:
+	fetch 1, mem_wait_encryption
+	rtn blank
+	jam CONN_SM_STANDBY,mem_conn_sm
+	branch host_create_conn_encrypt_start 
+
+host_create_conn_encrypt_wait_clear:
+	jam CONN_SM_SEND_SETUP_COMPLETE,mem_conn_sm
+	rtn 
+
+host_auth:
+	fetch 1,mem_op
+	bbit1 op_inrand_req,remote_auth
+	call tid_initiate
+	jam LMP_IN_RAND,mem_lmo_opcode2
+	branch cmd_exit
+remote_auth:
+	fetch 1,mem_op
+	set0 op_inrand_req,pdata
+	store 1,mem_op
+	call lmp_accept_inrand
+	call tid_set_reply
+	branch cmd_exit
+
+pincode_reinit:
+	setarg 4
+	store 1,mem_pin_length
+	setarg 0x3030
+	istore 2,contw
+	istore 2,contw
+	rtn
+	
+
Index: Receive_Code/program/module.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/module.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/module.prog	(working copy)
@@ -0,0 +1,1502 @@
+
+ifdef COMPILE_MODULE
+
+
+
+
+module_init:
+	rtn wake
+	jam 0,mem_module_task
+	call le_modified_name
+	call adc_init_data
+	setarg module_process_idle
+	store 2,mem_cb_idle_process
+	setarg module_conn_process
+	store 2,mem_cb_bt_process
+	setarg module_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg module_conn_process
+	store 2,mem_cb_le_process
+	setarg module_lpm_lock
+	store 2,mem_cb_check_wakelock
+	setarg module_le_tx_update_data
+	store 2,mem_cb_update_notify_value
+	setarg module_le_tx_update_notify_continue
+	store 2,mem_cb_update_notify_continue
+	setarg module_hci_event_receive_spp_data
+	store 2,mem_cb_receive_spp_data
+	setarg module_le_receive_data
+	store 2,mem_cb_att_write
+	set1 mark_ext_patch,mark
+	bpatch patch2b_7,mem_patch2b
+	call module_lpm_uart_init
+	call module_gpio_init
+	call check_module_disabled
+	call eeprom_load_reconn_info
+	branch module_hci_event_enter_standby_mode
+
+
+module_lpm_uart_init:
+	fetch 4,mem_module_uart_rx_buffer
+	hstore 4,core_uart_rsaddr
+
+	fetch 4,mem_module_uart_tx_buffer
+	hstore 4,core_uart_tsaddr
+
+	hfetch 1,core_gpio_sel1
+	or_into 0x04,pdata
+	hstore 1,core_gpio_sel1
+	jam 0xff,mem_ucode_id_local
+	hjam 0x0,core_uart_ctrl
+
+	fetch 2,mem_module_uart_rx_buffer
+	hstore 2,core_uart_rrptr
+	fetch 2,mem_module_uart_tx_buffer
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+
+	hfetch 4,core_gpio_pu0
+	set1 7,pdata
+	hstore 4,core_gpio_pu0
+	
+	call hci_init_common
+	fetch 1,mem_module_flag
+	isolate1 MODULE_FLAG_UART_FLOW_CONTROL,pdata
+	hfetcht 1,core_uart_ctrl
+	setflag true,4,temp
+	hstoret 1,core_uart_ctrl
+	rtn
+	
+
+
+module_lpm_init:
+	call module_lpm_uart_init
+//	branch module_gpio_init
+	
+module_gpio_init:
+	//module state pin
+//	call ui_led_init	
+//	call app_led_start_blink
+	//module conn state pin
+	fetcht 1,mem_module_connect_state_gpio
+	call gpio_config_output
+	call module_set_conn_pin_low
+	
+	fetcht 1,mem_module_wake_up_gpio
+	branch gpio_config_input
+
+module_lpm_lock:
+	fetcht 1,mem_module_wake_up_gpio
+	call gpio_get_bit
+	nbranch app_put_lpm_wake_lock,true
+	branch app_get_lpm_wake_lock
+
+	
+/*************at dispatch*******************/
+module_process_idle:
+module_conn_process:
+module_app_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_0,mem_patch2c
+	call module_control_air_flow
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	branch module_process
+module_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_BB_CONNECTED,module_process_bb_conn
+	beq BT_EVT_BB_DISCONNECTED,module_process_bb_event_disconned
+	beq BT_EVT_RECONN_FAILED,module_process_reconn_fail
+	beq BT_EVT_SETUP_COMPLETE,module_process_setup_complete
+	beq BT_EVT_SPP_CONNECTED,module_process_spp_connected
+	beq BT_EVT_SPP_DISCONNECTED,module_process_spp_disconnected
+	beq BT_EVT_PINCODE_REQ,module_process_evt_pincode_req
+	beq BT_EVT_ENTER_SNIFF,module_process_enter_sniff
+	beq BT_EVT_EXIT_SNIFF,module_process_exit_sniff
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,module_process_page_time_out
+	beq BT_EVT_LE_CONNECTED,module_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,module_process_bb_even_le_disconn
+	beq BT_EVT_UNSNIFF_ACCEPT,module_process_unsniff_accept
+	beq BT_EVT_UNSNIFF_NOT_ACCEPT,module_process_unsniff_not_accept
+	beq BT_EVT_LE_PAIRING_FAIL,module_hci_event_le_pairing_fail
+	beq BT_EVT_LE_PAIRING_SUCCESS,module_hci_event_le_pairing_success
+	beq BT_EVT_LE_START_ENC,module_hci_event_start_enc
+	beq BT_EVT_LE_PAUSE_ENC,module_hci_event_pause_enc
+	beq BT_EVT_LE_TK_GENERATE,module_hci_event_le_tk
+	beq BT_EVT_BT_GKEY_GENERATE,module_hci_event_gkey_generate
+	beq BT_EVT_BT_GET_PASSKEY,module_hci_event_passkey_entry_mode
+	beq BT_EVT_BT_PAIRING_FAIL,module_hci_event_bt_pairing_fail	
+	beq BT_EVT_BT_PAIRING_SUCCESS,module_hci_event_bt_pairing_success
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,module_bb_event_timer
+	rtn
+
+	
+module_process_bb_event_disconned:
+	fetch 1,mem_flag_pairing_state
+	ncall module_hci_event_bt_pairing_fail,blank
+	call module_disconn_start
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_SPP_CONN
+	branch  module_spp_disconnected
+
+module_process_spp_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SPP_CONN,pdata
+	//set1 UI_STATE_SPP_NL_AUTO_DISCOVER,pdata
+	store 2,mem_ui_state_map
+	fetch 1,mem_module_spp_lpm_mult
+	store 1,mem_lpm_mult
+	call module_set_conn_pin_low
+	branch module_hci_event_spp_connect
+
+module_process_spp_disconnected:
+//	branch module_spp_disconnected
+module_spp_disconnected:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_SPP_CONN ,pdata
+	store 2,mem_ui_state_map
+	branch module_hci_event_spp_disconnect
+
+
+module_process_enter_sniff:
+
+module_sniff_param_check:
+	//fetch 1,mem_context
+	//rtnbit0 state_insniff
+	fetch 2,mem_context+coffset_tsniff
+	rshift pdata,pdata
+	fetcht 2,mem_sniff_param_interval
+	isub temp,null
+	nbranch module_sniff_param_check_unsniff,zero
+	branch app_lpm_mult_enable
+module_sniff_param_check_unsniff:
+	fetch 1,mem_module_task
+	rtnbit1 MOUDLE_TASK_UNSINFF
+	hfetch 2,core_uart_rxitems    //*
+	ncall module_set_unsniff_task_flag,blank    //*¼ÓƠâÁ½¾ä»°
+	branch app_bt_sniff_exit
+
+module_process_exit_sniff:
+	branch app_lpm_mult_disable
+ 	
+module_process_setup_complete:
+	branch module_conn_start
+	
+module_process_bb_even_le_disconn:
+	call module_disconn_start
+	branch module_hci_event_le_disconnect
+
+module_process_evt_pincode_req:
+	branch  app_bt_set_pincode
+	
+
+	
+module_process_unsniff_accept:
+	fetch 1,mem_module_task
+	bbit0 MOUDLE_TASK_UNSINFF,app_bt_enter_sniff
+	branch module_clear_unsniff_task_flag
+	
+module_process_unsniff_not_accept:
+	branch module_clear_unsniff_task_flag
+
+	
+module_process_le_conn:
+	call module_conn_start
+	fetch 1,mem_module_le_lpm_mult
+	store 1,mem_lpm_mult
+	branch module_hci_event_le_connect
+
+
+module_process_bb_conn:
+	jam 0,mem_flag_mode_ssp_pin
+	rtn
+
+module_process_page_time_out:
+module_process_reconn_fail:
+module_disconn_start:
+	call module_start_adv_discovery_by_command
+	branch module_set_conn_pin_high
+
+
+module_set_conn_pin_high:
+	fetcht 1,mem_module_connect_state_gpio
+	branch gpio_out_active
+
+module_conn_start:
+	call module_stop_adv_discovery
+	branch module_set_conn_pin_low
+	
+module_stop_adv_discovery:
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BT_BIT,pdata
+	call app_bt_stop_discovery,true
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BLE_BIT,pdata
+	call app_ble_stop_adv,true
+	rtn
+module_set_conn_pin_low:
+	fetcht 1,mem_module_connect_state_gpio
+	branch gpio_out_inactive
+
+module_process_with_credit:
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_DISABLE
+	branch rfcomm_send_uih_without_payload
+
+module_process:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_1,mem_patch2c
+	hfetch 1,core_uart_status
+	bbit1 uart_status_rx_fifo_empty,module_process_with_credit  //rx no data
+	call get_uart_rrptr
+	ifetch 1,contru
+	bne 0x01,module_hci_in_excp
+	hfetch 2,core_uart_rxitems
+	sub pdata,2,null
+	rtn positive
+	ifetch 1,contru
+	store 1,mem_uart_opcode
+	ifetcht 1,contru
+	copy contru,rega
+	storet 1,mem_uart_len
+	add temp,3,temp
+	hfetch 2,core_uart_rxitems
+	isub temp,temp
+	nrtn positive
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	call module_hci_cmd_control
+	fetch 1,mem_module_temp_nl_discard_packet
+	rtneq HCI_NOT_DISCARD_PACKET
+	branch module_hci_dicard_packet //discard this packet
+
+module_hci_in_excp:
+	call module_hci_event_invalid_packet
+	call wait_uarttx
+	branch module_hci_release_except
+
+
+module_hci_release_except:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_2,mem_patch2c
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	call get_uart_rrptr
+	ifetch 1,contru
+	sub pdata,0x01,null
+	ncall module_hci_dicard_bytes,zero
+	nbranch module_hci_release_except,zero
+	ifetch 1,contru
+	rtneq HCI_CMD_SPP_DATA_REQ
+	rtneq HCI_CMD_SET_CREDIT_GIVEN
+	increase -1,contru
+	call module_hci_dicard_bytes
+	branch module_hci_release_except
+
+module_hci_dicard_packet:
+	call get_uart_rrptr
+	increase 2,contru
+	ifetch 1,contru
+	iadd contru,contru
+module_hci_dicard_bytes:
+	branch uartd_rxdone
+	
+/*********************HCI CONTROL*********************/
+
+module_hci_cmd_control:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_3,mem_patch2c
+	fetch 1,mem_uart_opcode
+	beq HCI_CMD_SET_BT_ADDR_REQ,module_hci_cmd_set_bt_addr
+	beq HCI_CMD_SET_LE_ADDR_REQ,module_hci_cmd_set_le_addr
+	beq HCI_CMD_SET_VISIBILITY_REQ,module_hci_cmd_set_visibility	
+	beq HCI_CMD_SET_BT_NAME_REQ,module_hci_cmd_set_bt_name
+	beq HCI_CMD_SET_LE_NAME_REQ,module_hci_cmd_set_le_name
+	beq HCI_CMD_SPP_DATA_REQ,module_hci_cmd_receive_spp_data
+	beq HCI_CMD_LE_DATA_REQ,module_hci_cmd_receive_le_data
+	beq HCI_CMD_STATUS_IRQ,module_hci_cmd_inquire_status
+	beq HCI_CMD_SET_PAIRING_REQ,module_hci_cmd_set_pairing_mode
+	beq HCI_CMD_SET_PINCODE_REQ,module_hci_cmd_set_pincode	
+	beq HCI_CMD_SET_UARTCONTROL_REQ,module_hci_cmd_set_uart_control_mode
+	beq HCI_CMD_SET_UART_BAUD_REQ,module_hci_cmd_set_uart_baud
+	beq HCI_CMD_VERSION_REQ,module_hci_cmd_version_request
+	beq HCI_CMD_BT_DISCONNECT,module_hci_cmd_bt_disconnect
+	beq HCI_CMD_BLE_DISCONNECT,module_hci_cmd_ble_disconnect
+	beq HCI_CMD_SET_NVRAM_REQ,module_hci_cmd_set_nvram
+	beq HCI_CMD_CONFIRM_GKEY,module_hci_cmd_confirm_gkey
+	beq HCI_CMD_SET_CREDIT_GIVEN,module_hci_cmd_set_credit_given
+	beq HCI_CMD_AUTO_ADV_SCAN,module_hci_cmd_auto_adv
+	beq HCI_CMD_POWER_REQ,module_hci_cmd_power_request
+	beq HCI_CMD_POWER_SET,module_hci_cmd_power_set
+	beq HCI_CMD_PASSKEY_ENTRY,module_hci_cmd_passkey_entry
+	beq HCI_CMD_SET_GPIO,module_hci_cmd_set_gpio
+	beq HCI_CMD_READ_GPIO,module_hci_cmd_read_gpio
+	beq HCI_CMD_LE_SET_PAIRING,module_hci_cmd_le_set_pairing_mode
+	beq HCI_CMD_LE_SET_ADV_DATA,module_hci_cmd_le_set_adv_data
+	beq HCI_CMD_LE_SET_SCAN_DATA,module_hci_cmd_le_set_scan_data
+	beq HCI_CMD_LE_SEND_CONN_UPDATE_REQ,module_hci_cmd_le_send_conn_update_req
+	beq HCI_CMD_LE_START_PAIRING,module_hci_cmd_le_start_pairing
+	beq HCI_CMD_LE_CONFIRM_GKEY,module_hci_cmd_le_confirm_gkey
+	branch  module_hci_event_receive_invalid_cmd
+
+/*********************HCI COMMAND*********************/
+
+//command opcode 0x00
+module_hci_cmd_set_bt_addr:
+	fetch 1,mem_uart_len
+	bne 6,module_hci_event_receive_invalid_cmd
+	ifetch 6,contru
+	store 6,mem_lap
+	branch module_hci_event_receive_valid_cmd
+
+//command opcode 0x01
+module_hci_cmd_set_le_addr:
+	fetch 1,mem_uart_len
+	bne 6,module_hci_event_receive_invalid_cmd
+	ifetch 6,contru
+	store 6,mem_le_lap
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x02
+module_hci_cmd_set_visibility:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	copy rega,contru
+	call module_hci_event_receive_valid_cmd
+	ifetcht 1,contru
+	storet 1,mem_module_bluetooth_stauts_by_command
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BLE_CONNECTED
+	rtnbit1 UI_STATE_BT_CONNECTED
+module_start_adv_discovery_by_command:
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BT_BIT,pdata
+	nbranch moudle_start_adv_by_command,true
+	fetcht 1,mem_module_bluetooth_stauts_by_command
+	and temp,0x03,pdata
+	store 1,mem_scan_mode
+moudle_start_adv_by_command:
+	fetch 1,mem_module_state
+	isolate1 MOUDLE_STATE_BLE_BIT,pdata
+	nrtn true
+	fetcht 1,mem_module_bluetooth_stauts_by_command
+	isolate1 2,temp
+	branch app_ble_start_adv,true
+	branch app_ble_stop_adv
+
+//command opcode 0x03
+module_hci_cmd_set_bt_name:
+	fetch 1,mem_uart_len
+	sub pdata,32,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_local_name_length
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_local_name,contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x04
+module_hci_cmd_set_le_name:
+	fetch 1,mem_uart_len
+	sub pdata,0x13,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_le_name_len
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_name,contw
+	call uart_copy_rx_bytes_fast
+	call le_modified_name
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x05
+module_hci_cmd_receive_spp_data:
+	fetch 1,mem_ui_state_map
+	bbit0 UI_STATE_BT_SPP_CONN,module_hci_event_receive_invalid_cmd
+	call app_check_sniff
+	branch module_hci_cmd_spp_exut_sniff,true
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+//	call p_nl_clear_last_transmite_clock
+	fetch 1,mem_remote_credits
+	rtn blank
+	fetch 2,mem_nl_rx_len_all
+	bne 0,module_hci_cmd_pass_init_ng_rx_len_all
+	fetch 1,mem_uart_len
+	store 2,mem_nl_rx_len_all
+
+	copy rega,contru
+//	ifetch 2,contru
+//	store 2,mem_nl_rx_handle
+	copy contru,pdata
+	store 2,mem_nl_rx_data_src
+module_hci_cmd_pass_init_ng_rx_len_all:
+	call module_hci_cmd_get_current_packet_len_and_remain_len
+	branch spp_tx_rfcomm_packet
+module_hci_cmd_spp_exut_sniff:
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	branch module_exit_sniff
+
+module_hci_cmd_get_current_packet_len_and_remain_len:
+	call module_hci_cmd_get_current_patcket_len
+	fetch 2,mem_nl_rx_len_all
+	fetcht 2,mem_current_packet_length
+	isub temp,pdata
+	store 2,mem_nl_rx_len_all
+	rtn
+
+module_hci_cmd_get_current_patcket_len:
+	fetch 2,mem_nl_rx_len_all
+	arg DM_REFCOM_BUFF_LEN,temp
+	call not_greater_than
+	fetcht 2,mem_rfcomm_max_frame_size
+	call not_greater_than
+	fetcht 2,mem_pn_max_frame_size
+	call not_greater_than
+	store 2,mem_current_packet_length
+	rtn
+
+
+module_hci_command_tx_spp_tx_complete:
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	jam HCI_CMD_SPP_DATA_REQ,mem_uart_opcode
+	branch module_hci_event_receive_valid_cmd
+
+//command opcode 0x09
+module_hci_cmd_receive_le_data:
+	fetch 2,mem_ui_state_map
+	rtnbit0 UI_STATE_BLE_CONNECTED
+	
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet //if packet should not be discarded, set to "NL_HCI_NOT_DISCARD_PACKET"
+	fetch 1,mem_le_continue_flag
+	nrtn blank
+ 	fetch 2,mem_module_hci_notify_len
+ 	branch module_hci_cmd_gatt_notify_start_packet,blank
+ 	fetcht 2,mem_module_hci_notify_offset
+ 	isub temp,null
+	nrtn zero   //not finish sending yet.
+	set1 mark_ext_patch,mark
+	bpatch patch2c_4,mem_patch2c
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet //discard in special way.
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,regb
+	nbranch assert,positive //debug, wont be negative
+	nbranch module_hci_cmd_gatt_notify_seperate,zero
+	call module_hci_cmd_gatt_notify_clear_len
+	jam HCI_DISCARD_PACKET,mem_module_temp_nl_discard_packet //discard in special way.
+	branch module_set_le_tx_data_flag
+//	branch module_hci_event_receive_valid_cmd
+
+
+module_hci_cmd_gatt_notify_seperate:
+	fetch 1,mem_module_flag
+	rtnbit1 MODULE_FLAG_BLE_SEND_MTU23
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	fetch 2,mem_module_hci_notify_len
+	iadd contru,contru
+	copy contru,rega
+	setarg 0x0901
+	istore 2,contru
+	add regb,2,pdata
+	istore 1,contru
+	fetch 2,mem_module_hci_notify_att
+	istore 2,contru
+	copy rega,pdata
+	hstore 2,core_uart_rrptr
+module_hci_cmd_gatt_notify_clear_len:
+	setarg 0
+	store 2,mem_module_hci_notify_len//finish sending, discard this packet.
+	rtn
+	
+module_hci_cmd_gatt_notify_start_packet:
+	copy rega,contru
+	ifetch 2,contru // att handle	
+	store 2,mem_module_hci_notify_att
+	fetch 1,mem_uart_len  //length
+	increase -2,pdata
+
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	branch module_hci_event_receive_invalid_cmd,blank
+	store 2,mem_module_hci_notify_original_len
+
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_MTU23,module_hci_cmd_notify_start_packet_mtu23
+	
+	fetcht 2,mem_le_remote_mtu
+module_hci_cmd_gatt_notify_start_packet1:
+	fetch 2,mem_module_hci_notify_original_len	
+	call not_greater_than
+
+	store 2,mem_module_hci_notify_len
+	copy contru,pdata
+	store 2,mem_module_hci_notify_start
+	setarg 0
+	store 2,mem_module_hci_notify_offset
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+module_hci_cmd_notify_start_packet_mtu23:
+	arg 20,temp
+	branch module_hci_cmd_gatt_notify_start_packet1
+
+
+module_le_tx_update_data:
+	fetch 1,mem_le_notify_type
+	jam 0,mem_le_notify_type
+	nbranch module_le_send_md_notify,blank
+
+	fetch 2,mem_module_hci_notify_len
+	branch assert,blank
+	add pdata,3,temp   //1byte opcode,2byte handle
+	storet 2,mem_le_txpayload // L2CAP length
+	arg 20,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	store 2,mem_module_hci_notify_offset
+	//increase 7,pdata
+	//store 1,mem_le_txlen   //start packet baseband length
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,temp
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_MTU23,module_le_tx_no_continue
+	ncall module_le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_NOTIFICATION,mem_le_continue_type
+module_le_tx_no_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_5,mem_patch2c
+	arg 0x02,type  //LLIC:start
+	fetch 2,mem_module_hci_notify_att //att handle
+	store 2,mem_le_l2cap+1 //contw
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+module_le_send_att_notify_common:
+	//fetch 2,mem_module_hci_notify_offset // = 0
+	//iadd contru,contru
+	call uart_copy_rx_bytes_fast
+	fetch 1,mem_module_flag
+	bbit0 MODULE_FLAG_BLE_SEND_MTU23,module_le_send_not_fill_l2cap_len
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	call module_le_check_if_send_once_more
+	fetcht 1,mem_le_arq
+	fetch 1,mem_module_le_md_flag
+	branch module_le_send_non_l2cap_last,blank
+	nsetflag blank,md,temp	
+	storet 1,mem_le_arq
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	jam 1,mem_le_notify_type
+	fetcht 1,mem_le_arq
+	branch le_send_non_l2cap1
+
+module_le_send_non_l2cap_last:
+	call module_set_le_tx_data_flag
+	branch le_send_non_l2cap
+
+module_set_le_tx_data_flag:
+	fetch 1,mem_module_flag
+	set1 MODULE_FLAG_BLE_SEND_DATA,pdata
+	branch module_store_moule_flag
+	
+module_clear_le_tx_data_flag:
+	fetch 1,mem_module_flag
+	set0 MODULE_FLAG_BLE_SEND_DATA,pdata
+	branch module_store_moule_flag
+
+module_le_check_if_send_once_more:
+	jam 0,mem_module_le_md_flag
+	isub temp,null
+	rtn zero
+	nrtn positive
+	jam 1,mem_module_le_md_flag
+	rtn	
+
+module_le_send_att_insert_continue:
+	fetch 3,mem_le_xtype_fifo
+	nbranch module_le_send_att_insert_cont_next,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+2
+	rtn
+module_le_send_att_insert_cont_next:
+	call le_xtype_fifo_is_near_full
+	nbranch assert,blank
+	jam ATTOP_CONTINUE,mem_le_xtype_fifo+1
+	rtn
+
+
+module_le_tx_update_notify_continue:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_6,mem_patch2c
+	fetch 2,mem_module_hci_notify_len
+	branch assert,blank
+	fetcht 2,mem_module_hci_notify_offset
+	branch assert,blank
+	isub temp,pdata // current len
+	arg 27,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+	fetch 2,mem_module_hci_notify_offset
+	iadd contru,contru //start + offset
+	iadd loopcnt,pdata
+	store 2,mem_module_hci_notify_offset //offset += len;
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,temp // if(0 == offset - len){goto no_more_continue;}
+	ncall module_le_send_att_insert_continue,zero
+	jam LE_CONTINUE_TYPE_NOTIFICATION,mem_le_continue_type
+	arg mem_le_txpayload,contw
+	call uart_copy_rx_bytes_fast
+	arg 1,type   // LLID : continue
+module_le_send_not_fill_l2cap_len:
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	storet 1,mem_le_txlen
+	branch le_send_non_l2cap
+
+	
+module_le_send_md_notify:
+	fetch 2,mem_module_hci_notify_original_len
+	fetcht 2,mem_module_hci_notify_len
+	isub temp,pdata
+	arg 20,temp
+	call not_greater_than
+	copy pdata,loopcnt
+	add pdata,3,temp   //1byte opcode,2byte handle
+	storet 2,mem_le_txpayload // L2CAP length
+
+	fetcht 2,mem_module_hci_notify_len
+	iadd temp,pdata	
+	store 2,mem_module_hci_notify_len
+	
+	fetch 2,mem_module_hci_notify_start
+	copy pdata,contru
+	fetch 2,mem_module_hci_notify_offset
+	iadd contru,contru  
+	iadd loopcnt,pdata
+	store 2,mem_module_hci_notify_offset  
+	arg 0x02,type  //LLIC:start
+	fetch 2,mem_module_hci_notify_att //att handle
+	store 2,mem_le_l2cap+1 //contw
+	branch module_le_send_att_notify_common
+
+//command opcode 0x0b
+module_hci_cmd_inquire_status:
+	branch module_hci_event_status_res
+
+
+//command opcode 0x0c
+module_hci_cmd_set_pairing_mode:
+	copy rega,contru
+	ifetch 1,contru
+	beq PAIRING_PINCODE,module_hci_pairing_pincode_mode
+	beq PAIRING_JUSTWORK,module_hci_pairing_just_work_mode
+	beq PAIRING_PASSKEY,module_hci_pairing_passkey
+	beq PAIRING_CONFIRM,module_hci_pairing_numeric_comparison
+	branch module_hci_event_receive_invalid_cmd
+module_hci_pairing_pincode_mode:
+	call ssp_disable
+	jam 0,mem_ssp_enable
+	branch module_hci_event_receive_valid_cmd
+module_hci_pairing_just_work_mode:
+	setarg SSP_MODE_JUST_WORK_IO_CAP_DATA
+module_hci_sspairing_mode:	
+	store 3,mem_sp_iocap_local
+	store 1,mem_ssp_mode_flag
+	call ssp_enable
+	jam 1,mem_ssp_enable
+	branch module_hci_event_receive_valid_cmd
+module_hci_pairing_passkey:
+	setarg SSP_MODE_PASSKEY_IO_CAP_DATA
+	branch module_hci_sspairing_mode
+
+module_hci_pairing_numeric_comparison:
+	setarg SSP_MODE_SSP_PIN_IO_CAP_DATA
+	branch module_hci_sspairing_mode
+
+//command opcode 0x0d
+module_hci_cmd_set_pincode:
+	fetch 1,mem_uart_len
+	sub pdata,16,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	store 1,mem_pin_length
+	copy pdata,loopcnt
+	arg mem_pin,contw
+	call uart_copy_rx_bytes
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x0e
+module_hci_cmd_set_uart_control_mode:
+	copy rega,contru
+	ifetch 1,contru
+	hfetcht 1,core_uart_ctrl
+	nsetflag blank,4,temp
+	hstoret 1,core_uart_ctrl
+ 	branch module_hci_event_receive_valid_cmd
+
+ 	
+//command opcode 0x0f
+module_hci_cmd_set_uart_baud:
+	fetch 1,mem_uart_len
+	copy pdata,loopcnt
+	copy rega,contru
+	call string2dec_from_uart
+	setarg uart_clk
+	idiv temp
+	call wait_div_end
+	quotient pdata
+module_hci_cmd_set_uart_baud_ok:
+	store uart_baud_len,mem_baud
+	call module_hci_event_receive_valid_cmd
+	call wait_uarttx
+	branch uart_set_baud_by_mem
+
+
+//command opcode 0x10
+module_hci_cmd_version_request:
+	arg 2,rega
+	arg mem_soft_version_num,regb
+	arg 0,temp
+	branch module_hci_event_set_cmd
+module_hci_event_set_cmd_send_response:
+	store 2,mem_event_cmd_response_content
+	arg mem_event_cmd_response_content,regb
+	arg 0,temp
+	branch module_hci_event_set_cmd
+
+
+//command opcode 0x11
+module_hci_cmd_bt_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BT_CONNECTED,module_hci_event_receive_invalid_cmd
+module_hci_cmd_bt_disconnect_doing:
+	call module_hci_event_receive_valid_cmd
+	branch app_bt_disconnect
+
+	
+//command opcode 0x12
+module_hci_cmd_ble_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,module_hci_event_receive_invalid_cmd
+module_hci_cmd_ble_disconnect_doing:
+	call module_hci_event_receive_valid_cmd
+	branch app_ble_disconnect
+
+
+
+
+//command opcode 0x26
+module_hci_cmd_set_nvram:
+	fetch 1,mem_uart_len
+	copy pdata,loopcnt
+	copy rega,contru
+	fetch 2,mem_nv_data_ptr
+	icopy contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x28
+module_hci_cmd_confirm_gkey:
+	fetch 1,mem_ui_state_map
+	bbit0 UI_STATE_BT_CONNECTED,module_hci_event_receive_invalid_cmd	
+	ifetch 1,contru
+	fetcht 1,mem_flag_mode_ssp_pin
+	setflag blank,FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,temp
+	set1 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT ,temp
+	storet 1,mem_flag_mode_ssp_pin
+
+	call module_hci_event_receive_valid_cmd
+
+	fetch 1,mem_flag_mode_ssp_pin
+	bbit1 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT,module_hci_cmd_spp_number_comparison_result_is1
+	rtn
+
+dhkey_not_accept:
+	jam 0,mem_flag_mode_ssp_pin
+	jam BT_CMD_DHKEY_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+
+module_hci_cmd_spp_number_comparison_result_is1:
+	bbit1 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT,number_comparison_successed
+	branch dhkey_not_accept	
+
+
+//command opcode 0x29
+module_hci_cmd_set_credit_given:
+	fetch 1,mem_ui_state_map
+	rtnbit0 UI_STATE_BT_SPP_CONN
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_DISABLE
+	ifetch 1,contru
+	fetcht 1,mem_credit_given
+	iadd temp,temp
+	storet 1,mem_credit_given
+	rtn
+
+	
+//command opcode 0x2a
+module_hci_cmd_auto_adv:
+	arg 0x40,loopcnt
+	arg mem_le_adv_data_len,contw
+	call clear_mem
+	setarg 0
+	store 1,mem_regb
+	copy rega,contru
+module_hci_cmd_auto_adv_loop:
+	copy contru,pdata
+	store 2,mem_regc
+	call module_hci_cmd_auto_adv_adv_analys
+
+	fetch 1,mem_regb
+	fetcht 1,mem_temp
+	increase 1,temp
+	iadd temp,pdata
+	store 1,mem_regb
+
+	sub pdata,32,null
+	nbranch module_hci_cmd_auto_adv_store_scan,positive
+module_hci_cmd_auto_adv_store_adv:
+	fetcht 1,mem_le_adv_data_len
+	setarg mem_le_adv_data
+	iadd temp,pdata
+	store 2,mem_contw
+	fetcht 1,mem_temp
+	increase 1,temp
+	fetch 1,mem_le_adv_data_len
+	iadd temp,pdata
+	store 1,mem_le_adv_data_len
+	branch module_hci_cmd_auto_adv_store_common
+module_hci_cmd_auto_adv_store_scan:
+	fetcht 1,mem_le_scan_data_len
+	setarg mem_le_scan_data
+	iadd temp,pdata
+	store 2,mem_contw
+	fetcht 1,mem_temp
+	increase 1,temp
+	fetch 1,mem_le_scan_data_len
+	iadd temp,pdata
+	store 1,mem_le_scan_data_len
+module_hci_cmd_auto_adv_store_common:
+	fetch 2,mem_contw
+	copy pdata,contw
+	fetch 2,mem_regc
+	copy pdata,contru
+
+	copy temp,loopcnt
+	call uart_copy_rx_bytes_fast
+
+	fetch 1,mem_uart_len
+	fetcht 1,mem_regb
+	isub temp,null
+	nbranch  module_hci_cmd_auto_adv_loop,zero
+	jam 0x1f,mem_le_adv_data_len
+	jam 0x1f,mem_le_scan_data_len
+	branch module_hci_event_receive_valid_cmd
+
+//block of adv len in mem_temp
+module_hci_cmd_auto_adv_adv_analys:
+	ifetch 1,contru
+	store 1,mem_temp
+	ifetch 1,contru
+	store 1,mem_rega
+	rtn
+
+
+//command opcode 0x2b
+module_hci_cmd_power_request:
+	arg 0,temp
+	arg 2,rega
+	fetch 2,mem_module_vdd_quotient
+	store 2,mem_event_cmd_response_content
+	arg mem_event_cmd_response_content,regb
+	branch module_hci_event_set_cmd
+
+
+//command opcode 0x2c
+module_hci_cmd_power_set:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	ifetch 1,contru
+	store 1,mem_module_read_vdd_flag
+	setarg 0x00
+	store 2,mem_module_vdd_quotient
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x30
+module_hci_cmd_passkey_entry:
+	ifetch 4,contru
+	store 4,mem_pin
+	jam 4,mem_pin_length
+	jam 0,mem_authentication_passkey_times
+	call module_hci_event_receive_valid_cmd
+	branch authentication_passkey
+
+
+//command opcode 0x31
+module_hci_cmd_set_gpio:
+	fetch 1,mem_uart_len
+	bne 3,module_hci_event_receive_invalid_cmd
+	ifetch 1,contru
+	beq 0x00,module_set_gpio_input
+	beq 0x01,module_set_gpio_output
+	branch module_hci_event_receive_invalid_cmd
+module_set_gpio_input:
+	ifetcht 1,contru
+	ifetch 1,contru
+	nsetflag blank,7,temp
+	call gpio_config_input
+	branch module_hci_event_receive_valid_cmd
+
+module_set_gpio_output:
+	ifetcht 1,contru
+	call gpio_config_output0
+	ifetch 1,contru	
+	isolate1 0,pdata
+	call gpio_out_flag
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x32
+module_hci_cmd_read_gpio:
+	fetch 1,mem_uart_len
+	bne 1,module_hci_event_receive_invalid_cmd
+	ifetcht 1,contru
+	call gpio_get_bit
+	setarg 0x0
+	nsetflag true,0,pdata
+	arg 1,rega
+	branch module_hci_event_set_cmd_send_response
+
+
+//command opcode 0x33
+module_hci_cmd_le_set_pairing_mode:
+	copy rega,contru
+	ifetch 1,contru
+	store 1,mem_le_pairing_mode
+	arg 0,temp
+	isolate1  LE_PAIRING_MODE_SECURE_CONNECT_BIT,pdata
+	setflag true,0,temp 
+	storet 1,mem_le_secure_connect_enable
+	beq LE_PAIRING_MODE_NONE, module_le_set_no_pairing
+	beq LE_PAIRING_MODE_LAGACY_JUSTWORK,module_le_set_pairing_mode_lagacy_just_work
+	beq LE_PAIRING_MODE_LAGACY_PASSKEY,module_le_set_pairing_mode_lagacy_passkey
+ifdef SECURE_CONNECTION
+	beq LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK,module_le_set_pairing_mode_secure_justwork
+	beq LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC,module_le_set_pairing_mode_secure_numeric
+	beq LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY,module_le_set_pairing_mode_secure_passkey
+endif
+	jam 0,mem_le_secure_connect_enable
+	branch module_hci_event_receive_invalid_cmd
+		
+ifdef SECURE_CONNECTION	
+module_le_set_pairing_mode_secure_justwork:
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	branch module_le_set_noinputnooutput
+module_le_set_pairing_mode_secure_numeric:
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	jam FLAG_IOCAP_DISPLAYYESNO,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+module_le_set_pairing_mode_secure_passkey:	
+	jam FLAG_LE_BONDING_MITM_SECURE,mem_le_pres_auth
+	branch module_le_set_displayonly
+endif
+module_le_set_no_pairing:
+	jam FLAG_LE_NO_BONDING_NO_MITM,mem_le_pres_auth
+module_le_set_noinputnooutput:	
+	jam FLAG_IOCAP_NOINPUTNOOUTPUT,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+module_le_set_pairing_mode_lagacy_just_work:
+	jam FLAG_LE_BONDING_MITM,mem_le_pres_auth
+	branch module_le_set_noinputnooutput
+module_le_set_pairing_mode_lagacy_passkey:
+	jam FLAG_LE_BONDING_MITM,mem_le_pres_auth
+module_le_set_displayonly:	
+	jam FLAG_IOCAP_DISPLAYONLY,mem_le_pres_iocap
+	branch module_hci_event_receive_valid_cmd	
+
+	
+//command opcode 0x34
+module_hci_cmd_le_set_adv_data:
+	fetch 1,mem_uart_len
+	sub pdata,31,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_adv_data,contw
+	call uart_copy_rx_bytes_fast
+	branch module_hci_event_receive_valid_cmd
+	
+
+//command opcode 0x35
+module_hci_cmd_le_set_scan_data:
+	fetch 1,mem_uart_len
+	sub pdata,31,null
+	nbranch module_hci_event_receive_invalid_cmd,positive
+	copy pdata,loopcnt
+	copy rega,contru
+	arg mem_le_scan_data,contw
+	call uart_copy_rx_bytes_fast	
+	branch module_hci_event_receive_valid_cmd	
+
+	
+//command opcode 0x36
+module_hci_cmd_le_send_conn_update_req:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,module_hci_event_receive_invalid_cmd
+	fetch 1,mem_uart_len
+	bne 0x08,module_hci_event_receive_invalid_cmd
+	copy rega,contru
+	ifetch 8,contru
+	store 8,mem_le_interal_min
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	call  ui_ipc_send_cmd
+	branch module_hci_event_receive_valid_cmd
+
+
+//command opcode 0x38
+module_hci_cmd_le_start_pairing:
+	fetch 1,mem_le_pairing_mode
+	branch module_hci_event_receive_invalid_cmd,blank
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_NULL,module_hci_event_receive_invalid_cmd
+	fetch 1,mem_le_enc_state
+	bne FLAG_LE_ENC_NULL,module_hci_event_receive_invalid_cmd
+	call check_51cmd_le_smp_sec_req
+	branch module_hci_event_receive_valid_cmd	
+
+
+//command opcode 0x48
+module_hci_cmd_le_confirm_gkey:
+	ifetch 1,contru
+	beq 0x01,module_hci_cmd_le_confirm_gkey_fail
+	fetch 1,mem_le_secure_connect_state
+	beq LE_SC_STAT_SEND_PUBLIC_KEY,module_hci_cmd_le_confirm_gkey_ok
+	beq LE_SC_STAT_RECEIVE_DHKEY,module_hci_cmd_le_confirm_gkey_ok
+	beq LE_SC_STAT_WAIT_CONFIRM_GKEY,module_hci_cmd_le_confirm_gkey_ok
+	branch module_hci_event_receive_invalid_cmd		
+module_hci_cmd_le_confirm_gkey_ok:
+	jam FLAG_LE_SC_CONFRIM_GKEY_OK,mem_le_sc_confirm_gkey_flag
+	branch module_hci_event_receive_valid_cmd	
+	
+module_hci_cmd_le_confirm_gkey_fail:
+	call le_pairing_failed
+	branch module_hci_event_receive_valid_cmd	
+/*********************HCI EVENT*********************/
+
+module_hci_event_receive_invalid_cmd:
+	arg 1,temp
+	arg 0,rega
+	branch module_hci_event_set_cmd
+
+module_hci_event_receive_valid_cmd:
+	arg 0,temp
+	arg 0,rega
+	branch module_hci_event_set_cmd
+
+
+//event opcode 0x00
+module_hci_event_spp_connect:
+	jam  HCI_EVENT_SPP_CONN_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x02
+module_hci_event_le_connect:
+	jam  HCI_EVENT_LE_CONN_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x03
+module_hci_event_spp_disconnect:
+	jam  HCI_EVENT_SPP_DIS_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+	
+module_hci_event_le_disconnect:
+	jam  HCI_EVENT_LE_DIS_REP,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+
+
+
+//event opcode 0x06
+//input:
+//	temp: success 0; fail 1
+//	rega:Response Content length
+//	regb:Response Content address
+module_hci_event_set_cmd:
+	fetch 1,mem_uart_opcode
+	copy pdata,regc
+	jam  HCI_EVENT_CMD_RES,mem_uart_opcode
+	setarg 2
+	iadd rega,pdata
+	call module_hci_prepare_tx
+	copy regc,pdata
+	istore 1,contwu
+	istoret 1,contwu
+	copy rega,loopcnt
+	copy regb,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+
+//event opcode 0x07
+module_hci_event_receive_spp_data:
+//	call p_nl_clear_last_transmite_clock
+	jam HCI_EVENT_SPP_DATA_REP,mem_uart_opcode
+	fetch 1,mem_current_length
+	rtn blank
+	call module_hci_prepare_tx
+	fetch 1,mem_current_length
+	copy pdata,loopcnt
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+//event opcode 0x08
+module_hci_event_receive_le_data:
+	jam HCI_EVENT_LE_DATA_REP,mem_uart_opcode
+	fetch 1,mem_module_le_rx_data_len
+	icopy loopcnt
+	increase 2,pdata
+	call module_hci_prepare_tx
+	fetch 2,mem_module_le_rx_data_handle // Attribute handle
+	istore 2,contwu
+	fetch 2,mem_module_le_rx_data_address
+	icopy contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+//event opcode 0x09
+module_hci_event_enter_standby_mode:
+	jam HCI_EVENT_STANDBY_REP,mem_uart_opcode
+module_hci_event_enter_standby_mode_len0:
+	setarg 0
+	call module_hci_prepare_tx
+	branch uartd_send
+
+
+//event opcode 0x0a
+module_hci_event_status_res:
+	jam HCI_EVENT_STATUS_RES,mem_uart_opcode
+	setarg 1
+	call module_hci_prepare_tx
+	
+	call module_hci_read_bt_status
+	
+	fetch 2,mem_ui_state_map	
+	arg UI_STATE_BT_HID_CONN,queue
+	qisolate1 pdata
+	setflag true,3,temp
+
+	arg UI_STATE_BLE_CONNECTED,queue
+	qisolate1 pdata
+	setflag true,5,temp	
+	
+	fetch 1,mem_ui_state_map
+	arg UI_STATE_BT_SPP_CONN,queue
+	qisolate1 pdata
+	setflag true,4,temp	
+	
+	istoret 1,contwu
+	branch uartd_send
+
+//	temp: bit0 3.0 inquiry;bit1 3.0 scan;bit2 ble adv;
+
+module_hci_read_bt_status:
+	arg 0,temp
+	fetch 1,mem_scan_mode
+	arg inq_scan_mode,queue
+	qisolate1 pdata
+	setflag true,0,temp
+	arg page_scan_mode,queue
+	qisolate1 pdata
+	setflag true,1,temp	
+
+	fetch 1,mem_le_adv_enable
+	arg 0,queue
+	qisolate1 pdata
+	setflag true,2,temp	
+	rtn
+
+
+
+//event opcode 0x0d
+module_hci_event_store_device:
+	jam HCI_EVENT_NVRAM_REP,mem_uart_opcode
+	fetch 1,mem_nv_data_number
+	mul32 pdata,34,pdata
+	icopy loopcnt
+	call module_hci_prepare_tx
+	fetch 2,mem_nv_data_ptr
+	icopy contr
+	call uart_copy_tx_bytes_fast
+	branch uartd_send
+
+
+
+//event opcode 0x0e
+module_hci_event_gkey_generate:
+	jam HCI_EVENT_GKEY,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_gkey
+	istore 4,contwu
+	branch uartd_send
+
+//event opcode 0x0f
+module_hci_event_invalid_packet:
+	jam HCI_EVENT_INVALID_PACKET,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+
+//event opcode 0x10
+module_hci_event_passkey_entry_mode:
+	jam  HCI_EVENT_GET_PASSKEY,mem_uart_opcode
+	branch module_hci_event_enter_standby_mode_len0
+
+//event opcode 0x11
+module_hci_event_le_tk:
+	jam HCI_EVENT_LE_TK,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_le_tk
+	istore 4,contwu
+	branch uartd_send
+
+//event opcode 0x14
+module_hci_event_le_pairing_fail:
+	arg FLAG_BLE_PAIRING_FAIL,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_le_pairing_success:
+	arg FLAG_BLE_PAIRING_SUCCESS,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_bt_pairing_fail:
+	arg FLAG_BT_PAIRING_FAIL,rega
+	branch module_hci_event_pairing_completed
+module_hci_event_bt_pairing_success:
+	arg FLAG_BT_PAIRING_SUCCESS,rega
+module_hci_event_pairing_completed:
+	jam 0,mem_flag_mode_ssp_pin
+	jam HCI_EVENT_LE_PAIRING_STATE,mem_uart_opcode
+	setarg 2
+	call module_hci_prepare_tx
+	copy rega,pdata
+	istore 2,contwu
+	branch uartd_send
+
+//event opcode 0x15
+module_hci_event_pause_enc:
+	arg FLAG_EVENT_PAUSE_ENC,regc
+	branch module_hci_event_enc
+module_hci_event_start_enc:
+	arg FLAG_EVENT_START_ENC,regc
+module_hci_event_enc:
+	jam HCI_EVENT_LE_ENCRYPTION_STATE,mem_uart_opcode
+	setarg 1
+	call module_hci_prepare_tx
+	copy regc,pdata
+	istore 1,contwu
+	branch uartd_send
+
+//event opcode 0x1d
+module_hci_event_le_gkey:
+	jam HCI_EVENT_LE_GKEY,mem_uart_opcode
+	setarg 4
+	call module_hci_prepare_tx
+	fetch 4,mem_gkey
+	istore 4,contwu
+	branch uartd_send
+
+//****************************************************************//
+	//module_hci_prepare_tx
+	//function:write hci packet header
+	//input: pdata-----packet length  (1byte)
+	//input: mem_uart_opcode------opcode (1byte)
+	//output:contwu --- pointer to packet payload
+	//use reg: contwu,pdata
+//****************************************************************//
+	
+module_hci_prepare_tx:
+	jam 0x02,mem_uart_cmd
+	store 1,mem_uart_len
+	storet 8,mem_temp
+	set1 mark_ext_patch,mark
+	bpatch patch2c_7,mem_patch2c
+	call module_set_mcu_wake_pin_high_delay
+	fetcht 8,mem_temp
+	call uartd_prepare_tx
+	fetch 3,mem_uart_cmd
+	istore 3,contwu
+	rtn
+
+
+
+module_set_mcu_wake_pin_high_delay:
+	call module_check_mcu_wake_pin_high
+	rtn true
+module_set_mcu_wake_pin_h_delay:
+	call module_set_mcu_wake_pin_high
+	fetch 4,mem_module_mcu_wake_delay_us
+	rshift2 pdata,pdata
+	rtn blank
+	branch delay
+module_set_mcu_wake_pin_high:
+	//call ice_break
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_out_active
+module_check_mcu_wake_pin_high:
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_check_active
+module_set_mcu_wake_pin_low:
+	fetcht 1,mem_module_mcu_wake_pin
+	branch gpio_out_inactive
+
+
+delay:
+	increase -1,pdata
+	nbranch delay,blank
+	rtn
+
+
+/*********************hci command end*********************/
+
+/*********************hci ble receive data start*********************/
+
+//rega is le rx data address
+//regb is le rx data length
+//mem_le_att_handle is write handle
+module_le_receive_data:
+	copy rega,pdata
+	store 2,mem_module_le_rx_data_address
+	copy regb,pdata
+	store 1,mem_module_le_rx_data_len
+	fetch 2,mem_le_att_handle
+	fetcht 2,mem_module_data_write_handle
+	isub temp,null
+	branch module_le_receive_data_ok,zero
+	fetcht 2,mem_module_data_write_handle2
+	isub temp,null
+	nrtn zero
+module_le_receive_data_ok:	
+	store 2,mem_module_le_rx_data_handle
+	branch module_set_le_rx_data_flag
+	
+
+module_le_transmit:
+	fetch 1,mem_module_flag
+	bbit1 MODULE_FLAG_BLE_SEND_DATA,module_hci_event_send_le_data
+module_le_transmit1:
+	fetch 1,mem_module_flag
+	rtnbit0 MODULE_FLAG_BLE_RECEIVED_DATA	//not received le data form master
+	call module_hci_event_receive_le_data
+	branch module_clear_le_rx_data_flag
+
+module_hci_event_send_le_data:
+	jam HCI_CMD_LE_DATA_REQ,mem_uart_opcode
+	call module_hci_event_receive_valid_cmd
+	call module_clear_le_tx_data_flag
+	branch module_le_transmit1
+
+
+module_set_le_rx_data_flag:
+	fetch 1,mem_module_flag
+	set1 MODULE_FLAG_BLE_RECEIVED_DATA,pdata
+module_store_moule_flag:
+	store 1,mem_module_flag
+	rtn
+
+module_clear_le_rx_data_flag:
+	fetch 1,mem_module_flag
+	set0 MODULE_FLAG_BLE_RECEIVED_DATA,pdata
+	branch module_store_moule_flag
+
+
+/*********************hci ble receive data end*********************/
+
+module_exit_sniff:
+	fetch 1,mem_module_task
+	rtnbit1 MOUDLE_TASK_UNSINFF
+	call module_set_unsniff_task_flag	
+	branch app_bt_sniff_exit
+
+
+
+
+module_bb_event_timer:
+	storet 1,mem_app_evt_timer_count
+module_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	set1 mark_ext_patch,mark
+	bpatch patch2d_0,mem_patch2d
+	call module_read_vdd_timer
+	branch module_bb_event_100ms_loop
+
+module_read_vdd_timer:
+	fetch 1,mem_module_read_vdd_flag
+	rtn blank
+	fetch 1,mem_module_read_vdd_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_module_read_vdd_count
+	nrtn blank
+	jam FLAG_MODULE_READ_VDD_COUNT,mem_module_read_vdd_count
+	call adc_set_mode
+	call vdd_calculate_by_mode
+	div pdata,0x64
+	call wait_div_end
+	quotient pdata
+	remainder temp
+	store 1,mem_module_vdd_quotient
+	storet 1,mem_module_vdd_remainder
+	rtn	
+	
+
+
+module_set_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set1 MOUDLE_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+module_clear_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set0 MOUDLE_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+module_control_air_flow:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_1,mem_patch2d
+	call check_uart_tx_buff
+	branch app_l2cap_flow_control_enable,positive
+	branch app_l2cap_flow_control_disable
+
+
+
+/*************at end*******************/
+		
+else
+module_init:
+module_process_idle:
+module_conn_process:
+module_process_bb_event:
+module_lpm_init:
+module_init_static_string:
+	branch assert
+endif
Index: Receive_Code/program/mouse.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/mouse.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/mouse.prog	(working copy)
@@ -0,0 +1,968 @@
+
+ifdef COMPILE_MOUSE
+mouse_init:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_2,mem_patch2d
+	setarg le_mouse
+	store 2,mem_cb_le_process
+	setarg mouse_send_process
+	store 2,mem_cb_bt_process
+	setarg mouse_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg mouse_priority_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg mouse_idle
+	store 2,mem_cb_idle_process
+	setarg mouse_le_notify_update_data
+	store 2,mem_cb_update_notify_value
+	jam 0,mem_sp_flag
+	jam 0,mem_master_sp_flag
+	set1 mark_ext_patch,mark
+	bpatch patch2d_3,mem_patch2d
+	call mouse_init_common
+	rtn wake
+	call mouse_init_environment
+	call mouse_dpi_init
+	setarg mouse_before_hibernate
+	store 2,mem_cb_before_hibernate
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch mouse_check_reconn_target
+
+mouse_init_environment:
+	call app_initflag_check
+	branch mouse_load_eeprom_param,zero
+	call eeprom_store_le_local_addr
+	call eeprom_store_mouse_dpi
+	branch app_initflag_store
+mouse_load_eeprom_param:
+	call eeprom_load_reconn_info
+	call eeprom_load_le_loacal_addr
+	branch eeprom_load_mouse_dpi
+
+mouse_dpi_init:
+	jam DPI_BUTTON_STATE_UP,mem_mouse_dpi_button_state
+	branch mouse_modified_dpi
+
+mouse_idle:
+	call ui_check_paring_button
+	call mouse_check_dpi
+	branch mouse_wheel_check
+
+mouse_check_dpi:
+	fetcht 1,mem_dpi_button_gpio
+	call gpio_get_bit
+	nbranch mouse_dpi_up,true
+mouse_dpi_down:
+	fetch 1,mem_mouse_dpi_button_state
+	rtneq DPI_BUTTON_STATE_DOWN
+	jam DPI_BUTTON_STATE_DOWN,mem_mouse_dpi_button_state
+	rtn
+mouse_dpi_up:
+	fetch 1,mem_mouse_dpi_button_state
+	rtneq DPI_BUTTON_STATE_UP
+	jam DPI_BUTTON_STATE_UP,mem_mouse_dpi_button_state
+	fetch 1,mem_mouse_dpi
+	increase 1,pdata
+	and pdata,0x03,pdata
+	store 1,mem_mouse_dpi
+	branch mouse_modified_dpi
+mouse_modified_dpi:
+	setarg MOUSE_DPI_ADDRESS
+	call twspi_read
+	and pdata,0xfc,temp
+	fetch 1,mem_mouse_dpi
+	iadd temp,pdata
+	lshift8 pdata,pdata
+	add pdata,MOUSE_DPI_ADDRESS,pdata
+	call twspi_write
+	branch eeprom_store_mouse_dpi
+
+mouse_init_common:
+	call mouse_init_sunt
+	call mouse_gpio_init
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_QDECODER,pdata
+	hstore 2,core_clkoff
+	rtn
+	
+mouse_gpio_init:
+	rtn wake
+	call lpm_disable_exen_output
+	fetcht 1,mem_mwhee_a_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_mwhee_b_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_lbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_rbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_mbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_sbutton1_gpio
+	call gpio_config_input
+	fetcht 1,mem_sbutton2_gpio
+	call gpio_config_input
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_dpi_button_gpio
+	branch gpio_config_input
+
+	
+mouse_before_hibernate:
+	setarg 0xbc05
+	call twspi_write
+	jam 1,mem_lpm_current_mult
+
+mouse_process_lpm_before:
+	call mouse_wheel_check
+	arg 25,temp					// set sclk high
+	call gpio_config_output
+	hjam 0,core_gpio_sel1
+	fetcht 1,mem_mwhee_a_data_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_mwhee_b_data_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_lbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_rbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_mbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_sbutton1_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_sbutton2_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_set_wake
+	fetch 1,mem_lpm_current_mult
+	nrtn blank					// 7.5ms, no gpio wakeup
+	branch gpio_clr_wake
+	
+mouse_wheel_check:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_4,mem_patch2d
+	call mouse_t_wheel_scan
+	call mouse_wheel_scan
+	fetch 1,mem_wheel_tb_new_pinlevel
+	fetcht 1,mem_wheel_tb_old_pinlevel
+	store 1,mem_wheel_tb_old_pinlevel
+	isub temp,null
+	nbranch app_lpm_wake_auto_lock,zero
+	fetch 1,mem_mwheel_b_new_pinlevel
+	fetcht 1,mem_mwheel_b_old_pinlevel
+	store 1,mem_mwheel_b_old_pinlevel
+	isub temp,null
+	nbranch app_lpm_wake_auto_lock,zero
+	rtn
+mouse_t_wheel_scan:
+	arg 0,rega
+	fetcht 1,mem_whee_ta_data_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_whee_tb_data_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	copy rega,pdata
+	store 1,mem_wheel_tb_new_pinlevel
+	beq 0x01,p_mouse_t_wheel_scan_judge1
+	beq 0x02,p_mouse_t_wheel_scan_judge2
+	fetch 1,mem_wheel_tog
+	bbit1 7,p_mouse_t_wheel_scan_judge3
+	rtn
+
+p_mouse_t_wheel_scan_judge1:
+	fetch 1,mem_wheel_tb_old_pinlevel
+	beq 0,p_mouse_t_wheel_scan_judge11
+	beq 3,p_mouse_t_wheel_scan_judge12
+	rtn
+p_mouse_t_wheel_scan_judge2:
+	fetch 1,mem_wheel_tb_old_pinlevel
+	beq 0,p_mouse_t_wheel_scan_judge21
+	beq 3,p_mouse_t_wheel_scan_judge22
+	rtn
+p_mouse_t_wheel_scan_judge11:
+	jam 0x82,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge12:
+	jam 0x81,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge21:
+	jam 0x80,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge22:
+	jam 0x83,mem_wheel_tog
+	rtn
+p_mouse_t_wheel_scan_judge3:
+	fetch 1,mem_wheel_tog
+	set0 7,pdata
+	store 1,mem_wheel_tog
+	fetch 1,mem_wheel_tog
+	beq 0,p_mouse_t_wheel_scan_judge30
+	beq 1,p_mouse_t_wheel_scan_judge31
+	beq 2,p_mouse_t_wheel_scan_judge32
+	beq 3,p_mouse_t_wheel_scan_judge33
+	rtn
+p_mouse_t_wheel_scan_judge30:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 3,p_mouse_wheel_t_forward
+	rtn
+p_mouse_t_wheel_scan_judge31:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 0,p_mouse_wheel_t_forward
+	rtn
+p_mouse_t_wheel_scan_judge32:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 3,p_mouse_wheel_t_back
+	rtn
+p_mouse_t_wheel_scan_judge33:
+	fetch 1,mem_wheel_tb_new_pinlevel
+	beq 0,p_mouse_wheel_t_back
+	rtn
+p_mouse_wheel_t_forward:
+	fetch 1,mem_mouse_tz_data_count1
+	increase 1,pdata
+	store 1,mem_mouse_tz_data_count1
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_tz_data_count1
+	fetch 1,mem_mouse_tz_data
+	increase 1,pdata
+	store 1,mem_mouse_tz_data
+	rtn
+p_mouse_wheel_t_back:
+	fetch 1,mem_mouse_tz_data_count
+	increase 1,pdata
+	store 1,mem_mouse_tz_data_count
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_tz_data_count
+	fetch 1,mem_mouse_tz_data
+	increase -1,pdata
+	store 1,mem_mouse_tz_data
+	rtn
+
+
+mouse_wheel_scan:
+	arg 0,rega
+	fetcht 1,mem_mwhee_a_data_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_mwhee_b_data_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	copy rega,pdata
+	store 1,mem_mwheel_b_new_pinlevel
+	beq 0x01,mouse_wheel_scan_judge1
+	beq 0x02,mouse_wheel_scan_judge2
+	fetch 1,mem_mwheel_tog
+	bbit1 7,mouse_wheel_scan_judge3
+	rtn
+
+mouse_wheel_scan_judge1:
+	fetch 1,mem_mwheel_b_old_pinlevel
+	beq 0,mouse_wheel_scan_judge11
+	beq 3,mouse_wheel_scan_judge12
+	rtn
+mouse_wheel_scan_judge2:
+	fetch 1,mem_mwheel_b_old_pinlevel
+	beq 0,mouse_wheel_scan_judge21
+	beq 3,mouse_wheel_scan_judge22
+	rtn
+mouse_wheel_scan_judge11:
+	jam 0x82,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge12:
+	jam 0x81,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge21:
+	jam 0x80,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge22:
+	jam 0x83,mem_mwheel_tog
+	rtn
+mouse_wheel_scan_judge3:
+	fetch 1,mem_mwheel_tog
+	set0 7,pdata
+	store 1,mem_mwheel_tog
+	fetch 1,mem_mwheel_tog
+	beq 0,mouse_wheel_scan_judge30
+	beq 1,mouse_wheel_scan_judge31
+	beq 2,mouse_wheel_scan_judge32
+	beq 3,mouse_wheel_scan_judge33
+	rtn
+mouse_wheel_scan_judge30:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 3,mouse_wheel_forward
+	rtn
+mouse_wheel_scan_judge31:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 0,mouse_wheel_forward
+	rtn
+mouse_wheel_scan_judge32:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 3,mouse_wheel_back
+	rtn
+mouse_wheel_scan_judge33:
+	fetch 1,mem_mwheel_b_new_pinlevel
+	beq 0,mouse_wheel_back
+	rtn
+mouse_wheel_forward:
+	fetch 1,mem_mouse_z_data_count1
+	increase 1,pdata
+	store 1,mem_mouse_z_data_count1
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_z_data_count1
+	fetch 1,mem_mouse_z_data
+	increase 1,pdata
+	store 1,mem_mouse_z_data
+	rtn
+mouse_wheel_back:
+	fetch 1,mem_mouse_z_data_count
+	increase 1,pdata
+	store 1,mem_mouse_z_data_count
+	sub pdata,1,null
+	rtn positive
+	jam 0,mem_mouse_z_data_count
+	fetch 1,mem_mouse_z_data
+	increase -1,pdata
+	store 1,mem_mouse_z_data
+	rtn
+	
+
+le_mouse_bb_event_write_request:
+	call app_ble_store_reconn_info
+	jam MOUSE_MODE_STATE_BLE,mem_mouse_mode_state
+	call app_lpm_mult_enable
+le_mouse_bb_event_enc_info:
+	branch app_ble_start_write
+
+	
+mouse_hid_connected:
+	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	rtn
+	
+mouse_send_process:
+	fetch 1,mem_app_handshake_flag
+	rtn blank
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	call mouse_motion
+	nrtn user
+	call mouse_no_data_timer_init
+mouse_send_data:
+	arg 9,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	fetch 7,mem_mouse_key
+	istore 7,contw
+	rtn
+bt_send_empty_data:
+	setarg 0
+	store 6,mem_mouse_x
+	store 1,mem_mouse_tz
+	branch mouse_send_data
+p_le_send_empty_data:
+	setarg 0
+	store 6,mem_mouse_x
+	store 1,mem_mouse_tz
+	branch mouse_fill_data_le
+
+mouse_no_data_timer_init:
+	fetch 2,mem_mouse_no_data_timeout
+	store 2,mem_mouse_no_data_timer
+	rtn
+
+	
+mouse_le_notify_update_data:
+	fetcht 2, mem_le_notify_handle
+	call le_att_get_handle_ptr 
+	ifetch 1,contr
+	store 1,mem_le_notify_len
+	arg mem_le_l2cap,contw
+	increase 1,contw
+	fetcht 2,mem_le_notify_handle
+	istoret 2,contw
+	call le_att_get_handle_ptr 
+	ifetch 1,contr
+	icopy loopcnt
+	call memcpy
+	fetcht 1,mem_le_notify_len
+	increase 7,temp
+	branch le_send_packet
+
+	
+mouse_fill_data_le:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_5,mem_patch2d
+	fetcht 2, mem_le_notify_handle
+	call le_att_get_handle_ptr
+	add contr,1,contw
+mouse_fill_data:
+	fetch 7,mem_mouse_key
+	istore 7,contw
+	rtn
+
+mouse_motion:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_6,mem_patch2d
+	disable user
+	setarg 0
+	store 6,mem_mouse_x
+	call sensor_motion
+	call mouse_sensor_sdio_low
+	call mouse_zwheel
+	call mouse_t_zwheel
+	branch mouse_key
+	
+sensor_motion:
+	fetch 1,mem_mouse_move_flag
+	call mouse_read_sensor_common,blank
+	jam 1,mem_mouse_move_flag
+	disable user
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_get_bit
+	nrtn true
+	setarg 0
+	call twspi_read
+	//bne P3065_ID,twspi_reset
+	setarg 2
+	call twspi_read
+	rtnbit0 7
+	setarg 3
+	call twspi_read
+	call extsign
+	store 2,mem_mouse_x
+	setarg 4
+	call twspi_read
+	call extsign
+	sub pdata,0,pdata
+	store 2,mem_mouse_y
+	fetch 4,mem_mouse_x
+	enable user
+	rtn
+
+mouse_read_sensor3610_data:
+	call spi_ncs_enable
+	call mouse_read_sensor_common
+	arg 5,pdata
+	call twspi_read
+	store 1,mem_mouse_xy_h
+	arg 7,pdata
+	call twspi_read
+	store 1,mem_sensor_shutter_hi
+	arg 8,pdata
+	call twspi_read
+	store 1,mem_sensor_shutter_lo
+	branch spi_ncs_disable
+
+
+mouse_3610_smart_enable:
+	fetch 1,mem_sensor_shutter_hi
+	rtnne 0
+	fetch 1,mem_sensor_shutter_lo
+	sub pdata,45,null
+	rtn positive
+	jam 0,mem_sensor_smart_flag
+	setarg 0xba41
+	call sensor_write
+	setarg 0x0032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+mouse_3610_smart_disable:
+	fetch 1,mem_sensor_shutter_hi
+	rtnne 0
+	fetch 1,mem_sensor_shutter_lo
+	sub pdata,45,null
+	nrtn positive
+	jam 1,mem_sensor_smart_flag
+	setarg 0xba41
+	call sensor_write
+	setarg 0x8032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+
+
+
+mouse_read_sensor_common:
+	arg 3,pdata
+	call twspi_read
+	store 2,mem_mouse_x
+	arg 4,pdata
+	call twspi_read
+	store 2,mem_mouse_y
+	rtn
+
+mouse_zwheel:
+	fetch 1,mem_mouse_z_data
+	rtn blank	
+	store 1,mem_mouse_z
+	jam 0,mem_mouse_z_data
+	enable user
+	rtn
+mouse_t_zwheel:
+	fetch 1,mem_mouse_tz_data
+	rtn blank	
+	store 1,mem_mouse_tz
+	jam 0,mem_mouse_tz_data
+	enable user
+	rtn
+mouse_check_key_gpio:
+	arg 0,rega
+	fetcht 1,mem_lbutton_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_rbutton_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	fetcht 1,mem_mbutton_gpio
+	call gpio_get_bit
+	setflag true,2,rega
+	fetcht 1,mem_sbutton1_gpio
+	call gpio_get_bit
+	setflag true,3,rega
+	fetcht 1,mem_sbutton2_gpio
+	call gpio_get_bit
+	setflag true,4,rega
+	copy rega,pdata
+	rtn
+mouse_key:
+	call mouse_check_key_gpio
+	fetcht 1,mem_mouse_key
+	store 1,mem_mouse_key	
+	ixor temp,pdata
+	sub pdata,0,null
+	rtn zero
+	enable user
+	rtn
+	
+
+
+	/* sdio high will cost extra 9mA */
+mouse_sensor_sdio_low:
+	arg 26,temp
+	call gpio_get_bit
+	rtn true
+	setarg 0x0a
+	call twspi_read
+	nop 1000
+	branch mouse_sensor_sdio_low
+
+mouse_init_sunt:
+	call spid_init
+	rtn wake
+mouse_init_p3204:	
+	setarg 0
+	call twspi_read
+	store 1,mem_sensor_id
+	beq P3204_ID,mouse_init_p3204_cont
+	//beq P3610_ID,mouse_init_p3610
+	beq P3065_ID,mouse_init_p3204_cont
+	call twspi_reset
+	nop 1000
+	branch mouse_init_p3204
+mouse_init_p3204_cont:
+	setarg 0x8006
+	call twspi_write
+	nop 1000
+	rtn
+
+mouse_init_sensor_reset:
+	fetcht 1,mem_sensor_reset_gpio
+	call gpio_out_active
+	call delay_10ms
+	fetcht 1,mem_sensor_reset_gpio
+	call gpio_out_inactive
+	branch delay_10ms
+
+mouse_init_p3610:
+	setarg 0xba41
+	call sensor_write
+	setarg 0x0d11
+	call sensor_write
+	setarg 0x041b
+	call sensor_write
+	setarg 0x041c
+	call sensor_write
+	setarg 0x0f1d
+	call sensor_write
+	setarg 0x0032
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+	
+	
+//input-rega
+set_sensor_reg:
+	setarg 0xba41
+	call sensor_write
+	nop 4000
+	setarg 0xff7f
+	call sensor_write
+	copy rega,pdata
+	call sensor_write
+	setarg 0x007f
+	call sensor_write
+	setarg 0xb541
+	branch sensor_write
+
+extsign:
+	rtnbit0 7
+	arg 0xff00,temp
+	ior temp,pdata
+	rtn
+
+extsign_bit3:
+	rtnbit0 3
+	arg 0xf0,temp
+	ior temp,pdata
+	rtn
+
+le_mouse:
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	fetch 1,mem_mouse_le_notify_handle
+	store 1,mem_le_notify_handle
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	rtnbit0 0
+	fetch 1,mem_le_switch_send_data
+	rtnbit0 0
+	call mouse_motion
+	nrtn user
+	call mouse_no_data_timer_init
+	fetch 1,mem_mouse_le_notify_handle
+	store 1,mem_le_notify_handle
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch mouse_fill_data_le
+
+mouse_priority_bb_event:	
+	copy regc,pdata
+	beq BT_EVT_LE_CONNECTED,le_mouse_bb_event_connected
+	beq BT_EVT_BB_CONNECTED,mouse_stop_discovery
+	beq BT_EVT_LE_DISCONNECTED,mouse_bb_disconnected
+	beq BT_EVT_BB_DISCONNECTED,mouse_bb_disconnected
+	beq BT_EVT_SETUP_COMPLETE,mouse_bt_event_setup_complete
+	beq BT_EVT_BUTTON_LONG_PRESSED,mouse_bb_event_discovery_btn
+	beq BT_EVT_HID_HANDSHAKE,mouse_bt_hid_handshake
+	beq BT_EVT_HID_CONNECTED,mouse_bt_hid_connected
+	beq BT_EVT_LE_WRITE_REQUEST,le_mouse_bb_event_write_request
+	beq BT_EVT_LE_ENC_INFO,le_mouse_bb_event_enc_info
+	beq BT_EVT_RECONN_FAILED,mouse_bb_event_reconn_failed
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,mouse_bb_event_reconn_failed
+	beq BT_EVT_PINCODE_REQ,mouse_bb_event_pincode
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,mouse_bb_event_timer
+	rtn
+
+le_mouse_bb_event_connected:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set0 APP_DISC_BY_BUTTON ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	setarg 0
+	store 2,mem_mouse_direct_timer
+	call mouse_no_data_timer_init
+	branch mouse_stop_discovery
+
+mouse_bb_event_pincode:
+	call pincode_reinit
+	branch app_bt_set_pincode
+	
+mouse_bb_event_reconn_failed:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch app_bb_hibernate
+
+	
+mouse_bt_hid_connected:
+	call mouse_hid_connected
+	rtn
+mouse_bt_event_setup_complete:
+	rtn
+
+mouse_bb_disconnected:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_7,mem_patch2d
+	call mouse_bb_discon_clear_stack
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+ifdef DEBUG_LIGHT_STATE
+	store 1,0x4c00
+endif
+	bbit1 APP_DISC_BLE,mouse4_0_event_bb_disconn
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	bbit1 APP_DISC_AFTER_PAIRING,mouse_event_light_state_pairing
+	bbit1 APP_DISC_AFTER_RECONN,mouse_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,mouse_event_light_state_hibernate
+	branch mouse_start_discovery
+mouse_bb_discon_clear_stack:
+	setarg 0
+	store 8,mem_whee_ta_data_gpio
+	istore 8,contw
+	jam 0,mem_mouse_send_blank_timer
+	jam 0,mem_mouse_move_flag
+	jam APP_HANDSHAKE_NULL,mem_app_handshake_flag
+	jam 0,mem_ltk_exists
+	jam 0,mem_mouse_mode_state
+	jam 0,mem_reconnect_timeout
+	rtn
+
+mouse_event_light_state_pairing:
+	bbit1 APP_DISC_AFTER_HANDSHAKE,mouse_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,mouse_event_light_state_hibernate
+	branch mouse_start_discovery
+mouse_event_light_state_hibernate:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch app_bb_hibernate
+
+mouse4_0_event_bb_disconn:
+	call le_clean_att_list_handle_enable
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	branch app_bb_hibernate
+
+mouse_bb_event_timer:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_0,mem_patch2e
+	storet 1,mem_app_evt_timer_count
+mouse_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call mouse_check_hid_handshake_timer
+	call mouse_check_discovery_timeout_timer
+	call mouse_check_direct_timeout_timer
+	call mouse_check_no_data_timeout_timer
+	call mouse_check_mouse_state_timer
+	branch mouse_bb_event_100ms_loop
+
+mouse_check_mouse_state_timer:
+	fetch 1,mem_mouse_statue_led_timer
+	rtn blank
+	pincrease -1
+	store 1,mem_mouse_statue_led_timer
+	nrtn blank
+	branch mouse_devce_led_off
+	
+
+mouse_check_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+	branch mouse_bt_hid_handshake
+
+mouse_check_discovery_timeout_timer:	
+	fetch 2,mem_mouse_discovery_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_discovery_timer
+	nrtn blank
+	call mouse_stop_discovery
+	branch app_enter_hibernate
+
+mouse_check_direct_timeout_timer:
+	fetch 2,mem_mouse_direct_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_direct_timer
+	nrtn blank
+	call app_ble_stop_direct_adv
+	branch app_enter_hibernate
+
+mouse_check_blank_data_timeout_timer:
+	fetch 2,mem_mouse_blank_data_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_blank_data_timer
+	nrtn blank
+	jam 0,mem_mouse_send_blank_timer
+	rtn
+
+mouse_check_no_data_timeout_timer:
+	fetch 2,mem_mouse_no_data_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_no_data_timer
+	nrtn blank
+	branch mouse_disconnect
+	
+mouse_bb_event_discovery_btn:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_1,mem_patch2e
+	jam 0,mem_mouse_send_blank_timer
+	jam 1,mem_reconnect_timeout
+	setarg 0
+	store 2,mem_mouse_direct_timer
+	call mouse_disconnect
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call mouse4_0_bb_event_discovery_btn,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call mouse3_0_bb_event_discovery_btn,true
+	call app_lpm_mult_disable
+	branch mouse_start_discovery
+
+
+
+mouse3_0_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch app_bt_start_discovery_short,blank	
+	branch app_bt_start_reconnect
+	
+mouse4_0_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch mouse4_0_no_reconn_target,blank
+	fetch 2,mem_mouse_direct_timeout
+	store 2,mem_mouse_direct_timer
+	call app_lpm_mult_enable
+	branch app_ble_start_direct_adv
+mouse4_0_no_reconn_target:
+	call app_led_start_blink
+	branch app_ble_start_adv
+
+mouse3_0_bb_event_discovery_btn:
+	fetch 2,mem_ui_state_map
+	isolate1 UI_STATE_BT_RECONNECT,pdata
+	call app_bt_reconnect_cancel,true
+	rtn
+mouse4_0_bb_event_discovery_btn:
+	call le_clean_att_list_handle_enable
+	rtn
+	
+mouse_bt_hid_handshake:
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+	jam MOUSE_MODE_STATE_BT,mem_mouse_mode_state
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	store 1,mem_hid_handshake_timer_count
+	branch app_bt_enter_sniff
+
+mouse_check_reconn_target:
+	fetch 1,mem_xrecord_mode
+	beq REC_3_MODE,mouse3_0_check_reconn_target
+	beq REC_4_MODE,mouse4_0_check_reconn_target	
+	branch mouse_start_discovery
+
+mouse_start_discovery:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_2,mem_patch2e
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_ADV,mouse_start_discovery_norandom
+	random pdata					//random ble addr
+	store 1,mem_le_lap+1
+mouse_start_discovery_norandom:
+	call app_lpm_mult_disable
+	fetch 2,mem_discovery_timeout
+	store 2,mem_mouse_discovery_timer
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call app_ble_start_adv,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call app_bt_start_discovery,true
+	branch app_led_start_blink
+
+mouse_stop_discovery:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_3,mem_patch2e
+	setarg 0
+	store 2,mem_mouse_discovery_timer
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call app_ble_stop_adv,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call app_bt_stop_discovery,true
+	branch app_led_stop_blink
+
+mouse_disconnect:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_4,mem_patch2e
+	setarg 0
+	store 2,mem_mouse_no_data_timer
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,app_bt_disconnect
+	rtn
+
+eeprom_store_mouse_dpi:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_5,mem_patch2e
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_write_eep_data
+
+eeprom_load_mouse_dpi:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_6,mem_patch2e
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_read_eep_data
+
+//mosue up led
+
+mouse_check_mouse_statue:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_7,mem_patch2e
+	fetch 1,mem_sensor_squal_reg
+	call sensor_read
+	beq 0x0,mouse_statue_up
+	rtn
+	//branch p_mouse_devce_led_off
+mouse_devce_led_off:
+	fetcht 1,mem_device1_led_gpio
+	call gpio_out_inactive
+	fetcht 1,mem_device2_led_gpio
+	call gpio_out_inactive
+	fetcht 1,mem_device3_led_gpio
+	branch gpio_out_inactive
+mouse_statue_up:
+	fetch 1,mem_reconn_mode
+	rtn blank
+	jam 0,mem_reconn_mode
+	jam 60,mem_mouse_statue_led_timer         // led on 6s
+	call mouse_devce_led_off
+	fetch 1,mem_device_flag
+	beq 0x01,mouse_device1_led_on  	//device_1
+	beq 0x02,mouse_device2_led_on		//device_2
+	beq 0x03,mouse_device3_led_on		//device_3
+	rtn
+mouse_device1_led_on:
+	fetcht 1,mem_device1_led_gpio
+	branch gpio_out_active
+mouse_device2_led_on:
+	fetcht 1,mem_device2_led_gpio
+	branch gpio_out_active
+mouse_device3_led_on:
+	fetcht 1,mem_device3_led_gpio
+	branch gpio_out_active
+	
+
+
+else
+mouse_init:
+	branch assert
+
+endif
+
+
+
Index: Receive_Code/program/patch.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/patch.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/patch.prog	(working copy)
@@ -0,0 +1,872 @@
+ifdef PATCH
+
+	bmark1 mark_ext_patch,patch_ext
+	beq patch00_3,p_main_loop
+	beq patch10_6,p_shutdown_radio
+	beq patch11_2,p_set_freq_tx
+	beq patch11_3,p_initialize_radio_cont	
+	beq patch16_4,p_app_init
+	branch assert
+	
+patch_ext:
+	beq patch20_3,p_le_master_dispatch_end
+	beq patch23_1,p_le_transmit
+	beq patch25_3,p_le_scan
+	beq patch25_6,p_le_conn
+	beq patch26_2,p_le_prepare_smp1
+	beq patch26_3,p_le_prepare_att
+	beq patch27_4,p_le_parse0
+	beq patch27_6,p_le_parse_att
+	beq patch32_5,p_gpio_set_before_lpm_common
+	beq patch3b_0,p_shutter_init_end
+	beq patch3b_1,p_shutter_le_bb_event_100ms_loop
+	beq patch3b_4,p_shutter_le_key_process
+	beq patch3e_7,p_check_51cmd_once
+	branch assert
+
+p_main_loop:
+	arg uart_rx_timer,queue
+	call timer_check
+	ncall p_main_loop_next,blank
+	call p_uart_send_data_timer_init
+	call p_le_parse_att
+p_main_loop_next:
+	branch main_loop+2
+
+p_uart_send_data_timer_init:
+	setarg TIMER_UART_SEND_DATA_DELAY
+	arg uart_rx_timer,queue
+	branch timer_init
+
+p_le_prepare_smp1:
+	fetch 1,mem_le_l2cap
+p_le_prepare_smp0:
+	beq SMP_PAIRING_REQUEST,le_send_smp_pairing_request             
+	beq SMP_PAIRING_RESPONSE,p_le_send_smp_pairing_response            
+	beq SMP_PAIRING_CONFIRM,le_send_smp_pairing_confirm             
+	beq SMP_PAIRING_RANDOM,le_send_smp_pairing_random              
+	beq SMP_PAIRING_FAILED,le_send_smp_pairing_failed              
+	beq SMP_ENCRYPTION_INFORMATION,le_send_smp_encryption_information      
+	beq SMP_MASTER_IDENTIFICATION,le_send_smp_master_identification       
+	beq SMP_IDENTITY_INFORMATION,le_send_smp_identity_information        
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_send_smp_identity_address_information
+	beq SMP_SIGNING_INFORMATION,le_send_smp_signing_information         
+	beq SMP_SECURITY_REQUEST,le_send_smp_security_request            
+ifdef SECURE_CONNECTION
+	beq SMP_PAIRING_PUBLIC_KEY,le_send_smp_pairing_public_key
+	beq SMP_PAIRING_DHKEY_CHECK,le_send_smp_pairing_dhkey_check
+endif
+	branch assert
+	
+p_le_send_smp_pairing_response:
+	setarg param_smp_paring_response	
+	store 4,mem_le_pres
+	setarg param_smp_key_dist2
+	istore 3,contw
+	fetch 6,mem_le_pres+1
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+p_app_init:
+	fetch 1,mem_device_option
+	branch app_init,blank				/* wait ram to be initialized */
+//	beq dvc_op_ukey,le_ukey_init
+//	beq dvc_op_ir,le_ir_init
+//	beq dvc_op_dongle,le_dongle_init
+	beq dvc_op_kb,kb_init
+	beq dvc_op_shutter,p_shutter_init
+	beq dvc_op_module,module_init
+//	beq dvc_op_test,test_init
+	bbit1 dvc_op_mouse,mouse_init
+	bbit1 dvc_op_keyboard,kb_init
+	rtn
+
+p_shutter_init:
+	rtn wake	
+	call init_shutter_le_att_list
+	arg 135,loopcnt
+	arg mem_shutter_le_att_list+230,contw
+	arg mem_shutter_att_list_patch,contr
+	call memcpy
+	call shutter_init_param	
+
+	hjam 0x00,core_gpio_sel1//1: GPIO[26:25] is two wire SPI, 2: GPIO[26:23] is SPI, 3: GPIO[26:23] is PCM
+	call shutter_key_init
+
+	setarg shutter_le_before_hibernate
+	store 2,mem_cb_before_hibernate
+
+	setarg shutter_le_process_lpm_before
+	store 2,mem_cb_before_lpm
+	
+	setarg shutter_le_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+	
+	setarg scale_process_idle	//
+	store 2,mem_cb_idle_process
+	
+	setarg scale_process	//
+	store 2,mem_cb_le_process
+	
+	setarg p_scale_process_bb_event 
+	store 2,mem_cb_bb_event_process
+
+	call p_shutter_uart_init
+	
+	setarg shutter_le_scale_lpm_lock
+	store 2,mem_cb_check_wakelock
+	setarg shutter_le_receive_data
+	store 2,mem_cb_att_write
+	call p_shutter_le_queue_init
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	branch shutter_init0+5
+
+p_shutter_init_end:
+	fetch 1, mem_hard_soft_switch_case
+	beq HARD_SWITCH,p_shutter_le_hard_switch_power_on_signal
+	branch shutter_init0+9
+
+p_shutter_le_hard_switch_power_on_signal:
+	//call ice_break
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	jam 1,mem_enable_key_scan
+	call shutter_ui_led_init
+	setarg mem_power_on_led_style
+	call shutter_ui_led_send
+p_in_poweron_hard_switch_led:
+	call ui_led_blink_polling
+	fetch 1,mem_led_blink_count
+	nbranch p_in_poweron_hard_switch_led,blank
+p_shutter_le_soft_switch_power_on_signal:
+	jam ON,mem_le_scan_enable
+	setarg 0
+	store 4,mem_shutter_send_data
+	call shutter_ui_led_init
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	branch p_shutter_le_fast_scan
+	
+
+p_shutter_le_fast_scan:
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	jam 0,mem_shutter_key_data_flag_1
+	jam ON,mem_le_scan_enable
+	setarg mem_fast_adv_led_style
+	branch shutter_ui_led_send
+
+p_le_scan:
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+	fetch 6,mem_le_plap
+//	rshift16 pdata,pdata
+//	rshift8 pdata,pdata
+	fetcht 6,mem_le_conn_peer_addr
+	isub temp,null
+	branch le_create_conn,zero
+	branch p_le_addr_compare
+
+p_le_addr_compare:
+	fetch 6,mem_le_plap
+//	rshift16 pdata,pdata
+//	rshift8 pdata,pdata
+	fetcht 6,mem_le_slave_peer_addr
+	isub temp,null
+	nrtn zero
+	fetch 6,mem_le_plap
+	store 6,mem_app_peer_addr 	
+	jam 28,mem_le_conn_interval
+	setarg 0x100
+	store 2,mem_le_conn_superto
+	jam OFF,mem_le_scan_enable
+	jam 1,mem_le_conn_state
+	branch app_ble_start_conn
+
+p_check_51cmd_once:
+	call ui_ipc_get_lock
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_out
+	copy pdata,temp
+	call ui_ipc_put_lock
+	copy temp,pdata
+	rtn blank
+	beq BT_CMD_LE_START_CONN,p_check_51cmd_le_start_con
+	branch check_51cmd_once+9
+p_check_51cmd_le_start_con:
+	jam ON,mem_le_scan_enable
+	jam hci_cmd_le_create_conn,mem_hci_cmd
+	fetch 6,mem_app_peer_addr
+	store 6,mem_le_conn_peer_addr
+	rtn
+
+p_le_parse0:
+	copy regc,pdata
+	beq LL_TERMINATE_IND,p_le_parse_terminate_ind
+	branch le_parse0+6
+p_le_parse_terminate_ind:
+	fetch 1,mem_device_option
+	bne dvc_op_shutter,p_le_parse_terminate_ind_common
+	jam 1,mem_shutter_key_data_flag_1
+p_le_parse_terminate_ind_common:
+	setarg 3 
+	store 2,mem_le_superto
+	rtn
+
+p_le_parse_att:
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+	beq ATTOP_WRITE_RESPONSE,p_le_parse_att_write_response
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,p_le_parse_att_handle_value_notify
+	rtn
+
+p_le_parse_att_handle_value_notify:
+	branch p_shutter_uart_tx_prepare
+	
+
+p_le_parse_att_write_response:
+	fetch 1,mem_le_send_write_request_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_le_send_write_request_count
+	beq 1,p_le_att_send_write_request1
+	beq 0,p_le_att_send_write_request0
+	rtn
+	
+p_le_att_send_write_request1:
+	setarg 0x27
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+p_le_att_send_write_request0:
+	setarg 0x60
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+
+p_le_prepare_att:
+ 	fetch 1,mem_le_l2cap
+	beq ATTOP_WRITE_REQUEST,p_le_send_att_write_request
+	branch le_prepare_att+5
+
+p_le_send_att_write_request:
+// 	fetch 1,mem_le_work_data_send_flag
+//	branch p_le_send_att_write_request_end,blank
+	
+/*
+//	call shutter_le_tx_buff_unuse
+//	call p_shutter_le_queue_get
+//	nrtn user
+//	disable user
+	copy pdata,contr						//handle
+	ifetcht 1,contr
+	increase -3,temp
+	copy temp,loopcnt
+	storet 1,mem_le_handle_data_len
+	ifetch 2,contr
+	store 2,mem_le_notify_handle
+	arg mem_le_handle_data,contw
+	call memcpy
+	*/
+p_le_send_att_write_request_end:
+  	fetch 2,mem_le_notify_handle
+	store 2,mem_le_l2cap_response
+	fetch 1,mem_le_handle_data_len
+	copy pdata,loopcnt
+	arg mem_le_handle_data,contr
+	call memcpy
+	branch le_send_autolen
+
+
+p_scale_process_bb_event:
+	copy regc,pdata
+	//beq BT_EVT_BUTTON_LONG_PRESSED,app_ble_disconnect
+	beq BT_EVT_BUTTON_UP,shutter_bb_event_button_up
+	beq BT_EVT_BUTTON_LONG_PRESSED,shutter_evt_button_long_pressed
+	beq BT_EVT_LE_CONNECTED,scale_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,p_scale_process_le_discon
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,shutter_le_bb_event_timer
+	rtn
+
+p_le_conn:
+	fetch 2,mem_le_sleep_conn_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	setarg mem_connected_led_style
+	call shutter_ui_led_send
+	jam 1,mem_le_conn_state
+	//jam 0x12,mem_le_xtype_fifo+4
+	jam 1,mem_enable_key_scan
+	jam CONN_SM_SEND_WRITE_REQ,mem_le_conn_sm
+	call le_create_conn+14
+	rtn
+
+p_le_master_dispatch_end:
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	call le_acknowledge
+	call p_le_master_sm
+	disable master
+	rtn
+
+	
+p_le_master_sm:
+ 	fetch 1,mem_le_conn_sm
+	beq CONN_SM_SEND_WRITE_REQ,p_le_data_send_write_req
+	beq CONN_SM_WAIT_WRITE_RES,p_le_data_wait_write_res
+	beq CONN_SM_WAIT_WRITE_RES1,p_le_data_wait_write_res1
+	rtn
+
+p_le_data_send_write_req:
+	setarg 0x1a
+	store 2,mem_le_notify_handle
+	jam 2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam 0,mem_le_conn_sm
+//	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam 1,mem_le_work_data_send_flag
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	rtn
+	
+p_le_data_wait_write_res:
+	jam CONN_SM_WAIT_WRITE_RES1,mem_le_conn_sm
+	jam ATTOP_EXCHANGE_MTU_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+p_le_data_wait_write_res1:
+	rtn
+
+p_scale_process_le_discon:
+	//setarg 0
+	//store 1,mem_hci_curr_len
+	setarg 0
+	store 6,mem_le_conn_peer_addr
+	jam 2,mem_le_send_write_request_count
+	jam 0,mem_le_conn_state
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	jam 0,mem_ltk_exists
+	jam DEFAULT_STATES,mem_ltk_states
+	jam 0,mem_shutter_find_type_value_flag
+	call p_shutter_le_queue_clear
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 1, mem_le_sleep_flag
+	bne 0,shutter_le_sleep_enter
+	call p_shutter_le_fast_scan
+	jam PAIR_UNKNOWN,mem_pair_state
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	setarg 0 
+	store 2, mem_l2cap_rxbuff2_len
+	branch shutter_le_tx_buff_unuse
+
+p_shutter_le_queue_init:
+	jam 0,mem_queue_ele_num_patch
+	setarg mem_queue_start_patch
+	store 2, mem_queue_read_patch
+	store 2, mem_queue_write_patch
+	rtn
+//end
+
+p_shutter_le_queue_clear:
+	branch p_shutter_le_queue_init
+
+//output:user flag
+//input:temp,loopcnt
+p_shutter_le_queue_put:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	compare  QUEUE_ELE_COUNT_PATCH,pdata,0xff
+	rtn true
+
+	enable user
+	fetch 2, mem_queue_write_patch
+	copy pdata,contw
+	copy temp,contr
+	call memcpy
+	
+	fetch 1,mem_queue_ele_num_patch
+	increase 1,pdata
+	store 1, mem_queue_ele_num_patch
+	
+	setarg mem_queue_write_patch
+	branch p_shutter_le_queue_increase
+
+//pdata
+p_shutter_le_queue_increase:
+	copy pdata,rega
+	arg mem_queue_end_patch,temp
+	ifetch 2,rega
+	increase QUEUE_ELE_LENGTH_PATCH,pdata
+	isub temp,null
+	nbranch p_shutter_le_queue_put_end,positive
+	setarg mem_queue_start_patch
+p_shutter_le_queue_put_end:
+	istore 2,rega
+	rtn
+	
+//output: pdata
+//output: user flag
+p_shutter_le_queue_get:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	rtn blank
+	enable user
+	fetch 1,mem_queue_ele_num_patch
+	increase -1,pdata
+	store 1, mem_queue_ele_num_patch
+
+	fetch 2,mem_queue_read_patch
+	store 2,mem_queue_temp_patch
+
+	setarg mem_queue_read_patch
+	call p_shutter_le_queue_increase
+	fetch 2,mem_queue_temp_patch
+	rtn
+
+p_shutter_le_queue_read_point:
+	disable user
+	fetch 1,mem_queue_ele_num_patch
+	rtn blank
+	enable user
+	fetch 2,mem_queue_read_patch
+	rtn
+
+p_shutter_le_key_process:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	call shutter_shutter_scan_key
+	nbranch lpm_button_clean_wake_lock,user
+	call lpm_button_get_wake_lock
+	disable user
+	fetch 2,mem_le_sleep_conn_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+//	fetch 1,mem_le_conn_state
+//	rtn blank
+	fetch 1,mem_le_conn_state
+	beq 0,p_shutter_le_fast_scan
+	call shutter_shutter_cancel_key_shake
+	branch p_in_le_key_process_end,positive
+	fetch 2, mem_key_value_temp
+	store 2,mem_key_value_temp4
+	jam 0,mem_key_value_temp6
+	force 0,queue
+	//call ice_break
+p_shutter_le_key_lp1:
+	fetch 2, mem_key_value
+	rshift pdata,temp
+	storet 2,mem_key_value
+	and pdata,0x01,pdata
+	fetcht 2, mem_key_value_temp4
+	and temp,0x01,rega
+	rshift temp,temp
+	storet 2,mem_key_value_temp4
+	ixor rega,null
+	ncall p_shutter_le_send_key_data,zero
+	fetch 1,mem_shutter_key_num
+	fetcht 1, mem_key_value_temp6
+	increase 1,temp
+	storet 1, mem_key_value_temp6
+	copy temp,queue
+	ixor queue,null
+	//call ice_break
+	nbranch p_shutter_le_key_lp1,zero
+	fetch 2,mem_key_value_temp
+	store 2, mem_key_value
+	rtn
+p_in_le_key_process_end:
+	setarg 0
+	store 2,mem_key_value_temp
+	store 2,mem_key_value
+	rtn
+
+//queue = key index
+//rega =1 press, =0 release
+p_shutter_le_send_key_data:
+	//call ice_break
+	deposit rega
+	branch p_in_le_key_is_release,blank
+	copy queue,pdata
+	beq 0,p_in_le_send_key0_press
+	beq 1,p_in_le_send_key1_press
+	beq 2,p_in_le_send_key2_press
+	beq 3,p_in_le_send_key3_press
+p_in_le_send_lable:
+	ifetch 1,temp
+	rtn blank
+	store 1, mem_key_packet_count
+	increase 1,temp
+	storet 2,mem_key_next_addr
+p_in_le_send_lp1:
+	fetch 2, mem_key_next_addr
+	ifetcht 1, pdata //length
+	copy temp,loopcnt
+	iadd temp,temp
+	storet 2, mem_key_next_addr
+	copy pdata,temp
+	call p_shutter_le_queue_put
+	fetch 1, mem_key_packet_count
+	increase -1,pdata
+	store 1, mem_key_packet_count
+	nbranch p_in_le_send_lp1,zero
+	branch p_le_send_packet
+//function end
+p_le_send_packet:
+ 	call p_shutter_le_queue_read_point
+	nrtn user
+	disable user
+//	force 0x0013,temp
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch  shutter_le_tx_buff_inuse
+
+
+p_in_le_key_is_release:
+	copy queue,pdata
+	beq 0,p_in_le_send_key0_rel
+	beq 1,p_in_le_send_key1_rel
+	beq 2,p_in_le_send_key2_rel
+	beq 3,p_in_le_send_key3_rel
+	branch p_in_le_send_lable
+
+p_in_le_send_key0_press:
+	jam 0x01,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key1_press:
+	jam 0x02,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key2_press:
+	jam 0x01,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key3_press:
+	jam 0x02,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+
+p_in_le_send_key0_rel:
+	jam 0x00,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key1_rel:
+	jam 0x00,mem_le_car_write_cmd_control+1
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key2_rel:
+	jam 0x00,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+p_in_le_send_key3_rel:
+	jam 0x00,mem_le_car_write_cmd_control
+	arg mem_le_car_write_cmd_data1,contr
+	arg 7,loopcnt
+	call p_calc_check_sum_start
+	store 1,mem_le_car_write_cmd_check_sum
+	arg mem_le_car_write_cmd_data,temp
+	branch p_in_le_send_lable
+
+////////////////////////check sum////////////////////////
+//loopcnt = sum number,contr = ptr
+p_calc_check_sum_start:
+	arg 0,rega
+p_calc_check_sum_loop:
+	ifetch 1,contr
+	iadd rega,rega
+	loop p_calc_check_sum_loop
+p_calc_check_sum_and:
+	and rega,0xff,pdata
+	rtn
+
+	
+p_shutter_le_bb_event_100ms_loop:
+ //      call ui_button_check_long_press
+	call shutter_le_shutter_fast_adv_timer
+//	call p_shutter_le_sleep_timer
+//	call shutter_ui_button_timeout_timer
+//	call p_shutter_ui_power_timeout_timer
+	call shutter_app_updata_le_param_timer
+//	call shutter_conn_update_timer
+	branch shutter_le_bb_event_100ms_loop	
+
+p_shutter_ui_power_timeout_timer:
+	fetch 1,mem_power_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_power_timer
+	nrtn blank
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,p_shutter_le_soft_switch_power_on_signal
+	branch shutter_shutter_power_off_signal
+
+/*
+p_shutter_le_sleep_timer:
+	fetch 2,mem_le_sleep_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_sleep_timeout_timer_count
+	nrtn blank
+	//call shutter_ui_led_init
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	branch shutter_shutter_power_off_end	*/
+	
+
+p_shutter_uart_init:
+	hjam 0x4,core_gpio_sel1	//ÉèÖĂIO¿Ú
+	hfetch 4,core_gpio_pu0	//½«IO¸´ÓĂÎªUART¹¦ÄÜ
+	set1 7,pdata				//gpio7ÉèÖĂÉÏÀ­µç×è
+	hstore 4,core_gpio_pu0
+
+	hjam 0x01,core_uart_clksel	//Ñ¡ÔñUARTÊ±ÖÓ48M
+	setarg mem_shutter_rx_buf	//ÉèÖĂRing Buffer
+	hstore 2,core_uart_rsaddr	//RX buffer ÆđÊ¼µØÖ·
+	setarg mem_shutter_rx_buf_end
+	hstore 2,core_uart_readdr	//RX buffer½áÊøµØÖ·
+	setarg mem_shutter_tx_buf
+	hstore 2,core_uart_tsaddr	//TX bufferÆđÊ¼µØÖ·
+	setarg mem_shutter_tx_buf_end
+	hstore 2,core_uart_teaddr	//TX buffer½áÊøµØÖ·
+	setarg mem_shutter_rx_buf
+	hstore 2,core_uart_rrptr	//RX buffer¶ÁÖ¸Ơë
+	setarg mem_shutter_tx_buf
+	hstore 2,core_uart_twptr	//TX bufferĐ´Ö¸Ơë
+	hstore 2,core_uart_trptrp 	//TX buffer¶ÁÖ¸Ơë
+
+	setarg uart_baud_115200		//ÉèÖĂ²῭ØÂÊ
+	hstore 2,core_uart_baud
+	
+	hfetch 2,core_clkoff		//½«core_clkoff(0x8050)µÄµÚ15Î»ÖĂÁă,Ê¹ÄÜUARTÊ±ÖÓ
+	set0 CLOCK_OFF_UART,pdata
+	hstore 2,core_clkoff
+	hjam 0x81,core_uart_ctrl //ÉèÖĂ8bits¡¢Î̃Đ£Ñé¡¢Î̃Á÷¿ØÄ£Ê½
+	rtn
+
+p_shutter_uart_tx_prepare:
+	fetch 7,mem_le_rxbuf+9
+	store 7,mem_uart_mouse_data_buff+3
+p_shutter_uart_tx_prepare_next:	
+	jam 0x02,mem_uart_mouse_data_buff
+	jam 0x29,mem_uart_mouse_data_buff+1
+	jam 0x08,mem_uart_mouse_data_buff+2
+	
+	hfetch 2,core_uart_twptr
+	copy pdata,contwu
+	arg 0x0b,loopcnt
+	arg mem_uart_mouse_data_buff,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+	
+p_gpio_set_before_lpm_common:
+	hfetch 4,core_gpio_pu0
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata
+	invert pdata,pdata
+	iand rega,pdata
+	//set0 4,pdata //revc
+	hstore 4,core_gpio_oe0
+	rtn
+
+p_set_freq_tx:
+	storet 1,mem_last_freq
+	add temp,0,rega			// bt 2M Medium Frequency
+	call rf_write_freq
+	setarg param_pll_setup
+	call sleep
+p_txon:	
+ifdef FPGA
+ifndef ROMCODE
+	setarg 0x000f
+	call fpga_write_radio
+	setarg 0x01e1
+	call fpga_write_radio
+	hjam 0x0, 0x901
+endif
+endif
+	hjam 0x1,rfen_adc
+	hjam 0x3c,rfen_rx
+	hjam 0xe0,rfen_tx
+	hjam 0x12,0x96d
+	nop 10
+	hjam 0x01,rfen_mdm
+	hjam 0x3d,rfen_mdm
+	nop 10
+	hjam 0xb7,rfen_sn
+	nop 10
+	hjam 0x7f, rfen_mdm
+	fetch 1,mem_le_conn_state
+//	beq 0,p_txon_scan
+	beq 0,p_set_tx_power_5db
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,p_set_tx_power_0db
+	bbit1 TX_POWER_3DB,p_set_tx_power_3db	
+	bbit1 TX_POWER_5DB,p_set_tx_power_5db
+	bbit1 TX_POWER_f3DB,p_set_tx_power_f3db	
+	bbit1 TX_POWER_f5DB,p_set_tx_power_f5db
+p_set_tx_power_0db:	
+	hjam 0xf0,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_set_tx_power_3db:
+	hjam 0xdf,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+p_set_tx_power_5db:
+	hjam 0xff,0x956
+	call txon_common
+	hjam 0xdf,0x955
+	rtn
+p_set_tx_power_f3db:
+	hjam 0xce,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_set_tx_power_f5db:
+	hjam 0xcb,0x956
+	call txon_common
+	hjam 0xd8,0x955
+	rtn
+p_txon_scan:
+	hjam 0xc0,0x956
+	hjam 0xd8,0x955
+	rtn
+
+p_le_transmit:
+	call le_prep
+	call p_letx_setfreq
+	call le_transmit0
+	fetch 1,mem_device_option
+	beq dvc_op_module,module_le_transmit
+	rtn
+p_letx_setfreq:
+	branch p_txon,match
+	branch letx_setfreq0
+
+p_shutdown_radio:
+	branch p_shutdown_radio0,is_rx
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4	
+	fetch 1,mem_le_conn_state
+	beq 0,p_shutdowm_radio_scan
+	fetch 1,mem_tx_power
+	bbit1 TX_POWER_0DB,p_shutdown_radio_0db
+	bbit1 TX_POWER_3DB,p_shutdown_radio_3db
+	bbit1 TX_POWER_5DB,p_shutdown_radio_5db
+	bbit1 TX_POWER_f3DB,p_shutdown_radio_f3db
+	bbit1 TX_POWER_f5DB,p_shutdown_radio_f5db
+p_shutdown_radio_5db:	
+p_shutdown_radio_0db:
+	hjam 0xd0, 0x955
+	hjam 0xe0, 0x956
+p_shutdown_radio0:
+ifdef FPGA
+ifndef ROMCODE
+	setarg 0x003f
+	call fpga_write_radio
+	setarg 0x017f
+	call fpga_write_radio
+endif
+endif
+	force 0,radio_ctrl
+	disable is_rx
+	disable is_tx
+	pulse packet_end
+	hjam 0x0,rfen_mdm
+	hjam 0x0,rfen_tx
+	hjam 0x0,rfen_rx
+	hjam 0,rfen_sn
+	hjam 0x70,rfen_msc
+	hjam 0x0,rfen_adc
+	rtn	
+
+p_shutdown_radio_f5db:
+p_shutdown_radio_f3db:
+p_shutdown_radio_3db:
+	hjam 0xd0,0x955
+	hjam 0xc0,0x956
+	branch p_shutdown_radio0
+p_shutdowm_radio_scan:
+	hjam 0xd0, 0x955
+	hjam 0xc0, 0x956
+	rtn
+
+
+p_initialize_radio_cont:
+	fetch 1,mem_lpm_xtalcnt
+	nbranch p_switchdpll_nocal,blank
+	call lpm_cal_xtal_startup
+	nop 30000
+	nop 30000
+	nop 30000
+p_switchdpll_nocal:
+	call switchto_dpllclk
+	hjam clksel_dpll,core_clksel
+	nop 1
+	hjam clksel_xtal,core_clksel
+	hfetch 1,rf_clkpll_frac+2
+	and_into 0xcf,pdata
+	hstore 1,rf_clkpll_frac+2
+	or_into 0x30,pdata
+	hstore 1,rf_clkpll_frac+2
+	rtn	
+
+endif
+
Index: Receive_Code/program/peripherals.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/peripherals.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/peripherals.prog	(working copy)
@@ -0,0 +1,2090 @@
+
+/* ===================== two wire SPI gpio ======================= */
+
+twspi_reset:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_0,mem_patch2f
+	hfetch 1,core_gpio_oe3
+	arg 0x06,temp
+	ior temp,pdata
+	hstore 1,core_gpio_oe3
+	hfetch 1,core_gpio_out3
+	ior temp,pdata
+	hstore 1,core_gpio_out3
+	hjam 0,core_gpio_sel1	
+	hfetch 1,core_gpio_out3
+	set0 1,pdata
+	set0 2,pdata
+	hstore 1,core_gpio_out3	
+	nop 30
+	hjam 1,core_gpio_sel1	
+	rtn
+	
+// input read reg number: pdata 
+//output reg data: pdata
+sensor_read:
+	copy pdata,regb
+	call spi_ncs_enable
+	nop 100
+	copy regb,pdata
+	call twspi_read
+	copy pdata,regb
+	call spi_ncs_disable
+	nop 100
+	copy regb,pdata
+	rtn
+// input write reg number: pdata 
+sensor_write:
+	copy pdata,regb
+	call spi_ncs_enable
+	nop 100
+	copy regb,pdata
+	call twspi_write
+	call spi_ncs_disable
+	nop 100
+	rtn
+//spi gpio init .
+//0xff :disable spi ncs gpio init
+spi_ncs_gpio_init:
+	fetch 1,mem_spi_ncs_gpio
+	rtneq 0xff
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_config_output
+
+//nsc gpio ouput low
+spi_ncs_enable:
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_out_active
+
+//ncs gpio output high
+spi_ncs_disable:
+	fetcht 1,mem_spi_ncs_gpio
+	branch gpio_out_inactive
+
+// input write reg number: regb 
+twspi_write:
+	branch spid_write_reg
+	
+// input read reg number: regb 
+//output reg data: pdata
+twspi_read:
+	branch spid_read_reg
+
+
+
+/* ===================== code loading ======================= */
+
+
+read_function_aes:
+	nbranch read_function,user
+	hfetch 1,core_gpio_key2
+	or_into 0x20,pdata   	// enable aes 
+	hstore 1,core_gpio_key2
+read_function:
+	copy temp,null
+	branch read_fuction_zero,zero
+	copy regc,pc
+read_fuction_zero:
+	isolate0 0,null
+	branch set_ucode_status
+	
+/* return temp = block length */
+get_block_header:
+	force 4,temp
+get_block_header0:
+	arg mem_ucode_buf,rega
+	hfetch 1,core_gpio_key2
+	and_into 0xdf,pdata   	// disable aes for header
+	hstore 1,core_gpio_key2
+	call read_function
+	arg 0x55aa,rega
+	fetch 2,mem_ucode_buf
+	ifetcht 2,contr
+	isub rega,null
+	rtn	
+
+read_first_block:
+	arg 2,temp
+	arg mem_ucode_ptr,rega
+	call read_function
+	fetch 2,mem_ucode_ptr
+	store 2,mem_addr_mi
+	call get_iv,user
+	rtn
+	
+get_iv:
+	arg 16,temp
+	arg mem_ucode_keybuf,rega
+	hfetch 1,core_gpio_key2
+	and_into 0xdf,pdata   // disable aes for iv
+	hstore 1,core_gpio_key2
+	call read_function
+	arg mem_ucode_keybuf,contr
+	arg 16,loopcnt
+	call aes_load_data
+	call aes_init
+	call aes_clear_data
+	branch do_aes_cbc					/* generate first IV */
+
+load_storage:
+	disable match
+	call get_block_header
+	nrtn zero
+	enable match
+	hjam 0x80, core_ucode_ctrl
+	hjam 0,core_ucode_hi
+	hjam 0,core_ucode_low
+	arg core_ucode_data,rega
+	call read_function_aes
+	hjam 0x0, core_ucode_ctrl
+	call get_block_header
+	nrtn zero
+	force 0,pdata
+	hstore 2,core_docd_paddr
+	arg core_docd_pdata,rega
+	call read_function_aes
+load_storage_loop:
+	arg 6,temp
+	call get_block_header0
+	nrtn zero
+	ifetch 2,contr
+	iforce rega
+	call read_function
+	branch load_storage_loop
+
+
+
+	
+	/* only load memory data from eeprom */
+reload_eeprom:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_1,mem_patch2f
+	call clean_mem
+	setarg 0x1000
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	arg 2,loopcnt
+reload_eeprom_loop:
+	call get_block_header
+	nrtn zero
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	loop reload_eeprom_loop
+	branch load_storage_loop
+	
+loadcode:
+	hjam 0x25,core_clkoff			// disable debug uart
+	hjam 5,core_docd_ctrl
+	call clean_mem
+	set1 mark_ext_patch,mark
+	bpatch patch2f_2,mem_patch2f
+loadcode_lpm:
+	disable user
+	call otp_enable_chgpump
+	setarg otp_ucode_flag
+	arg mem_otp_ucode_flag,rega
+	arg 2,temp
+	call otpd_read_data
+	fetch 2,mem_otp_ucode_flag
+	bbit0 otp_uflag_aes, loadcode_otp
+	setarg otp_ucode_aeskey
+	arg mem_ucode_keybuf,rega
+	arg 16,temp
+	call otpd_read_data
+	hjam lock_otp,core_misc_ctrl	// disable further read/write of key
+	arg mem_ucode_keybuf,contr
+	call load_key
+	enable user					// set user for aes
+loadcode_otp:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_3,mem_patch2f
+	fetch 2,mem_otp_ucode_flag
+	byteswap pdata,pdata
+	arg 0x7ff,temp
+	iand temp,pdata
+	branch loadcode_spi, zero
+	call otp_set_addr
+	arg otpd_read_code,regc
+	call get_iv,user
+	call load_storage
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_otp,true	// crc error, try again
+loadcode_spi:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_4,mem_patch2f
+	call otp_disable_chgpump
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_flash, loadcode_iic
+	setarg 0x0
+	store 3,mem_addr_hi
+	call spid_init_flash
+	arg spid_read_flash,regc
+	call read_first_block
+	call load_storage
+	nbranch loadcode_iic,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_spi,true	// crc error, try again
+loadcode_iic:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_5,mem_patch2f
+	call clear_eeprom_size_2k
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_eep,loadcode_hci
+	call loadcode_iic_by_eeprom
+	nbranch loadcode_iic_eeprom_2k,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_iic,true	// crc error, try again
+	branch loadcode_hci
+loadcode_iic_eeprom_2k:
+	call set_eeprom_size_2k
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_eep,loadcode_hci
+	call loadcode_iic_by_eeprom
+	nbranch loadcode_hci,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_iic_eeprom_2k,true	// crc error, try again
+loadcode_hci:
+	force regidx_key,regext_index
+	call aes_clear
+	hjam 0x21,core_clkoff			// enable debug uart
+	fetch 1,mem_otp_ucode_flag
+	rtnbit0 otp_uflag_hci
+	call hci_init
+loadcode_hci_loop:
+	call hci_rx_packet
+	branch loadcode_hci_loop
+
+
+loadcode_iic_by_eeprom:
+	setarg 0x0
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	call iicd_init_12m
+	call read_first_block
+	branch load_storage
+
+
+
+/* true flag is set into status */
+set_ucode_status:
+	fetch 1,mem_ucode_status
+	lshift pdata,pdata
+	setflag true,0,pdata
+	isolate0 15,rega
+	rtn true
+	store 1,mem_ucode_status
+	rtn
+
+	/* queue is bit position of hw done status */
+decrypt_code:
+	hfetch 1,core_gpio_key2
+	rtnbit0 5
+	branch decrypt_code_skip	/* skip to key generation at first for speed */
+decrypt_code_loop:
+	hfetch 1,core_dma_status
+	qisolate1 pdata
+	rtn true
+decrypt_code_skip:
+	hfetch 1,core_misc_status
+	bbit0 1,decrypt_code_loop
+	call do_aes_cbc
+	branch decrypt_code_loop
+
+
+
+load_ucode:
+	fetch 2,mem_patch_ptr
+	rtn blank
+	hjam 0x80, core_ucode_ctrl
+	hjam 0,core_ucode_hi
+	hjam 0,core_ucode_low
+	fetcht 2,mem_patch_len
+	lshift2 temp,loopcnt
+	iforce contr
+load_ucode_loop:
+	ifetch 1,contr
+	hstore 1,core_ucode_data
+	loop load_ucode_loop
+	hjam 0x0, core_ucode_ctrl
+	rtn
+
+
+/* ===================== SPI dma ======================= */
+
+spid_init:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_6,mem_patch2f
+	fetch 1,mem_spi_init_clk
+	hstore 1,core_spid_ctrl	// A7530 should at least 34, or write fail
+	fetch 1,mem_spi_init_delay_time
+	hstore 1,core_spid_delay	// 4us delay
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	setarg mem_spid_rbuf
+	hstore 2,core_spid_rxaddr
+	hfetch 1,core_gpio_sel1
+	set1 0,pdata
+	set0 1,pdata
+	hstore 1,core_gpio_sel1
+	rtn
+
+spid_reset:
+	hfetch 1,core_spid_ctrl
+	set1 7,pdata
+	hstore 1,core_spid_ctrl
+	set0 7,pdata
+	hstore 1,core_spid_ctrl
+	rtn
+
+
+/* pdata 6:0 is reg address, 15:8 is data to write */
+spid_write_reg:
+	set1 7,pdata
+	store 2,mem_spid_tbuf
+	set1 mark_ext_patch,mark
+	bpatch patch2f_7,mem_patch2f
+	hjam 2,core_spid_txlen
+	hjam 0,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+
+/* pdata 6:0 is reg address */
+spid_read_reg:
+	force 1,temp
+/* pdata 6:0 is burst reg address, temp is bytes to read */
+spid_read_regs:
+//	nop 100
+	store 1,mem_spid_tbuf
+	set1 mark_ext_patch,mark
+	bpatch patch30_0,mem_patch30
+	hjam 1,core_spid_txlen
+	hstoret 2,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	call wait_spid_done
+	fetch 1,mem_spid_rbuf
+	rtn
+
+wait_spid_done:
+	fetch 2,mem_afh_error_total
+	increase 1,pdata
+	store 2,mem_afh_error_total
+	hfetch 1,core_dma_status
+	bbit0 spid_done,wait_spid_done
+	rtn
+
+spid_init_flash:
+	hjam 0x40,core_spid_ctrl
+	hjam 0x0,core_spid_delay
+	hfetch 1,core_gpio_sel1
+	set0 0,pdata
+	set1 1,pdata
+	hstore 1,core_gpio_sel1
+	setarg 0
+	store 4,mem_spid_tbuf
+	rtn
+
+spid_unlock_flash:
+	setarg 0
+	hstore 2,core_spid_rxlen
+	setarg 1
+	hstore 1,core_spid_txlen
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	jam 6,mem_spid_tbuf
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+
+
+	/* pdata is flash address, rega pointers to txdata(4 ahead bytes should be left), temp is length */
+spid_write_flash:
+	increase 4,temp
+	hstoret 2,core_spid_txlen
+	increase -4,rega
+	arg 2,temp
+	istoret 1,rega
+	rshift16 pdata,temp
+	istoret 1,contw
+	rshift8 pdata,temp
+	istoret 1,contw
+	istore 1,contw
+	deposit rega
+	hstore 2,core_spid_txaddr
+	setarg 0
+	hstore 2,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+	
+
+/* temp is length, rega pointers to buf */
+spid_read_flash:
+	hstoret 2,core_spid_rxlen
+	setarg 4
+	hstore 2,core_spid_txlen
+	jam 3,mem_spid_tbuf
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	deposit rega
+	hstore 2,core_spid_rxaddr
+	hfetch 1,core_spid_ctrl
+	isolate0 15,rega
+	setflag true,6,pdata
+	hstore 1,core_spid_ctrl
+	hjam spid_start,core_misc_ctrl
+spi_read_flash_wait:
+	hfetch 1,core_dma_status
+	bbit1 7,spi_read_flash_wait			// waiting for spid write
+	arg spid_done,queue
+	call decrypt_code
+	call wait_spid_done
+	isolate1 spid_crcok,pdata
+	call set_ucode_status
+	fetch 1,mem_addr_hi
+	lshift16 pdata,regb
+	fetch 1,mem_addr_mi
+	lshift8 pdata,pdata
+	ior regb,regb
+	fetch 1,mem_addr_lo
+	ior regb,pdata
+	iadd temp,pdata
+	store 1,mem_addr_lo
+	rshift8 pdata,pdata
+	store 1,mem_addr_mi
+	rshift8 pdata,pdata
+	store 1,mem_addr_hi
+	rtn
+
+
+/* ===================== I2C dma ======================= */
+
+/*iicd_init_5m:
+	hjam 0xa,core_clksel			// use 5M rc clock to load eeprom
+	hjam 2,core_iicd_scl_low
+ 	hjam 3,core_iicd_scl_high
+	hjam 3,core_iicd_start_setup
+	hjam 3,core_iicd_start_hold
+	hjam 3,core_iicd_stop_setup
+	hjam 2,core_iicd_data_setup
+	rtn
+*/
+iicd_init_12m:
+	hjam 5,core_iicd_scl_low
+ 	hjam 7,core_iicd_scl_high
+	hjam 7,core_iicd_start_setup
+	hjam 7,core_iicd_start_hold
+	hjam 7,core_iicd_stop_setup
+	hjam 5,core_iicd_data_setup
+	rtn
+
+
+
+wait_iicd_done:
+	hfetch 1,core_dma_status
+	bbit0 iicd_done,wait_iicd_done
+	rtn
+
+/*
+pdata is tx length
+rega is points to tx buffer
+regb is points to rx buffer
+temp is rx length
+*/
+iicd_read_data:
+	hstore 2,core_iicd_txlen
+	deposit rega
+	hstore 2,core_iicd_txaddr	
+	deposit regb
+	hstore 2,core_iicd_rxaddr
+	deposit temp	
+	hstore 2,core_iicd_rxlen
+	arg 1,temp
+	nsetflag blank,1,temp
+	hstore 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	branch wait_iicd_done
+
+
+set_eeprom_size_2k:
+	set1 mark_eeprom_size,mark
+	jam 0x08,mem_eeprom_block_size
+	rtn
+
+clear_eeprom_size_2k:
+	set0 mark_eeprom_size,mark
+	jam 0x20,mem_eeprom_block_size
+	rtn
+
+
+iicd_read_eep_data_size_2k:
+ 	fetch 1,mem_eeprom_base
+	iadd regb,pdata
+	store 1,mem_addr_mi
+	branch iicd_read_eep_size_2k
+
+iicd_read_eep_size_2k_lcadcode:
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	store 1,mem_addr_mi
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr:pdata
+iicd_read_eep_size_2k:
+ 	setarg 3
+	hstore 2,core_iicd_txlen
+	jam 0xa0,mem_iicd_tbuf
+	jam 0xa1,mem_iicd_tbuf+2
+	branch iicd_read_eep_common
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr offset:regb
+iicd_read_eep_data:
+	set1 mark_ext_patch,mark
+	bpatch patch30_1,mem_patch30
+	bmark1 mark_eeprom_size,iicd_read_eep_data_size_2k
+	fetch 2,mem_eeprom_base
+	iadd regb,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+
+/* rega pointers to buf, temp is length  */
+iicd_read_eep:
+	set1 mark_ext_patch,mark
+	bpatch patch30_2,mem_patch30
+	bmark1 mark_eeprom_size,iicd_read_eep_size_2k_lcadcode
+	nop 30000
+	setarg 4
+	hstore 2,core_iicd_txlen
+	jam 0xa0,mem_iicd_tbuf
+	jam 0xa1,mem_iicd_tbuf+3
+iicd_read_eep_common:	
+	setarg mem_iicd_tbuf
+	hstore 2,core_iicd_txaddr
+	hstoret 2,core_iicd_rxlen
+	deposit rega
+	hstore 2,core_iicd_rxaddr
+	setarg 2
+	isolate0 15,rega
+	setflag true,0,pdata
+	hstore 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	arg iicd_done,queue
+	call decrypt_code
+	call wait_iicd_done
+	isolate1 iicd_crcok,pdata
+	call set_ucode_status
+	bmark1 mark_eeprom_size,iicd_read_eep_load_code_size_2k
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	rtn
+
+iicd_read_eep_load_code_size_2k:
+	fetch 1,mem_addr_mi
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	rtn
+	
+
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr offset:regb
+iicd_write_eep_data:
+	fetch 2,mem_eeprom_base
+	iadd regb,pdata
+
+//cuur ptr:pdata length:temp buf:rega
+iicd_write_ota_data:
+	store 2,mem_pdatatemp //curr ptr
+	set1 mark_ext_patch,mark
+	bpatch patch30_3,mem_patch30
+	storet 2,mem_temp	//len
+	copy rega,pdata
+	store 2,mem_contr
+iicd_write_eep_loop:
+	call iicd_eep_transparency
+
+	fetcht 2,mem_regb
+	fetch 2,mem_contr
+	copy pdata,rega
+	fetch 2,mem_pdatatemp
+	
+	call iicd_write_eep
+	
+
+	
+	fetch 2,mem_regb
+	fetcht 2,mem_contr
+	iadd temp,temp
+	storet 2,mem_contr
+	fetcht 2,mem_pdatatemp
+	iadd temp,temp
+	storet 2,mem_pdatatemp
+	fetch 2,mem_temp
+	nbranch iicd_write_eep_loop,blank
+	rtn
+	
+//in:
+//1.size 2.len 3.src 4.des
+//mem_regc page's area
+//mem_pdatatemp curr ptr
+//mem_temp all len      
+//mem_regb curr len
+iicd_eep_transparency:
+	set1 mark_ext_patch,mark
+	bpatch patch30_4,mem_patch30
+	fetch 2,mem_eeprom_block_size
+	increase -1,pdata
+	fetcht 2,mem_pdatatemp
+	ior temp,pdata
+	increase 1,pdata
+	store 3,mem_regc
+
+	fetch 2,mem_temp
+	iadd temp,pdata
+
+	fetcht 3,mem_regc
+	isub temp,pdata
+	nbranch iicd_eep_deal_short_packet,positive
+	store 2,mem_temp
+	fetch 3,mem_regc
+	fetcht 2,mem_pdatatemp
+	isub temp,pdata
+	store 2,mem_regb
+	rtn
+iicd_eep_deal_short_packet:
+	fetch 2,mem_temp
+	store 2,mem_regb
+	setarg 0
+	store 2,mem_temp
+	rtn
+
+iicd_write_eep_size_2k:
+	increase 2,temp
+	hstoret 2,core_iicd_txlen
+	increase -2,rega
+	ifetcht 3,rega
+	copy temp,regb
+	arg 0xa0,temp
+	istoret 1,rega
+//	byteswap pdata,pdata
+	istore 1,contw
+	branch iicd_write_eep_common
+
+	/* pdata is eeprom address, rega pointers to txdata(3 ahead bytes should be left), temp is length */
+iicd_write_eep:
+	copy pdata,regb
+	set1 mark_ext_patch,mark
+	bpatch patch30_5,mem_patch30
+	nop 30000
+	bmark1 mark_eeprom_size,iicd_write_eep_size_2k
+	copy regb,pdata
+	increase 3,temp
+	hstoret 2,core_iicd_txlen
+	increase -3,rega
+	ifetcht 3,rega
+	copy temp,regb
+	arg 0xa0,temp
+	istoret 1,rega
+	byteswap pdata,pdata
+	istore 2,contw
+iicd_write_eep_common:	
+	deposit rega
+	hstore 2,core_iicd_txaddr
+	setarg 0
+	hstore 2,core_iicd_rxlen
+	hjam 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	call wait_iicd_done
+	copy regb,pdata
+	istore 3,rega
+	nop 10000
+	nop 10000
+	nop 10000
+	rtn
+
+/* ===================== OTP ======================= */
+
+otp_enable_chgpump:
+	hjam 0x70,rfen_chgpump
+	nop param_chgpump_delay
+	rtn
+
+otp_disable_chgpump:
+	hjam 0x30,rfen_chgpump
+	rtn
+	
+otp_set_addr:
+	lshift3 pdata,pdata
+	hstore 2,core_otp_addr
+	hjam 0,core_otpd_ctrl
+	rtn	
+
+/* pdata = otp address, rega pointers data, loopcnt is count */
+otp_write:
+	call otp_set_addr
+	call otp_ce
+otp_program:
+	ifetcht 1,rega
+	increase 1,rega
+	force 0,queue
+otp_program_bit:
+	qisolate0 temp
+	branch otp_skip_0,true
+	hfetch 1,core_otp_din
+	set1 6,pdata				/* din */
+	set1 7,pdata				/* dle */
+	hstore 1,core_otp_din
+	hjam 0x02,core_otp_ctrl	/* web */
+	hjam 0x82,core_otp_ctrl
+	set0 7,pdata				/* dle */
+	hstore 1,core_otp_din
+	hjam 0x8a,core_otp_ctrl	/* pgmen */
+	nop 11
+	hjam 0xca,core_otp_ctrl	/* vppen */
+	nop 33
+	hjam 0x4a,core_otp_ctrl	/* web 2nd */
+	nop 44
+	hjam 0xca,core_otp_ctrl	/* release web */
+	nop 22
+	hjam 0x8a,core_otp_ctrl	/* release vppen */
+	nop 33
+	hjam 0x82,core_otp_ctrl	/* release pgmen */
+	nop 1
+	hjam 0x92,core_otp_ctrl	/* pgmvfy */
+	nop 10
+	hjam 0xb2,core_otp_ctrl	/* readen */
+	hfetch 1,core_otp_rdata
+	hjam 0x92,core_otp_ctrl	/* release readen */
+	nop 1
+	hjam 0x82,core_otp_ctrl	/* release pgmvfy */
+	qisolate0 pdata
+	branch otp_program_bit,true	/* program error */
+otp_skip_0:
+	hfetch 2,core_otp_addr
+	increase 1,pdata
+	hstore 2,core_otp_addr
+	increase 1,queue
+	compare 8,queue,0xf
+	nbranch otp_program_bit,true
+	loop otp_program
+	hjam 0x83,core_otp_ctrl
+	rtn
+
+otp_ce:
+	hjam 0x82,core_otp_ctrl	/* ceb */
+	nop 12
+	hjam 0x80,core_otp_ctrl	/* rstn */
+	hjam 0x82,core_otp_ctrl	/* release rstn */
+	nop 150					/* waiting for vdd25 stable */
+	rtn
+
+	/* rega points to data, temp is count */
+otpd_read_init:
+	call otp_ce
+	hjam 0xa2,core_otp_ctrl	/* readen */
+	deposit rega
+	hstore 2,core_otpd_addr
+	set1 11,temp
+	isolate0 15,pdata
+	setflag true,15,temp
+	hstoret 2,core_otpd_len
+	hjam otpd_start,core_misc_ctrl
+	rtn
+
+otpd_wait_end:
+	hfetch 1,core_dma_status
+	bbit0 otpd_done,otpd_wait_end
+	rtn
+	
+	/* pdata=otp address, rega points to data, temp is count */
+otpd_read_data:
+	call otp_set_addr
+	call otpd_read_init
+	call otpd_wait_end
+	hjam 0x83,core_otp_ctrl	/* release ceb */
+	rtn
+
+
+
+/* rega pointers to buf, temp is length */
+otpd_read_code:	
+	hfetch 2,core_current_otp_addr
+	hstore 2,core_otp_addr
+	call otpd_read_init
+	arg otpd_done,queue
+	call decrypt_code
+	call otpd_wait_end
+	isolate1 otpd_crcok,pdata	
+	call set_ucode_status
+	hjam 0x83,core_otp_ctrl	/* release ceb */
+	rtn
+
+/* ===================== uart dma ======================= */
+uartd_prepare_tx:
+	hfetch 2,core_uart_twptr
+	iforce contwu
+	rtn
+
+uartd_send:
+	deposit contwu
+	hstore 2,core_uart_twptr
+	rtn
+
+uartd_rxdone:
+	deposit contru
+	hstore 2,core_uart_rrptr
+	rtn
+
+uart_set_baud_by_mem:
+	fetch uart_baud_len,mem_baud
+	hstore uart_baud_len,core_uart_baud
+	rtn
+
+uart_copy_tx_bytes_fast:
+	deposit loopcnt
+	rtn blank
+uart_copy_tx_bytes_fast_loop:
+	increase -8,loopcnt
+	call uart_tx_8_bytes,positive
+	rtn zero
+	branch uart_copy_tx_bytes_fast_loop,positive
+	increase 8,loopcnt
+uart_copy_tx_bytes_fast_loop_four:
+	increase -4,loopcnt
+	call uart_tx_4_bytes,positive
+	rtn zero
+	branch uart_copy_tx_bytes_fast_loop_four,positive
+	increase 4,loopcnt
+	branch uart_copy_tx_bytes
+
+uart_tx_8_bytes:
+	ifetch 8,contr
+	istore 8,contwu
+	rtn
+
+uart_tx_4_bytes:
+	ifetch 4,contr
+	istore 4,contwu
+	rtn
+
+uart_copy_tx_bytes:
+	deposit loopcnt
+	rtn blank
+uart_copy_tx_bytes_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop uart_copy_tx_bytes_loop
+	rtn
+
+uart_copy_rx_bytes_fast:
+	deposit loopcnt
+	rtn blank
+uart_copy_rx_bytes_fast_loop:
+	increase -8,loopcnt
+	call uart_rx_8_bytes,positive
+	rtn zero
+	branch uart_copy_rx_bytes_fast_loop,positive
+	increase 8,loopcnt
+uart_copy_rx_bytes_fast_loop_four:
+	increase -4,loopcnt
+	call uart_rx_4_bytes,positive
+	rtn zero
+	branch uart_copy_rx_bytes_fast_loop_four,positive
+	increase 4,loopcnt
+	branch uart_copy_rx_bytes
+
+uart_rx_8_bytes:
+	ifetch 8,contru
+	istore 8,contw
+	rtn
+
+uart_rx_4_bytes:
+	ifetch 4,contru
+	istore 4,contw
+	rtn
+
+
+uart_copy_rx_bytes:
+	deposit loopcnt
+	rtn blank
+uart_copy_rx_bytes_loop:
+	ifetch 1,contru
+	istore 1,contw
+	loop uart_copy_rx_bytes_loop
+	rtn
+
+
+/* ===================== eeprom data ======================= */
+
+check_51cmd_update_device_record:
+	set1 mark_ext_patch,mark
+	bpatch patch30_6,mem_patch30
+	fetch 1,mem_nv_data_number
+	rtn blank		// not nv data
+	call check_nvram
+	call init_device_list,zero
+	call nvram_find_addr_from_bd_list
+write_device_record:
+	fetch 1,mem_nv_data_number
+	icopy regc
+	fetcht 2,mem_nv_data_ptr
+	storet 2,mem_list_item_ptr
+write_device_loop_find:
+	copy regc,pdata
+	branch module_hci_event_store_device,blank  //EEPROM
+	increase -1,regc
+	copy temp,rega
+	ifetch 1,rega
+	fetcht 1,mem_select_list_item
+	isub temp,null
+	call set_index_finded_device,zero
+	branch write_device_loop_find0,positive
+	ifetch 1,rega
+	increase 1,pdata
+	istore 1,rega
+write_device_loop_find0:
+	fetcht 2,mem_list_item_ptr
+	increase NV_DATA_LEN,temp
+	storet 2,mem_list_item_ptr
+	branch write_device_loop_find
+
+set_index_finded_device:
+	setarg 0
+	istore 1,rega
+	fetch 1,mem_temp_reconn_record
+	istore 1,contw	
+	bne REC_3_MODE,set_index_finded_device_ble_mode
+	arg mem_link_key,regb
+set_index_find_device_MASTER_ADDR:
+	ifetch 6,contr
+	istore 8,contw
+	setarg 0
+	istore 8,contw
+	copy regb,contr
+store_rec_data_common:
+	call memcpy16
+	force 1,null
+	rtn
+
+set_index_finded_device_ble_mode:
+	beq REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,set_index_finded_device_IRK
+	beq REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,set_index_finded_device_EDIV
+	arg mem_le_ltk,regb
+	branch set_index_find_device_MASTER_ADDR
+
+set_index_finded_device_IRK:
+	arg mem_le_irk,contr
+	call memcpy16
+store_ble_rec_data_common:
+	arg mem_le_ltk,contr
+	branch store_rec_data_common
+
+set_index_finded_device_EDIV:
+	arg mem_le_rand,contr
+	call memcpy16
+	branch store_ble_rec_data_common
+
+
+nvram_find_addr_from_bd_list:
+	call disable_usr
+	fetch 1,mem_nv_data_number
+	rtn blank		// not nv data
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,find_addr_from_bd_list_SPP_mode
+//	bbit1 UI_STATE_BLE_CONNECTED,find_addr_from_bd_list_ble_mode
+find_addr_from_bd_list_ble_mode:
+	fetch 1,mem_le_conn_peer_addr_type
+	beq MASTER_PUBLIC_ADDR,find_addr_from_bd_list_static_addr
+	fetch 1,mem_le_plap+5
+	compare 0xc0,pdata,0xc0
+	branch find_addr_from_bd_list_static_addr,true
+	compare 0x40,pdata,0xc0
+	branch find_addr_from_bd_list_random_addr,true
+	compare 0x00,pdata,0xc0
+	branch find_addr_from_bd_list_random_non_resolvable_private_address,true
+find_addr_from_bd_list_static_addr:
+	jam REC_4_MODE_STATIC_ADDRESS,mem_temp_reconn_record
+	fetch 6,mem_le_plap
+	branch find_addr_from_bd_list_common
+	
+find_addr_from_bd_list_random_non_resolvable_private_address:	
+	jam REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,mem_temp_reconn_record
+	branch find_addr_from_bd_list_common
+
+//input :pdata EDIV and rands
+find_addr_from_bd_list_random_addr:
+	jam REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,mem_temp_reconn_record
+	branch find_addr_from_bd_list_common
+	
+//input :pdata EDIV and rands
+find_addr_from_bd_list_SPP_mode:
+	set1 mark_ext_patch,mark
+	bpatch patch30_7,mem_patch30
+	jam REC_3_MODE,mem_temp_reconn_record
+	fetch 6,mem_plap
+find_addr_from_bd_list_common:
+	store 6,mem_temp_reconn_record+1
+	fetch 2,mem_nv_data_ptr
+	ifetcht 1,pdata
+	pincrease 1
+	store 2,mem_list_item_ptr
+	storet 1,mem_select_list_item
+	fetch 1,mem_nv_data_number
+	icopy regc
+nvram_find_addr_from_list:
+	fetch 2,mem_list_item_ptr
+	copy pdata,rega
+	call nvram_find_addr_from_list_compare
+	rtn user
+	fetcht 2,mem_list_item_ptr
+	increase NV_DATA_LEN,temp
+	storet 2,mem_list_item_ptr
+	increase -1,temp
+	ifetch 1,temp
+	store 1,mem_select_list_item
+	increase -1,regc
+	nbranch nvram_find_addr_from_list,zero
+	fetch 1,mem_nv_data_number
+	pincrease DECREASED_ONE
+	store 1,mem_select_list_item
+	rtn
+nvram_find_addr_from_list_compare:
+	fetch 1,mem_temp_reconn_record
+	bne REC_3_MODE,find_addr_from_list_compare_ble_mode
+find_master_addr_from_list_compare:
+	arg mem_temp_reconn_record,regb
+	arg 7,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+
+find_addr_from_list_compare_ble_mode:
+	beq REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS,find_irk_form_list_compare
+	beq REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS,find_ediv_form_list_compare
+	branch find_master_addr_from_list_compare
+
+find_irk_form_list_compare:
+	ifetcht 1,rega
+	isub temp,null
+	nrtn zero
+	arg mem_le_prand,contw
+	arg 16,loopcnt
+	call clear_mem
+	fetch 3,mem_le_plap+3
+	store 3,mem_le_prand
+	call genernate_master_MacAddress
+	fetch 2,mem_le_aes_128+13
+	byteswap pdata,pdata
+	lshift8 pdata,temp
+	ifetch 1,contr
+	iadd temp,pdata
+	fetcht 3,mem_le_plap
+	isub temp,null
+	branch enable_usr,zero
+	rtn
+
+
+genernate_master_MacAddress:
+	arg mem_le_prand ,contr
+	call load_data128
+//	arg mem_le_irk,contr
+	ifetch 1,rega
+	call load_regext
+	force 0x38,aes_ctrl
+	force 0x0,aes_ctrl
+	call wait_aes
+	arg mem_le_aes_128,contw
+	branch store_aes_result
+
+find_ediv_form_list_compare:
+	ifetcht 1,rega
+	isub temp,null
+	nrtn zero
+	copy contr,rega
+	add contr,8,regc
+	arg mem_le_rand,regb
+	arg 8,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	copy regc,rega
+	arg mem_le_irk,regb
+	arg 8,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+
+check_nvram:
+	fetch 2,mem_nv_data_ptr
+	ifetcht 1,pdata
+	pincrease NV_DATA_LEN
+	ifetch 1,pdata
+	isub temp,null
+	rtn
+
+init_device_list:
+	fetch 1,mem_nv_data_number
+	icopy loopcnt
+	fetcht 2,mem_nv_data_ptr
+	setarg 0
+init_device_list_loop:
+	istore 1,temp
+	increase NV_DATA_LEN,temp
+	pincrease 1
+	loop init_device_list_loop
+	rtn
+
+load_device_list:
+	set1 mark_ext_patch,mark
+	bpatch patch31_0,mem_patch31
+	call nvram_find_addr_from_bd_list
+	nbranch clear_key_exists,user
+	add rega,10,contr
+//	copy rega,contr
+	arg mem_link_key,contw
+	call  memcpy16
+	branch check_link_key_load
+clear_key_exists:
+	jam 0,mem_link_key_exists
+	rtn
+
+load_device_list_mode_4:
+	fetch 9,mem_le_ediv
+	branch clear_ltk_exists,blank
+	call nvram_find_addr_from_bd_list
+	nbranch clear_ltk_exists,user
+	fetch 2,mem_list_item_ptr
+	add pdata,1,contr
+	arg mem_le_irk,contw
+	call  memcpy16
+	arg mem_le_ltk,contw
+	call  memcpy16
+	jam 1,mem_ltk_exists
+	rtn
+
+load_device_list_mode_4_shutter:
+	fetch 2,mem_le_ediv
+	nbranch load_device_list_mode_4_shutter_label,blank
+	fetch 6,mem_le_rand
+	branch clear_ltk_exists_iphone_lost_ltk,blank
+load_device_list_mode_4_shutter_label:
+	jam LTK_NOT_LOST,mem_ltk_states
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	jam 1,mem_ltk_exists
+	rtn
+
+clear_ltk_exists_iphone_lost_ltk:
+	jam IPHONE_LOST_LTK,mem_ltk_states
+clear_ltk_exists:
+	jam 0,mem_ltk_exists
+	rtn
+
+
+eeprom_store_le_reconn_info:
+	fetch 6,mem_le_plap
+	store 6,mem_temp_lap
+	jam REC_4_MODE,mem_record_bt_mode
+	branch eeprom_store_reconn_info
+eeprom_store_bd_reconn_info:
+	fetch 6,mem_plap
+	store 6,mem_temp_lap
+	jam REC_3_MODE,mem_record_bt_mode
+eeprom_store_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch31_1,mem_patch31
+	fetch 1,mem_device_option
+	beq dvc_op_module,check_51cmd_update_device_record
+	call eeprom_store_remote_bdaddr
+	call eeprom_store_last_record_index
+	fetch 1,mem_record_bt_mode
+	beq REC_4_MODE,eeprom_store_rec_4_mode
+	beq REC_3_MODE,eeprom_store_link_key
+	rtn
+eeprom_store_rec_4_mode:
+	call eeprom_store_le_ltl
+	branch eeprom_store_le_local_addr
+	
+//
+eeprom_load_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch31_2,mem_patch31
+	call eeprom_load_reconn_bdaddr
+	fetch 1,mem_select_list_item
+	rtneq 0xff
+	fetch 6,mem_temp_lap
+	store 6,mem_hci_plap
+	fetch 1,mem_record_bt_mode
+	store 1,mem_xrecord_mode
+	beq REC_3_MODE,eeprom_load_rec_3_mode
+	beq REC_4_MODE,eeprom_load_rec_4_mode
+	rtn
+eeprom_load_reconn_bdaddr:
+	call eeprom_load_last_record_index
+	fetch 1,mem_select_list_item
+	rtneq 0xff
+	branch eeprom_load_remote_bdaddr
+eeprom_load_rec_3_mode:
+	call eeprom_load_link_key
+	branch check_link_key_load
+eeprom_load_rec_4_mode:
+	call eeprom_load_ltk_key
+	branch check_ltk_load
+
+
+
+eeprom_erase_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch31_4,mem_patch31
+	setarg 0x0
+	store 3,mem_plap
+	istore 3,contw
+	branch eeprom_store_remote_bdaddr
+	
+eeprom_load_last_record_index:
+	arg 1,temp
+	arg mem_select_list_item,rega
+	arg eeprom_last_record,regb
+	branch iicd_read_eep_data
+
+eeprom_store_last_record_index:
+	arg 1,temp
+	arg mem_select_list_item,rega
+	arg eeprom_last_record,regb
+	branch iicd_write_eep_data
+
+
+eeprom_store_remote_bdaddr:
+	set1 mark_ext_patch,mark
+	bpatch patch31_5,mem_patch31
+	call eeprom_load_bdaddr_list
+	disable user
+	call find_addr_from_bd_list
+	rtn user
+eeprom_store_remote_addr_unfind:
+	jam 0,mem_select_list_item
+	fetch 6,mem_temp_lap
+	store 6,mem_bdaddr_list_buff+1
+	fetch 1,mem_record_bt_mode
+	store 1,mem_bdaddr_list_buff
+	arg 28,temp
+	arg mem_bdaddr_list_buff,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_write_eep_data
+
+
+eeprom_store_le_local_addr:
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_le_reconn_local_addr,regb
+	branch iicd_write_eep_data
+	
+eeprom_load_le_loacal_addr:
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_le_reconn_local_addr,regb
+	branch iicd_read_eep_data
+
+
+eeprom_load_remote_bdaddr:
+	set1 mark_ext_patch,mark
+	bpatch patch31_6,mem_patch31
+	arg 7,temp
+	arg mem_temp_reconn_record,rega
+	arg eeprom_bdaddr_list,regb
+	fetch 1,mem_select_list_item
+	mul32 pdata,7,pdata
+	iadd regb,regb
+	branch iicd_read_eep_data
+
+eeprom_linkkey_addr:
+	arg 0x10,temp
+	arg eeprom_linkkey_list,regb
+	fetch 1,mem_select_list_item
+	lshift4 pdata,pdata
+	iadd regb,regb
+	rtn
+	
+eeprom_store_le_ltl:
+	arg mem_le_ltk,rega
+	branch eeprom_store_link_key_common
+eeprom_store_link_key:
+	arg mem_link_key,rega
+eeprom_store_link_key_common:
+	set1 mark_ext_patch,mark
+	bpatch patch31_7,mem_patch31
+	call eeprom_linkkey_addr
+	branch iicd_write_eep_data
+
+eeprom_load_ltk_key:
+	arg mem_le_ltk,rega
+	branch eeprom_load_link_key_common
+eeprom_load_link_key:
+	arg mem_link_key,rega
+eeprom_load_link_key_common:
+	set1 mark_ext_patch,mark
+	bpatch patch32_0,mem_patch32
+	call eeprom_linkkey_addr
+	branch iicd_read_eep_data
+
+
+	
+eeprom_load_bdaddr_list:
+	arg 28,temp
+	arg mem_bdaddr_list_buff+7,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_read_eep_data
+
+
+find_addr_from_bd_list:
+	set1 mark_ext_patch,mark
+	bpatch patch32_1,mem_patch32
+	setarg mem_bdaddr_list_buff+7
+	store 2,mem_list_item_ptr
+	jam 0,mem_select_list_item
+	arg 4,loopcnt
+find_addr_from_list:
+	copy loopcnt,pdata
+	store 1,mem_pdatatemp
+	fetch 2,mem_list_item_ptr
+	copy pdata,rega
+	call find_addr_from_list_compare
+	rtn user
+	fetch 2,mem_list_item_ptr
+	increase 7,pdata
+	store 2,mem_list_item_ptr
+	fetch 1,mem_select_list_item
+	increase 1,pdata
+	store 1,mem_select_list_item
+	fetch 1,mem_pdatatemp
+	copy pdata,loopcnt
+	loop find_addr_from_list
+	rtn
+
+
+check_link_key_load:
+	fetch 8,mem_link_key
+	fetcht 8,mem_link_key+8
+	ior temp,pdata
+	rtn blank
+	jam 1,mem_link_key_exists
+	rtn
+check_ltk_load:
+	fetch 6,mem_hci_plap
+	rtn blank
+	jam 1,mem_ltk_exists
+	rtn
+
+find_addr_from_list_compare:
+	arg mem_temp_reconn_record,regb
+	arg 7,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+enable_usr:
+	enable user
+	rtn
+
+
+/* =============== GPIO CONTROL ================= */
+
+
+	//temp [4:0]=GPIO number, 0-31, 
+gpio_set_wake_by_current_state:
+	set1 mark_ext_patch,mark
+	bpatch patch32_2,mem_patch32
+	set1 7,temp
+	call gpio_get_bit
+	nsetflag true,7,temp
+	//branch gpio_set_wake
+	//fall through
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_set_wake:
+	set1 mark_ext_patch,mark
+	bpatch patch32_3,mem_patch32
+	isolate0 7,temp
+	and temp,0x1f,queue
+	fetch 4,mem_gpio_wakeup_low
+	qsetflag true,pdata
+	store 4,mem_gpio_wakeup_low
+	fetch 4,mem_gpio_wakeup_high
+	nqsetflag true,pdata
+	store 4,mem_gpio_wakeup_high
+	rtn
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_clr_wake:
+	set1 mark_ext_patch,mark
+	bpatch patch32_4,mem_patch32
+	isolate0 7,temp
+	and temp,0x1f,queue
+	fetch 4,mem_gpio_wakeup_low
+	qset0 pdata
+	store 4,mem_gpio_wakeup_low
+	fetch 4,mem_gpio_wakeup_high
+	qset0 pdata
+	store 4,mem_gpio_wakeup_high
+	rtn
+
+
+gpio_config_input_nowake:
+	call gpio_clr_wake
+	branch gpio_config_input_without_wake
+
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_config_input:
+	ncall gpio_set_wake,wake
+
+gpio_config_input_without_wake:
+	arg core_gpio_pd0,contw
+	call gpio_set_bit
+	setflip gpio_active_bit,temp
+	arg core_gpio_pu0,contw
+	call gpio_set_bit
+	set0 gpio_active_bit,temp
+	arg core_gpio_oe0,contw
+	branch gpio_set_bit
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active. set gpio to inactive state
+gpio_config_output:	
+	setflip gpio_active_bit,temp
+	call gpio_out
+gpio_config_output0:
+	set1 gpio_active_bit,temp
+	arg core_gpio_oe0,contw
+	branch gpio_set_bit
+	
+gpio_common:
+	and temp,0x07,queue
+	rshift3 temp,pdata
+	and_into 3,pdata
+	iadd contw,contw
+	ifetch 1,contw
+	rtn
+
+gpio_check_active:
+	arg core_gpio_out0,contw
+	branch get_bit_common
+
+	
+	/* temp is gpio number, return true if gpio active */
+gpio_get_bit:
+	arg core_gpio_in,contw
+get_bit_common:
+	call gpio_common
+	isolate1 gpio_active_bit,temp
+	branch gpio_get_bit_reverse,true
+	qisolate0 pdata
+	rtn
+gpio_get_bit_reverse:
+	qisolate1 pdata
+	rtn
+
+gpio_out_inactive:
+	isolate1 7,null
+	branch gpio_out_flag
+
+gpio_out_active:
+	isolate0 7,null
+
+	/* temp is gpio number,  [7]=1,set out equa true flag if gpio active */
+gpio_out_flag:
+	setarg 0
+	nsetflag true,gpio_active_bit,pdata
+	ixor temp,temp
+	
+	/* temp is gpio number,0-31, [7]=out bit value */
+gpio_out:
+	arg core_gpio_out0,contw
+
+	//temp [4:0]=GPIO number, 0-31, [7]=bit value; contw is gpio reg base
+gpio_set_bit:
+	call gpio_common
+	isolate1 gpio_active_bit,temp
+	qsetflag true,pdata
+	istore 1,contw
+	rtn
+
+gpio_set_before_lpm_common:
+	arg -1,rega
+	hfetch 1,core_gpio_sel1
+	isolate1 1,pdata
+	call neglact4_from_23_pin,true	//spi
+	 
+	and pdata,0x3,regb
+	sub regb,1,null
+	call neglact2_form_25_pin,zero	//two spi
+	 
+	isolate1 2,pdata
+	call neglect2_from_6_pin,true	//uart
+	 
+	isolate1 3,pdata
+	call neglect4_from_9_pin,true	//spi
+
+	isolate1 5,pdata
+	call neglact2_form_27_pin,true	//clock external
+
+	isolate1 6,pdata
+	arg 4,queue
+	call neglact_1_pin,true
+	nsetflag true,4,rega			//pwm0 gpio4
+
+	isolate1 7,pdata
+	arg 5,queue
+	call neglact_1_pin,true			//pwm0 gpio5
+
+	hfetch 1,core_gpio_sel2
+	isolate1 0,pdata
+	arg 3,queue
+	call neglact_1_pin,true			//pwm0 gpio3
+	
+	hfetcht 1,core_gpio_sel
+	isolate1 0,temp
+	arg 5,queue
+	call neglact_1_pin,true			//ADC gpio5
+
+	ior temp,pdata
+
+	isolate1 1,pdata
+	arg 6,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio6
+	
+	isolate1 2,pdata
+	arg 7,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio7
+	
+	isolate1 3,pdata
+	arg 18,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio18
+	
+	isolate1 4,pdata
+	arg 19,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio19
+	
+	isolate1 5,pdata
+	arg 20,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio20
+	
+	isolate1 6,pdata
+	arg 21,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio21
+
+	isolate1 7,pdata
+	arg 22,queue
+	call neglact_1_pin,true			//pwm0 or ADC gpio22
+
+	hfetch 1,core_uart_ctrl
+	isolate1 4,pdata
+	call neglact2_form_2_pin,true
+	set1 mark_ext_patch,mark
+	bpatch patch32_5,mem_patch32
+
+	hfetch 4,core_gpio_pu0
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata
+	invert pdata,pdata
+	iand rega,pdata
+	//set0 4,pdata //revc
+	hfetcht 4,core_gpio_pd0
+	ior temp,pdata	
+	hstore 4,core_gpio_pd0
+	rtn
+neglect2_from_6_pin: //uart
+	 arg 6,queue
+	 branch neglect_2_pin
+neglect4_from_9_pin:
+	 arg 9,queue
+	 branch neglact_4_pin
+neglact4_from_23_pin:
+	 arg 23,queue
+	 branch neglact_4_pin
+neglact2_form_25_pin:
+	 arg 25,queue
+	 branch neglect_2_pin
+neglact2_form_27_pin:
+	 arg 27,queue
+	 branch neglect_2_pin
+neglact2_form_2_pin:
+	 arg 2,queue
+	 branch neglect_2_pin
+neglact_1_pin:
+	arg 1,loopcnt
+	branch neglect_pin_loop
+neglact_4_pin:
+	 arg 4,loopcnt
+	 branch neglect_pin_loop
+neglect_2_pin:
+	 arg 2,loopcnt
+neglect_pin_loop:
+	 qset0 rega
+	 increase 1,queue
+	 loop neglect_pin_loop
+	 rtn
+
+
+
+
+
+
+/* ===================== sniff GPIO CONTROL ======================= */
+gpio_cfg_uart_tx_output:
+	call gpio_uart2gpio
+	arg UART_WAKEUP_TX,temp
+	branch gpio_config_output
+
+gpio_pu_uart_tx:
+	call gpio_cfg_uart_tx_output
+	arg UART_WAKEUP_TX,temp
+	branch gpio_out_inactive
+
+
+
+gpio_rx_config_input_with_pu:
+	call gpio_uart2gpio
+	hfetch 1, core_gpio_pu0
+	set1 UART_WAKEUP_RX,pdata
+	hstore 1,core_gpio_pu0
+	arg UART_WAKEUP_RX,temp
+	branch gpio_config_input
+	
+gpio_uart2gpio:
+	hfetch 1,core_gpio_sel1
+	and_into 0xfb,pdata
+	hstore 1,core_gpio_sel1
+	rtn
+
+gpio_check_uart_state:
+	hfetch 1,core_gpio_sel1
+	isolate1 2,pdata
+	rtn
+
+load_chip_option:
+	call otp_enable_chgpump
+	setarg OTP_CHIP_FUNCTIONS
+	arg mem_chip_functions,rega
+	arg 0x02,temp
+	call otpd_read_data
+	branch otp_disable_chgpump
+	
+//mem_adc_config_flag 0:vinlpm 1:Hvin 2: GPIO
+
+adc_init_data:
+	set1 mark_ext_patch,mark
+	bpatch patch32_6,mem_patch32
+
+	call otp_enable_chgpump
+	setarg otp_adc_io_0_5V_addr
+	arg mem_0_5_adc_io_data,rega
+	arg 14,temp
+	call otpd_read_data
+	call otp_disable_chgpump
+	
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,adc_init_data_vinlpm
+	bbit1 ADC_CONFIG_HVIN,adc_init_data_hvin
+	bbit1 ADC_CONFIG_GPIO,adc_init_data_io
+	rtn	
+
+adc_init_data_vinlpm:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_vinlpm,zero
+	setarg 0x4dfa
+	store 2,mem_3v_adc_vinlpm_data	
+	setarg 0x4894
+	store 2,mem_2v_adc_vinlpm_data
+	branch set_vdd_reference_voltage_1v
+
+adc_check_data_vinlpm:
+	fetch 2,mem_3v_adc_vinlpm_data
+	nbranch adc_check_2v_vinlpm,blank
+	setarg 0x4dfa
+	store 2,mem_3v_adc_vinlpm_data
+adc_check_2v_vinlpm:	
+	fetch 2,mem_2v_adc_vinlpm_data
+	nbranch set_vdd_reference_voltage_1v,blank
+	setarg 0x4894
+	store 2,mem_2v_adc_vinlpm_data
+set_vdd_reference_voltage_1v:
+	setarg 100
+	store 2,mem_reference_voltage //set reference voltage = 1V
+	rtn		
+
+adc_init_data_hvin:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_hvin,zero
+	setarg 0x5932
+	store 2,mem_5v_adc_hvin_data	
+	setarg 0x4323
+	store 2,mem_1v_adc_hvin_data
+	branch set_vdd_reference_voltage_4v
+
+adc_check_data_hvin:
+	fetch 2,mem_5v_adc_hvin_data
+	nbranch adc_check_1v_hvin,blank
+	setarg 0x5932
+	store 2,mem_5v_adc_hvin_data
+adc_check_1v_hvin:	
+	fetch 2,mem_1v_adc_hvin_data
+	nbranch set_vdd_reference_voltage_4v,blank
+	setarg 0x4323
+	store 2,mem_1v_adc_hvin_data
+set_vdd_reference_voltage_4v:
+	setarg 400
+	store 2,mem_reference_voltage //set reference voltage = 4V
+	rtn 	
+
+adc_init_data_io:
+	fetcht 2,mem_otp_adc_flag
+	setarg OTP_ADC_FLAG
+	isub temp,null
+	branch adc_check_data_io,zero
+	setarg 0x6946
+	store 2,mem_1v_adc_io_data	
+	setarg 0x5377
+	store 2,mem_0_5_adc_io_data
+	branch set_vdd_reference_voltage_0_5v
+
+adc_check_data_io:
+	fetch 2,mem_1v_adc_io_data
+	nbranch adc_check_0_5v_io,blank
+	setarg 0x6946
+	store 2,mem_1v_adc_io_data
+adc_check_0_5v_io:
+	fetch 2,mem_0_5_adc_io_data
+	nbranch set_vdd_reference_voltage_0_5v,blank
+	setarg 0x5377
+	store 2,mem_0_5_adc_io_data
+set_vdd_reference_voltage_0_5v:
+	setarg 50
+	store 2,mem_reference_voltage //set reference voltage = 0.5V
+	rtn	
+
+
+adc_set_mode:
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,adc_check_vinlpm
+	bbit1 ADC_CONFIG_HVIN,adc_check_hvin
+	bbit1 ADC_CONFIG_GPIO,adc_check_gpio
+	rtn
+adc_check_vinlpm:
+	hjam 0xbf,rf_adc_mode	//read VINLPM voltage directly	
+	branch read_adc
+adc_check_hvin:
+	hjam 0xaf,rf_adc_mode	//read HVIN voltage directly
+	branch read_adc
+adc_check_gpio:
+	hjam 0x8f,rf_adc_mode
+	fetch 1,mem_adc_channel
+	hstore 1,rf_adc_ch
+	branch read_adc
+read_adc:
+	set1 mark_ext_patch,mark
+	bpatch patch32_7,mem_patch32
+	hfetch 1,core_uart_baud + 1
+	set1 7,pdata
+	hstore 1,core_uart_baud + 1 
+	hfetch 1,rf_adc_ch
+	or_into 0x30,pdata
+	hstore 1,rf_adc_ch
+	hjam 0x7c,rfen_adc
+	hjam 0xaa,rf_adc_gc
+	nop 5000
+	hfetcht 2,core_adc_sum
+	hfetch 1,core_uart_baud + 1
+	set0 7,pdata
+	hstore 1,core_uart_baud + 1
+	storet 2,mem_adc_current_value
+	rtn
+
+vdd_calculate_by_mode:
+	set1 mark_ext_patch,mark
+	bpatch patch33_0,mem_patch33
+	fetch 1,mem_adc_config_flag
+	bbit1 ADC_CONFIG_VINLPM,vdd_calculate_vinlpm
+	bbit1 ADC_CONFIG_HVIN,vdd_calculate_hvin
+	bbit1 ADC_CONFIG_GPIO,vdd_calculate_io
+	rtn
+
+vdd_calculate_vinlpm:
+	fetch 2,mem_3v_adc_vinlpm_data
+	fetcht 2,mem_2v_adc_vinlpm_data
+	arg 200,regc
+	branch vdd_calculate
+
+vdd_calculate_hvin:
+	fetch 2,mem_5v_adc_hvin_data
+	fetcht 2,mem_1v_adc_hvin_data
+	arg 100,regc
+	branch vdd_calculate
+
+vdd_calculate_io:
+	fetch 2,mem_1v_adc_io_data
+	fetcht 2,mem_0_5_adc_io_data
+	arg 50,regc
+	branch vdd_calculate
+	
+vdd_calculate:
+	isub temp,rega
+	fetch 2,mem_adc_current_value
+	isub temp,pdata
+	nbranch vdd_calculate1,positive
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	iadd regb,pdata
+vdd_calculate2:
+	idiv rega
+	call wait_div_end
+	quotient pdata	
+	rtn
+
+vdd_calculate1:
+	copy temp,pdata
+	fetcht 2,mem_adc_current_value
+	isub temp,pdata
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	isub regb,pdata
+	branch vdd_calculate2
+
+
+ifdef SPI_SIMULATE
+/******************************simulate spi slave start**********************************/
+
+/*
+// Define SPI struct, gpio config
+mem_spi_simulate_struct:
+02	#cs
+03	#sclk
+04	#mosi
+05	#miso
+08	#motion
+*/
+
+/*
+Brief: spi_simulate_init_slave
+Input: None
+Output: None
+Return: None
+Brief: cs_gpio,sclk_gpio,mosi_gpio : input
+	miso_gpio : output
+*/
+spi_simulate_init_slave:
+	call spi_simulate_variable_release_slave
+	branch spi_simulate_gpio_config_slave
+
+spi_simulate_variable_release_slave:
+	arg mem_spi_simulate_read_byte_slave,contw
+	arg 53,loopcnt
+	call buffer_release
+	arg mem_spi_simulate_write_byte_slave,contw
+	arg 54,loopcnt
+	branch buffer_release
+
+buffer_release:
+	setarg 0
+buffer_release_loop:
+	istore 1,contw
+	loop buffer_release_loop
+	rtn
+	
+spi_simulate_gpio_config_slave:
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_config_input
+	fetcht 1,mem_spi_simulate_sclk_gpio
+	call gpio_config_input
+	fetcht 1,mem_spi_simulate_mosi_gpio
+	call gpio_config_input
+	fetcht 1,mem_spi_simulate_miso_gpio
+	call gpio_config_output
+	fetcht 1,mem_spi_simulate_motion_gpio
+	call gpio_config_output
+	branch spi_simulate_motion_disable
+
+spi_simulate_motion_enable:
+	fetcht 1,mem_spi_simulate_motion_gpio
+	branch gpio_out_inactive
+spi_simulate_motion_disable:
+	fetcht 1,mem_spi_simulate_motion_gpio
+	branch gpio_out_active
+	
+/*
+Brief: spi_simulate_read_byte_slave
+Input: rega: read length
+Output: mem_spi_simulate_read_byte_slave: read buffer
+Return: None
+Brief: when the cs_gpio is low level,slave reads data from master at the rising edge of the sclk gpio
+*/
+spi_simulate_read_byte_slave:
+	copy rega,pdata
+	store 1,mem_spi_simulate_read_length_slave
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nrtn true
+spi_simulate_read_byte_slave1:	
+	jam 0,mem_spi_simulate_read_byte_slave_temp
+	arg 8,loopcnt
+spi_simulate_read_byte_slave_loop:
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_read_byte_slave_end,true
+	
+	fetcht 1, mem_spi_simulate_sclk_gpio
+	call gpio_get_bit
+	branch spi_simulate_read_byte_slave_loop,true	
+	fetch 1,mem_spi_simulate_read_byte_slave_temp
+	lshift pdata,pdata
+	store 1,mem_spi_simulate_read_byte_slave_temp
+	fetcht 1, mem_spi_simulate_mosi_gpio
+	call gpio_get_bit
+	ncall spi_simulate_read_byte_or_one,true
+spi_simulate_read_byte_slave_loop1:	
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_read_byte_slave_end,true
+
+	fetcht 1, mem_spi_simulate_sclk_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_read_byte_slave_loop1,true
+	loop spi_simulate_read_byte_slave_loop
+	
+	fetcht 1,mem_spi_simulate_read_length_slave_temp
+	setarg mem_spi_simulate_read_byte_slave
+	iadd temp,contw
+	copy contw,regb
+	increase 1,temp
+	storet 1,mem_spi_simulate_read_length_slave_temp
+	fetch 1,mem_spi_simulate_read_byte_slave_temp
+	copy regb,contw
+	istore 1,contw
+
+	fetch 1,mem_spi_simulate_read_length_slave
+	increase -1,pdata
+	store 1,mem_spi_simulate_read_length_slave
+	nbranch spi_simulate_read_byte_slave1,blank
+	
+spi_simulate_read_byte_slave_loop2:	
+	fetcht 1, mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_read_byte_slave_loop2,true
+spi_simulate_read_byte_slave_end:	
+	jam 0,mem_spi_simulate_read_length_slave
+	jam 0,mem_spi_simulate_read_length_slave_temp
+	jam 0,mem_spi_simulate_read_byte_slave_temp
+	rtn
+
+spi_simulate_read_byte_or_one:
+	fetch 1,mem_spi_simulate_read_byte_slave_temp
+	or_into 1,pdata
+	store 1,mem_spi_simulate_read_byte_slave_temp
+	rtn
+
+
+/*
+Brief: spi_simulate_write_byte_slave
+Input: rega: write length;  write buffer:mem_spi_simulate_write_byte_slave;
+Output: None
+Return: None
+Brief: when the cs_gpio is low level,slave writes data to master at the falling edge of the sclk gpio
+*/
+spi_simulate_write_byte_slave:
+	copy rega,pdata
+	store 1,mem_spi_simulate_write_length_slave
+	jam 0,mem_spi_simulate_write_length_slave_temp
+	jam 0,mem_spi_simulate_write_byte_slave_temp
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nrtn true
+spi_simulate_write_byte_slave1:
+	fetcht 1,mem_spi_simulate_write_length_slave_temp
+	setarg mem_spi_simulate_write_byte_slave
+	iadd temp,contr
+	copy contr,regb
+	increase 1,temp
+	storet 1,mem_spi_simulate_write_length_slave_temp
+	copy regb,contr
+	ifetch 1,contr
+	store 1,mem_spi_simulate_write_byte_slave_temp
+	
+	arg 8,loopcnt
+spi_simulate_write_byte_slave_loop:
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_write_byte_slave_end,true
+	fetcht 1, mem_spi_simulate_sclk_gpio
+	call gpio_get_bit
+	branch spi_simulate_write_byte_slave_loop,true
+spi_simulate_write_byte_slave_loop1:
+	fetch 1,mem_spi_simulate_write_byte_slave_temp
+	store 1,mem_spi_simulate_write_byte_slave_temp_temp
+	and_into 0x80,pdata
+	beq 0x80,spi_simulate_set_miso_gpio_high
+	call spi_simulate_set_miso_gpio_low
+spi_simulate_write_byte_slave_loop2:
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_write_byte_slave_end,true
+	fetcht 1, mem_spi_simulate_sclk_gpio
+	call gpio_get_bit
+	nbranch spi_simulate_write_byte_slave_loop2,true	
+	fetch 1,mem_spi_simulate_write_byte_slave_temp_temp
+	lshift pdata,pdata
+	store 1,mem_spi_simulate_write_byte_slave_temp
+	loop spi_simulate_write_byte_slave_loop
+
+	fetch 1,mem_spi_simulate_write_length_slave
+	increase -1,pdata
+	store 1,mem_spi_simulate_write_length_slave
+	nbranch spi_simulate_write_byte_slave1,blank
+	
+spi_simulate_write_byte_slave_loop3:
+	fetcht 1,mem_spi_simulate_cs_gpio
+	call gpio_get_bit
+	branch spi_simulate_write_byte_slave_loop3,true
+spi_simulate_write_byte_slave_end:	
+	jam 0,mem_spi_simulate_write_length_slave_temp
+	jam 0,mem_spi_simulate_write_byte_slave_temp
+	jam 0,mem_spi_simulate_write_byte_slave_temp_temp
+	rtn
+	
+spi_simulate_set_miso_gpio_high:
+	fetcht 1,mem_spi_simulate_miso_gpio
+	call gpio_out_inactive
+	branch spi_simulate_write_byte_slave_loop2
+spi_simulate_set_miso_gpio_low:
+	fetcht 1,mem_spi_simulate_miso_gpio
+	branch gpio_out_active	
+
+/******************************simulate spi slave end**********************************/
+
+endif  //SPI_SIMULATE
+
Index: Receive_Code/program/rfcomm.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/rfcomm.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/rfcomm.prog	(working copy)
@@ -0,0 +1,978 @@
+
+ifdef COMPILE_RFCOMM
+rfcomm_init:
+	rtn wake
+	jam 0,mem_rfcomm_send_more_pkt
+	jam BITS9600,memRemoteRPNBitRate        
+	jam DATABITS8,memRemotePRNDataBits      
+	jam 0x11,memRemotePRNXon
+	jam 0x13,memRemotePRNXoff
+	setarg 0
+	store 3,memRemotePRNStopBit
+	store 1,mem_spp_state                  
+	jam 0,memui_reconnect_mode
+	//branch rfcomm_init_spp
+rfcomm_init_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch33_1,mem_patch33
+	setarg 0
+	store 1,mem_spp_state
+	store 1,mem_remote_spp_channel
+	store 1,mem_pn_dlci
+	fetch 1,mem_credit_flag
+	beq CREDIT_ENABLE,rfcomm_init_spp_with_credit
+	jam 0x50,mem_credit_given
+	rtn
+
+rfcomm_init_spp_with_credit:
+	jam 0x00,mem_credit_given
+	rtn
+
+set_CR_bit:
+	or_into 0x02,temp
+	rtn
+
+
+/*below added by koufan*/
+
+/*rfcomm_send */
+
+
+
+	/*rfcomm_calculate_FCS_sabm*/
+	/*input: address in temp*/
+	/*output: FCS in pdata  */
+rfcomm_calculate_FCS_sabm:
+	copy temp,pdata
+	reverse pdata,pdata //address
+	store 1,memFCStemp3
+	force INI_TX_SABM,pdata
+	reverse pdata,pdata
+	store 1,memFCStemp2
+	force 0x01,pdata                        
+	reverse pdata,pdata
+	store 1,memFCStemp1
+	call caculate_fcs
+	copy temp,pdata                        
+	rtn
+rfcomm_calculate_FCS_ua:
+	reverse pdata,pdata //address
+	store 1,memFCStemp3
+	force   RSP_TX_UA, pdata
+	reverse pdata, pdata
+	store   1, memFCStemp2
+	force   0x01, pdata
+	reverse pdata, pdata
+	store   1, memFCStemp1
+	branch caculate_fcs
+	/* FCS return from temp                */
+rfcomm_calculate_FCS_dlci0:
+	fetch 1,mem_rfcomm_initiator
+	branch rfcomm_calculate_FCS_dlci0_res,blank
+	setarg 0x70 //FCS of initiator
+	rtn
+rfcomm_calculate_FCS_dlci0_res:
+	setarg 0xaa//FCS of responder
+	rtn
+	
+rfcomm_save_FCS_uih:
+	reverse pdata, pdata //address 
+	store 1,memFCStemp3                     /* contw distroided                    */
+	force RSP_RX_UIH,pdata 
+	call caculate_UIHdata_fcs
+	fetcht 2,mem_contw_temp
+	copy temp,contw
+	istore 1,contw                      /* save FCS for later use              */
+	copy contw,temp
+	storet 2,mem_contw_temp
+	force RSP_RX_UIH_WDATA,pdata             /* P/F =1 + RSP_RX_UIH                 */
+	call caculate_UIHdata_fcs
+	fetcht 2,mem_contw_temp
+	copy temp,contw
+	istore 1,contw             /* save FCS for later use              */
+	rtn	
+/**********************************************************************/
+/* This subroutine caculates the FCS for UIH data                     */
+/* Input:                                                             */
+/*        the address byte at memFCStemp3(bit reversed), control byte */
+/*        at pdata (not bit reversed)                                 */
+/* Output:                                                            */
+/*        pdata: the FCS                                              */
+/**********************************************************************/  
+caculate_UIHdata_fcs:
+	reverse pdata,pdata
+	store   1,memFCStemp2
+	fetch   2, memFCStemp2                     
+	lshift8 pdata,pdata
+	store 3,mem_mod2div_temp
+	arg     0x107,regA
+	arg 0xf,regB
+	call mod2div
+	xor_into     0xd7, pdata
+	invert  pdata,pdata
+	reverse pdata,pdata
+	rtn
+	
+/**********************************************************************/
+/* This subroutine caculates the FCS                                  */
+/* Input:                                                             */
+/*        the address byte at memFCStemp3, control byte at memFCStemp2*/  
+/*        lenght at memFCStemp1 (all above data are bit reversed)     */
+/* Output:                                                            */
+/*        temp: the FCS                                               */
+/**********************************************************************/     
+caculate_fcs:
+	fetch 3, memFCStemp1                    /* load 3 bytes start at memFCStemp1   */
+	store 3,mem_mod2div_temp
+	arg 0x107,regA
+	arg 0xf,regB  //24bit(memFCStemp1+..+memFCStemp3) - 9bit(regA) = 15bit
+	call mod2div
+	lshift8 pdata,pdata 
+	arg 0x7, regB  //16bit(lshift8 pdata,pdata ) - 9bit(regA) = 7bit
+	call mod2div
+	xor_into     0x2b, pdata		//0x3d
+	invert  pdata, pdata                        
+	reverse pdata, pdata                      /* FCS at pdata                        */
+	copy    pdata, temp
+	rtn
+
+mod2div:
+	arg 0,regC
+	copy regB,loopcnt
+	call right_shift_n // right shift pdata (regB)bit
+	icopy temp
+mod2div_loop:
+	//jam 1,0x1fff
+//mod2div_loop1:
+	//fetch 1,0x1fff
+	//nbranch mod2div_loop1,blank
+	copy temp,pdata
+	lshift regC,regC//quotient
+	bbit0 8, mod2div_not_enough_reduction//the high bit of 0x107
+	ixor regA,temp// temp----remainer
+	increase 1,regC// quotient
+mod2div_not_enough_reduction: //Minuend smaller than Subtrahend
+	lshift temp,temp
+	fetch 3,mem_mod2div_temp
+	increase -1,regB
+	compare 0xff,regB,0xff
+	branch mod2div_end,true
+	copy regB,loopcnt
+	call right_shift_n // right shift pdata (regB)bit
+	isolate1 0,pdata
+	setflag true,0,temp //move a new bit from Dividend(queue) into Minuend(pdata)
+	branch mod2div_loop
+mod2div_end:
+	//output:remainer in pdata
+	rshift  temp,pdata
+	rtn
+
+get_rfcomm_snd_adss:
+	fetcht 1,mem_pn_dlci
+dlci_to_address_cmd:
+	//input DLCI from temp
+	lshift2 temp,temp
+	set1 RFCOMM_ADDRESS_EXT_LEN,temp
+	fetch 1,mem_rfcomm_initiator
+	ncall set_CR_bit,blank
+	storet 1,mem_rfcomm_send_adss
+	rtn
+
+channel_to_dlci:
+	//input channel from temp
+	lshift temp,temp
+	fetch 1,mem_rfcomm_initiator
+	setflag blank,0,temp //direction in dlci
+	//output dlci to temp
+	rtn
+rfcomm_rx_process_DLCI0_sabm:
+	fetcht 1,mem_current_channel //address
+	jam 0xd7,mem_current_fcs //FCS
+	call rfcomm_send_ua
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_SABM,pdata
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_UA,pdata
+	store 1,mem_rfcomm_state
+	jam 0,mem_rfcomm_initiator
+	branch rfcomm_rx_process_end
+rfcomm_rx_process_DLCI0_ua:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_UA,pdata
+	store 1,mem_rfcomm_state
+	branch rfcomm_rx_process_end
+
+	
+rfcomm_rx_process:
+	set1 mark_ext_patch,mark
+	bpatch patch33_2,mem_patch33
+	fetch 1,memui_reconnect_mode
+	beq NO_RECONNECTION,rfcomm_rx_process_remote_page
+	branch rfcomm_rx_process_reconn
+
+rfcomm_rx_process_remote_page:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_head_struct
+	fetch 1,mem_current_channel
+	beq 0,parse_dlci0_rp
+	branch parse_uih_rp
+parse_dlci0_rp:
+	set1 mark_ext_patch,mark
+	bpatch patch33_3,mem_patch33
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_SABM,rfcomm_rx_process_DLCI0_sabm
+	beq RFCOMM_FRAME_TYPE_UA,rfcomm_rx_process_DLCI0_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_DLCI0_rp_uih
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_rp_spp_disconn_send_event
+	rtn
+
+
+parse_DLCI0_rp_uih:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_uih_head_struct
+	fetch 1,mem_uih_cmd_type
+	beq UIH_PARAM_NEG_CMD,parse_DLCI0_rp_uih_pn_cmd
+	beq UIH_PARAM_NEG_RES,parse_DLCI0_rp_uih_pn_res
+	beq UIH_MODEM_STATUS_CMD,parse_DLCI0_rp_uih_ms_cmd
+	beq UIH_MODEM_STATUS_RES,parse_DLCI0_rp_uih_ms_res
+	beq UIH_PARAM_CMD_REMOVE_PORT,parse_DLCI0_rp_uih_cmd_port	
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_pn_cmd:
+	call parse_DLCI0_rp_uih_pn_res_common
+
+	branch parse_DLCI0_rp_uih_pn_cmd_spp
+
+parse_DLCI0_rp_uih_pn_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_PN_RES,pdata
+	store 1,mem_spp_state
+	call rfcomm_send_param_neg_res
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_pn_res:
+	call parse_DLCI0_rp_uih_pn_res_common
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_rp_uih_pn_res_common:
+	call get_param_payload_ptr
+	branch  get_rfcomm_prarmer_negotiation
+
+get_rfcomm_param_modem_status:
+	call get_param_payload_ptr
+	ifetch 1,contr
+	rshift3 pdata,pdata
+	store 1,mem_ms_channel
+	ifetch 1,contr
+	store 1,mem_ms_param
+	rtn
+
+
+get_rfcomm_head_struct:
+	ifetch 1,contr
+	store 1,mem_current_adss
+	rshift3 pdata,pdata
+	store 1,mem_current_channel
+	ifetch 1,contr
+	store 1,mem_current_frame_type
+get_rfcomm_current_length:
+	call get_rfcomm_length_common
+	storet 2,mem_current_length
+	copy contr,pdata
+	store 2,mem_rfcomm_uih_payload_ptr
+	rtn
+
+get_rfcomm_uih_head_struct:
+	ifetch 1,contr
+	rshift pdata,pdata
+	store 1,mem_uih_cmd_type
+	call get_rfcomm_length_common
+	storet 2,mem_uih_length
+	copy contr,pdata
+	store 2,mem_param_payload_ptr
+	rtn
+
+
+get_param_payload_ptr:
+	fetch 2,mem_param_payload_ptr
+	copy pdata,contr
+	rtn
+
+get_rfcomm_length_common:
+	ifetch 1,contr
+	copy pdata,temp
+	rshift temp,temp
+	rtnbit1 0
+	ifetch 1,contr
+	lshift3 pdata,pdata
+	lshift4 pdata,pdata
+	iadd temp,temp
+	rtn
+
+get_rfcomm_prarmer_negotiation:
+	ifetch 1,contr
+	store 1,mem_pn_dlci
+	ifetch 1,contr
+	store 1,mem_pn_credit_flow_type_info
+	ifetch 1,contr
+	store 1,mem_pn_priority
+	ifetch 1,contr
+	store 1,mem_pn_acknowledg_timer
+	ifetch 2,contr
+	store 2,mem_pn_max_frame_size
+	ifetch 1,contr
+	store 1,mem_pn_max_retrans
+	ifetch 1,contr
+	store 1,mem_remote_credits
+	rtn
+
+
+parse_DLCI0_rp_uih_ms_cmd:
+	call get_rfcomm_param_modem_status
+
+	branch parse_DLCI0_rp_uih_ms_cmd_spp
+
+parse_DLCI0_rp_uih_ms_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_RES,pdata
+	store 1,mem_spp_state
+	fetcht 1,mem_pn_dlci
+	lshift2 temp,temp
+	or_into 3,temp
+	call rfcomm_send_modem_status_res
+	jam MORE_PKT_MSC_CMD_SPP,mem_rfcomm_send_more_pkt
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_ms_res:
+	jam BT_EVT_SPP_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	sub pdata,1,null
+	branch parse_DLCI0_rp_uih_MS_RES_spp,zero
+	branch assert
+parse_DLCI0_rp_uih_ms_res_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_rp_uih_cmd_port:
+	call get_param_payload_ptr
+	ifetch 1,contr
+	store 1,mem_rpn_dlci
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x000e
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	//setarg 5
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch33_4,mem_patch33
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1191
+	istore 2,contw
+	//fetch 1,mem_pn_dlci
+	//setarg 0x0b
+	fetch 1,mem_rpn_dlci
+	istore 1,contw //DLCI
+	setarg 0x000007
+	istore 5,contw
+//	setarg 0 //max frame size
+//	istore 2,contw 
+	setarg 0x01 //max retrans
+	istore 2,contw
+//	setarg 0x00
+//	istore 1,contw // init credits
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+
+
+parse_uih_rp:
+	branch parse_uih_rp_spp
+
+parse_uih_rp_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch33_5,mem_patch33
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_UA,parse_uih_rp_spp_ua
+	beq RFCOMM_FRAME_TYPE_SABM,parse_uih_rp_spp_sabm
+	beq RFCOMM_FRAME_TYPE_UIH,parse_uih_spp_uih
+	beq RFCOMM_FRAME_TYPE_UIH_CREDITS,parse_uih_spp_uih_credits
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_rp_spp_disconn
+	rtn
+parse_uih_rp_spp_ua:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+parse_uih_rp_spp_sabm:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	set1 RFCOMM_CHANNEL_STATE_SABM,pdata
+	store 1,mem_spp_state
+	fetch 1,mem_current_adss
+	call rfcomm_calculate_FCS_ua
+	store 1,mem_current_fcs
+	call rfcomm_send_ua
+	fetch 1,mem_current_adss
+	rshift2 pdata,pdata
+	store 1,mem_pn_dlci
+	lshift2 pdata,pdata
+	set0 RFCOMM_ADDRESS_CR,pdata
+	set1 RFCOMM_ADDRESS_EXT_LEN,pdata 
+	arg mem_HIUfcs_spp,temp // mem_HIUfcs_HF_WCredits in regB++
+	storet 2,mem_contw_temp
+	call rfcomm_save_FCS_uih
+	branch rfcomm_rx_process_end
+	
+parse_uih_spp_uih_credits:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	increase 1,pdata
+	store 2,mem_rfcomm_uih_payload_ptr
+	ifetch 1,contr //remote credits
+	fetcht 1,mem_remote_credits
+	iadd temp,pdata
+	store 1,mem_remote_credits
+parse_uih_spp_uih:
+	call rfcomm_increase_credit_given
+parse_uih_spp_uih_cont:
+	call get_rfcomm_snd_adss
+	call rfcomm_send_uih_without_payload
+	call spp_process_rx_data
+	branch rfcomm_rx_process_end
+
+parse_uih_rp_spp_disconn_send_event:
+	jam BT_EVT_SPP_DISCONNECTED,mem_fifo_temp
+	call ui_ipc_send_event	
+parse_uih_rp_spp_disconn:
+	call rfcomm_init_spp
+	fetch 1,mem_current_adss
+	call rfcomm_calculate_FCS_ua
+	store 1,mem_current_fcs
+	call rfcomm_send_ua
+	branch rfcomm_rx_process_end
+	
+///////////////////////////////////////////
+///////////////////////////////////////////
+///////////////////////////////////////////
+rfcomm_rx_process_reconn:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_head_struct
+	fetch 1,mem_current_channel
+	beq 0,parse_DLCI0_reconn
+	branch parse_uih_reconn
+		
+parse_DLCI0_reconn:
+	set1 mark_ext_patch,mark
+	bpatch patch33_6,mem_patch33
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_SABM,rfcomm_rx_process_DLCI0_sabm
+	beq RFCOMM_FRAME_TYPE_UA,rfcomm_rx_process_DLCI0_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_DLCI0_reconn_uih
+	branch rfcomm_rx_process_end
+parse_DLCI0_reconn_uih:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_uih_head_struct
+	fetch 1,mem_uih_cmd_type
+	beq UIH_PARAM_NEG_CMD,parse_DLCI0_reconn_uih_pn_cmd
+	beq UIH_PARAM_NEG_RES,parse_DLCI0_reconn_uih_pn_cmd
+	beq UIH_MODEM_STATUS_CMD,parse_DLCI0_reconn_uih_ms_cmd
+	beq UIH_MODEM_STATUS_RES,parse_DLCI0_reconn_uih_ms_res
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_reconn_uih_pn_cmd:
+	call parse_DLCI0_rp_uih_pn_res_common
+	fetch 1,mem_pn_dlci
+	rshift pdata,pdata
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_pn_cmd_spp,zero
+	branch assert
+parse_DLCI0_reconn_uih_pn_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_reconn_uih_ms_cmd:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_ms_cmd_spp,zero
+	branch assert
+	branch rfcomm_rx_process_end
+parse_DLCI0_reconn_uih_ms_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_RES,pdata
+	store 1,mem_spp_state
+	fetcht 1,mem_pn_dlci
+	lshift2 temp,temp
+	or_into 3,temp
+	call rfcomm_send_modem_status_res
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_reconn_uih_ms_res:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_ms_res_spp,zero
+	branch assert
+parse_DLCI0_reconn_uih_ms_res_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_uih_reconn:
+	fetch 1,mem_current_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_uih_reconn_spp,zero
+	branch assert
+	branch rfcomm_rx_process_end
+
+parse_uih_reconn_spp:
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_UA,parse_uih_reconn_spp_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_uih_spp_uih
+	beq RFCOMM_FRAME_TYPE_UIH_CREDITS,parse_uih_spp_uih_credits
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_reconn_spp_disconn
+parse_uih_reconn_spp_ua:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+parse_uih_reconn_spp_sabm:
+	branch parse_uih_reconn_spp_sabm//loop
+parse_uih_reconn_spp_disconn:
+	branch parse_uih_rp_spp_disconn
+rfcomm_rx_process_end:
+	rtn
+	
+rfcomm_send_more_pkt:
+	fetch 1,mem_rfcomm_send_more_pkt
+	rtn blank
+	beq MORE_PKT_MSC_CMD_SPP,rfcomm_send_more_pkt_msc_cmd_spp
+	branch assert
+	
+rfcomm_send_more_pkt_msc_cmd_spp:
+	jam 0,mem_rfcomm_send_more_pkt
+	call l2cap_malloc_rfcomm_channel
+	arg SPP_SLAVE_CHANNEL,temp
+	fetcht 1,mem_pn_dlci
+	lshift2 temp,temp
+rfcomm_send_more_pkt_msc_cmd_spp0:
+	or_into 0x03,temp
+	arg 0xaa,regA
+	call rfcomm_send_modem_status_cmd
+	call l2cap_get_rfcomm_tx_buff
+	copy contw,contr
+	ifetch 2, contr
+	branch assert,blank
+	rtn
+
+rfcomm_send_sabm:
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0004
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_current_adss
+	istore 1,contw //address
+	set1 mark_ext_patch,mark
+	bpatch patch33_7,mem_patch33
+	setarg 0x013f
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_ua:
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0004
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_current_adss
+	istore 1,contw //address
+	set1 mark_ext_patch,mark
+	bpatch patch34_0,mem_patch34
+	setarg 0x0173
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_param_neg_cmd:
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x000e
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch34_1,mem_patch34
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1183
+	istore 2,contw
+	copy temp,pdata //DLCI in temp
+	istore 1,contw
+	setarg 0x0000f0
+	istore 3,contw
+	setarg RFCOMM_MAX_FRAME_SIZE
+	istore 2,contw
+	setarg 0
+	istore 1,contw
+	setarg 0x01		//change here later
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	jam 0x10,mem_credit_given
+	rtn
+rfcomm_send_param_neg_res:
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x000e
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch34_2,mem_patch34
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1181
+	istore 2,contw
+	fetch 1,mem_pn_dlci
+	istore 1,contw //DLCI
+	setarg 0x0000e0
+	istore 3,contw
+	fetch 2,mem_rfcomm_max_frame_size
+	istore 2,contw 
+	setarg 0x00 //max retrans
+	istore 1,contw
+	fetch 1,mem_rfcomm_credit_init_data
+	istore 1,contw // init credits
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+rfcomm_send_modem_status_cmd:
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0008
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch34_3,mem_patch34
+	setarg 0x09ef
+	istore 2,contw
+	setarg 0x05e3
+	istore 2,contw
+	copy temp,pdata //DLCI adress
+	istore 1,contw
+	setarg 0x8d
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+rfcomm_send_modem_status_res:
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0008
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	copy temp,timeup
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	set1 mark_ext_patch,mark
+	bpatch patch34_4,mem_patch34
+	setarg 0x09ef
+	istore 2,contw
+	setarg 0x05e1
+	istore 2,contw
+	copy timeup,pdata //DLCI address in temp
+	istore 1,contw
+	setarg 0x8d
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+rfcomm_send_uih_without_payload:
+	set1 mark_ext_patch,mark
+	bpatch patch34_5,mem_patch34
+	fetch 1,mem_credit_given
+	rtn blank
+	hfetch 2,core_uart_rxitems
+	nrtn blank
+	copy rega,pdata
+	store 1,mem_pdatatemp+1
+	storet 1,mem_pdatatemp
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x05
+	istore 2,contw
+	fetch 2,mem_RFCOMM_remote_CID
+	istore 2,contw
+	fetch 1,mem_rfcomm_send_adss
+	istore 1,contw
+	setarg 0x01ff
+	istore 2,contw
+	fetch 1,mem_credit_given
+	istore 1,contw
+	fetch 1,mem_HIUfcs_SPP_WCredits
+	istore 1,contw
+	jam 0,mem_credit_given
+	rtn
+	
+rfcomm_increase_credit_given:
+	set1 mark_ext_patch,mark
+	bpatch patch34_6,mem_patch34
+	fetch 1,mem_credit_flag
+	rtneq CREDIT_ENABLE
+	fetch 2,mem_current_length
+	rtn blank
+	fetch 1,mem_credit_given
+	increase 1,pdata
+	store 1,mem_credit_given
+	rtn
+
+spp_process_rx_data:
+	fetch 2,mem_cb_receive_spp_data
+	branch callback_func
+
+spp_tx_rfcomm_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch34_7,mem_patch34
+	//credit
+	fetch 1,mem_remote_credits
+	rtn blank
+	increase -1,pdata
+	store 1,mem_remote_credits
+	fetch 2,mem_pn_max_frame_size
+	fetcht 2,mem_current_packet_length
+	isub temp,null
+	branch ssp_tx_rfcomm_from_uart,positive
+	store 2,mem_current_packet_length
+ssp_tx_rfcomm_from_uart:
+	fetch 1,mem_credit_given
+	branch ssp_tx_rfcomm_from_uart_without_credit,blank
+	jam 1,mem_rfcomm_send_offset
+	fetch 1,mem_HIUfcs_SPP_WCredits
+	store 1,mem_rfcomm_send_fcs
+	setarg RSP_RX_UIH_WDATA
+	store 1,mem_rfcomm_send_frame_type
+	branch ssp_tx_rfcomm_from_uart_common
+ssp_tx_rfcomm_from_uart_without_credit:
+	jam 0,mem_rfcomm_send_offset
+	fetch 1,mem_HIUfcs_SPP
+	store 1,mem_rfcomm_send_fcs
+	setarg RSP_TX_UIH
+	store 1,mem_rfcomm_send_frame_type
+ssp_tx_rfcomm_from_uart_common:
+	set1 mark_ext_patch,mark
+	bpatch patch35_0,mem_patch35
+	fetch 2,mem_current_packet_length
+	sub pdata,127,null
+	branch ssp_tx_rfcomm_from_uart_common0,positive
+	fetch 1,mem_rfcomm_send_offset
+	increase 1,pdata
+	store 1,mem_rfcomm_send_offset
+ssp_tx_rfcomm_from_uart_common0:
+	call get_rfcomm_snd_adss
+	fetch 2,mem_current_packet_length
+	increase 8,pdata	//fcs + rfcommhead + l2caphead == 8
+	fetcht 1,mem_rfcomm_send_offset
+	iadd temp,rega
+	//rfcomm payload
+	call l2cap_malloc
+	store 2,mem_rfcomm_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_rfcomm_tx_payload_ptr
+	copy pdata,contw
+	fetch 1,mem_rfcomm_send_adss
+	istore 1,contw
+	fetch 1,mem_rfcomm_send_frame_type
+	istore 1,contw
+	call ssp_tx_write_length
+	call ssp_tx_write_given_credit
+	set1 mark_ext_patch,mark
+	bpatch patch35_1,mem_patch35
+	fetch 2,mem_nl_rx_data_src		//src
+	copy pdata,contru
+	fetch 2,mem_current_packet_length
+	copy pdata,loopcnt
+	call uart_copy_rx_bytes_fast
+	copy contw,temp
+	copy contru,pdata
+	store 2,mem_nl_rx_data_src
+	copy temp,contw	
+	fetch 1,mem_rfcomm_send_fcs
+	istore 1,contw
+	fetch 2,mem_rfcomm_tx_buff_ptr
+	copy pdata,contw
+	fetch 2,mem_current_packet_length
+	fetcht 1,mem_rfcomm_send_offset
+	iadd temp,pdata
+	increase 4,pdata
+	istore 2,contw
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw
+	jam 0,mem_credit_given	//whatever mem_credit_given is set to 0
+	fetch 2,mem_nl_rx_len_all
+	beq 0,module_hci_command_tx_spp_tx_complete
+	jam HCI_NOT_DISCARD_PACKET,mem_module_temp_nl_discard_packet
+	rtn
+
+ssp_tx_write_length:
+	set1 mark_ext_patch,mark
+	bpatch patch35_2,mem_patch35
+	fetch 2,mem_current_packet_length
+	sub pdata,0x7f,null
+	nbranch ssp_tx_write_long_packet,positive
+	lshift pdata,pdata
+	set1 0,pdata
+	istore 1,contw
+	rtn
+ssp_tx_write_long_packet:
+	fetch 2,mem_current_packet_length
+	rshift3 pdata,pdata
+	rshift4 pdata,temp
+	and_into 0x7f,pdata
+	lshift pdata,pdata
+	set0 0,pdata
+	istore 1,contw
+	istoret 1,contw
+	rtn
+ssp_tx_write_given_credit:
+	fetch 1,mem_credit_given
+	rtn blank
+	istore 1,contw
+	rtn
+
+	
+
+
+else
+
+rfcomm_init:
+	rtn
+rfcomm_init_spp:
+set_CR_bit:
+rfcomm_calculate_FCS_sabm:
+rfcomm_calculate_FCS_ua:
+rfcomm_calculate_FCS_dlci0:
+rfcomm_calculate_FCS_dlci0_res:
+rfcomm_save_FCS_uih:
+caculate_UIHdata_fcs:
+caculate_fcs:
+mod2div:
+mod2div_loop:
+mod2div_not_enough_reduction:
+mod2div_end:
+get_rfcomm_snd_adss:
+dlci_to_address_cmd:
+dlci_to_address_res:
+channel_to_dlci:
+rfcomm_rx_process_DLCI0_sabm:
+rfcomm_rx_process_DLCI0_ua:
+rfcomm_rx_process:
+rfcomm_rx_process_remote_page:
+parse_dlci0_rp:
+parse_DLCI0_rp_uih:
+parse_DLCI0_rp_uih_pn_cmd:
+parse_DLCI0_rp_uih_pn_cmd_spp:
+parse_DLCI0_rp_uih_pn_res:
+parse_DLCI0_rp_uih_pn_res_common:
+get_rfcomm_param_modem_status:
+get_rfcomm_head_struct:
+get_rfcomm_current_length:
+get_rfcomm_uih_head_struct:
+get_param_payload_ptr:
+get_rfcomm_param_length_common:
+get_rfcomm_length_common:
+get_rfcomm_prarmer_negotiation:
+parse_DLCI0_rp_uih_ms_cmd:
+parse_DLCI0_rp_uih_ms_cmd_spp:
+parse_DLCI0_rp_uih_ms_res:
+parse_DLCI0_rp_uih_ms_res_spp:
+parse_uih_rp:
+parse_uih_rp_spp:
+parse_uih_rp_spp_ua:
+parse_uih_rp_spp_sabm:
+parse_uih_spp_uih_credits:
+parse_uih_spp_uih:
+parse_uih_spp_uih_cont:
+parse_uih_rp_spp_disconn:
+rfcomm_rx_process_reconn:
+	branch assert 
+parse_DLCI0_reconn:
+parse_DLCI0_reconn_uih:
+parse_DLCI0_reconn_uih_pn_cmd:
+parse_DLCI0_reconn_uih_pn_cmd_spp:
+parse_DLCI0_reconn_uih_ms_cmd:
+parse_DLCI0_reconn_uih_ms_cmd_spp:
+parse_DLCI0_reconn_uih_ms_res:
+parse_DLCI0_reconn_uih_ms_res_noext:
+parse_DLCI0_reconn_uih_ms_res_spp:
+parse_uih_reconn:
+parse_uih_reconn_spp:
+parse_uih_reconn_spp_ua:
+parse_uih_reconn_spp_sabm:
+parse_uih_reconn_spp_disconn:
+rfcomm_rx_process_end:
+rfcomm_send_more_pkt:
+rfcomm_send_more_pkt_msc_cmd_spp:
+rfcomm_send_sabm:
+rfcomm_send_ua:
+rfcomm_send_param_neg_cmd:
+rfcomm_send_param_neg_res:
+rfcomm_send_modem_status_cmd:
+rfcomm_send_modem_status_res:
+rfcomm_send_uih_without_payload:
+rfcomm_increase_credit_given:
+spp_process_rx_data:
+spp_tx_rfcomm_packet:
+ssp_tx_rfcomm_from_uart:
+ssp_tx_rfcomm_from_uart_without_credit:
+ssp_tx_rfcomm_from_uart_common:
+ssp_tx_rfcomm_from_uart_common0:
+ssp_tx_write_length:
+ssp_tx_write_long_packet:
+ssp_tx_write_given_credit:
+	branch assert
+endif
Index: Receive_Code/program/scheduler.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/scheduler.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/scheduler.prog	(working copy)
@@ -0,0 +1,484 @@
+scheduler_process:
+	set1 mark_ext_patch,mark
+	bpatch patch35_3,mem_patch35
+	call check_51cmd
+	call app_process_bb_event
+	call process_conn_sm
+/* check the connection state sequence byte */
+	set1 mark_ext_patch,mark
+	bpatch patch35_4,mem_patch35
+ifdef SIMPLE_PAIRING
+	call sp_calc_sequence
+	call simple_pairing_sequence
+	call master_simple_paring_sequence
+endif
+//return if it is hci mode. 'cause the following is host part.
+//notify BB to tx a l2cap packet
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	//for conn to MTK 
+	call l2cap_call_proc_sigal_pending
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	set1 mark_ext_patch,mark
+	bpatch patch35_5,mem_patch35
+//to generat a new l2cap packet
+	call process_upper_sm
+	call l2cap_send_config_req
+ifdef COMPILE_RFCOMM
+	call rfcomm_send_more_pkt//use this function to send msc_cmd after msc_rep sent
+endif
+scheduler_process0:
+	call scheduler_tx_disconnect_hid //may not used
+	set1 mark_ext_patch,mark
+	bpatch patch35_6,mem_patch35
+//	call l2cap_malloc_is_fifo_full
+//	nrtn blank
+	branch app_process_bt
+	
+scheduler_tx_disconnect_hid:
+	fetch 1,mem_CONTROL_tasks		
+	bbit1 L2CAP_DISCONNECT_INTERRUPT,L2CAP_disconnect_interrupt_req
+	bbit1 L2CAP_DISCONNECT_CONTROL,L2CAP_disconnect_control_req
+	rtn
+	
+scheduler_tx_l2cap_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch35_7,mem_patch35
+	call l2cap_malloc_is_fifo_empty
+	rtn blank //empty
+	fetch 1,mem_op
+	rtnbit1 op_txl2cap
+	call l2cap_malloc_fifo_out
+	store 2,mem_txptr
+	copy pdata,contr
+	ifetch 2,contr
+	increase 4,pdata
+	store 2,mem_tx_len
+	jam 6,mem_tx_lch//start pkt
+	set1 mark_ext_patch,mark
+	bpatch patch36_0,mem_patch36
+	fetch 2,mem_l2cap_tx_multi_offset
+	branch scheduler_tx_l2cap_start_pkt,blank
+	fetch 1,mem_op
+	rtnbit0 op_pkt_comp
+	set0 op_pkt_comp,pdata
+	store 1,mem_op
+	jam 5,mem_tx_lch//continue pkt
+	fetcht 2,mem_l2cap_tx_multi_offset
+	fetch 2,mem_txptr
+	iadd temp,pdata
+	store 2,mem_txptr
+	fetch 2,mem_tx_len
+	isub temp,pdata
+	store 2,mem_tx_len
+scheduler_tx_l2cap_start_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch36_1,mem_patch36
+	fetch 2,mem_tx_len
+	branch assert,blank
+	arg l2cap_max_pkt_len,temp //max len of dh3 pkt
+	isub temp,pdata
+	nbranch scheduler_Tx_l2cap_last_pkt,positive
+	set1 mark_ext_patch,mark
+	bpatch patch36_2,mem_patch36
+	storet 2,mem_tx_len //l2cap_max_pkt_len
+	fetch 2,mem_l2cap_tx_multi_offset
+	iadd temp,pdata
+	store 2,mem_l2cap_tx_multi_offset
+	branch scheduler_Tx_l2cap_pkt_end
+scheduler_Tx_l2cap_last_pkt:
+	setarg 0
+	store 2,mem_l2cap_tx_multi_offset
+scheduler_Tx_l2cap_pkt_end:
+	fetch 1,mem_op
+	set1 op_txl2cap,pdata
+	store 1,mem_op
+	rtn
+
+scheduler_start_upper_sm:
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_HID,scheduler_start_upper_sm_hid
+	jam UPPERSM_RECONN_SDP_CONN,mem_upper_sm_reconn
+	rtn
+scheduler_start_upper_sm_hid:
+	jam UPPERSM_RECONN_HID_CTRL_CONN,mem_upper_sm_reconn
+	rtn
+	
+process_upper_sm:
+	fetch 1,memui_reconnect_mode
+	nbranch process_upper_sm_reconn,blank
+process_upper_sm_remote_page:
+	fetch 1,mem_upper_sm_remote_page
+	//beq UPPERSM_RP_IDLE,process_upper_sm_rp_idle
+	rtn blank
+	//nothing to do when remote page to create a connection.
+	jam 0,mem_upper_sm_remote_page
+process_upper_sm_rp_wait:
+	rtn
+
+
+process_upper_sm_reconn:
+	set1 mark_ext_patch,mark
+	bpatch patch36_3,mem_patch36
+	fetch 1,mem_upper_sm_reconn
+	rtn blank
+	beq UPPERSM_RECONN_SDP_CONN,process_upper_sm_reconn_sdp_conn
+	beq UPPERSM_RECONN_SDP_CONN_WAIT,process_upper_sm_reconn_sdp_conn_wait
+	beq UPPERSM_RECONN_SDP_CFG,process_upper_sm_reconn_sdp_cfg
+	beq UPPERSM_RECONN_SDP_CFG_WAIT,process_upper_sm_reconn_sdp_cfg_wait
+	beq UPPERSM_RECONN_SS_SPP,process_upper_sm_reconn_ss_spp
+	beq UPPERSM_RECONN_SS_SPP_WAIT,process_upper_sm_reconn_ss_spp_wait
+	beq UPPERSM_RECONN_SDP_DISCONN,process_upper_sm_reconn_sdp_disconn
+	beq UPPERSM_RECONN_SDP_DISCONN_WAIT,process_upper_sm_reconn_sdp_disconn_wait
+	beq UPPERSM_RECONN_HID_CTRL_CONN,process_upper_sm_reconn_hid_ctrl_conn
+	beq UPPERSM_RECONN_HID_CTRL_CONN_WAIT,process_upper_sm_reconn_hid_ctrl_conn_wait
+	beq UPPERSM_RECONN_HID_CTRL_CFG,process_upper_sm_reconn_hid_ctrl_cfg
+	beq UPPERSM_RECONN_HID_CTRL_CFG_WAIT,process_upper_sm_reconn_hid_ctrl_cfg_wait
+	beq UPPERSM_RECONN_HID_INT_CONN,process_upper_sm_reconn_hid_int_conn
+	beq UPPERSM_RECONN_HID_INT_CONN_WAIT,process_upper_sm_reconn_hid_int_conn_wait
+	beq UPPERSM_RECONN_HID_INT_CFG,process_upper_sm_reconn_hid_int_cfg
+	beq UPPERSM_RECONN_HID_INT_CFG_WAIT,process_upper_sm_reconn_hid_int_cfg_wait
+	beq UPPERSM_RECONN_RFCOMM_CONN,process_upper_sm_reconn_rfcomm_conn
+	beq UPPERSM_RECONN_RFCOMM_CONN_WAIT,process_upper_sm_reconn_rfcomm_conn_wait
+	beq UPPERSM_RECONN_RFCOMM_CFG,process_upper_sm_reconn_rfcomm_cfg
+	beq UPPERSM_RECONN_RFCOMM_CFG_WAIT,process_upper_sm_reconn_rfcomm_cfg_wait
+	beq UPPERSM_RECONN_RFCOMM_SABM,process_upper_sm_reconn_rfcomm_sabm
+	beq UPPERSM_RECONN_RFCOMM_SABM_WAIT,process_upper_sm_reconn_rfcomm_sabm_wait
+	beq UPPERSM_RECONN_SPP_CMD_PN,process_upper_sm_reconn_spp_cmd_pn
+	beq UPPERSM_RECONN_SPP_CMD_PN_WAIT,process_upper_sm_reconn_spp_cmd_pn_wait
+	beq UPPERSM_RECONN_SPP_SABM,process_upper_sm_reconn_spp_sabm
+	beq UPPERSM_RECONN_SPP_SABM_WAIT,process_upper_sm_reconn_spp_sabm_wait
+	beq UPPERSM_RECONN_SPP_CMD_MS,process_upper_sm_reconn_spp_cmd_ms
+	beq UPPERSM_RECONN_SPP_CMD_MS_WAIT,process_upper_sm_reconn_spp_cmd_ms_wait
+process_upper_sm_reconn_wait:
+	rtn
+process_upper_sm_reconn_sdp_conn:
+	call upper_sm_send_sdp_conn //return n-user if sending failed
+	jam UPPERSM_RECONN_SDP_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_sdp_state
+	rtn
+process_upper_sm_reconn_sdp_cfg:
+	jam UPPERSM_RECONN_SDP_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	rtnbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ
+	jam UPPERSM_RECONN_SDP_CFG,mem_upper_sm_reconn
+	call upper_sm_send_sdp_cfg //return n-user if sending failed
+	jam UPPERSM_RECONN_SDP_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+	rtn
+process_upper_sm_reconn_ss_spp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	call upper_sm_send_ss_spp
+	jam UPPERSM_RECONN_SS_SPP_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_sdp_disconn:
+	call upper_sm_send_sdp_disconn
+	jam UPPERSM_RECONN_SDP_DISCONN_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_hid_ctrl_conn:
+	call upper_sm_send_hid_ctrl_conn
+	jam UPPERSM_RECONN_HID_CTRL_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_hid_control_state
+	rtn
+process_upper_sm_reconn_hid_ctrl_cfg:    
+	call upper_sm_send_hid_ctrl_cfg
+	jam UPPERSM_RECONN_HID_CTRL_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_control_state
+	rtn
+process_upper_sm_reconn_hid_int_conn:
+	call upper_sm_send_hid_int_conn
+	jam UPPERSM_RECONN_HID_INT_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+process_upper_sm_reconn_hid_int_cfg:    
+	call upper_sm_send_hid_int_cfg
+	jam UPPERSM_RECONN_HID_INT_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+process_upper_sm_reconn_rfcomm_conn:
+	call upper_sm_send_rfcomm_conn
+	jam UPPERSM_RECONN_RFCOMM_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_rfcomm_cfg: 
+	call upper_sm_send_rfcomm_cfg
+	jam UPPERSM_RECONN_RFCOMM_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_rfcomm_sabm:
+	call upper_sm_send_rfcomm_sabm
+	jam UPPERSM_RECONN_RFCOMM_SABM_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_SABM,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_spp_cmd_pn: 
+	call upper_sm_send_spp_cmd_pn
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_CMD
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_CMD_PN_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_spp_sabm:   
+	call upper_sm_send_spp_sabm
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_SABM
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_SABM_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_remote_spp_channel //address in pdata
+	lshift3 pdata,pdata
+	or_into 3,pdata
+	arg mem_HIUfcs_SPP,temp // mem_HIUfcs_spp_WCredits in regB++
+	storet 2,mem_contw_temp
+	branch rfcomm_save_FCS_uih
+process_upper_sm_reconn_spp_cmd_ms: 
+	call upper_sm_send_spp_cmd_ms
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_CMD
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_CMD_MS_WAIT,mem_upper_sm_reconn
+	rtn
+
+process_upper_sm_reconn_sdp_conn_wait:
+	fetch 1,mem_sdp_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_SDP_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_sdp_cfg_wait:
+	fetch 1,mem_sdp_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_SS_SPP ,mem_upper_sm_reconn
+process_upper_sm_reconn_ss_spp_wait:
+	fetch 1,mem_message_to_uppersm
+	rtnne RECIEVE_SS_REASULT_HF
+	jam 0,mem_message_to_uppersm
+	jam UPPERSM_RECONN_SDP_DISCONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_sdp_disconn_wait:
+	fetch 1,mem_sdp_state
+	nrtn blank
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_HID,process_upper_sm_reconn_setup_hid
+	bbit1 support_SPP,process_upper_sm_reconn_setup_rfcomm
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_hid_ctrl_conn_wait:
+	fetch 1,mem_hid_control_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_HID_CTRL_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_ctrl_cfg_wait:
+	fetch 1,mem_hid_control_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_HID_INT_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_int_conn_wait:  
+	fetch 1,mem_hid_interrupt_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_HID_INT_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_int_cfg_wait:  
+	fetch 1,mem_hid_interrupt_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_SPP,process_upper_sm_reconn_setup_rfcomm
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_rfcomm_conn_wait: 
+	fetch 1,mem_rfcomm_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_RFCOMM_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_rfcomm_cfg_wait:
+	fetch 1,mem_rfcomm_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_RFCOMM_SABM,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_rfcomm_sabm_wait:  
+	fetch 1,mem_rfcomm_state
+	rtnne L2CAP_CHANNEL_RFCOMM_DLCI0_OPENED
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_SPP,process_upper_sm_reconn_setup_spp
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_spp_cmd_pn_wait:
+	fetch 1,mem_spp_state
+	rtnbit0 RFCOMM_CHANNEL_STATE_PN_RES
+	jam UPPERSM_RECONN_SPP_SABM,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_spp_sabm_wait:
+	fetch 1,mem_spp_state
+	rtnbit0 RFCOMM_CHANNEL_STATE_UA
+	jam UPPERSM_RECONN_SPP_CMD_MS ,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_spp_cmd_ms_wait: 
+	fetch 1,mem_spp_state
+	rtnne RFCOMM_CHANNEL_SETUP_COMPLETE
+	branch process_upper_sm_reconn_termination
+
+process_upper_sm_reconn_setup_hid:
+	jam UPPERSM_RECONN_HID_CTRL_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+
+process_upper_sm_reconn_setup_rfcomm:
+	jam UPPERSM_RECONN_RFCOMM_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_setup_spp:
+	jam UPPERSM_RECONN_SPP_CMD_PN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+
+
+
+process_upper_sm_reconn_termination:
+	jam 0,mem_upper_sm_reconn
+	rtn
+upper_sm_send_sdp_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch36_4,mem_patch36
+	call l2cap_malloc_signal_channel
+	setarg PSM_SDP
+	copy pdata,temp
+	setarg L2CAP_SDP_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+	
+upper_sm_send_sdp_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch36_5,mem_patch36
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_SDP_remote_CID
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+	
+upper_sm_send_sdp_disconn:
+	set1 mark_ext_patch,mark
+	bpatch patch36_6,mem_patch36
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_SDP_remote_CID
+	copy pdata,temp
+	arg L2CAP_SDP_channel,timeup
+	call ML2CAP_send_signal_disconn_req
+	fetch 1,mem_sdp_state
+	set0 L2CAP_CHANNEL_STATE_RCV_CFG_RES ,pdata
+	store 1,mem_sdp_state
+	rtn
+//service search
+upper_sm_send_ss_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch36_7,mem_patch36
+	call l2cap_malloc_sdp_channel
+	call sdp_send_spp_request
+	branch MSDP_send_req_done
+
+upper_sm_send_rfcomm_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch37_0,mem_patch37
+	call l2cap_malloc_signal_channel
+	setarg PSM_RFCOMM
+	copy pdata,temp
+	setarg L2CAP_RFCOMM_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+
+upper_sm_send_rfcomm_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch37_1,mem_patch37
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_rfcomm_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_hid_ctrl_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch37_2,mem_patch37
+	call l2cap_malloc_signal_channel
+	setarg PSM_HID_control
+	copy pdata,temp
+	setarg L2CAP_HID_Control_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+
+upper_sm_send_hid_ctrl_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch37_3,mem_patch37
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_hid_ctrl_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_hid_int_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch37_4,mem_patch37
+	call l2cap_malloc_signal_channel
+	setarg PSM_HID_interrupt
+	copy pdata,temp
+	setarg L2CAP_HID_interrupt_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+	
+upper_sm_send_hid_int_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch37_5,mem_patch37
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_hid_int_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_rfcomm_sabm:
+	set1 mark_ext_patch,mark
+	bpatch patch37_6,mem_patch37
+	call l2cap_malloc_rfcomm_channel
+	//force 3,temp //address
+	jam 3,mem_current_adss
+	jam 0x1c,mem_current_fcs
+	call rfcomm_send_sabm
+	jam 1,mem_rfcomm_initiator
+	rtn
+
+upper_sm_send_spp_cmd_pn:
+	set1 mark_ext_patch,mark
+	bpatch patch37_7,mem_patch37
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_remote_spp_channel
+	call channel_to_dlci
+	storet 1,mem_pn_dlci
+	branch rfcomm_send_param_neg_cmd
+
+upper_sm_send_spp_sabm:
+	set1 mark_ext_patch,mark
+	bpatch patch38_0,mem_patch38
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd
+	call rfcomm_calculate_FCS_sabm //sabm fcs use once only,not need to save
+	store 1,mem_current_fcs
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd
+	storet 1,mem_current_adss
+	branch rfcomm_send_sabm
+
+upper_sm_send_spp_cmd_ms:
+	set1 mark_ext_patch,mark
+	bpatch patch38_1,mem_patch38
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd //address in temp
+	branch rfcomm_send_modem_status_cmd
+
+
+
Index: Receive_Code/program/sdp.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/sdp.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/sdp.prog	(working copy)
@@ -0,0 +1,1370 @@
+/**********************************************************************/
+/* Subroutine: sdp_process                                         */
+/* Process Service Discovery Request                                  */
+/* Called from L2CAP, check PDUID, branch to different req processings*/
+/*                                                                    */  
+/* Input:       mem_L2CAP_Rx_payload                                  */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+sdp_process:
+	set1 mark_ext_patch,mark
+	bpatch patch38_2,mem_patch38
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+	ifetch 1,contr
+	copy pdata,regB				/* PDUID */
+	store 1,mem_sdp_pduid
+	ifetch 2,contr
+	store 2,mem_sdp_transactionid			/* save transaction id */
+	ifetch 1,contr				/* higher byte of parameter length */
+	lshift8 pdata,timeup				
+	ifetch 1,contr				/* lower byte of parameter length */
+	iadd timeup,timeup				/* parameter length stored in "timeup" */
+	set1 mark_ext_patch,mark
+	bpatch patch38_3,mem_patch38
+	deposit regB						/* PDUID  */
+	beq 2,servicesearch_req			
+	beq 4,patch_serviceattribute_req
+	beq 6,patch_servicesearchattribute_req
+	beq 7,servicesearchattribute_res
+	branch sdp_insufficient_resource
+
+/**********************************************************************/
+/* servicesearch_req			                              */
+/* Processing Service Search Request                                  */
+/* Call: ask_serviceclassid, empty_response                     */
+/*                                                                    */  
+/* Input:       mem_L2CAP_Rx_payload pointer in contr                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+servicesearch_req:
+	call ask_serviceclassid
+	compare 1,temp,0xff
+	branch empth_sa_rsp,true
+	compare 0xff,temp,0xff
+	branch sdp_invalid_reqest_syntax,true
+
+	ifetch 2,contr				/* max aservice record count */
+	store 2,mem_sdp_record_maxcnt
+	increase -2,timeup
+
+	increase -1,timeup				/* continuation state 1 byte (0) */
+	nbranch sdp_invalid_pdu_size,zero		/* invalid pdu size */
+	arg mem_uuid_search_pat,timeup
+	ifetch 2,timeup
+	rtn blank
+	increase 2,timeup
+	call search_uuid
+	call l2cap_get_sdp_tx_payload			/* put the pointer to Tx buffer  */
+	force 3,pdata						/* PDUID 3, Service Search Response */
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid			/* write transaction id */
+	istore 2,contw
+	lshift2 queue,pdata
+	add pdata,5,pdata
+	add pdata,5,regC
+	byteswap pdata,pdata
+	istore 2,contw							/* write parLength */
+	deposit queue
+	byteswap pdata,pdata
+	istore 2,contw							/* write TotSrvRecCount */
+	istore 2,contw							/* write CurSrvRecCount */
+	arg mem_handle_list,contr
+	copy queue,loopcnt
+	branch servicesearch_req_blank,zero
+servicesearch_req_loop:	
+	ifetch 4,contr
+	istore 4,contw
+	loop servicesearch_req_loop
+servicesearch_req_blank:	
+	force 0,pdata
+	istore 1,contw							/* continuation state */
+	deposit regC
+	store 1,mem_sdp_tx_pkt_length
+	branch assert,blank
+	rtn
+
+/**********************************************************************/
+/* serviceattribute_req			                              */
+/* Processing Service Attribute Request                               */
+/* Call: ask_attributeid, empty_response (if 3 stored attr.     */
+/* not asked) or answer_attributelist                              */  
+/* Input:       mem_L2CAP_Rx_payload pointer in contr                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+patch_serviceattribute_req:
+	ifetch 4,contr				/* service record handle */
+	store 4,mem_sdp_record_handle	 
+	increase -4,timeup
+	iforce temp
+	ifetch 2,contr				/* max attribute byte count */
+	byteswap pdata,pdata
+	increase -18,pdata	
+	store 2,mem_sdp_attribute_maxbyte
+	increase -2,timeup
+	call dataelementtype6		/* result: data size stored in regA */
+	branch sdp_invalid_reqest_syntax,zero
+	compare 5,regA,0xff
+	//branch serviceattribute_req_all,true
+	branch patch_serviceattribute_judge_WholeRangle,true
+patch_serviceattribute_isnot_wholerangle:
+	arg mem_attrib_list,contw
+	force 0,queue
+	branch patch_serviceattribute_req_loop
+patch_serviceattribute_judge_wholerangle:
+	ifetch 1,contr
+	bne 0xa,sdp_invalid_reqest_syntax
+	ifetch 2,contr
+	nbranch patch_serviceattribute_judge_WholeRangle_false1,blank
+	ifetch 1,contr
+	bne 0xff,patch_serviceattribute_judge_WholeRangle_false2
+	ifetch 1,contr
+	bne 0xff,patch_serviceattribute_judge_WholeRangle_false3		//also exist potential bug because mem_attrib_list length is only 7f
+	increase -5,contr
+	branch serviceattribute_req_all
+patch_serviceattribute_judge_wholerangle_false3:
+	increase -5,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_judge_wholerangle_false2:
+	increase -4,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_judge_wholerangle_false1:
+	increase -3,contr
+	branch patch_serviceattribute_isnot_wholerangle
+patch_serviceattribute_req_loop:	
+	ifetch 1,contr
+	beq 0x09, patch_serviceattribute_req_one_id
+	beq 0x0a, patch_serviceattribute_req_range_id
+patch_serviceattribute_req_range_id:
+	ifetch 2, contr
+	istore 2, contw
+	increase 1,queue
+	byteswap pdata,regB
+	ifetch 2, contr
+	byteswap pdata,pdata
+patch_serviceattribute_req_range_id_increase:	
+	increase 1, regB
+	isub regB, null
+	nbranch patch_serviceattribute_req_range_id_finish,positive
+	copy pdata, regC
+	byteswap regB,pdata
+	istore 2, contw
+	increase 1,queue
+	copy regC, pdata
+	branch patch_serviceattribute_req_range_id_increase
+patch_serviceattribute_req_range_id_finish:
+	increase -5,timeup
+	increase -5,regA
+	branch patch_serviceattribute_req_check_next_id
+patch_serviceattribute_req_one_id:
+	ifetch 2,contr
+	istore 2,contw //save the attribute id in mem_attrib_list
+	increase 1,queue
+	increase -3,timeup
+	increase -3,regA
+patch_serviceattribute_req_check_next_id:	
+	nbranch sdp_invalid_reqest_syntax,positive
+	nbranch patch_serviceattribute_req_loop,zero
+	increase -1,timeup
+	nbranch sdp_invalid_reqest_syntax,zero
+	
+	call l2cap_get_sdp_tx_payload
+	increase 10,contw//arg mem_SDP_Tx_payload+10,contw
+	arg mem_attrib_list,regA
+patch_answer_handle_attributelist_next:
+	set1 mark_ext_patch,mark
+	bpatch patch38_4,mem_patch38
+	copy queue,pdata
+	branch answer_handle_attributelist_end,blank
+	ifetch 2,regA
+	branch answer_handle_attributelist_end,blank
+	iforce regB /* regB is the attribute ID */
+	fetch 4,mem_sdp_record_handle	
+	iforce temp
+	call search_handle_attrib
+	branch patch_answer_handle_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call patch_sdp_data_len
+	branch patch_answer_handle_attributelist_notfound,blank
+	iforce loopcnt	
+	call memcpy
+patch_answer_handle_attributelist_notfound:
+	increase 2,regA
+	increase -1, queue
+	branch patch_answer_handle_attributelist_next
+
+answer_handle_attributelist_end:
+	set1 mark_ext_patch,mark
+	bpatch patch38_5,mem_patch38
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata//setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,regA
+	byteswap regA, pdata
+	add temp,8,regB//store 2,mem_SDP_Tx_payload+8
+	istore 2,regB
+	increase 3,regA
+	byteswap regA, pdata
+	add temp,5,regB//store 2,mem_SDP_Tx_payload+5
+	istore 2,regB
+	increase 3,regA
+	byteswap regA, pdata
+	add temp,3,regB//store 2,mem_SDP_Tx_payload+3// ParLength
+	istore 2,regB	
+	increase 5,regA
+	copy regA,pdata
+	store 2,mem_sdp_tx_pkt_length
+	setarg 0x36
+	add temp,7,regB//jam 0x36, mem_SDP_Tx_payload+7
+	istore 1,regB
+	setarg 5
+	istore 1,temp//jam 5,mem_SDP_Tx_payload	// PDU ID
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regB//store 2,mem_SDP_Tx_payload+1
+	istore 2,regB
+	rtn
+serviceattribute_req_all:	
+	ifetch 1,contr
+	bne 0xa,sdp_invalid_reqest_syntax
+	ifetch 2,contr
+	nbranch sdp_invalid_reqest_syntax,blank
+	ifetch 1,contr
+	bne 0xff,sdp_invalid_reqest_syntax
+	ifetch 1,contr
+	bne 0xff,sdp_invalid_reqest_syntax
+	increase -5,timeup
+	ifetch 1, contr
+	beq 0, continue_zero
+	beq 1, continue_one_byte
+	beq 2, continue_two_byte
+continue_zero:	
+	store 2, mem_sdp_continue_byte
+	increase -1,timeup				/* continuation state byte (0) */
+	branch continue_end
+continue_one_byte:
+	ifetch 1, contr
+	store 2, mem_sdp_continue_byte
+	increase -2,timeup				/* continuation state byte (1) */
+	branch continue_end
+continue_two_byte:
+	ifetch 2, contr
+	byteswap pdata,pdata
+	store 2, mem_sdp_continue_byte	
+	increase -3,timeup				/* continuation state byte (2) */
+continue_end:
+	nbranch sdp_invalid_pdu_size,zero		/* invalid pdu size */
+	set1 mark_ext_patch,mark
+	bpatch patch38_6,mem_patch38
+	call 	search_handle
+	nbranch sdp_invalid_service_record_handle,zero
+	copy contr,regA
+	call l2cap_get_sdp_tx_payload
+	copy regA,contr
+	increase 3,contw//arg mem_SDP_Tx_payload+3,contw
+	copy contr,timeup //sdp start pointer
+	call sdp_get_data
+	copy pdata, regA //sdp total length
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regB
+	copy regA,pdata
+	isub regB,regB //total_length - continue_byte in regB
+	fetch 2, mem_sdp_attribute_maxbyte
+	isub regB, null
+	nbranch fragment_sdp, positive
+	// the last fragment
+	disable user
+	fetch 2, mem_sdp_continue_byte
+	branch fisrt_fragment,blank
+	iadd timeup, contr //set the read pointer
+	increase 3,regB //include the total length field, 3 bytes
+	copy regB, loopcnt
+	copy loopcnt, pdata
+	increase 3, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	copy loopcnt, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	branch answer_attributelist_full_loop
+fisrt_fragment:
+	add regA,6,loopcnt
+	branch parlength_continue_byte, user
+	byteswap loopcnt,pdata
+	branch parlength_continue_byte_end
+parlength_continue_byte:
+	copy loopcnt, pdata
+	increase 2, pdata
+	byteswap pdata,pdata
+parlength_continue_byte_end:
+	istore 2,contw				/* ParLength */
+	increase -3,loopcnt
+	byteswap loopcnt,pdata			
+	istore 2,contw				/* AttrListByteCount */
+	copy timeup,contr
+	branch answer_attributelist_full_loop
+fragment_sdp:
+	enable user
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, regA
+	copy pdata, loopcnt
+	fetch 2, mem_sdp_continue_byte
+	branch fisrt_fragment,blank
+	iadd timeup, contr
+	copy regA,pdata
+	increase 5,pdata
+	byteswap pdata,pdata	
+	istore 2, contw
+	copy regA,pdata
+	byteswap pdata,pdata
+	istore 2, contw
+answer_attributelist_full_loop:	
+	ifetch 1,contr
+	istore 1,contw
+	loop answer_attributelist_full_loop
+	nbranch last_frag_continue, user
+	force 2,pdata
+	istore 1,contw
+	copy contr, pdata
+	isub timeup, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	branch sdp_frag_end
+last_frag_continue:
+	force 0,pdata
+	istore 1,contw
+sdp_frag_end:	
+	fetch 2,mem_sdp_tx_payload_ptr//setarg mem_SDP_Tx_payload
+	isub contw,pdata
+	sub pdata,0,pdata
+	store 2,mem_sdp_tx_pkt_length
+	call l2cap_get_sdp_tx_payload//jam 5,mem_SDP_Tx_payload
+	setarg 5
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid
+	istore 2,contw//store 2,mem_SDP_Tx_payload+1
+	rtn			
+/**********************************************************************/
+/* servicesearchattribute_req                          		      */
+/* Processing Service Search Attribute Request                        */
+/* Call: ask_serviceclassid, ask_attributeid, empty_response */
+/*       or answer_attributelist                                   */  
+/* Input:       contr                                                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length             */
+/*                                                                    */
+/**********************************************************************/     
+patch_servicesearchattribute_req:
+	//compare 29,timeup,0xff
+	//branch empty_ssa_rsp,true
+	call ask_serviceclassid
+	compare 0xff,temp,0xff
+	branch patch_servicesearchattribute_req_all,true
+	ifetch 2,contr				/* max attribute byte count */
+	byteswap pdata,pdata
+	increase -18,pdata	
+	store 2,mem_sdp_attribute_maxbyte
+	increase -2,timeup
+	call dataelementtype6
+	arg mem_attrib_list,contw
+	force 0,queue
+patch_servicesearchattribute_req_loop:	
+	ifetch 3,contr //service recorde handle 0x0a0000ffff
+	bne 0x09,patch_servicesearchattribute_req_all
+patch_servicesearchattribute_req_uuid:
+	rshift8 pdata,pdata
+	istore 2,contw //save the attribute id in mem_attrib_list
+	increase 1,queue
+	increase -3,timeup
+	increase -3,regA
+	nbranch sdp_invalid_reqest_syntax,positive
+	nbranch patch_servicesearchattribute_req_loop,zero
+	increase -1,timeup
+	nbranch sdp_invalid_reqest_syntax,zero
+patch_servicesearchattribute_req_search:
+	call l2cap_get_sdp_tx_payload
+	increase 13,contw//arg mem_SDP_Tx_payload+13,contw
+	fetch 2,mem_uuid_search_pat
+	iforce regC
+	arg mem_attrib_list,regA
+patch_answer_attributelist_next:	
+	ifetch 4,regA
+	branch patch_answer_attributelist_end,blank
+	ifetch 2,regA
+	iforce regB						/* regB is the attribute ID */
+	call search_attrib
+	branch patch_answer_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call patch_sdp_data_len
+	iforce loopcnt	
+patch_answer_attributelist_attrib_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop patch_answer_attributelist_attrib_loop
+patch_answer_attributelist_notfound:
+	increase 2,regA
+	branch patch_answer_attributelist_next
+patch_servicesearchattribute_req_all:
+	set1 mark_ext_patch,mark
+	bpatch patch38_7,mem_patch38
+	//bne 0x0a,sdp_invalid_reqest_syntax
+	//rshift8 pdata,pdata
+	//nbranch sdp_invalid_reqest_syntax,blank
+	ifetch 1,contr
+	//bne 0xff,sdp_invalid_reqest_syntax
+	ifetch 1,contr
+	//bne 0xff,sdp_invalid_reqest_syntax
+	increase -5,timeup
+	increase -5,rega
+	nbranch sdp_invalid_reqest_syntax,positive
+	ifetch 1,contr
+	increase -1,timeup
+	jam 0,mem_sdp_continue_byte
+	jam 0,mem_sdp_continue_byte+1
+	nbranch patch_servicesearchattribute_req_all_continue,blank
+	arg mem_uuid_search_pat,timeup
+	ifetch 2,timeup
+	//rtn blank
+	increase 2,timeup
+	call search_uuid  //handle number in queue
+	deposit queue
+	store 1,mem_handle_humber
+	branch empty_ssa_rsp,blank
+	arg 0,queue
+	call l2cap_get_sdp_tx_payload
+	increase 10,contw//arg mem_SDP_Tx_payload+10,contw
+	branch servicesearchattribute_req_next_handle
+
+patch_servicesearchattribute_req_all_continue:
+	ifetch 2,contr
+	increase -2,timeup
+	byteswap pdata,pdata
+	store 2, mem_sdp_continue_byte	
+	arg mem_uuid_search_pat,timeup
+	ifetch 2,timeup
+	//rtn blank
+	increase 2,timeup
+	call search_uuid  //handle number in queue
+	deposit queue
+	store 1,mem_handle_humber
+	branch empty_ssa_rsp,blank
+	arg 0,queue
+	call l2cap_get_sdp_tx_payload
+	increase 7,contw//arg mem_SDP_Tx_payload+10,contw
+	branch servicesearchattribute_req_next_handle_continue
+	
+patch_answer_attributelist_end:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,13,pdata//setarg mem_SDP_Tx_payload+13
+	isub contw,pdata
+	branch patch_no_attribute_return,zero
+	sub pdata,0,pdata
+	add temp,12,regB//store 1,mem_SDP_Tx_payload+12
+	istore 1,regB
+	increase 3,pdata
+	add temp,9,regB//store 1,mem_SDP_Tx_payload+9
+	istore 1,regB
+	increase 3,pdata
+	byteswap pdata,pdata
+	add temp,5,regB//store 2,mem_SDP_Tx_payload+5
+	istore 2,regB		/* AttrListByteCount */
+	rshift8 pdata,pdata
+	increase 3,pdata
+	byteswap pdata,pdata
+	add temp,3,regB//store 2,mem_SDP_Tx_payload+3
+	istore 2,regB		/* ParLength */
+	rshift8 pdata,pdata
+	increase 5,pdata
+	store 1,mem_sdp_tx_pkt_length	/*packet length*/
+	
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regB//mem_SDP_Tx_payload+1
+	istore 2,regB
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload//PDU ID 
+	//jam 0,mem_SDP_Tx_payload+8		
+	//jam 0x36,mem_SDP_Tx_payload+7
+	//jam 0,mem_SDP_Tx_payload+11		
+	//jam 0x36,mem_SDP_Tx_payload+10
+	setarg 0x0036
+	add temp,7,regB
+	istore 2,regB
+	add temp,10,regB
+	istore 2,regB
+	rtn
+patch_no_attribute_return:
+	jam 10,mem_sdp_tx_pkt_length
+	call l2cap_get_sdp_tx_payload
+	//jam 7,mem_SDP_Tx_payload	//PDU ID
+	setarg 7
+	istore 1,contw 
+	fetch 2,mem_sdp_transactionid
+	istore 2,contw
+	//store 2,mem_SDP_Tx_payload+1
+	//jam 0,mem_SDP_Tx_payload+3
+	//jam 5,mem_SDP_Tx_payload+4	 //ParLength =5
+	setarg 0x0500
+	istore 2,contw
+	//jam 0,mem_SDP_Tx_payload+5
+	//jam 2,mem_SDP_Tx_payload+6	// AttrListByteCount =2
+	setarg 0x0200
+	istore 2,contw
+	//jam 0x35,mem_SDP_Tx_payload+7
+	//jam 0,mem_SDP_Tx_payload+8
+	//jam 0,mem_SDP_Tx_payload+9
+	setarg 0x000035
+	istore 3,contw
+	rtn
+	
+servicesearchattribute_req_attributelist_loop:	
+	ifetch 1,contr
+	istore 1,contw
+	increase 1, regB //mem_sdp_continue_byte
+	increase -1, regA  //mem_sdp_attribute_maxbyte
+	branch servicesearchattribute_req_check_next_ctn,zero
+	loop servicesearchattribute_req_attributelist_loop
+servicesearchattribute_req_check_next_ctn:	
+	copy contw, timeup
+	copy regB, pdata
+	store 2, mem_sdp_continue_byte
+	copy regA, pdata
+	store 2, mem_sdp_attribute_maxbyte
+	branch answer_attributelist_with_ctn_bytes,blank
+	branch answer_attributelist_with_ctn_end, user
+	copy timeup,contw
+servicesearchattribute_req_check_handle:	
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch servicesearchattribute_req_next_handle,zero
+	branch answer_attributelist_end_long
+
+servicesearchattribute_req_attributelist_loop_continue:
+	ifetch 1,contr
+	istore 1,contw
+	increase 1, regb //mem_sdp_continue_byte
+	increase -1, rega  //mem_sdp_attribute_maxbyte
+	branch servicesearchattribute_req_check_next_ctn_continue,zero
+	loop servicesearchattribute_req_attributelist_loop_continue	
+servicesearchattribute_req_check_next_ctn_continue:	
+	copy contw, timeup
+	copy regb, pdata
+	store 2, mem_sdp_continue_byte
+	copy rega, pdata
+	store 2, mem_sdp_attribute_maxbyte
+	branch answer_attributelist_with_ctn_bytes_continue,blank
+	branch answer_attributelist_with_ctn_end, user
+	copy timeup,contw
+servicesearchattribute_req_check_handle_continue:
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch servicesearchattribute_req_next_handle_continue,zero
+	branch answer_attributelist_end_long_continue
+	
+servicesearchattribute_req_next_handle:	
+	arg mem_handle_list,contr
+	lshift2 queue,pdata
+	iadd contr,contr
+	ifetch 4, contr //handle in pdata
+	iforce temp
+	call 	search_handle
+	copy contr,timeup
+	call sdp_get_data
+	add pdata,3,loopcnt
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, regA
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regB
+	copy timeup,contr
+	branch servicesearchattribute_req_attributelist_loop
+
+servicesearchattribute_req_next_handle_continue:
+	arg mem_handle_list,contr
+	lshift2 queue,pdata
+	iadd contr,contr
+	ifetch 4, contr //handle in pdata
+	iforce temp
+	call search_handle
+	copy contr,timeup
+	call sdp_get_data
+	add pdata,3,pdata
+	fetcht 2,mem_sdp_continue_byte
+	isub temp,loopcnt
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, rega
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regb
+	copy timeup,contr
+	iadd contr,contr
+	branch servicesearchattribute_req_attributelist_loop_continue
+	
+answer_attributelist_with_ctn_bytes:
+	arg 0, queue
+	arg 0, regB
+answer_attributelist_calc_attribute_length:	
+	arg mem_handle_list,contr
+	lshift2 queue,pdata
+	iadd contr,contr
+	ifetch 4, contr //handle in pdata
+	iforce temp
+	call 	search_handle
+	call sdp_get_data
+	add pdata,3,pdata
+	iadd regB, regB
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch answer_attributelist_calc_attribute_length,zero
+	
+	copy timeup,contw
+	force 2,pdata
+	istore 1,contw
+	fetch 2, mem_sdp_continue_byte
+	byteswap pdata,pdata
+	istore 2, contw
+	increase -3,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata //setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce regA
+
+	deposit regB //no longer use regB??
+	add temp,9,regB//store 1,mem_SDP_Tx_payload+9
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,8,regB
+	istore 1,regB//store 1,mem_SDP_Tx_payload+8
+	increase 3,regA
+	deposit regA
+	add temp,6,regB
+	istore 1,regB//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	rshift8 pdata,pdata
+	add temp,5,regB
+	istore 1,regB//store 1,mem_SDP_Tx_payload+5
+	increase 5,regA
+	deposit regA
+	add temp,4,regB
+	istore 1,regB//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	rshift8 pdata,pdata
+	add temp,3,regB
+	istore 1,regB//store 1,mem_SDP_Tx_payload+3
+	increase 5,regA
+	deposit regA
+	store 2,mem_sdp_tx_pkt_length	
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	 //PDU ID
+	setarg 0x36
+	add temp,7,regB//jam 0x36,mem_SDP_Tx_payload+7
+	istore 1,regB
+	add temp,1,regB//store 2,mem_SDP_Tx_payload+1
+	fetch 2,mem_sdp_transactionid
+	istore 2,regB
+	rtn
+
+answer_attributelist_with_ctn_bytes_continue:
+	arg 0, queue
+	arg 0, regb
+answer_attributelist_calc_attribute_length_continue:		
+	copy timeup,contw
+	force 2,pdata
+	istore 1,contw
+	fetch 2, mem_sdp_continue_byte
+	byteswap pdata,pdata
+	istore 2, contw
+	increase -3,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,7,pdata //setarg mem_SDP_Tx_payload+7
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce rega
+	
+	deposit rega
+	add temp,6,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	rshift8 pdata,pdata
+	add temp,5,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+5
+	increase 5,rega
+	deposit rega
+	add temp,4,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	rshift8 pdata,pdata
+	add temp,3,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+3
+	increase 5,rega
+	deposit rega
+	store 2,mem_sdp_tx_pkt_length	
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	 //PDU ID
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	fetch 2,mem_sdp_transactionid
+	istore 2,regb
+	rtn	
+	
+answer_attributelist_with_ctn_end:
+	copy timeup,contw
+	force 0,pdata
+	istore 1,contw
+	increase -1, contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,7,pdata//setarg mem_SDP_Tx_payload+7
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce regA
+
+	deposit regA
+	add temp,6,regB//store 1,mem_SDP_Tx_payload+6
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,5,regB//store 1,mem_SDP_Tx_payload+5  /* AttrListByteCount */
+	istore 1,regB
+	increase 3,regA
+	deposit regA
+	add temp,4,regB//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,3,regB//store 1,mem_SDP_Tx_payload+3
+	istore 1,regB
+	increase 5,regA
+	deposit regA
+	store 2,mem_sdp_tx_pkt_length	
+
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	/* PDU ID */
+	
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regB//store 2,mem_SDP_Tx_payload+1
+	istore 2,regB
+	rtn
+	
+answer_attributelist_end_long:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata//setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce regA
+
+	deposit regA
+	add temp,9,regB//store 1,mem_SDP_Tx_payload+9
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,8,regB//store 1,mem_SDP_Tx_payload+8
+	istore 1,regB
+	
+	increase 3,regA
+	deposit regA
+	add temp,6,regB//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,5,regB//store 1,mem_SDP_Tx_payload+5
+	istore 1,regB
+	increase 3,regA
+	deposit regA
+	add temp,4,regB//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	istore 1,regB
+	rshift8 pdata,pdata
+	add temp,3,regB//store 1,mem_SDP_Tx_payload+3
+	istore 1,regB
+	increase 5,regA
+	deposit regA
+	store 2,mem_sdp_tx_pkt_length	
+	setarg 0x36
+	add temp,7,regB
+	istore 1,regB//jam 0x36,mem_SDP_Tx_payload+7
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	/* PDU ID */
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regB//store 2,mem_SDP_Tx_payload+1
+	istore 2,regB
+	rtn	
+
+answer_attributelist_end_long_continue:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,7,pdata//setarg mem_SDP_Tx_payload+7
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce rega
+	
+	//increase 3,rega
+	deposit rega
+	add temp,6,regb//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,5,regb//store 1,mem_SDP_Tx_payload+5
+	istore 1,regb
+	increase 3,rega
+	deposit rega
+	add temp,4,regb//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,3,regb//store 1,mem_SDP_Tx_payload+3
+	istore 1,regb
+	increase 5,rega
+	deposit rega
+	store 2,mem_sdp_tx_pkt_length	
+	//setarg 0x36
+	//add temp,7,regb
+	//istore 1,regb//jam 0x36,mem_SDP_Tx_payload+7
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	/* PDU ID */
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	istore 2,regb
+	rtn	
+	
+patch_sdp_data_len:
+	copy contr,timeup
+	ifetch 1,contr
+	and pdata,0x07,loopcnt
+	rshift3 pdata,pdata
+	beq 6,patch_sdp_data_len_6
+	beq 1,sdp_data_len_1
+	beq 4,sdp_data_len_6
+	beq 5,sdp_data_len_5
+	branch sdp_data_len_rtn
+patch_sdp_data_len_6:
+	call patch_sdp_get_data_6
+	branch sdp_data_len_rtn
+patch_sdp_get_data_6:
+	deposit loopcnt
+	beq 5,patch_sdp_get_data_6_8bit
+	beq 6,patch_sdp_get_data_6_16bit
+	force 3,loopcnt
+	branch sdp_get_data_1
+patch_sdp_get_data_6_8bit:
+	ifetch 1,contr
+	increase 2,pdata
+	rtn
+patch_sdp_get_data_6_16bit:
+	ifetch 2,contr
+	byteswap pdata,pdata
+	increase 3,pdata
+	rtn
+
+sdp_send_spp_request:
+	call l2cap_get_sdp_tx_payload
+	copy pdata,contw
+	setarg 6//Search Attr Req
+	istore 1,contw
+	setarg sdp_tid_spp					
+	istore 2,contw
+	setarg 0x0f00 //length15
+	istore 2,contw
+	setarg 0x1a0535
+	istore 3,contw
+	setarg 0x0111
+	lshift16 pdata,pdata //UUID
+	istore 4,contw
+	setarg 0x2600 //max return len
+	istore 2,contw
+	setarg 0x0335
+	istore 2,contw
+	setarg 0x0009
+	istore 2,contw
+	setarg 0x0004
+	istore 2,contw
+	jam 0x14,mem_sdp_tx_pkt_length
+	rtn
+
+/**********************************************************************/
+/* servicesearchattribute_res			                      */
+/* Processing Service Search Attribute Response                       */
+/* Call: dataelementtype6, attribute_reading                    */
+/* Input:       contr                                                 */
+/* Output:      mem_sdp_record_handle,mem_sdp_search_failed           */
+/*                                                                    */
+/**********************************************************************/     
+servicesearchattribute_res:
+	copy contr,temp				/* save reading pointer */
+	fetch 2,mem_sdp_transactionid			/* check if this is the response for   */
+	beq sdp_tid_spp,servicesearchattribute_res_spp
+	//no profiles now, hs,hf,pbap,avtarg were cut off
+	//maybe add something about spp
+	branch srchfail
+
+servicesearchattribute_res_spp:
+	copy temp,contr
+	increase -3,timeup
+	copy timeup,pdata
+	beq 2,srchfail// empty response
+	call find_rfcomm_channel_number
+	rtn user
+	store 1,mem_remote_spp_channel
+	jam RECIEVE_SS_REASULT_HF,mem_message_to_uppersm
+	rtn
+
+srchfail:
+	rtn
+	/* find_rfcomm_channel_number	*/
+	/* input att_list_lenth in pdata   	*/
+	/* input att_list_ptr in contr		*/
+	/* output channel_number in pdata	*/
+	/* output failed while user was set	*/
+find_rfcomm_channel_number:
+	enable user
+	copy pdata,loopcnt
+	arg 0x0400,temp //att_descriptor_list
+find_rfcomm_channel_number_loop://find att_descriptor_list
+	ifetch 2,contr
+	isub temp,null
+	branch find_rfcomm_channel_number_find_adl,zero
+	increase -1,contr
+	loop find_rfcomm_channel_number_loop
+	rtn
+find_rfcomm_channel_number_find_adl:
+	arg 0x0300,temp
+find_rfcomm_channel_number_loop2:
+	ifetch 2,contr
+	isub temp,null
+	branch find_rfcomm_channel_number_find_rfcomm,zero
+	increase -1,contr
+	loop find_rfcomm_channel_number_loop2
+	rtn
+find_rfcomm_channel_number_find_rfcomm:
+	ifetch 1,contr
+	ifetch 1,contr
+	disable user
+	rtn
+
+sdp_invalid_service_record_handle:		
+	setarg 0x0200
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_invalid_pdu_size:				
+	setarg 0x0400
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_insufficient_resource:			
+	setarg 0x0600
+	store 2,mem_sdp_error_code
+	branch sdp_error_response
+sdp_invalid_reqest_syntax:			
+	setarg 0x0300
+	store 2,mem_sdp_error_code
+sdp_error_response:	
+	call l2cap_get_sdp_tx_payload
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid			
+	istore 2,contw
+	setarg 0x0200					
+	istore 2,contw
+	fetch 2,mem_sdp_error_code			
+	istore 2,contw
+	jam  7,mem_sdp_tx_pkt_length
+	rtn
+
+ask_serviceclassid:  
+	set1 mark_ext_patch,mark
+	bpatch patch39_0,mem_patch39
+	force 0,temp					/* use "temp" to mark syntax error or to mark 128 bit uuid */
+	arg mem_uuid_search_pat,contw
+	call dataelementtype6
+	branch asksrv_error,zero
+classidloop:
+	ifetch 1,contr
+	increase -1,regA
+	increase -1,timeup
+	compare 0x18,pdata,0xf8			/* 5 MSB: b00011: uuid */
+	nbranch asksrv_error,true
+	compare 0x04,pdata,0x07			/* 3 LSB: b100 128 bits uuid */
+	nbranch cmp032,true
+	force 1,temp					/* mark it as 128 bit uuid */
+skip2bytes:
+	ifetch 1,contr
+	increase -1,regA	
+	increase -1,timeup
+	bne 0x00, frstbwrong
+	ifetch 1,contr
+	increase -1,regA	
+	increase -1,timeup
+	beq 0x00, cmpuuid
+	branch scndbwrong
+frstbwrong:  
+	increase 1,contr
+	increase -1,regA	
+	increase -1,timeup
+scndbwrong:  
+	increase 2,contr				/* skip 2 bytes, first 2 bytes already wrong */
+	increase -2,regA	
+	increase -2,timeup
+	compare 0x00,temp,0xff                        /* 128 bits or 32 bits ? */
+	branch loopornot,true
+	increase 12,contr				/* skip 12 bytes, first 2 bytes already wrong */
+	increase -12,regA	
+	increase -12,timeup
+	branch loopornot
+cmp032:
+	compare 0x02,pdata,0x07			/* 3 LSB: b010 32 bits uuid */
+	nbranch cmp016,true
+	branch skip2bytes			
+cmp016:
+	compare 0x01,pdata,0x07			/* 3 LSB: b001 16 bit uuid */
+	nbranch asksrv_error,true
+cmpuuid:
+	ifetch 2,contr				/* higher order byte */
+	increase -2,regA
+	increase -2,timeup
+	istore 2,contw
+uuidsize:
+	compare 0x00,temp,0xff			/* is this 128 bits uuid */
+	branch loopornot,true
+	copy contr,temp
+	set1 mark_ext_patch,mark
+	bpatch patch39_1,mem_patch39
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x10, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x80, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x80, wrong12b
+	ifetch 1,contr
+	bne 0x5f, wrong12b
+	ifetch 1,contr
+	bne 0x9b, wrong12b
+	ifetch 1,contr
+	bne 0x34, wrong12b
+	ifetch 1,contr
+	beq 0xfb, chck12dn
+wrong12b:
+	copy temp,contr  
+wrong12b1:
+	increase 12,contr				/* skip 12 bytes */
+	force 0x00,queue
+	force 0x00,temp
+	branch chck12dn
+chck12dn:
+	increase -12,timeup
+	increase -12,regA
+loopornot:
+	compare 0x00,regA,0xff
+	nbranch classidloop,true
+	force 0,pdata
+	istore 2,contw			/* end list with null */
+	rtn,
+asksrv_error:
+	arg 0xff,temp
+	rtn
+
+/**********************************************************************/
+/* Subroutine: dataelementtype6                                    */
+/* Parse Data Element Sequence, obtain the data size                  */
+/* Input:  SDP Rx Buf Pointer in contr, parameter count in timeup     */
+/* Output: data size in regA, SDP Rx Buf Pointer in contr             */
+/*         and  parameter count in timeup, return with zero flag set: */
+/*         syntax error                                               */
+/**********************************************************************/     
+dataelementtype6:
+	ifetch 1,contr
+	increase -1,timeup
+	compare 0x30,pdata,0xf8			/* 5 MSB: b00110: type 6 */
+	nbranch dsize_error,true
+	compare 0x07,pdata,0x07			/* 3 LSB: b111: 32 bits */
+	branch dsize32,true
+	compare 0x06,pdata,0x07			/* 3 LSB: b110: 16 bits */
+	branch dsize16,true
+	compare 0x05,pdata,0x07			/* 3 LSB: b101: 8 bits */
+	nbranch dsize_error,true
+	ifetch 1,contr
+	copy pdata,regA				/* data in reg A */
+	increase -1,timeup
+	branch dsize
+dsize32:
+	increase 2,contr				/* just move pointer +2, zero in 2 high byte */
+	increase -2,timeup
+dsize16:
+	ifetch 2,contr
+	byteswap pdata,regA
+	increase -2,timeup
+dsize:
+	force 0x01,pdata
+	rtn
+dsize_error:
+	force 0x00,pdata
+	rtn
+
+/**********************************************************************/
+/* Subroutine: empty_response                                      */
+/* Send empty response                                                */
+/*                                                                    */
+/* Input:       mem_sdp_pduid, mem_sdp_transactionid                  */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length             */
+/*                                                                    */
+/**********************************************************************/     
+empth_sa_rsp:
+	setarg 0x03
+	store 1, mem_sdp_pduid
+	branch empty_response
+empty_ssa_rsp:
+	setarg 0x07
+	store 1, mem_sdp_pduid
+empty_response:
+	call l2cap_get_sdp_tx_payload			/* empty attribute list */
+	fetch 1,mem_sdp_pduid				/* PDUID */
+	istore 1,contw
+	copy pdata,regB
+	fetch 2,mem_sdp_transactionid			/* copy back transaction id */
+	istore 2,contw
+	
+	setarg 0x0500
+	istore 2, contw
+	compare 0x05,regB,0xff			/* pduid 3 */
+	branch fullsearch,true
+	compare 0x07,regB,0xff			/* pduid 3 */
+	branch fullsearch,true
+	setarg 0x000000
+	istore 3,contw
+	istore 2,contw
+	branch outempty
+
+fullsearch:					/* pduid must be 5 or 7 */
+	//force 0x00,pdata
+	//istore 1,contw
+	//force 0x02,pdata
+	//istore 1,contw
+	//force 0x35,pdata
+	//istore 1,contw
+	setarg 0x350200
+	istore 3,contw
+	//force 0x00,pdata
+	//istore 1,contw
+	//force 0x00,pdata
+	//istore 1,contw
+	setarg 0
+	istore 2, contw
+outempty:
+	jam 10,mem_sdp_tx_pkt_length
+	rtn
+
+sdp_data_len:
+	copy contr,timeup
+	ifetch 1,contr
+	and pdata,0x7,loopcnt
+	rshift3 pdata,pdata
+	beq 6,sdp_data_len_6
+	beq 1,sdp_data_len_1
+	beq 4,sdp_data_len_6
+	beq 5,sdp_data_len_5
+sdp_data_len_rtn:	
+	copy timeup,contr
+	rtn
+sdp_data_len_1:
+	call sdp_data_size
+	increase 1,pdata
+	branch sdp_data_len_rtn
+sdp_data_len_5:
+	force 2,pdata
+	branch sdp_data_len_rtn
+sdp_data_len_6:
+	call sdp_get_data_6
+	increase 2,pdata
+	branch sdp_data_len_rtn
+	
+sdp_get_data:
+	ifetch 1,contr
+	and pdata,0x7,loopcnt
+	rshift3 pdata,pdata
+	beq 6,sdp_get_data_6
+	beq 1,sdp_get_data_1
+	beq 5,sdp_get_data_6_8bit
+	rtn
+sdp_get_data_1:
+	call sdp_data_size
+	iforce loopcnt
+	force 0,temp
+sdp_get_data_1_loop:	
+	lshift8 temp,temp
+	ifetch 1,contr
+	ior temp,temp
+	loop sdp_get_data_1_loop
+	rtn
+sdp_get_data_6:
+	deposit loopcnt
+	beq 5,sdp_get_data_6_8bit
+	beq 6,sdp_get_data_6_16bit
+	force 3,loopcnt
+	branch sdp_get_data_1
+sdp_get_data_6_8bit:
+	ifetch 1,contr
+	rtn
+sdp_get_data_6_16bit:
+	ifetch 2,contr
+	byteswap pdata,pdata
+	rtn
+
+	/* get data size according to size index in loopcnt */
+sdp_data_size:
+	force 1,pdata
+	copy loopcnt,null
+	rtn zero
+sdp_data_size_loop:
+	lshift pdata,pdata
+	loop sdp_data_size_loop
+	rtn
+
+
+
+	/* return handles in queue if found */
+search_uuid:
+	iforce regC
+	set1 mark_ext_patch,mark
+	bpatch patch39_2,mem_patch39
+	force 0,queue
+	fetch 2, mem_ui_uuid_table
+	iforce contr
+	arg mem_handle_list,contw
+search_uuid_next:
+	disable user
+	ifetch 1,contr
+	rtn blank
+	iforce loopcnt
+search_uuid_loop:	
+	ifetch 2,contr
+	isub regC,null
+	nbranch search_uuid_not_found,zero
+	enable user					/* uuid match */
+search_uuid_not_found:
+	loop search_uuid_loop
+	ifetch 4,contr					/* get handle */
+	nbranch search_uuid_nomatch,user
+	istore 4,contw
+	increase 1,queue
+search_uuid_nomatch:	
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_uuid_next
+
+	/* return handle in pdata if found, 0 if not */
+search_handle:
+	set1 mark_ext_patch,mark
+	bpatch patch39_3,mem_patch39
+	fetch 2,mem_ui_uuid_table
+	iforce contr
+search_handle_loop:	
+	ifetch 1,contr
+	rtn blank
+	lshift pdata,pdata
+	iadd contr,contr
+	ifetch 4,contr
+	isub temp,null
+	rtn zero
+	call sdp_get_data
+	iadd contr,contr
+	branch search_handle_loop
+
+/**
+* input regB and regC.regB is the attribute ID and regC is UUID.
+* set contr if find attribute or 0 if not
+*/
+	
+search_attrib:
+	set1 mark_ext_patch,mark
+	bpatch patch39_4,mem_patch39
+	fetch 2,mem_ui_uuid_table
+	iforce contr
+search_attrib_next:
+	ifetch 1,contr
+	branch search_attrib_end, blank
+	iforce loopcnt
+search_attrib_loop:	
+	ifetch 2,contr
+	isub regC,null						/* regC is UUID, compare it */
+	branch search_attrib_found_uuid,zero
+	loop search_attrib_loop
+	increase 4,contr
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_attrib_next	
+search_attrib_found_uuid:
+	increase -1,loopcnt
+	lshift loopcnt,pdata
+	iadd contr,contr
+	increase 4,contr
+	call sdp_get_data
+	iadd contr,temp					/* attribute list end */
+search_attrib_loop_attribs:	
+	increase 1,contr
+	ifetch 2,contr
+	isub regB,timeup
+	//force 0x1,pdata,zero
+	setflag zero, 0,pdata
+	copy timeup, timeup
+	rtn zero							/* attribute found */
+	call sdp_data_len
+	iadd contr,contr
+	deposit temp
+	isub contr,null
+	branch search_attrib_end, zero /*attribute end, not found the attribute, return contr = 0*/
+	branch search_attrib_loop_attribs	
+search_attrib_end:
+	force 0,contr
+	force 0,pdata
+	rtn
+	
+
+//search the attribute according the record handle
+//record handle in temp, attribute in regB
+//set the contr to zero if not found
+search_handle_attrib:	
+	set1 mark_ext_patch,mark
+	bpatch patch39_5,mem_patch39
+	fetch 2,mem_ui_uuid_table
+	iforce contr
+search_handle_attrib_next:
+	ifetch 1,contr
+	branch search_handle_attrib_end, blank
+	lshift pdata,pdata
+	iadd contr, contr
+	ifetch 4,contr
+	isub temp,null						/* regC is UUID, compare it */
+	branch search_handl_attrib_found_handle,zero
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_handle_attrib_next	
+search_handl_attrib_found_handle:
+	call sdp_get_data
+	iadd contr,temp					/* attribute list end */
+search_handle_attrib_loop_attribs:	
+	increase 1,contr
+	ifetch 2,contr
+	isub regB,null
+	rtn zero							/* attribute found */
+	call sdp_data_len
+	iadd contr,contr
+	deposit temp
+	isub contr,null
+	branch search_handle_attrib_end, zero /*attribute end, not found the attribute, return contr = 0*/
+	branch search_handle_attrib_loop_attribs
+search_handle_attrib_end:
+	force 0,contr
+	rtn	
+
+	
Index: Receive_Code/program/security.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/security.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/security.prog	(working copy)
@@ -0,0 +1,1649 @@
+
+ifdef SECURE_CONNECTION
+	
+function_g2:
+	set1 mark_ext_patch,mark
+	bpatch patch39_6,mem_patch39
+	jam 80,mem_AES_CMAC_data_length
+	arg memdat,contw
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	call inverse_memdat	
+	arg mem_le_mrand,contr
+	call store_inverse_k	
+	call function_AES_CMAC	
+
+	arg mem_AES_CMAC_temp,contw
+	call load_inverse_result
+	setarg 1000000
+	copy pdata,rega
+	fetch 4,mem_AES_CMAC_temp
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	store 4,mem_gkey
+//call ice_break
+	rtn
+
+function_f6_eb:
+	jam 65,mem_AES_CMAC_data_length
+	arg memdat,contw
+	call store_addr_common_a
+	call store_addr_common_b
+	fetch 3,mem_le_pres+1
+	istore 3,contw
+//	arg mem_le_r,contr
+//	call memcpy16	
+	call get_r
+	
+	arg mem_le_mrand,contr
+	call memcpy16
+	arg mem_le_srand,contr
+	call memcpy16
+	call inverse_memdat
+	arg mem_le_mackey ,contr
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+//	call p_store_inverse_k	
+	branch function_AES_CMAC
+//	arg mem_AES_CMAC_temp,contw
+//	branch p_load_inverse_result
+
+get_r:
+	fetch 4,mem_le_tk
+	istore 4,contw
+	call memset0_4
+	branch memset0_8
+
+function_f6_ea:
+	set1 mark_ext_patch,mark
+	bpatch patch39_7,mem_patch39
+	jam 65,mem_AES_CMAC_data_length
+	arg memdat,contw
+	call store_addr_common_b
+	call store_addr_common_a
+	fetch 3,mem_le_preq+1
+	istore 3,contw
+//	arg mem_le_r,contr
+//	call memcpy16	
+	call get_r
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_mrand,contr
+	call memcpy16
+	call inverse_memdat
+	arg mem_le_mackey ,contr
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+//	call p_store_inverse_k	
+	call function_AES_CMAC
+	arg mem_AES_CMAC_temp,contw
+	branch load_inverse_result
+
+function_f5:
+	jam 32,mem_AES_CMAC_data_length
+	arg mem_le_dhkey_256 ,contr
+	arg memdat,contw
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_slat,contr
+	call store_inverse_k	
+	call function_AES_CMAC
+	arg mem_AES_CMAC_k,contw
+	call store_aes_result
+	arg 1,temp
+	call function_f5_common
+	arg mem_le_ltk,contw
+	call load_inverse_result
+	arg 0,temp
+	call function_f5_common
+	arg mem_le_mackey,contw
+//	branch p_load_inverse_result
+	branch store_aes_result
+
+
+function_f5_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_0,mem_patch3a
+	jam 53,mem_AES_CMAC_data_length
+	setarg 0x100
+	store 2,memdat
+	call store_addr_common_b
+	call store_addr_common_a
+	arg mem_le_srand,contr
+	call memcpy16
+	arg mem_le_mrand,contr
+	call memcpy16
+//	fetch 4,mem_le_keyid 0x62746c65
+	setarg 0x6c65
+	istore 2,contw
+	setarg 0x6274
+	istore 2,contw
+	istoret 1,contw   //counter
+	call inverse_memdat	
+	branch function_AES_CMAC
+
+store_addr_common_b:
+	fetch 6,mem_le_lap
+	istore 6,contw
+	fetch 1,mem_le_conn_own_addr_type
+	istore 1,contw
+	rtn
+
+store_addr_common_a:
+	fetch 6,mem_le_plap
+	istore 6,contw
+//	setarg 0x2dcfc1
+//	istore 3,contw
+//	setarg 0xa71370
+//	istore 3,contw
+	fetch 1,mem_le_conn_peer_addr_type
+	istore 1,contw
+	rtn
+
+function_f4_ca:
+	jam 65,mem_AES_CMAC_data_length
+	fetch 1,mem_passkey_1bit
+	store 1,memdat
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_mrand,contr
+	call store_inverse_k	
+	branch function_AES_CMAC
+	
+
+function_f4_cb:
+	jam 65,mem_AES_CMAC_data_length
+	fetch 1,mem_passkey_1bit
+	store 1,memdat
+	arg mem_le_pubkey_remote_x_256,contr
+	call memcpy32
+	arg mem_le_pubkey_local_x_256,contr
+	call memcpy32
+	call inverse_memdat
+	arg mem_le_srand,contr
+	call store_inverse_k	
+	branch function_AES_CMAC
+
+function_AES_CMAC:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_1,mem_patch3a
+	call function_AES_CMAC_Generate_Subkey
+//call ice_break
+//	jam 65,mem_AES_CMAC_data_length
+//call ice_break
+	fetch 1,mem_AES_CMAC_data_length
+	copy pdata,temp
+function_ceil16:
+	increase 15,pdata
+	rshift4 pdata,pdata
+	copy pdata,regb
+	branch function_AES_CMAC_set_flag_0_balnk,blank
+	and temp,0x0f,pdata
+	nbranch function_AES_CMAC_set_flag_0,blank
+//	flag =1;
+	arg mem_AES_CMAC_k1,regc
+	arg memdat,pdata
+	increase -16,pdata
+//	iadd temp,pdata
+//	isub rega,rega
+	iadd temp,rega	
+	arg mem_AES_CMAC_M_last,contw
+	arg 4,loopcnt	
+	call xor_loop
+//call ice_break
+//	arg mem_f4_k1,contr
+//	call load_key
+	branch function_AES_CMAC_aes
+
+function_AES_CMAC_set_flag_0_balnk:
+	arg 1,regb
+	arg 0,rega
+//	arg mem_f4_test_data,pdata
+	branch function_AES_CMAC_set_flag_0_common
+//call ice_break
+
+function_AES_CMAC_set_flag_0:
+//	flag = 0;
+	and temp,0x0f,rega
+function_AES_CMAC_set_flag_0_common:
+	arg memdat,pdata
+	iadd temp,pdata
+	isub rega,contr
+//call ice_break
+	arg mem_AES_CMAC_temp,contw
+	call function_AES_CMAC_padding
+//call ice_break
+	arg mem_AES_CMAC_k2,regc
+	arg mem_AES_CMAC_temp,rega
+	arg mem_AES_CMAC_M_last,contw
+	arg 4,loopcnt	
+	call xor_loop	
+//call ice_break
+
+//	arg mem_f4_k2,contr
+//	call load_key
+
+//	branch p_function_f4_aes
+function_AES_CMAC_aes:
+//	arg mem_f4_k,contr
+//	call load_key
+//	arg mem_AES_CMAC_xor,contr
+//	call load_data128
+	call aes_clear_data
+	call aes_init	
+//	arg mem_f4_k,contr
+//	call load_key
+	arg memdat,contr
+function_AES_CMAC_aes_loop:
+//generate_mic_loop:
+	increase -1,regb
+	deposit regb
+	branch function_AES_CMAC_aes_loop_end,blank
+	call load_data128
+	call do_aes_cbc
+	branch function_AES_CMAC_aes_loop
+//generate_mic_end:
+function_AES_CMAC_aes_loop_end:	
+	arg mem_AES_CMAC_temp,contw
+	call store_aes_result
+	arg mem_AES_CMAC_M_last,contr
+	call load_data128
+	call aes_init	
+	arg mem_AES_CMAC_temp,contr
+	call load_data128	
+	branch do_aes_cbc
+
+
+
+load_inverse_result:
+//	arg mem_AES_CMAC_temp,contw
+	copy contw,rega
+	call store_aes_result
+//	arg mem_AES_CMAC_temp,rega
+	arg 16,loopcnt
+	branch inverse_data
+	
+store_inverse_k:
+	arg mem_AES_CMAC_k,contw
+	call memcpy16
+inverse_k:	
+	arg 16,loopcnt
+	arg mem_AES_CMAC_k,rega	
+	branch inverse_data
+	
+inverse_memdat:
+	fetch 1,mem_AES_CMAC_data_length
+	copy pdata,loopcnt
+	arg memdat,rega
+	branch inverse_data
+
+bn_lshift_0_inverse:
+	ifetch 1,regA
+	lshift pdata,pdata
+	isolate1 0,regC
+	setflag true,0,pdata	
+	isolate1 8,pdata
+	setflag true,0,regC	
+	istore 1,rega
+         increase -1,rega
+	loop bn_lshift_0_inverse
+	rtn	
+
+function_AES_CMAC_k1_inverse:
+	arg mem_AES_CMAC_k1,regA
+function_AES_CMAC_inverse_common:
+	increase 15,rega
+	force 16,loopcnt
+	force 0,regC
+	branch  bn_lshift_0_inverse	
+
+function_AES_CMAC_k2_inverse:
+	arg mem_AES_CMAC_k2,regA
+	branch function_AES_CMAC_inverse_common
+	
+
+function_AES_CMAC_Generate_Subkey:
+	arg mem_AES_CMAC_k,contr
+	call load_key
+//	arg mem_AES_CMAC_xor,contr
+//	call aes_load_xor
+	force regidx_xor,regext_index
+	call aes_clear
+	call aes_clear_data
+	call do_aes_ocb
+	
+//	force 0x38,aes_ctrl
+//	force 0x0,aes_ctrl
+//	call wait_aes
+	arg mem_AES_CMAC_k1,contw
+	call store_aes_result
+function_AES_CMAC_k1:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_2,mem_patch3a
+	fetch 1,mem_AES_CMAC_k1
+	isolate1 7,pdata
+	nbranch function_AES_CMAC_k1_0,true	
+	call function_AES_CMAC_k1_inverse
+	
+//p_function_f4_k1_xor:
+	arg mem_AES_CMAC_k1,regc
+//	arg mem_AES_CMAC_rb,rega
+	arg mem_AES_CMAC_k1,contw
+//	arg 3,loopcnt
+//	call xor_loop
+	call function_AES_CMAC_xor_rb
+	branch function_AES_CMAC_k2
+function_AES_CMAC_k1_0:	
+	call function_AES_CMAC_k1_inverse
+function_AES_CMAC_k2:
+//call ice_break
+	arg mem_AES_CMAC_k1,contr
+	arg mem_AES_CMAC_k2,contw
+	call memcpy16
+	fetch 1,mem_AES_CMAC_k2
+	isolate1 7,pdata
+	nbranch function_AES_CMAC_k2_inverse,true		
+	call function_AES_CMAC_k2_inverse
+//p_function_f4_k2_xor:
+	arg mem_AES_CMAC_k2,regc
+//	arg mem_AES_CMAC_rb,rega
+	arg mem_AES_CMAC_k2,contw
+//	arg 3,loopcnt
+//	branch xor_loop	
+
+
+//rb:00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 87 
+function_AES_CMAC_xor_rb:
+	arg 3,loopcnt
+function_AES_CMAC_xor_rb_loop:	
+	arg 0,temp
+	call function_AES_CMAC_xor_loop_common	
+	increase 4,regc
+	loop  function_AES_CMAC_xor_rb_loop
+	arg 0x8700,temp
+	lshift16 temp,temp
+function_AES_CMAC_xor_loop_common:	
+	ifetch   4,regc
+	ixor  temp,pdata
+	istore   4,contw	
+	rtn
+		
+
+
+
+//input rega :length <16	contr,contw
+function_AES_CMAC_padding:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_3,mem_patch3a
+	arg 16,loopcnt
+	arg 0,pdata
+function_AES_CMAC_padding_loop:
+	isub rega,null
+	branch function_AES_CMAC_padding_beq_length,zero
+	branch function_AES_CMAC_padding_big_length,positive
+	ifetcht 1,contr
+	istoret 1,contw
+function_AES_CMAC_padding_loop2:	
+	increase 1,pdata
+	loop function_AES_CMAC_padding_loop
+	rtn
+function_AES_CMAC_padding_beq_length:	
+	arg 0x80,temp
+function_AES_CMAC_padding_common:
+	istoret 1,contw
+	branch  function_AES_CMAC_padding_loop2
+
+function_AES_CMAC_padding_big_length:
+	arg 0,temp
+	branch function_AES_CMAC_padding_common
+
+endif
+	
+generate_kinit:
+	call function_e22
+	arg mem_input_store,contr
+	arg mem_kinit,contw		/* Kinit is ready */
+	branch memcpy16
+
+
+function_e21:	/* rega pointers to bdaddr */
+	disable user
+	call function_expand
+	arg mem_random_number,contr
+	arg mem_x,contw
+	force 15,loopcnt
+	call memcpy			
+	ifetch 1,contr
+	xor_into 6,pdata
+	istore 1,contw
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+
+
+	
+function_e22:		/* rega pointers to bdaddr */
+	fetcht 1,mem_pin_length
+	force 16,regb			/* total 16 bytes */
+	add temp,6,regc		/* regc is l' */
+	sub regc,16,null		
+	branch function_e22_pin_init,positive 
+	force 16,regc
+function_e22_pin_init:			/* generate x from pin and bdaddr */
+	arg mem_x,contw
+function_e22_genx_pin:
+	arg mem_pin,contr
+	copy temp,loopcnt
+	disable user
+function_e22_genx_loop:
+	ifetch 1,contr
+	istore 1,contw
+	increase -1,regb
+	branch function_e22_genx_end,zero
+	loop function_e22_genx_loop
+	branch function_e22_genx_pin,user
+	enable user
+	force 6,loopcnt
+	copy rega,contr
+	branch function_e22_genx_loop
+function_e22_genx_end:
+	arg mem_random_number,contr
+	arg mem_y,contw
+	call memcpy16
+	fetch 1,mem_y15
+	ixor regc,pdata
+	store 1,mem_y15	/* inpy[15] = rand_num[15]^l'; */
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+
+
+
+
+function_e1:	/* rega pointers to bdaddr */
+	disable user
+	call function_expand
+	branch function_hash
+
+function_e3:
+	arg mem_aco,rega
+	enable user
+	call function_expand
+	call function_hash
+	arg mem_input_store,contr
+	arg mem_kc,contw
+	branch memcpy16
+
+	/* costs 41769 clocks */
+function_hash:
+	setarg mem_random_number
+	store 2,memp_ar_input
+	setarg mem_link_key
+	store 2,memp_ar_key
+	set0 mark_ar2,mark
+	call function_ar
+	arg mem_input_store,rega
+	arg mem_random_number,regb
+	arg mem_x,contw
+	call xor16
+	arg mem_x,rega
+	arg mem_y,regb
+	copy regb,contw
+	enable user
+	call add16
+	call key_offset
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+	
+
+	/* totally costs 20700 clocks */
+function_ar:
+	jam 0,mem_ar_hround
+	fetch 2,memp_ar_key
+	iforce contr
+	arg mem_key_store,contw
+	call memcpy16
+	fetch 2,memp_ar_input
+	iforce contr
+	arg mem_input_store,contw
+	call memcpy16
+	
+function_ar_loop:
+	call key_scheduling
+	disable user
+	bmark0 mark_ar2,function_ar_original
+	fetch 1,mem_ar_hround
+	bne 4,function_ar_original
+	fetch 2,memp_ar_input
+	iforce regb
+	call xor_mod32_ar2
+function_ar_original:
+	call xor_mod32
+	call el_boxes
+	fetch 1,mem_ar_hround
+	increase 1,pdata
+	store 1,mem_ar_hround
+
+	call key_scheduling
+	enable user
+	call xor_mod32
+	call pht
+	call permute
+	call pht
+	call permute
+	call pht
+	call permute
+	call pht
+	fetch 1,mem_ar_hround
+	increase 1,pdata
+	store 1,mem_ar_hround
+	bne 16,function_ar_loop
+	call key_scheduling
+	disable user
+	branch xor_mod32
+	
+/* input round number and temp key in mem_key_store, and output the next temp key in mem_key_store */
+/* round key is generated and store in mem_round_key */
+key_scheduling:
+	fetch 1,mem_ar_hround
+	arg mem_key_store,contr
+	branch key_sched_zero,blank
+	iforce regb      			/* regb is half round */
+	force 17,loopcnt
+	copy contr,contw
+key_rotateloop:
+	ifetch 1,contr
+	lshift3 pdata,temp
+	rshift2 pdata,pdata
+	rshift3 pdata,pdata
+	ior temp,pdata
+	istore 1,contw
+	loop key_rotateloop
+	setarg mem_key_store
+	iadd regb,contr
+	force 16,loopcnt    
+	arg mem_round_key,contw
+key_select_octet_loop:
+	ifetch 1,contr
+	istore 1,contw
+	compare mem_key_store_end,contr,0xff
+	nbranch key_select_octet_nwrap,true
+	increase -17,contr
+key_select_octet_nwrap:
+	loop key_select_octet_loop
+	force 0,rega         /* rega is index of octet within row */
+	add regb,-1,regc    /* this is the row index, half_round#1 is 0 */
+	lshift2 regc,regc
+	lshift2 regc,regc
+	call enable_authrom
+	setarg mem_b_box
+	iadd regc,regc       /* regc hold the starting address of the row */
+	arg mem_round_key,contw
+	force 16,loopcnt
+bias_round_key_loop:
+	ifetcht 1,regc
+	ifetch 1,contw
+	iadd temp,pdata
+	istore 1,contw
+	increase 1,regc
+	loop bias_round_key_loop
+	branch disable_authrom
+
+key_sched_zero:    /* round 0, key1 */
+	force 16,loopcnt
+	force 0,temp
+create_byte_16_loop:
+	ifetch 1,contr
+	ixor temp,temp
+	loop create_byte_16_loop
+	deposit temp
+	istore 1,contr    	/* store the byte #16 */
+	arg mem_key_store,contr
+	arg mem_round_key,contw
+	branch memcpy16
+
+xor_mod32:     /* xor on 0,3, add on 1,2. if user is set, invert. x in rega and y in regb, out in contw */
+	arg mem_round_key,regb
+xor_mod32_ar2:
+	force 16,loopcnt
+	arg mem_input_store,rega
+	copy rega,contw
+xor_mod32_loop:	
+	ifetcht 1,rega
+	ifetch 1,regb
+	ixor temp,alarm
+	and loopcnt,3,regc
+	nbranch xor_mod32_invert,user
+	xor_into 3,regc
+xor_mod32_invert:
+	sub regc,1,regc
+	branch xor_even,positive
+	iadd temp,alarm
+xor_even:
+	deposit alarm
+	istore 1,contw
+	increase 1,rega
+	increase 1,regb
+	loop xor_mod32_loop
+	rtn
+
+el_boxes:
+	call enable_authrom
+	force 16,loopcnt
+	arg mem_input_store,rega
+el_box_loop:	
+	ifetch 1,rega
+	arg mem_e_box,contr
+	and loopcnt,3,regc
+	sub regc,1,null
+	branch e_boxes,positive
+	arg mem_l_box,contr
+e_boxes:
+	iadd contr,contr
+	ifetch 1,contr
+	istore 1,rega
+	increase 1,rega
+	loop el_box_loop
+	branch disable_authrom
+
+pht:				
+	force 8,loopcnt
+	arg mem_input_store,contr
+	copy contr,contw
+pht_loop:
+	ifetch 1,contr
+	iforce rega
+	ifetch 1,contr
+	iforce regb
+	lshift rega,pdata
+	iadd regb,pdata
+	istore 1,contw
+	deposit rega
+	iadd regb,pdata
+	istore 1,contw
+	loop pht_loop
+	rtn
+
+/* 8 11 12 15 2 1 6 5 10 9 14 13 0 7 4 3 */
+permute:			
+	setarg 0x8ae42c
+	iforce temp
+	force 7,loopcnt
+	call permute_exchange
+	setarg 0xd751b
+	iforce temp
+	force 5,loopcnt
+	call permute_exchange
+	fetch 1,mem_input_store+15
+	iforce rega
+	fetch 1,mem_input_store+3
+	store 1,mem_input_store+15
+	deposit rega
+	store 1,mem_input_store+3
+	rtn
+
+permute_exchange:
+	and temp,0xf,regb
+permute_loop:
+	and temp,0xf,pdata
+	arg mem_input_store,contw
+	iadd contw,contw
+	ifetch 1,contw
+	iforce regc
+	deposit rega
+	istore 1,contw
+	copy regc,rega
+	rshift4 temp,temp
+	loop permute_loop	
+	setarg mem_input_store
+	iadd regb,contw
+	deposit rega
+	istore 1,contw
+	rtn
+
+add16:
+	enable user
+	branch xor_add16
+
+xor16:
+	disable user
+xor_add16:	/* if user is set, do add, else do xor */
+	force 16,loopcnt	/* rega and regb pointers to src, contw is result */
+xoradd_loop:
+	ifetcht 1,rega
+	ifetch 1,regb
+	branch xoradd_add,user
+	ixor temp,pdata
+	branch xoradd_store
+xoradd_add:	
+	iadd temp,pdata
+xoradd_store:	
+	istore 1,contw
+	increase 1,rega
+	increase 1,regb
+	loop xoradd_loop
+	rtn
+
+	
+function_expand:		/* rega pointers to bdaddr, or aco and user is set */
+	arg mem_y,contw
+	ifetch 6,rega
+	istore 6,contw
+	branch expand_12,user
+	ifetch 6,rega
+	branch expand_cont
+expand_12:
+	ifetch 6,contr
+expand_cont:
+	istore 6,contw
+	ifetch 4,rega
+	istore 4,contw
+	rtn
+
+key_offset:
+	arg mem_link_key,contr
+	arg mem_x,contw
+	arg 0,temp
+	setarg 0x8395a7
+	call concatenate_temp24
+	setarg 0xb3c1df
+	call concatenate_temp24
+	setarg 0xe5e9
+	call concatenate_temp16
+	copy temp,regab
+	disable user
+	call key_addxor
+	copy regab,temp
+	enable user
+	branch key_addxor
+
+key_addxor:
+	force 8,loopcnt
+key_addxor_loop:	
+	ifetch 1,contr
+	compare 1,loopcnt,1
+	branch key_high,user
+	branch key_xor,true
+key_add:	
+	iadd temp,pdata
+	branch key_store
+key_high:
+	branch key_add,true
+key_xor:
+	ixor temp,pdata
+key_store:
+	istore 1,contw
+	rshift8 temp,temp
+	loop key_addxor_loop
+	rtn
+
+copy_aco:
+	fetch 6,mem_input_store+4
+	store 6,mem_aco
+	ifetch 6,contr
+	istore 6,contw
+	rtn
+	
+concatenate_temp24:
+	lshift8 temp,temp
+concatenate_temp16:
+	lshift16 temp,temp
+	ior temp,temp
+	rtn
+
+ifdef TESTING
+test_security:
+	fetch 1,0xff
+	branch test_security,blank
+
+	/* inrand */
+	setarg 0x1BC683
+	store 3,0x0
+	setarg 0x122980
+	istore 3,contw
+	setarg 0xD0DB17
+	istore 3,contw
+	setarg 0x2B1D78
+	istore 3,contw
+	setarg 0x2743A6
+	istore 3,contw
+	setarg 0xD8
+	istore 1,contw
+
+	/* comb A */
+	setarg 0xA6D0C9
+	store 3,0x10
+	setarg 0xA9E86C
+	istore 3,contw
+	setarg 0x9E89D5
+	istore 3,contw
+	setarg 0xC61838
+	istore 3,contw
+	setarg 0x6F0318
+	istore 3,contw
+	setarg 0x9F
+	istore 1,contw
+
+	/* comb B */
+	setarg 0x7F6833
+	store 3,0x20
+	setarg 0xE62E1B
+	istore 3,contw
+	setarg 0x9F67FC
+	istore 3,contw
+	setarg 0x8D3712
+	istore 3,contw
+	setarg 0x0B846C
+	istore 3,contw
+	setarg 0x4A
+	istore 1,contw
+
+	/* auth rand A */
+	setarg 0xFBB686
+	store 3,0x30
+	setarg 0x19FE7F
+	istore 3,contw
+	setarg 0x16A439
+	istore 3,contw
+	setarg 0xF4F6A4
+	istore 3,contw
+	setarg 0x10D61D
+	istore 3,contw
+	setarg 0xDE
+	istore 1,contw
+
+	/* auth rand B */
+	setarg 0x735B0C
+	store 3,0x40
+	setarg 0xA7F06B
+	istore 3,contw
+	setarg 0x04625E
+	istore 3,contw
+	setarg 0x3463B0
+	istore 3,contw
+	setarg 0xB8F17A
+	istore 3,contw
+	setarg 0x7C
+	istore 1,contw
+
+	/* address A */
+	setarg 0xf91330
+	store 3,0xb0
+	setarg 0x664c7d
+	istore 3,contw
+
+	/* address B */
+	setarg 0xdc7100
+	store 3,0xb8
+	setarg 0x2ea003
+	istore 3,contw
+
+	/* sres A */
+	setarg 0x2EEE19
+	store 3,0x50
+	setarg 0x7E
+	istore 1,contw
+
+	/* sres B */
+	setarg 0x4231A4
+	store 3,0x58
+	setarg 0xD1
+	istore 1,contw
+
+	/* linkA */
+	setarg 0xa6a026
+	store 3,0x60
+	setarg 0x2569d2
+	istore 3,contw
+	setarg 0xab4a9d
+	istore 3,contw
+	setarg 0x5e87c0
+	istore 3,contw
+	setarg 0x792aa9
+	istore 3,contw
+	setarg 0x4b
+	istore 1,contw
+
+	/* linkB */
+	setarg 0xa1f07d
+	store 3,0x70
+	setarg 0xec97a6
+	istore 3,contw
+	setarg 0xae31eb
+	istore 3,contw
+	setarg 0x6fe3c4
+	istore 3,contw
+	setarg 0xa1ae1a
+	istore 3,contw
+	setarg 0x3a
+	istore 1,contw
+
+	/* linkkey */
+	setarg 0x07505b
+	store 3,0x80
+	setarg 0xc9fe74
+	istore 3,contw
+	setarg 0x057b76
+	istore 3,contw
+	setarg 0x316404
+	istore 3,contw
+	setarg 0xd884b3
+	istore 3,contw
+	setarg 0x71
+	istore 1,contw
+
+	/* K */
+	setarg 0x0c333f
+	store 3,0x90
+	setarg 0x41de70
+	istore 3,contw
+	setarg 0x9b05a2
+	istore 3,contw
+	setarg 0xb954a2
+	istore 3,contw
+	setarg 0xb37516
+	istore 3,contw
+	setarg 0x36
+	istore 1,contw
+
+	/* kinit */
+	setarg 0x5ff91a
+	store 3,0xa0
+	setarg 0x39b5a4
+	istore 3,contw
+	setarg 0x258f2d
+	istore 3,contw
+	setarg 0x5d4a85
+	istore 3,contw
+	setarg 0x656ad3
+	istore 3,contw
+	setarg 0xab
+	istore 1,contw
+
+	arg 0,contr
+	arg mem_random_number,contw
+	call memcpy16
+	setarg 0x3131
+	store 2,mem_pin
+	istore 2,contw
+	jam 4,mem_pin_length
+	arg 0xb8,rega
+	call function_e22
+	arg mem_input_store,contr
+	arg mem_kinit,contw
+	call memcpy16
+	arg 0x10,rega
+	arg mem_kinit,regb
+	arg mem_random_number,contw
+	call xor16
+	arg 0xb0,rega
+	call function_e21
+	arg 0x60,regb
+	call compare16
+error_lka:
+	nbranch error_lka,zero
+	arg mem_input_store,contr
+	arg mem_link_key,contw	
+	call memcpy16
+	arg 0x20,rega
+	arg mem_kinit,regb
+	arg mem_random_number,contw
+	call xor16
+	arg 0xb8,rega
+	call function_e21
+	arg 0x70,regb
+	call compare16
+error_lkb:
+	nbranch error_lkb,zero
+	arg mem_input_store,rega
+	arg mem_link_key,regb
+	arg mem_link_key,contw
+	call xor16
+	arg 0x30,contr
+	arg mem_random_number,contw
+	call memcpy16
+	arg 0xb8,rega
+	call function_e1
+	arg 0x50,regb
+	force 4,loopcnt
+	call compare_key
+error_sresa:
+	nbranch error_sresa,zero
+	arg 0x40,contr
+	arg mem_random_number,contw
+	call memcpy16
+	arg 0xb0,rega
+	call function_e1
+	arg 0x58,regb
+	force 4,loopcnt
+	call compare_key
+error_sresb:
+	nbranch error_sresb,zero
+	branch loop1
+	
+	arg 0,contr
+	arg mem_random_number,contw
+	call memcpy16
+	force 12,loopcnt
+	call memcpy
+	arg 0x1c,contr
+	arg mem_link_key,contw
+	call memcpy16
+	arg 0x10,rega
+	call function_e3
+	branch loop1
+
+compare16:
+	force 16,loopcnt
+compare_key:
+	arg mem_input_store,rega
+compare_loop:
+	ifetch 1,rega
+	ifetcht 1,regb
+	isub temp,null
+	nrtn zero
+	increase 1,rega
+	increase 1,regb
+	loop compare_loop
+	force 0,pdata
+	rtn
+	
+endif
+
+loop1:	
+	branch loop1
+
+/* ==================== LE security ================= */
+
+generate_stk:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_4,mem_patch3a
+	call function_s1
+	arg mem_le_ltk,contw
+	branch store_aes_result
+
+	/* contr = rand pointer */
+authenticate_rconfirm:
+	arg mem_le_srand,contw
+	branch authenticate_mconfirm,master
+	arg mem_le_mrand,contw
+authenticate_mconfirm:
+	copy contr,rega
+	call memcpy16
+	call function_c1
+	arg mem_le_rconfirm,contr
+	branch compare_res
+
+generate_confirm:
+	arg mem_le_mrand,rega
+	branch generate_mrand,master
+	arg mem_le_srand,rega
+generate_mrand:
+	copy rega,contw
+	call generate_random
+	branch function_c1
+
+generate_sk:
+	arg mem_le_skdm,contr
+	call load_data128
+	arg mem_le_ltk,contr
+	call load_regext
+	force 0x38,aes_ctrl
+	force 0x0,aes_ctrl
+	call wait_aes
+	arg mem_le_sk,contw
+	branch store_aes_result
+
+	/* temp=packet counter, rega = length or block counter*/
+first_block_counter:
+	force 0x49,pdata
+	branch first_block
+first_block_data:
+	force 1,pdata
+first_block:
+	force regidx_data,regext_index			/* B0 */
+	lshift8 temp,regext
+	ior regext,regext
+	increase 1,regext_index
+	rshift8 temp,regext
+	rshift16 regext,regext
+	fetch 2,mem_le_ivm
+	lshift16,pdata,pdata
+	ior regext,regext				/* octet3&octet4 of counter and low 16 bit of IV */
+	increase 1,regext_index
+	ifetch 4,contr					/* IV2-IV5 */
+	iforce regext
+	increase 1,regext_index
+	ifetch 2,contr					/* IV6-IV7 */
+	byteswap rega,regext
+	lshift16 regext,regext
+	ior regext,regext
+	increase 1,regext_index
+	rtn
+
+
+	/* temp=packet counter, regc pointers to data */	
+generate_mic:
+	add regc,1,contr
+	ifetch 1,contr
+	iforce rega
+	call first_block_counter
+	call do_aes_ocb
+
+	force regidx_data,regext_index			/* B1 */
+	ifetch 1,regc
+	and_into 0x3,pdata
+	lshift16 pdata,regext
+	set1 8,regext
+	call clear_hidata
+	call do_aes_cbc
+
+	copy rega,loopcnt
+	add regc,2,contr
+	call padding_data
+generate_mic_loop:
+	call aes_load_data
+	call do_aes_cbc
+	deposit loopcnt
+	branch generate_mic_end,blank
+	branch generate_mic_loop
+generate_mic_end:
+	force regidx_result,regext_index
+	deposit regext
+	store 4,mem_le_mic
+	rtn
+
+aes_crypt_data:
+	increase 1,rega
+	call first_block_data
+	copy regc,contr
+	call aes_load_xor
+	call do_aes_ctr
+	call store_enc_data
+	increase 16,regc
+	increase -16,regb
+	branch aes_crypt_data,positive
+	rtn
+	
+le_encrypt:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_5,mem_patch3a
+	arg mem_le_txheader,regc
+	fetcht 5,mem_le_pcnt_tx
+	call generate_mic
+	force regidx_xor,regext_index
+	iforce regext
+	force 0,rega					/* rega is block counter */
+	call first_block_data
+	call do_aes_ctr
+	arg mem_le_txpayload,regc
+	fetch 1,mem_le_txlen
+	add pdata,-1,regb
+	iadd regc,contw
+	force regidx_result,regext_index
+	deposit regext
+	istore 4,contw	
+	call aes_crypt_data
+	fetch 1,mem_le_txlen
+	increase 4,pdata
+	store 1,mem_le_txlen
+	fetcht 5,mem_le_pcnt_tx
+	increase 1,temp
+	storet 5,mem_le_pcnt_tx
+	rtn
+
+le_decrypt:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_6,mem_patch3a
+	fetch 1,mem_le_rxbuf+1
+	sub pdata,20,null
+	branch le_dec_cont,positive
+le_dec_cont:
+	arg mem_le_rxbuf+2,regc
+	add pdata,-1,regb
+	increase -4,pdata				/* mic will be discarded */
+	store 1,mem_le_rxbuf+1
+	iadd regc,contr
+	ifetch 4,contr
+	force regidx_xor,regext_index
+	iforce regext
+	force 0,rega					/* rega is block counter */
+	fetcht 5,mem_le_pcnt_rx
+	call first_block_data
+	call do_aes_ctr
+	force regidx_result,regext_index
+	deposit regext
+	store 4,mem_le_peer_mic
+	call aes_crypt_data
+	arg mem_le_rxbuf,regc
+	call generate_mic
+	fetcht 4,mem_le_peer_mic
+	isub temp,pdata				/* MIC ok? */
+	nrtn blank
+	fetch 4,mem_le_last_mic			/* reduntdant packet? */
+	isub temp,pdata
+	rtn blank
+	storet 4,mem_le_last_mic
+	fetch 5,mem_le_pcnt_rx
+	increase 1,pdata
+	store 5,mem_le_pcnt_rx
+	force 0,pdata
+	rtn
+
+wait_aes:
+	nbranch wait_aes,aes_ready
+	rtn
+
+do_aes_ocb:
+	force 0x30,aes_ctrl
+	force 0x0,aes_ctrl
+	branch wait_aes
+
+do_aes_cbc:
+	force 0x32,aes_ctrl
+	force 0x2,aes_ctrl
+	branch wait_aes
+
+do_aes_ctr:
+	force 0x34,aes_ctrl
+	force 0x4,aes_ctrl
+	branch wait_aes
+
+	
+aes_init:
+	force 1,aes_ctrl
+	force 0,aes_ctrl
+	rtn
+function_s1:
+	force regidx_data,regext_index
+	fetch 4,mem_le_mrand
+	iforce regext
+	increase 1,regext_index
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	fetch 4,mem_le_srand
+	iforce regext
+	increase 1,regext_index
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	call aes_clear
+	increase -4,regext_index
+	fetch 4,mem_le_tk
+	copy pdata,regext
+	increase 4,regext_index
+	force 0x38,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+	/* rega pointers to random number */
+function_c1:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_7,mem_patch3a
+	fetch 6,mem_le_lap
+	fetcht 6,mem_le_plap
+	branch function_c1_master,master
+	fetch 6,mem_le_plap
+	fetcht 6,mem_le_lap
+function_c1_master:
+	force regidx_xor,regext_index
+	copy temp,regext
+	increase 1,regext_index
+	rshift32 temp,regext
+	lshift16 pdata,pdata
+	ior regext,regext
+	increase 1,regext_index
+	rshift32 pdata,regext
+	increase 1,regext_index
+	force 0,regext					/* p2 = ia || ra */
+	force 0,pdata
+	fetch 1,mem_le_conn_peer_addr_type
+	fetcht 1,mem_le_adv_own_addr_type
+	nbranch function_c1_irat,master
+	//conn as master
+	fetch 1,mem_le_conn_own_addr_type
+	fetcht 1,mem_le_conn_peer_addr_type
+function_c1_irat:
+	store 1,mem_le_iat
+	storet 1,mem_le_rat
+	force regidx_data,regext_index
+	arg mem_le_iat,regb
+	force 4,loopcnt
+function_c1_loop1:
+	ifetch 4,rega		
+	ifetcht 4,regb
+	ixor temp,regext
+	increase 1,regext_index
+	increase 4,rega
+	increase 4,regb
+	loop function_c1_loop1		/* p1 ^ r */
+	call aes_clear				/* k = 0 */
+	increase -4,regext_index
+	fetch 4,mem_le_tk
+	copy pdata,regext
+	increase 4,regext_index
+	force 0x38,aes_ctrl
+	force 0xc,aes_ctrl
+	call wait_aes
+
+	call aes_clear_data
+	force 0x3a,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+padding_data:
+	compare 0,loopcnt,3
+	rtn true
+	deposit contr
+	iadd loopcnt,contw
+	force 0,pdata
+padding_loop:
+	istore 1,contw
+	increase 1,loopcnt
+	compare 0,loopcnt,3
+	rtn true
+	branch padding_loop
+
+aes_load_data:
+	force regidx_data,regext_index
+load_data_loop:
+	deposit loopcnt
+	branch load_data_padding,blank
+	ifetch 4,contr
+	increase -4,loopcnt
+load_data_padding:
+	iforce regext
+	increase 1,regext_index
+	compare regidx_key,regext_index,0xf
+	rtn true
+	branch load_data_loop
+
+aes_load_xor:
+	force regidx_xor,regext_index
+	branch load_regext
+load_key:
+	force regidx_key,regext_index
+	branch load_regext
+load_data128:
+	force regidx_data,regext_index
+load_regext:
+	force 4,loopcnt
+load_regext_loop:
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	loop load_regext_loop
+	rtn
+
+load_sk:
+	arg mem_le_sk,contr
+	branch load_key
+
+clear_hidata:
+	force 4,loopcnt
+	branch clear_data_rest
+
+aes_clear_data:
+	force regidx_data,regext_index
+aes_clear:
+	force 4,loopcnt
+clear_loop:
+	force 0,regext
+clear_data_rest:
+	increase 1,regext_index
+	loop clear_loop
+	rtn
+
+store_aes_result:
+	force regidx_result,regext_index
+	force 4,loopcnt
+send_aes_result_loop:
+	deposit regext
+	istore 4,contw
+	increase 1,regext_index
+	loop send_aes_result_loop
+	rtn
+
+store_enc_data:
+	force regidx_result,regext_index
+	copy regc,contw
+	add regb,1,loopcnt
+	sub loopcnt,15,null
+	branch store_enc_loop,positive
+	force 16,loopcnt
+store_enc_loop:
+	deposit regext
+	sub loopcnt,3,null
+	branch store_enc_byte,positive
+	istore 4,contw
+	increase -4,loopcnt
+	rtn zero
+	increase 1,regext_index
+	branch store_enc_loop
+store_enc_byte:
+	istore 1,contw
+	rshift8 pdata,pdata
+	loop store_enc_byte
+	rtn
+	
+	/* contr pointers to value to be compared */
+compare_res:
+	force regidx_result,regext_index
+	force 4,loopcnt
+compare_res_loop:
+	ifetch 4,contr
+	isub regext,null
+	nrtn zero
+	increase 1,regext_index
+	loop compare_res_loop
+	force 0,null
+	rtn
+
+enable_authrom:
+	hfetch 1,core_clkoff
+	set0 CLOCK_OFF_AUTH_ROM,pdata
+	hstore 1,core_clkoff
+	rtn
+
+disable_authrom:
+	hfetch 1,core_clkoff
+	set1 CLOCK_OFF_AUTH_ROM,pdata
+	hstore 1,core_clkoff
+	rtn
+
+init_memp:
+	arg mem_p,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3fbff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3cfff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffef
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x26c7f
+	setsect 2,0x146b
+	setsect 3,0x37bb3
+	istore 9,contw
+	setsect 0,0x1feb8
+	setsect 1,0x10c12
+	setsect 2,0x2b722
+	setsect 3,0x29fa6
+	istore 9,contw
+	setsect 0,0xe70f
+	setsect 1,0x16720
+	setsect 2,0x519e
+	setsect 3,0x19084
+	istore 9,contw
+	setsect 0,0x31012
+	setsect 1,0x360bf
+	setsect 2,0x3f0af
+	setsect 3,0x3d3
+	istore 9,contw
+	setsect 0,0x3a188
+	setsect 1,0x3ad0
+	setsect 2,0x3cbf2
+	setsect 3,0x243d9
+	istore 9,contw
+	setsect 0,0x2b030
+	setsect 1,0x36a03
+	setsect 2,0x11188
+	setsect 3,0x1e520
+	istore 9,contw
+	setsect 0,0x3a11e
+	setsect 1,0xfe5d
+	setsect 2,0xdd57
+	setsect 3,0x1ac93
+	istore 9,contw
+	setsect 0,0x11ed
+	setsect 1,0x218c4
+	setsect 2,0x8da7
+	setsect 3,0x257ff
+	istore 9,contw
+	setsect 0,0x3192b
+	setsect 1,0x34641
+	setsect 2,0x1be0c
+	setsect 3,0x366ad
+	istore 9,contw
+	setsect 0,0x1f83
+	setsect 1,0x15a23
+	setsect 2,0x3f9b0
+	setsect 3,0x3949
+	istore 9,contw
+	setsect 0,0x13a51
+	setsect 1,0x153fd
+	setsect 2,0x3372a
+	setsect 3,0xf1bb
+	istore 9,contw
+	setsect 0,0x3ae85
+	setsect 1,0x1eed9
+	setsect 2,0x9e66
+	setsect 3,0x1a8
+	istore 8,contw
+	rtn
+	
+ifdef SECURE_CONNECTION
+
+
+init_memp_256:
+ 	arg mem_p_256,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3ffff
+        setsect 2,0x3ffff
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3f
+        setsect 2,0x0
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x0
+        setsect 1,0x0
+        setsect 2,0x1000
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x3ff00
+        setsect 1,0x3ffff
+        setsect 2,0x3ffcf
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x3ffff
+        setsect 1,0x3ffff
+        setsect 2,0x3ffff
+        setsect 3,0x3ff
+        istore 9,contw
+        setsect 0,0x0
+        setsect 1,0x0
+        setsect 2,0x0
+        setsect 3,0x0
+        istore 9,contw
+        setsect 0,0x10000
+        setsect 1,0x0
+        setsect 2,0x3f000
+        setsect 3,0x3ffff
+        istore 9,contw
+        setsect 0,0x296ff
+        setsect 1,0x22630
+        setsect 2,0x3945d
+        setsect 3,0x3d284
+        istore 9,contw
+        setsect 0,0x333a0
+        setsect 1,0x4b7a
+        setsect 2,0x37d8
+        setsect 3,0x3c9dc
+        istore 9,contw
+        setsect 0,0x3a440
+        setsect 1,0x1b958
+        setsect 2,0x38bce
+        setsect 3,0x1091f
+        istore 9,contw
+        setsect 0,0x2e12c
+        setsect 1,0x1f47c
+        setsect 2,0x356b1
+        setsect 3,0x2fd47
+        istore 9,contw
+        setsect 0,0x6837
+        setsect 1,0x2ed90
+        setsect 2,0x1ecec
+        setsect 3,0x1acc5
+        istore 9,contw
+        setsect 0,0x23357
+        setsect 1,0x18af3
+        setsect 2,0xf9e1
+        setsect 3,0x129f0
+        istore 9,contw
+        setsect 0,0x2e7eb
+        setsect 1,0x3e6e3
+        setsect 2,0x3e1a7
+        setsect 3,0x10b8b
+        istore 9,contw
+        setsect 0,0x24fe3
+        setsect 1,0x20ef
+        setsect 2,0x1b5a6
+        setsect 3,0xdc2f
+        istore 9,contw
+        setsect 0,0x13860
+        setsect 1,0x2bd69
+        setsect 2,0x391a
+        setsect 3,0x1b222
+        istore 9,contw
+        rtn
+endif
+
Index: Receive_Code/program/shutter.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/shutter.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/shutter.prog	(working copy)
@@ -0,0 +1,1172 @@
+
+ifdef COMPILE_SHUTTER
+
+shutter_init:
+	//call  shutter_le_init_rf_param
+	rtn wake	
+	call init_shutter_le_att_list
+	call shutter_init_param	
+	hjam 0x00,core_gpio_sel1//1: GPIO[26:25] is two wire SPI, 2: GPIO[26:23] is SPI, 3: GPIO[26:23] is PCM
+	call shutter_key_init
+	setarg shutter_le_before_hibernate
+	store 2,mem_cb_before_hibernate
+
+	setarg shutter_le_process_lpm_before
+	store 2,mem_cb_before_lpm
+	
+	setarg shutter_le_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+	
+	setarg scale_process_idle	//
+	store 2,mem_cb_idle_process
+	
+	setarg scale_process	//
+	store 2,mem_cb_le_process
+	
+	setarg scale_process_bb_event 
+	store 2,mem_cb_bb_event_process
+	
+	setarg shutter_le_scale_lpm_lock
+	store 2,mem_cb_check_wakelock
+
+	setarg shutter_le_send_att_handle_value_notification
+	store 2,mem_cb_update_notify_value
+
+shutter_init0:	
+	setarg shutter_le_receive_data
+	store 2,mem_cb_att_write
+	call shutter_le_queue_init
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	set1 mark_ext_patch,mark
+	bpatch patch3b_0,mem_patch3b
+	fetch 1, mem_hard_soft_switch_case
+	beq HARD_SWITCH, shutter_le_hard_switch_power_on_signal
+	call shutter_ui_led_init
+	call ui_button_init
+	call ui_button_polling
+	jam SHUTTER_POWER_UP,mem_shutter_powerup_flag
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BTN_DOWN
+	branch app_enter_hibernate
+
+shutter_le_hard_switch_power_on_signal:
+	//call ice_break
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	jam 1,mem_enable_key_scan
+	call shutter_ui_led_init
+	setarg mem_power_on_led_style
+	call shutter_ui_led_send
+in_poweron_hard_switch_led:
+	call ui_led_blink_polling
+	fetch 1,mem_led_blink_count
+	nbranch in_poweron_hard_switch_led,blank
+shutter_le_soft_switch_power_on_signal:
+	//call ice_break
+	jam ON,mem_le_adv_enable
+	setarg 0
+	store 4,mem_shutter_send_data
+	call shutter_ui_led_init
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	call shutter_le_fast_advertise
+
+	jam PAIR_UNKNOWN,mem_pair_state
+	call le_modified_name
+	fetch 6,mem_le_lap
+	call shutter_byteswap
+	call shutter_updata_mac
+	rtn
+
+	
+//pdata:adv interval value
+shutter_le_adv_interval_set:
+	store 2,mem_lpm_interval
+	increase -4,pdata
+	store 2,mem_le_adv_interval_min
+	store 2,mem_le_adv_interval_max
+	rtn
+	
+shutter_updata_mac:
+	fetcht 2,mem_adv_lap_ptr
+	rtn blank
+	istore 6,temp
+	rtn
+	
+shutter_byteswap:
+	store 6,mem_tmp_buffer
+	fetch 1,mem_tmp_buffer
+	store 1,mem_tmp_buffer+11
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+10
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+9
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+8
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+7
+	ifetch 1,contr
+	store 1,mem_tmp_buffer+6
+	fetch 6,mem_tmp_buffer+6
+	rtn
+	
+shutter_le_fast_advertise:
+	jam 0,mem_shutter_key_data_flag_1
+	fetch 2,mem_le_fast_adv_timeout_timer_count
+	nbranch in_shutter_skip_set,blank
+	setarg mem_fast_adv_led_style
+	call shutter_ui_led_send
+	setarg FAST_ADV_INTERVAL_VALUE
+	call shutter_le_adv_interval_set
+in_shutter_skip_set:
+	fetch 2,mem_le_fast_adv_timeout
+	store 2,mem_le_fast_adv_timeout_timer_count
+	rtn
+
+shutter_le_scale_lpm_lock:
+	//fetcht 4,mem_last_clk_rx
+	//copy clkn_bt,pdata
+	//isub temp,pdata
+	//arg 8,temp
+	//isub temp,null
+	//nbranch app_get_lpm_wake_lock,positive
+	fetch 1,mem_scale_txbuff_inuse
+	beq 1,app_get_lpm_wake_lock
+	fetch 1, mem_queue_ele_num
+	nbranch app_get_lpm_wake_lock,blank
+	branch app_put_lpm_wake_lock
+
+scale_process_bb_event:
+	copy regc,pdata
+	//beq BT_EVT_BUTTON_LONG_PRESSED,app_ble_disconnect
+	beq BT_EVT_BUTTON_UP,shutter_bb_event_button_up
+	beq BT_EVT_BUTTON_LONG_PRESSED,shutter_evt_button_long_pressed
+	beq BT_EVT_LE_CONNECTED,scale_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,scale_process_le_discon
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,shutter_le_bb_event_timer
+	rtn
+
+shutter_le_bb_event_timer:
+	storet 1,mem_app_evt_timer_count
+shutter_le_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	set1 mark_ext_patch,mark
+	bpatch patch3b_1,mem_patch3b
+	call ui_button_check_long_press
+	call shutter_le_shutter_fast_adv_timer
+	call shutter_le_sleep_timer
+	call shutter_ui_button_timeout_timer
+	call shutter_ui_power_timeout_timer
+	call shutter_app_updata_le_param_timer
+	call shutter_conn_update_timer
+	branch shutter_le_bb_event_100ms_loop
+
+shutter_conn_update_timer:
+	fetch 1,mem_shutter_conn_update_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_shutter_conn_update_timer
+	nrtn blank
+	jam 0x05,mem_lpm_mult
+	rtn	
+
+shutter_app_updata_le_param_timer:
+	fetch 1,mem_send_updata_le_param_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_send_updata_le_param_timer
+	nrtn blank
+	fetch 1,mem_le_state  
+	bbit0 lestate_encryption,shutter_app_updata_le_param
+	jam 1,mem_send_updata_le_param_timer
+	rtn
+
+shutter_app_updata_le_param:
+	call  app_lpm_mult_enable
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	branch  ui_ipc_send_cmd
+
+
+shutter_le_shutter_fast_adv_timer:
+	fetch 1, mem_shutter_powerup_flag
+	rtnne SHUTTER_POWER_ON
+	fetch 2,mem_le_fast_adv_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_fast_adv_timeout_timer_count
+	nrtn blank
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,in_is_connected
+	setarg mem_slow_adv_led_style
+	call shutter_ui_led_send
+in_is_connected:
+	setarg SLOW_ADV_INTERVAL_VALUE
+	branch shutter_le_adv_interval_set
+
+shutter_le_sleep_timer:
+	fetch 2,mem_le_sleep_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_sleep_timeout_timer_count
+	nrtn blank
+	//call shutter_ui_led_init
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	call shutter_shutter_power_off_end
+	//goto sleep
+	//call shutter_le_sleep_req_hibernate
+	rtn
+
+scale_process_le_conn:
+	jam 0,mem_lpm_mode
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	jam PAIR_UNKNOWN,mem_pair_state
+	//call shutter_update_last_clk
+	call app_ble_stop_adv
+//	call shutter_check_51cmd_le_smp_sec_req
+//	call shutter_app_updata_le_param
+
+	setarg 0x112233
+	store 3,mem_le_ltk
+	setarg 0x445566
+	istore 3,contw
+	setarg 0x778899
+	istore 3,contw
+	setarg 0x001122
+	istore 3,contw
+	setarg 0x334455
+	istore 3,contw
+	setarg 0x66
+	istore 1,contw
+	//call p_update_last_clk
+	call app_ble_stop_adv
+	//call check_51cmd_le_smp_sec_req
+	//call p_app_updata_le_param
+	call  app_lpm_mult_enable
+	//call ice_break
+	jam 0,mem_le_fast_adv_timeout_timer_count
+	setarg mem_connected_led_style
+	call shutter_ui_led_send
+	jam 0,mem_led_gpio
+	rtn
+
+scale_process_le_discon:
+	//setarg 0
+	//store 1,mem_hci_curr_len
+	jam 0,mem_lpm_mult
+	jam 0,mem_shutter_conn_update_timer
+	jam 0,mem_ltk_exists
+	jam DEFAULT_STATES,mem_ltk_states
+	jam 0,mem_shutter_find_type_value_flag
+	call shutter_le_queue_clear
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 1, mem_le_sleep_flag
+	bne 0,shutter_le_sleep_enter
+	call shutter_le_fast_advertise
+	jam PAIR_UNKNOWN,mem_pair_state
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	setarg 0 
+	store 2, mem_l2cap_rxbuff2_len
+
+	call shutter_le_tx_buff_unuse
+	//call le_att_client_clr
+	call app_ble_start_adv
+	//call app_led_start_blink
+	//setarg mem_fast_adv_led_style
+	//call shutter_ui_led_send
+	rtn
+
+shutter_le_tx_buff_inuse:
+	//call ui_led_on
+	jam 1,mem_scale_txbuff_inuse
+	rtn
+shutter_le_check_tx_buff:
+	fetch 1,mem_scale_txbuff_inuse
+	rtn
+shutter_le_tx_buff_unuse:
+	//call ui_led_off
+	jam 0,mem_scale_txbuff_inuse
+	rtn
+
+shutter_le_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+
+shutter_le_sleep_req_hibernate:
+	jam 0x01,mem_le_sleep_flag
+shutter_le_sleep_req_ok:	
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+shutter_le_sleep_enter:
+	call shutter_le_sleep_clr
+	call wait_uarttx
+	jam 0x00,mem_le_sleep_flag
+	branch app_bb_hibernate
+
+shutter_le_sleep_clr:
+	setarg 0 
+	store 2, mem_l2cap_rxbuff1_len
+	store 2, mem_l2cap_rxbuff2_len
+	branch shutter_le_tx_buff_unuse
+	//branch le_att_client_clr
+
+scale_process:
+	fetch 1, mem_exchange_mtu_req
+	ncall shutter_le_parse_att_exchange_mtu_request,blank
+	call shutter_le_send_packet
+	branch shutter_le_key_process
+
+shutter_le_parse_att_exchange_mtu_request:
+	//fetch 1,mem_le_state
+	//bbit0 lestate_encryption,shutter_le_parse_att_exchange_mtu_request_save
+	jam 0, mem_exchange_mtu_req
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+shutter_le_parse_att_exchange_mtu_request_save:
+	jam 1, mem_exchange_mtu_req
+	rtn
+
+scale_process_idle:
+	call shutter_le_send_packet
+	branch shutter_le_key_process
+
+shutter_le_before_hibernate:
+	call shutter_shutter_scan_key
+	fetch 2, mem_key_value_temp
+	branch in_enter_hibernate,blank
+	branch app_enter_hibernate
+in_enter_hibernate:	
+	call gpio_set_before_lpm_common
+	branch shutter_le_process_lpm_before
+
+
+
+
+
+shutter_ui_led_init:
+	fetch 1, mem_shutter_led_num
+	copy pdata,loopcnt
+	setarg mem_led_map
+	copy pdata,rega
+in_lp1:
+	copy rega,contr
+	ifetch 1,contr
+	beq INVALID_PIN_NUM,in_lp1_end
+	copy pdata,temp
+	store 1, mem_led_gpio
+	//call ice_break
+	call ui_led_init
+in_lp1_end:
+	loop in_lp1
+shutter_ui_led_init_end:
+	rtn
+
+
+
+//pdata = address of led_style 
+shutter_ui_led_send:
+	copy pdata,contr
+	force 7,loopcnt
+	//setarg mem_temp_led_style
+	//copy pdata,contw
+	arg mem_temp_led_style,contw
+	call memcpy
+	set1 mark_ext_patch,mark
+	bpatch patch3b_2,mem_patch3b
+	fetch 1, mem_temp_led_type
+	rtneq LED_INVALID
+	fetcht 2,mem_temp_led_on_time
+	storet 2,mem_led_light_time
+	fetcht 2, mem_temp_led_off_time
+	storet 2,mem_led_dark_time
+	fetcht 1,mem_temp_blink_count
+	storet 1, mem_led_blink_count
+	//call ice_break
+	call ui_led_blink_stop
+	fetcht 1,mem_temp_led_pin
+	storet 1, mem_led_gpio
+	fetch 1, mem_temp_led_type
+	beq LED_OFF,shutter_ui_led_send_end
+	beq LED_ON,	ui_led_on
+	beq LED_BLINK,ui_led_blink_start1
+shutter_ui_led_send_end:
+	rtn
+
+shutter_ui_led_off:
+	branch ui_led_blink_stop
+
+
+shutter_key_init:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	copy pdata,loopcnt
+	setarg mem_key_conf0_pin
+	copy pdata,rega
+shutter_key_lp1:
+	ifetcht 1, rega
+	call gpio_config_input
+	increase KEY_CONF_STRUCT_LEN,rega
+	loop shutter_key_lp1
+shutter_key_init_end:
+	rtn
+	
+
+shutter_shutter_scan_key:
+	//setarg mem_key_conf0_pin
+	//copy pdata, rega
+	arg mem_key_conf0_pin,rega
+	force 0,regb
+	jam 0,mem_key_value_temp
+in_scan_key_lp1:
+	ifetcht 1, rega
+	call gpio_get_bit
+	set1 mark_ext_patch,mark
+	bpatch patch3b_3,mem_patch3b
+	fetch 2, mem_key_value_temp
+	copy regb,queue
+	qsetflag true,pdata
+	store 2, mem_key_value_temp
+	increase KEY_CONF_STRUCT_LEN,rega
+	increase 1,regb
+	fetch 1,mem_shutter_key_num
+	ixor regb,null
+	nbranch in_scan_key_lp1,zero
+	//call ice_break
+	fetch 2,mem_key_value_temp
+	fetcht 2,mem_key_value
+	ixor temp,null
+	rtn zero
+	enable user
+	rtn
+
+shutter_le_key_process:
+	arg temp_timer,queue
+	call timer_check
+	nrtn blank
+	call shutter_le_packet_interval_set
+	fetch 1,mem_enable_key_scan
+	rtn blank
+	disable user
+	call shutter_le_process_lpm_before
+	set1 mark_ext_patch,mark
+	bpatch patch3b_4,mem_patch3b
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	call shutter_shutter_scan_key
+	nbranch lpm_button_clean_wake_lock,user
+	call lpm_button_get_wake_lock
+	disable user
+	fetch 2,mem_le_sleep_timeout
+	store 2,mem_le_sleep_timeout_timer_count
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,shutter_le_fast_advertise
+	call shutter_shutter_cancel_key_shake
+	branch  in_le_key_process_end,positive
+	fetch 2, mem_key_value_temp
+	store 2,mem_key_value_temp4
+	jam 0,mem_key_value_temp6
+	force 0,queue
+	//call ice_break
+shutter_le_key_lp1:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_5,mem_patch3b
+	fetch 2, mem_key_value
+	rshift pdata,temp
+	storet 2,mem_key_value
+	and pdata,0x01,pdata
+	fetcht 2, mem_key_value_temp4
+	and temp,0x01,rega
+	rshift temp,temp
+	storet 2,mem_key_value_temp4
+	ixor rega,null
+	ncall shutter_le_send_key_data,zero
+	fetch 1,mem_shutter_key_num
+	fetcht 1, mem_key_value_temp6
+	increase 1,temp
+	storet 1, mem_key_value_temp6
+	copy temp,queue
+	ixor queue,null
+	//call ice_break
+	nbranch shutter_le_key_lp1,zero
+	fetch 2,mem_key_value_temp
+	store 2, mem_key_value
+	rtn
+in_le_key_process_end:
+	setarg 0
+	store 2,mem_key_value_temp
+	store 2,mem_key_value
+	rtn
+
+//queue = key index
+//rega =1 press, =0 release
+shutter_le_send_key_data:
+	//call ice_break
+	deposit rega
+	branch in_le_key_is_release,blank
+	set1 mark_ext_patch,mark
+	bpatch patch3b_6,mem_patch3b
+	copy queue,pdata
+	beq 0,in_le_send_key0_press
+	beq 1,in_le_send_key1_press
+	beq 2,in_le_send_key2_press
+	beq 3,in_le_send_key3_press
+	beq 4,in_le_send_key4_press
+	beq 5,in_le_send_key5_press
+in_le_send_lable:
+	fetch 1,mem_le_enc_state
+	rtnne  FLAG_LE_ENC_END
+	fetch 1,mem_shutter_key_data_flag_1
+	nrtn blank
+	ifetch 1,temp
+	rtn blank
+	store 1, mem_key_packet_count
+	increase 1,temp
+	storet 2,mem_key_next_addr
+in_le_send_lp1:
+	fetch 2, mem_key_next_addr
+	ifetcht 1, pdata //length
+	copy temp,loopcnt
+	iadd temp,temp
+	storet 2, mem_key_next_addr
+	copy pdata,temp
+	call shutter_le_queue_put
+	fetch 1, mem_key_packet_count
+	increase -1,pdata
+	store 1, mem_key_packet_count
+	nbranch in_le_send_lp1,zero
+	branch shutter_le_send_packet
+//function end
+
+in_le_key_is_release:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_7,mem_patch3b
+	copy queue,pdata
+	beq 0,in_le_send_key0_rel
+	beq 1,in_le_send_key1_rel
+	beq 2,in_le_send_key2_rel
+	beq 3,in_le_send_key3_rel
+	beq 4,in_le_send_key4_rel
+	beq 5,in_le_send_key5_rel
+	branch in_le_send_lable
+
+in_le_send_key0_press:
+	fetch 1,mem_key_conf0_led
+	call shutter_le_key_led_index
+	arg mem_key0_press,temp
+	branch in_le_send_lable
+in_le_send_key1_press:
+//	fetch 1,0x4ff0
+//	increase 1,pdata
+//	store 1,0x4ff0
+	
+	fetch 1,mem_key_conf1_led
+	call shutter_le_key_led_index
+	arg mem_key1_press,temp
+	branch in_le_send_lable
+in_le_send_key2_press:
+	fetch 1,mem_key_conf2_led
+	call shutter_le_key_led_index
+	arg mem_key2_press,temp
+	branch in_le_send_lable
+in_le_send_key3_press:
+	fetch 1,mem_key_conf3_led
+	call shutter_le_key_led_index
+	arg mem_key3_press,temp
+	branch in_le_send_lable
+in_le_send_key4_press:
+	fetch 1,mem_key_conf4_led
+	call shutter_le_key_led_index
+	arg mem_key4_press,temp
+	branch in_le_send_lable
+in_le_send_key5_press:
+	fetch 1,mem_key_conf5_led
+	call shutter_le_key_led_index
+	arg mem_key5_press,temp
+	branch in_le_send_lable
+
+in_le_send_key0_rel:
+	fetch 1,mem_key_conf0_led
+	call shutter_le_disble_key_led
+	arg mem_key0_release,temp
+	branch in_le_send_lable
+in_le_send_key1_rel:
+//	fetch 1,0x4ff1
+//	increase 1,pdata
+//	store 1,0x4ff1
+	
+	fetch 1,mem_key_conf1_led
+	call shutter_le_disble_key_led
+	arg mem_key1_release,temp
+	branch in_le_send_lable
+in_le_send_key2_rel:
+	fetch 1,mem_key_conf2_led
+	call shutter_le_disble_key_led
+	arg mem_key2_release,temp
+	branch in_le_send_lable
+in_le_send_key3_rel:
+	fetch 1,mem_key_conf3_led
+	call shutter_le_disble_key_led
+	arg mem_key3_release,temp
+	branch in_le_send_lable
+in_le_send_key4_rel:
+	fetch 1,mem_key_conf4_led
+	call shutter_le_disble_key_led
+	arg mem_key4_release,temp
+	branch in_le_send_lable
+in_le_send_key5_rel:
+	fetch 1,mem_key_conf5_led
+	call shutter_le_disble_key_led
+	arg mem_key5_release,temp
+	branch in_le_send_lable
+
+shutter_le_disble_key_led:
+	compare LED_ON,pdata,0xff
+	rtn true
+	force 3,pdata
+	branch shutter_le_key_led_index
+	//rtn
+
+//pdata = key led index
+shutter_le_key_led_index:
+	beq 0,in_le_key_led_0
+	beq 1,in_le_key_led_1
+	beq 2,in_le_key_led_2
+	beq 3,in_le_key_led_3
+	//setarg 0xff
+in_le_light_led:
+	branch shutter_ui_led_send
+//end
+
+in_le_key_led_0:
+	setarg mem_key_led_style_ind_0
+	branch shutter_ui_led_send
+in_le_key_led_1:
+	setarg mem_key_led_style_ind_1
+	branch shutter_ui_led_send
+in_le_key_led_2:
+	setarg mem_key_led_style_ind_2
+	branch shutter_ui_led_send
+in_le_key_led_3:
+	setarg mem_key_led_style_ind_3
+	branch shutter_ui_led_send
+
+//////////////////////////////////////////////////////////////////////////////////////////
+/////SOFT WTICH////////
+shutter_ui_power_timeout_timer:
+	fetch 1,mem_power_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_power_timer
+	nrtn blank
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,shutter_le_soft_switch_power_on_signal
+	branch shutter_shutter_power_off_signal
+
+shutter_ui_button_timeout_timer:
+	fetch 1,mem_shutter_button_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_shutter_button_timer
+	nrtn blank
+	branch app_led_off
+
+shutter_shuuter_led_on:
+	fetch 1,mem_shutter_button_timeout
+	store 1,mem_shutter_button_timer
+	branch  app_led_on
+
+shutter_bb_event_button_up:
+	//call ice_break
+	//fetch 2,mem_ui_state_map
+	//rtnbit1 UI_STATE_BLE_CONNECTED
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,in_power_release
+	branch app_enter_hibernate
+in_power_release:
+	jam 1,mem_enable_key_scan
+	rtn
+
+shutter_evt_button_long_pressed:
+	//call ice_break
+	fetch 1,mem_shutter_powerup_flag
+	beq SHUTTER_POWER_ON,shutter_le_power_off
+	jam SHUTTER_POWER_ON,mem_shutter_powerup_flag
+	//jam ON,mem_le_adv_enable
+	setarg mem_power_on_led_style
+shutter_shutter_power_on:
+shutter_shutter_power_on_off:
+	fetcht 1,mem_power_timeout
+	storet 1,mem_power_timer
+	branch shutter_ui_led_send
+	
+shutter_le_power_off:
+	//call ice_break
+	jam SHUTTER_POWER_OFF,mem_shutter_powerup_flag
+	jam 0,mem_enable_key_scan
+	jam OFF,mem_le_adv_enable
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BLE_CONNECTED,shutter_shutter_power_off_end
+	call app_ble_disconnect
+shutter_shutter_power_off_end:
+	jam OFF,mem_le_adv_enable
+	setarg mem_powe_off_led_style
+	branch shutter_shutter_power_on_off
+
+shutter_shutter_power_off_signal:	
+	call shutter_ui_led_init
+	branch app_enter_hibernate
+//end
+	
+shutter_le_process_lpm_before:
+	fetch 1,mem_shutter_key_num
+	rtn blank
+	copy pdata,loopcnt
+	setarg mem_key_conf0_pin
+	copy pdata,rega
+in_shutter_process_lpm_before_lp1:
+	ifetcht 1, rega
+	call gpio_set_wake_by_current_state
+	increase KEY_CONF_STRUCT_LEN,rega
+	loop in_shutter_process_lpm_before_lp1
+shutter_le_process_lpm_before_end:
+	rtn
+
+
+shutter_le_queue_init:
+	jam 0,mem_queue_ele_num
+	setarg mem_queue_start
+	store 2, mem_queue_read
+	store 2, mem_queue_write
+	rtn
+//end
+
+shutter_le_queue_clear:
+	branch shutter_le_queue_init
+
+//output:user flag
+//input:temp,loopcnt
+shutter_le_queue_put:
+	disable user
+	fetch 1,mem_queue_ele_num
+	compare  QUEUE_ELE_COUNT,pdata,0xff
+	rtn true
+
+	enable user
+	fetch 2, mem_queue_write
+	copy pdata,contw
+	copy temp,contr
+	call memcpy
+	
+	fetch 1,mem_queue_ele_num
+	increase 1,pdata
+	store 1, mem_queue_ele_num
+	
+	setarg mem_queue_write
+	call shutter_le_queue_increase
+	rtn
+
+//pdata
+shutter_le_queue_increase:
+	copy pdata,rega
+	arg mem_queue_end,temp
+	ifetch 2,rega
+	increase QUEUE_ELE_LENGTH,pdata
+	isub temp,null
+	nbranch shutter_le_queue_put_end,positive
+	setarg mem_queue_start
+shutter_le_queue_put_end:
+	istore 2,rega
+	rtn
+	
+//output: pdata
+//output: user flag
+shutter_le_queue_get:
+	disable user
+	fetch 1,mem_queue_ele_num
+	rtn blank
+	enable user
+	fetch 1,mem_queue_ele_num
+	increase -1,pdata
+	store 1, mem_queue_ele_num
+
+	fetch 2,mem_queue_read
+	store 2,mem_queue_temp
+
+	setarg mem_queue_read
+	call shutter_le_queue_increase
+	fetch 2,mem_queue_temp
+	rtn
+
+shutter_le_queue_read_point:
+	disable user
+	fetch 1,mem_queue_ele_num
+	rtn blank
+	enable user
+	fetch 2,mem_queue_read
+	rtn
+
+shutter_le_packet_interval_set:
+	fetch 2, mem_packet_interval_set
+	arg temp_timer,queue
+	branch timer_init
+
+shutter_le_send_packet:
+	//fetch 1,mem_le_pairing_state
+	//rtneq FLAG_LE_PAIRING_AFTER_AUTH
+	//call shutter_le_check_tx_buff
+	//nrtn blank
+	//arg temp_timer,queue
+	//call timer_check
+	//nrtn blank
+	//call shutter_le_packet_interval_set
+	call shutter_le_queue_read_point
+	nrtn user
+	disable user
+	//copy pdata,contr
+	//ifetcht 1,contr
+	//increase -3,temp
+	//copy temp,loopcnt
+	//ifetcht 2,contr
+	//storet 2,mem_le_notify_handle
+	//arg mem_shutter_send_data,contw
+	//call memcpy
+	force 0x0013,temp
+	storet 2,mem_le_notify_handle
+	branch shutter_le_shutter_send_keydata
+
+shutter_le_shutter_send_keydata:
+	arg 2, loopcnt
+	fetcht 2, mem_le_notify_handle
+	arg mem_shutter_send_data, contr
+	call shutter_le_tx_notification
+	
+	//fetch 1,mem_shutter_1key_send_sm
+	//beq FLAG_SHUTTER_1KEY_SEND_STEP2,shutter_le_shutter_1key_send_step2
+  	//beq FLAG_SHUTTER_1KEY_SEND_STEP3,shutter_le_shutter_1key_send_step3
+ 	//beq FLAG_SHUTTER_1KEY_SEND_STEP4,shutter_le_shutter_1key_send_step4
+	rtn	
+
+shutter_le_tx_indication:
+	jam ATTOP_HANDLE_VALUE_INDICATION,mem_fifo_temp
+	branch shutter_le_tx_common
+shutter_le_tx_notification:
+	call le_xtype_fifo_is_empty
+	nrtn blank
+	fetch 1,mem_shutter_key_data_flag
+	nrtn blank
+ 	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+shutter_le_tx_common:
+	//add loopcnt,7,pdata
+	//store 1,mem_scale_tx_length
+	//arg mem_le_l2cap+1,contw
+	//istoret 2,contw
+	//call memcpy
+	call le_xtype_fifo_in
+	branch  shutter_le_tx_buff_inuse
+
+shutter_shutter_cancel_key_shake:
+	fetcht 4,mem_shutter_clkn_bt_last
+	deposit clkn_bt
+	store 4,mem_shutter_clkn_bt_last
+	isub temp,pdata	
+	nrtn positive 
+	sub pdata,20,pdata
+	rtn
+
+shutter_le_send_att_handle_value_notification:
+	//call shutter_le_tx_buff_unuse
+	call shutter_le_queue_get
+	nrtn user
+	disable user
+	copy pdata,contr
+	ifetcht 1,contr
+	increase -3,temp
+	copy temp,loopcnt
+	//fetcht 2, mem_le_notify_handle
+	ifetcht 2,contr
+	//arg mem_shutter_send_data, contr
+	add loopcnt,7,pdata
+	store 1,mem_scale_tx_length
+	arg mem_le_l2cap+1,contw
+	istoret 2,contw
+	call memcpy
+	fetcht 1,mem_scale_tx_length
+	branch le_send_packet
+	
+shutter_le_receive_data:	
+	fetch 1,mem_le_att_opcode
+	beq ATTOP_WRITE_REQUEST,shutter_le_parse_att_write_request
+	beq ATTOP_WRITE_COMMAND,shutter_le_parse_att_write_command
+	rtn
+shutter_le_parse_att_write_request:
+	fetch 2,mem_le_att_handle
+	beq  ATT_WRITE_REQUEST_HANDLE,shutter_key_data_send
+	rtn
+shutter_le_parse_att_write_command:
+shutter_key_data_send:
+	jam 0,mem_shutter_key_data_flag
+	rtn
+
+init_shutter_le_att_list:
+	arg mem_shutter_le_att_list,contw
+	setsect 0,0x20001
+	setsect 1,0x20000
+	setsect 2,0x1022
+	setsect 3,0x860
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x3200
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12a05
+	setsect 1,0x10000
+	setsect 2,0x2000
+	setsect 3,0xa408
+	istore 9,contw
+	setsect 0,0x2
+	setsect 1,0x140
+	setsect 2,0x20
+	setsect 3,0x8a0
+	istore 9,contw
+	setsect 0,0x21800
+	setsect 1,0x8001
+	setsect 2,0x28030
+ 	setsect 3,0x804
+	istore 9,contw
+	setsect 0,0x20007
+	setsect 1,0x28000
+	setsect 2,0x3132
+	setsect 3,0x1a5a1
+	istore 9,contw
+	setsect 0,0x17370
+	setsect 1,0x35859
+	setsect 2,0xc422
+	setsect 3,0x8115
+	istore 9,contw
+	setsect 0,0x2020
+	setsect 1,0x808
+	setsect 2,0x20202
+	setsect 3,0x20
+	istore 9,contw
+	setsect 0,0x302
+	setsect 1,0x804a
+	setsect 2,0x90
+	setsect 3,0x408
+	istore 9,contw
+	setsect 0,0x22a
+	setsect 1,0x28032
+	setsect 2,0x2000
+	setsect 3,0xa00c
+	istore 9,contw
+	setsect 0,0x30201
+	setsect 1,0x8002
+	setsect 2,0x2a040
+	setsect 3,0x1820
+	istore 9,contw
+	setsect 0,0x600
+	setsect 1,0x1900
+	setsect 2,0x12c0
+	setsect 3,0x30
+	istore 9,contw
+	setsect 0,0x2
+	setsect 1,0x2808a
+	setsect 2,0xd180
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12803
+	setsect 1,0x38080
+	setsect 2,0x2000
+	setsect 3,0xa940
+	istore 9,contw
+	setsect 0,0x20207
+	setsect 1,0x18922
+	setsect 2,0x1826
+	setsect 3,0x3c00
+	istore 9,contw
+	setsect 0,0x200
+	setsect 1,0x8a00
+	setsect 2,0x18120
+	setsect 3,0x40
+	istore 9,contw
+	setsect 0,0x302
+	setsect 1,0x1804a
+	setsect 2,0x110
+	setsect 3,0x13808
+	istore 9,contw
+	setarg 0x1012a
+	istore 3,contw
+	setsect 0,0x20012
+	setsect 1,0x200c0
+	setsect 2,0x12012
+	setsect 3,0x4c
+	istore 9,contw
+	setsect 0,0x24d02
+	setsect 1,0x8a
+	setsect 2,0x14280
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x22902
+	setsect 1,0x0
+	setsect 2,0x150
+	setsect 3,0x2008
+	istore 9,contw
+	setsect 0,0x20229
+	setsect 1,0x18040
+	setsect 2,0x2001
+	setsect 3,0xa00c
+	istore 9,contw
+	setsect 0,0x31201
+	setsect 1,0x8005
+	setsect 2,0x2a4d0
+	setsect 3,0x8
+	istore 9,contw
+	setsect 0,0x1828
+	setsect 1,0x8080
+	setsect 2,0x2290
+	setsect 3,0x0
+	istore 9,contw
+	setsect 0,0x20019
+	setsect 1,0x24200
+	setsect 2,0x3022
+	setsect 3,0x6804
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x1b020
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x2a4b
+	setsect 1,0x30151
+	setsect 2,0x1090
+	setsect 3,0x684
+	istore 9,contw
+	setsect 0,0x10285
+	setsect 1,0x27a42
+	setsect 2,0x9ea0
+	setsect 3,0x2788
+	istore 9,contw
+	setsect 0,0x11530
+	setsect 1,0x30940
+	setsect 2,0x10750
+	setsect 3,0x654
+	istore 9,contw
+	setsect 0,0x81
+	setsect 1,0x4170
+	setsect 2,0x6090
+	setsect 3,0x684
+	istore 9,contw
+	setsect 0,0x10385
+	setsect 1,0x241c1
+	setsect 2,0x29e01
+	setsect 3,0x579c
+	istore 9,contw
+	setsect 0,0x12500
+	setsect 1,0x5d40
+	setsect 2,0x8950
+	setsect 3,0xa04
+	istore 9,contw
+	setsect 0,0x10875
+	setsect 1,0x14065
+	setsect 2,0x25001
+	setsect 3,0x17d0
+	istore 9,contw
+	setsect 0,0x1907
+	setsect 1,0x10a40
+	setsect 2,0x81f
+	setsect 3,0x300
+	istore 8,contw
+	setsect 0,0x2001c
+	setsect 1,0x200c0
+	setsect 2,0x2012
+	setsect 3,0x74
+	istore 9,contw
+	setsect 0,0x24a02
+	setsect 1,0x410a
+	setsect 2,0x11
+	setsect 3,0x7804
+	istore 9,contw
+	setsect 0,0x30200
+	setsect 1,0x4a00
+	setsect 2,0x1f040
+	setsect 3,0x800
+	istore 9,contw
+	setsect 0,0x12a4c
+	setsect 1,0x0
+	setsect 2,0x2002
+	setsect 3,0xa000
+	istore 9,contw
+	setsect 0,0xf02
+	setsect 1,0x846
+	setsect 2,0x3020
+	setsect 3,0x4a0
+	istore 9,contw
+	setsect 0,0x2212
+	setsect 1,0x24080
+	setsect 2,0x12a1
+	setsect 3,0x8c00
+	istore 9,contw
+	setsect 0,0x20200
+	setsect 1,0x8a40
+	setsect 2,0x0
+	setsect 3,0x0
+	istore 9,contw
+	rtn
+	
+shutter_init_param:
+	jam 1,mem_le_pres_auth
+	jam 1,mem_le_flag
+	jam 1,mem_le_pairing_mode
+	setarg 0x1b
+ 	store 2,mem_le_pairing_handle
+ 	jam 1,mem_le_adv_direct_addr_type
+ 	jam 3,mem_empty_count
+ 	jam 0x50,mem_le_transmit_window
+ 
+ 	jam 0x17,mem_le_local_mtu
+ 	jam 0x17,mem_le_remote_mtu
+ 	arg mem_le_pres,contw
+ 	setsect 0,0x302
+	setsect 1,0x40
+	setsect 2,0x1021
+	setsect 3,0x0
+	istore 7,contw
+	arg mem_le_interal_min,contw
+	setsect 0,0x8
+	setsect 1,0x4
+	setsect 2,0x2c000
+	setsect 3,0x4
+	istore 8,contw
+	rtn
+
+	
+else
+shutter_init:
+shutter_cancel_key_shake:
+shutter_send_process:
+shutter_scan_key_start:
+shutter_send_process_end:
+shutter_iphonekey_release:
+shutter_iphonekey_press:
+shutter_androidkey_release:
+shutter_androidkey_press:
+shutter_send_keydata:
+shutter_scan_key:
+shutter_process_bb_event:
+shutter_bb_event_setup_complete:
+shutter_bb_event_hid_connected:
+shutter_reconnect_scan:
+shutter_reconnect_scan_2:
+shutter_process_idle:
+shutter_le_discovery_timeout_sleep:
+        branch assert
+	
+endif
Index: Receive_Code/program/simple_pairing.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/simple_pairing.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/simple_pairing.prog	(working copy)
@@ -0,0 +1,2269 @@
+
+publickey_init:
+	fetch 1,mem_ssp_enable
+	nbranch sp_initialize,blank
+	branch sp_initialize_256
+
+publickey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_0,mem_patch3c
+	fetch 1,mem_ssp_enable
+	rtn blank
+	fetch 1,mem_sp_local_key_invalid
+	rtnne SP_KEY_VALID
+	fetch 1,mem_le_secure_connect_enable
+	rtn blank
+	fetch 1,mem_le_sc_local_key_invalid
+	rtneq SP_KEY_VALID_256
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,stop_publickey_calc_256
+	fetch 1,mem_le_sc_calc
+	beq SP_CALC_STANDBY,sp_initialize_256
+	rtn
+stop_publickey_calc_256:
+	jam SP_CALC_STANDBY,mem_le_sc_calc	
+	rtn
+	
+ifdef SIMPLE_PAIRING
+
+sp_initialize:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_1,mem_patch3c
+	fetch 1,mem_ssp_enable 
+	branch ssp_disable, blank
+	call ssp_enable
+	call sp_clear_flags
+	branch sp_pubkey_calc 
+	
+sp_clear_flags:
+	setarg 0
+	store 8,mem_sp_state_start
+	store 4,mem_sp_flag_start
+	store 7,mem_sp_iocap_remote
+	rtn
+
+sp_generate_local_key:
+	jam SP_FLAG_COMMIT,mem_sp_flag  
+	branch sp_generate_local_key0
+sp_master_generate_local_key:
+	fetch 1,mem_sp_local_key_invalid
+	beq SP_KEY_VALID,sp_dhkey_calc
+	branch assert
+sp_generate_local_key0:
+	fetch 1,mem_sp_local_key_invalid
+	beq SP_KEY_VALID,sp_start_send_pubkey
+	branch sp_pubkey_calc
+    
+sp_start_send_pubkey:
+	call sp_dhkey_calc
+	fetch 1,mem_master_sp_state
+	nrtn blank
+	jam SP_STAT_KEY_SEND,mem_sp_state
+	rtn
+    
+sp_calculate_commitment:
+	fetch 1,mem_sp_calc
+	bne SP_CALC_STANDBY,sp_calculate_commitment_wait_dhkey_calc
+	call sp_local_random_key_generator
+	arg mem_sp_prarm_stack,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+	setarg mem_sp_pubkey_local_x_end
+	istore 2,contw
+	setarg mem_sp_pubkey_remote_x_end
+	istore 2,contw
+	branch sp_calculate_commitment0
+master_sp_calculate_commitment:
+	arg mem_sp_prarm_stack,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	setarg mem_sp_pubkey_remote_x_end
+	istore 2,contw
+	setarg mem_sp_pubkey_local_x_end
+	istore 2,contw
+sp_calculate_commitment0:
+	call function_f1
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_COMMIT_CALC,master_sp_calculate_commitment0
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	jam SP_STAT_COMMIT_SEND,mem_sp_state
+	rtn
+master_sp_calculate_commitment0:
+	jam SP_STAT_COMMITMENT_COMPARE,mem_master_sp_state
+	call sp_master_generate_local_key
+	branch master_set_mem_master_sp_flag 
+
+sp_local_random_key_generator:
+	arg mem_sp_random_local,contw
+	force 8,queue
+	branch random_generator
+  
+sp_calculate_commitment_wait_dhkey_calc:
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+    
+sp_confirm_check:
+    /* calculate Ea here */
+	set1 mark_ext_patch,mark
+	bpatch patch3c_2,mem_patch3c
+	arg      mem_addr_value,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    3,mem_sp_iocap_remote
+	istore   3,contw 
+
+	call     function_f3a
+
+	arg      mem_sp_calc_result_high,regA
+	arg      mem_sp_check_result,regB    
+	force    4,queue 
+	call     compare4
+	nbranch  sp_confirm_check_failed,true  
+
+	call sp_confirm_check_success
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	branch tid_set_reply
+    
+sp_confirm_check_success:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check_success_master
+	jam SP_STAT_CONFIRM_CALC,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag  
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	rtn
+sp_confirm_check_success_master:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam SP_STATE_END,mem_master_sp_state
+	branch master_set_mem_master_sp_flag
+	//accept opcode?
+	
+sp_confirm_check_failed:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check_failed_master
+	jam SP_STAT_NULL,mem_sp_state
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	//accept opcode?
+	jam      AUTHENTICATION_FAILURE_ERROR,mem_lmo_reason2 
+	rtn
+sp_confirm_check_failed_master:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam SP_STAT_NULL,mem_master_sp_state
+	rtn
+    
+sp_confirm_calc:
+	fetch 1,mem_sp_dh_ready
+	beq SP_FLAG_COMMIT, sp_confirm_calc_ready
+	jam 	SP_STAT_CONFIRM_CALC,mem_master_sp_state
+	branch master_set_mem_master_sp_flag
+sp_confirm_calc_ready:
+	arg      mem_addr_value,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    3,mem_sp_iocap_local
+	istore   3,contw 
+
+	call     function_f3b
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CALC,sp_confirm_calc_master
+	jam      SP_STAT_CONFIRM_SEND,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+sp_confirm_calc_master:
+	jam      SP_STAT_CONFIRM_SEND,mem_master_sp_state
+	jam      SP_FLAG_COMMIT,mem_master_sp_flag
+	rtn   
+
+sp_master_key_prarm_push:
+	arg mem_sp_prarm_stack,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	branch sp_link_key_calc
+sp_link_key_prarm_push:
+	jam      SP_STAT_DONE,mem_sp_state    
+	arg mem_sp_prarm_stack,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+sp_link_key_calc:
+    /*calculate Link key here */
+	arg      mem_addr_value,contw
+	fetch    6,mem_sp_prarm_stack
+	istore   6,contw
+	fetch    6,mem_sp_prarm_stack+6
+	istore   6,contw
+	
+	call     function_f2    
+
+	/*handle linkkey  */
+	jam 1,mem_link_key_exists
+	arg mem_link_key,contw
+	arg mem_sp_calc_result_high,contr
+	call memcpy16
+	branch  generate_linkkey_continue
+
+    
+sp_pubkey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_3,mem_patch3c
+	fetch    1,mem_sp_local_key_invalid
+	rtnne SP_KEY_INVALID
+	fetch    1,mem_sp_calc
+	rtnne  SP_CALC_STANDBY
+	arg      mem_sp_private_key,contw 
+	force    11,queue
+	call     random_generator
+	random   pdata
+	rshift   pdata,pdata
+	istore   2,contw 
+/* we don't need fixed private key,generate random key instead */ 
+	arg      mem_k,contw
+	arg      mem_sp_private_key,contr	
+	call     memcpy24 //mem_sp_private_key=>mem_k 24BYTES
+
+	arg      mem_ax,contw
+	arg      mem_gx,contr
+	call     memcpy48 //mem_gx=>mem_ax 48bytes
+
+	arg      mem_az,contw
+	call     bn_zero
+	jam      1,mem_az //0=>mem_az 24bytes
+
+	call     eckp_calc_init
+	jam SP_CALC_PUBKEY,mem_sp_calc
+	rtn    
+	
+sp_pubkey_generated:
+	arg      mem_sp_pubkey_local,contw
+	arg      mem_bx,contr
+	call     memcpy48   
+	jam      SP_KEY_VALID,mem_sp_local_key_invalid
+	jam      SP_CALC_STANDBY,mem_sp_calc
+	rtn
+
+sp_dhkey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_4,mem_patch3c
+	fetch    1,mem_sp_dhkey_invalid
+	rtnne  SP_KEY_INVALID
+	fetch    1,mem_sp_calc
+	rtnne  SP_CALC_STANDBY
+
+	arg      mem_k,contw
+	arg      mem_sp_private_key,contr	
+	call     memcpy24
+
+	arg      mem_ax,contw
+	arg      mem_sp_pubkey_remote,contr
+	call     memcpy48
+
+	arg      mem_az,contw
+	call     bn_zero
+	jam      1,mem_az
+
+	call     eckp_calc_init
+	jam      SP_CALC_DHKEY,mem_sp_calc
+	rtn 	
+	
+sp_dhkey_generated:
+	jam SP_FLAG_COMMIT,mem_sp_dh_ready
+	arg mem_sp_dhkey,contw
+	arg mem_bx,contr
+	call memcpy24
+	jam SP_KEY_VALID,mem_sp_dhkey_invalid
+	jam SP_CALC_STANDBY,mem_sp_calc
+	rtn
+
+random_generator:
+	increase -1,queue
+	nrtn     positive
+	random   pdata
+	istore   2,contw  
+	branch   random_generator
+compare4:
+	increase -1,queue
+	nbranch  compare4_success,positive
+	ifetch   4,regA
+	copy     pdata,temp
+	ifetch   4,regB
+	iflip    temp,pdata
+	nbranch  compare4_failed,zero
+	increase 4,regA
+	increase 4,regB
+	branch   compare4
+compare4_failed:
+	disable  true
+	rtn
+compare4_success:
+	enable   true
+	rtn
+
+/*************************************************/
+/** Message state machine routines ***************/
+/*************************************************/
+// simple pairing support 
+
+simple_pairing_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_5,mem_patch3c
+         fetch 1,mem_sp_flag
+         rtn blank
+	call lmo_fifo_check
+	nrtn blank
+	jam      SP_FLAG_STANDBY,mem_sp_flag
+	fetch    1,mem_sp_state
+	beq  SP_STAT_KEY_SEND,sp_send_LMP_ENCAPSULATED_HEADER
+	beq  SP_STAT_COMMIT_SEND,sp_send_LMP_SIMPLE_PAIRING_COMFIRM
+	beq  SP_STAT_RANDOM_SEND,sp_send_LMP_SIMPLE_PAIRING_NUMBER
+	beq  SP_STAT_CONFIRM_SEND,sp_send_LMP_DHKEY_CHECK
+	beq  SP_STAT_KEY_GENERATE,sp_generate_local_key
+	beq  SP_STAT_COMMIT_CALC,sp_calculate_commitment
+	beq  SP_STAT_CONFIRM_CHECK,sp_confirm_check
+	beq  SP_STAT_CONFIRM_CALC,sp_confirm_calc
+	beq  SP_STAT_LINK_KEY_CALC,sp_link_key_prarm_push
+	//beq  SP_STAT_FEATURE_EXT_SEND,send_LMP_FEATURES_REQ_EXT
+	rtn  
+
+master_simple_paring_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_6,mem_patch3c
+	fetch 1,mem_master_sp_flag
+	rtn blank
+	call lmo_fifo_check
+	nrtn blank
+	jam SP_FLAG_STANDBY,mem_master_sp_flag
+	fetch 1,mem_master_sp_state
+	beq SP_MASTER_STAT_START_SKIP,sp_master_send_io_cap_get
+	beq SP_MASTER_STAT_START_DONE,sp_master_send_io_cap_send
+	beq SP_STAT_KEY_SEND,sp_master_send_LMP_ENCAPSULATED_HEADER
+	beq SP_STAT_COMMIT_CALC,master_sp_calculate_commitment
+	beq SP_STAT_COMMITMENT_COMPARE,sp_master_commitment_compare
+	beq SP_STAT_RANDOM_SEND,sp_master_send_LMP_SIMPLE_PAIRING_NUMBER
+	beq SP_STAT_CONFIRM_CALC,sp_confirm_calc
+	beq SP_STAT_CONFIRM_SEND,master_sp_send_lmp_dhkey_check
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check
+	beq SP_STATE_END,master_sp_sm_end
+	rtn
+
+master_set_mem_master_sp_flag:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	rtn
+	
+master_clear_mem_master_sp_flag:
+	jam SP_FLAG_STANDBY,mem_master_sp_flag
+	rtn
+sp_calc_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_7,mem_patch3c
+	fetch 1,mem_ssp_enable
+	rtn blank
+	fetch 1,mem_sp_calc
+	rtn blank
+	increase 0x80,pdata
+	store    1,mem_sp_calc
+	rtnbit1 7
+	fetch    1,mem_ec_loopc
+	branch   sp_calc_sequence_done,blank
+	branch   eckp_calc
+
+sp_calc_sequence_done:    
+	call ecunmapz
+	fetch 1,mem_sp_calc
+	beq  SP_CALC_PUBKEY,sp_pubkey_generated
+	beq  SP_CALC_DHKEY,sp_dhkey_generated
+	rtn
+
+
+bn_testbit:
+	and pdata,7,queue
+	rshift3 pdata,pdata
+	iadd contr,contr
+	ifetch 1,contr
+	qisolate0 pdata
+	rtn
+
+
+ec_copy:
+	call memcpy24
+	call memcpy24
+	branch memcpy24
+	
+	
+bn_eq_zero:
+	ifetch 8,contr
+	nrtn blank
+	ifetch 8,contr
+	nrtn blank
+	ifetch 8,contr
+	rtn
+	
+	
+	/* return zero if eq */
+
+bn_eq_0:	
+	ifetch 4,regA
+	iforce temp
+	ifetch 4,regB
+	isub temp,null
+	nrtn zero
+	increase 4,regA
+	increase 4,regB
+	loop bn_eq_0
+	rtn
+
+	/* return positive if A >= B */
+bn_bigeq:
+	force 6,loopcnt
+	increase 20,regA
+	increase 20,regB
+bn_bigeq_0:	
+	ifetch 4,regB
+	iforce temp
+	ifetch 4,regA
+	isub temp,pdata
+	nrtn positive
+	nrtn blank
+	increase -4,regA
+	increase -4,regB
+	loop bn_bigeq_0
+	rtn
+
+bn_add:
+	force 6,loopcnt
+	force 0,regC
+bn_add_0:	
+	ifetch 4,regA
+	iforce temp
+	ifetch 4,regB
+	iadd temp,pdata
+	iadd regC,pdata
+	istore 4,contw
+	isolate1 32,pdata
+	setflag true,0,regC
+	increase 4,regA
+	increase 4,regB
+	loop bn_add_0
+	rtn
+
+bn_sub:
+	force 6,loopcnt
+	force 0,regC
+bn_sub_0:	
+	ifetch 4,regB
+	iforce temp
+	ifetch 4,regA
+	isub temp,pdata
+	isub regC,pdata
+	istore 4,contw
+	isolate1 32,pdata
+	setflag true,0,regC
+	increase 4,regA
+	increase 4,regB
+	loop bn_sub_0
+	rtn
+
+bn_rshift6:
+	force 6,loopcnt
+	increase 20,regA
+bn_rshift:
+	force 0,regC
+bn_rshift_0:	
+	ifetch 4,regA
+	isolate1 0,pdata
+	setflag true,1,regC
+	rshift pdata,pdata
+	isolate1 0,regC
+	setflag true,31,pdata
+	istore 4,regA
+	increase -4,regA
+	rshift regC,regC
+	loop bn_rshift_0
+	rtn
+
+bn_lshift:
+	force 6,loopcnt
+	force 0,regC
+bn_lshift_0:	
+	ifetch 4,regA
+	isolate1 31,pdata
+	setflag true,1,regC
+	lshift pdata,pdata
+	isolate1 0,regC
+	setflag true,0,pdata
+	istore 4,regA
+	increase 4,regA
+	rshift regC,regC
+	loop bn_lshift_0
+	rtn
+	
+bn_lshiftmod:
+	call bn_lshift
+bn_lshiftmod_ismod:	
+	isolate1 0,regC
+	branch bn_lshiftmod_0,true
+	arg mem_p,regB
+	copy regA,regC
+	increase -24,regA
+	call bn_bigeq
+	nrtn positive
+	copy regC,regA
+bn_lshiftmod_0:
+	increase -24,regA
+	arg mem_p,regB
+	copy regA,contw
+	branch bn_sub
+	
+
+bn_addmod:
+	call bn_add
+	copy contw,regA
+	branch bn_lshiftmod_ismod
+	
+bn_submod:
+	call bn_sub
+	isolate0 0,regC
+	rtn true
+	arg mem_p,regB
+	add contw,-24,regA
+	copy regA,contw
+	branch bn_add
+	
+
+bn_p192mod:
+	copy contw,timeup				/* save result ptr */
+	copy regA,alarm				/* temp save regA */
+	arg mem_tmp2,regB
+	copy regB,contw
+	add regA,24,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	force 0,pdata
+	istore 8,contw
+	copy timeup,contw
+	call bn_addmod
+	arg mem_tmp2,regB
+	copy regB,contw
+	force 0,pdata
+	istore 8,contw
+	add alarm,32,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	copy timeup,regA
+	copy regA,contw
+	call bn_addmod
+	arg mem_tmp2,regB
+	copy regB,contw
+	add alarm,40,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	istore 8,contw
+	copy timeup,regA
+	copy regA,contw
+	branch bn_addmod
+		
+
+bn_load:
+	force 6,loopcnt
+bn_load_0:	
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	loop bn_load_0
+	rtn
+
+
+	/* cost 1562 clks */	
+bn_mulmod:
+	copy contw,timeup					/* save result ptr */
+	arg mem_tmp1,contw
+	call bn_zero
+	arg mem_tmp1,contw
+	copy regA,contr
+	force 0,regext_index
+	call bn_load
+	copy regB,contr
+	call bn_load
+	force 0,regB
+bn_mulmod_1:	
+	force 0,temp
+	force 6,regC
+bn_mulmod_0:
+	ifetch 4,contw					/* d[i+j] */
+	iforce regA
+	copy regB,regext_index
+	deposit regext
+	copy regC,regext_index
+	imul32 regext,pdata
+	iadd regA,pdata					/* uv = a[i]*b[j] + d[i+j] */
+	iadd temp,pdata					/* uv += u */
+	istore 4,contw					/* ->d[i+j] */
+	rshift32 pdata,temp				/* temp = u = uv >> 32 */
+	increase 1,regC
+	compare 12,regC,0xff
+	nbranch bn_mulmod_0,true
+	deposit temp
+	istore 4,contw					/* d[i + 12] = u */
+	increase -24,contw
+	increase 1,regB
+	compare 6,regB,0xff
+	nbranch bn_mulmod_1,true
+	arg mem_tmp1,regA
+	copy timeup,contw
+	branch bn_p192mod
+
+	
+bn_sqrmod:
+	copy regA,regB
+	branch bn_mulmod
+
+bn_rshifteven:
+	copy regA,alarm
+bn_rshifteven_1:
+	copy alarm,regA
+	ifetch 1,regA
+	isolate1 0,pdata
+	rtn true
+	call bn_rshift6
+	ifetch 1,regB
+	isolate0 0,pdata
+	branch bn_rshifteven_0,true
+	arg mem_p,regA
+	copy regB,contw
+	call bn_add
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB						/* [6] */
+	increase -24,regB
+bn_rshifteven_0:
+	add regB,24,regA
+	force 7,loopcnt
+	call bn_rshift
+	branch bn_rshifteven_1
+
+	/* cost 141910 clks */
+bn_invmod:
+	copy contw,timeup					/* save result ptr */
+	arg mem_tmp0,contw				/* x */
+	call bn_zero
+	force 0,pdata
+	store 4,mem_tmp5
+	store 4,mem_t2
+	jam 1,mem_tmp0
+	arg mem_tmp1,contw				/* y */
+	call bn_zero
+	arg mem_p,contr
+	arg mem_tmp2,contw				/* a */
+	call memcpy24
+	copy regA,contr
+	arg mem_tmp3,contw				/* b */
+	call memcpy24
+bn_invmod_2:	
+	arg mem_tmp3,contr
+	call bn_eq_zero
+	branch bn_invmod_0,blank
+	arg mem_tmp3,regA
+	arg mem_tmp0,regB
+	call bn_rshifteven
+
+	arg mem_tmp2,regA
+	arg mem_tmp1,regB
+	call bn_rshifteven
+	arg mem_tmp3,regA
+	arg mem_tmp2,regB
+	call bn_bigeq
+	branch bn_invmod_1,positive
+	arg mem_tmp2,regA
+	arg mem_tmp3,regB
+	copy regA,contw
+	call bn_sub
+	arg mem_tmp0,regA
+	arg mem_tmp1,regB
+	copy regB,contw
+	call bn_add
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_2
+bn_invmod_1:
+	arg mem_tmp3,regA
+	arg mem_tmp2,regB
+	copy regA,contw
+	call bn_sub
+	arg mem_tmp1,regA
+	arg mem_tmp0,regB
+	copy regB,contw
+	call bn_add
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_2
+bn_invmod_0:
+	arg mem_tmp0,contw
+	call bn_zero
+	fetch 1,mem_tmp5
+	store 1,mem_tmp0
+	store 1,mem_tmp0a
+	arg mem_tmp0,regA
+	arg mem_tmp1,regB
+	copy regB,contw
+	call bn_addmod
+	arg mem_p,regA
+	arg mem_tmp1,regB
+	copy timeup,contw
+	branch bn_submod
+	
+
+
+	/* cost 64742 clks */
+ecdbl:
+	arg mem_cz,regA
+	arg mem_t2,contw
+	call bn_sqrmod
+	arg mem_t2,regA
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_a,regA
+	arg mem_t3,regB
+	arg mem_t3,contw
+	call bn_mulmod		/* t3=a*z4	*/
+	arg mem_cx,regA
+	arg mem_t2,contw
+	call bn_sqrmod
+	arg mem_t2,contr
+	arg mem_t1,contw
+	call memcpy24
+	arg mem_t1,regA
+	call bn_lshiftmod
+	arg mem_t2,regA
+	arg mem_t1,regB
+	arg mem_t2,contw
+	call bn_addmod
+	arg mem_t2,regA
+	arg mem_t3,regB
+	arg mem_t2,contw
+	call bn_addmod		/* t2=3*x2 + z*z4		D  */
+	arg mem_cx,contr
+	arg mem_t1,contw
+	call memcpy24
+	arg mem_cy,regA
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_t1,regA
+	call bn_lshiftmod
+	arg mem_t1,regA
+	call bn_lshiftmod
+	arg mem_t1,regA		
+	arg mem_t3,regB
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=4x*y2	B	*/
+	arg mem_t3,regA
+	arg mem_t0,contw
+	call bn_sqrmod
+	arg mem_t0,regA
+	call bn_lshiftmod
+	arg mem_t0,regA
+	call bn_lshiftmod		
+	arg mem_t0,regA		
+	call bn_lshiftmod		/* t0=8*y4		C */
+	arg mem_cy,contr
+	arg mem_t3,contw
+	call memcpy24
+	arg mem_t3,regA
+	call bn_lshiftmod
+	arg mem_t3,regA
+	arg mem_cz,regB
+	arg mem_cz,contw
+	call bn_mulmod		
+	arg mem_t2,regA
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_t3,regA
+	arg mem_t1,regB
+	arg mem_t3,contw
+	call bn_submod
+	arg mem_t3,regA
+	arg mem_t1,regB
+	arg mem_cx,contw
+	call bn_submod
+	arg mem_t1,regA
+	arg mem_cx,regB
+	arg mem_t3,contw
+	call bn_submod
+	arg mem_t3,regA
+	arg mem_t2,regB
+	arg mem_t3,contw
+	call bn_mulmod		
+	arg mem_t3,regA
+	arg mem_t0,regB
+	arg mem_cy,contw
+	branch bn_submod
+	
+
+	/* cost 104904	clks */
+ecadd:
+	arg mem_az,regA
+	arg mem_t7,contw
+	call bn_sqrmod
+	arg mem_cx,regA
+	arg mem_t7,regB
+	arg mem_t0,contw
+	call bn_mulmod		/* n1=t0=xa*zb2  */
+	arg mem_az,regA
+	arg mem_t7,regB
+	arg mem_t7,contw
+	call bn_mulmod	
+	arg mem_cy,regA
+	arg mem_t7,regB
+	arg mem_t1,contw
+	call bn_mulmod		/* n2=t1=ya*zb3 */
+	arg mem_cz,regA
+	arg mem_t7,contw
+	call bn_sqrmod
+	arg mem_ax,regA
+	arg mem_t7,regB
+	arg mem_t2,contw
+	call bn_mulmod		/* n3=t2=xb*za2 */
+	arg mem_cz,regA
+	arg mem_t7,regB
+	arg mem_t7,contw
+	call bn_mulmod	
+	arg mem_ay,regA
+	arg mem_t7,regB
+	arg mem_t3,contw
+	call bn_mulmod		/* n4=t3=yb*za3 */
+	arg mem_t0,regA
+	arg mem_t2,regB
+	arg mem_t7,contw
+	call bn_submod		/* n5=t7=n1-n3=t0-t2 */
+	arg mem_t0,regA
+	arg mem_t2,regB
+	arg mem_t0,contw
+	call bn_addmod		/* n7=t0=n1+n3=t0+t2 */
+	arg mem_t1,regA
+	arg mem_t3,regB
+	arg mem_t2,contw
+	call bn_submod		/* n6=t2=n2-n4=t1-t3 */
+	arg mem_t1,regA
+	arg mem_t3,regB
+	arg mem_t1,contw
+	call bn_addmod		/* n8=t1=n2+n4=t1+t3 */
+	arg mem_t1,regA
+	arg mem_t7,regB
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=n8*n5 */
+	arg mem_cz,regA
+	arg mem_az,regB
+	arg mem_t3,contw
+	call bn_mulmod	
+	arg mem_t3,regA
+	arg mem_t7,regB
+	arg mem_cz,contw
+	call bn_mulmod		/* z=za*zb*n5 */
+	arg mem_t7,regA
+	arg mem_t7,contw
+	call bn_sqrmod		/* t7=n5^2 */
+	arg mem_t7,regA
+	arg mem_t0,regB
+	arg mem_t3,contw
+	call bn_mulmod		/* t3=n5^2*n7 */
+	arg mem_t7,regA
+	arg mem_t1,regB
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=n8*n5^3 */
+	arg mem_t2,regA
+	arg mem_cx,contw
+	call bn_sqrmod		
+	arg mem_cx,regA
+	arg mem_t3,regB
+	arg mem_cx,contw
+	call bn_submod		/* x=n6^2-n5^2*n7 */
+	arg mem_cx,contr
+	arg mem_t7,contw
+	call memcpy24
+	arg mem_t7,regA
+	call bn_lshiftmod		/* t7=2*x */
+	arg mem_t3,regA
+	arg mem_t7,regB
+	arg mem_t3,contw
+	call bn_submod		/* t3=n9 */
+	arg mem_t3,regA
+	arg mem_t2,regB
+	arg mem_t2,contw
+	call bn_mulmod		/* t2=n9*n6 */
+	arg mem_t2,regA
+	arg mem_t1,regB
+	arg mem_cy,contw
+	call bn_submod	
+	arg mem_cy,regA
+	arg mem_p,regB
+	arg mem_cy,contw
+	force 0,regC
+	fetch 1,mem_cy
+	isolate1 0,pdata
+	call bn_add,true
+	copy regC,alarm
+	arg mem_cy,regA
+	call bn_rshift6
+	fetch 1,mem_cy5
+	isolate1 0,alarm
+	setflag true,7,pdata
+	store 1,mem_cy5
+	rtn
+
+	/* cost 22276983 clks */
+
+eckp_0:	
+	fetch 1,mem_ec_loopc
+	increase -1,pdata
+	nrtn positive
+	store 1,mem_ec_loopc
+	fetch 1,mem_ec_infinite
+	call ecdbl,blank
+	fetch 1,mem_ec_loopc
+	arg mem_k,contr
+	call bn_testbit
+	branch eckp_0,true
+	fetch 1,mem_ec_infinite
+	nbranch eckp_1,blank
+	call ecadd
+	branch eckp_0
+eckp_1:
+	jam 0,mem_ec_infinite
+	arg mem_ax,contr
+	arg mem_cx,contw
+	call ec_copy
+	branch eckp_0
+
+	/* cost 162522 clks */
+ecunmapz:
+	arg mem_cz,regA
+	arg mem_t3,contw
+	call bn_invmod			/* t3 = 1/z */
+	arg mem_t3,regA
+	arg mem_t1,contw		
+	call bn_sqrmod			/* t1 = 1/z2 */
+	arg mem_cx,regA
+	arg mem_t1,regB
+	arg mem_bx,contw
+	call bn_mulmod
+	arg mem_t3,regA
+	arg mem_t1,regB
+	arg mem_t2,contw			
+	call bn_mulmod			/* t2 = 1/z3 */
+	arg mem_cy,regA
+	arg mem_t2,regB
+	arg mem_by,contw
+	branch bn_mulmod		
+	
+	
+
+sha_endian_swap2:	
+	ifetch 4,contr
+	force 4,regA
+	increase 3,contw
+sha_endian_loop:	
+	istore 1,contw
+	rshift8 pdata,pdata
+	increase -2,contw
+	increase -1,regA
+	nbranch sha_endian_loop,zero
+	increase 5,contw
+	loop sha_endian_swap2
+	rtn	
+
+
+sha_getw:
+	lshift2 queue,pdata
+	iadd timeup,contr
+	ifetch 4,contr
+	rtn
+	
+sha_r:
+	force 16,alarm
+	arg memdat,timeup
+sha_r_loop:	
+	add alarm,-7,queue
+	call sha_getw
+	iforce temp						/* W[t - 7] */
+	add alarm,-16,queue
+	call sha_getw
+	iadd temp,temp					/* W[t-7] + W[t-16] */
+	add alarm,-2,queue
+	call sha_getw
+	shasx pdata,1,pdata
+	iadd temp,temp					/* S1(W[t -  2]) + W[t-7] + W[t-16] */
+	add alarm,-15,queue
+	call sha_getw
+	shasx pdata,0,pdata
+	iadd temp,temp					/* S0(W[t - 15]) + S1(W[t -  2]) + W[t-7] + W[t-16] */
+	lshift2 alarm,pdata
+	iadd timeup,contw
+	istoret 4,contw
+	increase 1,alarm
+	compare 64,alarm,0xff
+	nbranch sha_r_loop,true
+	rtn
+	
+
+sha_init:
+	arg memh0,contr
+	force 7,regext_index
+sha_init_0:	
+	ifetch 4,contr
+	iforce regext
+	increase -1,regext_index
+	branch sha_init_0,positive
+	rtn
+
+sha:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_0,mem_patch3d
+	call sha_r		/* preprocessing data into R() */
+	arg memahbak,contw
+	force 0,regext_index
+sha_0:	
+	deposit regext
+	istore 4,contw
+	increase 1,regext_index
+	compare 8,regext_index,0xff
+	nbranch sha_0,true
+	call enable_authrom
+	arg memk,timeup
+	arg memdat,alarm
+	force 64,loopcnt
+sha_loop:	
+	ifetcht 4,alarm
+	ifetch 4,timeup
+	increase 4,timeup
+	increase 4,alarm
+	iadd temp,pdata			/* x+K */
+	force 7,regext_index
+	iadd regext,temp			/* x+K+h */
+	force 4,regext_index
+	shasx regext,3,pdata
+	iadd temp,temp			/* temp = s3(e)+x+K+h */
+	force 5,regext_index
+	deposit regext
+	force 6,regext_index
+	ixor regext,pdata
+	force 4,regext_index
+	iand regext,pdata			/* (e & (f ^ g)) */
+	force 6,regext_index
+	ixor regext,pdata			/* F1(e, f, g) = g ^ (e & (f ^ g)) */
+	iadd temp,temp			/* temp1 = h + S3(e) + F1(e,f,g) + K + x */
+	force 7,regext_index
+	copy temp,regext			/* save to H */
+	force 3,regext_index
+	deposit regext
+	iadd temp,regext			/* save to D */
+	force 0,regext_index
+	deposit regext
+	force 1,regext_index
+	iand regext,temp			/* a & b */
+	ior regext,pdata			/* a | b */			
+	force 2,regext_index
+	iand regext,pdata			/* (c & (a | b)) */
+	ior temp,temp				/* F0:(a & b) | (c & (a | b)) */
+	force 0,regext_index
+	shasx regext,2,pdata
+	iadd temp,pdata			/* temp2 = S2(a) + F0(a,b,c) */
+	force 7,regext_index
+	iadd regext,regext			/* h = temp1 + temp2 */
+	regexrot					/* rotate move h,a-g => a-h */
+	loop sha_loop
+	arg memahbak,contr
+	force 0,regext_index
+sha_1:	
+	ifetch 4,contr
+	iadd regext,regext
+	increase 1,regext_index
+	compare 8,regext_index,0xff
+	nbranch sha_1,true
+	branch disable_authrom
+
+	
+sha_result:
+	arg   memresult,contw
+	force 7,regext_index
+sha_regext_save:
+	deposit regext
+	istore  4,contw 
+	increase -1,regext_index
+	branch   sha_regext_save,positive
+	rtn	
+
+pad_xor:
+//	arg memx_end,contr
+	arg      memdat,contw
+	increase -4,contr
+	sub      loopcnt,16,regA
+pad_xor_0:	    
+	ifetch   4,contr
+	ixor     temp,pdata
+	istore   4,contw	
+	increase -8,contr	
+	loop  pad_xor_0
+	copy     regA,loopcnt
+	deposit  temp
+pad_xor_1:	
+	istore 4,contw
+	loop pad_xor_1
+	rtn
+
+g_noninit_number_confirm:
+	call g_noninit0
+	call sha_result
+	branch g_common0
+
+g_noninit:
+	call g_noninit0
+	branch g_common0
+	
+g_noninit0:
+ 	arg      mem_sp_pubkey_remote_x_end,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_pubkey_local_x_end,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_random_remote_end,contr
+	call     memcpy_dword_swap4
+	call     sha_init
+	call     sha	
+ 	arg      mem_sp_random_local_end,contr
+	arg      memdat,contw
+	branch g_common
+	
+g_init:
+ 	arg      mem_sp_pubkey_local_x_end,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_pubkey_remote_x_end,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_random_local_end,contr
+	call     memcpy_dword_swap4
+	call     sha_init
+	call     sha	
+ 	arg      mem_sp_random_remote_end,contr
+	arg      memdat,contw
+	call g_common
+	branch g_common0
+	
+g_common:	
+	call     memcpy_dword_swap4
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	force    5,loopcnt
+	call memset0
+	setarg 640
+	istore 4,contw
+	branch sha
+g_common0:
+	fetch 4,memresult
+//	store 4,mem_gkey
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	store 4,mem_gkey
+	quotient pdata
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	arg 1000,rega
+	imul32 rega,pdata
+	fetcht 4,mem_gkey
+	iadd temp,pdata
+	store 4,mem_gkey
+	rtn
+
+function_f1_no_key:
+	jam 0,mem_passkey_1bit
+	branch function_f1_common
+	
+function_f1:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f1_no_key
+function_f1_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_1,mem_patch3d
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	fetch 2,mem_sp_prarm_stack
+	copy pdata,contr
+	force    4,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	fetch 2,mem_sp_prarm_stack+2
+	copy pdata,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	fetch 2,mem_sp_prarm_stack+4
+	copy pdata,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	istore   3,contw
+	
+	fetch 1,mem_passkey_1bit
+	
+	istore   1,contw
+	force    0,pdata
+	istore   8,contw
+	setarg   0x0388
+	istore   4,contw
+	call     sha
+	call     sha_result
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	fetch 2,mem_sp_prarm_stack
+	copy pdata,contr
+	force    4,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call		bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha
+	branch     sha_result
+	
+	
+function_f2:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	fetch 2,mem_sp_prarm_stack+12
+	copy pdata,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	fetch 2,mem_sp_prarm_stack+14
+	copy pdata,contr
+	call     memcpy_dword_swap4
+
+	setarg   0x62746c
+	lshift8  pdata,pdata
+	or_into       0x6b,pdata       
+	istore   4,contw
+	arg      mem_addr_value_end,contr
+	force    3,loopcnt
+	call     memcpy_dword_swap
+	
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	force    0,pdata
+	istore   8,contw
+	setarg   0x0380
+	istore   4,contw
+	call     sha
+
+	call     sha_result
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	arg      mem_sp_dhkey_end,contr 
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha
+	branch     sha_result
+	
+
+function_f3a:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f3a_no_pin
+function_f3a_common:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_2,mem_patch3d
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      mem_sp_random_remote_end,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	arg      mem_sp_random_local_end,contr
+	call     memcpy_dword_swap4
+	branch function_f3_common
+
+function_f3a_no_pin:
+	setarg 0
+	store 4,mem_pin
+	branch function_f3a_common
+
+function_f3b_no_pin:
+	setarg 0
+	store 4,mem_pin
+	branch function_f3b_common
+
+
+function_f3b:
+	fetch 1,mem_ssp_mode_flag
+	bne  SSP_MODE_PASSKEY_ENTRY_FLAG,function_f3b_no_pin
+function_f3b_common:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+
+	arg      mem_sp_random_local_end,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	arg      mem_sp_random_remote_end,contr
+	call     memcpy_dword_swap4
+function_f3_common:    
+	setarg   0x0    
+	istore   8,contw
+	istore   4,contw
+	fetch 4,mem_pin
+	istore   4,contw
+	
+	copy     contw,temp
+	jam      0x80,mem_addr_padding
+	copy     temp,contw
+	arg      mem_addr_iocap_end,contr
+	call     memcpy_dword_swap4
+
+	call     sha
+    
+	arg      memdat,contw
+	force 7,loopcnt
+	call memset0
+	istore   4,contw
+	setarg   0x03F8
+	istore   4,contw
+	call     sha
+	call     sha_result
+	
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	arg      mem_sp_dhkey_end,contr 
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha	
+	branch     sha_result
+		
+/*
+eckp:
+	jam 192,mem_ec_loopc
+	jam 1,mem_ec_infinite
+*/
+eckp_calc_init:
+	jam      192,mem_ec_loopc
+eckp_calc_init_1:    
+	fetch    1,mem_ec_loopc
+	rtn      blank
+	increase -1,pdata
+	store    1,mem_ec_loopc 	
+	arg      mem_k,contr
+	call     bn_testbit
+	branch eckp_calc_init_1,true
+	arg      mem_ax,contr
+	arg      mem_cx,contw
+	branch     ec_copy	
+	
+eckp_calc:
+	call     ecdbl  
+	fetch    1,mem_ec_loopc
+	increase -1,pdata
+	store    1,mem_ec_loopc
+	arg      mem_k,contr
+	call     bn_testbit
+	rtn	true
+	branch     ecadd                
+	             
+memcpy_dword_swap4:
+	force 4,loopcnt
+memcpy_dword_swap:
+	increase -4,contr
+memcpy_dword_swap_loop:
+	ifetch   4,contr
+	istore   4,contw
+	increase -8,contr
+	loop   memcpy_dword_swap_loop 
+    	rtn
+
+else
+sp_initialize:
+	rtn
+
+endif
+	
+
+ifdef SECURE_CONNECTION
+
+sp_initialize_256:	
+	set1 mark_ext_patch,mark
+	bpatch patch3d_3,mem_patch3d
+	fetch 1,mem_le_secure_connect_enable
+	branch  le_secure_connection_disable,blank
+	call le_secure_connection_enable
+	call sp_clear_flags
+//	jam SP_KEY_INVALID_256,mem_le_sc_local_key_invalid
+	branch sp_pubkey_calc_256
+    	
+
+
+
+sp_pubkey_calc_256:
+	fetch    1,mem_le_sc_local_key_invalid
+	rtnne SP_KEY_INVALID
+	fetch    1,mem_le_sc_calc
+	rtnne  SP_CALC_STANDBY
+	
+	arg      mem_le_private_key_256,contw 
+	force    15,queue
+	call     random_generator
+	random   pdata
+	rshift   pdata,pdata
+	istore   2,contw 
+
+	arg      mem_k_256,contw
+	arg      mem_le_private_key_256,contr	
+	call     memcpy32 //mem_sp_private_key=>mem_k 
+
+	arg      mem_ax_256,contw
+	arg      mem_gx_256,contr
+	call     memcpy64 //mem_gx=>mem_ax 
+	
+	arg      mem_az_256,contw
+	call      clear_mem_256
+	jam      1,mem_az_256 //0=>mem_az 
+
+	call     eckp_calc_init_256
+	jam SP_CALC_PUBKEY_256,mem_le_sc_calc
+	rtn    
+
+sp_pubkey_generated_256:
+	arg      mem_le_pubkey_local_x_256,contw
+	arg      mem_bx_256,contr
+	call     memcpy64   
+	jam      SP_KEY_VALID_256,mem_le_sc_local_key_invalid
+	jam      SP_CALC_STANDBY,mem_le_sc_calc
+	rtn
+	
+
+
+sp_dhkey_calc_256:
+	fetch    1,mem_sp_dhkey_invalid
+	rtnne  SP_KEY_INVALID
+	fetch    1,mem_le_sc_calc
+	rtnne  SP_CALC_STANDBY
+
+	arg      mem_k_256,contw
+	arg      mem_le_private_key_256,contr	
+	call     memcpy32
+
+	arg      mem_ax_256,contw
+	arg      mem_le_pubkey_remote_x_256,contr
+	call     memcpy64
+
+	arg      mem_az_256,contw
+	call     clear_mem_256
+	jam      1,mem_az_256 //0=>mem_az 
+
+	call     eckp_calc_init_256
+	jam     SP_CALC_DHKEY_256,mem_le_sc_calc
+	rtn 
+
+
+sp_dhkey_generated_256:
+//	jam SP_FLAG_COMMIT,mem_sp_dh_ready
+	arg mem_le_dhkey_256,contw
+	arg mem_bx_256,contr
+	call memcpy32
+	jam SP_KEY_VALID_256,mem_sp_dhkey_invalid
+	jam SP_CALC_STANDBY,mem_le_sc_calc
+	rtn
+
+
+
+sp_calc_sequence_256:
+	fetch 1,mem_le_secure_connect_enable
+	rtn blank
+	fetch 1,mem_le_sc_calc
+	rtn blank
+	increase 0x80,pdata
+	store    1,mem_le_sc_calc
+	rtnbit1 7
+	fetch    2,mem_ec_loopc
+	branch   sp_calc_sequence_done_256,blank
+	branch   eckp_calc_256
+
+sp_calc_sequence_done_256:    
+	set1 mark_ext_patch,mark
+	bpatch patch3d_4,mem_patch3d
+	call ecunmapz_256
+	fetch 1,mem_le_sc_calc
+	beq  SP_CALC_PUBKEY_256,sp_pubkey_generated_256
+	beq  SP_CALC_DHKEY_256,sp_dhkey_generated_256
+	rtn
+
+
+eckp_calc_256:
+	call     ecdbl_256  
+	fetch    2,mem_ec_loopc
+	increase -1,pdata
+	store    2,mem_ec_loopc
+	arg      mem_k_256,contr
+	call     bn_testbit
+	rtn	true
+	branch     ecadd_256   
+
+eckp_calc_init_256:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_5,mem_patch3d
+	setarg 256,pdata
+	store 2,mem_ec_loopc
+eckp_calc_init_256_1:    
+	fetch    2,mem_ec_loopc
+	rtn      blank
+	increase -1,pdata
+	store    2,mem_ec_loopc
+	arg      mem_k_256,contr
+	call     bn_testbit
+	branch eckp_calc_init_256_1,true
+	arg      mem_ax_256,contr
+	arg      mem_cx_256,contw
+	branch     memcpy96	
+
+
+ecunmapz_256:
+	arg mem_cz_256,regA
+	arg mem_t3_256,contw
+	call bn_invmod_256			/* t3 = 1/z */
+	arg mem_t3_256,regA
+	arg mem_t1_256,contw		
+	call bn_sqrmod_256			/* t1 = 1/z2 */
+	arg mem_cx_256,regA
+	arg mem_t1_256,regB
+	arg mem_bx_256,contw
+	call bn_mulmod_256
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_t2_256,contw			
+	call bn_mulmod_256			/* t2 = 1/z3 */
+	arg mem_cy_256,regA
+	arg mem_t2_256,regB
+	arg mem_by_256,contw
+	branch bn_mulmod_256	
+	
+ecdbl_256:
+	arg mem_cz_256,regA
+	arg mem_t2_256,contw
+	call bn_sqrmod_256
+	arg mem_t2_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256
+//call ice_break
+	arg mem_a_256,regA
+	arg mem_t3_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* t3=a*z4	*/
+	arg mem_cx_256,regA
+	arg mem_t2_256,contw
+	call bn_sqrmod_256
+//call ice_break
+	arg mem_t2_256,contr
+	arg mem_t1_256,contw
+	call memcpy32
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t2_256,regA
+	arg mem_t1_256,regB
+	arg mem_t2_256,contw
+	call bn_addmod_256
+//call ice_break
+	arg mem_t2_256,regA
+	arg mem_t3_256,regB
+	arg mem_t2_256,contw
+	call bn_addmod_256		/* t2=3*x2 + z*z4		D  */
+//call ice_break
+	arg mem_cx_256,contr
+	arg mem_t1_256,contw
+	call memcpy32
+	arg mem_cy_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t1_256,regA
+	call bn_lshiftmod_256
+	arg mem_t1_256,regA		
+	arg mem_t3_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		//S = 4X1Y1^2/* t1=4x*y2	B	*/
+	arg mem_t3_256,regA
+	arg mem_t0_256,contw
+	call bn_sqrmod_256
+	arg mem_t0_256,regA
+	call bn_lshiftmod_256
+	arg mem_t0_256,regA
+	call bn_lshiftmod_256		
+	arg mem_t0_256,regA		
+	call bn_lshiftmod_256	//T = 8Y1^4	/* t0=8*y4		C */
+	arg mem_cy_256,contr
+	arg mem_t3_256,contw
+	call memcpy32
+	arg mem_t3_256,regA
+	call bn_lshiftmod_256
+	arg mem_t3_256,regA
+	arg mem_cz_256,regB
+	arg mem_cz_256,contw
+	call bn_mulmod_256		//z = 2Y1Z1
+
+
+	arg mem_t2_256,regA
+	arg mem_t3_256,contw
+	call bn_sqrmod_256   // M ^2
+//call ice_break
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256  // t2^2 - 4*cx *cy^2 
+	arg mem_t3_256,regA
+	arg mem_t1_256,regB
+	arg mem_cx_256,contw
+	call bn_submod_256   //X2
+	arg mem_t1_256,regA
+	arg mem_cx_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256   //S-X2
+	arg mem_t3_256,regA
+	arg mem_t2_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256	//M(S-X2)	
+	arg mem_t3_256,regA
+	arg mem_t0_256,regB
+	arg mem_cy_256,contw
+	branch bn_submod_256  //M(S-X2)-T Y2	
+
+ecadd_256:
+
+	arg mem_az_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256
+	arg mem_cx_256,regA
+	arg mem_t7_256,regB
+	arg mem_t0_256,contw
+	call bn_mulmod_256		/* n1=t0=xa*zb2 U1 = X1Z0^2*/
+
+
+	arg mem_az_256,regA
+	arg mem_t7_256,regB
+	arg mem_t7_256,contw
+	call bn_mulmod_256	
+	arg mem_cy_256,regA
+	arg mem_t7_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* n2=t1=ya*zb3   S1 = Y1Z0^3*/
+
+
+	arg mem_cz_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256
+	arg mem_ax_256,regA
+	arg mem_t7_256,regB
+	arg mem_t2_256,contw
+	call bn_mulmod_256		/* n3=t2=xb*za2  U0 = X0Z1^2*/
+
+	arg mem_cz_256,regA
+	arg mem_t7_256,regB
+	arg mem_t7_256,contw
+	call bn_mulmod_256	
+	arg mem_ay_256,regA
+	arg mem_t7_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* n4=t3=yb*za3 S0 = Y0Z1^3*/
+
+
+//	arg mem_t0_256,regA
+//	arg mem_t2_256,regB
+	arg mem_t0_256,regb
+	arg mem_t2_256,rega
+	arg mem_t7_256,contw
+	call bn_submod_256		/* n5=t7=n1-n3=t0-t2   W=U1-U0*/
+	arg mem_t0_256,regA
+	arg mem_t2_256,regB
+	arg mem_t0_256,contw
+	call bn_addmod_256		/* n7=t0=n1+n3=t0+t2    T=U1+U0 */
+//	arg mem_t1_256,regA
+//	arg mem_t3_256,regB
+	arg mem_t1_256,regb
+	arg mem_t3_256,rega
+	arg mem_t2_256,contw
+	call bn_submod_256		/* n6=t2=n2-n4=t1-t3  S1-S0 */
+	arg mem_t1_256,regA
+	arg mem_t3_256,regB
+	arg mem_t1_256,contw
+	call bn_addmod_256		/* n8=t1=n2+n4=t1+t3 M=S1+S0*/
+	arg mem_t1_256,regA
+	arg mem_t7_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* t1=n8*n5     MW */
+	arg mem_cz_256,regA
+	arg mem_az_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256	      //Z0Z1
+	arg mem_t3_256,regA
+	arg mem_t7_256,regB
+	arg mem_cz_256,contw
+	call bn_mulmod_256		/* z=za*zb*n5   Z0Z1W */
+
+	arg mem_t7_256,regA
+	arg mem_t7_256,contw
+	call bn_sqrmod_256		/* t7=n5^2 */
+	arg mem_t7_256,regA
+	arg mem_t0_256,regB
+	arg mem_t3_256,contw
+	call bn_mulmod_256		/* t3=n5^2*n7 */
+	arg mem_t7_256,regA
+	arg mem_t1_256,regB
+	arg mem_t1_256,contw
+	call bn_mulmod_256		/* t1=n8*n5^3 */
+	arg mem_t2_256,regA
+	arg mem_cx_256,contw
+	call bn_sqrmod_256		
+	arg mem_cx_256,regA
+	arg mem_t3_256,regB
+	arg mem_cx_256,contw
+	call bn_submod_256		/* x=n6^2-n5^2*n7 */
+	arg mem_cx_256,contr
+	arg mem_t7_256,contw
+	call memcpy32
+	arg mem_t7_256,regA
+	call bn_lshiftmod_256		/* t7=2*x */
+	arg mem_t3_256,regA
+	arg mem_t7_256,regB
+	arg mem_t3_256,contw
+	call bn_submod_256		/* t3=n9 */
+	arg mem_t3_256,regA
+	arg mem_t2_256,regB
+	arg mem_t2_256,contw
+	call bn_mulmod_256		/* t2=n9*n6 */
+	arg mem_t2_256,regA
+	arg mem_t1_256,regB
+	arg mem_cy_256,contw
+	call bn_submod_256	
+	arg mem_cy_256,regA
+	arg mem_p_256,regB
+	arg mem_cy_256,contw
+	force 0,regC
+	fetch 1,mem_cy_256
+	isolate1 0,pdata
+	call bn_add_256,true
+	copy regC,alarm
+	arg mem_cy_256,regA
+	call bn_rshift_256
+	fetch 1,mem_cy5_256
+	isolate1 0,alarm
+	setflag true,7,pdata
+	store 1,mem_cy5_256
+	rtn	
+
+bn_invmod_256:
+	copy contw,timeup					 
+	arg mem_tmp0_256,contw			 
+	call clear_mem_256
+	force 0,pdata
+//	store 4,mem_tmp52
+	store 4,mem_t2_256
+	jam 1,mem_tmp0_256      //y1
+	arg mem_tmp1_256,contw	//y2			 
+	call clear_mem_512      
+	arg mem_p_256,contr
+	arg mem_tmp2_256,contw		//j		 
+	call memcpy32
+	copy regA,contr
+	arg mem_tmp3_256,contw		//i		 
+	call memcpy32
+	
+//	arg mem_tmp22,regA
+//	arg mem_tmp32,regB
+//	call p_bn_bigeq_256
+//	branch assert,positive
+bn_invmod_256_2:	
+	arg mem_tmp3_256,contr
+	call bn_eq_zero_256
+	branch bn_invmod_256_0,blank
+//call ice_break    	
+//fetch 1,0x4ffe
+//increase 1,pdata
+//store 1,0x4ffe
+	arg mem_tmp3_256,regA
+	arg mem_tmp0_256,regB
+	call bn_rshifteven_256
+	arg mem_tmp2_256,regA
+	arg mem_tmp1_256,regB
+	call bn_rshifteven_256
+	
+	arg mem_tmp3_256,regA
+	arg mem_tmp2_256,regB
+	call bn_bigeq_256
+	branch bn_invmod_256_1,positive
+	arg mem_tmp2_256,regA
+	arg mem_tmp3_256,regB
+	copy regA,contw
+	call bn_sub_256
+	arg mem_tmp0_256,regA
+	arg mem_tmp1_256,regB
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_256_2
+bn_invmod_256_1:
+	arg mem_tmp3_256,regA
+	arg mem_tmp2_256,regB
+	copy regA,contw
+	call bn_sub_256
+	arg mem_tmp1_256,regA
+	arg mem_tmp0_256,regB
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regA
+	iadd regC,regC
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB
+	branch bn_invmod_256_2
+bn_invmod_256_0:
+//call ice_break
+	arg mem_tmp1_256,regA
+	copy timeup,contw
+	call  bn_p256mod
+//call ice_break
+	arg mem_p_256,regA
+	copy timeup,regB
+	copy timeup,contw
+	branch bn_submod_256
+
+
+bn_mulmod_256:
+	copy contw,timeup					/* save result ptr */
+	
+	force 0,regext_index
+	
+	arg mem_tmp1_256,contw
+	call clear_mem_512
+	arg mem_regext,contw
+	call clear_mem_512
+//	jam 0,mem_regext_index
+
+//	arg mem_tmp12,contw
+	copy regA,contr
+//	force 0,regext_index
+	jam 0,mem_regext
+	setarg 0
+	call bn_load_mem
+	copy regB,contr
+	call bn_load_256
+//	force 0,regB
+//	jam 0,mem_regb
+	force 0,queue
+	arg mem_tmp1_256,contw	
+bn_mulmod_256_1:	
+//	copy regb,pdata
+//	store 1,
+	arg mem_regext,temp
+	copy queue,regb
+	lshift2 regb,pdata
+//	lshift4 pdata,pdata
+	iadd temp,regb	
+	force 0,temp
+	force 0,regC
+bn_mulmod_256_0:
+//	copy contw,pdata
+//	store 2,mem_contw
+//call ice_break
+//	copy pdata,contw
+	ifetch 4,contw					/* d[i+j] */
+	iforce regA
+//	copy regB,regext_index
+//	deposit regext
+	ifetch 4,regb
+	copy regC,regext_index
+	imul32 regext,pdata
+	iadd regA,pdata					/* uv = a[i]*b[j] + d[i+j] */
+	iadd temp,pdata					/* uv += u */
+	istore 4,contw					/* ->d[i+j] */
+	rshift32 pdata,temp				/* temp = u = uv >> 32 */
+	increase 1,regC
+	compare 8,regC,0xff
+	nbranch bn_mulmod_256_0,true
+//call ice_break
+	deposit temp
+	istore 4,contw					/* d[i + 12] = u */
+	increase -32,contw
+//	fetch 1,mem_regb
+//	copy pdata,regb
+	increase 1,queue
+	compare 8,queue,0xff
+	nbranch bn_mulmod_256_1,true
+	arg mem_tmp1_256,regA
+	copy timeup,contw
+	branch bn_p256mod
+
+bn_p256mod:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_6,mem_patch3d
+	copy contw,timeup				/* save result ptr */
+	copy regA,alarm				/* temp save regA */
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	call memset0_4	
+	istore 8,contw
+	add regA,44,contr
+	call memcpy8
+	call memcpy12
+	copy regb,rega
+	call  bn_lshiftmod_256 //2S1
+	arg mem_tmp2_256,regB
+	copy alarm,rega   
+	copy timeup,contw
+	call bn_addmod_256 //T+2S1
+//call ice_break	
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	call memset0_4	
+	istore 8,contw
+	add alarm,48,contr
+	call memcpy16
+	call memset0_4	
+	copy regb,rega
+	call  bn_lshiftmod_256 //2S2
+//call ice_break	
+//	arg 0,regB
+
+	arg mem_tmp2_256,regB
+	copy timeup,rega   
+	copy regA,contw	
+	call bn_addmod_256  //+2S2
+//call ice_break	
+//	arg 0,regB
+		
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,32,contr
+	call memcpy12
+	call memset0_4	
+	istore 8,contw
+	add alarm,56,contr
+	call memcpy8
+	copy timeup,regA
+	copy regA,contw
+	call bn_addmod_256 //+S3
+//call ice_break	
+//	arg 0,regB
+
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,36,contr
+	call memcpy12
+	add alarm,52,contr	
+	call memcpy12
+	add alarm,52,contr
+	call memcpy4
+	add alarm,32,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_addmod_256 //+S4	
+//call ice_break	
+//	arg 1,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,44,contr
+	call memcpy12
+	call memset0_4	
+	istore 8,contw
+	add alarm,32,contr
+	call memcpy4
+	add alarm,40,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D1	
+//call ice_break	
+//	arg 2,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,48,contr
+	call memcpy8
+	call memcpy8
+	force 0,pdata
+	istore 8,contw
+	add alarm,36,contr
+	call memcpy4
+	add alarm,44,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D2	
+//call ice_break	
+//	arg 3,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,52,contr
+	call memcpy12
+	add alarm,32,contr
+	call memcpy12
+	call memset0_4	
+	add alarm,48,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	call bn_submod_256 //-D3
+//call ice_break	
+//	arg 4,regB
+	arg mem_tmp2_256,regB
+	copy regB,contw
+	add alarm,56,contr
+	call memcpy8
+	call memset0_4	
+	add alarm,36,contr
+	call memcpy12
+	call memset0_4	
+	add alarm,52,contr
+	call memcpy4
+	copy timeup,regA
+	copy regA,contw
+	branch  bn_submod_256 //-D4	
+
+
+bn_load_mem:
+	force 32,loopcnt
+	arg mem_regext,contw
+	iadd contw,contw
+	branch memcpy
+
+bn_load_256:
+	force 8,loopcnt
+	branch bn_load_0
+
+bn_sqrmod_256:
+	copy regA,regB
+	branch bn_mulmod_256
+
+bn_add_256:
+	force 8,loopcnt
+ 	branch bn_add+1
+
+bn_addmod_256:
+	call bn_add_256
+	copy contw,regA
+	branch bn_lshiftmod_ismod_256
+
+bn_lshiftmod_256:
+	call bn_lshift_256
+bn_lshiftmod_ismod_256:	
+	isolate1 0,regC
+	branch bn_lshiftmod_p_256,true
+	arg mem_p_256,regB
+	copy regA,regC
+	increase -32,regA
+	call bn_bigeq_256
+	nrtn positive
+	copy regC,regA
+	branch sub_p2_256
+	
+bn_lshiftmod_p_256:
+	call sub_p2_256
+//	nrtn true
+	copy regA,regC
+	increase -32,regA
+	arg mem_p_256,regB
+	call bn_bigeq_256
+	nrtn positive
+	copy regC,regA
+	branch sub_p2_256
+		
+	
+sub_p2_256:
+	increase -32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	branch bn_sub_256
+	
+
+
+	
+bn_submod_256:
+	call bn_sub_256
+//	isolate1 0,regC
+	branch  bn_submod_256_np,true
+//	copy regA,regC
+//	increase -32,regA
+	add contw,-32,regA
+	arg mem_p_256,regB
+	call bn_bigeq_256
+	nrtn positive
+	arg mem_p_256,regB
+	add contw,-32,regA
+//	copy regC,regA
+	copy rega,contw
+	branch  bn_sub_256
+bn_submod_256_np:	
+	add contw,-32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	call bn_add_256
+//	isolate1 0,regC
+	rtn true
+	add contw,-32,regA
+	arg mem_p_256,regB
+	copy regA,contw
+	branch bn_add_256	
+
+
+ 
+bn_sub_256:
+	force 8,loopcnt
+	branch bn_sub+1
+
+bn_rshift_256:
+	force 8,loopcnt
+	increase 28,regA
+	branch bn_rshift
+
+bn_lshift_256:
+	force 8,loopcnt
+	force 0,regC
+	branch bn_lshift_0
+
+bn_bigeq_256:
+	force 8,loopcnt
+	increase 28,regA
+	increase 28,regB
+	branch bn_bigeq_0
+
+
+bn_eq_zero_256:
+	ifetch 8,contr
+	nrtn blank
+	branch bn_eq_zero
+
+
+
+	
+bn_rshifteven_256:
+	copy regA,alarm
+bn_rshifteven_256_1:
+	copy alarm,regA
+	ifetch 1,regA
+	isolate1 0,pdata
+	rtn true
+	call bn_rshift_256
+	ifetch 1,regB
+	isolate0 0,pdata
+	branch bn_rshifteven_256_0,true
+	arg mem_p_256,regA
+	copy regB,contw
+	call bn_add_256
+	ifetch 1,regB
+	iadd regC,pdata
+	istore 1,regB						 
+	increase -32,regB
+bn_rshifteven_256_0:
+	add regB,32,regA
+	force 9,loopcnt
+	call bn_rshift
+	branch bn_rshifteven_256_1		
+
+else
+sp_initialize_256:
+	rtn
+
+endif
+
+
Index: Receive_Code/program/ui.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/ui.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/ui.prog	(working copy)
@@ -0,0 +1,480 @@
+ui_init:
+	call lpm_disable_exen_output
+	rtn wake
+	call ui_button_init
+	call ui_timer_init
+	branch ui_led_init
+
+ui_dispatch:
+	call ui_led_blink_polling
+	
+	branch ui_timer_check
+	
+ui_button_init:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_7,mem_patch3d
+	fetch 1,mem_ui_button_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	iforce temp
+	call gpio_config_output
+	fetcht 1,mem_ui_button_gpio
+	call gpio_out_inactive
+	nop 100
+	fetcht 1,mem_ui_button_gpio
+	call gpio_config_input
+	branch ui_button_polling
+
+
+	
+ui_button_polling:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_0,mem_patch3e
+	fetch 1,mem_ui_button_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	copy pdata,temp
+	call gpio_get_bit
+	nbranch ui_button_up,true
+	//fall through
+ui_button_down:
+	call ui_button_check_long_press
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BTN_DOWN
+	store 2,mem_ui_state_map
+	fetch 1,mem_ui_button_last_state
+	rtneq UI_BUTTON_STATE_DOWN
+	jam UI_BUTTON_STATE_DOWN,mem_ui_button_last_state
+	//Down Edge
+	fetch 1,mem_ui_button_timeout
+	store 1,mem_ui_button_timer //start long press timer
+	call lpm_button_get_wake_lock
+	jam BT_EVT_BUTTON_DOWN,mem_fifo_temp
+	branch ui_ipc_send_event
+ui_button_up:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BTN_DOWN
+	store 2,mem_ui_state_map
+	fetch 1,mem_ui_button_last_state
+	rtneq UI_BUTTON_STATE_UP
+	jam UI_BUTTON_STATE_UP,mem_ui_button_last_state
+	//Up Edge
+	jam 0,mem_ui_button_timer//stop long press timer
+	call lpm_button_clean_wake_lock
+	jam BT_EVT_BUTTON_UP,mem_fifo_temp
+	branch ui_ipc_send_event
+
+ui_button_check_long_press:
+	fetch 1,mem_ui_button_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_ui_button_timer
+	nrtn blank
+	//Long Press
+	jam BT_EVT_BUTTON_LONG_PRESSED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+lpm_button_get_wake_lock:
+	arg wake_lock_button,queue
+	branch lpm_get_wake_lock
+	
+lpm_button_clean_wake_lock:
+	arg wake_lock_button,queue
+	branch lpm_put_wake_lock
+
+ui_led_init:
+	fetch 1,mem_led_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	iforce temp
+	call gpio_config_output
+	branch ui_led_off
+	
+ui_led_blink_stop:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_LED_BLINK
+	store 2,mem_ui_state_map
+	jam ui_led_stop,mem_led_switch
+ui_led_off:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_LED_ON
+	store 2,mem_ui_state_map
+	fetcht 1,mem_led_gpio
+	branch gpio_out_inactive
+
+ui_led_on:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_LED_ON
+	store 2,mem_ui_state_map
+	jam ui_led_stop,mem_led_switch
+	fetcht 1,mem_led_gpio
+	branch gpio_out_active
+
+ui_led_blink_start:
+	jam 0xff,mem_led_blink_count
+ui_led_blink_start1:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_LED_BLINK
+	store 2,mem_ui_state_map
+	jam ui_led_start,mem_led_switch
+	rtn
+	
+ui_led_blink_polling:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_1,mem_patch3e
+	fetch 1,mem_led_blink_count
+	rtn blank
+	fetch 1,mem_led_switch
+	rtneq ui_led_stop
+	arg ui_led_blink,queue
+	call timer_check
+	nrtn blank
+	fetch 1,mem_led_switch
+	beq ui_led_dark_time,in_ui_led_blink_polling_dark
+	call ui_led_on
+	jam ui_led_dark_time,mem_led_switch
+	fetch 2,mem_led_light_time
+	branch in_ui_led_blink_timer_start
+in_ui_led_blink_polling_dark:
+	call ui_led_off
+	fetch 1,mem_led_blink_count
+	beq LED_FLASH_INFINITE,in_ui_led_infinite
+	increase -1,pdata
+	store 1, mem_led_blink_count
+in_ui_led_infinite:
+	jam ui_led_light_time,mem_led_switch
+	fetch 2,mem_led_dark_time
+in_ui_led_blink_timer_start:
+	arg ui_led_blink,queue
+	branch timer_init	
+
+ui_timer_timeout:
+	setarg 0x1000
+	lshift16 pdata,pdata
+	iadd regb,regb
+	rtn
+	
+ui_timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_2,mem_patch3e
+	arg 0,rega
+	fetcht 4,mem_ui_timer_last_btclk
+	copy clkn_bt,regb
+	copy regb,pdata
+	isub temp,null
+	ncall ui_timer_timeout,positive
+	//call ice_break
+ui_timer_check_loop:
+	copy regb,pdata
+	increase 160,temp    //320btclk = 100ms
+	increase 160,temp
+	isub temp,null
+	nbranch ui_timer_check_end,positive
+	increase 1,rega   //increase 1 every 100ms count
+	and rega,0x0f,pdata
+	nbranch ui_timer_check_loop,blank
+	arg 0,rega  //reset timer if it's longer than 1.5s between 2 checks
+	call ui_timer_check_send_evt
+ui_timer_init:
+	copy clkn_bt,pdata
+	store 4,mem_ui_timer_last_btclk
+	rtn
+ui_timer_check_end:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_3,mem_patch3e
+	copy rega,pdata
+	rtn blank
+	increase -160,temp    //320btclk = 100ms
+	increase -160,temp
+	set0 28,temp
+	storet 4,mem_ui_timer_last_btclk
+ui_timer_check_send_evt:
+	increase BT_EVT_TIMER_INIT,pdata
+	store 1,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+
+//**********************************************************//
+//************UI Inter-Processor Communication*******//
+//**********************************************************//
+ui_ipc_get_lock:
+	jam 1,mem_ipc_lock_bt
+ui_ipc_get_lock_wait:
+	fetch 1,mem_ipc_lock_c51
+	nbranch ui_ipc_get_lock_wait,blank
+	rtn
+	
+ui_ipc_put_lock:
+	jam 0,mem_ipc_lock_bt
+	rtn
+	
+
+	
+ui_ipc_send_event:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_4,mem_patch3e
+	call ui_ipc_get_lock
+	copy rega,pdata
+	store 4,mem_ipc_rega_temp
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_in
+	fetch 4,mem_ipc_rega_temp
+	copy pdata,rega
+	branch ui_ipc_put_lock
+
+ui_ipc_send_cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_5,mem_patch3e
+	call ui_ipc_get_lock
+	copy rega,pdata
+	store 4,mem_ipc_rega_temp	
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_in
+	fetch 4,mem_ipc_rega_temp
+	copy pdata,rega	
+	branch ui_ipc_put_lock
+
+ui_ipc_clean_all_fifo:
+	setarg 0
+	store UTIL_FIFO_LEN,mem_ipc_fifo_c512bt
+	store UTIL_FIFO_LEN,mem_ipc_fifo_bt2c51
+	rtn
+	
+check_51cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_6,mem_patch3e
+	fetch 1,mem_hci_cmd
+	nrtn blank
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_is_empty
+	rtn blank
+	jam IPC_CONTINUE_PROCESS,mem_ipc_skip_continue_proc
+	call check_51cmd_once
+	fetch 1,mem_ipc_skip_continue_proc
+	branch check_51cmd,blank
+	rtn
+
+check_51cmd_once:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_7,mem_patch3e
+	call ui_ipc_get_lock
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_out
+	copy pdata,temp
+	call ui_ipc_put_lock
+	copy temp,pdata
+	rtn blank
+ 	beq BT_CMD_START_DISCOVERY,check_51cmd_start_discovery
+  	beq BT_CMD_STOP_DISCOVERY,check_51cmd_stop_discovery
+  	beq BT_CMD_RECONNECT,check_51cmd_reconnect
+  	beq BT_CMD_ENTER_SNIFF_SUBRATING,check_51cmd_enter_sniff_subrating
+  	beq BT_CMD_EXIT_SNIFF_SUBRATING,check_51cmd_exit_sniff_subrating
+  	beq BT_CMD_SNIFF_TEST,check_51cmd_sniff_test
+	beq BT_CMD_START_INQUIRY,check_51cmd_inq
+	beq BT_CMD_STOP_INQUIRY,check_51cmd_stop_inq
+	beq BT_CMD_START_ADV,check_51cmd_adv
+	beq BT_CMD_STOP_ADV,check_51cmd_stop_adv
+	beq BT_CMD_START_DIRECT_ADV,check_51cmd_direct_adv
+	beq BT_CMD_STOP_DIRECT_ADV,check_51cmd_stop_direct_adv
+	beq BT_CMD_LED_BLINK,ui_led_blink_start
+	beq BT_CMD_LED_ON,ui_led_on
+	beq BT_CMD_LED_OFF,ui_led_blink_stop
+	beq BT_CMD_LE_START_CONN,check_51cmd_le_start_con
+	beq BT_CMD_LE_START_SCAN,check_51cmd_start_scan
+	beq BT_CMD_LE_STOP_SCAN,check_51cmd_stop_scan
+	beq BT_CMD_ENTER_HIBERNATE,check_51cmd_hibernate
+	beq BT_CMD_LE_SMP_SECURITY_REQUEST,check_51cmd_le_smp_sec_req
+	beq BT_CMD_LE_START_WRITE,check_51cmd_le_start_write
+	beq BT_CMD_BB_RECONN_CANCEL,check_51cmd_bb_reconn_cancel
+ifdef COMPILE_24G
+	beq BT_CMD_START_24G,check_51cmd_start24g
+	beq BT_CMD_STOP_24G,check_52cmd_stop24g
+	beq BT_CMD_PAIR_24G,check_51_cmd_pairing_24g
+endif 
+	//context related, process in context
+	store 1,mem_fifo_temp
+	set1 mark_ext_patch,mark
+	bpatch patch3f_0,mem_patch3f
+	call lmo_fifo_check
+	nbranch check_51cmd_restore,blank  //process this cmd next time while lmo fifo is full
+check_51cmd_once_continue:
+	fetch 1,mem_fifo_temp
+	bmark0 mark_context,check_51cmd_check_idle
+  	beq BT_CMD_ENTER_SNIFF,cmd_in_sniff
+  	beq BT_CMD_EXIT_SNIFF,cmd_exit_sniff
+  	beq BT_CMD_SET_PIN_CODE,check_51cmd_pincode
+	beq BT_CMD_DISCONNECT,check_51cmd_disconnect
+	beq BT_CMD_LE_DISCONNECT,check_51cmd_le_disconnect
+	beq BT_CMD_ROLE_SWITCH,check_51cmd_role_switch
+	beq BT_CMD_STORE_RECONN_INFO_LE,eeprom_store_le_reconn_info
+	beq BT_CMD_STORE_RECONN_INFO_BT,eeprom_store_bd_reconn_info
+	beq BT_CMD_LE_UPDATE_CONN,check_51cmd_ble_update_connect_param
+	beq BT_CMD_DHKEY_NOT_ACCEPT,check_51cmd_dhkey_not_accept
+  	rtn
+
+check_51cmd_dhkey_not_accept:
+	call tid_set_reply
+	jam LMP_DHKey_Check,mem_lmi_opcode2
+	branch parse_lmp_dhkey_check_reject	
+
+check_51cmd_ble_update_connect_param:
+	jam XT_LL_CONNECTION_PARAM_REQ,mem_fifo_temp
+	branch le_xtype_fifo_in
+check_51cmd_check_idle:
+	store 1,mem_fifo_temp
+  	call context_check_idle
+	branch check_51cmd_restore,zero
+	call context_search_plap
+	nrtn zero
+check_51cmd_restore:
+	jam IPC_SKIP_CONTINUE_PROCESS,mem_ipc_skip_continue_proc
+	branch ui_ipc_send_cmd
+
+
+check_51cmd_role_switch:
+  	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	nrtn master
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	jam LMP_SWITCH_REQ ,mem_lmo_opcode2
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	rtn
+	
+check_51cmd_start_discovery:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_DISCOVERY
+	store 2,mem_ui_state_map
+	jam 3,mem_scan_mode
+	rtn
+	
+check_51cmd_stop_discovery:
+	jam 0,mem_hid_handshake_timer_count
+	jam 0,mem_scan_mode
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_DISCOVERY
+	store 2,mem_ui_state_map
+	rtn
+	
+check_51cmd_reconnect:	
+	jam hci_cmd_create_conn,mem_hci_cmd
+	rtn
+	
+check_51cmd_disconnect:
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam OTHER_END_TERMINATED,mem_disconn_reason_send
+	rtn
+	
+	
+check_51cmd_enter_sniff_subrating:
+	rtn
+	
+check_51cmd_exit_sniff_subrating:
+	rtn	
+	
+check_51cmd_sniff_test:
+	rtn
+	
+check_51cmd_pincode:
+	jam pincode_state_pincode_ready,mem_pincode_state
+	branch cmd_pair
+
+check_51cmd_inq:
+	rtn
+check_51cmd_stop_inq:
+	rtn
+check_51cmd_adv:
+	jam ON,mem_le_adv_enable
+	jam ADV_IND,mem_le_adv_type
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	rtn
+check_51cmd_stop_adv:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	jam OFF,mem_le_adv_enable
+	rtn
+check_51cmd_direct_adv:
+	jam ON,mem_le_adv_enable
+	jam ADV_DIRECT_IND,mem_le_adv_type
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	rtn
+check_51cmd_stop_direct_adv:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_ADV,pdata
+	store 2,mem_ui_state_map
+	jam OFF,mem_le_adv_enable
+	rtn
+check_51cmd_le_disconnect:
+	setarg 10 // 100ms
+	store 2,mem_le_superto
+	jam XT_LL_TERMINATE_IND,mem_fifo_temp
+	branch le_xtype_fifo_in
+check_51cmd_le_start_con:
+	jam ON,mem_le_scan_enable
+	jam hci_cmd_le_create_conn,mem_hci_cmd
+//	fetch 6,mem_app_peer_addr
+//	store 6,mem_le_conn_peer_addr
+	rtn
+check_51cmd_start_scan:
+	jam ON,mem_le_scan_enable
+	rtn
+check_51cmd_stop_scan:
+	jam OFF,mem_le_scan_enable
+	jam 0,mem_hci_cmd
+	rtn
+check_51cmd_le_smp_sec_req:
+	jam XT_SMP_SECURITY_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+check_51cmd_hibernate:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_1,mem_patch3f
+	fetch 2,mem_cb_before_hibernate
+	call callback_func
+	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+	fetch 1,mem_ui_button_gpio
+	beq UI_BUTTON_GPIO_DISABLE,check_51cmd_hibernate_btn_disabled
+	copy pdata,temp
+	call gpio_config_input
+check_51cmd_hibernate_btn_disabled:
+	call ui_led_off
+	call ui_ipc_clean_all_fifo
+	branch lpm_hibernate
+	
+check_51cmd_le_start_write:
+	jam 1,mem_le_switch_send_data
+	rtn
+
+check_51cmd_bb_reconn_cancel:
+	force page_length_timer,queue
+	branch timer_stop
+
+ifdef COMPILE_24G
+check_51cmd_start24g:
+	fetch 4,mem_24g_addr_copy
+	store 4,mem_24g_addr
+	branch g24_init
+check_52cmd_stop24g:
+	jam P24G_SM_PAIRING_SUCC,mem_24g_pairing_sm
+	branch g24_uninit
+check_51_cmd_pairing_24g:
+	jam P24G_SM_PAIRING_REQUEST,mem_24g_pairing_sm
+	call g24_init
+	setarg -1
+	store 4,mem_24g_addr
+	branch g24_pairing_ch		//must change ch at last
+endif
+
+ui_check_paring_button:
+	fetch 1,mem_ui_state_map
+	rtnbit0 UI_STATE_BTN_DOWN
+	rtnbit0 UI_STATE_BT_RECONNECT
+	branch check_51cmd_bb_reconn_cancel
+
+
Index: Receive_Code/program/utility.prog
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/utility.prog	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/program/utility.prog	(working copy)
@@ -0,0 +1,606 @@
+
+right_shift_n: //rshiftN pdata,pdata
+	sub loopcnt,0,null
+	rtn zero
+right_shift_n_loop: 
+	rshift pdata,pdata
+	loop right_shift_n_loop
+	rtn
+	
+push_stack:
+	deposit contw
+	store 2, mem_contw
+	storet 8,mem_temp
+	deposit timeup
+	store 4,mem_timeup
+	deposit rega
+	store 4, mem_rega
+	deposit regb
+	store 4, mem_regb
+	deposit regc
+	store 3, mem_regc
+	deposit contr
+	store 2, mem_contr
+	rtn
+pop_stack:
+	fetcht 8,mem_temp
+	fetch 4,mem_timeup
+	iforce timeup
+	fetch 4, mem_rega
+	iforce rega
+	fetch 4, mem_regb
+	iforce regb
+	fetch 3,mem_regc
+	iforce regc
+	fetch 2, mem_contw
+	iforce contw
+	fetch 2, mem_contr
+	iforce contr
+	rtn
+	
+get_contw:
+	fetch 2,mem_contw
+	copy pdata,contw
+	rtn
+get_contr:
+	fetch 2,mem_contr
+	copy pdata,contr
+	rtn
+store_contw:
+	copy contw,pdata
+	store 2,mem_contw
+	rtn
+store_contr:
+	copy contr,pdata
+	store 2,mem_contr
+	rtn	
+	
+
+//
+save_cont_pointers:
+	copy contw,pdata
+	store 2,mem_hold_contw
+	copy contr,pdata
+	store 2,mem_hold_contr
+	rtn
+load_cont_pointers:
+	fetch 2,mem_hold_contw
+	copy pdata,contw
+	fetch 2,mem_hold_contr
+	copy pdata,contr
+	rtn
+
+memcpy96:
+	call memcpy32
+memcpy64:
+	call memcpy32
+	branch memcpy32
+memcpy12:
+	call memcpy8
+memcpy4:
+	ifetch 4,contr
+	istore 4,contw
+	rtn	
+memcpy8:
+	ifetch 8,contr
+	istore 8,contw
+	rtn	
+
+memcpy48:
+	call memcpy16
+memcpy32:
+	call memcpy8
+memcpy24:
+	call memcpy8
+memcpy16:
+	call memcpy8
+	branch memcpy8
+
+
+
+delay_10ms:
+	copy clkn_bt,pdata
+	increase 16,pdata
+	increase 16,pdata
+delay_ms_wait:
+	copy clkn_bt,temp
+	isub temp,null
+	branch delay_ms_wait,positive
+	rtn
+
+bn_zero:
+	force 3,loopcnt
+memset0:
+	force 0,pdata
+memset8:
+	istore   8,contw
+	loop   memset8
+	rtn
+
+memset0_8:
+	force 0,pdata
+	istore 8,contw
+	rtn
+memset0_4:
+	force 0,pdata
+	istore 4,contw
+	rtn	
+	
+clear_mem_256:
+	force 4,loopcnt
+	branch memset0 
+clear_mem_512:
+	force 8,loopcnt
+	branch memset0 
+
+clear_mem:
+	deposit loopcnt
+	rtn blank
+	setarg 0
+clear_mem_loop:
+	istore 1,contw
+	loop clear_mem_loop
+	rtn
+	
+
+clear_temp_block:
+	arg 32,loopcnt
+	arg mem_temp_block0,contw
+	branch clear_mem
+	
+xor_loop:
+	ifetch   4,regc
+	ifetcht 4,rega
+	ixor     temp,pdata
+	istore   4,contw	
+	increase 4,rega
+	increase 4,regc
+	loop  xor_loop
+	rtn
+	
+// 11 22 -> 22 11; 11 22 33 -> 33 22 11 
+// rega:data addr ;loopnct:length
+inverse_data:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_2,mem_patch3f
+	copy loopcnt,pdata
+	sub pdata,1,null
+	rtn positive
+	iadd rega,regb	
+	increase -1,regb
+	rshift loopcnt,loopcnt
+inverse_loop:
+	ifetcht 1,rega
+	ifetch 1,regb
+	istore 1,rega
+	istoret 1,regb
+	increase -1,regb
+	increase 1,rega
+	loop inverse_loop
+	rtn
+
+
+memcpy_fast:
+	deposit loopcnt
+	rtn blank
+memcpy_fast_loop:
+	increase -8,loopcnt
+	call memcpy8,positive
+	rtn zero
+	branch memcpy_fast_loop,positive
+	increase 8,loopcnt
+memcpy_fast_loop_four:
+	increase -4,loopcnt
+	call memcpy4,positive
+	rtn zero
+	branch memcpy_fast_loop_four,positive
+	increase 4,loopcnt
+	branch memcpy
+ 
+memcpy:
+	deposit loopcnt
+	rtn blank
+memcpy_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop memcpy_loop
+	rtn
+
+timer_stop:
+	setarg 0
+timer_init:
+	rshift clkn_bt,temp
+	storet 4,mem_last_clkn
+	arg mem_timers,contw
+	iforce temp
+	lshift queue,pdata
+	iadd contw,contw
+	istoret 2,contw
+	set1 mark_ext_patch,mark
+	bpatch patch3f_3,mem_patch3f
+	rtn
+
+timer_check_timeout:
+	arg 0x800,timeup
+	lshift16 timeup,timeup
+	iadd timeup,pdata
+	rtn
+
+
+timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_4,mem_patch3f
+	fetcht 4,mem_last_clkn
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn	
+	isub temp,null
+	ncall timer_check_timeout,positive	
+	isub temp,timeup
+	copy timeup,temp
+	arg mem_timers,contr
+	copy contr,contw
+	arg 16,loopcnt
+timer_loop:
+	ifetch 2,contr
+	isub temp,pdata
+	branch timer_counting,positive
+	force 0,pdata
+timer_counting:
+	istore 2,contw
+	loop timer_loop	
+	arg mem_timers,contr
+	lshift queue,pdata
+	iadd contr,contr
+	ifetch 2,contr
+	rtn
+
+
+
+	/* pdata 28+16 bit add temp 26+16 bit, result in temp */
+clk_add:
+	iadd temp,temp
+	copy temp, loopcnt
+	setarg 3750
+	isub loopcnt,pdata
+	rtn positive
+	sub pdata,0,pdata
+	rshift16 temp,temp
+	increase 1,temp
+	lshift16 temp,temp
+	ior temp,temp
+	rtn
+
+clk_diff_rt:
+	call clk_diff
+	branch clk2rt
+
+/* pdata -temp -> pdata, all are 28+16 bits, set user if negative */
+clk_diff:
+	disable user
+	isub temp,pdata
+	branch clk_diff_pos,positive
+	enable user
+	sub pdata,0,pdata
+clk_diff_pos:
+	rtnbit0 15
+	arg -61786,temp
+	iadd temp,pdata
+	set0 64,pdata
+	rtn
+
+clk2rt:
+	iforce contr
+	rshift16 pdata,pdata
+	arg 3750,temp
+	imul32 temp,pdata
+	iadd contr,pdata
+	rtn
+
+	/* pdata = clks in, temp = lpo out */
+clk2lpo:
+	lshift8 pdata,pdata
+	lshift4 pdata,pdata
+	fetcht 3,mem_clks_per_lpo
+	idiv temp
+	call wait_div_end
+	quotient temp
+	rtn
+
+	/* rt clk -> bt+rt clk */
+clk2bt:
+	arg 3750,temp
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	lshift16 pdata,pdata
+	remainder temp
+	ior temp,temp
+	rtn
+
+
+
+//input:contru 
+//output:temp
+//used register: temp regc
+string2dec_from_uart:
+	arg 0,temp
+string2dec_from_uart_done:
+         copy temp,regc
+	ifetch 1,contru
+	call uchar2dialog	
+	copy regc,temp
+	call swap
+	arg 10,regb
+	imul32 regb,pdata
+	iadd temp,pdata
+	copy pdata,temp
+	loop string2dec_from_uart_done
+	rtn
+	
+
+
+uchar2dialog:
+	arg 0x3a,temp
+	isub temp,null
+	nbranch uchar2dialog_number,positive
+	arg 0x61,temp
+	isub temp,null
+	branch uchar2dialog_a2f,positive
+	arg 0x37,temp
+	isub temp,pdata
+	rtn
+uchar2dialog_number:
+	arg 0x30,temp
+	isub temp,pdata
+	rtn
+uchar2dialog_a2f:
+	arg 0x57,temp
+	isub temp,pdata
+	rtn
+
+pn9:
+	copy temp,alarm
+	setarg 0x1ff
+	force 0,regb
+pn9_loop:	
+	rshift3 pdata,rega
+	rshift rega,rega
+	ixor rega,rega
+	isolate1 0,rega
+	setflag true,9,pdata
+	rshift temp,temp
+	isolate1 0,pdata
+	setflag true,7,temp
+	rshift pdata,pdata
+	increase 1,regb
+	compare 0,regb,0x7
+	nbranch pn9_loop,true
+	istoret 1,contw
+	loop pn9_loop
+	copy alarm,temp
+	rtn
+
+
+wait_div_end:	
+	rtn modone
+	branch wait_div_end
+
+
+
+
+//input:
+//	count:loopcnt str1:rega str2:regb
+//output:
+//	same:set falg true ,diff set falg false
+// using:
+//	reg:temp null flag:zero
+string_compare:
+	ifetch 1,rega
+	ifetcht 1,regb
+	isub temp,null
+	nrtn zero
+	increase 1,rega
+	increase 1,regb
+	loop string_compare
+	force 0,null
+	rtn
+
+	/* pdata = temp if pdata > temp */
+ceiling:
+	isub temp,null
+	nrtn positive
+	deposit temp
+	rtn
+	
+swap:
+	iadd temp,pdata
+	isub temp,temp
+	isub temp,pdata
+	rtn
+
+clean_mem:
+	arg 0x200,loopcnt
+	arg 0x4000,contw
+	branch memset0				// clear xram at boot
+/*
+slave_savelist:
+	fetch 5,mem_sync_clke
+	store 5,mem_pdatatemp
+	fetch 2,mem_clks_per_lpo
+	istore 2,contw
+	setarg 0
+	setflag match,7,pdata
+	setflag wake,6,pdata
+	setflag sync,5,pdata
+	setflag attempt,4,pdata
+	istore 1,contw
+	branch savelist_2
+
+
+le_savelist:
+	fetch 5,mem_sync_clke
+	store 5,mem_pdatatemp
+	fetch 1,mem_le_ch_mapped
+	istore 1,contw
+	fetch 2,mem_le_event_count
+	arg 0x0fff,contr
+	iand contr,pdata
+	setflag match,15,pdata
+	setflag wake,14,pdata
+	setflag sync,13,pdata
+	setflag attempt,12,pdata
+	istore 2,contw
+	branch savelist_2
+savelist:		
+	store 8,mem_pdatatemp
+savelist_2:
+	fetch 1,mem_seqi
+	rtneq 0x7f
+	and_into 0x7f,pdata
+	lshift3 pdata,pdata
+	arg mem_savelist,contw
+	iadd contw,contw
+	fetch 8,mem_pdatatemp
+	istore 8,contw
+	fetch 1,mem_seqi
+	isolate1 7,pdata
+	increase 1,pdata
+	and_into 0x7f,pdata
+	setflag true,7,pdata
+	store 1,mem_seqi
+	fetch 8,mem_pdatatemp
+	rtn	
+*/
+
+	//cb function ptr in pdata
+callback_func:
+	rtn blank
+	copy pdata,pc	//rtn through cb functon.
+	//branch assert
+
+wait_uarttx:
+	hfetch 2,core_uart_txitems
+	nbranch wait_uarttx,blank
+	rtn
+
+get_uart_rrptr:
+	hfetch 2,core_uart_rrptr
+	copy pdata,contru
+	rtn 
+
+
+ice_break:
+	hjam 0x1,core_ice_ctrl
+	rtn
+
+ice_setbp:
+	hstore 2,core_ice_break0
+	hfetch 1,core_ice_ctrl
+	set1 4,pdata
+	hstore 1,core_ice_ctrl
+	rtn
+ice_setbp2:
+	hstore 2,core_ice_break1
+	hfetch 1,core_ice_ctrl
+	set1 6,pdata
+	hstore 1,core_ice_ctrl
+	rtn
+	
+ice_set_write_bp:
+	hstore 2,core_ice_break0
+	hjam 0x30,core_ice_ctrl
+	rtn
+	
+
+
+test_enable_white:
+	hfetch 1,core_config
+	set0 whiteoff_bit,pdata
+	hstore 1,core_config			/* whitening on */
+	rtn
+
+check_uart_tx_buff:
+	hfetch 2,core_uart_txitems
+	arg UART_AIR_CONTROL_THRESHOLD,temp
+pdata_sub_temp:
+	isub temp,null
+	rtn
+
+	//fuction fifo_in
+	//rega pointer to fifo memory , *(rega+len) is the end of fifo
+	//mem_fifo_temp data into fifo
+	//assert if fifo was full
+fifo_in:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_5,mem_patch3f
+	ifetcht UTIL_FIFO_LEN,rega
+	and temp,0xff,pdata
+	nbranch fifo_in_push,blank
+	rshift8 temp,pdata
+	istore UTIL_FIFO_LEN,rega
+fifo_in_push:
+	increase UTIL_FIFO_LEN+UTIL_FIFO_OFFSET,rega
+	ifetch 1,rega
+	nbranch assert,blank //fifo full
+	fetch 1,mem_fifo_temp
+	istore 1,rega
+	rtn
+	
+	//fuction fifo_out
+	//rega pointer to fifo memory
+	//pdata  data from fifo, blank mains fifo empty
+fifo_out:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_6,mem_patch3f
+	arg UTIL_FIFO_LEN,loopcnt
+	ifetch UTIL_FIFO_LEN,rega
+	rtn blank
+fifo_out_loop:
+	ifetch 1,rega
+	nbranch fifo_out_end,blank
+	increase 1,rega
+	loop fifo_out_loop
+	branch assert
+fifo_out_end:
+	arg 0,temp
+	istoret 1,rega
+	rtn
+
+	//fuction fifo_is_empty
+	//rega pointer to fifo memory
+	//blank--- fifo is empty
+fifo_is_empty:
+	ifetch UTIL_FIFO_LEN,rega
+	rtn
+
+	//fuction fifo_is_full
+	//rega pointer to fifo memory
+	//blank--- fifo is NOT full
+fifo_is_full:
+	ifetch 1,rega
+	rtn
+	//rega pointer to fifo memory
+	//blank--- fifo is NOT near full
+fifo_is_near_full:
+	ifetch 2,rega
+	rtn
+
+	//rega pointer to fifo memory
+	//count output via pdata
+fifo_content_count:
+	arg 0,temp
+fifo_content_count_loop:
+	fetch 1,contr
+	loop fifo_content_count_loop,blank
+	increase 1,temp
+	loop fifo_content_count_loop
+	copy temp,pdata
+	rtn
+	
+not_greater_than:
+	isub temp,null
+	nrtn positive
+	copy temp,pdata
+	rtn
+
+
Index: Receive_Code/sched/109x.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/109x.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/109x.dat	(working copy)
@@ -0,0 +1,34 @@
+mem_lpm_config:8f 1e ca
+mem_lpm_buckcnt:0a 0b ef 07
+mem_lpm_hibernate_switch:00
+mem_gpio_wakeup_low:00 00 00 00 00 00 00 00
+
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 04
+mem_rx_window_sniff:00 08
+
+
+#mem_lpm_xtalcnt:00 0a 1b ef 07
+
+mem_lmp_version:08 0e 05 03 00
+
+mem_eeprom_base:30 ff
+mem_eeprom_block_size:80
+
+mem_context_number:01
+
+mem_rf_init_data:
+ff
+mem_rf_init_ptr:mem_rf_init_data
+
+
+
Index: Receive_Code/sched/DM_module.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/DM_module.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/DM_module.dat	(working copy)
@@ -0,0 +1,448 @@
+
+mem_device_option:0a
+mem_ui_profile_supported:40
+mem_app_connection_options:13
+
+mem_module_wake_up_gpio:9b
+mem_module_connect_state_gpio:85
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+mem_module_mcu_wake_pin:88 
+mem_module_mcu_wake_delay_us:80 03 00 00 
+
+
+mem_lpm_mode:01
+mem_lpm_mult:04
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:08
+mem_lpm_interval:00 01
+
+mem_features:
+ff
+ff
+8f
+f8      #fe--EDR  F8--BR
+9b      #AFHclose 83
+9d
+59
+83
+
+##############ADC CONFIG##############
+mem_module_read_vdd_count:01
+mem_module_read_vdd_flag:01
+#####################################
+
+##############NVRAM CONFIG##############
+mem_nv_data_ptr:mem_nv_data
+mem_nv_data_number:05
+#####################################
+
+##############SPP CONFIG##############
+mem_credit_flag:00
+mem_rfcomm_max_frame_size:7f 00
+mem_rfcomm_credit_init_data:07
+#####################################
+
+##############SSP CONFIG##############
+mem_sp_iocap_local:03 00 04
+mem_ssp_enable:01
+mem_pin_length:04  30 30 30 30 30
+#####################################
+
+##############UART CONFIG##############
+mem_baud:A0 01
+mem_module_uart_rx_buffer:00 4c
+mem_module_uart_rx_buffer_end:ff 4f
+mem_module_uart_tx_buffer:00 1c
+mem_module_uart_tx_buffer_end:ff 1f
+#####################################
+
+
+
+##############BLUETOOTH CONFIG##############
+###commom###
+mem_soft_version_num:00 01
+mem_module_state:03
+mem_module_bluetooth_stauts_by_command:07
+mem_class:24 04 04
+
+mem_module_flag:00
+#bit0 MODULE_FLAG_UART_FLOW_CONTROL
+#bit1 MODULE_FLAG_BLE_RECEIVED_DATA
+
+###3.0###
+mem_scan_mode:00
+mem_module_spp_lpm_mult:28
+mem_lap:77 1a 21 31 10 3a
+mem_local_name_length:
+'YichipFPGA
+
+###3.0 sinff param###
+mem_sniff_param_interval:20 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:00
+
+
+###ble###
+mem_le_secure_connect_enable:00
+mem_le_pairing_mode:01
+
+mem_module_data_write_handle:2d 00
+mem_module_data_write_handle2:2f 00
+
+mem_le_flag:00
+#bit0 FLAG_BLE_INSUFFICIENT_AUTHENTICATION
+#bit1 FLAG_BLE_COPY_MASTER_DATA_TO_ATT_LIST
+
+#mem_le_keyid:#62746c65
+#656c7462
+
+#mem_p_256:FFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000001000000FFFFFFFF
+
+#mem_a_256:FcFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000001000000FFFFFFFf
+#mem_gx_256:96c298d84539a1f4a033eb2d817d0377f240a463e5e6bcf847422ce1f2d1176b
+#mem_gy_256:f551bf376840b6cbce5e316b5733ce2b169e0f7c4aebe78e9b7f1afee242e34f
+#mem_le_slat:#6C 88 83 91 AA F5 A5 38 60 37 0B DB 5A 60 83 BE  #const
+#BE83605ADB0B376038A5F5AA9183886C
+#mem_le_private_key_256:
+#bd1a3ccda6b8995899b740eb7b60ff4a503f10d2e3b3c974385fc5a3d4f6493f
+
+mem_le_adv_enable:00
+mem_le_adv_interval_max:60 01 
+mem_module_le_lpm_mult:05
+mem_le_lap:7a 31 00 33 02 2a
+mem_le_name_len:
+'YichipFPGAle
+
+mem_le_adv_data_len:03
+mem_le_adv_data:
+02 01 0e
+
+mem_le_scan_data_len:0e
+
+mem_le_scan_data:# 1 byte length + 1 byte type + N bytes data
+'\09YichipFPGAle
+
+mem_le_pres:02 03 00 05 10 02 03
+
+mem_le_interal_min:
+08 00 #min interval
+10 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+
+mem_le_local_mtu:41
+mem_le_remote_mtu:17
+
+mem_le_pairing_handle:2f 00
+
+#####################################
+
+
+mem_eir_enable:01
+mem_all_uuid_16bits: 
+05
+03#Type: Complete list of 16-bit UUIDs
+0012 0001 0100 0111 0300 
+
+mem_all_uuid_128bits:
+00#01
+#07#Type: Complete list of 128-bit UUIDs
+#00000000decafadedecadeafdecacaff
+
+mem_ui_uuid_table:mem_module_uuid_list
+
+mem_module_uuid_list:
+03
+12
+00
+01
+00
+00
+01
+00
+01
+00
+01
+36
+00
+52
+09
+00
+00
+0a
+00
+01
+00
+01
+09
+00
+01
+35
+03
+19
+12
+00
+09
+00
+04
+35
+0d
+35
+06
+19
+01
+00
+09
+00
+01
+35
+03
+19
+00
+01
+09
+00
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09
+02
+00
+09
+01
+03
+09
+02
+01
+09
+05
+ac
+09
+02
+02
+09
+02
+39
+09
+02
+03
+09
+06
+44
+09
+02
+04
+28
+01
+09
+02
+05
+09
+00
+02
+03
+11
+01
+00
+03
+01
+00
+00
+01
+00
+03
+36
+00
+46
+09
+00
+00
+0a
+00
+01
+00
+03
+09
+00
+01
+35
+03
+19
+11
+01
+09
+00
+02
+0a
+00
+00
+00
+00
+09
+00
+04
+35
+0c
+35
+03
+19
+01
+00
+35
+05
+19
+00
+03
+08
+01
+09
+00
+06
+35
+09
+09
+65
+6e
+09
+00
+6a
+09
+01
+00
+09
+01
+00
+25
+0a
+53
+50
+50
+20
+73
+6c
+61
+76
+65
+00
+00
+00
+01
+00
+
+
+mem_ui_le_uuid_table:mem_module_le_att_list
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_module_le_att_list:
+
+#Primary service GAP ------
+01 00  02 00 28 02 00 18
+
+#Device name
+02 00 02 03 28 01 0a
+03 00 02 00 2a 12 41 73 74 20 4c 45 20 4d 6f 75 73 65 20 20 20 20 20 20 
+
+
+#Appearance
+04 00 02 03 28 01 02
+05 00 02 01 2a 02 c8 00 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 02 03 28 01 02
+07 00 02 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+
+#privcy flag
+08 00 02 03 28 01 02
+09 00 02 02 2a 01 01
+
+#reconnecting addr 
+0a 00 02 03 28 01 08
+0b 00 02 03 2a 06 00 00 00 00 00 00
+
+#Primary service GATT ------
+0c 00 02 00 28 02 01 18
+
+#Service changed
+0d 00 02 03 28 01 20
+0e 00 02 05 2a 00
+#Client Characteristic Configuration
+0f 00 02 02 29 02 00 00
+
+#Primary service TX power ------
+10 00 02 00 28 02 04 18
+#Characteristic Tx power level
+11 00 02 03 28 01 16
+12 00 02 07 2a 01 00
+13 00 02 02 29 02 00 00
+
+#Primary service Battery ------
+14 00 02 00 28 02 0f 18
+#Characteristic Battery level
+15 00 02 03 28 01 12
+16 00 02 19 2a 01 38
+
+#Primary service device infomation
+17 00 02 00 28 02 0a 18
+#Characteristic system id
+18 00 02 03 28 01 02
+19 00 02 23 2a 03 00 00 00
+
+#Characteristic manufactor name
+1a 00 02 03 28 01 02
+1b 00 02 29 2a 08 46 6c 61 67 74 72 69 70
+
+#Characteristic module number
+1c 00 02 03 28 01 02
+1d 00 02 24 2a 06 79 69 63 68 69 70
+
+#Characteristic serial number
+1e 00 02 03 28 01 02
+1f 00 02 25 2a 04 63 6f 6d 33
+
+#Characteristic firmware version
+20 00 02 03 28 01 02
+21 00 02 26 2a 03 31 2e 30
+
+#Characteristic software version
+22 00 02 03 28 01 02
+23 00 02 28 2a 03 31 2e 30
+
+#Characteristic hardware version
+24 00 02 03 28 01 02
+25 00 02 2a 2a 03 31 2e 30
+
+#Characteristic regulatory version
+26 00 02 03 28 01 02
+27 00 02 25 2a 04 63 6f 6d 33
+
+#Primary service yichip transmit ------
+28 00 02 00 28 10 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff 00
+#Characteristic tx--notify
+29 00 02 03 28 01 10
+2a 00 02 11 ff 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#Client Characteristic Configuration
+2b 00 02 02 29 02 00 00
+
+#Characteristic rx--write
+2c 00 02 03 28 01 04
+2d 00 10 ff 22 33 44 55 66 77 88 99 aa bb cc dd ee ff ff 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+
+2e 00 02 03 28 01 0a
+2f 00 02 11 dd 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+
+
+#End of Attribute list
+00 00
+
+
Index: Receive_Code/sched/fpga.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/fpga.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/fpga.dat	(working copy)
@@ -0,0 +1,36 @@
+
+
+
+#4010:c0
+#4011:0f
+#4022:80
+#4023:02
+
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 04
+mem_rx_window_sniff:00 08
+
+
+mem_lpm_xtalcnt:00 0a 1b ef 07
+
+mem_lmp_version:08 0e 05 03 00
+
+mem_eeprom_base:30 ff
+mem_eeprom_block_size:80
+
+mem_context_number:01
+
+mem_rf_init_data:
+ff
+mem_rf_init_ptr:mem_rf_init_data
+
+
Index: Receive_Code/sched/gatt.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/gatt.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/gatt.dat	(working copy)
@@ -0,0 +1,88 @@
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_le_att_list:
+
+#Primary service GAP ------
+01 00 00 28 02 00 18
+
+#Device name
+02 00 03 28 01 0a
+03 00 00 2a 0c 41 73 74 20 4c 45 20 4d 6f 75 73 65
+
+#Appearance
+04 00 03 28 01 02
+05 00 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 01 02
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 00 28 02 01 18
+
+#Service changed
+09 00 03 28 01 20
+0a 00 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 29 02 00 00
+
+#Primary service TX power ------
+0c 00 00 28 02 04 18
+#Characteristic Tx power level
+0d 00 03 28 01 06
+0e 00 07 2a 01 00
+
+
+#Primary service Battery ------
+0f 00 00 28 02 0f 18
+#Characteristic Battery level
+10 00 03 28 01 12
+11 00 19 2a 01 38
+
+#Primary service yichip transmit ------
+12 00 00 28 02 f0 18
+#Characteristic tx--notify
+13 00 03 28 01 12
+14 00 f1 2a 14	# for Android device, ATT MTU is just 23 bytes, so payload is 20 bytes max
+'Test read initial va
+#Client Characteristic Configuration
+15 00 02 29 02 00 00
+#Characteristic rx--write
+16 00 03 28 01 0c
+17 00 f0 2a 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+
+#End of Attribute list
+00 00
+
+mem_le_adv_enable:01
+mem_le_adv_data_len:03
+
+mem_le_adv_data:02 01 05
+#flags NOTE: should be included here, or Android will not do connectgatt()
+
+
+mem_le_scan_data_len:17
+
+mem_le_scan_data:	# 1 byte length + 1 byte type + N bytes data
+
+#complete local name
+0e 09 
+#'Ast LE2Serial
+'YiChip BLE2IR
+
+#16bit uuid
+03 03 00 f0
+
+#Apperance
+03 19 40 02
+
+
+mem_le_adv_interval_min:00 08
+mem_le_adv_interval_max:00 08 
+mem_le_adv_direct_addr_type:01
+mem_le_adv_channel_map:07 
+mem_le_adv_led:0a
+
+mem_lap:77 11 00 33 00 00
+
Index: Receive_Code/sched/hci.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/hci.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/hci.dat	(working copy)
@@ -0,0 +1,8 @@
+#device parameters
+mem_lap:88 11 00 33 00 00
+mem_local_name_length:09
+mem_local_name:'Bluetooth
+mem_device_option:01
+mem_ssp_enable:01
+mem_lpm_mode:01
+mem_3v_adc_data:00 00
\ No newline at end of file
Index: Receive_Code/sched/hci_boot.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/hci_boot.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/hci_boot.dat	(working copy)
@@ -0,0 +1,11 @@
+
+mem_patch00:01
+mem_lpm_config:8f 10 ca
+mem_le_att_list+485:
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:mem_le_att_list+485
+
Index: Receive_Code/sched/kb.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/kb.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/kb.dat	(working copy)
@@ -0,0 +1,388 @@
+mem_class: 40 25
+mem_ui_button_gpio:1f
+mem_ui_button_timeout:03
+mem_discovery_timeout:b8 0b 
+mem_led_gpio:1e
+mem_led_cap_gpio:1d
+mem_led_num_gpio:1d
+mem_led_scl_gpio:1d
+mem_led_light_time:90 01
+mem_led_dark_time:90 01
+
+mem_lap:26 01 23 01 23 01        
+mem_local_name_length:0a
+mem_local_name:
+'YiCHiP kb1
+
+mem_app_connection_options:17
+
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:08
+mem_lpm_interval:00 02
+
+
+mem_lpm_mode:00
+mem_lpm_mult:00#02
+mem_sniff_param_interval:12 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:01
+mem_sp_iocap_local:03 00 04
+
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+0011 0100 1002 1124  1200  0001
+
+mem_all_uuid_128bits:00
+
+mem_ui_uuid_table:mem_keyboard_uuid_list
+#keyboard uuid
+mem_keyboard_uuid_list:
+#uuids
+04 0011 0100 1002 1124
+
+#handle
+00010000
+
+#total length
+3601aa
+
+#attribute start, first 4 digit is attribute ID
+090000 0a 00010000
+090001 3503 191124
+090004 350d 3506 190100 090011 3503 190011
+090005 3503 191002
+090006 3509 09656e 09006a 090100
+090009 3508 3506 191124 090100
+09000d 350f 350d 3506 190100 090013 3503 190011
+
+#Service Name
+#090100 2517
+#'Apple Wireless Keyboard
+#41 70 70 6c 65 20 57 69 72 65 6c 65 73 73 20 4b 65 79 62 6f 61 72 64
+#Service Name
+090100 253d
+#'Broadcom Bluetooth Wireless  Keyboard                        
+4272 6f61 6463 6f6d 2042 6c75 6574 6f6f 7468 2057 6972 656c 6573 7320 204b 6579 626f 6172 6420 
+2020 2020 2020 2020 2020 2020 2020 2020 2020 2020 2020 20
+
+#Service Description
+090101 2508
+#'Keyboard
+4b6579626f617264
+
+#Provider Name
+#090102 250a
+#'Apple Inc.
+#41 70 70 6c 65 20 49 6e 63 2e
+#Provider Name
+090102 2510
+#'Broadcom Corp.  
+4272 6f61 6463 6f6d 2043 6f72 702e 2020
+
+090200 090100
+090201 090111
+090202 0840
+090203 0821
+090204 2801
+090205 2801
+090206 3599 3597 0822 2593
+
+# hid descriptor
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8501 # Report ID(1)
+7501 # Report Size(1)
+9508 # Report Count(8)
+0507 # Usage Page(Keyboard/Keypad)
+19e0 # Usage Minimum(224)
+29e7 # Usage Maximum(231)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+9501 # Report Count(1)
+7508 # Report Size(8)
+8103 # Input(Constant Variable Absolute) ; 
+9505 # Report Count(5)
+7501 # Report Size(1)
+0508 # Usage Page(LEDs)
+1901 # Usage Minimum(1)
+2905 # Usage Maximum(5)
+9102 # Output(Data Variable Absolute) ; LED report
+9501 # Report Count(1)
+7503 # Report Size(3)
+9103 # Output(Constant Variable Absolute) ; 
+9506 # Report Count(6)
+7508 # Report Size(8)
+1500 # Logical Minimum(0)
+26ff00 # Logical Maximum(255)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(0)
+29ff # Usage Maximum(255)
+8100 # Input(Data Array) ; Key arrarys 6 bytes
+c0 # End Collection
+
+050c # Usage Page(Consumer)
+0901 # Usage(Control)
+a101 # Collection(Application)
+8502 # Report ID(2)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+7501 # Report Size(1)
+9516 # Report Count(22)
+0ab101 # Usage(433)
+0a2302 # Usage(AC Home)					#01 home
+0aae01 # Usage(virtual keyboard)                        #02
+0a8a01 # Usage(AL Email Reader)                      #03
+0940 # Usage(Menu)						#04 menu
+096f # Usage(Lignt Down)					#05
+0a2102 # Usage(AC Search) 					#06
+09b6 # Usage(Scan Previous Track) 			#07 previous music
+09cd # Usage(205)						#08 start music
+09b5 # Usage(Scan Next Track)				#09 next music
+09e2 # Usage(Mute)						#0a
+09ea # Usage(Volume Down)					#0b
+09e9 # Usage(Volume Up)					#0c
+0930 # Usage(Power)                                         #0d
+0a8301 # Usage(music)                                      #0e
+0a0503 # Usage(773)
+0a0703 # Usage(775)
+0a0803 # Usage(776)
+0a0103 # Usage(769)
+0a9e01 # Usage(AL Terminal Lock/Screensaver)	#13
+0a0a03 # Usage(778)
+#0a0b03 # Usage(779)
+0970 # Usage(Lignt Up)						#15
+8102 # Input(Data Variable Absolute)
+9501 # Report Count(1)
+7502 # Report Size(2)
+8103 # Input(Constant Variable Absolute)
+c0 # End Collection
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 090c80
+09020d 2800
+09020e 2801
+09020f 090318
+090210 090000
+#attribute end
+
+#uuids for pnpInformation	
+03 1002 1200 0001
+
+#handle
+00010001
+
+#total length 90 bytes
+3600a1
+
+#attribute list
+090000 0a00010001
+090001 3503 191200
+090004 350d 3506 190100 090001 3503 190001
+090006 3509 09656e 09006a 090100
+090009 3508 3506 191200 090100
+090100 252f42726f6164636f6d20426c7565746f6f746820576972656c657373204b6579626f61726420506e5020536572766572
+090101 25084b6579626f617264
+090200
+090103
+
+090201# VendorID
+090a5c #  befor 05ac  //and 20730 same 2017-7-26
+
+090202#ProductID
+090220
+
+090203
+090001
+090204 
+2801
+090205
+090002
+
+#attribute end
+00
+fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+
+mem_kb_map:
+14 # 00 q
+2b # 01 tab
+04 # 02 a
+29 # 03 esc
+1d # 04 z
+00
+35 # 06 `
+1e # 07 1
+1a # 08 w
+39 # 09 caps
+16 # 0a s
+00
+1b # 0c x
+00
+3a # 0e f1
+1f # 0f 2
+08 # 10 e
+3c # 11 f3
+07 # 12 d
+3d # 13 f4
+06 # 14 c
+63 # 15 .
+3b # 16 f2
+20 # 17 3
+15 # 18 r
+17 # 19 t
+09 # 1a f
+0a # 1b g
+19 # 1c v
+05 # 1d b
+22 # 1e 5
+21 # 1f 4
+18 # 20 u
+1c # 21 y
+0d # 22 j
+0b # 23 h
+10 # 24 m
+11 # 25 n
+23 # 26 6
+24 # 27 7
+0c # 28 i
+30 # 29 ]
+0e # 2a k
+3f # 2b f6
+36 # 2c ,
+00
+2e # 2e =
+25 # 2f 8
+12 #30 o
+40 #31  f7
+0f  #32 l
+00 #33
+37 #34 .
+00 #35
+41 #36 f8
+26 #37 9
+00 #38
+00 #39
+00 #3a
+2c #3b space
+44 #3c f11
+51 #3d down
+4c #3e delete
+00 #3f
+00  # 40 
+81  # 41 lshift
+85 # 42 rshift
+00
+00 # 44 
+00
+00 # 46 
+00 # 47  
+00 #48	
+2a #49 bksp
+31 #4a \
+00 # 4b 
+28 # 4c enter
+00 # 4d 
+42 # 4e  f9
+43 #4f f10
+13  #50 p
+2f  # 51 [
+33 # 52 ;
+34 #53 '
+00 #54  
+38 #55 /
+2d #56 
+27 #57 0
+00 #58
+00 # 59 
+80 # 5a  lctrl
+83 #5b lwin
+00 # 5c  
+87 #5d rwin
+00 # 5e 
+45 # 5f  f12
+00 # 60 
+00 # 61 
+00 # 62 
+00 # 63 
+86 # 64 ralt
+00 # 65 
+00 # 66  
+3e # 67  f5
+00 # 68
+82 # 69 lalt
+00 # 6a  
+00 # 6b  
+00
+00  #6d  
+00
+00 # 6f  
+00
+00
+00
+00
+00 # 74  
+00 # 75 
+00 # 76
+00 # 77  
+00 # 78
+00 # 79  
+00 # 7a
+00 # 7b
+00 # 7c
+4f # 7d right
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+52  # 8b up
+00 # 8c
+50 # 8d  left
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00 # 9b 
+00
+00 # 9d 
+
+#Auto reconnection after power on
+mem_device_option:80
+
+mem_kb_fast_wake_last:ff 00 00 00
+mem_ptt:0
+mem_features:
+ff
+ff
+8f
+f8	#fe--EDR  F8--BR
+9b	#AFHclose 83
+9d
+59
+83
+
Index: Receive_Code/sched/le_kb.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/le_kb.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/le_kb.dat	(working copy)
@@ -0,0 +1,336 @@
+
+mem_ui_le_uuid_table:mem_keyboard_le_att_list
+
+#attribute list: handle 2bytes  uuid 2bytes  length 1bytes  attribute Nbytes
+mem_keyboard_le_att_list:
+
+#Primary service GAP ------
+01 00 00 28 02 00 18 
+
+#Device name
+02 00 03 28 01 0a
+03 00 00 2a 0c
+'Ast LE Keybd
+
+#Appearance
+04 00 03 28 01 02
+05 00 01 2a 02 c1 03 #3c1=hid keyboard
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 01 02
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms  latency 100  timeout 300
+
+#Primary service GATT ------
+08 00 00 28 02 01 18
+
+#Service changed
+09 00 03 28 01 20
+0a 00 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 29 02 00 00
+
+#Primary service device information ------
+0c 00 00 28 02 0a 18
+
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70
+
+#PNP id
+#0f 00 03 28 01 02
+#10 00 50 2a 07 02 35 12 22 aa 01 00
+
+#Primary service battery ------
+11 00 00 28 02 0f 18
+
+#Battery level
+12 00 03 28 01 02
+13 00 19 2a 01 33
+
+#Client Characteristic
+14 00 02 29 02 00 00
+
+#Primary service hid ------
+15 00 00 28 02 12 18
+
+#Protocol mode
+16 00 03 28 01 06
+17 00 4e 2a 01 01
+
+#Hid report
+18 00 03 28 01 1a
+19 00 4d 2a 08 00 00 00 00 00 00 00 00
+
+#Client Characteristic
+1a 00 02 29 02 01 00
+
+#Report reference
+1b 00 08 29 02 02 01 # report id=2, type=1 input
+
+#Report map
+2c 00 03 28 01 0a
+2d 00 4b 2a 43 # length 65 bytes
+05 01 # Usage Page (Generic Desktop) 
+09 06 # Usage (Keyboard) 
+a1 01 # Collection (Application) 
+85 02 #Report ID(1)
+05 07 # Usage Page(Key Codes) 
+19 e0 # Usage Minimum (224) 
+29 e7 # Usage Maximun (231) 
+15 00 # Logical Minimum (0) 
+25 01 # Logical  Maximun (1) 
+75 01 # Report Size (1) 
+95 08 # Report Count (8) 
+81 02 # Input (Data  Variable  Absolute);Modifier byte
+95 01 # Report Count (1) 
+75 08 # Report Size (8) 
+81 01 # Input (Constant);Reserved byte
+95 03 # Report Count (3) 
+75 01 # Report Size (1) 
+05 08 # Usage Page (For LED) 
+19 01 # Usage Minimum (01) 
+29 03 # Usage Maximun (03) 
+91 02 # Output(Data  Variable  Absolute);LED Report
+95 01 # Report Count (1) 
+75 05 # Report Size (5) 
+91 01 # Output(Constant);LED report padding
+95 06 # Report Count (6) 
+75 08 # Report Size (8)  
+15 00 # Logical Minimum (0) 
+26 ff 00 # Logical Maximum (65536) 
+05 07 # Usage Page(Key Codes) 
+19 00 # Usage Minimum (0) 
+2a ff 00 # Usage Maximun (65536) 
+81 00 # Input (Data Array);Key arrays(6 Bytes)
+c0    # End Collection 
+
+#Boot mouse input report
+2e 00 03 28 01 1a
+2f 00 33 2a 08 00 00 00 00 00 00 00 00
+
+#Client Characteristic
+30 00 02 29 02 00 00
+
+#Hid information
+31 00 03 28 01 02
+32 00 4a 2a 04 01 01 00 03
+
+#Hid control point
+33 00 03 28 01 04
+34 00 4c 2a 00
+
+#End of Attribute list
+00 00
+
+mem_kb_map:
+14 # 00 q
+2b # 01 tab
+04 # 02 a
+29 # 03 esc
+1d # 04 z
+00
+35 # 06 `
+1e # 07 1
+1a # 08 w
+39 # 09 caps
+16 # 0a s
+00
+1b # 0c x
+00
+3a # 0e f1
+1f # 0f 2
+08 # 10 e
+3c # 11 f3
+07 # 12 d
+3d # 13 f4
+06 # 14 c
+63 # 15 .
+3b # 16 f2
+20 # 17 3
+15 # 18 r
+17 # 19 t
+09 # 1a f
+0a # 1b g
+19 # 1c v
+05 # 1d b
+22 # 1e 5
+21 # 1f 4
+18 # 20 u
+1c # 21 y
+0d # 22 j
+0b # 23 h
+10 # 24 m
+11 # 25 n
+23 # 26 6
+24 # 27 7
+0c # 28 i
+30 # 29 ]
+0e # 2a k
+3f # 2b f6
+36 # 2c ,
+00
+2e # 2e =
+25 # 2f 8
+12 #30 o
+40 #31  f7
+0f  #32 l
+00 #33
+37 #34 .
+00 #35
+41 #36 f8
+26 #37 9
+00 #38
+00 #39
+00 #3a
+2c #3b space
+44 #3c f11
+51 #3d down
+4c #3e delete
+00 #3f
+00  # 40 
+81  # 41 lshift
+85 # 42 rshift
+00
+00 # 44 
+00
+00 # 46 
+00 # 47  
+00 #48	
+2a #49 bksp
+31 #4a \
+00 # 4b 
+28 # 4c enter
+00 # 4d 
+42 # 4e  f9
+43 #4f f10
+13  #50 p
+2f  # 51 [
+33 # 52 ;
+34 #53 '
+00 #54  
+38 #55 /
+2d #56 
+27 #57 0
+00 #58
+00 # 59 
+80 # 5a  lctrl
+83 #5b lwin
+00 # 5c  
+87 #5d rwin
+00 # 5e 
+45 # 5f  f12
+00 # 60 
+00 # 61 
+00 # 62 
+00 # 63 
+86 # 64 ralt
+00 # 65 
+00 # 66  
+3e # 67  f5
+00 # 68
+82 # 69 lalt
+00 # 6a  
+00 # 6b  
+00
+00  #6d  
+00
+00 # 6f  
+00
+00
+00
+00
+00 # 74  
+00 # 75 
+00 # 76
+00 # 77  
+00 # 78
+00 # 79  
+00 # 7a
+00 # 7b
+00 # 7c
+4f # 7d right
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+52  # 8b up
+00 # 8c
+50 # 8d  left
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00 # 9b 
+00
+00 # 9d 
+
+#Auto reconnection after power on
+
+mem_le_adv_data_len:19
+mem_le_adv_data:0d 09 
+'Ast LE Keybd
+03 19 c1 03 02 01 05 03 03 12 18
+mem_le_scan_data_len:00
+
+
+mem_le_interal_min:
+08 00 #min interval
+10 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+
+mem_le_adv_interval_min:20 00 
+mem_le_adv_interval_max:20 00 
+mem_le_adv_type:00 
+mem_le_adv_own_addr_type:00
+mem_le_adv_direct_addr_type:00
+mem_le_adv_direct_addr:00 00 00 00 00 00 
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+
+mem_le_lap:11 00 11 00 e1 ed
+
+mem_fcomp_mul:02
+mem_fcomp_div:24
+
+#2=mouse 4=dongle 6=ukey 7=ir
+mem_device_option:0c
+mem_lpm_mode:38
+#mem_lpm_ctrl:0f 0f 10 06
+#mem_lpm_xtalcnt:0c 10 ca 1f
+
+mem_le_adv_enable:01
+mem_le_notify_handle:19
+
+mem_led_gpio:9e
+mem_led_cap_gpio:9c
+mem_led_num_gpio:9c
+mem_led_scl_gpio:9c
+
+mem_led_light_time:90 01
+mem_led_dark_time:90 01
+mem_le_led_on_time:58 02
+
+mem_ui_button_gpio:1f
+mem_ui_button_timeout:28
+mem_kb_fast_wake_last:ff 00 00 00
\ No newline at end of file
Index: Receive_Code/sched/le_mouse.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/le_mouse.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/le_mouse.dat	(working copy)
@@ -0,0 +1,248 @@
+
+mem_ui_le_uuid_table:mem_mouse_le_att_list
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_mouse_le_att_list:
+
+#Primary service GAP ------
+01 00 02 00 28 02 00 18 
+
+#Device name
+02 00 02 03 28 01 0a
+03 00 02 00 2a 05 31 32 33 34 35       
+
+#Appearance
+04 00 02 03 28 01 02
+05 00 02 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 02 03 28 01 02
+07 00 02 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 02 00 28 02 01 18
+
+#Service changed
+09 00 02 03 28 01 20
+0a 00 02 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 02 29 02 00 00
+
+#Primary service device information ------
+0c 00 02 00 28 02 0a 18
+
+#Manufacturer Name
+0d 00 02 03 28 01 02
+0e 00 02 29 2a 06 59 69 43 68 69 70
+
+#PNP id
+0f 00 02 03 28 01 02
+10 00 02 50 2a 07 02 35 12 22 aa 01 00
+
+#Primary service battery ------
+11 00 02 00 28 02 0f 18
+
+#Battery level
+12 00 02 03 28 01 02
+13 00 02 19 2a 01 33
+
+#Client Characteristic
+14 00 02 02 29 02 00 00
+
+#Primary service hid ------
+15 00 02 00 28 02 12 18
+
+#Protocol mode
+16 00 02 03 28 01 06
+17 00 02 4e 2a 01 01
+
+#Hid report
+18 00 02 03 28 01 1a
+19 00 02 4d 2a 07 00 00 00 00 00 00 00
+
+#Client Characteristic
+1a 00 02 02 29 02 00 00
+
+#Report reference
+1b 00 02 08 29 02 01 01 # report id=1, type=1 input
+
+#Report map
+1c 00 02 03 28 01 0a
+1d 00 02 4b 2a 45 # length 72 bytes
+
+05 01 # Usage Page(Generic Desktop)
+09 02 # Usage(Mouse)
+a1 01 # Collection(Application)
+85 01 # Report ID(1)
+09 01 # Usage(Pointer)
+a1 00 # Collection(Physical)
+05 09 # Usage Page(Buttons)
+19 01 # Usage Minimum(1)
+29 08 # Usage Maximum(8)
+15 00 # Logical Minimum(0).
+25 01 # Logical Maximum(1)
+75 01 # Report Size(1)
+95 08 # Report Count(8)
+81 02 # Input(Data Variable Absolute)
+
+05 01 # Usage Page(Generic Desktop)
+09 30 # Usage(X)
+09 31 # Usage(Y)
+16 01 f8 # Logical Minimum(-2047)
+26 ff 07 # Logical Maximum(2047)
+75 10 # Report Size(16)
+95 02 # Report Count(2)
+81 06 # Input(Data Variable Relative)
+
+09 38 # Usage(Wheel)
+15 81 # Logical Minimum(-127)
+25 7f # Logical Maximum(127)
+75 08 # Report Size(8)
+95 01 # Report Count(1)
+81 06 # Input(Data Variable Relative)
+05 0c # Usage Page(Consumer)
+0a 38 02 # Usage(AC Pan)
+95 01 # Report Count(1)
+81 06 # Input(Data Variable Relative)
+c0 # End Collection
+c0 # End Collection
+
+#Boot mouse input report
+1e 00 02 03 28 01 1a
+1f 00 02 33 2a 08 00 00 00 00 00 00 00 00
+
+#Client Characteristic
+20 00 02 02 29 02 00 00
+
+#Hid information
+21 00 02 03 28 01 02
+22 00 02 4a 2a 04 01 01 00 03
+
+#Hid control point
+23 00 02 03 28 01 04
+24 00 02 4c 2a 00
+
+#End of Attribute list
+00 00
+
+mem_le_adv_data_len:1f
+
+mem_le_adv_data:
+
+#name
+'\09Ast LE Mouse
+
+#appearance
+03 19 c2 03
+
+#flag 
+02 01 05
+
+#uuid
+03 03 12 18
+
+#2.4G indication
+03 ff 12 35
+
+
+
+mem_le_scan_data_len:00
+
+#mem_le_scan_data:# 1 byte length + 1 byte type + N bytes data
+
+#complete local name
+#0d 09 
+#'Ast LE Mouse
+
+#Apperance
+03 19 c2 03
+
+#16bit uuid
+03 03 12 18
+
+
+mem_le_interal_min:
+08 00 #min interval
+10 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+
+mem_le_adv_interval_min:00 08 
+mem_le_adv_interval_max:00 08 
+mem_le_adv_type:00 
+mem_le_adv_own_addr_type:00
+mem_le_adv_direct_addr_type:00
+mem_le_adv_direct_addr:00 00 00 00 00 00 
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+
+mem_le_lap:88 b1 3a 59 e1 e5
+
+mem_le_transmit_window:50
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_le_pairing_handle:1d 00
+mem_le_pairing_mode:01
+
+#2=mouse 4=dongle 6=ukey 7=ir
+mem_lpm_mode:00
+mem_lpm_mult:20
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:06
+mem_lpm_interval:00 02
+mem_le_notify_handle:19
+mem_mouse_le_notify_handle:19
+mem_le_local_mtu:17
+mem_le_remote_mtu:17
+
+# REVB
+#mem_motion_gpio:03
+#mem_lbutton_gpio:03
+#mem_rbutton_gpio:1a
+#mem_mbutton_gpio:19
+#mem_led_gpio:9b
+
+#REVA
+#mem_lbutton_gpio:07
+#mem_rbutton_gpio:0a
+#mem_mbutton_gpio:09
+#mem_gpio_led:8e
+
+#REVC
+mem_lbutton_gpio:03
+mem_rbutton_gpio:04
+mem_mbutton_gpio:05
+mem_sbutton1_gpio:06
+mem_sbutton2_gpio:07
+
+mem_led_gpio:07
+mem_sensor_data_gpio:08
+mem_mwhee_a_data_gpio:0a
+mem_mwhee_b_data_gpio:0b
+mem_whee_ta_data_gpio:0c
+mem_whee_ta_data_gpio:0d
+
+mem_dpi_button_gpio:04
+
+
+mem_led_light_time:90 01
+mem_led_dark_time:90 01
+mem_le_led_on_time:58 02
+
+mem_ui_button_gpio:09
+mem_ui_button_timeout:28
+
+mem_spi_init_clk:75 #48M/128
+mem_spi_init_delay_time:0a #4us
+mem_le_secure_connect_enable:00
+mem_le_pairing_mode:01
+mem_le_pres:02 03 00 05 10 02 03
+mem_le_flag:03
+
+mem_discovery_timeout:3c 0b
+mem_mouse_direct_timeout:58 02
+mem_mouse_blank_data_timeout:b8 0b
+mem_mouse_no_data_timeout:28 23
+
Index: Receive_Code/sched/le_prcp.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/le_prcp.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/le_prcp.dat	(working copy)
@@ -0,0 +1,82 @@
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_le_att_list:
+
+#Primary service GAP ------
+01 00 00 28 02 00 18
+
+#Device name
+02 00 03 28 01 0a
+03 00 00 2a 0c 41 73 74 20 4c 45 20 4d 6f 75 73 65
+
+#Appearance
+04 00 03 28 01 02
+05 00 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 01 02
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 00 28 02 01 18
+
+#Service changed
+09 00 03 28 01 20
+0a 00 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 29 02 00 00
+
+#Primary service TX power ------
+0c 00 00 28 02 04 18
+#Characteristic Tx power level
+0d 00 03 28 01 06
+0e 00 07 2a 01 00
+
+
+#Primary service Battery ------
+0f 00 00 28 02 0f 18
+#Characteristic Battery level
+10 00 03 28 01 12
+11 00 19 2a 01 38
+
+#Primary service yichip PRCP ------
+12 00 00 28 02 f1 18
+#Characteristic device tx
+13 00 03 28 01 12
+14 00 f3 2a 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#Client Characteristic Configuration
+15 00 02 29 02 00 00
+#Characteristic device rx
+16 00 03 28 01 0e
+17 00 f2 2a 14 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#End of Attribute list
+00 00
+
+mem_le_adv_data_len:1b
+mem_le_adv_data:0c 09
+'Yichip Temp
+ 03 19 40 02 02 01 05 02 0a 00 03 03 f1 18
+mem_le_scan_data_len:00
+#mem_le_adv_param:00 08 00 08 00 01 00 00 00 00 00 00 00 07 00
+mem_le_adv_enable:01
+
+
+mem_le_adv_interval_min:20 00 
+mem_le_adv_interval_max:20 00 
+mem_le_adv_type:00 
+mem_le_adv_own_addr_type:01 
+mem_le_adv_direct_addr_type:01
+mem_le_adv_direct_addr:00 00 00 00 00 00 
+mem_le_adv_channel_map:07 
+mem_le_adv_filter_policy:00
+
+mem_le_notify_handle:14
+
+mem_lpm_mode:00
+#mem_lpm_ctrl:0f 0f 10 06
+mem_lpm_xtalcnt:0c 10 ca 1f
+mem_device_option:0d
+mem_fcomp_div:24
+mem_fcomp_mul:02
+mem_le_lap:45 67 78 89 90 56
+
Index: Receive_Code/sched/le_transmit_uuid.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/le_transmit_uuid.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/le_transmit_uuid.dat	(working copy)
@@ -0,0 +1,62 @@
+mem_device_option: 01
+
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_le_att_list:
+
+#Primary service GAP ------
+01 00 00 28 02 00 18
+
+#Device name
+02 00 03 28 01 0a
+03 00 00 2a 0c 41 73 74 20 4c 45 20 4d 6f 75 73 65
+
+#Appearance
+04 00 03 28 01 02
+05 00 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 01 02
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 00 28 02 01 18
+
+#Service changed
+09 00 03 28 01 20
+0a 00 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 29 02 00 00
+
+#Primary service TX power ------
+0c 00 00 28 02 04 18
+#Characteristic Tx power level
+0d 00 03 28 01 06
+0e 00 07 2a 01 00
+
+
+#Primary service Battery ------
+0f 00 00 28 02 0f 18
+#Characteristic Battery level
+10 00 03 28 01 12
+11 00 19 2a 01 38
+
+#Primary service yichip transmit ------
+12 00 00 28 02 f0 18
+#Characteristic tx--notify
+13 00 03 28 01 12
+14 00 f1 2a 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+#Client Characteristic Configuration
+15 00 02 29 02 00 00
+#Characteristic rx--write
+16 00 03 28 01 0c
+17 00 f0 2a 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+
+#End of Attribute list
+00 00
+
+mem_le_adv_data_len:1b
+mem_le_adv_data:0c 09 52 74 72 69 76 72 5f 52 36 32 31 03 19 40 02 02 01 05 02 0a 00 03 03 00 f0
+mem_le_scan_data_len:00
+mem_le_adv_param:00 08 00 08 00 01 00 00 00 00 00 00 00 07 00
+mem_le_adv_enable:01
Index: Receive_Code/sched/lenovo_mouse.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/lenovo_mouse.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/lenovo_mouse.dat	(working copy)
@@ -0,0 +1,170 @@
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+1100:
+
+#Primary service GAP ------
+01 00 00 18 00
+
+#Device name
+02 00 03 28 05 0a 03 00 00 2a
+03 00 00 2a 0c 41 73 74 20 4d 6f 75 73 65 6e 61 48
+
+#Appearance 
+04 00 03 28 05 02 05 00 01 2a
+05 00 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 07 02 07 00 04 2a
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 01 18 00
+
+#Service changed
+09 00 03 28 05 20 0a 00 05 2a 
+0a 00 05 2a 00
+
+#Primary service device information ------
+0c 00 0a 18 00
+
+#Manufacturer Name
+0d 00 03 28 05 02 0e 00 29 2a 
+0e 00 29 2a 06 59 69 43 68 69 70
+
+#PNP id
+0f 00 03 28 05 02 10 00 50 2a
+10 00 50 2a 07 02 35 12 22 aa 01 00
+
+#Primary service battery ------
+11 00 0f 18 00
+
+#Battery level
+12 00 03 28 05 02 13 00 19 2a
+13 00 19 2a 01 33
+
+#Client Characteristic
+14 00 02 29 02 00 00
+
+#Primary service hid ------
+15 00 12 18 00
+
+#Protocol mode
+16 00 03 28 05 06 17 00 4e 2a
+17 00 4e 2a 01 01
+
+#Hid report
+18 00 03 28 05 1a 19 00 4d 2a
+19 00 4d 2a 00
+
+#Client Characteristic
+1a 00 02 29 02 01 00
+
+#Report reference
+1b 00 08 29 02 01 01 # report id=1, type=1 input
+
+#Hid report
+1c 00 03 28 05 1a 1d 00 4d 2a
+1d 00 4d 2a 00
+
+#Client Characteristic
+1e 00 02 29 02 01 00
+
+#Report reference
+1f 00 08 29 02 02 01 # report id=2, type=1 input
+
+#Hid report
+20 00 03 28 05 1a 21 00 4d 2a
+
+#Client Characteristic
+22 00 02 29 02 01 00
+
+#Report reference
+23 00 08 29 02 03 01 # report id=3, type=1 input
+
+#Report map
+24 00 03 28 05 0a 25 00 4b 2a
+25 00 4b 2a 7b # length 123 bytes
+05 01 # Usage Page(Generic Desktop)
+09 02 # Usage(Mouse)
+a1 01 # Collection(Application)
+85 01 # Report ID(1)
+09 01 # Usage(Pointer)
+a1 00 # Collection(Physical)
+75 01 # Report Size(1)
+95 05 # Report Count(5)
+05 09 # Usage Page(Buttons)
+19 01 # Usage Minimum(1)
+29 05 # Usage Maximum(5)
+15 00 # Logical Minimum(0)
+25 01 # Logical Maximum(1)
+81 02 # Input(Data Variable Absolute)
+75 03 # Report Size(3)
+95 01 # Report Count(1)
+81 01 # Input(Constant) 3 bit padding
+75 08 # Report Size(8)
+95 01 # Report Count(1)
+05 01 # Usage Page(Generic Desktop)
+09 38 # Usage(Wheel)
+15 81 # Logical Minimum(-127)
+25 7f # Logical Maximum(127)
+81 06 # Input(Data Variable Relative)
+05 0c # Usage Page(Consumer)
+0a 38 02 # Usage(AC Pan)
+95 01 # Report Count(1)
+81 06 # Input(Data Variable Relative)
+c0 # End Collection
+85 02 # Report ID(2)
+09 01 # Usage(Pointer)
+a1 00 # Collection(Physical)
+75 0c # Report Size(12)
+95 02 # Report Count(2)
+05 01 # Usage Page(Desktop)
+09 30 # Usage(X)
+09 31 # Usage(Y)
+16 01 f8 # Logical Minimum(-2047)
+26 ff 07 # Logical Maximum(2047)
+81 06 # Input(Data Variable Relative)
+c0 c0 # End Collection
+05 01 # Usage Page(Desktop)
+09 07 # Usage(Keypad)
+a1 01 # Collection(Application)
+85 03 # Report ID(3)
+05 07 # Usage Page(Keyboard)
+15 00 # Logical Minimum(0)
+25 01 # Logical Maximum(1)
+09 06 # Usage(Keyboard C)
+09 07 # Usage(Keyboard D)
+09 2a # Usage(Keyboard Delete)
+09 e3 # Usage(Keyboard Left GUI)
+09 e0 # Usage(Keyboard Left CTRL)
+09 4b # Usage(Keyboard PageUp)
+09 4e # Usage(Keyboard PageDown)
+75 01 # Report Size(1)
+95 07 # Report Count(7)
+81 02 # Input(Data Variable Absolute)
+95 01 # Report Count(1)
+81 01 # Input(Constant) 1 bit padding
+c0 # End Collection
+
+#Boot mouse input report
+26 00 03 28 05 1a 27 00 33 2a
+27 00 33 2a 08 00 00 00 00 00 00 00 00
+
+#Client Characteristic
+28 00 02 29 02 00 00
+
+#Hid information
+29 00 03 28 05 02 2a 00 4a 2a
+2a 00 4a 2a 04 01 01 00 03
+
+#Hid control point
+2b 00 03 28 05 04 2c 00 4c 2a
+2c 00 4c 2a 00
+
+
+mem_le_adv_data_len:1d
+mem_le_adv_data:11 09 4c 65 6e 6f 76 6f 20 4d 69 63 65 20 4e 37 30 30 03 19 c2 03 02 01 05 03 03 12 18
+mem_le_scan_data_len:00
+mem_le_adv_param:00 08 00 08 00 01 00 00 00 00 00 00 00 07 00
+mem_le_adv_enable:01
+
+
Index: Receive_Code/sched/mouse.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/mouse.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/mouse.dat	(working copy)
@@ -0,0 +1,602 @@
+#device option
+#REVB GPIO setup    mouse_VB
+mem_ui_button_gpio:ff
+mem_ui_button_timeout:1E
+mem_led_light_time:90 01
+mem_led_dark_time:90 01
+mem_class:80 25 00
+mem_app_connection_options:06
+#mem_lpm_mode:00
+#mem_lpm_mult:00
+mem_lap:66 66 66 55 22 51
+mem_local_name_length:
+mem_local_name:
+'Yichip Mouse
+mem_sniff_param_interval:0c 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:00
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:00
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+0011 0100 1002 1124  1200  0001
+
+mem_all_uuid_128bits:00
+
+#mouse uuid
+mem_mouse_uuid_list:
+04 0011 0100 1002 1124
+00 01 00 00
+36 01 61
+09
+00
+00
+0a
+00
+01
+00
+09
+09
+00
+01
+35
+03
+19
+11
+24
+09
+00
+04
+35
+0d
+35
+06
+19
+01
+00
+09
+00
+11
+35
+03
+19
+00
+11
+09
+00
+05
+35
+03
+19
+10
+02
+09
+00
+06
+35
+09
+09
+65
+6e
+09
+00
+6a
+09
+01
+00
+09
+00
+09
+35
+08
+35
+06
+19
+11
+24
+09
+01
+00
+09
+00
+0d
+35
+0f
+35
+0d
+35
+06
+19
+01
+00
+09
+00
+13
+35
+03
+19
+00
+11
+09
+01
+00
+25
+16
+59 69 43 68 69 70#YiChip
+20 42 6c 75 65 74 6f 6f 74 68 20 4d 6f 75 73 65
+09
+01
+01
+25
+05
+4d
+6f
+75
+73
+65
+09
+01
+02
+25
+06
+59 69 43 68 69 70#YiChip
+09
+02
+00
+09
+01
+00
+09
+02
+01
+09
+01
+11
+09
+02
+02
+08
+80
+09
+02
+03
+08
+21
+09
+02
+04
+28
+01
+09
+02
+05
+28
+01
+09
+02
+06
+35
+81
+35
+7f
+08
+22
+25
+7b
+05
+01
+09
+02
+a1
+01
+85
+02
+09
+01
+a1
+00
+05
+09
+19
+01
+29
+08
+15
+00
+25
+01
+75
+01
+95
+08
+81
+02
+05
+01
+09
+30
+09
+31
+16
+01
+f8
+26
+ff
+07
+75
+10
+95
+02
+81
+06
+09
+38
+15
+81
+25
+7f
+75
+08
+95
+01
+81
+06
+05
+0c
+0a
+38
+02
+75
+08
+95
+01
+81
+06
+c0
+c0
+05
+0c
+09
+01
+a1
+01
+85
+03
+75
+10
+95
+02
+15
+01
+26
+8c
+02
+19
+01
+2a
+8c
+02
+81
+60
+c0
+06
+00
+ff
+09
+01
+a1
+01
+85
+10
+75
+08
+95
+06
+15
+00
+26
+ff
+00
+09
+01
+81
+00
+09
+01
+91
+00
+c0
+09
+02
+07
+35
+08
+35
+06
+09
+04
+09
+09
+01
+00
+09
+02
+08
+28
+00
+09
+02
+09
+28
+01
+09
+02
+0a
+28
+01
+09
+02
+0b
+09
+01
+00
+09
+02
+0c
+09
+0c
+80
+09
+02
+0d
+28
+00
+09
+02
+0e
+28
+01
+
+04 1002 1200 0100 0001
+00 01 00 01
+36 00 5a
+09
+00
+00
+0a
+00
+01
+00
+01
+09
+00
+01
+35
+03
+19
+12
+00
+09
+00
+04
+35
+0d
+35
+06
+19
+01
+00
+09
+00
+01
+35
+03
+19
+00
+01
+09
+00
+05
+35
+03
+19
+10
+02
+09
+00
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09 02 00#SpecificationID
+09 01 03#DeviceID Spec Version:1.3
+
+09 02 01# VendorID
+09 0a 5c#Unknown See http://www.bluetooth.org/assigned-number.htm
+
+09 02 02#ProductID
+09 00 01#0x0001
+
+09 02 03#Version
+09 01 29#Product Version:1.2.9
+09
+02
+04
+28
+01
+09
+02
+05
+09
+00
+02
+00
+00
+
+01 00 01
+00 01 00 01
+36 00 5a
+09
+00
+00
+0a
+00
+01
+00
+01
+09
+00
+01
+35
+03
+19
+12
+00
+09
+00
+04
+35
+0d
+35
+06
+19
+01
+00
+09
+00
+01
+35
+03
+19
+00
+01
+09
+00
+05
+35
+03
+19
+10
+02
+09
+00
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09
+02
+00
+09
+01
+00
+09
+02
+01
+09
+05
+ac
+09
+02
+02
+09
+02
+39
+09
+02
+03
+09
+00
+44
+09
+02
+04
+28
+01
+09
+02
+05
+09
+00
+02
+
+03 1101 0003 0100 
+00 01 00 02
+36 00 2f
+09
+00
+00
+0a
+00
+01
+00
+02
+09
+00
+01
+35
+03
+19
+11
+01
+09
+00
+04
+35
+0c
+35
+03
+19
+01
+00
+35
+05
+19
+00
+03
+08
+01
+09
+01
+00
+25
+09
+53
+50
+50
+20
+73
+
+mem_ui_uuid_table:mem_mouse_uuid_list
+#Auto reconnection after power on
+mem_device_option:43
+mem_ptt:0
+mem_features:
+ff
+ff
+8f
+f8	#fe--EDR  F8--BR
+9b	#AFHclose 83
+9d
+59
+83
+
Index: Receive_Code/sched/reva.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/reva.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/reva.dat	(working copy)
@@ -0,0 +1,96 @@
+mem_rf_init:
+# agc
+08 08
+11 35
+12 c7
+
+# agc gain table
+1A F1 
+1B F1 
+1C ED 
+1D E9 
+1E E5 
+1F E1 
+20 DD 
+21 D9 
+22 D5 
+23 D1 
+24 CD 
+25 C9 
+26 C5 
+27 C1 
+28 BD 
+29 B9 
+2A B5 
+2B B1 
+2C AD 
+2D A9 
+2E A5 
+2F A1 
+30 9D 
+# agc setting table
+31 00
+32 00
+33 00
+34 01
+35 02
+36 00
+37 03
+38 03
+39 10
+3A 04
+3B 04
+3C 21
+3D 05
+3E 05
+3F 32
+40 06
+41 06
+42 43
+43 07
+44 08
+45 44
+46 09
+47 18
+48 44
+49 19
+4A 28
+4B 44
+4C 29
+4D 20
+4E 5c
+4F 38
+50 38
+51 ed
+52 38
+
+#rf
+54 f7
+55 40
+57 4c
+5f 20
+62 8c
+64 4a
+67 0d
+6e 00
+
+#clkpll for 24Mhz xtal
+70 e4
+71 00
+72 00
+73 60
+
+
+00
+
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_features:ff ff 8f fe 83 9d 59 83
+mem_scan_mode:03
Index: Receive_Code/sched/revb.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/revb.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/revb.dat	(working copy)
@@ -0,0 +1,101 @@
+mem_lpm_config:4f 10 06
+mem_lpm_buckcnt:0a 1b ef 0f
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_features:
+ff
+ff
+8f
+fa	#openACL3M fe
+9b	#AFHclose 83
+9d
+59
+83
+
+#auto filled by geneep, should NOT remove
+memp_reload_ptr:00 00
+
+mem_flag:01
+
+mem_rf_init:
+#agc gain
+1a f5
+31 c0
+32 c1
+33 c2
+34 c3
+35 c4
+36 c5
+37 04
+38 05
+39 06
+3A 15
+3B 16
+3C 55
+3D 56
+3E 57
+3F 66
+40 67
+41 a6
+42 a7
+43 a8
+44 b7
+45 f6
+46 f7
+47 f8
+48 c0
+49 ff  
+#for revb
+53 00
+54 68
+55 d8
+56 88
+57 48
+58 74
+59 90
+5A 4a
+5B 86
+5C a0
+5D 84
+5E 88
+5F c4
+60 87
+61 1c
+62 c7
+63 11
+64 66
+65 20
+66 2a
+67 84
+6C 0d
+6D 1b
+6E 80
+6F 88
+4c fb ##rx_ib_mixer1_stg1, rx_vtrl_reg_adc2
+4d ef ##lna_rtrim, rx_mixer1_bleeding      
+4e 4c ##lna_ctrim                          
+4f 58                                       
+07 04 # LO leakage                                   
+0a e0 #IQ_mismatch_tx                               
+0b 40
+0d 85 #demod_afc_win                                
+0e b1                                                        
+19 70                                                        
+44 68 # agc table fix                                      
+45 75
+46 b5
+47 f5                   
+12 45
+68 64 #clkpll for 24Mhz xtal
+69 00
+6a 00
+6b 30
+ff
+
Index: Receive_Code/sched/revc.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/revc.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/revc.dat	(working copy)
@@ -0,0 +1,31 @@
+mem_patch00:01
+mem_lpm_config:8f 10 ca
+mem_lpm_xtalcnt:00 0a 0b ef 07
+mem_lpm_hibernate_switch:07
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 03
+mem_rx_window_sniff:00 06
+
+
+mem_eeprom_base:30 ff
+mem_eeprom_block_size:80
+
+4000:00
+
+#pointers to tail space of mem_le_att_list
+mem_le_att_list+485:
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:mem_le_att_list+485
+
Index: Receive_Code/sched/revd.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/revd.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/revd.dat	(working copy)
@@ -0,0 +1,49 @@
+mem_lpm_config:8f 10 ca
+mem_lpm_buckcnt:0a 0b ef 07
+mem_lpm_hibernate_switch:00
+mem_gpio_wakeup_low:00 00 00 00 00 00 00 00
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:20 00
+mem_iscan_interval:00 04
+mem_pscan_window:16 00
+mem_pscan_interval:00 04
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 03
+mem_rx_window_sniff:00 06
+
+mem_adc_config_flag:02
+mem_adc_channel:30
+
+mem_spi_init_clk:77 #48M/128
+mem_spi_init_delay_time:0a #4us
+
+mem_eeprom_base:30 3f	#30 0f 
+mem_eeprom_block_size:20 #40
+
+#pointers to tail space of mem_le_att_list
+
+mem_module_uuid_list+250:
+68 e4
+69 00
+6a 00
+6b 30
+
+#07	7f
+#08	01
+#09	1f
+#0a	f8
+#0b	ff
+
+
+#55 d0
+#56 e0
+#57 4c	#-5db
+#58 6c
+#59 50
+ff
+mem_rf_init_ptr:mem_module_uuid_list+250
+
+
Index: Receive_Code/sched/revd_32k.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/revd_32k.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/revd_32k.dat	(working copy)
@@ -0,0 +1,62 @@
+mem_patch12:04
+mem_patch38:01
+mem_patch30:10
+mem_patch32:0b
+mem_patch39:64
+#updata le param
+#notification 
+mem_patch2c:28
+#write request
+#write command
+mem_patch2d:80
+#le set mult
+mem_patch2f:20
+#reject sniff when wake up
+mem_patch3c:04
+
+
+#debug le disconn
+#mem_patch27:20
+
+#ui le param
+mem_patch31:20
+
+
+#slave loop
+mem_patch08:0c
+
+#eeprom write
+mem_patch20:80
+
+#
+#mem_patch21:01   #eeprom test 
+
+mem_lpm_config:8f 10 ca
+mem_lpm_xtalcnt:00 0a 0b ef 07
+mem_lpm_hibernate_switch:00
+mem_gpio_wakeup_low:00 00 00 00 00 00 00 00
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 10
+mem_pscan_window:12 00
+mem_pscan_interval:00 08
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 03
+mem_rx_window_sniff:00 06
+
+
+mem_eeprom_base:30 0f
+mem_eeprom_block_size:40
+
+#pointers to tail space of mem_le_att_list
+mem_le_att_list+485:
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:mem_le_att_list+485
+
Index: Receive_Code/sched/rtrivr_uuid.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/rtrivr_uuid.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/rtrivr_uuid.dat	(working copy)
@@ -0,0 +1,75 @@
+#attribute list: handle 2bytes, uuid 2bytes, length 1bytes, attribute Nbytes
+mem_le_att_list:
+
+#Primary service GAP ------
+01 00 00 28 02 00 18
+
+#Device name
+02 00 03 28 01 0a
+03 00 00 2a 0c 41 73 74 20 4c 45 20 4d 6f 75 73 65
+
+#Appearance
+04 00 03 28 01 02
+05 00 01 2a 02 c2 03 #3c2=hid mouse
+
+#Peripheral Preferred Connection Parameters
+06 00 03 28 01 02
+07 00 04 2a 08 06 00 06 00 64 00 2c 01 # interval 6ms, latency 100, timeout 300
+
+#Primary service GATT ------
+08 00 00 28 02 01 18
+
+#Service changed
+09 00 03 28 01 20
+0a 00 05 2a 00
+
+#Client Characteristic Configuration
+0b 00 02 29 02 00 00
+
+#Primary service TX power ------
+0c 00 00 28 02 04 18
+#Characteristic Tx power level
+0d 00 03 28 01 06
+0e 00 07 2a 01 00
+
+#Primary service Immediate alert ------
+0f 00 00 28 02 02 18
+#Characteristic Alert level
+10 00 03 28 01 04
+11 00 06 2a 01 00
+
+#Primary service UUID:f003 ------
+12 00 00 28 02 03 f0
+#Characteristic UUID:f803
+13 00 03 28 01 04
+14 00 03 f8 01 00
+
+
+#Primary service Link loss alert ------
+15 00 00 28 02 03 f0
+#Characteristic Alert level
+16 00 03 28 01 0a
+17 00 06 2a 01 00
+
+#Primary service UUID:f002 ------
+18 00 00 28 02 02 f0
+#Characteristic UUID:f802
+19 00 03 28 01 12
+1a 00 02 f8 01 28
+1b 00 02 29 02 00 00
+
+#Primary service Battery ------
+1c 00 00 28 02 0f 18
+#Characteristic Battery level
+1d 00 03 28 01 12
+1e 00 19 2a 01 38
+
+
+#End of Attribute list
+00 00
+
+mem_le_adv_data_len:1b
+mem_le_adv_data:0c 09 52 74 72 69 76 72 5f 52 36 32 31 03 19 40 02 02 01 05 02 0a 00 03 03 00 f0
+mem_le_scan_data_len:00
+mem_le_adv_param:00 08 00 08 00 01 00 00 00 00 00 00 00 07 00
+mem_le_adv_enable:01
Index: Receive_Code/sched/shutter.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/shutter.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/shutter.dat	(working copy)
@@ -0,0 +1,241 @@
+mem_patch00:08
+mem_patch10:40
+mem_patch11:0c
+mem_patch16:10
+mem_patch20:08
+mem_patch23:02
+mem_patch25:48
+mem_patch26:0c
+
+mem_patch27:50
+
+mem_patch32:20
+mem_patch3b:13
+mem_patch3e:80
+
+mem_device_option:09
+mem_le_adv_channel_map:07 
+mem_le_scan_enable:01
+
+mem_spi_ncs_gpio:ff
+mem_led_gpio:1b
+mem_ui_button_gpio:ff
+mem_ui_button_timeout:10
+mem_ui_button_last_state:01
+
+mem_le_fast_adv_timeout:32
+mem_led_fast_dark_time:96 00
+mem_led_fast_light_time:96 00
+mem_le_sleep_timeout:08 07
+
+#mem_le_pres:02 03 00 01 10 02 01
+mem_le_pres_auth:01
+
+mem_le_adv_interval_max:60 01 
+mem_module_le_lpm_mult:05
+
+
+
+mem_le_lap:02 31 00 98 07 2a
+mem_le_name_len:
+'AB Shutter3
+
+mem_le_adv_data_len:1b
+mem_le_adv_data:
+13 09 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02 01 05 03 02 12 18 00 00 00 00
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+1e 09 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
+
+
+mem_shutter_att_list_patch:
+47
+
+05 0c	#USAGE_PAGE 
+09 01	#USAGE (Consumer Control)
+a1 01	#COLLECTION (Application (mouse, keyboard))
+85 02	#REPORT_ID 
+0a ae 01
+09 e9
+09 ea
+09 e2
+09 30
+15 01
+25 0c
+75 10
+95 01
+81 00
+c0 		#END_COLLECTION
+05 01 	#USAGE_PAGE 
+09 06 	#USAGE
+a1 01 	#COLLECTION (Application (mouse, keyboard))
+85 03 
+05 07 
+19 e0 
+29 e7 
+15 00 
+25 01 
+75 01 
+95 08 
+81 02 
+75 08 
+95 01 
+15 00 
+25 f4 
+05 07 
+19 00 
+29 f4 
+81 00 
+c0		#END_COLLECTION
+
+
+#Characteristic:Hid information
+1c 00 02 03 28 01 02
+1d 00 02 4a 2a 04 11 01 00 01        
+#Characteristic:
+1e 00 02 03 28 01 04
+1f 00 02 4c 2a 01 00
+
+#Primary Service: BAS
+20 00 02 00 28 02 0f 18 
+#Characteristic: Battery Level
+21 00 02 03 28 01 12 
+22 00 02 19 2a 01 00 
+#Client Characteristic Configuration
+23 00 02 02 29 02 00 00 
+
+#End of Attribute list
+00 00
+
+
+mem_adv_lap_ptr:mem_le_adv_data+2
+
+
+
+mem_ui_le_uuid_table:mem_shutter_le_att_list
+
+mem_lpm_mode:00
+mem_lpm_overhead:06
+mem_lpm_mult_timeout:02
+mem_hard_soft_switch_case:00
+mem_shutter_powerup_flag:00
+mem_shutter_button_timeout:0a
+mem_power_timeout:0c
+mem_packet_interval_set:20 00
+mem_le_conn_interval_min:06 00
+mem_le_conn_interval_max:20 00
+
+mem_le_scan_type:01
+mem_le_scan_own_addr_type:00
+mem_le_scan_filter_policy:00
+mem_le_scan_interval:30 00
+mem_le_scan_window:0c 00
+
+
+mem_shutter_led_num:01
+mem_led_map:
+1b
+ff
+ff
+ff
+
+mem_fast_adv_led_style:
+02
+1b
+96 00
+96 00
+ff
+
+mem_slow_adv_led_style:
+02
+1b
+96 00
+3a 07
+ff
+ 
+mem_power_on_led_style:
+02
+1b
+96 00
+3a 00
+01
+
+mem_powe_off_led_style:
+00
+1b
+48 00
+96 00
+02
+
+mem_connected_led_style:
+01
+1b
+00 00
+00 00
+00
+
+mem_key_led_style:
+01
+1b
+00 00
+00 00
+00
+#
+02
+1b
+96 00
+96 00
+01
+#
+ff
+1b
+00 00
+00 00
+00
+#
+00
+1b
+00 00
+00 00
+00
+
+
+mem_key0_press:
+03 05 17 00 00 28 05 13 00 02 00 05 13 00 01 00
+mem_key0_release:
+02 05 17 00 00 00 05 13 00 00 00
+mem_key1_press:
+02 05 13 00 01 00 05 13 00 02 00 
+mem_key1_release:
+01 05 13 00 00 00
+
+mem_le_car_write_cmd_data:
+01 0b 14 00 5a 6b 02 00 02 00 00 00
+
+mem_shutter_key_num:04
+mem_key_conf0:
+#0
+04 00  
+#1
+05 00
+#2
+06 00 
+#3
+03 00 
+#4
+ff 00 
+#5
+ff 00 
+
+mem_le_app_peer_addr:0e 10 26
+mem_le_slave_peer_addr:ff ff ff ff ff ff
+
+mem_le_sleep_conn_timeout:b8 0b
+
+mem_tx_power:02
+
+mem_le_send_write_request_count:02
+
+#mem_uart_mouse_data_buff:02 00 09 00 00 00 00 00 00 00 00
+#mem_uart_test_count:04
+
Index: Receive_Code/sched/spp.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/spp.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/spp.dat	(working copy)
@@ -0,0 +1,206 @@
+#device option
+mem_device_option:04
+
+#spp uuid
+mem_uuid_list:
+04
+10
+02
+12
+00
+01
+00
+00
+01
+00
+01
+00
+01
+36
+00
+5a
+09
+00
+00
+0a
+00
+01
+00
+01
+09
+00
+01
+35
+03
+19
+12
+00
+09
+00
+04
+35
+0d
+35
+06
+19
+01
+00
+09
+00
+01
+35
+03
+19
+00
+01
+09
+00
+05
+35
+03
+19
+10
+02
+09
+00
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09
+02
+00
+09
+01
+03
+09
+02
+01
+09
+05
+ac
+09
+02
+02
+09
+02
+39
+09
+02
+03
+09
+06
+44
+09
+02
+04
+28
+01
+09
+02
+05
+09
+00
+02
+03
+11
+01
+00
+03
+01
+00
+00
+01
+00
+03
+36
+00
+4e
+09
+00
+00
+0a
+00
+01
+00
+03
+09
+00
+01
+35
+03
+19
+11
+01
+09
+00
+02
+0a
+00
+00
+00
+00
+09
+00
+04
+35
+0c
+35
+03
+19
+01
+00
+35
+05
+19
+00
+03
+08
+01
+09
+00
+05
+35
+03
+19
+10
+02
+09
+00
+06
+35
+09
+09
+65
+6e
+09
+00
+6a
+09
+01
+00
+09
+01
+00
+25
+0a
+53
+50
+50
+20
+73
+6c
+61
+76
+65
+00
+00
+00
+01
Index: Receive_Code/sched/ssp.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/ssp.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/ssp.dat	(working copy)
@@ -0,0 +1,261 @@
+#memk, for reva-c only
+4b00:
+98    
+2f    
+8a    
+42    
+91    
+44    
+37    
+71    
+CF    
+FB   
+C0   
+B5    
+A5    
+DB   
+B5    
+E9    
+5B    
+C2    
+56   
+39    
+F1    
+11    
+F1    
+59    
+A4    
+82    
+3F    
+92    
+D5    
+5E    
+1C    
+AB    
+98    
+AA    
+07    
+D8    
+01   
+5B    
+83   
+12    
+BE    
+85   
+31    
+24    
+C3    
+7D    
+0C    
+55    
+74   
+5D    
+BE    
+72    
+FE    
+B1    
+DE    
+80    
+A7    
+06    
+DC    
+9B    
+74    
+F1    
+9B    
+C1    
+C1    
+69    
+9B    
+E4    
+86    
+47    
+BE    
+EF    
+C6    
+9D    
+C1    
+0F    
+CC    
+A1    
+0C    
+24    
+6F    
+2C    
+E9    
+2D    
+AA    
+84    
+74    
+4A    
+DC    
+A9    
+B0    
+5C    
+DA    
+88    
+F9    
+76    
+52    
+51    
+3E    
+98    
+6D    
+C6    
+31    
+A8    
+C8    
+27   
+03    
+B0    
+C7    
+7F    
+59    
+BF    
+F3    
+0B    
+E0    
+C6    
+47    
+91    
+A7    
+D5    
+51   
+63    
+CA    
+06    
+67    
+29    
+29    
+14    
+85    
+0A    
+B7    
+27    
+38    
+21    
+1B    
+2E    
+FC    
+6D   
+2C    
+4D    
+13    
+0D    
+38    
+53    
+54    
+73    
+0A    
+65    
+BB   
+0A   
+6A    
+76    
+2E   
+C9   
+C2   
+81    
+85   
+2C   
+72    
+92    
+A1    
+E8    
+BF    
+A2    
+4B    
+66    
+1A    
+A8    
+70    
+8B    
+4B    
+C2    
+A3    
+51    
+6C    
+C7    
+19    
+E8    
+92    
+D1    
+24    
+06   
+99   
+D6   
+85   
+35   
+0E    
+F4  
+70    
+A0    
+6A    
+10    
+16    
+C1    
+A4    
+19    
+08   
+6C    
+37    
+1E    
+4C    
+77    
+48    
+27    
+B5    
+BC    
+B0    
+34    
+B3    
+0C    
+1C    
+39    
+4A    
+AA    
+D8   
+4E    
+4F    
+CA   
+9C   
+5B    
+F3   
+6F    
+2E   
+68    
+EE    
+82   
+8F   
+74    
+6F   
+63    
+A5    
+78    
+14    
+78    
+C8    
+84   
+08    
+02   
+C7    
+8C   
+FA   
+FF    
+BE    
+90   
+EB    
+6C    
+50   
+A4   
+F7    
+A3    
+F9    
+BE    
+F2    
+78    
+71    
+C6    
+
+
+
Index: Receive_Code/sched/test.dat
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/test.dat	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/sched/test.dat	(working copy)
@@ -0,0 +1,104 @@
+
+mem_patch00:
+41   #mem_patch00
+00   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+00   #mem_patch04
+00   #mem_patch05
+00   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+10   #mem_patch0A
+00   #mem_patch0B
+00   #mem_patch0C
+00   #mem_patch0D
+00   #mem_patch0E
+00   #mem_patch0F
+00   #mem_patch10
+00   #mem_patch11
+15   #mem_patch12
+00   #mem_patch13
+00   #mem_patch14
+00   #mem_patch15
+01   #mem_patch16
+00   #mem_patch17
+00   #mem_patch18
+00   #mem_patch19
+00   #mem_patch1A
+00   #mem_patch1B
+00   #mem_patch1C
+00   #mem_patch1D
+00   #mem_patch1E
+00   #mem_patch1F
+84   #mem_patch20
+01   #mem_patch21
+00   #mem_patch22
+01   #mem_patch23
+00   #mem_patch24
+00   #mem_patch25
+00   #mem_patch26
+c0   #mem_patch27
+00   #mem_patch28
+1c   #mem_patch29
+00   #mem_patch2A
+00   #mem_patch2B
+28   #mem_patch2C
+84   #mem_patch2D
+00   #mem_patch2E
+24   #mem_patch2F
+00   #mem_patch30
+20   #mem_patch31
+00   #mem_patch32
+00   #mem_patch33
+01   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+00   #mem_patch37
+01   #mem_patch38
+54   #mem_patch39
+00   #mem_patch3A
+00   #mem_patch3B
+0c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+
+
+
+mem_lap:77 11 00 33 00 00
+mem_le_lap:88 11 00 33 00 00
+mem_device_option:ff
+mem_local_name_length:
+'REVB
+
+mem_seqi:7f
+
+mem_lpm_mode:00
+mem_lpm_mult:20
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:05
+mem_scan_mode:03
+mem_le_adv_enable:00
+mem_le_scan_enable:00
+mem_ui_button_gpio:ff
+mem_led_gpio:1b
+mem_led_light_time:90 01
+mem_led_dark_time:90 01
+
+mem_features:
+ff
+ff
+8f
+f8	#fe--EDR  F8--BR
+9b	#AFHclose 83
+9d
+59
+83
+
+
+
+
Index: Receive_Code/util/a1bugfix.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/a1bugfix.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/a1bugfix.pl	(working copy)
@@ -0,0 +1,81 @@
+#get sched ram content
+$add = 0;
+if(open file, "sched.rom") {
+	while(<file>) {
+		next if(/^#/);
+		s/#.*//g;
+		if(/^([a-z0-9_]+):(.*)/) {
+			push @dat, $1;
+			$_ = $2;
+		}
+		if(/^\'/) {
+			s/[\'\r\n]//g;
+			for($i = 0;$i < length($_);$i++) {
+				push @dat, ord(substr($_, $i, 1));
+			}
+		} else {
+			s/\s//g;
+			for($i = 0;$i < length($_);$i+=2) {
+				push @dat, hex(substr($_, $i, 2));
+			}
+		}
+	}
+	close file;
+}
+for($j = $k = $n = 0;$j < @dat;$j++) {
+	if($dat[$j] =~ /^mem_/ && $j > 0 || $n == 3) {
+		push @init, sprintf "\tsetarg 0x%x\n", $k;
+		push @init, sprintf "\tistore %d,contw\n", $n;
+		$n = $k = 0;
+	}
+	if($dat[$j] =~ /^mem_/) {
+		push @init, sprintf "\targ %s,contw\n", $dat[$j];
+	} else {
+		$k |= $dat[$j] << $n++*8;
+	}
+}
+push @init, sprintf "\tsetarg 0x%x\n", $k;
+push @init, sprintf "\tistore %d,contw\n", $n;
+
+open file,"eeprom.dat";
+for($i = 0;$i < 4;$i++) {
+	$_ = <file>;
+}
+close file;
+$len = int(((hex($_) + @init*4 + 12) & 0xff)/4);
+if($len > 0x3b) {
+	for($i = 0;$i < 0x40 - $len;$i++) { push @init, "\trtn\n"; }
+	$len = 0;
+}
+printf "len=%x\n", $len;
+
+open file, "bt_program23.list";
+while(<file>){
+	if(/^0x([0-9a-f]+)\s+([0-9]+)/)  {
+		$line = 0 + $2;
+		last if(hex($1) == $len);
+	}
+}
+close file;
+open file, "bt_program23.meta";
+@f = <file>;
+close file;
+
+
+open file, ">bt_program23.meta";
+for($i = 0;$i < @f;$i++) { 
+	$_ = $f[$i];
+	if($i == $line) {
+		printf file "\tbranch skip_a1bugfix_romdat\n";
+		printf file "\tromdat 0x00,0x00,0x55,0xaa\n";
+		printf file "\tromdat 0x00,0x08,0x90,0x01\n";
+		printf file "\tromdat 0xa0,0x74,0x01,0xf0\n";
+		printf file "\tromdat 0x80,0xfe,0x00,0x00\n";
+		printf file "skip_a1bugfix_romdat:\n";
+	}
+	print file $_;
+	if(/^init_sched:/) {
+		print file @init;
+	}
+}
+close file;
Index: Receive_Code/util/bytecnt.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/bytecnt.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/bytecnt.pl	(working copy)
@@ -0,0 +1,12 @@
+while(<stdin>) {
+	next if(/^#/);
+	s/#.*//g;
+	if(/^\'/) {
+		s/[\r\n]//g;
+		$len += length($_) - 1;
+	} else {
+		s/\s//g;
+		$len += length($_)/2;
+	}
+}
+printf "len = %x\n", $len;
Index: Receive_Code/util/crc16_ccitt.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/crc16_ccitt.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/crc16_ccitt.pl	(working copy)
@@ -0,0 +1,61 @@
+sub swap
+{
+	my($b) = @_;
+	my($i, $j);
+	for($i = 0, $j = 0;$i < 8;$i++) {
+		$j |= 1 << $i if($b & 1 << (7 - $i)); 
+	}
+	return $j;
+}
+
+@crc_tabccitt = ();
+$initd = 0;
+sub init_crcccitt_tab
+{
+	my($crc, $i, $c, $j);
+
+  for ($i=0; $i<256; $i++) {
+      $crc = 0;
+      $c   = $i << 8;
+      for ($j=0; $j<8; $j++) {
+          if ( ($crc ^ $c) & 0x8000 ) {	$crc = ( $crc << 1 ) ^ 0x1021;	}
+          else  { $crc =   $crc << 1; }
+          $c = $c << 1;
+      }
+      $crc_tabccitt[$i] = $crc & 0xffff;
+  }
+	$initd = 1;
+}
+
+sub crc16_ccitt 
+
+{
+	my($crc, $c) = @_;
+	my($tmp, $short_c);
+
+	init_crcccitt_tab() if(!$initd);
+  $short_c  = 0x00ff & $c;
+
+  $tmp = ($crc >> 8) ^ $short_c;
+  $crc = (($crc << 8) ^ $crc_tabccitt[$tmp]) & 0xffff;
+
+  return $crc;
+
+} 
+
+sub crc16_ccitt2
+{
+	my($crc, $c) = @_;
+
+  $crc  = ($crc >> 8) | ($crc << 8);
+  $crc ^= $c;
+  $crc ^= ($crc & 0xff) >> 4;
+  $crc ^= $crc << 12;
+  $crc ^= ($crc & 0xff) << 5;
+  $crc &= 0xffff;
+ return $crc;
+}
+
+init_crcccitt_tab();
+
+1;
\ No newline at end of file
Index: Receive_Code/util/define_info.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/define_info.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/define_info.pl	(working copy)
@@ -0,0 +1,55 @@
+use strict;
+use warnings;
+
+sub read_definfo{
+	my $filename = shift();
+	my $const_chip = "CHIP VERSION£º";
+	my $const_config = "CONFIG: ";
+	my $version = "";
+	my @res;
+	open(FILE,$filename) || die("can not open file:$filename £¡\n");
+	while(my $line = <FILE>){
+		next if ($line eq "\n"||$line =~ "REVD");
+		last if ($line =~ "INCLUDE");
+		last if ($line =~ "SIMPLE_PAIRING");
+		
+		if ($line =~ "FPGA" && $line !~ "//"){
+			$version = $version."FPGA";
+		}elsif($line =~ "ROMCODE" && $line !~ "//"){
+			$version = $version."ROMCODE";
+			print $const_chip.$version."\n\n";
+		}elsif($line !~ "//"){				# valid
+			if ($line =~"liandi"){
+				print "baud rate  : boot rate\n";
+				}
+			elsif ($line =~ "CREDIT"){
+				print "credit     : from mcu\n";
+				}
+			elsif ($line =~ "SSP_EXT"){
+				print "ssp confirm: suport\n";
+				}
+			elsif ($line =~ "NVRAM"){
+				print "nvram      : by mcu\n";
+			}elsif ($line=~"RELEASE"){
+				print "version    : release\n";
+			}
+		}elsif ($line =~ "//"){				#noted
+			if ($line =~"liandi"){
+				print "baud rate  : 115200 or other \n";
+				}
+			elsif ($line =~ "CREDIT"){
+				print "credit     : auto\n";
+				}
+			elsif ($line =~ "SSP_EXT"){
+				print "ssp confirm: justwork only\n";
+				}
+			elsif ($line =~ "NVRAM"){
+				print "nvram      : in eep\n";
+			}elsif ($line =~ "RELEASE"){
+				print "version    : debug\n";
+			}
+		}
+	}
+}
+
+&read_definfo("bt.prog");
\ No newline at end of file
Index: Receive_Code/util/gen_patch_h.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/gen_patch_h.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/gen_patch_h.pl	(working copy)
@@ -0,0 +1,135 @@
+#!/usr/bin/perl
+sub clear_print_buf{
+	for($i = 0; $i < 10; $i++){
+		$binData[$i] = 0;
+	}
+}
+
+sub print_line{
+	if($byte_cnt == 0){
+		#new line print header;
+		$offset = $patch_cmd_len * $line_cnt;
+		printf "{";
+		printf "0x%x%x, ", ($offset / 16 )     % 16, ($offset)       % 16;
+		printf "0x%x%x, ", ($offset / 4096)    % 16, ($offset / 256) % 16;
+		printf "0x%x%x, ", ($patch_cmd_len / 16) % 16, ($patch_cmd_len)  % 16;
+		$line_cnt ++;
+	}
+	printf "0x%s%s, 0x%s%s, 0x%s%s, 0x%s%s",$binData[0],$binData[1],$binData[2],$binData[3],$binData[4],$binData[5],$binData[6],$binData[7];
+	
+	$byte_cnt += 4;
+	if($byte_cnt >= $patch_cmd_len){
+		$byte_cnt = 0;
+		printf "},\n\t";
+	}else{
+		printf ", ";
+	}
+}
+
+################STATIC########################
+
+$patch_cmd_len = 96;
+$patch_cmd_header_len = 3;
+$patch_cmd_checksum_len = 1;
+
+################main fuction##################
+
+printf "/******************************************************************************\n";
+printf " ** File Name:      yc_patch_yc1021.h                                         *\n";
+printf " **                                                                           *\n";
+printf " ******************************************************************************\n";
+printf "\n";
+printf " ******************************************************************************\n";
+printf " **                               Edit History                                *\n";
+printf " ** ------------------------------------------------------------------------- *\n";
+printf " **     DATE          NAME             DESCRIPTION                            *\n";
+printf " **  2015.3.17       fan.kou            Create.                               *\n";
+printf " ******************************************************************************/\n";
+printf "/******************************************************************************/\n";
+printf "#ifndef _YC_PATCH_YC1021_H_2015_03_17_16_39_59_298_\n";
+printf "#define _YC_PATCH_YC1021_H_2015_03_17_16_39_59_298_\n";
+printf "\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                             Dependencies                                  *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                            Compiler Flag                                  *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+printf "#ifdef __cplusplus\n";
+printf "extern   \"C\" \n";
+printf "{\n";
+printf "#endif\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                           Macros & Enums                                  *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+
+open(FILE,"ramcode.rom") or die $!;
+$line_cnt = 0;
+while($line = <FILE>){
+	$line_cnt++;
+}
+$cmd_cnt = $line_cnt * 4 / $patch_cmd_len + (($line_cnt * 4 % $patch_cmd_len) > 0);
+close(FILE);
+
+printf "#define YC_PATCH_CMD_CNT %d\n",$cmd_cnt;
+printf "#define YC_PATCH_CMD_LEN %d\n",$patch_cmd_len + $patch_cmd_header_len + $patch_cmd_checksum_len;
+printf "#define YC_PATCH_ARRAY_LEN 0x20\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                           Data Structures                                 *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+printf "\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                             Variables                                     *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+printf "\n";
+
+printf "const uint8_t yc_patch_array[YC_PATCH_ARRAY_LEN] =\n";
+printf "{\n";
+printf "\t0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \n";
+printf "\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \n";
+printf "\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \n";
+printf "\t0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \n";
+printf("\n");
+printf("};\n");
+
+
+printf "const uint8_t yc_patch_cmd[YC_PATCH_CMD_CNT][YC_PATCH_CMD_LEN] =\n";
+printf "{\n\t";
+
+open(BINFILE,"ramcode.rom") or die $!;
+binmode (BINFILE);
+$byte_cnt = 0;
+$end_of_file = 0;
+$checksum = 0;
+$line_cnt = 0;
+while(!$end_of_file)
+{
+	for($i = 0; $i < 10; $i++){
+		if(!read(BINFILE, $binData[$i], 1)){
+			$end_of_file = 1;
+			if(i != 0){
+				printf "Error: Error at the end of file.";
+			}
+		}
+	}
+	if(!$end_of_file){
+		&print_line;
+	}
+}
+while($byte_cnt){
+	&clear_print_buf;
+	&print_line;
+}
+printf("\n");
+printf("};\n");
+printf "\n";
+printf "/**---------------------------------------------------------------------------*\n";
+printf " **                         Function Prototypes                               *\n";
+printf " **---------------------------------------------------------------------------*/\n";
+printf "\n";
+printf "#ifdef __cplusplus\n";
+printf "}\n";
+printf "#endif\n";
+printf "\n";
+printf "/******************************************************************************/\n";
+printf "#endif //#ifndef _YC_PATCH_YC1021_H_2015_03_17_16_39_59_298_\n";
\ No newline at end of file
Index: Receive_Code/util/hex2mif.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/hex2mif.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/hex2mif.pl	(working copy)
@@ -0,0 +1,103 @@
+#!/usr/bin/perl
+# 2005 - David Grant.
+# Take an ihex input from STDIN, and write a .mif file to STDOUT
+# This script could probably be implemented with something like:
+#    $#!@_%^$@%$@%$_!^$@#^@%$#@_%$@^&!%$_!%!%&$*(#^#@%^) 
+# But I perfer the somewhat readable version.
+
+# Flow from within the Nios2 SDK Shell:
+# nios2-elf-as file.asm -o file.o
+# nios2-elf-objcopy file.o --target ihex file.hex
+# cat file.hex | perl hex2mif.pl > file.mif
+
+my @rom = ();
+my @ram = ();
+
+sub conv {
+	my ($in) = @_;
+	$out = substr($in,6,2).substr($in,4,2).substr($in,2,2).substr($in,0,2);
+	return hex $out;
+}
+
+sub writeromfile {
+	my (@buf) = @_;
+	my($x);
+
+	for($x=0; $x<@buf; $x++) {
+		printf ("%02x\n", $buf[$x]);
+	}
+}
+
+sub writebinfile {
+	my (@buf) = @_;
+	my($x);
+
+	for($x=0; $x<@buf; $x++) {
+		for($y=0;$y<8;$y++) {
+			printf ("%d", $buf[$x] & 1<<(7-$y) ? 1 : 0);
+		}
+		printf "\n" if(($x & 3) == 3);
+	}
+}
+
+sub writemiffile {
+	my (@buf) = @_;
+	my($x);
+	print  ("WIDTH=8;\n");
+	print ("DEPTH=".@buf.";\n");
+	print ("CONTENT BEGIN\n");
+	for($x=0; $x<@buf; $x++) {
+		printf ("\t%04x : %02x;\n", $x, $buf[$x]);
+	}
+	print ("END;\n");
+}
+
+if($ARGV[0] eq "ram" || $ARGV[0] eq "rammif")
+{
+	$org = 0x8000;
+	$limit = 0xffff;
+} elsif($ARGV[0] eq "rom" || $ARGV[0] eq "bin" || $ARGV[0] eq "mif" || $ARGV[0] eq "rommif" ) {
+	$org = 0;
+	$limit = 0x7fff;
+} else {
+	$org = 0;
+	$limit = 0xffffff;
+}
+
+
+$org = 0;
+$limit = 0x7fff;
+
+while (<STDIN>) {
+	$l = $_;
+	next if(!/\w/);
+	$count = (hex substr($l, 1, 2));
+	$addr = (hex substr($l, 3, 4));
+	$type = (hex substr($l, 7, 2));
+	last if $type eq 1;
+	if($type == 4) {
+		$org = -(hex substr($l, 9, 4))*0x10000;
+	}
+	if($addr >= $org && $addr <= $limit) 
+	{
+		$addr*=4 if($ARGV[0] eq "bin");
+		$addr -= $org;
+		for($x=0; $x<$count; $x++) {
+			$rom[$addr + $x] = (hex substr($l, 9+2*$x, 2)) ; 
+		}
+	}
+}
+
+if($ARGV[0] eq "rom" || $ARGV[0] eq "ram" || $ARGV[0] eq "mem")
+{
+	writeromfile(@rom);
+}
+elsif($ARGV[0] eq "bin")
+{
+	writebinfile(@rom);
+}
+else
+{
+	writemiffile(@rom);
+}
+
Index: Receive_Code/util/ifdef.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/ifdef.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/ifdef.pl	(working copy)
@@ -0,0 +1,8 @@
+open file, "bt_program23.meta"
+@prog = <file>;
+close file;
+open file, "bt_format.meta"
+@fmt = <file>;
+close file;
+
+
Index: Receive_Code/util/memalloc.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/memalloc.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/memalloc.pl	(working copy)
@@ -0,0 +1,55 @@
+$path=$ARGV[0];
+open file, $path;
+@f = <file>;
+close file;
+open file, ">$path";
+$path =~ s/\/.*//;
+open file1, ">$path/memmap.format";
+$xaddr = 0x4000;
+$oaddr = $saddr = 0;
+for($i = 0;$i < @f;$i++) { 
+	$_ = $f[$i];
+	$start = 1 if(/^\s*memalloc\s*\(\s*$/);
+	$start = 2 if(/^\s*xmemalloc\s*\(\s*$/);
+	$start = 3 if(/^\s*omemalloc\s*\(\s*$/);
+	if($start) {
+		if(/^\s*([0-9]+)\s+([a-zA-Z0-9_]+)\s*(.*)$/) {
+			if($start == 1) {
+				$str = sprintf "0x%04x %s%s\n", $addr, $2, $3;
+				$addr += $1;
+				$bstr .= $str;
+				$sstr .= $str;
+			} elsif($start == 2) {
+				$str = sprintf "0x%04x %s%s\n", $xaddr, $2, $3;
+				$xaddr += $1;
+				$xstr .= $str;
+			} else {
+				push @ostr, $_;
+			}
+		}
+		if(/^\s*\)\s*$/) {
+			$start = 0;
+			push @omalloc,[@ostr] if(@ostr > 0);
+			@ostr = ();
+		}
+	} else {
+		$sstr .= $_;
+	}
+}
+
+for($i = 0;$i <= $#omalloc;$i++) {
+	for($j = 0, $oaddr = $xaddr;$j <= $#{$omalloc[$i]};$j++) {
+		if($omalloc[$i][$j] =~ /^\s*([0-9]+)\s+([a-zA-Z0-9_]+)\s*(.*)$/) {
+			$str = sprintf "0x%04x %s%s\n", $oaddr, $2, $3;
+			$oaddr += $1;
+			$xstr .= $str;
+		}
+	}
+	$xend = $oaddr if($oaddr > $xend);
+}
+print file $xstr, $sstr;
+print file1 $bstr, $xstr;
+close file;
+close file1;
+printf "\nLast allocated address is %04x\n", $addr;
+printf "\nLast allocated xmem address is %04x\n", $xend;
\ No newline at end of file
Index: Receive_Code/util/mergepatch.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/mergepatch.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/mergepatch.pl	(working copy)
@@ -0,0 +1,63 @@
+$defs = "";
+$fmt = 0;
+sub reva {
+	return $_ if($defs =~ /REV[CD]/ || $fmt);
+	if(/bmark([01])\s+([a-z0-9_]+)\s*,\s*([a-z0-9_]+)/) {
+		$ret = sprintf("\tisolate%d %s,mark\n\tbranch %s,true\n", $1, $2, $3);
+	}	elsif(/rtnmark([01])\s+([a-z0-9_]+)\s*/) {
+		$ret = sprintf("\tisolate%d %s,mark\n\trtn true\n", $1, $2);
+	} else {
+		$ret = $_;
+	}
+	return $ret if($defs =~ /REVB/);
+	if(/mul32\s+([a-z]+)\s*,\s*([a-z0-9_]+)\s*,\s*([a-z]+)/) {
+		$ret = sprintf("\tmult %s,%s\n\tnop 19\n\tproduct %s\n", $2, $1, $3);
+	}	elsif(/imul32\s+([a-z]+)\s*,\s*([a-z]+)/) {
+		$ret = sprintf("\timult %s\n\tnop 19\n\tproduct %s\n", $1, $2);
+	} else {
+		$ret = $_;
+	}
+	return $ret;
+}
+
+sub parseif {
+	my($fname) = @_;
+	open file, $fname;
+	@f = <file>;
+	close file;
+	open file, ">$fname";
+	@valid = (1);
+	for($i = 0;$i < @f;$i++) { 
+		$_ = $f[$i];
+		$defs .= $1 . " " if(/^define\s+(\w+)\s*/);
+		if(/^ifdef\s+(\w+)\s*/) {
+			push @valid, ($defs =~ /$1 / ? 1 : 0) & $valid[$#valid];
+		} elsif(/^ifndef\s+(\w+)\s*/) {
+			push @valid, ($defs =~ /$1 / ? 0 : 1) & $valid[$#valid];
+		} elsif(/^else/) {
+			printf "%s\nelse without if at line %d\n", $f[$i - 3], $i if($#valid == 0);
+			$valid[$#valid] = (1 - $valid[$#valid]) & $valid[$#valid - 1];
+		} elsif(/^endif/) {
+			printf "%s\nendif without if at line %d\n", $_, $i if($#valid == 0);
+			pop @valid;
+		} elsif($valid[$#valid]) {
+			if(/^include\s+(.+)\s*/) {
+				open file2, "program/$1";
+				@f2 = <file2>;
+				close file2;
+				splice(@f, $i + 1, 0, @f2);
+			} else {
+				next if(/^\s*bpatch\s+/ && $defs !~ /ROMCODE/);
+				next if(/^\s*set[01] mark_ext_patch/ && $defs !~ /ROMCODE/);
+				print file reva($_);
+			}
+		}
+	}
+	close file;
+}
+
+parseif("output/bt_program23.meta");
+$fmt = 1;
+parseif("output/bt_format.meta");
+
+
Index: Receive_Code/util/rom2mif.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/rom2mif.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/rom2mif.pl	(working copy)
@@ -0,0 +1,50 @@
+#!/usr/bin/perl
+#perl hex2mif.pl <filename without ext> 
+
+
+$file0 = $file1 = $ARGV[0];
+$file1 =~ s/\.rom/.mif/;
+$wid = 8;
+
+
+
+print ("opening $file0\n");
+open(ifile, "$file0") || die("cannot find $file0 file\n");
+for($l = 0;$val = <ifile>;$l++)
+{
+	if($l == 0)
+	{
+		if(substr($val, 1, 1) !~ /[0-9a-fA-F]/) { $wid = 1; }
+		elsif(substr($val, 2, 1) !~ /[0-9a-fA-F]/) { $wid = 8; }
+		elsif(substr($val, 4, 1) !~ /[0-9a-fA-F]/) { $wid = 16; }
+		else { $wid = 32;	}
+	}
+}
+printf ("width is %d\n", $wid);
+printf ("totally %d words\n", $l);
+seek(ifile, 0, 0);
+open(ofile, ">$file1");
+printf ofile ("DEPTH = %d;\n", $wid == 1 ? $l/8 : $l);
+printf ofile ("WIDTH = %d;\n", $wid == 1 ? 8 : $wid);
+print ofile ("ADDRESS_RADIX = HEX;\n");
+print ofile ("DATA_RADIX = HEX;\n");
+print ofile ("CONTENT\n");
+print ofile ("BEGIN\n");
+for($l = 0, $val1 = 0;$val = <ifile>;$l++)
+{
+	$val =~ s/\n//g;
+	$val0 = hex(substr($val, 0, $wid == 1 ? 1 : $wid/4));
+	if($wid > 1) {
+		printf ofile ("%x : %x;\n", $l, $val0);
+	} elsif($l % 8 == 0 && $l > 0) {
+		printf ofile ("%x : %x;\n", $l/8 - 1, $val1);
+		$val1 = 0;
+	}
+	$val1 |= $val0 << ($l & 7);
+}
+if($wid == 1) { printf ofile ("%x : %x;\n", $l/8 - 1, $val1); }
+print ofile ("END;\n");
+
+close(ifile);
+close(ofile);
+
Index: Receive_Code/util/route.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/route.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/route.pl	(working copy)
@@ -0,0 +1,10 @@
+system("route print > 1");
+open file,"1";
+while(<file>) {
+	if(/^\s+0\.0\.0\.0\s+0\.0\.0\.0\s+([\.0-9]+)\s+([\.0-9]+)\s+1\s+$/) {
+		print "added route to " . $1;
+		system("route add 192.168.2.126 " .$1);
+		last;
+	}
+}
+close file;
\ No newline at end of file
Index: Receive_Code/util/setarg.pl
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/setarg.pl	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/Receive_Code/util/setarg.pl	(working copy)
@@ -0,0 +1,100 @@
+@dat = @init = ();
+
+sub setarg {
+my ($j, $k, $n);
+for($j = $k = $n = 0;$j < @dat;$j++) {
+        if($dat[$j] =~ /^mem_/ && $j > 0 || $n == 3) {
+                push @init, sprintf "\tsetarg 0x%x\n", $k;
+                push @init, sprintf "\tistore %d,contw\n", $n;
+                $n = $k = 0;
+        }
+        if($dat[$j] =~ /^mem_/) {
+               push @init, sprintf "\targ %s,contw\n", $dat[$j];
+        } else {
+                $k |= $dat[$j] << $n++*8;
+        }
+}
+push @init, sprintf "\tsetarg 0x%x\n", $k;
+push @init, sprintf "\tistore %d,contw\n", $n;
+}
+
+sub setsect {
+my($i,$j,$k,$n);
+
+if($ARGV[1] eq "c51") {
+	push @init, sprintf "ifdef C51\ndownload_pdata:\n\tforce 9,loopcnt\ndownload_pdata_loop:\n\thstore 1,core_docd_pdata\n";
+	push @init, sprintf "\trshift8 pdata,pdata\n\tloop download_pdata_loop\n\trtn\n";
+	push @init, sprintf "download_c51:\n\thjam 5,core_docd_ctrl\n\tforce 0,pdata\n\thstore 2,core_docd_paddr\n";
+}
+for($i = $j = $k = $n = 0;$i < @dat + 2;$i++) {
+	if($i == @dat && $n == 0) {
+		push @init, sprintf "\tsetarg 0x%x\n", $k;
+		if($ARGV[1] eq "c51") {
+                	push @init, sprintf "\tcall download_pdata\n";
+		} else {
+			push @init, sprintf "\tistore %d,contw\n", ($j + 7)/8;
+		}
+		last;
+	}
+	if($i == @dat) {
+		$i = $i;
+	}
+	if($j > 18 || $i == @dat + 1) {
+		push @init, sprintf "\tsetsect %d,0x%x\n", $n,$k & 0x3ffff;
+		if($n == 3 || $i == @dat + 1) {
+			if($ARGV[1] eq "c51") {
+                		push @init, sprintf "\tcall download_pdata\n";
+			} else {
+                		push @init, sprintf "\tistore %d,contw\n", ($n*18 + ($j > 18 ? 18 : $j))/8;
+			}
+			$n = -1;
+		}
+		$k >>= 18;
+		$j -= 18;
+		$n++;
+	}
+	if($i < @dat) {
+		if($dat[$i] =~ /^mem_/) {
+		       push @init, sprintf "\targ %s,contw\n", $dat[$i];
+		} else {
+			$k |= $dat[$i] << $j;
+			$j += 8;
+		}
+	}
+}
+if($ARGV[1] eq "c51") {
+	push @init, sprintf "\thjam 3,core_docd_ctrl\n\trtn\nendif\n";
+}
+}
+
+if(@ARGV == 0) {
+	printf "missing file name\n";
+	exit;
+}
+if(open file, $ARGV[0]) {
+        while(<file>) {
+                next if(/^#/);
+                s/#.*//g;
+                if(/^([a-z0-9_]+):(.*)/) {
+                        push @dat, $1;
+                        $_ = $2;
+                }
+                if(/^\'/) {
+                        s/[\'\r\n]//g;
+                        for($i = 0;$i < length($_);$i++) {
+                                push @dat, ord(substr($_, $i, 1));
+                        }
+                } else {
+                        s/\s//g;
+                        for($i = 0;$i < length($_);$i+=2) {
+                                push @dat, hex(substr($_, $i, 2));
+                        }
+                }
+        }
+        close file;
+}
+
+setsect();
+
+print @init;
+
Index: regedr/e.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: regedr/e.exe
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/regedr/e.exe	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/regedr/e.exe	(working copy)

Property changes on: regedr/e.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: regedr/geneep.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Index: regedr/geneep.exe
===================================================================
--- /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/regedr/geneep.exe	(revision 0)
+++ /branch/mouse_project/TestTools/1062_Ble_Fast_Conn_Receive/regedr/geneep.exe	(working copy)

Property changes on: regedr/geneep.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
